From b50fdc345121c4283ba416a61b4dd74f7f746204 Mon Sep 17 00:00:00 2001 From: Turiiya <34311583+ttytm@users.noreply.github.com> Date: Mon, 1 Apr 2024 00:31:15 +0200 Subject: [PATCH] tree-sitter: fix parser error on unescaped dollar identifier in string literals, add test (#79) --- tree_sitter_v/bindings/node_types.v | 4 +- tree_sitter_v/grammar.js | 2 +- tree_sitter_v/src/grammar.json | 660 +- tree_sitter_v/src/node-types.json | 70 +- tree_sitter_v/src/parser.c | 395069 ++++++++-------- tree_sitter_v/test/corpus/string_literal.txt | 21 + 6 files changed, 197840 insertions(+), 197986 deletions(-) diff --git a/tree_sitter_v/bindings/node_types.v b/tree_sitter_v/bindings/node_types.v index cfeddb2b..08c3bcb3 100644 --- a/tree_sitter_v/bindings/node_types.v +++ b/tree_sitter_v/bindings/node_types.v @@ -85,7 +85,6 @@ pub enum NodeType { index_expression interface_declaration interface_method_definition - interpolation_closing interpreted_string_literal is_clause is_expression @@ -178,6 +177,7 @@ pub enum NodeType { float_literal identifier int_literal + interpolation_closing interpolation_opening nil_ none_ @@ -393,7 +393,6 @@ const node_type_name_to_enum = { 'index_expression': NodeType.index_expression 'interface_declaration': NodeType.interface_declaration 'interface_method_definition': NodeType.interface_method_definition - 'interpolation_closing': NodeType.interpolation_closing 'interpreted_string_literal': NodeType.interpreted_string_literal 'is_clause': NodeType.is_clause 'is_expression': NodeType.is_expression @@ -486,6 +485,7 @@ const node_type_name_to_enum = { 'float_literal': NodeType.float_literal 'identifier': NodeType.identifier 'int_literal': NodeType.int_literal + 'interpolation_closing': NodeType.interpolation_closing 'interpolation_opening': NodeType.interpolation_opening 'nil': NodeType.nil_ 'none': NodeType.none_ diff --git a/tree_sitter_v/grammar.js b/tree_sitter_v/grammar.js index 7f1fc2ee..13e17609 100644 --- a/tree_sitter_v/grammar.js +++ b/tree_sitter_v/grammar.js @@ -1251,7 +1251,7 @@ function sep(rule) { * */ function stringBody(re, $) { - return choice(token.immediate(prec.right(1, re)), $.escape_sequence, $.string_interpolation); + return choice(token.immediate(prec.right(1, re)), '$', $.escape_sequence, $.string_interpolation); } /** diff --git a/tree_sitter_v/src/grammar.json b/tree_sitter_v/src/grammar.json index aae26a8e..0d35e8d7 100644 --- a/tree_sitter_v/src/grammar.json +++ b/tree_sitter_v/src/grammar.json @@ -1307,35 +1307,27 @@ "value": "(" }, { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "type_parameter_declaration" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "type_parameter_declaration" - } - ] - } - } - ] + "type": "SYMBOL", + "name": "type_parameter_declaration" }, { - "type": "BLANK" + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "type_parameter_declaration" + } + ] + } } ] }, @@ -3187,35 +3179,27 @@ "value": "[" }, { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "capture" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "capture" - } - ] - } - } - ] + "type": "SYMBOL", + "name": "capture" }, { - "type": "BLANK" + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "capture" + } + ] + } } ] }, @@ -3615,41 +3599,6 @@ } ] }, - "compile_time_selector_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "$" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "reference_expression" - }, - { - "type": "SYMBOL", - "name": "selector_expression" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, "or_block": { "type": "SEQ", "members": [ @@ -4013,6 +3962,39 @@ } } }, + "compile_time_selector_expression": { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "$(" + } + }, + { + "type": "FIELD", + "name": "field", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "reference_expression" + }, + { + "type": "SYMBOL", + "name": "selector_expression" + } + ] + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, "index_expression": { "type": "PREC_DYNAMIC", "value": -1, @@ -6060,258 +6042,262 @@ "members": [ { "type": "SYMBOL", - "name": "c_string_literal" + "name": "interpreted_string_literal" }, { "type": "SYMBOL", - "name": "raw_string_literal" + "name": "c_string_literal" }, { "type": "SYMBOL", - "name": "interpreted_string_literal" + "name": "raw_string_literal" } ] }, - "c_string_literal": { - "type": "PREC", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "__c_single_quote" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", + "interpreted_string_literal": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC_RIGHT", + "value": 1, "content": { - "type": "PREC_RIGHT", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[^'\\\\$]+" - } + "type": "PATTERN", + "value": "[^'\\\\$]+" } - }, - { - "type": "SYMBOL", - "name": "escape_sequence" - }, - { - "type": "SYMBOL", - "name": "string_interpolation" } - ] - } - }, - { - "type": "SYMBOL", - "name": "__single_quote" + }, + { + "type": "STRING", + "value": "$" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + }, + { + "type": "SYMBOL", + "name": "string_interpolation" + } + ] } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "__c_double_quote" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", + }, + { + "type": "STRING", + "value": "'" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC_RIGHT", + "value": 1, "content": { - "type": "PREC_RIGHT", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[^\"\\\\$]+" - } + "type": "PATTERN", + "value": "[^\"\\\\$]+" } - }, - { - "type": "SYMBOL", - "name": "escape_sequence" - }, - { - "type": "SYMBOL", - "name": "string_interpolation" } - ] - } - }, - { - "type": "SYMBOL", - "name": "__double_quote" - } - ] - } - ] - } + }, + { + "type": "STRING", + "value": "$" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + }, + { + "type": "SYMBOL", + "name": "string_interpolation" + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + } + ] }, - "raw_string_literal": { - "type": "PREC", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "__r_single_quote" - }, - { - "type": "REPEAT", - "content": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PREC_RIGHT", - "value": 1, + "c_string_literal": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "c'" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", "content": { - "type": "PATTERN", - "value": "[^']+" + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^'\\\\$]+" + } } + }, + { + "type": "STRING", + "value": "$" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + }, + { + "type": "SYMBOL", + "name": "string_interpolation" } - } - }, - { - "type": "SYMBOL", - "name": "__single_quote" + ] } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "__r_double_quote" - }, - { - "type": "REPEAT", - "content": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PREC_RIGHT", - "value": 1, + }, + { + "type": "STRING", + "value": "'" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "c\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", "content": { - "type": "PATTERN", - "value": "[^\"]+" + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^\"\\\\$]+" + } } + }, + { + "type": "STRING", + "value": "$" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + }, + { + "type": "SYMBOL", + "name": "string_interpolation" } - } - }, - { - "type": "SYMBOL", - "name": "__double_quote" + ] } - ] - } - ] - } + }, + { + "type": "STRING", + "value": "\"" + } + ] + } + ] }, - "interpreted_string_literal": { - "type": "PREC", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "__single_quote" - }, - { - "type": "REPEAT", + "raw_string_literal": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "r'" + }, + { + "type": "REPEAT", + "content": { + "type": "IMMEDIATE_TOKEN", "content": { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PREC_RIGHT", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[^'\\\\$]+" - } - } - }, - { - "type": "SYMBOL", - "name": "escape_sequence" - }, - { - "type": "SYMBOL", - "name": "string_interpolation" - } - ] + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^']+" + } } - }, - { - "type": "SYMBOL", - "name": "__single_quote" } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "__double_quote" - }, - { - "type": "REPEAT", + }, + { + "type": "STRING", + "value": "'" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "r\"" + }, + { + "type": "REPEAT", + "content": { + "type": "IMMEDIATE_TOKEN", "content": { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PREC_RIGHT", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[^\"\\\\$]+" - } - } - }, - { - "type": "SYMBOL", - "name": "escape_sequence" - }, - { - "type": "SYMBOL", - "name": "string_interpolation" - } - ] + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^\"]+" + } } - }, - { - "type": "SYMBOL", - "name": "__double_quote" } - ] - } - ] - } + }, + { + "type": "STRING", + "value": "\"" + } + ] + } + ] }, "string_interpolation": { "type": "SEQ", @@ -6319,8 +6305,8 @@ { "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "__dolcbr" + "type": "STRING", + "value": "${" }, "named": true, "value": "interpolation_opening" @@ -6363,8 +6349,8 @@ { "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "__rcbr" + "type": "STRING", + "value": "}" }, "named": true, "value": "interpolation_closing" @@ -8480,62 +8466,6 @@ } ] } - }, - "__dolcbr": { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "${" - } - }, - "__rcbr": { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "}" - } - }, - "__double_quote": { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "\"" - } - }, - "__single_quote": { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "'" - } - }, - "__c_double_quote": { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "c\"" - } - }, - "__c_single_quote": { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "c'" - } - }, - "__r_double_quote": { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "r\"" - } - }, - "__r_single_quote": { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "r'" - } } }, "extras": [ diff --git a/tree_sitter_v/src/node-types.json b/tree_sitter_v/src/node-types.json index 4b37befa..de1ff904 100644 --- a/tree_sitter_v/src/node-types.json +++ b/tree_sitter_v/src/node-types.json @@ -853,7 +853,7 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "capture", @@ -950,20 +950,21 @@ { "type": "compile_time_selector_expression", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "reference_expression", - "named": true - }, - { - "type": "selector_expression", - "named": true - } - ] + "fields": { + "field": { + "multiple": false, + "required": true, + "types": [ + { + "type": "reference_expression", + "named": true + }, + { + "type": "selector_expression", + "named": true + } + ] + } } }, { @@ -2062,11 +2063,6 @@ } } }, - { - "type": "interpolation_closing", - "named": true, - "fields": {} - }, { "type": "interpreted_string_literal", "named": true, @@ -4061,7 +4057,7 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "type_parameter_declaration", @@ -4300,6 +4296,10 @@ "type": "!is", "named": false }, + { + "type": "\"", + "named": false + }, { "type": "#", "named": false @@ -4316,6 +4316,10 @@ "type": "$", "named": false }, + { + "type": "$(", + "named": false + }, { "type": "$else", "named": false @@ -4356,6 +4360,10 @@ "type": "&^=", "named": false }, + { + "type": "'", + "named": false + }, { "type": "(", "named": false @@ -4552,6 +4560,14 @@ "type": "break", "named": false }, + { + "type": "c\"", + "named": false + }, + { + "type": "c'", + "named": false + }, { "type": "chan", "named": false @@ -4628,6 +4644,10 @@ "type": "interface", "named": false }, + { + "type": "interpolation_closing", + "named": true + }, { "type": "interpolation_opening", "named": true @@ -4680,6 +4700,14 @@ "type": "pub", "named": false }, + { + "type": "r\"", + "named": false + }, + { + "type": "r'", + "named": false + }, { "type": "return", "named": false diff --git a/tree_sitter_v/src/parser.c b/tree_sitter_v/src/parser.c index 3c5da10b..b005a879 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 4651 +#define STATE_COUNT 4635 #define LARGE_STATE_COUNT 1610 #define SYMBOL_COUNT 360 -#define ALIAS_COUNT 3 -#define TOKEN_COUNT 143 +#define ALIAS_COUNT 4 +#define TOKEN_COUNT 144 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 46 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 152 +#define PRODUCTION_ID_COUNT 155 enum ts_symbol_identifiers { sym_identifier = 1, @@ -91,14 +91,14 @@ enum ts_symbol_identifiers { anon_sym_AMP_CARET = 65, anon_sym_AMP_AMP = 66, anon_sym_PIPE_PIPE = 67, - anon_sym_DOLLAR = 68, - anon_sym_or = 69, - sym_escape_sequence = 70, - sym_none = 71, - sym_true = 72, - sym_false = 73, - sym_nil = 74, - anon_sym_QMARK_DOT = 75, + anon_sym_or = 68, + sym_escape_sequence = 69, + sym_none = 70, + sym_true = 71, + sym_false = 72, + sym_nil = 73, + anon_sym_QMARK_DOT = 74, + anon_sym_DOLLAR_LPAREN = 75, anon_sym_POUND_LBRACK = 76, anon_sym_if = 77, anon_sym_else = 78, @@ -130,121 +130,121 @@ enum ts_symbol_identifiers { sym_int_literal = 104, sym_float_literal = 105, sym_rune_literal = 106, - aux_sym_c_string_literal_token1 = 107, - aux_sym_c_string_literal_token2 = 108, - aux_sym_raw_string_literal_token1 = 109, - aux_sym_raw_string_literal_token2 = 110, - aux_sym_format_specifier_token1 = 111, - aux_sym_format_specifier_token2 = 112, - anon_sym_0 = 113, - sym_pseudo_compile_time_identifier = 114, - anon_sym_static = 115, - anon_sym_volatile = 116, - anon_sym_shared = 117, - anon_sym_map_LBRACK = 118, - anon_sym_chan = 119, - anon_sym_thread = 120, - anon_sym_atomic = 121, - anon_sym_assert = 122, - anon_sym_defer = 123, - anon_sym_goto = 124, - anon_sym_break = 125, - anon_sym_continue = 126, - anon_sym_return = 127, - anon_sym_DOLLARfor = 128, - anon_sym_for = 129, - anon_sym_DOT_DOT = 130, - anon_sym_POUND = 131, - aux_sym_hash_statement_token1 = 132, - anon_sym_asm = 133, - aux_sym__content_block_token1 = 134, - anon_sym_AT_LBRACK = 135, - sym___dolcbr = 136, - sym___double_quote = 137, - sym___single_quote = 138, - sym___c_double_quote = 139, - sym___c_single_quote = 140, - sym___r_double_quote = 141, - sym___r_single_quote = 142, - sym_source_file = 143, - sym_shebang = 144, - sym_line_comment = 145, - sym_block_comment = 146, - sym_module_clause = 147, - sym_import_list = 148, - sym_import_declaration = 149, - sym_import_spec = 150, - sym_import_path = 151, - sym_import_name = 152, - sym_import_alias = 153, - sym_selective_import_list = 154, - sym_const_declaration = 155, - sym_const_definition = 156, - sym_global_var_declaration = 157, - sym_global_var_definition = 158, - sym__global_var_value = 159, - sym_type_declaration = 160, - sym__type_union_list = 161, - sym_function_declaration = 162, - sym_static_method_declaration = 163, - sym_static_receiver = 164, - sym__function_name = 165, - sym_overridable_operator = 166, - sym_receiver = 167, - sym_signature = 168, - sym_parameter_list = 169, - sym_parameter_declaration = 170, - sym_type_parameter_list = 171, - sym_type_parameter_declaration = 172, - sym_generic_parameters = 173, - sym_generic_parameter = 174, - sym_struct_declaration = 175, - sym__struct_body = 176, - sym_struct_field_scope = 177, - sym_struct_field_declaration = 178, - sym__struct_field_definition = 179, - sym_embedded_definition = 180, - sym_enum_declaration = 181, - sym_enum_backed_type = 182, - sym__enum_body = 183, - sym_enum_field_definition = 184, - sym_interface_declaration = 185, - sym__interface_body = 186, - sym_interface_method_definition = 187, - sym__expression = 188, - sym__expression_without_blocks = 189, - sym__expression_with_blocks = 190, - sym_strictly_expression_list = 191, - sym_inc_expression = 192, - sym_dec_expression = 193, - sym_or_block_expression = 194, - sym_option_propagation_expression = 195, - sym_result_propagation_expression = 196, - sym_anon_struct_value_expression = 197, - sym_go_expression = 198, - sym_spawn_expression = 199, - sym_parenthesized_expression = 200, - sym_call_expression = 201, - sym_type_parameters = 202, - sym_argument_list = 203, - sym_short_lambda = 204, - sym_argument = 205, - sym_special_argument_list = 206, - sym_type_initializer = 207, - sym_type_initializer_body = 208, - sym_element_list = 209, - sym_short_element_list = 210, - sym_keyed_element = 211, - sym_function_literal = 212, - sym_capture_list = 213, - sym_capture = 214, - sym_reference_expression = 215, - sym_type_reference_expression = 216, - sym_unary_expression = 217, - sym_receive_expression = 218, - sym_binary_expression = 219, - sym_as_type_cast_expression = 220, - sym_compile_time_selector_expression = 221, + anon_sym_SQUOTE = 107, + aux_sym_interpreted_string_literal_token1 = 108, + anon_sym_DOLLAR = 109, + anon_sym_DQUOTE = 110, + aux_sym_interpreted_string_literal_token2 = 111, + anon_sym_c_SQUOTE = 112, + anon_sym_c_DQUOTE = 113, + anon_sym_r_SQUOTE = 114, + aux_sym_raw_string_literal_token1 = 115, + anon_sym_r_DQUOTE = 116, + aux_sym_raw_string_literal_token2 = 117, + anon_sym_DOLLAR_LBRACE = 118, + aux_sym_format_specifier_token1 = 119, + aux_sym_format_specifier_token2 = 120, + anon_sym_0 = 121, + sym_pseudo_compile_time_identifier = 122, + anon_sym_static = 123, + anon_sym_volatile = 124, + anon_sym_shared = 125, + anon_sym_map_LBRACK = 126, + anon_sym_chan = 127, + anon_sym_thread = 128, + anon_sym_atomic = 129, + anon_sym_assert = 130, + anon_sym_defer = 131, + anon_sym_goto = 132, + anon_sym_break = 133, + anon_sym_continue = 134, + anon_sym_return = 135, + anon_sym_DOLLARfor = 136, + anon_sym_for = 137, + anon_sym_DOT_DOT = 138, + anon_sym_POUND = 139, + aux_sym_hash_statement_token1 = 140, + anon_sym_asm = 141, + aux_sym__content_block_token1 = 142, + anon_sym_AT_LBRACK = 143, + sym_source_file = 144, + sym_shebang = 145, + sym_line_comment = 146, + sym_block_comment = 147, + sym_module_clause = 148, + sym_import_list = 149, + sym_import_declaration = 150, + sym_import_spec = 151, + sym_import_path = 152, + sym_import_name = 153, + sym_import_alias = 154, + sym_selective_import_list = 155, + sym_const_declaration = 156, + sym_const_definition = 157, + sym_global_var_declaration = 158, + sym_global_var_definition = 159, + sym__global_var_value = 160, + sym_type_declaration = 161, + sym__type_union_list = 162, + sym_function_declaration = 163, + sym_static_method_declaration = 164, + sym_static_receiver = 165, + sym__function_name = 166, + sym_overridable_operator = 167, + sym_receiver = 168, + sym_signature = 169, + sym_parameter_list = 170, + sym_parameter_declaration = 171, + sym_type_parameter_list = 172, + sym_type_parameter_declaration = 173, + sym_generic_parameters = 174, + sym_generic_parameter = 175, + sym_struct_declaration = 176, + sym__struct_body = 177, + sym_struct_field_scope = 178, + sym_struct_field_declaration = 179, + sym__struct_field_definition = 180, + sym_embedded_definition = 181, + sym_enum_declaration = 182, + sym_enum_backed_type = 183, + sym__enum_body = 184, + sym_enum_field_definition = 185, + sym_interface_declaration = 186, + sym__interface_body = 187, + sym_interface_method_definition = 188, + sym__expression = 189, + sym__expression_without_blocks = 190, + sym__expression_with_blocks = 191, + sym_strictly_expression_list = 192, + sym_inc_expression = 193, + sym_dec_expression = 194, + sym_or_block_expression = 195, + sym_option_propagation_expression = 196, + sym_result_propagation_expression = 197, + sym_anon_struct_value_expression = 198, + sym_go_expression = 199, + sym_spawn_expression = 200, + sym_parenthesized_expression = 201, + sym_call_expression = 202, + sym_type_parameters = 203, + sym_argument_list = 204, + sym_short_lambda = 205, + sym_argument = 206, + sym_special_argument_list = 207, + sym_type_initializer = 208, + sym_type_initializer_body = 209, + sym_element_list = 210, + sym_short_element_list = 211, + sym_keyed_element = 212, + sym_function_literal = 213, + sym_capture_list = 214, + sym_capture = 215, + sym_reference_expression = 216, + sym_type_reference_expression = 217, + sym_unary_expression = 218, + sym_receive_expression = 219, + sym_binary_expression = 220, + sym_as_type_cast_expression = 221, sym_or_block = 222, sym__max_group = 223, sym_literal = 224, @@ -254,98 +254,98 @@ enum ts_symbol_identifiers { sym_array_creation = 228, sym_fixed_array_creation = 229, sym_selector_expression = 230, - sym_index_expression = 231, - sym_slice_expression = 232, - sym_if_expression = 233, - sym_else_branch = 234, - sym_compile_time_if_expression = 235, - sym_is_expression = 236, - sym_in_expression = 237, - sym_enum_fetch = 238, - sym_match_expression = 239, - sym_match_arms = 240, - sym_match_arm = 241, - sym_match_expression_list = 242, - sym_match_arm_type = 243, - sym_match_else_arm_clause = 244, - sym_select_expression = 245, - sym_select_arm = 246, - sym_select_arm_statement = 247, - sym__select_arm_assignment_statement = 248, - sym_select_var_declaration = 249, - sym_select_else_arn_clause = 250, - sym_lock_expression = 251, - sym_unsafe_expression = 252, - sym_sql_expression = 253, - sym_c_string_literal = 254, - sym_raw_string_literal = 255, - sym_interpreted_string_literal = 256, - sym_string_interpolation = 257, - sym_format_specifier = 258, - sym_visibility_modifiers = 259, - sym_mutability_modifiers = 260, - sym_mutable_identifier = 261, - sym_mutable_expression = 262, - sym_identifier_list = 263, - sym_expression_list = 264, - sym_expression_without_blocks_list = 265, - sym_plain_type = 266, - sym__plain_type_without_special = 267, - sym_anon_struct_type = 268, - sym_multi_return_type = 269, - sym_result_type = 270, - sym_option_type = 271, - sym_qualified_type = 272, - sym_fixed_array_type = 273, - sym_array_type = 274, - sym_pointer_type = 275, - sym_wrong_pointer_type = 276, - sym_map_type = 277, - sym_channel_type = 278, - sym_shared_type = 279, - sym_thread_type = 280, - sym_atomic_type = 281, - sym_generic_type = 282, - sym_function_type = 283, - sym__statement_list = 284, - sym__statement = 285, - sym_simple_statement = 286, - sym_assert_statement = 287, - sym_append_statement = 288, - sym_send_statement = 289, - sym_var_declaration = 290, - sym_var_definition_list = 291, - sym_var_definition = 292, - sym_assignment_statement = 293, - sym_block = 294, - sym_defer_statement = 295, - sym_label_reference = 296, - sym_goto_statement = 297, - sym_break_statement = 298, - sym_continue_statement = 299, - sym_return_statement = 300, - sym_label_definition = 301, - sym_labeled_statement = 302, - sym_empty_labeled_statement = 303, - sym_compile_time_for_statement = 304, - sym_for_statement = 305, - sym_is_clause = 306, - sym_range_clause = 307, - sym_for_clause = 308, - sym__definite_range = 309, - sym_range = 310, - sym_hash_statement = 311, - sym_asm_statement = 312, - sym__content_block = 313, - sym_attributes = 314, - sym_attribute = 315, - sym_attribute_expression = 316, - sym_if_attribute = 317, - sym__plain_attribute = 318, - sym_literal_attribute = 319, - sym_value_attribute = 320, - sym_key_value_attribute = 321, - sym___rcbr = 322, + sym_compile_time_selector_expression = 231, + sym_index_expression = 232, + sym_slice_expression = 233, + sym_if_expression = 234, + sym_else_branch = 235, + sym_compile_time_if_expression = 236, + sym_is_expression = 237, + sym_in_expression = 238, + sym_enum_fetch = 239, + sym_match_expression = 240, + sym_match_arms = 241, + sym_match_arm = 242, + sym_match_expression_list = 243, + sym_match_arm_type = 244, + sym_match_else_arm_clause = 245, + sym_select_expression = 246, + sym_select_arm = 247, + sym_select_arm_statement = 248, + sym__select_arm_assignment_statement = 249, + sym_select_var_declaration = 250, + sym_select_else_arn_clause = 251, + sym_lock_expression = 252, + sym_unsafe_expression = 253, + sym_sql_expression = 254, + sym_interpreted_string_literal = 255, + sym_c_string_literal = 256, + sym_raw_string_literal = 257, + sym_string_interpolation = 258, + sym_format_specifier = 259, + sym_visibility_modifiers = 260, + sym_mutability_modifiers = 261, + sym_mutable_identifier = 262, + sym_mutable_expression = 263, + sym_identifier_list = 264, + sym_expression_list = 265, + sym_expression_without_blocks_list = 266, + sym_plain_type = 267, + sym__plain_type_without_special = 268, + sym_anon_struct_type = 269, + sym_multi_return_type = 270, + sym_result_type = 271, + sym_option_type = 272, + sym_qualified_type = 273, + sym_fixed_array_type = 274, + sym_array_type = 275, + sym_pointer_type = 276, + sym_wrong_pointer_type = 277, + sym_map_type = 278, + sym_channel_type = 279, + sym_shared_type = 280, + sym_thread_type = 281, + sym_atomic_type = 282, + sym_generic_type = 283, + sym_function_type = 284, + sym__statement_list = 285, + sym__statement = 286, + sym_simple_statement = 287, + sym_assert_statement = 288, + sym_append_statement = 289, + sym_send_statement = 290, + sym_var_declaration = 291, + sym_var_definition_list = 292, + sym_var_definition = 293, + sym_assignment_statement = 294, + sym_block = 295, + sym_defer_statement = 296, + sym_label_reference = 297, + sym_goto_statement = 298, + sym_break_statement = 299, + sym_continue_statement = 300, + sym_return_statement = 301, + sym_label_definition = 302, + sym_labeled_statement = 303, + sym_empty_labeled_statement = 304, + sym_compile_time_for_statement = 305, + sym_for_statement = 306, + sym_is_clause = 307, + sym_range_clause = 308, + sym_for_clause = 309, + sym__definite_range = 310, + sym_range = 311, + sym_hash_statement = 312, + sym_asm_statement = 313, + sym__content_block = 314, + sym_attributes = 315, + sym_attribute = 316, + sym_attribute_expression = 317, + sym_if_attribute = 318, + sym__plain_attribute = 319, + sym_literal_attribute = 320, + sym_value_attribute = 321, + sym_key_value_attribute = 322, aux_sym_source_file_repeat1 = 323, aux_sym_block_comment_repeat1 = 324, aux_sym_import_list_repeat1 = 325, @@ -372,8 +372,8 @@ enum ts_symbol_identifiers { aux_sym_match_arms_repeat1 = 346, aux_sym_match_expression_list_repeat1 = 347, aux_sym_select_expression_repeat1 = 348, - aux_sym_c_string_literal_repeat1 = 349, - aux_sym_c_string_literal_repeat2 = 350, + aux_sym_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, @@ -385,7 +385,8 @@ enum ts_symbol_identifiers { aux_sym_attribute_repeat1 = 359, alias_sym_element = 360, alias_sym_field_name = 361, - alias_sym_interpolation_expression = 362, + alias_sym_interpolation_closing = 362, + alias_sym_interpolation_expression = 363, }; static const char * const ts_symbol_names[] = { @@ -457,7 +458,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_AMP_CARET] = "&^", [anon_sym_AMP_AMP] = "&&", [anon_sym_PIPE_PIPE] = "||", - [anon_sym_DOLLAR] = "$", [anon_sym_or] = "or", [sym_escape_sequence] = "escape_sequence", [sym_none] = "none", @@ -465,6 +465,7 @@ static const char * const ts_symbol_names[] = { [sym_false] = "false", [sym_nil] = "nil", [anon_sym_QMARK_DOT] = "\?.", + [anon_sym_DOLLAR_LPAREN] = "$(", [anon_sym_POUND_LBRACK] = "#[", [anon_sym_if] = "if", [anon_sym_else] = "else", @@ -496,10 +497,18 @@ static const char * const ts_symbol_names[] = { [sym_int_literal] = "int_literal", [sym_float_literal] = "float_literal", [sym_rune_literal] = "rune_literal", - [aux_sym_c_string_literal_token1] = "c_string_literal_token1", - [aux_sym_c_string_literal_token2] = "c_string_literal_token2", + [anon_sym_SQUOTE] = "'", + [aux_sym_interpreted_string_literal_token1] = "interpreted_string_literal_token1", + [anon_sym_DOLLAR] = "$", + [anon_sym_DQUOTE] = "\"", + [aux_sym_interpreted_string_literal_token2] = "interpreted_string_literal_token2", + [anon_sym_c_SQUOTE] = "c'", + [anon_sym_c_DQUOTE] = "c\"", + [anon_sym_r_SQUOTE] = "r'", [aux_sym_raw_string_literal_token1] = "raw_string_literal_token1", + [anon_sym_r_DQUOTE] = "r\"", [aux_sym_raw_string_literal_token2] = "raw_string_literal_token2", + [anon_sym_DOLLAR_LBRACE] = "interpolation_opening", [aux_sym_format_specifier_token1] = "format_specifier_token1", [aux_sym_format_specifier_token2] = "format_specifier_token2", [anon_sym_0] = "0", @@ -525,13 +534,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_asm] = "asm", [aux_sym__content_block_token1] = "_content_block_token1", [anon_sym_AT_LBRACK] = "@[", - [sym___dolcbr] = "interpolation_opening", - [sym___double_quote] = "__double_quote", - [sym___single_quote] = "__single_quote", - [sym___c_double_quote] = "__c_double_quote", - [sym___c_single_quote] = "__c_single_quote", - [sym___r_double_quote] = "__r_double_quote", - [sym___r_single_quote] = "__r_single_quote", [sym_source_file] = "source_file", [sym_shebang] = "shebang", [sym_line_comment] = "line_comment", @@ -610,7 +612,6 @@ static const char * const ts_symbol_names[] = { [sym_receive_expression] = "receive_expression", [sym_binary_expression] = "binary_expression", [sym_as_type_cast_expression] = "as_type_cast_expression", - [sym_compile_time_selector_expression] = "compile_time_selector_expression", [sym_or_block] = "or_block", [sym__max_group] = "_max_group", [sym_literal] = "literal", @@ -620,6 +621,7 @@ static const char * const ts_symbol_names[] = { [sym_array_creation] = "array_creation", [sym_fixed_array_creation] = "fixed_array_creation", [sym_selector_expression] = "selector_expression", + [sym_compile_time_selector_expression] = "compile_time_selector_expression", [sym_index_expression] = "index_expression", [sym_slice_expression] = "slice_expression", [sym_if_expression] = "if_expression", @@ -643,9 +645,9 @@ static const char * const ts_symbol_names[] = { [sym_lock_expression] = "lock_expression", [sym_unsafe_expression] = "unsafe_expression", [sym_sql_expression] = "sql_expression", + [sym_interpreted_string_literal] = "interpreted_string_literal", [sym_c_string_literal] = "c_string_literal", [sym_raw_string_literal] = "raw_string_literal", - [sym_interpreted_string_literal] = "interpreted_string_literal", [sym_string_interpolation] = "string_interpolation", [sym_format_specifier] = "format_specifier", [sym_visibility_modifiers] = "visibility_modifiers", @@ -711,7 +713,6 @@ static const char * const ts_symbol_names[] = { [sym_literal_attribute] = "literal_attribute", [sym_value_attribute] = "value_attribute", [sym_key_value_attribute] = "key_value_attribute", - [sym___rcbr] = "interpolation_closing", [aux_sym_source_file_repeat1] = "source_file_repeat1", [aux_sym_block_comment_repeat1] = "block_comment_repeat1", [aux_sym_import_list_repeat1] = "import_list_repeat1", @@ -738,8 +739,8 @@ static const char * const ts_symbol_names[] = { [aux_sym_match_arms_repeat1] = "match_arms_repeat1", [aux_sym_match_expression_list_repeat1] = "match_expression_list_repeat1", [aux_sym_select_expression_repeat1] = "select_expression_repeat1", - [aux_sym_c_string_literal_repeat1] = "c_string_literal_repeat1", - [aux_sym_c_string_literal_repeat2] = "c_string_literal_repeat2", + [aux_sym_interpreted_string_literal_repeat1] = "interpreted_string_literal_repeat1", + [aux_sym_interpreted_string_literal_repeat2] = "interpreted_string_literal_repeat2", [aux_sym_raw_string_literal_repeat1] = "raw_string_literal_repeat1", [aux_sym_raw_string_literal_repeat2] = "raw_string_literal_repeat2", [aux_sym_string_interpolation_repeat1] = "string_interpolation_repeat1", @@ -751,6 +752,7 @@ static const char * const ts_symbol_names[] = { [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", }; @@ -823,7 +825,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_AMP_CARET] = anon_sym_AMP_CARET, [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, - [anon_sym_DOLLAR] = anon_sym_DOLLAR, [anon_sym_or] = anon_sym_or, [sym_escape_sequence] = sym_escape_sequence, [sym_none] = sym_none, @@ -831,6 +832,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_false] = sym_false, [sym_nil] = sym_nil, [anon_sym_QMARK_DOT] = anon_sym_QMARK_DOT, + [anon_sym_DOLLAR_LPAREN] = anon_sym_DOLLAR_LPAREN, [anon_sym_POUND_LBRACK] = anon_sym_POUND_LBRACK, [anon_sym_if] = anon_sym_if, [anon_sym_else] = anon_sym_else, @@ -862,10 +864,18 @@ static const TSSymbol ts_symbol_map[] = { [sym_int_literal] = sym_int_literal, [sym_float_literal] = sym_float_literal, [sym_rune_literal] = sym_rune_literal, - [aux_sym_c_string_literal_token1] = aux_sym_c_string_literal_token1, - [aux_sym_c_string_literal_token2] = aux_sym_c_string_literal_token2, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [aux_sym_interpreted_string_literal_token1] = aux_sym_interpreted_string_literal_token1, + [anon_sym_DOLLAR] = anon_sym_DOLLAR, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [aux_sym_interpreted_string_literal_token2] = aux_sym_interpreted_string_literal_token2, + [anon_sym_c_SQUOTE] = anon_sym_c_SQUOTE, + [anon_sym_c_DQUOTE] = anon_sym_c_DQUOTE, + [anon_sym_r_SQUOTE] = anon_sym_r_SQUOTE, [aux_sym_raw_string_literal_token1] = aux_sym_raw_string_literal_token1, + [anon_sym_r_DQUOTE] = anon_sym_r_DQUOTE, [aux_sym_raw_string_literal_token2] = aux_sym_raw_string_literal_token2, + [anon_sym_DOLLAR_LBRACE] = anon_sym_DOLLAR_LBRACE, [aux_sym_format_specifier_token1] = aux_sym_format_specifier_token1, [aux_sym_format_specifier_token2] = aux_sym_format_specifier_token2, [anon_sym_0] = anon_sym_0, @@ -891,13 +901,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_asm] = anon_sym_asm, [aux_sym__content_block_token1] = aux_sym__content_block_token1, [anon_sym_AT_LBRACK] = anon_sym_AT_LBRACK, - [sym___dolcbr] = sym___dolcbr, - [sym___double_quote] = sym___double_quote, - [sym___single_quote] = sym___single_quote, - [sym___c_double_quote] = sym___c_double_quote, - [sym___c_single_quote] = sym___c_single_quote, - [sym___r_double_quote] = sym___r_double_quote, - [sym___r_single_quote] = sym___r_single_quote, [sym_source_file] = sym_source_file, [sym_shebang] = sym_shebang, [sym_line_comment] = sym_line_comment, @@ -976,7 +979,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_receive_expression] = sym_receive_expression, [sym_binary_expression] = sym_binary_expression, [sym_as_type_cast_expression] = sym_as_type_cast_expression, - [sym_compile_time_selector_expression] = sym_compile_time_selector_expression, [sym_or_block] = sym_or_block, [sym__max_group] = sym__max_group, [sym_literal] = sym_literal, @@ -986,6 +988,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_array_creation] = sym_array_creation, [sym_fixed_array_creation] = sym_fixed_array_creation, [sym_selector_expression] = sym_selector_expression, + [sym_compile_time_selector_expression] = sym_compile_time_selector_expression, [sym_index_expression] = sym_index_expression, [sym_slice_expression] = sym_slice_expression, [sym_if_expression] = sym_if_expression, @@ -1009,9 +1012,9 @@ static const TSSymbol ts_symbol_map[] = { [sym_lock_expression] = sym_lock_expression, [sym_unsafe_expression] = sym_unsafe_expression, [sym_sql_expression] = sym_sql_expression, + [sym_interpreted_string_literal] = sym_interpreted_string_literal, [sym_c_string_literal] = sym_c_string_literal, [sym_raw_string_literal] = sym_raw_string_literal, - [sym_interpreted_string_literal] = sym_interpreted_string_literal, [sym_string_interpolation] = sym_string_interpolation, [sym_format_specifier] = sym_format_specifier, [sym_visibility_modifiers] = sym_visibility_modifiers, @@ -1077,7 +1080,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_literal_attribute] = sym_literal_attribute, [sym_value_attribute] = sym_value_attribute, [sym_key_value_attribute] = sym_key_value_attribute, - [sym___rcbr] = sym___rcbr, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, [aux_sym_block_comment_repeat1] = aux_sym_block_comment_repeat1, [aux_sym_import_list_repeat1] = aux_sym_import_list_repeat1, @@ -1104,8 +1106,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_match_arms_repeat1] = aux_sym_match_arms_repeat1, [aux_sym_match_expression_list_repeat1] = aux_sym_match_expression_list_repeat1, [aux_sym_select_expression_repeat1] = aux_sym_select_expression_repeat1, - [aux_sym_c_string_literal_repeat1] = aux_sym_c_string_literal_repeat1, - [aux_sym_c_string_literal_repeat2] = aux_sym_c_string_literal_repeat2, + [aux_sym_interpreted_string_literal_repeat1] = aux_sym_interpreted_string_literal_repeat1, + [aux_sym_interpreted_string_literal_repeat2] = aux_sym_interpreted_string_literal_repeat2, [aux_sym_raw_string_literal_repeat1] = aux_sym_raw_string_literal_repeat1, [aux_sym_raw_string_literal_repeat2] = aux_sym_raw_string_literal_repeat2, [aux_sym_string_interpolation_repeat1] = aux_sym_string_interpolation_repeat1, @@ -1117,6 +1119,7 @@ static const TSSymbol ts_symbol_map[] = { [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, }; @@ -1393,10 +1396,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DOLLAR] = { - .visible = true, - .named = false, - }, [anon_sym_or] = { .visible = true, .named = false, @@ -1425,6 +1424,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_DOLLAR_LPAREN] = { + .visible = true, + .named = false, + }, [anon_sym_POUND_LBRACK] = { .visible = true, .named = false, @@ -1549,22 +1552,54 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [aux_sym_c_string_literal_token1] = { + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym_interpreted_string_literal_token1] = { .visible = false, .named = false, }, - [aux_sym_c_string_literal_token2] = { + [anon_sym_DOLLAR] = { + .visible = true, + .named = false, + }, + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym_interpreted_string_literal_token2] = { .visible = false, .named = false, }, + [anon_sym_c_SQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_c_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_r_SQUOTE] = { + .visible = true, + .named = false, + }, [aux_sym_raw_string_literal_token1] = { .visible = false, .named = false, }, + [anon_sym_r_DQUOTE] = { + .visible = true, + .named = false, + }, [aux_sym_raw_string_literal_token2] = { .visible = false, .named = false, }, + [anon_sym_DOLLAR_LBRACE] = { + .visible = true, + .named = true, + }, [aux_sym_format_specifier_token1] = { .visible = false, .named = false, @@ -1665,34 +1700,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym___dolcbr] = { - .visible = true, - .named = true, - }, - [sym___double_quote] = { - .visible = false, - .named = true, - }, - [sym___single_quote] = { - .visible = false, - .named = true, - }, - [sym___c_double_quote] = { - .visible = false, - .named = true, - }, - [sym___c_single_quote] = { - .visible = false, - .named = true, - }, - [sym___r_double_quote] = { - .visible = false, - .named = true, - }, - [sym___r_single_quote] = { - .visible = false, - .named = true, - }, [sym_source_file] = { .visible = true, .named = true, @@ -2007,10 +2014,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_compile_time_selector_expression] = { - .visible = true, - .named = true, - }, [sym_or_block] = { .visible = true, .named = true, @@ -2047,6 +2050,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_compile_time_selector_expression] = { + .visible = true, + .named = true, + }, [sym_index_expression] = { .visible = true, .named = true, @@ -2139,15 +2146,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_c_string_literal] = { + [sym_interpreted_string_literal] = { .visible = true, .named = true, }, - [sym_raw_string_literal] = { + [sym_c_string_literal] = { .visible = true, .named = true, }, - [sym_interpreted_string_literal] = { + [sym_raw_string_literal] = { .visible = true, .named = true, }, @@ -2412,10 +2419,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym___rcbr] = { - .visible = true, - .named = true, - }, [aux_sym_source_file_repeat1] = { .visible = false, .named = false, @@ -2520,11 +2523,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_c_string_literal_repeat1] = { + [aux_sym_interpreted_string_literal_repeat1] = { .visible = false, .named = false, }, - [aux_sym_c_string_literal_repeat2] = { + [aux_sym_interpreted_string_literal_repeat2] = { .visible = false, .named = false, }, @@ -2572,6 +2575,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [alias_sym_interpolation_closing] = { + .visible = true, + .named = true, + }, [alias_sym_interpolation_expression] = { .visible = true, .named = true, @@ -2700,130 +2707,131 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [21] = {.index = 29, .length = 2}, [22] = {.index = 31, .length = 2}, [23] = {.index = 33, .length = 2}, - [24] = {.index = 35, .length = 2}, - [25] = {.index = 37, .length = 1}, - [28] = {.index = 38, .length = 2}, - [29] = {.index = 40, .length = 3}, - [30] = {.index = 43, .length = 1}, - [31] = {.index = 44, .length = 2}, - [32] = {.index = 46, .length = 2}, - [33] = {.index = 48, .length = 1}, - [34] = {.index = 49, .length = 3}, - [35] = {.index = 52, .length = 2}, - [36] = {.index = 54, .length = 2}, - [37] = {.index = 56, .length = 1}, - [38] = {.index = 57, .length = 2}, - [39] = {.index = 59, .length = 2}, - [40] = {.index = 61, .length = 1}, - [41] = {.index = 62, .length = 2}, - [42] = {.index = 64, .length = 2}, - [43] = {.index = 66, .length = 2}, - [44] = {.index = 68, .length = 1}, - [45] = {.index = 69, .length = 3}, - [46] = {.index = 72, .length = 3}, - [47] = {.index = 75, .length = 3}, - [48] = {.index = 78, .length = 3}, - [49] = {.index = 81, .length = 3}, - [50] = {.index = 84, .length = 1}, - [51] = {.index = 85, .length = 1}, - [52] = {.index = 86, .length = 2}, - [54] = {.index = 88, .length = 2}, - [55] = {.index = 90, .length = 1}, - [56] = {.index = 91, .length = 3}, - [57] = {.index = 94, .length = 1}, - [58] = {.index = 95, .length = 3}, - [59] = {.index = 98, .length = 1}, - [60] = {.index = 99, .length = 2}, - [61] = {.index = 101, .length = 5}, - [62] = {.index = 106, .length = 1}, - [63] = {.index = 107, .length = 1}, - [64] = {.index = 108, .length = 2}, - [65] = {.index = 110, .length = 2}, - [66] = {.index = 112, .length = 2}, - [67] = {.index = 114, .length = 1}, - [68] = {.index = 115, .length = 2}, - [69] = {.index = 117, .length = 1}, - [70] = {.index = 118, .length = 3}, - [71] = {.index = 121, .length = 1}, - [72] = {.index = 122, .length = 1}, - [73] = {.index = 123, .length = 3}, - [74] = {.index = 126, .length = 2}, - [75] = {.index = 128, .length = 3}, - [76] = {.index = 131, .length = 3}, - [77] = {.index = 134, .length = 2}, - [78] = {.index = 136, .length = 2}, - [79] = {.index = 138, .length = 3}, - [80] = {.index = 141, .length = 3}, - [81] = {.index = 144, .length = 4}, - [82] = {.index = 148, .length = 4}, - [83] = {.index = 152, .length = 4}, - [84] = {.index = 156, .length = 4}, - [85] = {.index = 160, .length = 3}, - [86] = {.index = 57, .length = 2}, - [87] = {.index = 163, .length = 2}, - [88] = {.index = 165, .length = 2}, - [89] = {.index = 167, .length = 1}, - [90] = {.index = 168, .length = 3}, - [91] = {.index = 171, .length = 2}, - [92] = {.index = 173, .length = 2}, - [93] = {.index = 175, .length = 2}, - [94] = {.index = 177, .length = 2}, - [96] = {.index = 179, .length = 3}, - [97] = {.index = 182, .length = 2}, - [98] = {.index = 184, .length = 3}, - [99] = {.index = 187, .length = 3}, - [100] = {.index = 190, .length = 3}, - [101] = {.index = 193, .length = 2}, - [102] = {.index = 195, .length = 4}, - [103] = {.index = 199, .length = 4}, - [104] = {.index = 203, .length = 4}, - [105] = {.index = 207, .length = 3}, - [106] = {.index = 210, .length = 3}, - [107] = {.index = 213, .length = 2}, - [108] = {.index = 215, .length = 4}, - [109] = {.index = 219, .length = 3}, - [110] = {.index = 222, .length = 4}, - [111] = {.index = 226, .length = 4}, - [112] = {.index = 230, .length = 5}, - [113] = {.index = 235, .length = 3}, - [114] = {.index = 238, .length = 3}, - [115] = {.index = 241, .length = 3}, - [116] = {.index = 244, .length = 4}, - [117] = {.index = 248, .length = 3}, - [118] = {.index = 251, .length = 3}, - [119] = {.index = 254, .length = 3}, - [120] = {.index = 257, .length = 3}, - [121] = {.index = 260, .length = 4}, - [122] = {.index = 264, .length = 4}, - [123] = {.index = 268, .length = 4}, - [124] = {.index = 272, .length = 4}, - [125] = {.index = 276, .length = 5}, - [126] = {.index = 281, .length = 5}, - [127] = {.index = 286, .length = 5}, - [128] = {.index = 291, .length = 4}, - [129] = {.index = 295, .length = 4}, - [130] = {.index = 299, .length = 4}, - [131] = {.index = 303, .length = 3}, - [132] = {.index = 306, .length = 5}, - [133] = {.index = 311, .length = 4}, - [134] = {.index = 315, .length = 3}, - [135] = {.index = 318, .length = 4}, - [136] = {.index = 322, .length = 4}, - [137] = {.index = 326, .length = 4}, - [138] = {.index = 330, .length = 5}, - [139] = {.index = 335, .length = 5}, - [140] = {.index = 340, .length = 5}, - [141] = {.index = 345, .length = 6}, - [142] = {.index = 351, .length = 4}, - [143] = {.index = 355, .length = 5}, - [144] = {.index = 360, .length = 5}, - [145] = {.index = 365, .length = 5}, - [146] = {.index = 370, .length = 5}, - [147] = {.index = 375, .length = 6}, - [148] = {.index = 381, .length = 5}, - [149] = {.index = 386, .length = 5}, - [150] = {.index = 391, .length = 6}, - [151] = {.index = 397, .length = 6}, + [26] = {.index = 35, .length = 2}, + [27] = {.index = 37, .length = 1}, + [29] = {.index = 38, .length = 2}, + [30] = {.index = 40, .length = 3}, + [31] = {.index = 43, .length = 1}, + [32] = {.index = 44, .length = 2}, + [33] = {.index = 46, .length = 2}, + [34] = {.index = 48, .length = 1}, + [35] = {.index = 49, .length = 3}, + [36] = {.index = 52, .length = 2}, + [37] = {.index = 54, .length = 2}, + [38] = {.index = 56, .length = 1}, + [39] = {.index = 57, .length = 2}, + [40] = {.index = 59, .length = 2}, + [41] = {.index = 61, .length = 1}, + [42] = {.index = 62, .length = 2}, + [43] = {.index = 64, .length = 2}, + [44] = {.index = 66, .length = 2}, + [45] = {.index = 68, .length = 1}, + [46] = {.index = 69, .length = 3}, + [47] = {.index = 72, .length = 3}, + [48] = {.index = 75, .length = 3}, + [49] = {.index = 78, .length = 3}, + [50] = {.index = 81, .length = 3}, + [51] = {.index = 84, .length = 1}, + [52] = {.index = 85, .length = 1}, + [53] = {.index = 86, .length = 2}, + [55] = {.index = 88, .length = 2}, + [56] = {.index = 90, .length = 1}, + [57] = {.index = 91, .length = 3}, + [58] = {.index = 94, .length = 1}, + [59] = {.index = 95, .length = 3}, + [60] = {.index = 98, .length = 1}, + [62] = {.index = 99, .length = 2}, + [63] = {.index = 101, .length = 5}, + [64] = {.index = 106, .length = 1}, + [65] = {.index = 107, .length = 1}, + [66] = {.index = 108, .length = 2}, + [67] = {.index = 110, .length = 2}, + [68] = {.index = 112, .length = 2}, + [69] = {.index = 114, .length = 1}, + [70] = {.index = 115, .length = 2}, + [71] = {.index = 117, .length = 1}, + [72] = {.index = 118, .length = 3}, + [73] = {.index = 121, .length = 1}, + [74] = {.index = 122, .length = 1}, + [75] = {.index = 123, .length = 3}, + [76] = {.index = 126, .length = 2}, + [77] = {.index = 128, .length = 3}, + [78] = {.index = 131, .length = 3}, + [79] = {.index = 134, .length = 2}, + [80] = {.index = 136, .length = 2}, + [81] = {.index = 138, .length = 3}, + [82] = {.index = 141, .length = 3}, + [83] = {.index = 144, .length = 4}, + [84] = {.index = 148, .length = 4}, + [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}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3095,279 +3103,281 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_condition, 2}, {field_initializer, 0}, [179] = + {field_field, 1}, + [180] = {field_end, 2}, {field_operator, 1}, {field_start, 0}, - [182] = + [183] = {field_name, 2}, {field_types, 4}, - [184] = + [185] = {field_body, 4}, {field_name, 2}, {field_signature, 3}, - [187] = + [188] = {field_generic_parameters, 3}, {field_name, 2}, {field_signature, 4}, - [190] = + [191] = {field_name, 3}, {field_receiver, 2}, {field_signature, 4}, - [193] = + [194] = {field_generic_parameters, 3}, {field_name, 2}, - [195] = + [196] = {field_attributes, 0}, {field_body, 4}, {field_name, 2}, {field_signature, 3}, - [199] = + [200] = {field_attributes, 0}, {field_generic_parameters, 3}, {field_name, 2}, {field_signature, 4}, - [203] = + [204] = {field_attributes, 0}, {field_name, 3}, {field_receiver, 2}, {field_signature, 4}, - [207] = + [208] = {field_attributes, 0}, {field_generic_parameters, 3}, {field_name, 2}, - [210] = + [211] = {field_attributes, 0}, {field_name, 3}, {field_signature, 4}, - [213] = + [214] = {field_attributes, 0}, {field_name, 3}, - [215] = + [216] = {field_mutability, 0}, {field_name, 1}, {field_type, 3}, {field_variadic, 2}, - [219] = + [220] = {field_mutability, 1}, {field_name, 2}, {field_type, 3}, - [222] = + [223] = {field_body, 5}, {field_name, 3}, {field_signature, 4}, {field_static_receiver, 1}, - [226] = + [227] = {field_generic_parameters, 4}, {field_name, 3}, {field_signature, 5}, {field_static_receiver, 1}, - [230] = + [231] = {field_body, 5}, {field_generic_parameters, 3}, {field_name, 2}, {field_receiver, 1}, {field_signature, 4}, - [235] = + [236] = {field_default_value, 3}, {field_name, 0}, {field_type, 1}, - [238] = + [239] = {field_attributes, 2}, {field_name, 0}, {field_signature, 1}, - [241] = + [242] = {field_generic_parameters, 1}, {field_name, 0}, {field_signature, 2}, - [244] = + [245] = {field_block, 3}, {field_condition, 1}, {field_condition, 2}, {field_else_branch, 5}, - [248] = + [249] = {field_end, 1, .inherited = true}, {field_operator, 1, .inherited = true}, {field_start, 1, .inherited = true}, - [251] = + [252] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, - [254] = + [255] = {field_generic_parameters, 3}, {field_name, 2}, {field_types, 5}, - [257] = + [258] = {field_name, 4}, {field_signature, 5}, {field_static_receiver, 2}, - [260] = + [261] = {field_body, 5}, {field_generic_parameters, 3}, {field_name, 2}, {field_signature, 4}, - [264] = + [265] = {field_body, 5}, {field_name, 3}, {field_receiver, 2}, {field_signature, 4}, - [268] = + [269] = {field_generic_parameters, 4}, {field_name, 3}, {field_receiver, 2}, {field_signature, 5}, - [272] = + [273] = {field_attributes, 0}, {field_name, 4}, {field_signature, 5}, {field_static_receiver, 2}, - [276] = + [277] = {field_attributes, 0}, {field_body, 5}, {field_generic_parameters, 3}, {field_name, 2}, {field_signature, 4}, - [281] = + [282] = {field_attributes, 0}, {field_body, 5}, {field_name, 3}, {field_receiver, 2}, {field_signature, 4}, - [286] = + [287] = {field_attributes, 0}, {field_generic_parameters, 4}, {field_name, 3}, {field_receiver, 2}, {field_signature, 5}, - [291] = + [292] = {field_attributes, 0}, {field_body, 5}, {field_name, 3}, {field_signature, 4}, - [295] = + [296] = {field_attributes, 0}, {field_generic_parameters, 4}, {field_name, 3}, {field_signature, 5}, - [299] = + [300] = {field_attributes, 0}, {field_name, 4}, {field_receiver, 3}, {field_signature, 5}, - [303] = + [304] = {field_attributes, 0}, {field_generic_parameters, 4}, {field_name, 3}, - [306] = + [307] = {field_body, 6}, {field_generic_parameters, 4}, {field_name, 3}, {field_signature, 5}, {field_static_receiver, 1}, - [311] = + [312] = {field_attributes, 4}, {field_default_value, 3}, {field_name, 0}, {field_type, 1}, - [315] = + [316] = {field_attributes, 3}, {field_name, 0}, {field_value, 2}, - [318] = + [319] = {field_attributes, 3}, {field_generic_parameters, 1}, {field_name, 0}, {field_signature, 2}, - [322] = + [323] = {field_body, 6}, {field_name, 4}, {field_signature, 5}, {field_static_receiver, 2}, - [326] = + [327] = {field_generic_parameters, 5}, {field_name, 4}, {field_signature, 6}, {field_static_receiver, 2}, - [330] = + [331] = {field_body, 6}, {field_generic_parameters, 4}, {field_name, 3}, {field_receiver, 2}, {field_signature, 5}, - [335] = + [336] = {field_attributes, 0}, {field_body, 6}, {field_name, 4}, {field_signature, 5}, {field_static_receiver, 2}, - [340] = + [341] = {field_attributes, 0}, {field_generic_parameters, 5}, {field_name, 4}, {field_signature, 6}, {field_static_receiver, 2}, - [345] = + [346] = {field_attributes, 0}, {field_body, 6}, {field_generic_parameters, 4}, {field_name, 3}, {field_receiver, 2}, {field_signature, 5}, - [351] = + [352] = {field_attributes, 0}, {field_name, 5}, {field_signature, 6}, {field_static_receiver, 3}, - [355] = + [356] = {field_attributes, 0}, {field_body, 6}, {field_generic_parameters, 4}, {field_name, 3}, {field_signature, 5}, - [360] = + [361] = {field_attributes, 0}, {field_body, 6}, {field_name, 4}, {field_receiver, 3}, {field_signature, 5}, - [365] = + [366] = {field_attributes, 0}, {field_generic_parameters, 5}, {field_name, 4}, {field_receiver, 3}, {field_signature, 6}, - [370] = + [371] = {field_body, 7}, {field_generic_parameters, 5}, {field_name, 4}, {field_signature, 6}, {field_static_receiver, 2}, - [375] = + [376] = {field_attributes, 0}, {field_body, 7}, {field_generic_parameters, 5}, {field_name, 4}, {field_signature, 6}, {field_static_receiver, 2}, - [381] = + [382] = {field_attributes, 0}, {field_body, 7}, {field_name, 5}, {field_signature, 6}, {field_static_receiver, 3}, - [386] = + [387] = {field_attributes, 0}, {field_generic_parameters, 6}, {field_name, 5}, {field_signature, 7}, {field_static_receiver, 3}, - [391] = + [392] = {field_attributes, 0}, {field_body, 7}, {field_generic_parameters, 5}, {field_name, 4}, {field_receiver, 3}, {field_signature, 6}, - [397] = + [398] = {field_attributes, 0}, {field_body, 8}, {field_generic_parameters, 6}, @@ -3384,25 +3394,32 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [18] = { [0] = alias_sym_element, }, - [26] = { - [0] = sym_mutability_modifiers, + [24] = { + [1] = alias_sym_interpolation_closing, }, - [27] = { + [25] = { [0] = alias_sym_interpolation_expression, }, - [53] = { + [28] = { + [0] = sym_mutability_modifiers, + }, + [54] = { [1] = sym_plain_type, }, - [77] = { + [61] = { + [2] = alias_sym_interpolation_closing, + }, + [79] = { [2] = sym_plain_type, }, - [86] = { + [88] = { [0] = alias_sym_field_name, }, - [95] = { + [94] = { [1] = alias_sym_interpolation_expression, + [3] = alias_sym_interpolation_closing, }, - [109] = { + [112] = { [3] = sym_plain_type, }, }; @@ -3508,121 +3525,121 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [83] = 72, [84] = 72, [85] = 85, - [86] = 86, - [87] = 86, - [88] = 86, - [89] = 86, - [90] = 86, - [91] = 86, - [92] = 86, - [93] = 86, - [94] = 86, - [95] = 86, - [96] = 86, - [97] = 86, + [86] = 85, + [87] = 87, + [88] = 85, + [89] = 85, + [90] = 85, + [91] = 85, + [92] = 85, + [93] = 85, + [94] = 85, + [95] = 85, + [96] = 85, + [97] = 85, [98] = 85, - [99] = 86, - [100] = 86, - [101] = 86, - [102] = 86, - [103] = 86, - [104] = 86, - [105] = 86, - [106] = 86, - [107] = 86, - [108] = 86, - [109] = 86, + [99] = 85, + [100] = 85, + [101] = 85, + [102] = 85, + [103] = 85, + [104] = 85, + [105] = 87, + [106] = 85, + [107] = 85, + [108] = 85, + [109] = 85, [110] = 110, [111] = 111, - [112] = 110, - [113] = 113, - [114] = 111, + [112] = 111, + [113] = 111, + [114] = 114, [115] = 110, [116] = 111, - [117] = 113, - [118] = 113, - [119] = 113, + [117] = 110, + [118] = 114, + [119] = 111, [120] = 110, - [121] = 111, - [122] = 110, - [123] = 111, - [124] = 110, - [125] = 111, - [126] = 113, - [127] = 111, - [128] = 113, - [129] = 113, - [130] = 110, - [131] = 111, + [121] = 114, + [122] = 114, + [123] = 110, + [124] = 111, + [125] = 114, + [126] = 114, + [127] = 110, + [128] = 111, + [129] = 111, + [130] = 114, + [131] = 114, [132] = 110, - [133] = 111, - [134] = 110, - [135] = 113, - [136] = 113, - [137] = 111, - [138] = 113, + [133] = 110, + [134] = 114, + [135] = 111, + [136] = 111, + [137] = 114, + [138] = 111, [139] = 110, - [140] = 110, - [141] = 111, - [142] = 113, + [140] = 114, + [141] = 114, + [142] = 110, [143] = 110, - [144] = 113, - [145] = 111, - [146] = 110, - [147] = 111, - [148] = 113, + [144] = 110, + [145] = 114, + [146] = 111, + [147] = 110, + [148] = 111, [149] = 149, [150] = 150, [151] = 150, - [152] = 152, - [153] = 152, - [154] = 150, - [155] = 152, + [152] = 150, + [153] = 153, + [154] = 153, + [155] = 153, [156] = 150, - [157] = 152, - [158] = 152, - [159] = 150, - [160] = 152, + [157] = 150, + [158] = 153, + [159] = 153, + [160] = 153, [161] = 150, - [162] = 150, - [163] = 152, + [162] = 153, + [163] = 153, [164] = 150, - [165] = 150, - [166] = 150, + [165] = 153, + [166] = 153, [167] = 150, - [168] = 152, - [169] = 150, - [170] = 152, - [171] = 150, - [172] = 152, - [173] = 152, - [174] = 152, - [175] = 175, - [176] = 175, - [177] = 68, - [178] = 175, - [179] = 175, - [180] = 175, - [181] = 69, - [182] = 175, - [183] = 67, - [184] = 175, - [185] = 175, - [186] = 175, - [187] = 187, + [168] = 150, + [169] = 153, + [170] = 150, + [171] = 153, + [172] = 150, + [173] = 150, + [174] = 153, + [175] = 69, + [176] = 176, + [177] = 177, + [178] = 177, + [179] = 177, + [180] = 67, + [181] = 177, + [182] = 177, + [183] = 68, + [184] = 184, + [185] = 71, + [186] = 70, + [187] = 177, [188] = 188, - [189] = 189, - [190] = 71, - [191] = 175, - [192] = 192, - [193] = 175, - [194] = 70, - [195] = 175, - [196] = 175, + [189] = 177, + [190] = 177, + [191] = 177, + [192] = 177, + [193] = 177, + [194] = 177, + [195] = 195, + [196] = 177, [197] = 197, [198] = 197, - [199] = 197, - [200] = 200, + [199] = 199, + [200] = 197, [201] = 197, [202] = 197, [203] = 197, @@ -3633,11 +3650,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [208] = 197, [209] = 197, [210] = 210, - [211] = 211, + [211] = 66, [212] = 212, [213] = 213, [214] = 214, - [215] = 66, + [215] = 215, [216] = 216, [217] = 217, [218] = 218, @@ -3654,83 +3671,83 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [229] = 229, [230] = 230, [231] = 231, - [232] = 231, + [232] = 232, [233] = 233, [234] = 234, - [235] = 235, - [236] = 236, - [237] = 234, + [235] = 234, + [236] = 234, + [237] = 233, [238] = 238, [239] = 234, - [240] = 240, - [241] = 241, - [242] = 236, - [243] = 243, - [244] = 244, - [245] = 234, - [246] = 236, - [247] = 241, - [248] = 248, + [240] = 234, + [241] = 238, + [242] = 233, + [243] = 233, + [244] = 238, + [245] = 232, + [246] = 234, + [247] = 234, + [248] = 234, [249] = 234, - [250] = 250, - [251] = 243, - [252] = 243, - [253] = 243, - [254] = 243, - [255] = 241, - [256] = 250, - [257] = 257, - [258] = 236, - [259] = 236, - [260] = 241, - [261] = 243, - [262] = 243, - [263] = 243, - [264] = 243, - [265] = 241, - [266] = 243, - [267] = 236, - [268] = 243, - [269] = 243, - [270] = 243, - [271] = 236, + [250] = 238, + [251] = 232, + [252] = 234, + [253] = 233, + [254] = 233, + [255] = 238, + [256] = 234, + [257] = 234, + [258] = 232, + [259] = 234, + [260] = 238, + [261] = 261, + [262] = 262, + [263] = 233, + [264] = 262, + [265] = 234, + [266] = 234, + [267] = 267, + [268] = 238, + [269] = 234, + [270] = 234, + [271] = 271, [272] = 234, - [273] = 234, - [274] = 243, - [275] = 234, - [276] = 243, - [277] = 236, - [278] = 234, - [279] = 241, - [280] = 241, - [281] = 243, + [273] = 238, + [274] = 232, + [275] = 233, + [276] = 232, + [277] = 277, + [278] = 233, + [279] = 238, + [280] = 234, + [281] = 281, [282] = 234, - [283] = 241, - [284] = 243, - [285] = 243, - [286] = 234, - [287] = 241, - [288] = 241, - [289] = 236, - [290] = 236, - [291] = 243, - [292] = 236, - [293] = 243, - [294] = 243, + [283] = 232, + [284] = 233, + [285] = 234, + [286] = 238, + [287] = 232, + [288] = 288, + [289] = 261, + [290] = 238, + [291] = 233, + [292] = 232, + [293] = 232, + [294] = 232, [295] = 234, - [296] = 236, - [297] = 241, - [298] = 241, - [299] = 236, + [296] = 231, + [297] = 238, + [298] = 233, + [299] = 233, [300] = 300, [301] = 234, - [302] = 240, - [303] = 303, - [304] = 243, - [305] = 243, - [306] = 233, - [307] = 241, - [308] = 238, + [302] = 238, + [303] = 232, + [304] = 232, + [305] = 277, + [306] = 306, + [307] = 307, + [308] = 308, [309] = 309, [310] = 310, [311] = 311, @@ -3743,1109 +3760,1109 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [318] = 318, [319] = 319, [320] = 320, - [321] = 313, - [322] = 314, + [321] = 321, + [322] = 322, [323] = 323, - [324] = 316, - [325] = 319, - [326] = 316, + [324] = 324, + [325] = 325, + [326] = 326, [327] = 327, [328] = 328, - [329] = 319, - [330] = 314, - [331] = 313, + [329] = 329, + [330] = 330, + [331] = 331, [332] = 332, - [333] = 311, + [333] = 333, [334] = 334, [335] = 335, - [336] = 313, - [337] = 314, - [338] = 311, - [339] = 316, + [336] = 336, + [337] = 337, + [338] = 338, + [339] = 339, [340] = 340, - [341] = 316, + [341] = 341, [342] = 342, - [343] = 311, + [343] = 343, [344] = 344, [345] = 345, - [346] = 327, - [347] = 323, - [348] = 314, - [349] = 313, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, [350] = 350, [351] = 351, - [352] = 319, - [353] = 316, - [354] = 314, - [355] = 319, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 308, [356] = 356, [357] = 357, - [358] = 316, + [358] = 358, [359] = 359, [360] = 360, - [361] = 361, + [361] = 317, [362] = 362, - [363] = 313, - [364] = 364, + [363] = 363, + [364] = 328, [365] = 365, - [366] = 311, - [367] = 319, - [368] = 319, - [369] = 319, - [370] = 313, - [371] = 371, - [372] = 323, - [373] = 311, - [374] = 374, + [366] = 319, + [367] = 312, + [368] = 354, + [369] = 312, + [370] = 370, + [371] = 312, + [372] = 308, + [373] = 373, + [374] = 317, [375] = 375, [376] = 376, - [377] = 377, - [378] = 342, - [379] = 314, + [377] = 354, + [378] = 328, + [379] = 308, [380] = 380, - [381] = 381, - [382] = 382, - [383] = 332, - [384] = 327, + [381] = 354, + [382] = 317, + [383] = 328, + [384] = 384, [385] = 385, - [386] = 386, - [387] = 387, - [388] = 388, - [389] = 389, - [390] = 313, - [391] = 314, - [392] = 319, - [393] = 393, - [394] = 316, - [395] = 395, - [396] = 311, - [397] = 316, - [398] = 316, + [386] = 312, + [387] = 362, + [388] = 317, + [389] = 312, + [390] = 317, + [391] = 391, + [392] = 392, + [393] = 363, + [394] = 356, + [395] = 354, + [396] = 308, + [397] = 317, + [398] = 328, [399] = 399, - [400] = 300, - [401] = 401, - [402] = 316, + [400] = 328, + [401] = 356, + [402] = 402, [403] = 403, [404] = 404, [405] = 405, - [406] = 316, - [407] = 311, - [408] = 314, - [409] = 409, + [406] = 312, + [407] = 312, + [408] = 354, + [409] = 308, [410] = 410, - [411] = 313, + [411] = 411, [412] = 412, [413] = 413, [414] = 414, [415] = 415, - [416] = 416, - [417] = 417, - [418] = 418, - [419] = 419, - [420] = 316, + [416] = 328, + [417] = 363, + [418] = 354, + [419] = 308, + [420] = 328, [421] = 421, - [422] = 422, - [423] = 423, - [424] = 311, + [422] = 308, + [423] = 354, + [424] = 308, [425] = 425, [426] = 426, [427] = 427, - [428] = 428, - [429] = 429, - [430] = 342, - [431] = 431, - [432] = 316, + [428] = 317, + [429] = 354, + [430] = 430, + [431] = 413, + [432] = 432, [433] = 433, - [434] = 316, + [434] = 434, [435] = 435, - [436] = 319, - [437] = 319, - [438] = 314, - [439] = 316, - [440] = 313, - [441] = 316, + [436] = 436, + [437] = 328, + [438] = 405, + [439] = 317, + [440] = 440, + [441] = 441, [442] = 442, [443] = 443, - [444] = 311, - [445] = 323, - [446] = 446, + [444] = 444, + [445] = 445, + [446] = 317, [447] = 447, - [448] = 327, - [449] = 316, - [450] = 450, - [451] = 316, - [452] = 452, - [453] = 453, + [448] = 312, + [449] = 312, + [450] = 328, + [451] = 317, + [452] = 354, + [453] = 308, [454] = 454, [455] = 455, - [456] = 316, + [456] = 312, [457] = 457, [458] = 458, - [459] = 316, + [459] = 459, [460] = 460, [461] = 461, [462] = 462, - [463] = 463, - [464] = 464, - [465] = 465, - [466] = 316, - [467] = 467, - [468] = 314, - [469] = 469, - [470] = 313, - [471] = 471, + [463] = 328, + [464] = 363, + [465] = 317, + [466] = 356, + [467] = 354, + [468] = 308, + [469] = 312, + [470] = 317, + [471] = 317, [472] = 472, - [473] = 473, - [474] = 311, - [475] = 319, + [473] = 328, + [474] = 474, + [475] = 475, [476] = 476, - [477] = 477, - [478] = 319, + [477] = 354, + [478] = 308, [479] = 479, - [480] = 316, + [480] = 480, [481] = 481, - [482] = 314, + [482] = 328, [483] = 483, [484] = 484, - [485] = 313, - [486] = 486, - [487] = 487, - [488] = 488, - [489] = 489, - [490] = 490, + [485] = 485, + [486] = 319, + [487] = 328, + [488] = 391, + [489] = 328, + [490] = 328, [491] = 491, - [492] = 319, + [492] = 328, [493] = 493, - [494] = 494, + [494] = 328, [495] = 495, - [496] = 319, - [497] = 351, - [498] = 498, - [499] = 499, + [496] = 496, + [497] = 328, + [498] = 328, + [499] = 317, [500] = 500, - [501] = 501, - [502] = 311, - [503] = 503, + [501] = 328, + [502] = 328, + [503] = 328, [504] = 504, [505] = 505, [506] = 506, [507] = 507, - [508] = 507, + [508] = 504, [509] = 509, - [510] = 510, - [511] = 506, + [510] = 405, + [511] = 511, [512] = 512, - [513] = 506, - [514] = 507, - [515] = 506, - [516] = 507, - [517] = 506, - [518] = 506, - [519] = 510, + [513] = 504, + [514] = 511, + [515] = 504, + [516] = 504, + [517] = 517, + [518] = 511, + [519] = 504, [520] = 520, - [521] = 507, + [521] = 506, [522] = 507, - [523] = 506, - [524] = 351, - [525] = 510, - [526] = 507, - [527] = 507, - [528] = 507, - [529] = 506, + [523] = 511, + [524] = 504, + [525] = 507, + [526] = 526, + [527] = 527, + [528] = 511, + [529] = 504, [530] = 507, - [531] = 506, + [531] = 504, [532] = 506, - [533] = 510, - [534] = 534, - [535] = 506, - [536] = 510, - [537] = 506, - [538] = 538, - [539] = 507, - [540] = 512, - [541] = 507, + [533] = 507, + [534] = 504, + [535] = 507, + [536] = 506, + [537] = 504, + [538] = 507, + [539] = 504, + [540] = 507, + [541] = 504, [542] = 507, - [543] = 543, - [544] = 512, - [545] = 506, + [543] = 507, + [544] = 511, + [545] = 507, [546] = 507, - [547] = 507, - [548] = 510, - [549] = 512, - [550] = 507, + [547] = 504, + [548] = 507, + [549] = 504, + [550] = 504, [551] = 551, [552] = 552, - [553] = 553, + [553] = 405, [554] = 554, - [555] = 553, - [556] = 556, - [557] = 351, + [555] = 555, + [556] = 405, + [557] = 557, [558] = 558, [559] = 559, - [560] = 558, - [561] = 553, + [560] = 560, + [561] = 561, [562] = 562, [563] = 563, - [564] = 554, - [565] = 556, - [566] = 351, - [567] = 558, - [568] = 559, + [564] = 551, + [565] = 565, + [566] = 566, + [567] = 555, + [568] = 555, [569] = 569, - [570] = 552, - [571] = 551, - [572] = 572, - [573] = 573, - [574] = 574, - [575] = 553, - [576] = 559, - [577] = 556, - [578] = 351, - [579] = 562, - [580] = 351, - [581] = 554, - [582] = 563, - [583] = 562, - [584] = 558, - [585] = 351, - [586] = 586, - [587] = 556, - [588] = 554, - [589] = 553, - [590] = 559, - [591] = 558, - [592] = 556, - [593] = 554, - [594] = 562, - [595] = 562, - [596] = 596, - [597] = 563, - [598] = 554, - [599] = 556, - [600] = 553, - [601] = 553, - [602] = 351, - [603] = 558, - [604] = 559, - [605] = 574, - [606] = 606, - [607] = 563, - [608] = 562, - [609] = 559, - [610] = 573, - [611] = 558, - [612] = 351, - [613] = 556, - [614] = 572, - [615] = 554, - [616] = 563, - [617] = 562, - [618] = 553, - [619] = 552, - [620] = 558, - [621] = 351, - [622] = 563, - [623] = 569, - [624] = 559, - [625] = 625, - [626] = 558, - [627] = 627, + [570] = 569, + [571] = 558, + [572] = 569, + [573] = 561, + [574] = 565, + [575] = 575, + [576] = 576, + [577] = 565, + [578] = 559, + [579] = 579, + [580] = 554, + [581] = 551, + [582] = 566, + [583] = 583, + [584] = 559, + [585] = 555, + [586] = 554, + [587] = 405, + [588] = 557, + [589] = 558, + [590] = 551, + [591] = 563, + [592] = 592, + [593] = 562, + [594] = 561, + [595] = 561, + [596] = 562, + [597] = 565, + [598] = 598, + [599] = 554, + [600] = 600, + [601] = 559, + [602] = 554, + [603] = 600, + [604] = 563, + [605] = 563, + [606] = 560, + [607] = 551, + [608] = 405, + [609] = 565, + [610] = 569, + [611] = 562, + [612] = 405, + [613] = 561, + [614] = 592, + [615] = 560, + [616] = 592, + [617] = 555, + [618] = 598, + [619] = 569, + [620] = 592, + [621] = 621, + [622] = 557, + [623] = 557, + [624] = 566, + [625] = 569, + [626] = 561, + [627] = 562, [628] = 563, - [629] = 562, - [630] = 563, - [631] = 554, - [632] = 632, - [633] = 556, - [634] = 351, - [635] = 558, - [636] = 636, - [637] = 559, - [638] = 558, - [639] = 553, - [640] = 563, - [641] = 641, + [629] = 551, + [630] = 565, + [631] = 569, + [632] = 561, + [633] = 633, + [634] = 555, + [635] = 554, + [636] = 562, + [637] = 563, + [638] = 638, + [639] = 569, + [640] = 638, + [641] = 565, [642] = 642, - [643] = 596, - [644] = 606, - [645] = 645, - [646] = 574, - [647] = 647, - [648] = 573, - [649] = 572, - [650] = 569, - [651] = 551, - [652] = 625, - [653] = 552, - [654] = 569, - [655] = 625, - [656] = 552, - [657] = 559, - [658] = 558, - [659] = 351, - [660] = 563, - [661] = 556, - [662] = 554, - [663] = 563, - [664] = 351, - [665] = 562, - [666] = 558, - [667] = 562, - [668] = 645, + [643] = 405, + [644] = 565, + [645] = 551, + [646] = 563, + [647] = 562, + [648] = 557, + [649] = 592, + [650] = 566, + [651] = 569, + [652] = 561, + [653] = 566, + [654] = 560, + [655] = 558, + [656] = 551, + [657] = 565, + [658] = 569, + [659] = 559, + [660] = 569, + [661] = 565, + [662] = 551, + [663] = 560, + [664] = 551, + [665] = 563, + [666] = 563, + [667] = 563, + [668] = 668, [669] = 562, - [670] = 670, - [671] = 563, - [672] = 574, - [673] = 554, - [674] = 559, - [675] = 556, - [676] = 558, - [677] = 677, - [678] = 351, - [679] = 558, - [680] = 559, - [681] = 351, - [682] = 556, - [683] = 554, - [684] = 563, - [685] = 562, - [686] = 559, - [687] = 551, - [688] = 573, - [689] = 556, - [690] = 554, - [691] = 562, - [692] = 572, - [693] = 558, - [694] = 551, - [695] = 351, - [696] = 552, - [697] = 563, - [698] = 642, - [699] = 596, - [700] = 572, - [701] = 606, - [702] = 573, - [703] = 645, - [704] = 642, - [705] = 574, - [706] = 569, - [707] = 625, - [708] = 552, - [709] = 551, - [710] = 562, - [711] = 569, - [712] = 563, - [713] = 572, - [714] = 554, - [715] = 556, - [716] = 351, - [717] = 558, - [718] = 559, - [719] = 719, - [720] = 596, - [721] = 573, - [722] = 606, - [723] = 723, - [724] = 645, - [725] = 574, - [726] = 642, - [727] = 554, - [728] = 596, - [729] = 729, - [730] = 556, - [731] = 574, - [732] = 559, - [733] = 606, - [734] = 645, - [735] = 642, - [736] = 573, - [737] = 625, - [738] = 596, - [739] = 562, - [740] = 563, - [741] = 554, - [742] = 556, - [743] = 351, - [744] = 558, - [745] = 559, - [746] = 572, - [747] = 606, - [748] = 645, - [749] = 642, - [750] = 596, - [751] = 551, - [752] = 606, - [753] = 645, - [754] = 642, - [755] = 562, - [756] = 596, - [757] = 552, - [758] = 569, - [759] = 574, - [760] = 569, - [761] = 606, - [762] = 762, - [763] = 645, - [764] = 552, - [765] = 765, - [766] = 551, - [767] = 767, - [768] = 563, - [769] = 625, - [770] = 573, - [771] = 562, - [772] = 563, - [773] = 554, - [774] = 572, - [775] = 556, - [776] = 351, - [777] = 572, - [778] = 573, - [779] = 558, - [780] = 574, - [781] = 559, - [782] = 782, - [783] = 642, - [784] = 551, - [785] = 596, - [786] = 606, - [787] = 645, - [788] = 642, - [789] = 596, - [790] = 606, - [791] = 645, - [792] = 552, - [793] = 642, - [794] = 569, - [795] = 596, - [796] = 554, - [797] = 606, - [798] = 645, - [799] = 556, - [800] = 625, - [801] = 351, - [802] = 563, - [803] = 559, - [804] = 574, - [805] = 625, - [806] = 573, - [807] = 562, - [808] = 563, - [809] = 554, - [810] = 556, - [811] = 811, - [812] = 351, - [813] = 558, - [814] = 559, - [815] = 572, - [816] = 551, - [817] = 642, - [818] = 596, - [819] = 552, - [820] = 606, - [821] = 569, - [822] = 553, - [823] = 562, - [824] = 645, + [670] = 560, + [671] = 560, + [672] = 559, + [673] = 558, + [674] = 562, + [675] = 561, + [676] = 557, + [677] = 405, + [678] = 554, + [679] = 559, + [680] = 558, + [681] = 555, + [682] = 557, + [683] = 565, + [684] = 405, + [685] = 554, + [686] = 551, + [687] = 555, + [688] = 554, + [689] = 555, + [690] = 563, + [691] = 405, + [692] = 562, + [693] = 557, + [694] = 561, + [695] = 566, + [696] = 555, + [697] = 554, + [698] = 592, + [699] = 558, + [700] = 558, + [701] = 405, + [702] = 559, + [703] = 561, + [704] = 638, + [705] = 560, + [706] = 600, + [707] = 561, + [708] = 579, + [709] = 561, + [710] = 555, + [711] = 559, + [712] = 554, + [713] = 557, + [714] = 558, + [715] = 598, + [716] = 562, + [717] = 554, + [718] = 405, + [719] = 559, + [720] = 405, + [721] = 563, + [722] = 560, + [723] = 554, + [724] = 559, + [725] = 560, + [726] = 638, + [727] = 557, + [728] = 559, + [729] = 551, + [730] = 598, + [731] = 559, + [732] = 558, + [733] = 600, + [734] = 579, + [735] = 554, + [736] = 405, + [737] = 559, + [738] = 559, + [739] = 565, + [740] = 569, + [741] = 405, + [742] = 557, + [743] = 566, + [744] = 576, + [745] = 621, + [746] = 558, + [747] = 560, + [748] = 638, + [749] = 598, + [750] = 600, + [751] = 592, + [752] = 579, + [753] = 559, + [754] = 560, + [755] = 569, + [756] = 405, + [757] = 565, + [758] = 555, + [759] = 598, + [760] = 760, + [761] = 551, + [762] = 579, + [763] = 763, + [764] = 592, + [765] = 554, + [766] = 563, + [767] = 638, + [768] = 562, + [769] = 561, + [770] = 559, + [771] = 598, + [772] = 562, + [773] = 566, + [774] = 774, + [775] = 555, + [776] = 561, + [777] = 560, + [778] = 557, + [779] = 559, + [780] = 642, + [781] = 558, + [782] = 558, + [783] = 559, + [784] = 557, + [785] = 785, + [786] = 554, + [787] = 560, + [788] = 638, + [789] = 555, + [790] = 566, + [791] = 560, + [792] = 598, + [793] = 600, + [794] = 557, + [795] = 558, + [796] = 579, + [797] = 558, + [798] = 560, + [799] = 562, + [800] = 562, + [801] = 579, + [802] = 569, + [803] = 554, + [804] = 561, + [805] = 560, + [806] = 562, + [807] = 563, + [808] = 808, + [809] = 405, + [810] = 551, + [811] = 565, + [812] = 565, + [813] = 551, + [814] = 569, + [815] = 638, + [816] = 563, + [817] = 561, + [818] = 600, + [819] = 562, + [820] = 561, + [821] = 562, + [822] = 638, + [823] = 560, + [824] = 600, [825] = 569, - [826] = 552, - [827] = 551, - [828] = 574, - [829] = 573, - [830] = 596, - [831] = 572, - [832] = 563, - [833] = 551, - [834] = 552, - [835] = 569, - [836] = 574, - [837] = 573, - [838] = 572, - [839] = 551, - [840] = 552, - [841] = 569, - [842] = 563, - [843] = 625, - [844] = 642, - [845] = 553, - [846] = 572, - [847] = 782, - [848] = 573, - [849] = 574, - [850] = 573, - [851] = 572, - [852] = 551, - [853] = 574, - [854] = 554, - [855] = 625, - [856] = 552, - [857] = 562, + [826] = 565, + [827] = 563, + [828] = 551, + [829] = 563, + [830] = 562, + [831] = 598, + [832] = 561, + [833] = 566, + [834] = 554, + [835] = 600, + [836] = 551, + [837] = 557, + [838] = 579, + [839] = 565, + [840] = 569, + [841] = 560, + [842] = 559, + [843] = 558, + [844] = 844, + [845] = 560, + [846] = 559, + [847] = 559, + [848] = 848, + [849] = 579, + [850] = 566, + [851] = 598, + [852] = 600, + [853] = 555, + [854] = 569, + [855] = 633, + [856] = 565, + [857] = 551, [858] = 563, - [859] = 554, - [860] = 556, - [861] = 351, - [862] = 559, - [863] = 558, + [859] = 638, + [860] = 569, + [861] = 565, + [862] = 583, + [863] = 562, [864] = 558, - [865] = 558, - [866] = 559, - [867] = 569, - [868] = 553, - [869] = 351, - [870] = 556, - [871] = 554, - [872] = 563, - [873] = 562, - [874] = 574, - [875] = 573, - [876] = 572, - [877] = 551, - [878] = 552, - [879] = 569, - [880] = 569, - [881] = 552, - [882] = 767, - [883] = 551, - [884] = 552, - [885] = 647, - [886] = 574, - [887] = 887, - [888] = 573, - [889] = 627, - [890] = 572, - [891] = 351, - [892] = 551, - [893] = 625, - [894] = 558, - [895] = 572, - [896] = 573, - [897] = 556, - [898] = 574, - [899] = 559, - [900] = 625, + [865] = 561, + [866] = 785, + [867] = 557, + [868] = 405, + [869] = 554, + [870] = 566, + [871] = 638, + [872] = 554, + [873] = 598, + [874] = 600, + [875] = 555, + [876] = 579, + [877] = 555, + [878] = 551, + [879] = 566, + [880] = 554, + [881] = 592, + [882] = 405, + [883] = 883, + [884] = 563, + [885] = 562, + [886] = 557, + [887] = 561, + [888] = 558, + [889] = 592, + [890] = 558, + [891] = 592, + [892] = 563, + [893] = 592, + [894] = 563, + [895] = 895, + [896] = 566, + [897] = 405, + [898] = 552, + [899] = 557, + [900] = 555, [901] = 569, - [902] = 569, - [903] = 552, - [904] = 551, - [905] = 572, - [906] = 625, - [907] = 573, - [908] = 767, - [909] = 574, - [910] = 569, - [911] = 723, - [912] = 719, - [913] = 574, - [914] = 562, - [915] = 563, - [916] = 554, - [917] = 556, - [918] = 573, - [919] = 558, - [920] = 677, - [921] = 551, - [922] = 572, - [923] = 573, - [924] = 632, - [925] = 574, - [926] = 586, - [927] = 559, - [928] = 569, - [929] = 636, - [930] = 552, - [931] = 572, - [932] = 551, - [933] = 625, - [934] = 574, - [935] = 573, - [936] = 572, - [937] = 551, - [938] = 552, - [939] = 553, - [940] = 569, - [941] = 574, - [942] = 573, - [943] = 569, - [944] = 552, - [945] = 572, - [946] = 551, + [902] = 638, + [903] = 638, + [904] = 565, + [905] = 555, + [906] = 592, + [907] = 569, + [908] = 554, + [909] = 559, + [910] = 598, + [911] = 560, + [912] = 600, + [913] = 579, + [914] = 555, + [915] = 554, + [916] = 565, + [917] = 551, + [918] = 579, + [919] = 555, + [920] = 561, + [921] = 562, + [922] = 551, + [923] = 405, + [924] = 560, + [925] = 559, + [926] = 563, + [927] = 774, + [928] = 557, + [929] = 555, + [930] = 895, + [931] = 554, + [932] = 405, + [933] = 569, + [934] = 565, + [935] = 848, + [936] = 551, + [937] = 557, + [938] = 558, + [939] = 558, + [940] = 559, + [941] = 557, + [942] = 554, + [943] = 405, + [944] = 557, + [945] = 621, + [946] = 558, [947] = 947, - [948] = 69, + [948] = 70, [949] = 71, - [950] = 67, - [951] = 70, - [952] = 68, + [950] = 69, + [951] = 68, + [952] = 67, [953] = 953, - [954] = 954, - [955] = 227, - [956] = 219, - [957] = 220, - [958] = 224, - [959] = 223, - [960] = 225, - [961] = 226, - [962] = 221, - [963] = 217, - [964] = 964, - [965] = 218, - [966] = 228, + [954] = 220, + [955] = 955, + [956] = 228, + [957] = 218, + [958] = 222, + [959] = 219, + [960] = 217, + [961] = 221, + [962] = 962, + [963] = 223, + [964] = 227, + [965] = 224, + [966] = 225, [967] = 230, - [968] = 224, - [969] = 225, - [970] = 221, - [971] = 971, - [972] = 217, - [973] = 219, - [974] = 974, - [975] = 223, - [976] = 976, - [977] = 228, + [968] = 229, + [969] = 969, + [970] = 227, + [971] = 228, + [972] = 972, + [973] = 225, + [974] = 223, + [975] = 217, + [976] = 222, + [977] = 977, [978] = 978, - [979] = 229, - [980] = 233, - [981] = 235, - [982] = 71, - [983] = 67, - [984] = 231, - [985] = 244, - [986] = 233, - [987] = 68, + [979] = 220, + [980] = 262, + [981] = 67, + [982] = 68, + [983] = 69, + [984] = 300, + [985] = 281, + [986] = 262, + [987] = 231, [988] = 231, - [989] = 257, + [989] = 267, [990] = 70, - [991] = 69, - [992] = 300, - [993] = 479, - [994] = 310, - [995] = 334, - [996] = 460, - [997] = 473, - [998] = 425, - [999] = 315, - [1000] = 435, - [1001] = 477, - [1002] = 422, - [1003] = 493, - [1004] = 427, - [1005] = 421, - [1006] = 469, - [1007] = 463, - [1008] = 452, - [1009] = 404, - [1010] = 447, - [1011] = 423, - [1012] = 317, - [1013] = 385, - [1014] = 382, - [1015] = 414, - [1016] = 361, - [1017] = 359, - [1018] = 433, - [1019] = 357, - [1020] = 415, - [1021] = 340, - [1022] = 335, - [1023] = 318, - [1024] = 393, - [1025] = 395, - [1026] = 457, - [1027] = 476, - [1028] = 462, - [1029] = 418, - [1030] = 388, - [1031] = 364, - [1032] = 380, - [1033] = 443, - [1034] = 491, - [1035] = 490, - [1036] = 446, - [1037] = 332, - [1038] = 487, - [1039] = 381, - [1040] = 488, - [1041] = 332, - [1042] = 419, - [1043] = 403, - [1044] = 386, - [1045] = 309, - [1046] = 417, - [1047] = 500, - [1048] = 503, - [1049] = 350, - [1050] = 320, - [1051] = 412, - [1052] = 416, - [1053] = 312, - [1054] = 483, - [1055] = 484, - [1056] = 328, - [1057] = 412, - [1058] = 409, - [1059] = 471, - [1060] = 450, - [1061] = 486, - [1062] = 464, - [1063] = 461, - [1064] = 356, - [1065] = 413, - [1066] = 387, - [1067] = 300, - [1068] = 360, - [1069] = 465, - [1070] = 472, - [1071] = 442, - [1072] = 342, - [1073] = 371, - [1074] = 374, - [1075] = 376, - [1076] = 377, - [1077] = 342, - [1078] = 455, - [1079] = 499, - [1080] = 410, - [1081] = 428, - [1082] = 495, + [991] = 71, + [992] = 457, + [993] = 321, + [994] = 421, + [995] = 313, + [996] = 415, + [997] = 384, + [998] = 333, + [999] = 330, + [1000] = 399, + [1001] = 360, + [1002] = 331, + [1003] = 309, + [1004] = 315, + [1005] = 350, + [1006] = 322, + [1007] = 493, + [1008] = 335, + [1009] = 336, + [1010] = 414, + [1011] = 323, + [1012] = 337, + [1013] = 338, + [1014] = 339, + [1015] = 402, + [1016] = 443, + [1017] = 425, + [1018] = 306, + [1019] = 316, + [1020] = 311, + [1021] = 444, + [1022] = 362, + [1023] = 432, + [1024] = 435, + [1025] = 436, + [1026] = 445, + [1027] = 460, + [1028] = 277, + [1029] = 440, + [1030] = 484, + [1031] = 412, + [1032] = 277, + [1033] = 326, + [1034] = 325, + [1035] = 442, + [1036] = 340, + [1037] = 341, + [1038] = 410, + [1039] = 495, + [1040] = 472, + [1041] = 307, + [1042] = 459, + [1043] = 458, + [1044] = 434, + [1045] = 496, + [1046] = 433, + [1047] = 461, + [1048] = 329, + [1049] = 332, + [1050] = 480, + [1051] = 310, + [1052] = 481, + [1053] = 483, + [1054] = 345, + [1055] = 343, + [1056] = 485, + [1057] = 319, + [1058] = 327, + [1059] = 318, + [1060] = 320, + [1061] = 411, + [1062] = 324, + [1063] = 491, + [1064] = 427, + [1065] = 370, + [1066] = 426, + [1067] = 455, + [1068] = 500, + [1069] = 346, + [1070] = 347, + [1071] = 349, + [1072] = 351, + [1073] = 334, + [1074] = 410, + [1075] = 352, + [1076] = 476, + [1077] = 319, + [1078] = 357, + [1079] = 475, + [1080] = 314, + [1081] = 474, + [1082] = 342, [1083] = 344, - [1084] = 429, - [1085] = 467, - [1086] = 401, - [1087] = 345, - [1088] = 399, - [1089] = 454, - [1090] = 431, - [1091] = 501, - [1092] = 426, - [1093] = 481, - [1094] = 489, - [1095] = 498, - [1096] = 362, - [1097] = 453, - [1098] = 70, - [1099] = 69, + [1084] = 462, + [1085] = 392, + [1086] = 348, + [1087] = 362, + [1088] = 365, + [1089] = 358, + [1090] = 375, + [1091] = 359, + [1092] = 376, + [1093] = 380, + [1094] = 385, + [1095] = 404, + [1096] = 447, + [1097] = 454, + [1098] = 69, + [1099] = 67, [1100] = 68, [1101] = 71, - [1102] = 1102, - [1103] = 68, - [1104] = 69, - [1105] = 70, - [1106] = 67, + [1102] = 69, + [1103] = 1103, + [1104] = 68, + [1105] = 67, + [1106] = 70, [1107] = 228, - [1108] = 217, - [1109] = 218, - [1110] = 71, - [1111] = 221, - [1112] = 226, - [1113] = 220, - [1114] = 225, - [1115] = 224, + [1108] = 220, + [1109] = 224, + [1110] = 225, + [1111] = 227, + [1112] = 222, + [1113] = 71, + [1114] = 221, + [1115] = 217, [1116] = 223, - [1117] = 219, - [1118] = 1118, - [1119] = 229, - [1120] = 70, - [1121] = 67, - [1122] = 69, + [1117] = 218, + [1118] = 230, + [1119] = 69, + [1120] = 67, + [1121] = 1121, + [1122] = 1122, [1123] = 68, - [1124] = 227, - [1125] = 1125, - [1126] = 1126, - [1127] = 230, + [1124] = 1124, + [1125] = 70, + [1126] = 219, + [1127] = 229, [1128] = 1128, - [1129] = 235, - [1130] = 233, - [1131] = 231, - [1132] = 244, - [1133] = 332, - [1134] = 231, - [1135] = 233, - [1136] = 257, - [1137] = 1137, - [1138] = 493, - [1139] = 332, - [1140] = 476, - [1141] = 457, - [1142] = 404, - [1143] = 350, - [1144] = 427, - [1145] = 310, - [1146] = 320, - [1147] = 418, - [1148] = 450, - [1149] = 453, - [1150] = 412, - [1151] = 309, - [1152] = 454, - [1153] = 498, - [1154] = 1154, - [1155] = 409, - [1156] = 489, - [1157] = 481, - [1158] = 460, - [1159] = 318, - [1160] = 461, - [1161] = 413, - [1162] = 464, - [1163] = 419, - [1164] = 403, - [1165] = 483, - [1166] = 421, - [1167] = 414, - [1168] = 422, - [1169] = 484, - [1170] = 486, - [1171] = 71, - [1172] = 315, - [1173] = 462, - [1174] = 362, - [1175] = 312, - [1176] = 328, - [1177] = 415, - [1178] = 443, - [1179] = 425, - [1180] = 503, - [1181] = 446, - [1182] = 431, - [1183] = 344, - [1184] = 334, - [1185] = 473, - [1186] = 491, - [1187] = 477, - [1188] = 67, - [1189] = 487, - [1190] = 488, - [1191] = 490, - [1192] = 416, - [1193] = 317, - [1194] = 469, - [1195] = 68, - [1196] = 69, - [1197] = 70, - [1198] = 463, - [1199] = 452, - [1200] = 429, - [1201] = 479, - [1202] = 71, - [1203] = 465, - [1204] = 447, - [1205] = 423, - [1206] = 385, - [1207] = 356, - [1208] = 360, - [1209] = 455, - [1210] = 401, - [1211] = 399, - [1212] = 395, - [1213] = 500, - [1214] = 387, - [1215] = 361, - [1216] = 359, - [1217] = 442, - [1218] = 357, - [1219] = 433, - [1220] = 1154, - [1221] = 340, - [1222] = 71, - [1223] = 435, - [1224] = 335, - [1225] = 388, - [1226] = 501, - [1227] = 428, - [1228] = 364, - [1229] = 410, - [1230] = 342, - [1231] = 380, - [1232] = 381, - [1233] = 393, - [1234] = 386, - [1235] = 417, - [1236] = 471, - [1237] = 382, - [1238] = 472, - [1239] = 426, - [1240] = 499, - [1241] = 300, - [1242] = 371, - [1243] = 495, - [1244] = 467, - [1245] = 374, - [1246] = 345, - [1247] = 68, - [1248] = 69, - [1249] = 70, - [1250] = 67, - [1251] = 376, - [1252] = 1252, - [1253] = 377, - [1254] = 220, - [1255] = 342, - [1256] = 226, - [1257] = 67, - [1258] = 218, + [1129] = 231, + [1130] = 281, + [1131] = 362, + [1132] = 262, + [1133] = 231, + [1134] = 1134, + [1135] = 262, + [1136] = 267, + [1137] = 300, + [1138] = 340, + [1139] = 335, + [1140] = 352, + [1141] = 480, + [1142] = 481, + [1143] = 483, + [1144] = 426, + [1145] = 421, + [1146] = 410, + [1147] = 458, + [1148] = 323, + [1149] = 309, + [1150] = 333, + [1151] = 332, + [1152] = 461, + [1153] = 360, + [1154] = 457, + [1155] = 322, + [1156] = 500, + [1157] = 334, + [1158] = 343, + [1159] = 447, + [1160] = 436, + [1161] = 326, + [1162] = 357, + [1163] = 325, + [1164] = 435, + [1165] = 69, + [1166] = 315, + [1167] = 68, + [1168] = 455, + [1169] = 358, + [1170] = 67, + [1171] = 359, + [1172] = 318, + [1173] = 314, + [1174] = 342, + [1175] = 344, + [1176] = 348, + [1177] = 331, + [1178] = 365, + [1179] = 476, + [1180] = 330, + [1181] = 310, + [1182] = 375, + [1183] = 376, + [1184] = 475, + [1185] = 474, + [1186] = 380, + [1187] = 462, + [1188] = 1188, + [1189] = 432, + [1190] = 306, + [1191] = 411, + [1192] = 71, + [1193] = 392, + [1194] = 415, + [1195] = 414, + [1196] = 425, + [1197] = 433, + [1198] = 1198, + [1199] = 402, + [1200] = 71, + [1201] = 70, + [1202] = 434, + [1203] = 71, + [1204] = 336, + [1205] = 337, + [1206] = 459, + [1207] = 338, + [1208] = 440, + [1209] = 307, + [1210] = 339, + [1211] = 472, + [1212] = 319, + [1213] = 341, + [1214] = 350, + [1215] = 277, + [1216] = 443, + [1217] = 345, + [1218] = 320, + [1219] = 370, + [1220] = 444, + [1221] = 445, + [1222] = 460, + [1223] = 1198, + [1224] = 412, + [1225] = 313, + [1226] = 384, + [1227] = 327, + [1228] = 491, + [1229] = 484, + [1230] = 485, + [1231] = 493, + [1232] = 321, + [1233] = 454, + [1234] = 404, + [1235] = 385, + [1236] = 324, + [1237] = 427, + [1238] = 399, + [1239] = 442, + [1240] = 362, + [1241] = 495, + [1242] = 496, + [1243] = 329, + [1244] = 351, + [1245] = 349, + [1246] = 347, + [1247] = 346, + [1248] = 311, + [1249] = 316, + [1250] = 70, + [1251] = 67, + [1252] = 68, + [1253] = 69, + [1254] = 319, + [1255] = 224, + [1256] = 221, + [1257] = 218, + [1258] = 70, [1259] = 1259, - [1260] = 1259, + [1260] = 230, [1261] = 229, - [1262] = 230, - [1263] = 257, - [1264] = 428, - [1265] = 454, - [1266] = 453, - [1267] = 228, - [1268] = 450, - [1269] = 235, - [1270] = 233, - [1271] = 219, - [1272] = 223, - [1273] = 1273, - [1274] = 224, - [1275] = 231, - [1276] = 231, - [1277] = 410, - [1278] = 217, - [1279] = 429, - [1280] = 225, - [1281] = 228, - [1282] = 221, - [1283] = 233, - [1284] = 225, - [1285] = 217, - [1286] = 223, - [1287] = 219, - [1288] = 244, - [1289] = 224, - [1290] = 221, - [1291] = 479, - [1292] = 332, - [1293] = 387, - [1294] = 376, - [1295] = 362, - [1296] = 473, - [1297] = 334, - [1298] = 393, - [1299] = 344, - [1300] = 490, - [1301] = 491, - [1302] = 426, - [1303] = 388, - [1304] = 493, - [1305] = 469, - [1306] = 503, - [1307] = 403, - [1308] = 501, - [1309] = 409, - [1310] = 413, - [1311] = 414, - [1312] = 415, - [1313] = 416, - [1314] = 455, - [1315] = 419, - [1316] = 442, - [1317] = 500, - [1318] = 401, - [1319] = 399, - [1320] = 395, - [1321] = 486, - [1322] = 386, - [1323] = 381, - [1324] = 380, - [1325] = 317, - [1326] = 364, - [1327] = 465, - [1328] = 335, - [1329] = 418, - [1330] = 342, - [1331] = 488, - [1332] = 457, - [1333] = 340, - [1334] = 471, - [1335] = 484, - [1336] = 350, - [1337] = 483, - [1338] = 476, - [1339] = 421, - [1340] = 1340, - [1341] = 498, - [1342] = 489, - [1343] = 481, - [1344] = 422, - [1345] = 357, - [1346] = 472, - [1347] = 359, - [1348] = 499, - [1349] = 464, - [1350] = 461, - [1351] = 315, - [1352] = 425, - [1353] = 460, - [1354] = 377, - [1355] = 417, - [1356] = 374, - [1357] = 371, - [1358] = 487, - [1359] = 431, - [1360] = 477, - [1361] = 360, - [1362] = 356, - [1363] = 433, - [1364] = 435, - [1365] = 328, - [1366] = 495, - [1367] = 467, - [1368] = 312, - [1369] = 1369, - [1370] = 320, - [1371] = 361, - [1372] = 382, - [1373] = 309, - [1374] = 385, - [1375] = 423, - [1376] = 310, - [1377] = 447, - [1378] = 427, - [1379] = 452, - [1380] = 462, - [1381] = 463, - [1382] = 443, - [1383] = 446, - [1384] = 345, - [1385] = 404, - [1386] = 332, - [1387] = 318, - [1388] = 300, - [1389] = 412, - [1390] = 1390, + [1262] = 1259, + [1263] = 436, + [1264] = 231, + [1265] = 225, + [1266] = 231, + [1267] = 217, + [1268] = 227, + [1269] = 220, + [1270] = 262, + [1271] = 435, + [1272] = 432, + [1273] = 228, + [1274] = 300, + [1275] = 222, + [1276] = 281, + [1277] = 267, + [1278] = 223, + [1279] = 442, + [1280] = 472, + [1281] = 307, + [1282] = 262, + [1283] = 225, + [1284] = 227, + [1285] = 220, + [1286] = 217, + [1287] = 222, + [1288] = 362, + [1289] = 223, + [1290] = 392, + [1291] = 1291, + [1292] = 228, + [1293] = 445, + [1294] = 447, + [1295] = 440, + [1296] = 359, + [1297] = 443, + [1298] = 461, + [1299] = 358, + [1300] = 444, + [1301] = 357, + [1302] = 352, + [1303] = 351, + [1304] = 349, + [1305] = 347, + [1306] = 346, + [1307] = 460, + [1308] = 324, + [1309] = 462, + [1310] = 345, + [1311] = 341, + [1312] = 340, + [1313] = 474, + [1314] = 475, + [1315] = 476, + [1316] = 339, + [1317] = 484, + [1318] = 485, + [1319] = 493, + [1320] = 455, + [1321] = 343, + [1322] = 338, + [1323] = 337, + [1324] = 336, + [1325] = 495, + [1326] = 335, + [1327] = 319, + [1328] = 426, + [1329] = 310, + [1330] = 421, + [1331] = 496, + [1332] = 454, + [1333] = 415, + [1334] = 433, + [1335] = 434, + [1336] = 459, + [1337] = 1337, + [1338] = 414, + [1339] = 412, + [1340] = 491, + [1341] = 333, + [1342] = 427, + [1343] = 332, + [1344] = 404, + [1345] = 385, + [1346] = 323, + [1347] = 311, + [1348] = 316, + [1349] = 315, + [1350] = 309, + [1351] = 326, + [1352] = 322, + [1353] = 334, + [1354] = 360, + [1355] = 399, + [1356] = 380, + [1357] = 331, + [1358] = 384, + [1359] = 330, + [1360] = 329, + [1361] = 313, + [1362] = 321, + [1363] = 320, + [1364] = 376, + [1365] = 370, + [1366] = 350, + [1367] = 375, + [1368] = 365, + [1369] = 327, + [1370] = 1370, + [1371] = 348, + [1372] = 344, + [1373] = 342, + [1374] = 314, + [1375] = 500, + [1376] = 483, + [1377] = 325, + [1378] = 402, + [1379] = 318, + [1380] = 481, + [1381] = 458, + [1382] = 480, + [1383] = 425, + [1384] = 457, + [1385] = 306, + [1386] = 411, + [1387] = 362, + [1388] = 277, + [1389] = 1389, + [1390] = 410, [1391] = 71, [1392] = 1392, - [1393] = 68, + [1393] = 277, [1394] = 70, [1395] = 67, - [1396] = 300, - [1397] = 1397, - [1398] = 69, - [1399] = 1399, - [1400] = 412, - [1401] = 244, - [1402] = 70, + [1396] = 1396, + [1397] = 68, + [1398] = 1398, + [1399] = 410, + [1400] = 69, + [1401] = 68, + [1402] = 67, [1403] = 69, - [1404] = 68, + [1404] = 267, [1405] = 1405, [1406] = 1406, [1407] = 1407, - [1408] = 462, + [1408] = 1408, [1409] = 71, [1410] = 1410, - [1411] = 71, - [1412] = 332, + [1411] = 323, + [1412] = 322, [1413] = 1413, - [1414] = 1414, - [1415] = 443, + [1414] = 362, + [1415] = 71, [1416] = 1416, [1417] = 1417, - [1418] = 501, - [1419] = 1419, + [1418] = 1418, + [1419] = 345, [1420] = 1420, [1421] = 1421, [1422] = 1422, - [1423] = 67, + [1423] = 318, [1424] = 1424, [1425] = 1425, [1426] = 1426, @@ -4854,59 +4871,59 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1429] = 1429, [1430] = 1430, [1431] = 1431, - [1432] = 1432, + [1432] = 67, [1433] = 1433, [1434] = 1434, [1435] = 1435, [1436] = 1436, - [1437] = 1437, - [1438] = 1438, + [1437] = 359, + [1438] = 329, [1439] = 1439, - [1440] = 1440, - [1441] = 1441, + [1440] = 358, + [1441] = 331, [1442] = 1442, - [1443] = 1443, - [1444] = 387, - [1445] = 388, - [1446] = 442, - [1447] = 500, - [1448] = 421, - [1449] = 419, - [1450] = 1450, - [1451] = 418, - [1452] = 488, - [1453] = 416, - [1454] = 68, - [1455] = 69, - [1456] = 1456, - [1457] = 1457, - [1458] = 487, - [1459] = 70, - [1460] = 465, - [1461] = 415, - [1462] = 476, - [1463] = 457, - [1464] = 446, - [1465] = 414, - [1466] = 413, - [1467] = 409, - [1468] = 403, - [1469] = 1469, - [1470] = 435, - [1471] = 433, - [1472] = 431, - [1473] = 425, - [1474] = 315, - [1475] = 422, - [1476] = 426, - [1477] = 490, - [1478] = 491, + [1443] = 357, + [1444] = 352, + [1445] = 1445, + [1446] = 1446, + [1447] = 70, + [1448] = 1448, + [1449] = 332, + [1450] = 333, + [1451] = 334, + [1452] = 1452, + [1453] = 325, + [1454] = 1454, + [1455] = 351, + [1456] = 349, + [1457] = 326, + [1458] = 347, + [1459] = 346, + [1460] = 1460, + [1461] = 1461, + [1462] = 324, + [1463] = 68, + [1464] = 330, + [1465] = 335, + [1466] = 336, + [1467] = 1467, + [1468] = 327, + [1469] = 337, + [1470] = 338, + [1471] = 339, + [1472] = 340, + [1473] = 341, + [1474] = 1474, + [1475] = 69, + [1476] = 1476, + [1477] = 343, + [1478] = 321, [1479] = 1479, [1480] = 1480, [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 1484, + [1484] = 231, [1485] = 1485, [1486] = 1486, [1487] = 1487, @@ -4915,11 +4932,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1490] = 1490, [1491] = 1491, [1492] = 1492, - [1493] = 1493, - [1494] = 67, + [1493] = 262, + [1494] = 1494, [1495] = 1495, [1496] = 1496, - [1497] = 1497, + [1497] = 454, [1498] = 1498, [1499] = 1499, [1500] = 1500, @@ -4935,28 +4952,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1510] = 1510, [1511] = 1511, [1512] = 1512, - [1513] = 1513, + [1513] = 70, [1514] = 1514, - [1515] = 233, + [1515] = 1515, [1516] = 1516, [1517] = 1517, [1518] = 1518, [1519] = 1519, - [1520] = 1520, + [1520] = 71, [1521] = 1521, [1522] = 1522, [1523] = 1523, [1524] = 1524, [1525] = 1525, [1526] = 1526, - [1527] = 231, + [1527] = 1527, [1528] = 1528, - [1529] = 382, + [1529] = 1529, [1530] = 1530, [1531] = 1531, [1532] = 1532, [1533] = 1533, - [1534] = 71, + [1534] = 1534, [1535] = 1535, [1536] = 1536, [1537] = 1537, @@ -4997,1814 +5014,1814 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1572] = 1572, [1573] = 1573, [1574] = 1574, - [1575] = 69, - [1576] = 70, - [1577] = 1577, - [1578] = 68, - [1579] = 67, - [1580] = 71, - [1581] = 1581, + [1575] = 1575, + [1576] = 71, + [1577] = 70, + [1578] = 67, + [1579] = 68, + [1580] = 69, + [1581] = 70, [1582] = 1582, [1583] = 1583, - [1584] = 1584, - [1585] = 67, + [1584] = 70, + [1585] = 1585, [1586] = 1586, - [1587] = 67, + [1587] = 1587, [1588] = 1588, - [1589] = 476, - [1590] = 491, - [1591] = 490, - [1592] = 419, - [1593] = 457, - [1594] = 419, - [1595] = 457, - [1596] = 476, - [1597] = 490, - [1598] = 491, - [1599] = 457, - [1600] = 476, - [1601] = 491, - [1602] = 490, - [1603] = 419, - [1604] = 419, - [1605] = 1605, - [1606] = 490, - [1607] = 491, - [1608] = 476, - [1609] = 457, - [1610] = 228, - [1611] = 223, - [1612] = 216, - [1613] = 221, - [1614] = 217, - [1615] = 220, - [1616] = 218, - [1617] = 224, - [1618] = 225, - [1619] = 219, - [1620] = 226, - [1621] = 222, - [1622] = 231, - [1623] = 233, - [1624] = 229, - [1625] = 230, - [1626] = 210, - [1627] = 413, - [1628] = 223, - [1629] = 412, - [1630] = 1630, - [1631] = 244, - [1632] = 227, - [1633] = 431, - [1634] = 409, - [1635] = 433, - [1636] = 1630, - [1637] = 435, - [1638] = 422, - [1639] = 315, - [1640] = 421, - [1641] = 446, - [1642] = 487, - [1643] = 500, - [1644] = 257, - [1645] = 225, - [1646] = 224, - [1647] = 387, - [1648] = 235, - [1649] = 219, - [1650] = 217, - [1651] = 248, - [1652] = 425, - [1653] = 248, - [1654] = 220, - [1655] = 418, - [1656] = 226, - [1657] = 228, - [1658] = 221, - [1659] = 218, - [1660] = 300, - [1661] = 332, - [1662] = 403, - [1663] = 1663, - [1664] = 416, - [1665] = 415, - [1666] = 488, - [1667] = 388, - [1668] = 414, - [1669] = 501, - [1670] = 318, - [1671] = 229, - [1672] = 443, - [1673] = 342, - [1674] = 404, - [1675] = 357, - [1676] = 442, - [1677] = 465, - [1678] = 484, - [1679] = 426, - [1680] = 486, - [1681] = 477, - [1682] = 340, - [1683] = 335, - [1684] = 410, - [1685] = 364, - [1686] = 380, - [1687] = 233, - [1688] = 312, - [1689] = 320, - [1690] = 428, - [1691] = 342, - [1692] = 481, - [1693] = 377, - [1694] = 300, - [1695] = 381, - [1696] = 376, - [1697] = 309, - [1698] = 334, - [1699] = 386, - [1700] = 231, - [1701] = 473, - [1702] = 503, - [1703] = 361, - [1704] = 427, - [1705] = 489, - [1706] = 310, - [1707] = 332, - [1708] = 362, - [1709] = 498, - [1710] = 350, - [1711] = 374, - [1712] = 469, - [1713] = 417, - [1714] = 471, - [1715] = 472, - [1716] = 499, - [1717] = 495, - [1718] = 467, - [1719] = 345, - [1720] = 429, - [1721] = 463, - [1722] = 328, - [1723] = 300, - [1724] = 230, - [1725] = 493, - [1726] = 359, - [1727] = 356, - [1728] = 450, - [1729] = 382, - [1730] = 385, - [1731] = 462, - [1732] = 453, - [1733] = 479, - [1734] = 423, - [1735] = 454, - [1736] = 447, - [1737] = 460, - [1738] = 455, - [1739] = 360, - [1740] = 317, - [1741] = 452, - [1742] = 461, - [1743] = 344, - [1744] = 371, - [1745] = 393, - [1746] = 395, - [1747] = 401, - [1748] = 464, - [1749] = 399, - [1750] = 483, - [1751] = 244, - [1752] = 226, - [1753] = 228, - [1754] = 221, - [1755] = 218, - [1756] = 235, - [1757] = 300, - [1758] = 217, - [1759] = 219, - [1760] = 223, - [1761] = 224, - [1762] = 1762, - [1763] = 225, - [1764] = 218, - [1765] = 210, - [1766] = 210, - [1767] = 221, - [1768] = 220, - [1769] = 228, - [1770] = 225, - [1771] = 224, - [1772] = 223, - [1773] = 219, - [1774] = 220, - [1775] = 217, - [1776] = 332, - [1777] = 226, - [1778] = 257, - [1779] = 412, - [1780] = 362, - [1781] = 491, - [1782] = 495, - [1783] = 426, - [1784] = 467, - [1785] = 345, - [1786] = 501, - [1787] = 442, - [1788] = 500, - [1789] = 488, - [1790] = 487, - [1791] = 357, - [1792] = 479, - [1793] = 332, - [1794] = 446, - [1795] = 443, - [1796] = 342, - [1797] = 455, - [1798] = 462, - [1799] = 401, - [1800] = 399, - [1801] = 395, - [1802] = 472, - [1803] = 317, - [1804] = 471, - [1805] = 417, - [1806] = 435, - [1807] = 386, - [1808] = 381, - [1809] = 433, - [1810] = 380, - [1811] = 431, - [1812] = 425, - [1813] = 315, - [1814] = 422, - [1815] = 421, - [1816] = 418, - [1817] = 350, - [1818] = 465, - [1819] = 364, - [1820] = 490, - [1821] = 498, - [1822] = 489, - [1823] = 481, - [1824] = 416, - [1825] = 415, - [1826] = 414, - [1827] = 413, - [1828] = 429, - [1829] = 428, - [1830] = 359, - [1831] = 230, - [1832] = 229, - [1833] = 410, - [1834] = 409, - [1835] = 377, - [1836] = 342, - [1837] = 376, - [1838] = 403, - [1839] = 374, - [1840] = 371, - [1841] = 388, - [1842] = 387, - [1843] = 361, - [1844] = 393, - [1845] = 499, - [1846] = 360, - [1847] = 217, - [1848] = 219, - [1849] = 356, - [1850] = 223, - [1851] = 224, - [1852] = 328, - [1853] = 225, - [1854] = 335, - [1855] = 229, - [1856] = 340, - [1857] = 227, - [1858] = 312, - [1859] = 320, - [1860] = 419, - [1861] = 309, - [1862] = 404, - [1863] = 230, - [1864] = 227, - [1865] = 427, - [1866] = 310, - [1867] = 450, - [1868] = 453, - [1869] = 454, - [1870] = 231, - [1871] = 460, - [1872] = 1872, - [1873] = 461, - [1874] = 385, - [1875] = 228, - [1876] = 464, - [1877] = 221, - [1878] = 483, - [1879] = 484, - [1880] = 486, - [1881] = 503, - [1882] = 457, - [1883] = 476, - [1884] = 231, - [1885] = 344, - [1886] = 382, - [1887] = 334, - [1888] = 473, - [1889] = 477, - [1890] = 493, - [1891] = 469, - [1892] = 423, - [1893] = 463, - [1894] = 318, - [1895] = 233, - [1896] = 452, - [1897] = 447, - [1898] = 233, - [1899] = 244, - [1900] = 227, - [1901] = 257, - [1902] = 227, - [1903] = 1903, - [1904] = 1904, - [1905] = 235, - [1906] = 954, - [1907] = 1907, - [1908] = 227, - [1909] = 244, - [1910] = 235, - [1911] = 257, - [1912] = 334, - [1913] = 332, - [1914] = 413, - [1915] = 401, - [1916] = 414, - [1917] = 404, - [1918] = 452, - [1919] = 463, - [1920] = 427, - [1921] = 310, - [1922] = 450, - [1923] = 453, - [1924] = 454, - [1925] = 460, - [1926] = 461, - [1927] = 464, - [1928] = 483, - [1929] = 484, - [1930] = 426, - [1931] = 486, - [1932] = 486, - [1933] = 362, - [1934] = 361, - [1935] = 484, - [1936] = 309, - [1937] = 465, - [1938] = 503, - [1939] = 395, - [1940] = 409, - [1941] = 344, - [1942] = 479, - [1943] = 455, - [1944] = 393, - [1945] = 387, - [1946] = 334, - [1947] = 473, - [1948] = 477, - [1949] = 388, - [1950] = 493, - [1951] = 312, - [1952] = 469, - [1953] = 401, - [1954] = 463, - [1955] = 399, - [1956] = 393, - [1957] = 452, - [1958] = 395, - [1959] = 447, - [1960] = 423, - [1961] = 385, - [1962] = 382, - [1963] = 416, + [1589] = 343, + [1590] = 333, + [1591] = 326, + [1592] = 325, + [1593] = 332, + [1594] = 332, + [1595] = 343, + [1596] = 333, + [1597] = 325, + [1598] = 326, + [1599] = 325, + [1600] = 326, + [1601] = 333, + [1602] = 343, + [1603] = 332, + [1604] = 1604, + [1605] = 326, + [1606] = 332, + [1607] = 333, + [1608] = 343, + [1609] = 325, + [1610] = 223, + [1611] = 224, + [1612] = 225, + [1613] = 226, + [1614] = 227, + [1615] = 228, + [1616] = 221, + [1617] = 217, + [1618] = 218, + [1619] = 220, + [1620] = 222, + [1621] = 214, + [1622] = 215, + [1623] = 230, + [1624] = 231, + [1625] = 229, + [1626] = 262, + [1627] = 334, + [1628] = 351, + [1629] = 288, + [1630] = 330, + [1631] = 220, + [1632] = 329, + [1633] = 281, + [1634] = 335, + [1635] = 336, + [1636] = 219, + [1637] = 337, + [1638] = 338, + [1639] = 339, + [1640] = 340, + [1641] = 341, + [1642] = 345, + [1643] = 222, + [1644] = 228, + [1645] = 346, + [1646] = 347, + [1647] = 349, + [1648] = 331, + [1649] = 227, + [1650] = 225, + [1651] = 288, + [1652] = 223, + [1653] = 1653, + [1654] = 352, + [1655] = 357, + [1656] = 277, + [1657] = 358, + [1658] = 359, + [1659] = 267, + [1660] = 224, + [1661] = 218, + [1662] = 327, + [1663] = 410, + [1664] = 300, + [1665] = 1665, + [1666] = 1665, + [1667] = 362, + [1668] = 221, + [1669] = 217, + [1670] = 495, + [1671] = 375, + [1672] = 392, + [1673] = 462, + [1674] = 474, + [1675] = 475, + [1676] = 365, + [1677] = 480, + [1678] = 313, + [1679] = 436, + [1680] = 435, + [1681] = 348, + [1682] = 344, + [1683] = 476, + [1684] = 491, + [1685] = 376, + [1686] = 455, + [1687] = 432, + [1688] = 306, + [1689] = 380, + [1690] = 425, + [1691] = 385, + [1692] = 402, + [1693] = 277, + [1694] = 310, + [1695] = 404, + [1696] = 433, + [1697] = 434, + [1698] = 459, + [1699] = 307, + [1700] = 472, + [1701] = 442, + [1702] = 229, + [1703] = 230, + [1704] = 447, + [1705] = 342, + [1706] = 454, + [1707] = 362, + [1708] = 231, + [1709] = 262, + [1710] = 314, + [1711] = 319, + [1712] = 277, + [1713] = 311, + [1714] = 316, + [1715] = 315, + [1716] = 309, + [1717] = 324, + [1718] = 360, + [1719] = 399, + [1720] = 384, + [1721] = 323, + [1722] = 322, + [1723] = 411, + [1724] = 321, + [1725] = 458, + [1726] = 412, + [1727] = 414, + [1728] = 415, + [1729] = 421, + [1730] = 426, + [1731] = 370, + [1732] = 427, + [1733] = 440, + [1734] = 443, + [1735] = 444, + [1736] = 318, + [1737] = 445, + [1738] = 461, + [1739] = 457, + [1740] = 481, + [1741] = 483, + [1742] = 500, + [1743] = 460, + [1744] = 484, + [1745] = 485, + [1746] = 319, + [1747] = 496, + [1748] = 320, + [1749] = 350, + [1750] = 493, + [1751] = 221, + [1752] = 277, + [1753] = 410, + [1754] = 281, + [1755] = 222, + [1756] = 362, + [1757] = 228, + [1758] = 227, + [1759] = 225, + [1760] = 267, + [1761] = 223, + [1762] = 300, + [1763] = 222, + [1764] = 228, + [1765] = 227, + [1766] = 217, + [1767] = 225, + [1768] = 224, + [1769] = 223, + [1770] = 221, + [1771] = 1771, + [1772] = 217, + [1773] = 220, + [1774] = 218, + [1775] = 220, + [1776] = 215, + [1777] = 224, + [1778] = 215, + [1779] = 218, + [1780] = 399, + [1781] = 313, + [1782] = 321, + [1783] = 329, + [1784] = 219, + [1785] = 330, + [1786] = 331, + [1787] = 334, + [1788] = 322, + [1789] = 323, + [1790] = 319, + [1791] = 229, + [1792] = 230, + [1793] = 327, + [1794] = 217, + [1795] = 318, + [1796] = 335, + [1797] = 223, + [1798] = 336, + [1799] = 225, + [1800] = 337, + [1801] = 338, + [1802] = 339, + [1803] = 340, + [1804] = 341, + [1805] = 345, + [1806] = 227, + [1807] = 228, + [1808] = 222, + [1809] = 220, + [1810] = 324, + [1811] = 392, + [1812] = 462, + [1813] = 362, + [1814] = 474, + [1815] = 346, + [1816] = 347, + [1817] = 349, + [1818] = 351, + [1819] = 475, + [1820] = 262, + [1821] = 230, + [1822] = 229, + [1823] = 476, + [1824] = 455, + [1825] = 352, + [1826] = 357, + [1827] = 310, + [1828] = 412, + [1829] = 433, + [1830] = 358, + [1831] = 359, + [1832] = 414, + [1833] = 491, + [1834] = 434, + [1835] = 459, + [1836] = 307, + [1837] = 472, + [1838] = 442, + [1839] = 311, + [1840] = 316, + [1841] = 315, + [1842] = 309, + [1843] = 360, + [1844] = 415, + [1845] = 384, + [1846] = 421, + [1847] = 370, + [1848] = 320, + [1849] = 343, + [1850] = 350, + [1851] = 402, + [1852] = 425, + [1853] = 306, + [1854] = 432, + [1855] = 435, + [1856] = 436, + [1857] = 457, + [1858] = 458, + [1859] = 461, + [1860] = 426, + [1861] = 480, + [1862] = 481, + [1863] = 483, + [1864] = 500, + [1865] = 333, + [1866] = 332, + [1867] = 314, + [1868] = 427, + [1869] = 342, + [1870] = 344, + [1871] = 319, + [1872] = 348, + [1873] = 365, + [1874] = 231, + [1875] = 375, + [1876] = 376, + [1877] = 380, + [1878] = 385, + [1879] = 404, + [1880] = 447, + [1881] = 219, + [1882] = 262, + [1883] = 496, + [1884] = 454, + [1885] = 495, + [1886] = 493, + [1887] = 485, + [1888] = 231, + [1889] = 484, + [1890] = 326, + [1891] = 325, + [1892] = 411, + [1893] = 460, + [1894] = 445, + [1895] = 1895, + [1896] = 444, + [1897] = 443, + [1898] = 440, + [1899] = 267, + [1900] = 281, + [1901] = 1901, + [1902] = 1902, + [1903] = 962, + [1904] = 267, + [1905] = 219, + [1906] = 219, + [1907] = 300, + [1908] = 300, + [1909] = 281, + [1910] = 219, + [1911] = 1911, + [1912] = 362, + [1913] = 426, + [1914] = 445, + [1915] = 460, + [1916] = 345, + [1917] = 329, + [1918] = 359, + [1919] = 277, + [1920] = 362, + [1921] = 362, + [1922] = 352, + [1923] = 341, + [1924] = 362, + [1925] = 495, + [1926] = 1926, + [1927] = 319, + [1928] = 496, + [1929] = 320, + [1930] = 370, + [1931] = 484, + [1932] = 485, + [1933] = 447, + [1934] = 277, + [1935] = 411, + [1936] = 404, + [1937] = 340, + [1938] = 493, + [1939] = 309, + [1940] = 375, + [1941] = 495, + [1942] = 444, + [1943] = 410, + [1944] = 472, + [1945] = 365, + [1946] = 443, + [1947] = 496, + [1948] = 307, + [1949] = 440, + [1950] = 427, + [1951] = 392, + [1952] = 462, + [1953] = 426, + [1954] = 491, + [1955] = 421, + [1956] = 415, + [1957] = 410, + [1958] = 474, + [1959] = 475, + [1960] = 491, + [1961] = 454, + [1962] = 476, + [1963] = 414, [1964] = 412, - [1965] = 361, - [1966] = 300, - [1967] = 359, - [1968] = 332, - [1969] = 328, - [1970] = 357, - [1971] = 403, - [1972] = 356, - [1973] = 409, - [1974] = 340, - [1975] = 335, - [1976] = 483, - [1977] = 360, - [1978] = 415, - [1979] = 403, - [1980] = 364, - [1981] = 380, - [1982] = 498, - [1983] = 489, - [1984] = 481, - [1985] = 381, - [1986] = 413, - [1987] = 414, - [1988] = 386, - [1989] = 415, - [1990] = 417, - [1991] = 471, - [1992] = 317, - [1993] = 416, - [1994] = 472, - [1995] = 500, - [1996] = 371, - [1997] = 499, - [1998] = 495, - [1999] = 467, - [2000] = 345, - [2001] = 374, - [2002] = 418, - [2003] = 318, - [2004] = 2004, - [2005] = 388, - [2006] = 387, - [2007] = 489, - [2008] = 498, - [2009] = 342, - [2010] = 342, - [2011] = 376, - [2012] = 377, - [2013] = 421, - [2014] = 412, - [2015] = 422, - [2016] = 315, - [2017] = 410, - [2018] = 342, - [2019] = 332, - [2020] = 428, - [2021] = 425, - [2022] = 429, - [2023] = 431, - [2024] = 467, - [2025] = 495, - [2026] = 433, - [2027] = 426, - [2028] = 465, - [2029] = 479, - [2030] = 455, - [2031] = 328, - [2032] = 488, - [2033] = 312, - [2034] = 362, - [2035] = 399, - [2036] = 418, - [2037] = 340, - [2038] = 421, - [2039] = 422, - [2040] = 315, - [2041] = 481, - [2042] = 317, - [2043] = 425, - [2044] = 472, - [2045] = 471, - [2046] = 431, - [2047] = 501, - [2048] = 345, - [2049] = 417, - [2050] = 433, - [2051] = 386, - [2052] = 435, - [2053] = 499, - [2054] = 442, - [2055] = 350, - [2056] = 381, - [2057] = 380, - [2058] = 501, - [2059] = 500, - [2060] = 335, - [2061] = 300, - [2062] = 332, - [2063] = 427, - [2064] = 382, - [2065] = 320, - [2066] = 310, - [2067] = 429, - [2068] = 428, - [2069] = 410, - [2070] = 447, - [2071] = 488, - [2072] = 487, - [2073] = 377, - [2074] = 376, - [2075] = 374, - [2076] = 371, - [2077] = 446, - [2078] = 443, - [2079] = 423, - [2080] = 360, - [2081] = 356, - [2082] = 462, - [2083] = 350, - [2084] = 344, - [2085] = 359, - [2086] = 442, - [2087] = 435, - [2088] = 320, - [2089] = 385, - [2090] = 493, - [2091] = 309, - [2092] = 357, - [2093] = 469, - [2094] = 300, - [2095] = 342, - [2096] = 462, - [2097] = 443, - [2098] = 503, - [2099] = 2099, - [2100] = 446, - [2101] = 318, - [2102] = 404, - [2103] = 2103, - [2104] = 473, - [2105] = 364, - [2106] = 412, - [2107] = 464, - [2108] = 332, - [2109] = 477, - [2110] = 487, - [2111] = 450, - [2112] = 453, - [2113] = 454, - [2114] = 460, - [2115] = 461, - [2116] = 490, - [2117] = 491, - [2118] = 419, - [2119] = 457, - [2120] = 476, - [2121] = 226, - [2122] = 218, - [2123] = 2123, - [2124] = 220, - [2125] = 229, + [1965] = 313, + [1966] = 324, + [1967] = 346, + [1968] = 347, + [1969] = 447, + [1970] = 384, + [1971] = 349, + [1972] = 351, + [1973] = 350, + [1974] = 352, + [1975] = 474, + [1976] = 476, + [1977] = 399, + [1978] = 359, + [1979] = 442, + [1980] = 358, + [1981] = 277, + [1982] = 404, + [1983] = 362, + [1984] = 360, + [1985] = 335, + [1986] = 357, + [1987] = 380, + [1988] = 376, + [1989] = 357, + [1990] = 411, + [1991] = 385, + [1992] = 433, + [1993] = 434, + [1994] = 459, + [1995] = 342, + [1996] = 358, + [1997] = 375, + [1998] = 365, + [1999] = 348, + [2000] = 321, + [2001] = 344, + [2002] = 351, + [2003] = 319, + [2004] = 349, + [2005] = 347, + [2006] = 346, + [2007] = 319, + [2008] = 342, + [2009] = 314, + [2010] = 412, + [2011] = 315, + [2012] = 493, + [2013] = 414, + [2014] = 339, + [2015] = 338, + [2016] = 318, + [2017] = 324, + [2018] = 384, + [2019] = 314, + [2020] = 500, + [2021] = 483, + [2022] = 392, + [2023] = 462, + [2024] = 427, + [2025] = 313, + [2026] = 370, + [2027] = 440, + [2028] = 475, + [2029] = 345, + [2030] = 443, + [2031] = 444, + [2032] = 341, + [2033] = 340, + [2034] = 339, + [2035] = 455, + [2036] = 338, + [2037] = 337, + [2038] = 481, + [2039] = 480, + [2040] = 445, + [2041] = 461, + [2042] = 458, + [2043] = 457, + [2044] = 337, + [2045] = 336, + [2046] = 436, + [2047] = 435, + [2048] = 310, + [2049] = 432, + [2050] = 327, + [2051] = 335, + [2052] = 306, + [2053] = 2053, + [2054] = 2054, + [2055] = 484, + [2056] = 307, + [2057] = 472, + [2058] = 442, + [2059] = 318, + [2060] = 425, + [2061] = 485, + [2062] = 316, + [2063] = 310, + [2064] = 425, + [2065] = 336, + [2066] = 311, + [2067] = 316, + [2068] = 315, + [2069] = 309, + [2070] = 306, + [2071] = 327, + [2072] = 321, + [2073] = 360, + [2074] = 399, + [2075] = 329, + [2076] = 454, + [2077] = 459, + [2078] = 330, + [2079] = 331, + [2080] = 311, + [2081] = 320, + [2082] = 334, + [2083] = 415, + [2084] = 350, + [2085] = 322, + [2086] = 323, + [2087] = 322, + [2088] = 500, + [2089] = 334, + [2090] = 455, + [2091] = 323, + [2092] = 344, + [2093] = 348, + [2094] = 331, + [2095] = 402, + [2096] = 421, + [2097] = 433, + [2098] = 460, + [2099] = 410, + [2100] = 330, + [2101] = 376, + [2102] = 319, + [2103] = 432, + [2104] = 435, + [2105] = 436, + [2106] = 457, + [2107] = 458, + [2108] = 461, + [2109] = 434, + [2110] = 402, + [2111] = 480, + [2112] = 481, + [2113] = 483, + [2114] = 380, + [2115] = 385, + [2116] = 333, + [2117] = 325, + [2118] = 326, + [2119] = 343, + [2120] = 332, + [2121] = 2121, + [2122] = 224, + [2123] = 221, + [2124] = 218, + [2125] = 2125, [2126] = 230, - [2127] = 2127, - [2128] = 332, - [2129] = 231, - [2130] = 233, - [2131] = 257, - [2132] = 235, - [2133] = 233, - [2134] = 231, - [2135] = 2135, + [2127] = 229, + [2128] = 300, + [2129] = 2129, + [2130] = 267, + [2131] = 2131, + [2132] = 262, + [2133] = 231, + [2134] = 2134, + [2135] = 231, [2136] = 2136, [2137] = 2137, [2138] = 2138, - [2139] = 2139, + [2139] = 262, [2140] = 2140, - [2141] = 2141, - [2142] = 244, + [2141] = 281, + [2142] = 231, [2143] = 2143, - [2144] = 231, - [2145] = 233, - [2146] = 219, - [2147] = 476, - [2148] = 500, - [2149] = 495, - [2150] = 499, - [2151] = 498, - [2152] = 350, - [2153] = 472, - [2154] = 471, - [2155] = 417, - [2156] = 332, - [2157] = 382, - [2158] = 317, - [2159] = 393, - [2160] = 395, - [2161] = 399, - [2162] = 401, - [2163] = 386, - [2164] = 455, - [2165] = 2165, - [2166] = 479, - [2167] = 328, - [2168] = 228, - [2169] = 377, - [2170] = 376, - [2171] = 374, - [2172] = 371, - [2173] = 488, - [2174] = 360, - [2175] = 487, - [2176] = 356, - [2177] = 381, - [2178] = 426, - [2179] = 2179, - [2180] = 318, - [2181] = 380, - [2182] = 419, - [2183] = 387, - [2184] = 388, - [2185] = 364, - [2186] = 2186, - [2187] = 312, - [2188] = 362, - [2189] = 403, - [2190] = 320, - [2191] = 428, - [2192] = 217, - [2193] = 443, - [2194] = 409, - [2195] = 223, - [2196] = 446, - [2197] = 309, - [2198] = 457, - [2199] = 224, - [2200] = 467, - [2201] = 489, - [2202] = 345, - [2203] = 481, - [2204] = 335, - [2205] = 413, - [2206] = 414, - [2207] = 415, - [2208] = 416, - [2209] = 404, - [2210] = 442, - [2211] = 225, - [2212] = 2212, - [2213] = 427, - [2214] = 310, - [2215] = 491, - [2216] = 450, - [2217] = 453, - [2218] = 454, - [2219] = 501, - [2220] = 460, - [2221] = 461, - [2222] = 465, - [2223] = 464, - [2224] = 342, - [2225] = 483, - [2226] = 484, - [2227] = 486, - [2228] = 503, - [2229] = 418, - [2230] = 344, - [2231] = 421, - [2232] = 422, - [2233] = 315, - [2234] = 425, - [2235] = 431, - [2236] = 334, - [2237] = 433, - [2238] = 435, - [2239] = 473, - [2240] = 477, - [2241] = 490, - [2242] = 410, - [2243] = 493, - [2244] = 221, - [2245] = 469, - [2246] = 463, - [2247] = 452, - [2248] = 429, - [2249] = 447, - [2250] = 423, - [2251] = 385, - [2252] = 361, - [2253] = 359, - [2254] = 2254, - [2255] = 357, - [2256] = 340, - [2257] = 462, + [2144] = 362, + [2145] = 262, + [2146] = 348, + [2147] = 412, + [2148] = 415, + [2149] = 421, + [2150] = 426, + [2151] = 427, + [2152] = 440, + [2153] = 443, + [2154] = 444, + [2155] = 445, + [2156] = 460, + [2157] = 484, + [2158] = 485, + [2159] = 493, + [2160] = 495, + [2161] = 496, + [2162] = 321, + [2163] = 2163, + [2164] = 447, + [2165] = 404, + [2166] = 385, + [2167] = 380, + [2168] = 376, + [2169] = 227, + [2170] = 375, + [2171] = 365, + [2172] = 329, + [2173] = 225, + [2174] = 344, + [2175] = 342, + [2176] = 314, + [2177] = 318, + [2178] = 359, + [2179] = 358, + [2180] = 476, + [2181] = 500, + [2182] = 475, + [2183] = 483, + [2184] = 474, + [2185] = 357, + [2186] = 223, + [2187] = 481, + [2188] = 480, + [2189] = 352, + [2190] = 461, + [2191] = 458, + [2192] = 457, + [2193] = 325, + [2194] = 436, + [2195] = 435, + [2196] = 411, + [2197] = 454, + [2198] = 2198, + [2199] = 330, + [2200] = 432, + [2201] = 351, + [2202] = 349, + [2203] = 347, + [2204] = 346, + [2205] = 306, + [2206] = 217, + [2207] = 414, + [2208] = 425, + [2209] = 324, + [2210] = 343, + [2211] = 402, + [2212] = 332, + [2213] = 333, + [2214] = 455, + [2215] = 350, + [2216] = 326, + [2217] = 331, + [2218] = 491, + [2219] = 2219, + [2220] = 320, + [2221] = 370, + [2222] = 2222, + [2223] = 313, + [2224] = 345, + [2225] = 220, + [2226] = 384, + [2227] = 341, + [2228] = 340, + [2229] = 339, + [2230] = 338, + [2231] = 337, + [2232] = 222, + [2233] = 336, + [2234] = 399, + [2235] = 335, + [2236] = 360, + [2237] = 462, + [2238] = 309, + [2239] = 315, + [2240] = 316, + [2241] = 392, + [2242] = 334, + [2243] = 311, + [2244] = 327, + [2245] = 322, + [2246] = 442, + [2247] = 472, + [2248] = 319, + [2249] = 307, + [2250] = 459, + [2251] = 434, + [2252] = 433, + [2253] = 362, + [2254] = 310, + [2255] = 323, + [2256] = 228, + [2257] = 2257, [2258] = 2258, - [2259] = 225, - [2260] = 1125, - [2261] = 226, + [2259] = 277, + [2260] = 217, + [2261] = 220, [2262] = 231, - [2263] = 300, - [2264] = 233, - [2265] = 220, - [2266] = 217, - [2267] = 218, - [2268] = 219, - [2269] = 412, - [2270] = 223, - [2271] = 224, - [2272] = 1118, - [2273] = 2273, - [2274] = 221, - [2275] = 228, - [2276] = 2276, + [2263] = 218, + [2264] = 228, + [2265] = 222, + [2266] = 2266, + [2267] = 1122, + [2268] = 224, + [2269] = 225, + [2270] = 221, + [2271] = 1124, + [2272] = 262, + [2273] = 223, + [2274] = 227, + [2275] = 410, + [2276] = 230, [2277] = 229, - [2278] = 230, - [2279] = 257, - [2280] = 300, - [2281] = 220, - [2282] = 953, - [2283] = 244, - [2284] = 235, - [2285] = 226, - [2286] = 218, - [2287] = 412, - [2288] = 2288, - [2289] = 362, - [2290] = 501, - [2291] = 376, - [2292] = 2288, - [2293] = 371, - [2294] = 443, - [2295] = 404, - [2296] = 462, - [2297] = 2288, - [2298] = 360, - [2299] = 356, - [2300] = 312, - [2301] = 320, - [2302] = 309, - [2303] = 2288, - [2304] = 225, - [2305] = 442, - [2306] = 2288, - [2307] = 2288, - [2308] = 224, - [2309] = 223, - [2310] = 219, - [2311] = 217, - [2312] = 377, - [2313] = 403, - [2314] = 2288, - [2315] = 221, - [2316] = 446, - [2317] = 427, - [2318] = 228, - [2319] = 310, - [2320] = 435, - [2321] = 500, - [2322] = 2288, - [2323] = 410, - [2324] = 428, - [2325] = 409, - [2326] = 2288, - [2327] = 433, - [2328] = 429, - [2329] = 481, - [2330] = 488, - [2331] = 489, - [2332] = 413, - [2333] = 498, - [2334] = 964, - [2335] = 450, - [2336] = 414, - [2337] = 453, - [2338] = 454, - [2339] = 460, - [2340] = 461, - [2341] = 332, - [2342] = 415, - [2343] = 231, - [2344] = 416, - [2345] = 431, - [2346] = 464, - [2347] = 401, - [2348] = 426, - [2349] = 425, - [2350] = 350, - [2351] = 328, - [2352] = 2288, - [2353] = 318, - [2354] = 2288, - [2355] = 483, - [2356] = 315, - [2357] = 229, - [2358] = 230, - [2359] = 954, - [2360] = 387, - [2361] = 484, - [2362] = 388, - [2363] = 2288, - [2364] = 374, - [2365] = 423, - [2366] = 465, - [2367] = 486, - [2368] = 217, - [2369] = 233, - [2370] = 487, - [2371] = 503, - [2372] = 344, - [2373] = 334, - [2374] = 227, - [2375] = 473, - [2376] = 317, - [2377] = 393, - [2378] = 395, - [2379] = 399, - [2380] = 219, - [2381] = 477, - [2382] = 493, - [2383] = 469, - [2384] = 221, - [2385] = 463, - [2386] = 452, - [2387] = 447, - [2388] = 385, - [2389] = 382, - [2390] = 228, - [2391] = 361, - [2392] = 455, - [2393] = 223, - [2394] = 359, - [2395] = 418, - [2396] = 357, - [2397] = 342, - [2398] = 340, - [2399] = 335, - [2400] = 364, - [2401] = 479, - [2402] = 380, - [2403] = 381, - [2404] = 386, - [2405] = 417, - [2406] = 471, - [2407] = 472, - [2408] = 2288, - [2409] = 499, - [2410] = 495, - [2411] = 467, - [2412] = 345, - [2413] = 224, - [2414] = 225, - [2415] = 422, - [2416] = 421, - [2417] = 225, - [2418] = 224, - [2419] = 223, - [2420] = 219, - [2421] = 217, - [2422] = 300, - [2423] = 257, - [2424] = 976, - [2425] = 332, - [2426] = 300, - [2427] = 70, - [2428] = 68, - [2429] = 69, - [2430] = 235, - [2431] = 220, - [2432] = 225, - [2433] = 218, - [2434] = 228, - [2435] = 332, - [2436] = 412, - [2437] = 221, - [2438] = 947, - [2439] = 224, - [2440] = 223, - [2441] = 219, - [2442] = 217, - [2443] = 978, - [2444] = 221, - [2445] = 412, - [2446] = 244, - [2447] = 332, - [2448] = 228, - [2449] = 971, - [2450] = 974, - [2451] = 226, - [2452] = 310, - [2453] = 233, - [2454] = 221, - [2455] = 318, - [2456] = 342, - [2457] = 412, - [2458] = 228, - [2459] = 953, + [2278] = 2278, + [2279] = 300, + [2280] = 218, + [2281] = 410, + [2282] = 224, + [2283] = 281, + [2284] = 267, + [2285] = 221, + [2286] = 277, + [2287] = 953, + [2288] = 223, + [2289] = 348, + [2290] = 359, + [2291] = 331, + [2292] = 358, + [2293] = 346, + [2294] = 347, + [2295] = 2295, + [2296] = 376, + [2297] = 349, + [2298] = 370, + [2299] = 339, + [2300] = 345, + [2301] = 219, + [2302] = 384, + [2303] = 2295, + [2304] = 436, + [2305] = 962, + [2306] = 225, + [2307] = 351, + [2308] = 227, + [2309] = 228, + [2310] = 222, + [2311] = 337, + [2312] = 334, + [2313] = 457, + [2314] = 2295, + [2315] = 229, + [2316] = 316, + [2317] = 311, + [2318] = 230, + [2319] = 2295, + [2320] = 461, + [2321] = 442, + [2322] = 472, + [2323] = 2295, + [2324] = 307, + [2325] = 414, + [2326] = 459, + [2327] = 223, + [2328] = 352, + [2329] = 434, + [2330] = 415, + [2331] = 421, + [2332] = 426, + [2333] = 433, + [2334] = 427, + [2335] = 2295, + [2336] = 225, + [2337] = 309, + [2338] = 440, + [2339] = 443, + [2340] = 444, + [2341] = 445, + [2342] = 460, + [2343] = 484, + [2344] = 227, + [2345] = 485, + [2346] = 322, + [2347] = 228, + [2348] = 310, + [2349] = 323, + [2350] = 319, + [2351] = 360, + [2352] = 493, + [2353] = 330, + [2354] = 222, + [2355] = 2295, + [2356] = 495, + [2357] = 357, + [2358] = 955, + [2359] = 399, + [2360] = 454, + [2361] = 262, + [2362] = 447, + [2363] = 404, + [2364] = 385, + [2365] = 380, + [2366] = 435, + [2367] = 375, + [2368] = 365, + [2369] = 412, + [2370] = 344, + [2371] = 455, + [2372] = 342, + [2373] = 491, + [2374] = 458, + [2375] = 476, + [2376] = 475, + [2377] = 220, + [2378] = 2295, + [2379] = 315, + [2380] = 2295, + [2381] = 314, + [2382] = 500, + [2383] = 474, + [2384] = 231, + [2385] = 336, + [2386] = 335, + [2387] = 313, + [2388] = 2295, + [2389] = 432, + [2390] = 320, + [2391] = 2295, + [2392] = 306, + [2393] = 350, + [2394] = 329, + [2395] = 217, + [2396] = 341, + [2397] = 462, + [2398] = 392, + [2399] = 411, + [2400] = 321, + [2401] = 483, + [2402] = 402, + [2403] = 362, + [2404] = 338, + [2405] = 2295, + [2406] = 327, + [2407] = 318, + [2408] = 2295, + [2409] = 324, + [2410] = 340, + [2411] = 220, + [2412] = 496, + [2413] = 481, + [2414] = 480, + [2415] = 425, + [2416] = 217, + [2417] = 277, + [2418] = 228, + [2419] = 267, + [2420] = 947, + [2421] = 67, + [2422] = 68, + [2423] = 220, + [2424] = 969, + [2425] = 978, + [2426] = 223, + [2427] = 977, + [2428] = 69, + [2429] = 410, + [2430] = 225, + [2431] = 362, + [2432] = 227, + [2433] = 410, + [2434] = 217, + [2435] = 222, + [2436] = 277, + [2437] = 972, + [2438] = 362, + [2439] = 217, + [2440] = 220, + [2441] = 300, + [2442] = 362, + [2443] = 224, + [2444] = 218, + [2445] = 223, + [2446] = 225, + [2447] = 281, + [2448] = 227, + [2449] = 228, + [2450] = 221, + [2451] = 222, + [2452] = 262, + [2453] = 474, + [2454] = 230, + [2455] = 229, + [2456] = 225, + [2457] = 227, + [2458] = 491, + [2459] = 220, [2460] = 223, - [2461] = 357, - [2462] = 219, - [2463] = 217, - [2464] = 479, - [2465] = 455, - [2466] = 300, - [2467] = 225, - [2468] = 401, - [2469] = 399, - [2470] = 395, - [2471] = 387, - [2472] = 388, - [2473] = 317, - [2474] = 345, - [2475] = 467, - [2476] = 495, - [2477] = 499, - [2478] = 426, - [2479] = 472, - [2480] = 471, - [2481] = 417, - [2482] = 386, - [2483] = 403, - [2484] = 381, - [2485] = 380, - [2486] = 364, - [2487] = 393, - [2488] = 954, - [2489] = 501, - [2490] = 335, - [2491] = 340, - [2492] = 312, - [2493] = 442, - [2494] = 359, - [2495] = 225, - [2496] = 217, - [2497] = 361, - [2498] = 500, - [2499] = 219, - [2500] = 224, - [2501] = 385, - [2502] = 223, - [2503] = 423, - [2504] = 447, - [2505] = 224, - [2506] = 452, - [2507] = 463, - [2508] = 469, - [2509] = 488, - [2510] = 493, - [2511] = 487, - [2512] = 477, - [2513] = 473, - [2514] = 334, - [2515] = 344, - [2516] = 409, - [2517] = 446, - [2518] = 503, - [2519] = 443, - [2520] = 462, - [2521] = 486, - [2522] = 228, - [2523] = 484, - [2524] = 483, - [2525] = 350, - [2526] = 2526, - [2527] = 382, - [2528] = 498, - [2529] = 464, - [2530] = 461, - [2531] = 460, - [2532] = 454, - [2533] = 453, - [2534] = 450, - [2535] = 489, - [2536] = 228, - [2537] = 481, - [2538] = 427, - [2539] = 413, - [2540] = 231, - [2541] = 224, - [2542] = 223, - [2543] = 219, - [2544] = 404, - [2545] = 414, - [2546] = 435, - [2547] = 217, - [2548] = 342, - [2549] = 415, - [2550] = 221, - [2551] = 433, - [2552] = 431, - [2553] = 425, - [2554] = 315, - [2555] = 221, - [2556] = 422, - [2557] = 332, - [2558] = 953, - [2559] = 421, - [2560] = 309, - [2561] = 418, - [2562] = 320, - [2563] = 362, - [2564] = 416, - [2565] = 429, - [2566] = 428, - [2567] = 328, - [2568] = 465, - [2569] = 356, - [2570] = 360, - [2571] = 225, - [2572] = 371, - [2573] = 230, - [2574] = 229, - [2575] = 374, - [2576] = 376, - [2577] = 410, - [2578] = 377, + [2461] = 319, + [2462] = 412, + [2463] = 414, + [2464] = 415, + [2465] = 318, + [2466] = 421, + [2467] = 426, + [2468] = 427, + [2469] = 440, + [2470] = 443, + [2471] = 444, + [2472] = 445, + [2473] = 460, + [2474] = 217, + [2475] = 327, + [2476] = 484, + [2477] = 485, + [2478] = 493, + [2479] = 321, + [2480] = 495, + [2481] = 496, + [2482] = 329, + [2483] = 447, + [2484] = 404, + [2485] = 385, + [2486] = 380, + [2487] = 376, + [2488] = 217, + [2489] = 392, + [2490] = 462, + [2491] = 220, + [2492] = 341, + [2493] = 953, + [2494] = 222, + [2495] = 330, + [2496] = 365, + [2497] = 331, + [2498] = 348, + [2499] = 223, + [2500] = 344, + [2501] = 342, + [2502] = 231, + [2503] = 314, + [2504] = 375, + [2505] = 334, + [2506] = 500, + [2507] = 322, + [2508] = 323, + [2509] = 483, + [2510] = 225, + [2511] = 481, + [2512] = 480, + [2513] = 319, + [2514] = 362, + [2515] = 228, + [2516] = 222, + [2517] = 475, + [2518] = 461, + [2519] = 228, + [2520] = 458, + [2521] = 457, + [2522] = 227, + [2523] = 436, + [2524] = 435, + [2525] = 432, + [2526] = 306, + [2527] = 425, + [2528] = 225, + [2529] = 223, + [2530] = 476, + [2531] = 402, + [2532] = 227, + [2533] = 359, + [2534] = 335, + [2535] = 358, + [2536] = 411, + [2537] = 228, + [2538] = 336, + [2539] = 454, + [2540] = 410, + [2541] = 337, + [2542] = 338, + [2543] = 339, + [2544] = 340, + [2545] = 350, + [2546] = 962, + [2547] = 345, + [2548] = 320, + [2549] = 370, + [2550] = 313, + [2551] = 384, + [2552] = 324, + [2553] = 399, + [2554] = 360, + [2555] = 309, + [2556] = 220, + [2557] = 315, + [2558] = 217, + [2559] = 316, + [2560] = 311, + [2561] = 346, + [2562] = 347, + [2563] = 349, + [2564] = 351, + [2565] = 442, + [2566] = 472, + [2567] = 307, + [2568] = 459, + [2569] = 434, + [2570] = 433, + [2571] = 2571, + [2572] = 310, + [2573] = 352, + [2574] = 277, + [2575] = 953, + [2576] = 357, + [2577] = 222, + [2578] = 455, [2579] = 2579, - [2580] = 2579, + [2580] = 2580, [2581] = 2579, - [2582] = 235, - [2583] = 2583, - [2584] = 2584, - [2585] = 2585, - [2586] = 2586, - [2587] = 2579, - [2588] = 257, - [2589] = 227, - [2590] = 2579, - [2591] = 227, - [2592] = 227, + [2582] = 2579, + [2583] = 2580, + [2584] = 2580, + [2585] = 362, + [2586] = 2579, + [2587] = 2587, + [2588] = 2580, + [2589] = 2580, + [2590] = 2590, + [2591] = 2591, + [2592] = 2579, [2593] = 2579, - [2594] = 2583, - [2595] = 2579, - [2596] = 2583, - [2597] = 244, - [2598] = 2583, - [2599] = 2583, - [2600] = 300, - [2601] = 342, - [2602] = 2583, - [2603] = 2579, - [2604] = 2583, - [2605] = 2583, - [2606] = 332, - [2607] = 2579, - [2608] = 412, - [2609] = 2583, - [2610] = 2583, - [2611] = 2579, - [2612] = 2579, + [2594] = 2580, + [2595] = 2580, + [2596] = 319, + [2597] = 2580, + [2598] = 2579, + [2599] = 2579, + [2600] = 281, + [2601] = 2579, + [2602] = 219, + [2603] = 2580, + [2604] = 2580, + [2605] = 410, + [2606] = 2579, + [2607] = 2580, + [2608] = 2608, + [2609] = 219, + [2610] = 962, + [2611] = 267, + [2612] = 219, [2613] = 2579, [2614] = 2614, - [2615] = 2583, + [2615] = 2579, [2616] = 2579, - [2617] = 2583, - [2618] = 2618, - [2619] = 954, - [2620] = 450, - [2621] = 332, - [2622] = 412, - [2623] = 2623, - [2624] = 2624, - [2625] = 2624, - [2626] = 498, - [2627] = 489, - [2628] = 481, - [2629] = 2629, - [2630] = 225, - [2631] = 328, - [2632] = 2632, - [2633] = 312, - [2634] = 362, - [2635] = 361, - [2636] = 2636, - [2637] = 395, - [2638] = 401, - [2639] = 2618, - [2640] = 2624, - [2641] = 217, - [2642] = 2636, - [2643] = 345, - [2644] = 499, - [2645] = 364, - [2646] = 2646, - [2647] = 357, - [2648] = 359, - [2649] = 317, - [2650] = 412, - [2651] = 427, - [2652] = 469, - [2653] = 310, - [2654] = 2624, - [2655] = 493, - [2656] = 334, - [2657] = 344, - [2658] = 486, - [2659] = 484, - [2660] = 483, - [2661] = 464, - [2662] = 503, - [2663] = 461, - [2664] = 460, - [2665] = 300, - [2666] = 473, - [2667] = 477, - [2668] = 454, - [2669] = 453, - [2670] = 463, - [2671] = 452, - [2672] = 2629, - [2673] = 447, - [2674] = 423, - [2675] = 385, - [2676] = 2624, - [2677] = 231, - [2678] = 412, - [2679] = 404, - [2680] = 340, - [2681] = 335, - [2682] = 2629, - [2683] = 2646, - [2684] = 309, - [2685] = 380, - [2686] = 381, - [2687] = 386, - [2688] = 417, - [2689] = 471, - [2690] = 472, - [2691] = 320, - [2692] = 495, - [2693] = 467, - [2694] = 225, - [2695] = 227, - [2696] = 2696, - [2697] = 2646, - [2698] = 356, - [2699] = 387, - [2700] = 388, - [2701] = 318, - [2702] = 360, - [2703] = 224, - [2704] = 223, - [2705] = 403, - [2706] = 2629, - [2707] = 219, - [2708] = 2636, - [2709] = 224, - [2710] = 409, - [2711] = 223, - [2712] = 978, - [2713] = 413, - [2714] = 414, - [2715] = 415, - [2716] = 416, - [2717] = 465, - [2718] = 219, - [2719] = 371, - [2720] = 418, - [2721] = 374, - [2722] = 421, - [2723] = 422, - [2724] = 315, - [2725] = 425, - [2726] = 431, - [2727] = 2629, - [2728] = 433, - [2729] = 376, - [2730] = 435, - [2731] = 2624, - [2732] = 217, - [2733] = 2624, - [2734] = 2646, - [2735] = 462, - [2736] = 443, - [2737] = 446, - [2738] = 377, - [2739] = 2646, - [2740] = 487, - [2741] = 488, - [2742] = 382, - [2743] = 500, - [2744] = 442, - [2745] = 410, - [2746] = 501, - [2747] = 428, - [2748] = 429, - [2749] = 426, - [2750] = 2636, - [2751] = 300, - [2752] = 2752, - [2753] = 2629, - [2754] = 2624, - [2755] = 2629, - [2756] = 350, - [2757] = 2624, - [2758] = 229, - [2759] = 2629, - [2760] = 300, - [2761] = 230, - [2762] = 479, - [2763] = 2636, - [2764] = 393, - [2765] = 399, - [2766] = 2766, - [2767] = 2767, - [2768] = 2636, - [2769] = 2624, - [2770] = 2646, - [2771] = 455, - [2772] = 2629, - [2773] = 2629, - [2774] = 2646, - [2775] = 2624, - [2776] = 2646, - [2777] = 2624, - [2778] = 2624, - [2779] = 332, + [2617] = 277, + [2618] = 2580, + [2619] = 300, + [2620] = 434, + [2621] = 2621, + [2622] = 415, + [2623] = 384, + [2624] = 972, + [2625] = 2625, + [2626] = 313, + [2627] = 370, + [2628] = 2628, + [2629] = 225, + [2630] = 433, + [2631] = 460, + [2632] = 459, + [2633] = 421, + [2634] = 493, + [2635] = 227, + [2636] = 225, + [2637] = 223, + [2638] = 2621, + [2639] = 2639, + [2640] = 474, + [2641] = 2628, + [2642] = 476, + [2643] = 410, + [2644] = 425, + [2645] = 2625, + [2646] = 306, + [2647] = 2621, + [2648] = 496, + [2649] = 495, + [2650] = 392, + [2651] = 375, + [2652] = 365, + [2653] = 342, + [2654] = 314, + [2655] = 500, + [2656] = 483, + [2657] = 481, + [2658] = 2639, + [2659] = 344, + [2660] = 348, + [2661] = 480, + [2662] = 461, + [2663] = 376, + [2664] = 380, + [2665] = 458, + [2666] = 385, + [2667] = 404, + [2668] = 447, + [2669] = 457, + [2670] = 2670, + [2671] = 436, + [2672] = 2639, + [2673] = 485, + [2674] = 484, + [2675] = 435, + [2676] = 227, + [2677] = 432, + [2678] = 445, + [2679] = 444, + [2680] = 443, + [2681] = 440, + [2682] = 427, + [2683] = 426, + [2684] = 231, + [2685] = 414, + [2686] = 412, + [2687] = 410, + [2688] = 228, + [2689] = 2628, + [2690] = 2690, + [2691] = 402, + [2692] = 359, + [2693] = 358, + [2694] = 411, + [2695] = 2621, + [2696] = 223, + [2697] = 229, + [2698] = 357, + [2699] = 228, + [2700] = 350, + [2701] = 2625, + [2702] = 2625, + [2703] = 352, + [2704] = 2704, + [2705] = 230, + [2706] = 351, + [2707] = 349, + [2708] = 347, + [2709] = 346, + [2710] = 324, + [2711] = 2628, + [2712] = 320, + [2713] = 345, + [2714] = 2621, + [2715] = 341, + [2716] = 340, + [2717] = 339, + [2718] = 338, + [2719] = 337, + [2720] = 222, + [2721] = 336, + [2722] = 2628, + [2723] = 335, + [2724] = 2625, + [2725] = 399, + [2726] = 2625, + [2727] = 2727, + [2728] = 323, + [2729] = 322, + [2730] = 334, + [2731] = 360, + [2732] = 309, + [2733] = 331, + [2734] = 330, + [2735] = 454, + [2736] = 329, + [2737] = 321, + [2738] = 315, + [2739] = 327, + [2740] = 316, + [2741] = 311, + [2742] = 318, + [2743] = 2628, + [2744] = 277, + [2745] = 2621, + [2746] = 2639, + [2747] = 262, + [2748] = 277, + [2749] = 2625, + [2750] = 2750, + [2751] = 442, + [2752] = 2621, + [2753] = 277, + [2754] = 472, + [2755] = 307, + [2756] = 2639, + [2757] = 2621, + [2758] = 410, + [2759] = 310, + [2760] = 2639, + [2761] = 2621, + [2762] = 2628, + [2763] = 455, + [2764] = 491, + [2765] = 2639, + [2766] = 2639, + [2767] = 475, + [2768] = 2639, + [2769] = 2625, + [2770] = 219, + [2771] = 462, + [2772] = 220, + [2773] = 2628, + [2774] = 2621, + [2775] = 2628, + [2776] = 2621, + [2777] = 222, + [2778] = 2639, + [2779] = 2639, [2780] = 2780, - [2781] = 2629, - [2782] = 2782, - [2783] = 2636, - [2784] = 2646, - [2785] = 2646, - [2786] = 221, + [2781] = 2625, + [2782] = 217, + [2783] = 2639, + [2784] = 362, + [2785] = 410, + [2786] = 2625, [2787] = 2787, - [2788] = 228, - [2789] = 2629, - [2790] = 2646, - [2791] = 332, - [2792] = 412, - [2793] = 2646, - [2794] = 2629, - [2795] = 2636, - [2796] = 221, - [2797] = 228, - [2798] = 2636, - [2799] = 300, - [2800] = 2636, - [2801] = 2629, - [2802] = 2636, - [2803] = 233, + [2788] = 2625, + [2789] = 2628, + [2790] = 2621, + [2791] = 2591, + [2792] = 277, + [2793] = 217, + [2794] = 220, + [2795] = 2795, + [2796] = 2628, + [2797] = 2625, + [2798] = 2625, + [2799] = 362, + [2800] = 362, + [2801] = 2801, + [2802] = 2628, + [2803] = 2625, [2804] = 2804, - [2805] = 2636, - [2806] = 235, + [2805] = 2639, + [2806] = 281, [2807] = 2807, [2808] = 2807, - [2809] = 2807, - [2810] = 2807, + [2809] = 2809, + [2810] = 2810, [2811] = 2807, [2812] = 2812, - [2813] = 1390, - [2814] = 342, - [2815] = 2815, - [2816] = 2816, - [2817] = 2807, + [2813] = 2810, + [2814] = 319, + [2815] = 1392, + [2816] = 2807, + [2817] = 2817, [2818] = 2807, - [2819] = 2807, + [2819] = 2819, [2820] = 2807, - [2821] = 2821, - [2822] = 257, - [2823] = 2807, - [2824] = 2824, - [2825] = 1903, - [2826] = 2812, - [2827] = 2807, + [2821] = 2807, + [2822] = 2807, + [2823] = 2823, + [2824] = 2810, + [2825] = 2807, + [2826] = 300, + [2827] = 1902, [2828] = 2807, - [2829] = 2812, - [2830] = 2812, - [2831] = 2831, + [2829] = 2807, + [2830] = 2807, + [2831] = 2810, [2832] = 2807, - [2833] = 467, - [2834] = 2834, - [2835] = 68, - [2836] = 481, - [2837] = 328, - [2838] = 2834, - [2839] = 68, - [2840] = 312, - [2841] = 362, - [2842] = 2834, - [2843] = 310, - [2844] = 2834, - [2845] = 473, - [2846] = 495, - [2847] = 2847, - [2848] = 2834, - [2849] = 472, - [2850] = 69, - [2851] = 471, - [2852] = 417, - [2853] = 386, - [2854] = 381, - [2855] = 380, - [2856] = 498, - [2857] = 335, - [2858] = 489, - [2859] = 382, - [2860] = 70, + [2833] = 443, + [2834] = 485, + [2835] = 454, + [2836] = 384, + [2837] = 68, + [2838] = 2838, + [2839] = 2838, + [2840] = 2838, + [2841] = 2838, + [2842] = 434, + [2843] = 2838, + [2844] = 313, + [2845] = 370, + [2846] = 2838, + [2847] = 459, + [2848] = 69, + [2849] = 425, + [2850] = 306, + [2851] = 2838, + [2852] = 433, + [2853] = 2838, + [2854] = 500, + [2855] = 344, + [2856] = 67, + [2857] = 348, + [2858] = 376, + [2859] = 67, + [2860] = 380, [2861] = 2861, - [2862] = 340, - [2863] = 385, - [2864] = 423, - [2865] = 2834, - [2866] = 447, - [2867] = 2834, - [2868] = 2834, - [2869] = 2834, - [2870] = 69, - [2871] = 70, - [2872] = 427, - [2873] = 2834, - [2874] = 503, - [2875] = 2834, - [2876] = 452, - [2877] = 395, - [2878] = 463, - [2879] = 2123, - [2880] = 2834, - [2881] = 477, - [2882] = 401, - [2883] = 2834, - [2884] = 1392, - [2885] = 1399, - [2886] = 1392, - [2887] = 1392, - [2888] = 1399, - [2889] = 2889, - [2890] = 1392, - [2891] = 1392, - [2892] = 1399, - [2893] = 1397, - [2894] = 2889, - [2895] = 1392, - [2896] = 2896, - [2897] = 1399, - [2898] = 1399, - [2899] = 1399, - [2900] = 1392, - [2901] = 1392, + [2862] = 69, + [2863] = 445, + [2864] = 2838, + [2865] = 474, + [2866] = 2121, + [2867] = 476, + [2868] = 385, + [2869] = 404, + [2870] = 68, + [2871] = 2838, + [2872] = 447, + [2873] = 412, + [2874] = 414, + [2875] = 426, + [2876] = 427, + [2877] = 440, + [2878] = 2878, + [2879] = 2838, + [2880] = 2838, + [2881] = 444, + [2882] = 484, + [2883] = 2838, + [2884] = 2884, + [2885] = 1396, + [2886] = 2886, + [2887] = 2884, + [2888] = 1389, + [2889] = 2886, + [2890] = 1398, + [2891] = 2891, + [2892] = 1389, + [2893] = 1398, + [2894] = 1396, + [2895] = 1389, + [2896] = 1398, + [2897] = 1389, + [2898] = 2886, + [2899] = 1396, + [2900] = 1396, + [2901] = 1396, [2902] = 2902, - [2903] = 1397, - [2904] = 1397, - [2905] = 2896, - [2906] = 1399, - [2907] = 1397, - [2908] = 2896, - [2909] = 2889, - [2910] = 2896, - [2911] = 2889, - [2912] = 2912, - [2913] = 2896, - [2914] = 2896, - [2915] = 2896, - [2916] = 1392, - [2917] = 2889, - [2918] = 2896, - [2919] = 2889, - [2920] = 1397, - [2921] = 2921, - [2922] = 1397, - [2923] = 1397, - [2924] = 1399, - [2925] = 2925, - [2926] = 1392, - [2927] = 1397, - [2928] = 1392, - [2929] = 1399, - [2930] = 2889, - [2931] = 1399, - [2932] = 1399, - [2933] = 2889, - [2934] = 2896, - [2935] = 2889, - [2936] = 1399, - [2937] = 1392, - [2938] = 1392, - [2939] = 1397, - [2940] = 2889, - [2941] = 1392, - [2942] = 1397, - [2943] = 1397, - [2944] = 1392, - [2945] = 1399, - [2946] = 1392, - [2947] = 1399, - [2948] = 1397, - [2949] = 1397, - [2950] = 1399, - [2951] = 1397, - [2952] = 2896, - [2953] = 2896, - [2954] = 2889, - [2955] = 1397, - [2956] = 2896, - [2957] = 2889, - [2958] = 1397, - [2959] = 1399, + [2903] = 1389, + [2904] = 1398, + [2905] = 1398, + [2906] = 1398, + [2907] = 2886, + [2908] = 1396, + [2909] = 2884, + [2910] = 1389, + [2911] = 1389, + [2912] = 2886, + [2913] = 2886, + [2914] = 2886, + [2915] = 2884, + [2916] = 2884, + [2917] = 1398, + [2918] = 2884, + [2919] = 1398, + [2920] = 2884, + [2921] = 2886, + [2922] = 2884, + [2923] = 2886, + [2924] = 1396, + [2925] = 2884, + [2926] = 1389, + [2927] = 1396, + [2928] = 2928, + [2929] = 1398, + [2930] = 2886, + [2931] = 2884, + [2932] = 1389, + [2933] = 1396, + [2934] = 1389, + [2935] = 1396, + [2936] = 1398, + [2937] = 1396, + [2938] = 1389, + [2939] = 1398, + [2940] = 1396, + [2941] = 1389, + [2942] = 1398, + [2943] = 2886, + [2944] = 2884, + [2945] = 1396, + [2946] = 1398, + [2947] = 1389, + [2948] = 1398, + [2949] = 1396, + [2950] = 1389, + [2951] = 1396, + [2952] = 1389, + [2953] = 2884, + [2954] = 2886, + [2955] = 2955, + [2956] = 1398, + [2957] = 1389, + [2958] = 1398, + [2959] = 1396, [2960] = 2960, [2961] = 2960, [2962] = 2962, [2963] = 2963, - [2964] = 2964, - [2965] = 2962, - [2966] = 1581, - [2967] = 2962, - [2968] = 2964, - [2969] = 2962, - [2970] = 2962, - [2971] = 2964, - [2972] = 2962, - [2973] = 2964, + [2964] = 2962, + [2965] = 2965, + [2966] = 2962, + [2967] = 2967, + [2968] = 2962, + [2969] = 2969, + [2970] = 2965, + [2971] = 2965, + [2972] = 2965, + [2973] = 2962, [2974] = 2962, - [2975] = 2964, - [2976] = 2964, - [2977] = 2977, + [2975] = 2965, + [2976] = 2962, + [2977] = 2965, [2978] = 2978, - [2979] = 2979, - [2980] = 2964, - [2981] = 2962, + [2979] = 2965, + [2980] = 2965, + [2981] = 2981, [2982] = 2962, - [2983] = 2964, - [2984] = 2962, - [2985] = 2964, - [2986] = 2986, + [2983] = 2962, + [2984] = 1586, + [2985] = 2965, + [2986] = 2962, [2987] = 2962, - [2988] = 2962, - [2989] = 2962, - [2990] = 2964, - [2991] = 2991, - [2992] = 2992, + [2988] = 2965, + [2989] = 2965, + [2990] = 2962, + [2991] = 2965, + [2992] = 2962, [2993] = 2993, - [2994] = 2964, - [2995] = 2964, - [2996] = 2964, - [2997] = 2962, - [2998] = 2998, - [2999] = 2964, + [2994] = 2994, + [2995] = 2962, + [2996] = 2996, + [2997] = 2997, + [2998] = 2965, + [2999] = 2965, [3000] = 3000, [3001] = 3001, [3002] = 3002, [3003] = 3003, [3004] = 3004, - [3005] = 3005, + [3005] = 3000, [3006] = 3006, - [3007] = 3007, + [3007] = 3002, [3008] = 3008, - [3009] = 3001, - [3010] = 3000, + [3009] = 3002, + [3010] = 3010, [3011] = 3011, [3012] = 3012, [3013] = 3013, [3014] = 3014, [3015] = 3015, - [3016] = 3000, - [3017] = 3005, - [3018] = 3005, - [3019] = 3001, - [3020] = 3005, + [3016] = 3002, + [3017] = 3001, + [3018] = 3004, + [3019] = 3013, + [3020] = 3008, [3021] = 3000, - [3022] = 3015, - [3023] = 3011, - [3024] = 3002, - [3025] = 3012, - [3026] = 3026, - [3027] = 3015, - [3028] = 3028, - [3029] = 3006, - [3030] = 3008, - [3031] = 3014, - [3032] = 3008, - [3033] = 3006, - [3034] = 3028, - [3035] = 3026, - [3036] = 3001, - [3037] = 3014, - [3038] = 3002, - [3039] = 3003, - [3040] = 3040, - [3041] = 3014, - [3042] = 3014, - [3043] = 3008, + [3022] = 3022, + [3023] = 3023, + [3024] = 3023, + [3025] = 3006, + [3026] = 3015, + [3027] = 3014, + [3028] = 3012, + [3029] = 3014, + [3030] = 3010, + [3031] = 3002, + [3032] = 3004, + [3033] = 3010, + [3034] = 3014, + [3035] = 3011, + [3036] = 3014, + [3037] = 3012, + [3038] = 3010, + [3039] = 3015, + [3040] = 3006, + [3041] = 3002, + [3042] = 3004, + [3043] = 3023, [3044] = 3008, - [3045] = 3045, - [3046] = 3013, - [3047] = 3006, - [3048] = 3012, - [3049] = 3015, - [3050] = 3003, - [3051] = 3013, - [3052] = 3001, - [3053] = 3013, - [3054] = 3006, - [3055] = 3028, - [3056] = 3005, - [3057] = 3000, - [3058] = 3026, - [3059] = 3003, - [3060] = 3000, - [3061] = 3005, - [3062] = 3005, - [3063] = 3014, - [3064] = 3008, + [3045] = 3010, + [3046] = 3004, + [3047] = 3011, + [3048] = 3022, + [3049] = 3001, + [3050] = 3000, + [3051] = 3001, + [3052] = 3010, + [3053] = 3053, + [3054] = 3010, + [3055] = 3010, + [3056] = 3011, + [3057] = 3022, + [3058] = 3023, + [3059] = 3000, + [3060] = 3060, + [3061] = 3015, + [3062] = 3010, + [3063] = 3004, + [3064] = 3012, [3065] = 3011, - [3066] = 3006, - [3067] = 3015, - [3068] = 3026, - [3069] = 3026, - [3070] = 3028, - [3071] = 3002, - [3072] = 3072, - [3073] = 3014, - [3074] = 3008, - [3075] = 3006, - [3076] = 3005, - [3077] = 3015, - [3078] = 3000, - [3079] = 3005, - [3080] = 3014, - [3081] = 3011, - [3082] = 3012, - [3083] = 3000, - [3084] = 3028, - [3085] = 3000, - [3086] = 3002, - [3087] = 3008, - [3088] = 3015, - [3089] = 3089, - [3090] = 3026, - [3091] = 3006, - [3092] = 3028, - [3093] = 3026, - [3094] = 3028, - [3095] = 3028, - [3096] = 3002, - [3097] = 3026, - [3098] = 3006, - [3099] = 3008, - [3100] = 3045, - [3101] = 3002, - [3102] = 3008, - [3103] = 3015, - [3104] = 3014, - [3105] = 3014, - [3106] = 3012, - [3107] = 3026, + [3066] = 3003, + [3067] = 3011, + [3068] = 3068, + [3069] = 3011, + [3070] = 3004, + [3071] = 3010, + [3072] = 3012, + [3073] = 3011, + [3074] = 3013, + [3075] = 3010, + [3076] = 3010, + [3077] = 3022, + [3078] = 3013, + [3079] = 3022, + [3080] = 3015, + [3081] = 3010, + [3082] = 3023, + [3083] = 3001, + [3084] = 3001, + [3085] = 3085, + [3086] = 3000, + [3087] = 3002, + [3088] = 3022, + [3089] = 3004, + [3090] = 3004, + [3091] = 3014, + [3092] = 3010, + [3093] = 3010, + [3094] = 3012, + [3095] = 3004, + [3096] = 3012, + [3097] = 3013, + [3098] = 3010, + [3099] = 3015, + [3100] = 3004, + [3101] = 3010, + [3102] = 3004, + [3103] = 3004, + [3104] = 3104, + [3105] = 3023, + [3106] = 3106, + [3107] = 3002, [3108] = 3001, - [3109] = 3002, - [3110] = 3045, - [3111] = 3015, - [3112] = 3013, - [3113] = 3003, - [3114] = 3014, - [3115] = 3001, - [3116] = 3005, - [3117] = 3014, - [3118] = 3000, - [3119] = 3000, - [3120] = 3000, - [3121] = 3011, - [3122] = 3008, - [3123] = 3011, - [3124] = 3006, - [3125] = 3015, - [3126] = 3015, - [3127] = 3011, - [3128] = 3128, + [3109] = 3022, + [3110] = 3000, + [3111] = 3013, + [3112] = 3014, + [3113] = 3001, + [3114] = 3002, + [3115] = 3014, + [3116] = 3000, + [3117] = 3008, + [3118] = 3002, + [3119] = 3022, + [3120] = 3023, + [3121] = 3015, + [3122] = 3023, + [3123] = 3012, + [3124] = 3015, + [3125] = 3008, + [3126] = 3023, + [3127] = 3013, + [3128] = 3015, [3129] = 3006, - [3130] = 3028, - [3131] = 3003, - [3132] = 3011, + [3130] = 3014, + [3131] = 3010, + [3132] = 3023, [3133] = 3012, - [3134] = 3026, - [3135] = 3002, - [3136] = 3011, - [3137] = 3011, + [3134] = 3023, + [3135] = 3022, + [3136] = 3015, + [3137] = 3012, [3138] = 3015, - [3139] = 3005, - [3140] = 3026, - [3141] = 3011, - [3142] = 3008, - [3143] = 3012, - [3144] = 3013, - [3145] = 3011, - [3146] = 3011, - [3147] = 3000, - [3148] = 3002, - [3149] = 3015, - [3150] = 3026, - [3151] = 3028, - [3152] = 3005, - [3153] = 3011, - [3154] = 3013, - [3155] = 3011, - [3156] = 3011, - [3157] = 3003, - [3158] = 3013, - [3159] = 3011, - [3160] = 3015, - [3161] = 3005, - [3162] = 3003, - [3163] = 3001, - [3164] = 3028, - [3165] = 3002, - [3166] = 3014, - [3167] = 3012, - [3168] = 3002, - [3169] = 3014, - [3170] = 3008, - [3171] = 3001, - [3172] = 3011, - [3173] = 3008, - [3174] = 3028, - [3175] = 3011, - [3176] = 3005, - [3177] = 3011, - [3178] = 3000, - [3179] = 3015, - [3180] = 3000, - [3181] = 3001, - [3182] = 3001, - [3183] = 3000, - [3184] = 3006, - [3185] = 3028, - [3186] = 3006, - [3187] = 3012, - [3188] = 3011, - [3189] = 3026, - [3190] = 3002, - [3191] = 3003, - [3192] = 3006, + [3139] = 3000, + [3140] = 3006, + [3141] = 3001, + [3142] = 3012, + [3143] = 3011, + [3144] = 3008, + [3145] = 3006, + [3146] = 3008, + [3147] = 3013, + [3148] = 3006, + [3149] = 3006, + [3150] = 3002, + [3151] = 3008, + [3152] = 3014, + [3153] = 3004, + [3154] = 3006, + [3155] = 3006, + [3156] = 3013, + [3157] = 3000, + [3158] = 3011, + [3159] = 3014, + [3160] = 3010, + [3161] = 3022, + [3162] = 3022, + [3163] = 3010, + [3164] = 3000, + [3165] = 3001, + [3166] = 3000, + [3167] = 3013, + [3168] = 3004, + [3169] = 3010, + [3170] = 3013, + [3171] = 3008, + [3172] = 3012, + [3173] = 3015, + [3174] = 3023, + [3175] = 3022, + [3176] = 3000, + [3177] = 3002, + [3178] = 3001, + [3179] = 3022, + [3180] = 3001, + [3181] = 3002, + [3182] = 3010, + [3183] = 3001, + [3184] = 3014, + [3185] = 3023, + [3186] = 3011, + [3187] = 3004, + [3188] = 3015, + [3189] = 3006, + [3190] = 3008, + [3191] = 3002, + [3192] = 3011, [3193] = 3013, - [3194] = 3005, - [3195] = 3005, - [3196] = 3001, - [3197] = 3011, + [3194] = 3012, + [3195] = 3011, + [3196] = 3003, + [3197] = 3015, [3198] = 3012, - [3199] = 3199, - [3200] = 3008, - [3201] = 3006, - [3202] = 3001, - [3203] = 3014, - [3204] = 3002, - [3205] = 3003, - [3206] = 3013, - [3207] = 3001, - [3208] = 3001, - [3209] = 3003, - [3210] = 3013, - [3211] = 3001, - [3212] = 3028, - [3213] = 3003, - [3214] = 3013, - [3215] = 3002, - [3216] = 3026, - [3217] = 3026, - [3218] = 3028, - [3219] = 3012, - [3220] = 3028, - [3221] = 3012, - [3222] = 3012, - [3223] = 3015, - [3224] = 3224, - [3225] = 3006, - [3226] = 3026, - [3227] = 3012, - [3228] = 3014, - [3229] = 3008, - [3230] = 3011, - [3231] = 3002, + [3199] = 3015, + [3200] = 3014, + [3201] = 3011, + [3202] = 3023, + [3203] = 3203, + [3204] = 3012, + [3205] = 3015, + [3206] = 3012, + [3207] = 3014, + [3208] = 3023, + [3209] = 3001, + [3210] = 3014, + [3211] = 3211, + [3212] = 3022, + [3213] = 3000, + [3214] = 3011, + [3215] = 3001, + [3216] = 3008, + [3217] = 3001, + [3218] = 3006, + [3219] = 3000, + [3220] = 3008, + [3221] = 3022, + [3222] = 3002, + [3223] = 3002, + [3224] = 3014, + [3225] = 3023, + [3226] = 3010, + [3227] = 3022, + [3228] = 3011, + [3229] = 3000, + [3230] = 3013, + [3231] = 3013, [3232] = 3232, - [3233] = 3232, - [3234] = 3232, - [3235] = 3232, - [3236] = 3232, - [3237] = 3232, - [3238] = 3232, - [3239] = 3239, - [3240] = 3240, - [3241] = 3232, + [3233] = 3233, + [3234] = 3233, + [3235] = 3233, + [3236] = 3233, + [3237] = 3233, + [3238] = 3233, + [3239] = 3233, + [3240] = 3233, + [3241] = 3233, [3242] = 3242, - [3243] = 3232, - [3244] = 3232, - [3245] = 3232, - [3246] = 3246, - [3247] = 3232, + [3243] = 3243, + [3244] = 3233, + [3245] = 3233, + [3246] = 3233, + [3247] = 3247, [3248] = 3248, - [3249] = 476, - [3250] = 491, - [3251] = 457, - [3252] = 490, - [3253] = 419, - [3254] = 1102, - [3255] = 457, - [3256] = 490, - [3257] = 419, - [3258] = 3258, - [3259] = 3259, - [3260] = 476, - [3261] = 3261, - [3262] = 491, + [3249] = 326, + [3250] = 343, + [3251] = 325, + [3252] = 332, + [3253] = 333, + [3254] = 1103, + [3255] = 3255, + [3256] = 3256, + [3257] = 3257, + [3258] = 332, + [3259] = 333, + [3260] = 326, + [3261] = 325, + [3262] = 343, [3263] = 3263, - [3264] = 1102, - [3265] = 3265, - [3266] = 2136, - [3267] = 3267, - [3268] = 1102, - [3269] = 1450, - [3270] = 1410, - [3271] = 3271, - [3272] = 1405, + [3264] = 3264, + [3265] = 1103, + [3266] = 2131, + [3267] = 1103, + [3268] = 1442, + [3269] = 3269, + [3270] = 2219, + [3271] = 1410, + [3272] = 3272, [3273] = 3273, - [3274] = 3274, - [3275] = 3271, - [3276] = 3271, - [3277] = 2165, - [3278] = 3271, + [3274] = 3272, + [3275] = 1408, + [3276] = 3272, + [3277] = 3272, + [3278] = 3278, [3279] = 3279, [3280] = 3280, - [3281] = 2258, - [3282] = 3282, - [3283] = 2273, + [3281] = 3281, + [3282] = 2258, + [3283] = 2266, [3284] = 3284, [3285] = 3285, - [3286] = 3285, - [3287] = 3285, - [3288] = 3285, - [3289] = 3285, - [3290] = 3290, - [3291] = 3290, - [3292] = 3285, - [3293] = 3293, + [3286] = 3286, + [3287] = 3287, + [3288] = 362, + [3289] = 3287, + [3290] = 3286, + [3291] = 3291, + [3292] = 3292, + [3293] = 3286, [3294] = 3294, - [3295] = 3285, - [3296] = 3290, - [3297] = 3290, - [3298] = 3298, - [3299] = 3285, - [3300] = 3290, - [3301] = 3301, - [3302] = 3290, - [3303] = 3290, - [3304] = 3285, - [3305] = 244, - [3306] = 3306, - [3307] = 3307, - [3308] = 3308, - [3309] = 3306, + [3295] = 323, + [3296] = 3296, + [3297] = 3287, + [3298] = 3286, + [3299] = 322, + [3300] = 3287, + [3301] = 3286, + [3302] = 267, + [3303] = 3303, + [3304] = 3287, + [3305] = 3294, + [3306] = 3286, + [3307] = 3286, + [3308] = 3287, + [3309] = 3287, [3310] = 3310, - [3311] = 3285, - [3312] = 3312, - [3313] = 3290, - [3314] = 3285, - [3315] = 3315, - [3316] = 3290, - [3317] = 3290, - [3318] = 3290, - [3319] = 3319, - [3320] = 3285, - [3321] = 332, - [3322] = 3290, - [3323] = 3306, - [3324] = 3290, - [3325] = 462, - [3326] = 3285, - [3327] = 443, - [3328] = 3290, - [3329] = 3285, - [3330] = 3306, - [3331] = 3331, - [3332] = 442, - [3333] = 426, - [3334] = 465, + [3311] = 3286, + [3312] = 3287, + [3313] = 3294, + [3314] = 3314, + [3315] = 3287, + [3316] = 3286, + [3317] = 3287, + [3318] = 3286, + [3319] = 3294, + [3320] = 3286, + [3321] = 3287, + [3322] = 3287, + [3323] = 3286, + [3324] = 3324, + [3325] = 3325, + [3326] = 3286, + [3327] = 3287, + [3328] = 3287, + [3329] = 3286, + [3330] = 3330, + [3331] = 318, + [3332] = 3332, + [3333] = 321, + [3334] = 324, [3335] = 3335, [3336] = 3336, [3337] = 3337, [3338] = 3338, - [3339] = 413, - [3340] = 388, - [3341] = 409, - [3342] = 488, - [3343] = 3343, + [3339] = 347, + [3340] = 339, + [3341] = 330, + [3342] = 336, + [3343] = 352, [3344] = 3344, - [3345] = 501, - [3346] = 3346, - [3347] = 403, - [3348] = 414, - [3349] = 415, - [3350] = 416, - [3351] = 418, - [3352] = 487, - [3353] = 421, - [3354] = 425, - [3355] = 315, - [3356] = 3356, - [3357] = 446, - [3358] = 431, - [3359] = 433, - [3360] = 435, - [3361] = 500, - [3362] = 387, - [3363] = 422, + [3345] = 327, + [3346] = 337, + [3347] = 329, + [3348] = 3348, + [3349] = 3349, + [3350] = 357, + [3351] = 338, + [3352] = 331, + [3353] = 345, + [3354] = 358, + [3355] = 351, + [3356] = 349, + [3357] = 340, + [3358] = 335, + [3359] = 3359, + [3360] = 359, + [3361] = 346, + [3362] = 334, + [3363] = 341, [3364] = 3364, [3365] = 3365, [3366] = 3366, [3367] = 3367, - [3368] = 318, - [3369] = 3367, - [3370] = 3370, - [3371] = 3371, - [3372] = 3372, + [3368] = 3367, + [3369] = 3369, + [3370] = 3367, + [3371] = 3367, + [3372] = 3367, [3373] = 3367, - [3374] = 3374, - [3375] = 3375, + [3374] = 3367, + [3375] = 3367, [3376] = 3367, - [3377] = 3367, - [3378] = 3367, + [3377] = 411, + [3378] = 3378, [3379] = 3367, - [3380] = 3367, - [3381] = 3367, - [3382] = 3367, + [3380] = 3380, + [3381] = 3381, + [3382] = 3382, [3383] = 3367, [3384] = 3367, [3385] = 3385, @@ -6829,146 +6846,146 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3404] = 3404, [3405] = 3405, [3406] = 3406, - [3407] = 3407, - [3408] = 3408, - [3409] = 3409, - [3410] = 3410, - [3411] = 3411, + [3407] = 3404, + [3408] = 3405, + [3409] = 3402, + [3410] = 3406, + [3411] = 3402, [3412] = 3412, [3413] = 3413, - [3414] = 3414, - [3415] = 3412, - [3416] = 3412, - [3417] = 3412, - [3418] = 3412, - [3419] = 3412, + [3414] = 3413, + [3415] = 3402, + [3416] = 3416, + [3417] = 3417, + [3418] = 3418, + [3419] = 3413, [3420] = 3420, - [3421] = 3412, - [3422] = 3422, - [3423] = 3412, - [3424] = 3412, - [3425] = 3412, - [3426] = 3412, - [3427] = 3427, - [3428] = 3428, - [3429] = 3429, - [3430] = 3412, - [3431] = 3431, - [3432] = 3432, + [3421] = 3402, + [3422] = 3402, + [3423] = 3413, + [3424] = 3418, + [3425] = 3417, + [3426] = 3416, + [3427] = 3416, + [3428] = 3417, + [3429] = 3418, + [3430] = 3418, + [3431] = 3413, + [3432] = 3406, [3433] = 3433, [3434] = 3434, - [3435] = 3435, + [3435] = 3412, [3436] = 3436, - [3437] = 1410, - [3438] = 1413, - [3439] = 3436, - [3440] = 3440, + [3437] = 3416, + [3438] = 3405, + [3439] = 3406, + [3440] = 3405, [3441] = 3441, - [3442] = 3442, - [3443] = 3443, - [3444] = 3435, - [3445] = 3445, - [3446] = 3446, - [3447] = 3443, - [3448] = 3448, - [3449] = 332, - [3450] = 3448, - [3451] = 3435, - [3452] = 3443, - [3453] = 3436, - [3454] = 3446, - [3455] = 3440, - [3456] = 3441, - [3457] = 3442, - [3458] = 3436, - [3459] = 3436, - [3460] = 244, - [3461] = 3440, - [3462] = 3446, - [3463] = 3443, - [3464] = 3435, - [3465] = 3448, - [3466] = 3441, - [3467] = 3442, - [3468] = 1416, - [3469] = 3442, - [3470] = 3440, - [3471] = 3441, - [3472] = 3440, - [3473] = 3436, - [3474] = 3441, - [3475] = 3442, - [3476] = 3448, - [3477] = 3477, - [3478] = 3435, - [3479] = 3443, - [3480] = 3446, - [3481] = 3481, - [3482] = 3482, - [3483] = 1405, - [3484] = 3448, + [3442] = 3404, + [3443] = 3406, + [3444] = 3444, + [3445] = 3404, + [3446] = 3412, + [3447] = 3404, + [3448] = 3412, + [3449] = 3402, + [3450] = 3406, + [3451] = 3405, + [3452] = 3404, + [3453] = 3405, + [3454] = 3406, + [3455] = 3402, + [3456] = 3416, + [3457] = 3404, + [3458] = 3406, + [3459] = 3405, + [3460] = 3416, + [3461] = 3461, + [3462] = 3412, + [3463] = 3417, + [3464] = 3418, + [3465] = 3416, + [3466] = 3417, + [3467] = 3418, + [3468] = 3404, + [3469] = 3417, + [3470] = 3418, + [3471] = 3405, + [3472] = 3413, + [3473] = 3406, + [3474] = 3474, + [3475] = 3412, + [3476] = 3418, + [3477] = 3413, + [3478] = 3478, + [3479] = 3479, + [3480] = 3480, + [3481] = 3412, + [3482] = 3417, + [3483] = 3483, + [3484] = 3484, [3485] = 3485, - [3486] = 3443, - [3487] = 3446, - [3488] = 3435, - [3489] = 3489, - [3490] = 3446, - [3491] = 3442, - [3492] = 3448, - [3493] = 3443, - [3494] = 3436, - [3495] = 3440, - [3496] = 3441, - [3497] = 3435, - [3498] = 3441, - [3499] = 3440, - [3500] = 3436, - [3501] = 3442, - [3502] = 3448, - [3503] = 3442, - [3504] = 3446, - [3505] = 3442, - [3506] = 3441, - [3507] = 3440, - [3508] = 3446, - [3509] = 3443, - [3510] = 3448, - [3511] = 1457, - [3512] = 3435, - [3513] = 3443, - [3514] = 3435, - [3515] = 3448, - [3516] = 3448, - [3517] = 3435, - [3518] = 3443, - [3519] = 3446, - [3520] = 3446, - [3521] = 3448, - [3522] = 3441, - [3523] = 3440, - [3524] = 1456, - [3525] = 3436, - [3526] = 3440, - [3527] = 3441, - [3528] = 3442, - [3529] = 3448, - [3530] = 3435, - [3531] = 3443, - [3532] = 3442, - [3533] = 3441, - [3534] = 3440, - [3535] = 3446, - [3536] = 3436, - [3537] = 3436, - [3538] = 3436, + [3486] = 3486, + [3487] = 3416, + [3488] = 3417, + [3489] = 3418, + [3490] = 3413, + [3491] = 3406, + [3492] = 3492, + [3493] = 3493, + [3494] = 3413, + [3495] = 3402, + [3496] = 3412, + [3497] = 3497, + [3498] = 3498, + [3499] = 3417, + [3500] = 3416, + [3501] = 3413, + [3502] = 3413, + [3503] = 3412, + [3504] = 3418, + [3505] = 3404, + [3506] = 3418, + [3507] = 3507, + [3508] = 3417, + [3509] = 3416, + [3510] = 3417, + [3511] = 3404, + [3512] = 3416, + [3513] = 3513, + [3514] = 3412, + [3515] = 3413, + [3516] = 3418, + [3517] = 3417, + [3518] = 3416, + [3519] = 3404, + [3520] = 3404, + [3521] = 3405, + [3522] = 3406, + [3523] = 3402, + [3524] = 3412, + [3525] = 3405, + [3526] = 3405, + [3527] = 3402, + [3528] = 3405, + [3529] = 3412, + [3530] = 3402, + [3531] = 3406, + [3532] = 1408, + [3533] = 1474, + [3534] = 3534, + [3535] = 3535, + [3536] = 3536, + [3537] = 3537, + [3538] = 1413, [3539] = 3539, - [3540] = 3435, - [3541] = 3442, - [3542] = 3441, - [3543] = 3543, - [3544] = 3440, - [3545] = 3446, - [3546] = 3443, + [3540] = 3540, + [3541] = 362, + [3542] = 1467, + [3543] = 267, + [3544] = 1410, + [3545] = 3545, + [3546] = 1416, [3547] = 3547, [3548] = 3548, [3549] = 3549, @@ -6976,207 +6993,207 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3551] = 3551, [3552] = 3552, [3553] = 3553, - [3554] = 3548, + [3554] = 3550, [3555] = 3555, [3556] = 3556, [3557] = 3557, [3558] = 3558, [3559] = 3559, - [3560] = 1450, + [3560] = 411, [3561] = 3561, - [3562] = 3562, + [3562] = 1442, [3563] = 3563, [3564] = 3564, [3565] = 3565, [3566] = 3566, [3567] = 3567, - [3568] = 3568, + [3568] = 3563, [3569] = 3569, [3570] = 3570, [3571] = 3571, - [3572] = 318, + [3572] = 3572, [3573] = 3573, - [3574] = 3565, - [3575] = 3575, + [3574] = 3574, + [3575] = 3559, [3576] = 3576, [3577] = 3577, [3578] = 3578, [3579] = 3579, - [3580] = 3580, + [3580] = 3565, [3581] = 3581, - [3582] = 3580, + [3582] = 3582, [3583] = 3583, [3584] = 3584, - [3585] = 3585, + [3585] = 3564, [3586] = 3586, [3587] = 3587, [3588] = 3588, - [3589] = 3580, - [3590] = 3588, - [3591] = 3587, + [3589] = 3589, + [3590] = 3590, + [3591] = 3591, [3592] = 3592, [3593] = 3593, [3594] = 3594, - [3595] = 3595, - [3596] = 3587, - [3597] = 3588, - [3598] = 3584, - [3599] = 3599, - [3600] = 3600, + [3595] = 1506, + [3596] = 3589, + [3597] = 3589, + [3598] = 3591, + [3599] = 3588, + [3600] = 3588, [3601] = 3601, - [3602] = 3586, - [3603] = 3603, - [3604] = 3586, - [3605] = 3580, + [3602] = 3601, + [3603] = 3601, + [3604] = 3588, + [3605] = 3591, [3606] = 3606, - [3607] = 3595, + [3607] = 3601, [3608] = 3608, [3609] = 3609, - [3610] = 3608, - [3611] = 3611, - [3612] = 3612, + [3610] = 3610, + [3611] = 3588, + [3612] = 3589, [3613] = 3613, - [3614] = 3587, - [3615] = 3615, - [3616] = 3588, - [3617] = 1531, - [3618] = 3584, - [3619] = 3586, - [3620] = 3620, - [3621] = 3621, - [3622] = 3595, - [3623] = 1530, - [3624] = 3584, - [3625] = 1528, - [3626] = 1526, - [3627] = 3627, - [3628] = 3595, + [3614] = 3614, + [3615] = 3589, + [3616] = 3616, + [3617] = 3591, + [3618] = 3614, + [3619] = 3619, + [3620] = 3589, + [3621] = 3591, + [3622] = 3614, + [3623] = 3623, + [3624] = 3589, + [3625] = 3591, + [3626] = 3588, + [3627] = 3601, + [3628] = 3591, [3629] = 3588, - [3630] = 3580, - [3631] = 3608, - [3632] = 3632, - [3633] = 3580, - [3634] = 3608, - [3635] = 3608, - [3636] = 3636, - [3637] = 3595, - [3638] = 3595, - [3639] = 3620, - [3640] = 3586, - [3641] = 3584, - [3642] = 1486, + [3630] = 3601, + [3631] = 3631, + [3632] = 3601, + [3633] = 3633, + [3634] = 3591, + [3635] = 3635, + [3636] = 3588, + [3637] = 3637, + [3638] = 3638, + [3639] = 3591, + [3640] = 3640, + [3641] = 3591, + [3642] = 3642, [3643] = 3643, [3644] = 3644, - [3645] = 3608, + [3645] = 3645, [3646] = 3646, - [3647] = 3621, - [3648] = 1532, - [3649] = 1497, - [3650] = 3586, - [3651] = 3580, - [3652] = 3652, - [3653] = 1525, - [3654] = 3586, - [3655] = 1487, - [3656] = 3656, + [3647] = 3589, + [3648] = 3648, + [3649] = 3644, + [3650] = 3614, + [3651] = 3651, + [3652] = 3601, + [3653] = 3614, + [3654] = 3614, + [3655] = 3655, + [3656] = 3601, [3657] = 3588, - [3658] = 3587, + [3658] = 3658, [3659] = 3659, - [3660] = 3587, - [3661] = 3661, - [3662] = 3662, - [3663] = 3595, - [3664] = 3664, - [3665] = 3665, - [3666] = 3666, - [3667] = 3667, - [3668] = 1495, - [3669] = 3595, - [3670] = 3584, - [3671] = 1493, - [3672] = 1498, - [3673] = 3580, + [3660] = 3589, + [3661] = 3588, + [3662] = 3601, + [3663] = 3614, + [3664] = 3591, + [3665] = 3591, + [3666] = 3644, + [3667] = 3658, + [3668] = 3668, + [3669] = 3591, + [3670] = 3670, + [3671] = 3591, + [3672] = 3644, + [3673] = 3673, [3674] = 3674, - [3675] = 3595, + [3675] = 3675, [3676] = 3676, [3677] = 3677, - [3678] = 3586, - [3679] = 3584, - [3680] = 3667, - [3681] = 1508, + [3678] = 3658, + [3679] = 3679, + [3680] = 1487, + [3681] = 3614, [3682] = 3682, - [3683] = 3587, - [3684] = 1509, - [3685] = 3580, - [3686] = 3686, - [3687] = 3687, - [3688] = 1518, - [3689] = 3689, - [3690] = 3690, - [3691] = 3608, - [3692] = 3595, - [3693] = 3693, - [3694] = 1524, - [3695] = 3587, - [3696] = 3588, - [3697] = 3697, - [3698] = 3584, - [3699] = 3699, - [3700] = 3587, - [3701] = 3595, - [3702] = 1523, - [3703] = 3586, - [3704] = 3587, - [3705] = 3586, - [3706] = 3588, - [3707] = 3608, - [3708] = 3708, - [3709] = 3586, - [3710] = 3710, - [3711] = 3682, - [3712] = 3712, + [3683] = 3658, + [3684] = 3684, + [3685] = 1486, + [3686] = 1489, + [3687] = 1508, + [3688] = 3644, + [3689] = 3601, + [3690] = 3588, + [3691] = 3691, + [3692] = 1515, + [3693] = 3658, + [3694] = 3644, + [3695] = 3614, + [3696] = 1485, + [3697] = 3589, + [3698] = 3644, + [3699] = 3589, + [3700] = 3700, + [3701] = 3614, + [3702] = 3702, + [3703] = 3703, + [3704] = 1507, + [3705] = 1500, + [3706] = 3614, + [3707] = 3707, + [3708] = 3591, + [3709] = 3658, + [3710] = 3588, + [3711] = 3711, + [3712] = 3601, [3713] = 3713, - [3714] = 3580, - [3715] = 3595, - [3716] = 3716, - [3717] = 3608, - [3718] = 3595, - [3719] = 3584, - [3720] = 3608, - [3721] = 3721, - [3722] = 1522, - [3723] = 3586, - [3724] = 3724, - [3725] = 3586, - [3726] = 3588, - [3727] = 3608, - [3728] = 3588, + [3714] = 3658, + [3715] = 1483, + [3716] = 3589, + [3717] = 1514, + [3718] = 1567, + [3719] = 1557, + [3720] = 1541, + [3721] = 3644, + [3722] = 1540, + [3723] = 1533, + [3724] = 1491, + [3725] = 3644, + [3726] = 3658, + [3727] = 3727, + [3728] = 3728, [3729] = 3729, - [3730] = 3730, - [3731] = 3587, - [3732] = 3588, - [3733] = 3595, - [3734] = 3584, - [3735] = 3587, - [3736] = 3595, + [3730] = 3591, + [3731] = 3644, + [3732] = 1501, + [3733] = 3733, + [3734] = 3734, + [3735] = 3735, + [3736] = 3736, [3737] = 3737, - [3738] = 3738, - [3739] = 3739, - [3740] = 3584, - [3741] = 3587, + [3738] = 3614, + [3739] = 3658, + [3740] = 3658, + [3741] = 3658, [3742] = 3742, - [3743] = 3580, + [3743] = 3589, [3744] = 3744, - [3745] = 3588, - [3746] = 3746, + [3745] = 3745, + [3746] = 3644, [3747] = 3747, - [3748] = 3595, - [3749] = 3608, - [3750] = 3750, + [3748] = 3748, + [3749] = 3644, + [3750] = 3601, [3751] = 3751, - [3752] = 3584, + [3752] = 3658, [3753] = 3588, - [3754] = 3580, + [3754] = 3754, [3755] = 3755, [3756] = 3756, [3757] = 3757, @@ -7184,895 +7201,879 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3759] = 3759, [3760] = 3760, [3761] = 3761, - [3762] = 3757, + [3762] = 3762, [3763] = 3763, - [3764] = 1410, + [3764] = 3761, [3765] = 3765, - [3766] = 3760, + [3766] = 3766, [3767] = 3767, - [3768] = 3767, - [3769] = 3769, - [3770] = 3765, - [3771] = 3757, + [3768] = 3768, + [3769] = 3755, + [3770] = 3770, + [3771] = 3771, [3772] = 3772, [3773] = 3773, - [3774] = 3763, + [3774] = 3774, [3775] = 3775, [3776] = 3776, [3777] = 3777, - [3778] = 1413, - [3779] = 3779, - [3780] = 3765, - [3781] = 3765, - [3782] = 3760, - [3783] = 3767, - [3784] = 3784, - [3785] = 3785, - [3786] = 3786, - [3787] = 3785, - [3788] = 3758, + [3778] = 3778, + [3779] = 3776, + [3780] = 3777, + [3781] = 3778, + [3782] = 3782, + [3783] = 3755, + [3784] = 3767, + [3785] = 3766, + [3786] = 3772, + [3787] = 1413, + [3788] = 3788, [3789] = 3789, - [3790] = 3758, - [3791] = 3784, - [3792] = 3784, - [3793] = 3759, + [3790] = 3790, + [3791] = 3791, + [3792] = 1408, + [3793] = 3772, [3794] = 3794, - [3795] = 3795, - [3796] = 3759, - [3797] = 3797, - [3798] = 3795, - [3799] = 3797, - [3800] = 3767, - [3801] = 3794, - [3802] = 1405, - [3803] = 3760, - [3804] = 3765, - [3805] = 3759, - [3806] = 3806, - [3807] = 3807, - [3808] = 3759, - [3809] = 1410, - [3810] = 3810, - [3811] = 3811, - [3812] = 3759, - [3813] = 1413, - [3814] = 3760, - [3815] = 3784, - [3816] = 3816, - [3817] = 3817, - [3818] = 3806, - [3819] = 3767, - [3820] = 3820, - [3821] = 3821, + [3795] = 3765, + [3796] = 3763, + [3797] = 3765, + [3798] = 3798, + [3799] = 3799, + [3800] = 3763, + [3801] = 3801, + [3802] = 3766, + [3803] = 3767, + [3804] = 3804, + [3805] = 1413, + [3806] = 3761, + [3807] = 2131, + [3808] = 3761, + [3809] = 3760, + [3810] = 3759, + [3811] = 3777, + [3812] = 3772, + [3813] = 3776, + [3814] = 3814, + [3815] = 3755, + [3816] = 3765, + [3817] = 3777, + [3818] = 3778, + [3819] = 3819, + [3820] = 3755, + [3821] = 3760, [3822] = 3822, - [3823] = 3794, - [3824] = 3795, - [3825] = 3797, - [3826] = 3758, - [3827] = 3806, - [3828] = 3763, - [3829] = 3757, - [3830] = 3795, - [3831] = 3794, - [3832] = 3795, - [3833] = 3797, - [3834] = 3794, - [3835] = 3784, - [3836] = 3758, - [3837] = 3797, - [3838] = 3785, - [3839] = 3794, - [3840] = 3795, - [3841] = 3841, - [3842] = 3806, - [3843] = 3784, - [3844] = 3758, - [3845] = 3845, - [3846] = 3846, - [3847] = 3847, + [3823] = 3759, + [3824] = 3763, + [3825] = 1416, + [3826] = 3755, + [3827] = 3755, + [3828] = 3759, + [3829] = 3755, + [3830] = 3762, + [3831] = 3772, + [3832] = 3832, + [3833] = 3833, + [3834] = 3772, + [3835] = 1408, + [3836] = 3777, + [3837] = 3778, + [3838] = 3761, + [3839] = 3760, + [3840] = 3772, + [3841] = 3763, + [3842] = 3759, + [3843] = 3762, + [3844] = 3760, + [3845] = 3763, + [3846] = 3762, + [3847] = 3760, [3848] = 3848, - [3849] = 1405, - [3850] = 3785, - [3851] = 3851, - [3852] = 3757, - [3853] = 3763, - [3854] = 3854, - [3855] = 3855, - [3856] = 3856, + [3849] = 3761, + [3850] = 3850, + [3851] = 3772, + [3852] = 3852, + [3853] = 3853, + [3854] = 3778, + [3855] = 3777, + [3856] = 3772, [3857] = 3759, - [3858] = 3858, - [3859] = 3859, - [3860] = 3806, - [3861] = 3861, - [3862] = 3862, - [3863] = 3765, - [3864] = 3760, - [3865] = 3767, - [3866] = 3806, - [3867] = 3867, + [3858] = 3760, + [3859] = 3761, + [3860] = 1410, + [3861] = 3776, + [3862] = 1416, + [3863] = 3766, + [3864] = 3761, + [3865] = 3865, + [3866] = 3273, + [3867] = 3765, [3868] = 3868, - [3869] = 3869, - [3870] = 3767, - [3871] = 1413, + [3869] = 1410, + [3870] = 3870, + [3871] = 3278, [3872] = 3872, - [3873] = 3797, - [3874] = 3767, - [3875] = 3760, - [3876] = 3765, - [3877] = 3785, - [3878] = 3763, - [3879] = 3785, - [3880] = 3880, + [3873] = 3762, + [3874] = 3874, + [3875] = 3875, + [3876] = 3767, + [3877] = 3776, + [3878] = 3762, + [3879] = 3755, + [3880] = 1408, [3881] = 3759, - [3882] = 3806, - [3883] = 3785, - [3884] = 3757, - [3885] = 3885, - [3886] = 3763, - [3887] = 3763, - [3888] = 3758, - [3889] = 3784, - [3890] = 3890, - [3891] = 1416, - [3892] = 3757, - [3893] = 3763, - [3894] = 3757, - [3895] = 3797, - [3896] = 3784, - [3897] = 3797, - [3898] = 3758, - [3899] = 3757, - [3900] = 3763, - [3901] = 3901, - [3902] = 3795, - [3903] = 3785, - [3904] = 3904, - [3905] = 1416, - [3906] = 3765, - [3907] = 3907, - [3908] = 3785, - [3909] = 3909, - [3910] = 3767, - [3911] = 3806, - [3912] = 3912, - [3913] = 3794, - [3914] = 3760, - [3915] = 3806, - [3916] = 3767, - [3917] = 3760, - [3918] = 3765, - [3919] = 3273, - [3920] = 3794, - [3921] = 3795, - [3922] = 3765, - [3923] = 3760, - [3924] = 3767, - [3925] = 3794, - [3926] = 3795, - [3927] = 3763, - [3928] = 3556, - [3929] = 3557, - [3930] = 3757, - [3931] = 3763, - [3932] = 3760, - [3933] = 3784, - [3934] = 3558, - [3935] = 3797, - [3936] = 3559, - [3937] = 3806, - [3938] = 3274, - [3939] = 3767, - [3940] = 3759, - [3941] = 3795, - [3942] = 3758, - [3943] = 3795, - [3944] = 3944, - [3945] = 3794, - [3946] = 3794, - [3947] = 3806, - [3948] = 1410, - [3949] = 3757, - [3950] = 3763, - [3951] = 3757, - [3952] = 3952, - [3953] = 3797, - [3954] = 3954, - [3955] = 3765, - [3956] = 3784, - [3957] = 2136, - [3958] = 3758, + [3882] = 3767, + [3883] = 3766, + [3884] = 3777, + [3885] = 3763, + [3886] = 3886, + [3887] = 1413, + [3888] = 3778, + [3889] = 3889, + [3890] = 3760, + [3891] = 3891, + [3892] = 3765, + [3893] = 3765, + [3894] = 3894, + [3895] = 3895, + [3896] = 3766, + [3897] = 3767, + [3898] = 3759, + [3899] = 3776, + [3900] = 3900, + [3901] = 3767, + [3902] = 3777, + [3903] = 3766, + [3904] = 3778, + [3905] = 3767, + [3906] = 3763, + [3907] = 3762, + [3908] = 3759, + [3909] = 3772, + [3910] = 3776, + [3911] = 3760, + [3912] = 3755, + [3913] = 3761, + [3914] = 3777, + [3915] = 3778, + [3916] = 3762, + [3917] = 3917, + [3918] = 3767, + [3919] = 3766, + [3920] = 3778, + [3921] = 3777, + [3922] = 3556, + [3923] = 3555, + [3924] = 3766, + [3925] = 3772, + [3926] = 3765, + [3927] = 3927, + [3928] = 3553, + [3929] = 1410, + [3930] = 3552, + [3931] = 3755, + [3932] = 3765, + [3933] = 3761, + [3934] = 3760, + [3935] = 3772, + [3936] = 3759, + [3937] = 3777, + [3938] = 3778, + [3939] = 3772, + [3940] = 3776, + [3941] = 3765, + [3942] = 3763, + [3943] = 3762, + [3944] = 3766, + [3945] = 3762, + [3946] = 3763, + [3947] = 3767, + [3948] = 3776, + [3949] = 3761, + [3950] = 3760, + [3951] = 3759, + [3952] = 3763, + [3953] = 3763, + [3954] = 3759, + [3955] = 3760, + [3956] = 3761, + [3957] = 3762, + [3958] = 3755, [3959] = 3759, - [3960] = 3765, - [3961] = 3760, - [3962] = 3767, - [3963] = 3760, - [3964] = 3785, - [3965] = 3965, - [3966] = 3795, - [3967] = 3797, - [3968] = 3765, - [3969] = 3759, - [3970] = 3784, - [3971] = 3767, - [3972] = 3760, - [3973] = 3765, - [3974] = 3797, - [3975] = 3797, - [3976] = 3758, - [3977] = 3977, - [3978] = 3759, - [3979] = 3759, - [3980] = 3785, - [3981] = 3785, - [3982] = 3982, - [3983] = 3983, - [3984] = 3794, - [3985] = 3758, - [3986] = 3784, - [3987] = 3784, - [3988] = 3758, - [3989] = 3785, - [3990] = 3758, - [3991] = 3991, - [3992] = 3806, - [3993] = 1405, - [3994] = 3797, - [3995] = 3785, - [3996] = 3759, + [3960] = 3760, + [3961] = 3761, + [3962] = 3755, + [3963] = 3765, + [3964] = 3765, + [3965] = 3776, + [3966] = 3766, + [3967] = 3967, + [3968] = 3968, + [3969] = 3767, + [3970] = 3776, + [3971] = 3776, + [3972] = 3761, + [3973] = 3760, + [3974] = 3776, + [3975] = 3759, + [3976] = 3767, + [3977] = 3766, + [3978] = 3762, + [3979] = 3767, + [3980] = 3766, + [3981] = 3981, + [3982] = 3766, + [3983] = 3767, + [3984] = 3984, + [3985] = 3985, + [3986] = 3765, + [3987] = 3987, + [3988] = 3988, + [3989] = 3778, + [3990] = 3765, + [3991] = 3777, + [3992] = 3776, + [3993] = 3993, + [3994] = 3778, + [3995] = 3995, + [3996] = 3755, [3997] = 3997, - [3998] = 3806, - [3999] = 3784, + [3998] = 3998, + [3999] = 3999, [4000] = 4000, [4001] = 4001, - [4002] = 4002, - [4003] = 4002, - [4004] = 1486, - [4005] = 1487, + [4002] = 3553, + [4003] = 3999, + [4004] = 4004, + [4005] = 3997, [4006] = 4006, - [4007] = 4002, - [4008] = 4008, + [4007] = 3997, + [4008] = 3997, [4009] = 4009, [4010] = 4010, - [4011] = 4011, - [4012] = 4012, - [4013] = 4006, - [4014] = 4011, + [4011] = 3553, + [4012] = 4001, + [4013] = 4013, + [4014] = 3552, [4015] = 4015, - [4016] = 4012, + [4016] = 4016, [4017] = 4017, [4018] = 4018, - [4019] = 4012, - [4020] = 4020, - [4021] = 4015, - [4022] = 4012, + [4019] = 4019, + [4020] = 4004, + [4021] = 4021, + [4022] = 4010, [4023] = 4023, - [4024] = 4024, - [4025] = 4025, - [4026] = 4001, - [4027] = 4012, - [4028] = 4012, - [4029] = 4029, - [4030] = 4030, - [4031] = 4025, - [4032] = 4012, - [4033] = 4033, - [4034] = 4010, - [4035] = 4010, - [4036] = 4012, - [4037] = 4037, - [4038] = 4011, - [4039] = 4039, - [4040] = 4012, - [4041] = 2165, - [4042] = 4012, + [4024] = 4023, + [4025] = 4019, + [4026] = 4026, + [4027] = 4027, + [4028] = 4019, + [4029] = 4016, + [4030] = 4017, + [4031] = 4019, + [4032] = 4019, + [4033] = 3556, + [4034] = 4034, + [4035] = 4019, + [4036] = 4036, + [4037] = 4019, + [4038] = 4015, + [4039] = 3555, + [4040] = 4040, + [4041] = 4019, + [4042] = 4042, [4043] = 4043, - [4044] = 4044, - [4045] = 4012, - [4046] = 4046, - [4047] = 1497, - [4048] = 4048, - [4049] = 4039, - [4050] = 4050, - [4051] = 4006, - [4052] = 4000, - [4053] = 4053, - [4054] = 3556, - [4055] = 3557, - [4056] = 4018, - [4057] = 3558, - [4058] = 3559, - [4059] = 4059, + [4044] = 4043, + [4045] = 4019, + [4046] = 4043, + [4047] = 4001, + [4048] = 4019, + [4049] = 4049, + [4050] = 4018, + [4051] = 4051, + [4052] = 3553, + [4053] = 4043, + [4054] = 4019, + [4055] = 3997, + [4056] = 4056, + [4057] = 4017, + [4058] = 4016, + [4059] = 3552, [4060] = 4015, [4061] = 4061, - [4062] = 4024, - [4063] = 4063, - [4064] = 4001, - [4065] = 4001, - [4066] = 4059, - [4067] = 4046, - [4068] = 4024, - [4069] = 4011, - [4070] = 4053, - [4071] = 4050, - [4072] = 4072, - [4073] = 4018, - [4074] = 4010, - [4075] = 4015, - [4076] = 4000, - [4077] = 4050, - [4078] = 4000, - [4079] = 4018, - [4080] = 4046, - [4081] = 4081, - [4082] = 4050, - [4083] = 4010, - [4084] = 4025, - [4085] = 4039, - [4086] = 4086, - [4087] = 4006, - [4088] = 4000, - [4089] = 4089, - [4090] = 4011, - [4091] = 4002, - [4092] = 4039, - [4093] = 4053, - [4094] = 4006, - [4095] = 4012, - [4096] = 4025, - [4097] = 4059, - [4098] = 4002, - [4099] = 4010, - [4100] = 4043, - [4101] = 4044, - [4102] = 4046, - [4103] = 4025, - [4104] = 4002, - [4105] = 4072, - [4106] = 3559, - [4107] = 4107, - [4108] = 4006, - [4109] = 4025, - [4110] = 3556, - [4111] = 3556, - [4112] = 3557, + [4062] = 4010, + [4063] = 4009, + [4064] = 4064, + [4065] = 4006, + [4066] = 4004, + [4067] = 4001, + [4068] = 3556, + [4069] = 4017, + [4070] = 4016, + [4071] = 3555, + [4072] = 4010, + [4073] = 4004, + [4074] = 4018, + [4075] = 4018, + [4076] = 4076, + [4077] = 4010, + [4078] = 4015, + [4079] = 4023, + [4080] = 4009, + [4081] = 3552, + [4082] = 3553, + [4083] = 4004, + [4084] = 4006, + [4085] = 3999, + [4086] = 4001, + [4087] = 4000, + [4088] = 3555, + [4089] = 3556, + [4090] = 3998, + [4091] = 3997, + [4092] = 4006, + [4093] = 4010, + [4094] = 3998, + [4095] = 4001, + [4096] = 4018, + [4097] = 3999, + [4098] = 4000, + [4099] = 4000, + [4100] = 3999, + [4101] = 4101, + [4102] = 3998, + [4103] = 4015, + [4104] = 4016, + [4105] = 4023, + [4106] = 4017, + [4107] = 3997, + [4108] = 4108, + [4109] = 3556, + [4110] = 3555, + [4111] = 4001, + [4112] = 4001, [4113] = 4113, - [4114] = 3557, - [4115] = 4039, - [4116] = 4018, - [4117] = 4018, - [4118] = 4118, - [4119] = 3558, - [4120] = 4120, - [4121] = 4011, + [4114] = 4114, + [4115] = 4115, + [4116] = 4043, + [4117] = 4023, + [4118] = 4019, + [4119] = 4119, + [4120] = 3553, + [4121] = 3552, [4122] = 4122, - [4123] = 4011, - [4124] = 3556, - [4125] = 4046, - [4126] = 4050, - [4127] = 3559, - [4128] = 4010, - [4129] = 3559, - [4130] = 4001, - [4131] = 4000, - [4132] = 4132, - [4133] = 4053, - [4134] = 4024, - [4135] = 3557, - [4136] = 4015, - [4137] = 4059, - [4138] = 4138, - [4139] = 4139, - [4140] = 4050, - [4141] = 3556, - [4142] = 3559, - [4143] = 4015, - [4144] = 4024, - [4145] = 4024, - [4146] = 3557, - [4147] = 4053, - [4148] = 4018, - [4149] = 4001, - [4150] = 4150, - [4151] = 3558, - [4152] = 4001, - [4153] = 4018, - [4154] = 4024, - [4155] = 3557, - [4156] = 3556, - [4157] = 3558, - [4158] = 4158, - [4159] = 4018, - [4160] = 4011, - [4161] = 4161, + [4123] = 3999, + [4124] = 4015, + [4125] = 4018, + [4126] = 4018, + [4127] = 4004, + [4128] = 4128, + [4129] = 4129, + [4130] = 4130, + [4131] = 4131, + [4132] = 4023, + [4133] = 4133, + [4134] = 4043, + [4135] = 4043, + [4136] = 4136, + [4137] = 4137, + [4138] = 4006, + [4139] = 4017, + [4140] = 4017, + [4141] = 4016, + [4142] = 4142, + [4143] = 3997, + [4144] = 4144, + [4145] = 4145, + [4146] = 4146, + [4147] = 4009, + [4148] = 4010, + [4149] = 4009, + [4150] = 4006, + [4151] = 4010, + [4152] = 3999, + [4153] = 4016, + [4154] = 4004, + [4155] = 4018, + [4156] = 4016, + [4157] = 4017, + [4158] = 4000, + [4159] = 4015, + [4160] = 4023, + [4161] = 4019, [4162] = 4001, - [4163] = 4015, - [4164] = 4164, - [4165] = 3559, - [4166] = 3558, - [4167] = 4018, - [4168] = 3557, - [4169] = 3556, - [4170] = 3559, + [4163] = 4163, + [4164] = 3998, + [4165] = 4043, + [4166] = 4010, + [4167] = 4009, + [4168] = 3555, + [4169] = 4169, + [4170] = 4170, [4171] = 4171, - [4172] = 4010, - [4173] = 4011, + [4172] = 4172, + [4173] = 3997, [4174] = 4174, - [4175] = 4010, - [4176] = 4059, - [4177] = 4039, - [4178] = 4015, - [4179] = 4179, - [4180] = 4025, - [4181] = 3558, - [4182] = 4025, - [4183] = 4012, + [4175] = 4175, + [4176] = 4176, + [4177] = 4177, + [4178] = 4023, + [4179] = 4006, + [4180] = 4023, + [4181] = 4000, + [4182] = 3998, + [4183] = 4183, [4184] = 4184, - [4185] = 4024, + [4185] = 4004, [4186] = 4186, - [4187] = 4059, - [4188] = 4006, - [4189] = 4053, - [4190] = 4000, - [4191] = 4191, - [4192] = 4192, - [4193] = 4193, - [4194] = 4006, - [4195] = 3559, - [4196] = 4196, - [4197] = 4197, - [4198] = 4059, - [4199] = 4053, - [4200] = 4015, - [4201] = 4000, - [4202] = 4002, + [4187] = 3552, + [4188] = 4188, + [4189] = 4189, + [4190] = 4190, + [4191] = 3998, + [4192] = 4018, + [4193] = 3998, + [4194] = 4194, + [4195] = 4015, + [4196] = 3552, + [4197] = 4009, + [4198] = 3553, + [4199] = 4043, + [4200] = 4000, + [4201] = 4023, + [4202] = 3999, [4203] = 4203, - [4204] = 4050, - [4205] = 4205, - [4206] = 4002, - [4207] = 4207, - [4208] = 4046, - [4209] = 4059, - [4210] = 4053, - [4211] = 4000, - [4212] = 4212, - [4213] = 4024, - [4214] = 4039, - [4215] = 4215, - [4216] = 4001, - [4217] = 4001, - [4218] = 4218, - [4219] = 4219, - [4220] = 4046, - [4221] = 4050, - [4222] = 4039, - [4223] = 4046, + [4204] = 4001, + [4205] = 4000, + [4206] = 3555, + [4207] = 4017, + [4208] = 3556, + [4209] = 4016, + [4210] = 4210, + [4211] = 3999, + [4212] = 4010, + [4213] = 4009, + [4214] = 3999, + [4215] = 3997, + [4216] = 4216, + [4217] = 3997, + [4218] = 4043, + [4219] = 3997, + [4220] = 3556, + [4221] = 4017, + [4222] = 4016, + [4223] = 4006, [4224] = 4224, - [4225] = 4024, - [4226] = 4039, - [4227] = 4046, - [4228] = 4050, - [4229] = 4164, - [4230] = 4015, - [4231] = 4231, - [4232] = 4002, - [4233] = 4171, - [4234] = 4174, - [4235] = 4046, - [4236] = 4050, - [4237] = 4237, - [4238] = 4238, - [4239] = 4239, - [4240] = 4240, - [4241] = 4241, - [4242] = 4242, - [4243] = 3558, - [4244] = 4018, - [4245] = 4039, - [4246] = 4006, - [4247] = 4002, - [4248] = 4039, - [4249] = 3557, - [4250] = 4000, - [4251] = 4053, - [4252] = 3556, - [4253] = 4253, + [4225] = 4144, + [4226] = 4010, + [4227] = 4009, + [4228] = 4006, + [4229] = 3999, + [4230] = 4230, + [4231] = 4170, + [4232] = 4128, + [4233] = 3556, + [4234] = 3556, + [4235] = 3555, + [4236] = 4004, + [4237] = 4018, + [4238] = 4015, + [4239] = 3552, + [4240] = 4001, + [4241] = 3553, + [4242] = 4001, + [4243] = 4004, + [4244] = 3555, + [4245] = 3556, + [4246] = 3555, + [4247] = 3553, + [4248] = 3997, + [4249] = 4015, + [4250] = 4001, + [4251] = 3998, + [4252] = 4146, + [4253] = 4000, [4254] = 4254, - [4255] = 4025, - [4256] = 4059, - [4257] = 4257, - [4258] = 4010, - [4259] = 3558, - [4260] = 4000, - [4261] = 4059, - [4262] = 4046, - [4263] = 4050, - [4264] = 4264, - [4265] = 4265, - [4266] = 4011, - [4267] = 4053, - [4268] = 4000, - [4269] = 4053, - [4270] = 3556, - [4271] = 4059, - [4272] = 3557, - [4273] = 4018, - [4274] = 3558, - [4275] = 4053, - [4276] = 4001, - [4277] = 4001, - [4278] = 4024, - [4279] = 4024, - [4280] = 4280, - [4281] = 3559, - [4282] = 4015, - [4283] = 4015, - [4284] = 4015, - [4285] = 3559, - [4286] = 4000, - [4287] = 4024, - [4288] = 4288, - [4289] = 4001, - [4290] = 3558, - [4291] = 4002, - [4292] = 4018, - [4293] = 4018, - [4294] = 3557, - [4295] = 3556, - [4296] = 4059, - [4297] = 4011, - [4298] = 4000, - [4299] = 4299, - [4300] = 4011, - [4301] = 4010, - [4302] = 4010, - [4303] = 4025, - [4304] = 4050, - [4305] = 4046, - [4306] = 4306, - [4307] = 4011, - [4308] = 4006, - [4309] = 4039, - [4310] = 4025, + [4255] = 3553, + [4256] = 3999, + [4257] = 3552, + [4258] = 4015, + [4259] = 4015, + [4260] = 3999, + [4261] = 4000, + [4262] = 4004, + [4263] = 4230, + [4264] = 3552, + [4265] = 4018, + [4266] = 4000, + [4267] = 3553, + [4268] = 3552, + [4269] = 4001, + [4270] = 4004, + [4271] = 4015, + [4272] = 3555, + [4273] = 3556, + [4274] = 1486, + [4275] = 4018, + [4276] = 1487, + [4277] = 4277, + [4278] = 4278, + [4279] = 4006, + [4280] = 4006, + [4281] = 4281, + [4282] = 4004, + [4283] = 4283, + [4284] = 4009, + [4285] = 4285, + [4286] = 2219, + [4287] = 4009, + [4288] = 4010, + [4289] = 1501, + [4290] = 3998, + [4291] = 4000, + [4292] = 4016, + [4293] = 4293, + [4294] = 4017, + [4295] = 4295, + [4296] = 4006, + [4297] = 4043, + [4298] = 4018, + [4299] = 3998, + [4300] = 4300, + [4301] = 4301, + [4302] = 4009, + [4303] = 4010, + [4304] = 4304, + [4305] = 4023, + [4306] = 4016, + [4307] = 4017, + [4308] = 4043, + [4309] = 4309, + [4310] = 3998, [4311] = 4311, - [4312] = 4006, - [4313] = 4313, - [4314] = 4025, - [4315] = 4010, - [4316] = 4006, - [4317] = 4002, - [4318] = 4318, + [4312] = 4023, + [4313] = 4010, + [4314] = 4314, + [4315] = 4315, + [4316] = 4316, + [4317] = 4317, + [4318] = 4317, [4319] = 4319, [4320] = 4320, [4321] = 4321, [4322] = 4322, - [4323] = 4323, + [4323] = 4316, [4324] = 4324, [4325] = 4325, - [4326] = 4326, - [4327] = 4322, - [4328] = 4328, - [4329] = 4329, + [4326] = 4315, + [4327] = 4327, + [4328] = 4321, + [4329] = 4319, [4330] = 4330, [4331] = 4331, - [4332] = 4332, + [4332] = 4324, [4333] = 4333, [4334] = 4334, - [4335] = 4320, - [4336] = 4329, - [4337] = 4326, + [4335] = 4335, + [4336] = 4336, + [4337] = 4337, [4338] = 4338, [4339] = 4339, - [4340] = 4340, - [4341] = 4333, + [4340] = 4320, + [4341] = 4327, [4342] = 4342, [4343] = 4343, - [4344] = 4332, - [4345] = 4345, - [4346] = 4331, - [4347] = 4347, - [4348] = 4348, - [4349] = 4328, - [4350] = 4326, - [4351] = 4328, - [4352] = 4331, - [4353] = 4332, - [4354] = 4333, + [4344] = 4316, + [4345] = 4321, + [4346] = 4327, + [4347] = 4315, + [4348] = 4327, + [4349] = 4321, + [4350] = 4350, + [4351] = 4315, + [4352] = 4352, + [4353] = 4322, + [4354] = 4354, [4355] = 4355, - [4356] = 4356, + [4356] = 4316, [4357] = 4357, - [4358] = 4320, - [4359] = 4359, + [4358] = 4338, + [4359] = 4339, [4360] = 4360, - [4361] = 4361, + [4361] = 4331, [4362] = 4362, [4363] = 4363, - [4364] = 4363, - [4365] = 4365, - [4366] = 4365, - [4367] = 4367, - [4368] = 4321, - [4369] = 4369, - [4370] = 4328, - [4371] = 4333, - [4372] = 4332, - [4373] = 4331, - [4374] = 4332, - [4375] = 4333, - [4376] = 4331, - [4377] = 4329, - [4378] = 4328, - [4379] = 4323, - [4380] = 4321, - [4381] = 4321, - [4382] = 4382, - [4383] = 4383, - [4384] = 4363, - [4385] = 4326, - [4386] = 4320, - [4387] = 4325, - [4388] = 4322, - [4389] = 4324, - [4390] = 4363, - [4391] = 4328, - [4392] = 4365, + [4364] = 4334, + [4365] = 4316, + [4366] = 2258, + [4367] = 4337, + [4368] = 4315, + [4369] = 4327, + [4370] = 4321, + [4371] = 4321, + [4372] = 4327, + [4373] = 4315, + [4374] = 4374, + [4375] = 4316, + [4376] = 4362, + [4377] = 4377, + [4378] = 2266, + [4379] = 4317, + [4380] = 4380, + [4381] = 4381, + [4382] = 4321, + [4383] = 4327, + [4384] = 4384, + [4385] = 4385, + [4386] = 4316, + [4387] = 4387, + [4388] = 4315, + [4389] = 4315, + [4390] = 4327, + [4391] = 4321, + [4392] = 4316, [4393] = 4393, - [4394] = 4331, - [4395] = 4332, - [4396] = 4333, - [4397] = 4330, - [4398] = 4333, - [4399] = 4332, - [4400] = 4331, - [4401] = 4357, - [4402] = 4363, - [4403] = 4328, - [4404] = 4347, - [4405] = 4405, - [4406] = 4406, - [4407] = 4343, - [4408] = 4408, + [4394] = 4381, + [4395] = 4377, + [4396] = 4396, + [4397] = 4355, + [4398] = 4398, + [4399] = 4399, + [4400] = 4362, + [4401] = 4401, + [4402] = 4362, + [4403] = 4377, + [4404] = 4377, + [4405] = 4339, + [4406] = 4338, + [4407] = 4316, + [4408] = 4377, [4409] = 4409, - [4410] = 4329, - [4411] = 4343, - [4412] = 4328, - [4413] = 4413, - [4414] = 4323, - [4415] = 4331, - [4416] = 4332, - [4417] = 4333, - [4418] = 4418, - [4419] = 4326, - [4420] = 4324, - [4421] = 4320, - [4422] = 4365, - [4423] = 4330, - [4424] = 4322, - [4425] = 4347, + [4410] = 4315, + [4411] = 4327, + [4412] = 4321, + [4413] = 4322, + [4414] = 4320, + [4415] = 4319, + [4416] = 4317, + [4417] = 4339, + [4418] = 4374, + [4419] = 4324, + [4420] = 4338, + [4421] = 4331, + [4422] = 4334, + [4423] = 4316, + [4424] = 4337, + [4425] = 4355, [4426] = 4426, [4427] = 4427, - [4428] = 4323, - [4429] = 4325, - [4430] = 4324, - [4431] = 4357, - [4432] = 4322, - [4433] = 4328, - [4434] = 4330, - [4435] = 4343, - [4436] = 4331, - [4437] = 4332, - [4438] = 4333, - [4439] = 4325, - [4440] = 4325, - [4441] = 4357, - [4442] = 4347, + [4428] = 4316, + [4429] = 4322, + [4430] = 4430, + [4431] = 4315, + [4432] = 4327, + [4433] = 4321, + [4434] = 4320, + [4435] = 4355, + [4436] = 4319, + [4437] = 4317, + [4438] = 4337, + [4439] = 4439, + [4440] = 4374, + [4441] = 4334, + [4442] = 4324, [4443] = 4443, - [4444] = 4357, + [4444] = 4444, [4445] = 4445, - [4446] = 4347, - [4447] = 4365, - [4448] = 4347, - [4449] = 4449, - [4450] = 4322, - [4451] = 4330, - [4452] = 4452, - [4453] = 4321, - [4454] = 4328, - [4455] = 4343, - [4456] = 4343, - [4457] = 4331, - [4458] = 4332, - [4459] = 4333, - [4460] = 4321, - [4461] = 4324, - [4462] = 4330, - [4463] = 4347, - [4464] = 4333, - [4465] = 4322, - [4466] = 4332, - [4467] = 4357, - [4468] = 4331, - [4469] = 4325, - [4470] = 4323, - [4471] = 4328, - [4472] = 4324, - [4473] = 4331, - [4474] = 4332, - [4475] = 4333, - [4476] = 4323, - [4477] = 4365, - [4478] = 4320, - [4479] = 4328, - [4480] = 4333, - [4481] = 4326, - [4482] = 4365, + [4446] = 4331, + [4447] = 4355, + [4448] = 4448, + [4449] = 4316, + [4450] = 4324, + [4451] = 4374, + [4452] = 4315, + [4453] = 4327, + [4454] = 4321, + [4455] = 4362, + [4456] = 4456, + [4457] = 4339, + [4458] = 4321, + [4459] = 4327, + [4460] = 4315, + [4461] = 4461, + [4462] = 4331, + [4463] = 4463, + [4464] = 4319, + [4465] = 4320, + [4466] = 4316, + [4467] = 4334, + [4468] = 4315, + [4469] = 4327, + [4470] = 4321, + [4471] = 4337, + [4472] = 4316, + [4473] = 4377, + [4474] = 4374, + [4475] = 4321, + [4476] = 4377, + [4477] = 4477, + [4478] = 4478, + [4479] = 4322, + [4480] = 4427, + [4481] = 4337, + [4482] = 4482, [4483] = 4483, - [4484] = 4357, - [4485] = 4320, - [4486] = 4329, - [4487] = 4329, - [4488] = 4365, - [4489] = 4489, - [4490] = 4329, - [4491] = 4333, - [4492] = 4332, - [4493] = 4493, - [4494] = 4331, - [4495] = 4495, - [4496] = 4328, + [4484] = 4484, + [4485] = 4485, + [4486] = 4355, + [4487] = 4487, + [4488] = 4488, + [4489] = 4334, + [4490] = 4338, + [4491] = 4426, + [4492] = 4337, + [4493] = 4334, + [4494] = 4494, + [4495] = 4339, + [4496] = 4331, [4497] = 4497, - [4498] = 4328, + [4498] = 4324, [4499] = 4499, - [4500] = 4500, - [4501] = 4501, - [4502] = 4363, - [4503] = 4321, - [4504] = 4363, - [4505] = 4321, - [4506] = 4329, - [4507] = 4507, - [4508] = 4363, - [4509] = 4343, - [4510] = 4321, - [4511] = 4511, - [4512] = 4363, - [4513] = 4330, - [4514] = 4363, - [4515] = 4515, + [4500] = 4374, + [4501] = 4362, + [4502] = 4317, + [4503] = 4331, + [4504] = 4319, + [4505] = 4377, + [4506] = 4320, + [4507] = 4362, + [4508] = 4338, + [4509] = 4377, + [4510] = 4377, + [4511] = 4362, + [4512] = 4339, + [4513] = 4513, + [4514] = 4338, + [4515] = 4322, [4516] = 4516, - [4517] = 4363, - [4518] = 4363, - [4519] = 4357, - [4520] = 4347, - [4521] = 4321, - [4522] = 4522, - [4523] = 4523, - [4524] = 4330, - [4525] = 4321, - [4526] = 4497, - [4527] = 4322, - [4528] = 4363, - [4529] = 4343, - [4530] = 4530, - [4531] = 4325, - [4532] = 4330, - [4533] = 4363, - [4534] = 4534, - [4535] = 4322, - [4536] = 4329, - [4537] = 4321, - [4538] = 4538, - [4539] = 4326, - [4540] = 4320, - [4541] = 4365, - [4542] = 4325, - [4543] = 4324, + [4517] = 4487, + [4518] = 4362, + [4519] = 4322, + [4520] = 4520, + [4521] = 4355, + [4522] = 4320, + [4523] = 4319, + [4524] = 4320, + [4525] = 4317, + [4526] = 4374, + [4527] = 4319, + [4528] = 4377, + [4529] = 4324, + [4530] = 4322, + [4531] = 4362, + [4532] = 4317, + [4533] = 4338, + [4534] = 4331, + [4535] = 4334, + [4536] = 4377, + [4537] = 4337, + [4538] = 4374, + [4539] = 4539, + [4540] = 4324, + [4541] = 4377, + [4542] = 4542, + [4543] = 4543, [4544] = 4544, - [4545] = 4500, - [4546] = 4323, - [4547] = 4547, - [4548] = 4324, - [4549] = 4363, - [4550] = 4363, - [4551] = 4323, - [4552] = 4357, - [4553] = 4553, - [4554] = 4365, - [4555] = 4325, - [4556] = 4347, - [4557] = 4320, - [4558] = 4322, - [4559] = 4330, - [4560] = 4326, - [4561] = 4324, - [4562] = 4343, - [4563] = 4563, - [4564] = 4329, - [4565] = 4330, - [4566] = 4343, + [4545] = 4545, + [4546] = 4339, + [4547] = 4355, + [4548] = 4331, + [4549] = 4334, + [4550] = 4355, + [4551] = 4551, + [4552] = 4362, + [4553] = 4355, + [4554] = 4324, + [4555] = 4374, + [4556] = 4556, + [4557] = 4377, + [4558] = 4355, + [4559] = 4559, + [4560] = 4377, + [4561] = 4377, + [4562] = 4337, + [4563] = 4362, + [4564] = 4564, + [4565] = 4337, + [4566] = 4317, [4567] = 4567, - [4568] = 4347, - [4569] = 4325, - [4570] = 4357, - [4571] = 4324, - [4572] = 4363, - [4573] = 4321, - [4574] = 4323, - [4575] = 4323, - [4576] = 4363, - [4577] = 4577, - [4578] = 4357, - [4579] = 4579, - [4580] = 4321, - [4581] = 4321, - [4582] = 4582, - [4583] = 4347, - [4584] = 4584, - [4585] = 4326, - [4586] = 4586, + [4568] = 4568, + [4569] = 4569, + [4570] = 4319, + [4571] = 4334, + [4572] = 4331, + [4573] = 4355, + [4574] = 4362, + [4575] = 4320, + [4576] = 4324, + [4577] = 4374, + [4578] = 4362, + [4579] = 4317, + [4580] = 4320, + [4581] = 4362, + [4582] = 4339, + [4583] = 4583, + [4584] = 4319, + [4585] = 4320, + [4586] = 4322, [4587] = 4587, - [4588] = 4326, - [4589] = 4320, - [4590] = 4365, - [4591] = 4323, - [4592] = 4324, - [4593] = 4593, - [4594] = 4501, - [4595] = 4544, - [4596] = 4357, - [4597] = 4363, - [4598] = 4497, - [4599] = 4330, - [4600] = 4600, - [4601] = 4347, - [4602] = 4343, - [4603] = 4497, - [4604] = 2273, - [4605] = 4329, - [4606] = 4343, - [4607] = 4497, - [4608] = 2258, - [4609] = 4347, - [4610] = 4357, - [4611] = 4497, - [4612] = 4343, - [4613] = 4330, - [4614] = 4322, - [4615] = 4497, - [4616] = 4330, - [4617] = 4326, - [4618] = 4618, - [4619] = 4497, - [4620] = 4620, - [4621] = 4321, - [4622] = 4325, - [4623] = 4497, - [4624] = 4322, - [4625] = 4320, - [4626] = 4626, - [4627] = 4497, - [4628] = 4325, - [4629] = 4324, - [4630] = 4323, - [4631] = 4497, + [4588] = 4377, + [4589] = 4338, + [4590] = 4339, + [4591] = 4355, + [4592] = 4338, + [4593] = 4337, + [4594] = 4334, + [4595] = 4322, + [4596] = 4331, + [4597] = 4322, + [4598] = 4320, + [4599] = 4319, + [4600] = 4324, + [4601] = 4374, + [4602] = 4322, + [4603] = 4320, + [4604] = 4320, + [4605] = 4338, + [4606] = 4319, + [4607] = 4339, + [4608] = 4322, + [4609] = 4317, + [4610] = 4610, + [4611] = 4377, + [4612] = 4374, + [4613] = 4324, + [4614] = 4338, + [4615] = 4339, + [4616] = 4338, + [4617] = 4317, + [4618] = 4374, + [4619] = 4324, + [4620] = 4339, + [4621] = 4362, + [4622] = 4622, + [4623] = 4331, + [4624] = 4334, + [4625] = 4331, + [4626] = 4334, + [4627] = 4337, + [4628] = 4337, + [4629] = 4629, + [4630] = 4377, + [4631] = 4377, [4632] = 4632, - [4633] = 4324, - [4634] = 4363, - [4635] = 4497, - [4636] = 4329, - [4637] = 4637, - [4638] = 4329, - [4639] = 4326, - [4640] = 4326, - [4641] = 4320, - [4642] = 4642, - [4643] = 4643, - [4644] = 4365, - [4645] = 4320, - [4646] = 4365, - [4647] = 4323, - [4648] = 4648, - [4649] = 4649, - [4650] = 4650, + [4633] = 4633, + [4634] = 4634, }; static inline bool sym_rune_literal_character_set_1(int32_t c) { @@ -8174,12 +8175,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 0: if (eof) ADVANCE(200); if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(394); - if (lookahead == '$') ADVANCE(301); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(402); + if (lookahead == '$') ADVANCE(350); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == ')') ADVANCE(233); if (lookahead == '*') ADVANCE(248); @@ -8188,7 +8189,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(221); if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(360); + if (lookahead == '0') ADVANCE(368); if (lookahead == ':') ADVANCE(274); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(270); @@ -8196,42 +8197,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '\\') ADVANCE(183); if (lookahead == ']') ADVANCE(272); if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(197) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(340); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(339); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(305); + if (lookahead == '\n') ADVANCE(303); END_STATE(); case 2: if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(123); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(124); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == ')') ADVANCE(233); if (lookahead == '*') ADVANCE(247); @@ -8240,45 +8241,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(244); if (lookahead == '.') ADVANCE(223); if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '0') ADVANCE(335); if (lookahead == ':') ADVANCE(273); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '}') ADVANCE(231); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 3: if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(123); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(124); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == ')') ADVANCE(233); if (lookahead == '*') ADVANCE(247); @@ -8287,45 +8288,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(244); if (lookahead == '.') ADVANCE(223); if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '0') ADVANCE(335); if (lookahead == ':') ADVANCE(273); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '}') ADVANCE(231); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 4: if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(120); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(121); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == ')') ADVANCE(233); if (lookahead == '*') ADVANCE(247); @@ -8334,44 +8335,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(244); if (lookahead == '.') ADVANCE(223); if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '0') ADVANCE(335); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '}') ADVANCE(231); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 5: if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(120); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(121); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == ')') ADVANCE(233); if (lookahead == '*') ADVANCE(247); @@ -8380,40 +8381,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(244); if (lookahead == '.') ADVANCE(223); if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '0') ADVANCE(335); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '}') ADVANCE(231); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 6: if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -8429,15 +8430,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); @@ -8448,8 +8449,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -8465,8 +8466,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(285); if (('A' <= lookahead && lookahead <= 'Z') || @@ -8476,10 +8477,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\f') || @@ -8489,8 +8490,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -8506,15 +8507,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); @@ -8525,8 +8526,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -8542,8 +8543,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); if (('A' <= lookahead && lookahead <= 'Z') || @@ -8553,10 +8554,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\f') || @@ -8566,8 +8567,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -8577,21 +8578,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(220); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(111); + if (lookahead == ':') ADVANCE(112); if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(235); if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); @@ -8602,8 +8603,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -8613,14 +8614,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(220); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(111); + if (lookahead == ':') ADVANCE(112); if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(235); if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(285); if (('A' <= lookahead && lookahead <= 'Z') || @@ -8630,10 +8631,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\f') || @@ -8643,8 +8644,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -8654,21 +8655,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(220); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(111); + if (lookahead == ':') ADVANCE(112); if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(235); if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); @@ -8679,8 +8680,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -8690,14 +8691,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(220); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(111); + if (lookahead == ':') ADVANCE(112); if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(235); if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); if (('A' <= lookahead && lookahead <= 'Z') || @@ -8707,10 +8708,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\f') || @@ -8720,8 +8721,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -8733,19 +8734,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(250); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '}') ADVANCE(231); @@ -8756,8 +8757,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -8769,12 +8770,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(250); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(284); if (('A' <= lookahead && lookahead <= 'Z') || @@ -8784,10 +8785,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '}') ADVANCE(231); @@ -8798,8 +8799,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -8811,19 +8812,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(250); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '}') ADVANCE(231); @@ -8834,8 +8835,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -8847,12 +8848,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(250); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); if (('A' <= lookahead && lookahead <= 'Z') || @@ -8862,10 +8863,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '}') ADVANCE(231); @@ -8876,8 +8877,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(122); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(123); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -8893,8 +8894,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(285); if (('A' <= lookahead && lookahead <= 'Z') || @@ -8904,10 +8905,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\f') || @@ -8917,8 +8918,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(122); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(123); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -8934,8 +8935,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); if (('A' <= lookahead && lookahead <= 'Z') || @@ -8945,10 +8946,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\f') || @@ -8958,8 +8959,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(122); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(123); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -8969,14 +8970,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(220); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(111); + if (lookahead == ':') ADVANCE(112); if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(235); if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(285); if (('A' <= lookahead && lookahead <= 'Z') || @@ -8986,10 +8987,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\f') || @@ -8999,8 +9000,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(122); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(123); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -9010,14 +9011,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(220); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(111); + if (lookahead == ':') ADVANCE(112); if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(235); if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); if (('A' <= lookahead && lookahead <= 'Z') || @@ -9027,10 +9028,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\f') || @@ -9040,8 +9041,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(122); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(123); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -9053,12 +9054,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(250); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(284); if (('A' <= lookahead && lookahead <= 'Z') || @@ -9068,10 +9069,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '|') ADVANCE(238); if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\f') || @@ -9081,8 +9082,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(122); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(123); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -9094,12 +9095,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(250); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); if (('A' <= lookahead && lookahead <= 'Z') || @@ -9109,10 +9110,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '|') ADVANCE(238); if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\f') || @@ -9122,8 +9123,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(137); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(138); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -9141,9 +9142,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '?') ADVANCE(278); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(285); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'i') ADVANCE(143); - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'o') ADVANCE(146); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); @@ -9154,8 +9155,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(137); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(138); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -9173,9 +9174,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '?') ADVANCE(278); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'i') ADVANCE(143); - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'o') ADVANCE(146); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); @@ -9186,8 +9187,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(137); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(138); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -9197,7 +9198,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(220); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(111); + if (lookahead == ':') ADVANCE(112); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(235); @@ -9205,9 +9206,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '?') ADVANCE(278); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(285); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'i') ADVANCE(143); - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'o') ADVANCE(146); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); @@ -9218,8 +9219,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(137); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(138); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -9229,7 +9230,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(220); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(111); + if (lookahead == ':') ADVANCE(112); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(235); @@ -9237,9 +9238,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '?') ADVANCE(278); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'i') ADVANCE(143); - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'o') ADVANCE(146); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); @@ -9250,8 +9251,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(137); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(138); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -9263,14 +9264,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(250); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(284); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'i') ADVANCE(143); - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'o') ADVANCE(146); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '}') ADVANCE(231); @@ -9281,8 +9282,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(137); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(138); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -9294,14 +9295,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(250); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'i') ADVANCE(143); - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'o') ADVANCE(146); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '}') ADVANCE(231); @@ -9312,10 +9313,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(279); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '$') ADVANCE(123); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '$') ADVANCE(124); if (lookahead == '&') ADVANCE(286); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == ')') ADVANCE(233); if (lookahead == '*') ADVANCE(247); @@ -9323,44 +9324,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(230); if (lookahead == '-') ADVANCE(243); if (lookahead == '.') ADVANCE(223); - if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '0') ADVANCE(335); if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(100); + if (lookahead == '<') ADVANCE(101); if (lookahead == '?') ADVANCE(277); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '}') ADVANCE(231); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(30) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 31: if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(279); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '$') ADVANCE(125); if (lookahead == '&') ADVANCE(286); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(247); if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(97); + if (lookahead == '/') ADVANCE(98); if (lookahead == '<') ADVANCE(269); if (lookahead == '?') ADVANCE(277); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -9368,8 +9369,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('n' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'm') ADVANCE(386); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'm') ADVANCE(394); if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(32) @@ -9378,16 +9379,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(279); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '$') ADVANCE(125); if (lookahead == '&') ADVANCE(286); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(247); if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(97); + if (lookahead == '/') ADVANCE(98); if (lookahead == '?') ADVANCE(277); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -9395,8 +9396,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('n' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'm') ADVANCE(386); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'm') ADVANCE(394); if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(32) @@ -9405,17 +9406,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(279); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '$') ADVANCE(125); if (lookahead == '&') ADVANCE(286); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(247); - if (lookahead == '/') ADVANCE(97); + if (lookahead == '/') ADVANCE(98); if (lookahead == ';') ADVANCE(219); if (lookahead == '=') ADVANCE(234); if (lookahead == '?') ADVANCE(277); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -9423,8 +9424,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('n' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'm') ADVANCE(386); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'm') ADVANCE(394); if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(33) @@ -9432,23 +9433,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 34: if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '$') ADVANCE(125); if (lookahead == ',') ADVANCE(230); - if (lookahead == '.') ADVANCE(103); - if (lookahead == '/') ADVANCE(97); + if (lookahead == '.') ADVANCE(104); + if (lookahead == '/') ADVANCE(98); if (lookahead == ':') ADVANCE(273); if (lookahead == ';') ADVANCE(219); if (lookahead == '=') ADVANCE(234); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); if (lookahead == '{') ADVANCE(229); if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\f') || @@ -9457,21 +9458,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 35: if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '$') ADVANCE(125); if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(97); + if (lookahead == '/') ADVANCE(98); if (lookahead == ';') ADVANCE(219); if (lookahead == '=') ADVANCE(234); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); if (lookahead == '{') ADVANCE(229); if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\f') || @@ -9480,21 +9481,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 36: if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '$') ADVANCE(125); if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(97); + if (lookahead == '/') ADVANCE(98); if (lookahead == ';') ADVANCE(219); if (lookahead == '=') ADVANCE(234); if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); if (lookahead == '{') ADVANCE(229); if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\f') || @@ -9502,12 +9503,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 37: if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(123); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(124); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(247); if (lookahead == '+') ADVANCE(240); @@ -9515,44 +9516,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(244); if (lookahead == '.') ADVANCE(226); if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '0') ADVANCE(335); if (lookahead == ':') ADVANCE(273); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == ']') ADVANCE(272); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '}') ADVANCE(231); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(38) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 38: if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(123); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(124); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(247); if (lookahead == '+') ADVANCE(240); @@ -9560,44 +9561,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(244); if (lookahead == '.') ADVANCE(226); if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '0') ADVANCE(335); if (lookahead == ':') ADVANCE(273); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == ']') ADVANCE(272); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '}') ADVANCE(231); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(38) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 39: if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(120); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(121); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(247); if (lookahead == '+') ADVANCE(240); @@ -9605,43 +9606,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(244); if (lookahead == '.') ADVANCE(226); if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '0') ADVANCE(335); if (lookahead == ':') ADVANCE(273); if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == ']') ADVANCE(272); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '}') ADVANCE(231); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(40) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 40: if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(120); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(121); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(247); if (lookahead == '+') ADVANCE(240); @@ -9649,39 +9650,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(244); if (lookahead == '.') ADVANCE(226); if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '0') ADVANCE(335); if (lookahead == ':') ADVANCE(273); if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == ']') ADVANCE(272); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '}') ADVANCE(231); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(40) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 41: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -9691,33 +9692,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(220); if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(343); - if (lookahead == ':') ADVANCE(111); + if (lookahead == '0') ADVANCE(342); + if (lookahead == ':') ADVANCE(274); if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(256); + if (lookahead == '<') ADVANCE(254); if (lookahead == '=') ADVANCE(235); if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(42) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(340); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(339); END_STATE(); case 42: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -9727,33 +9728,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(220); if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(343); - if (lookahead == ':') ADVANCE(111); + if (lookahead == '0') ADVANCE(342); + if (lookahead == ':') ADVANCE(274); if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(256); + if (lookahead == '<') ADVANCE(254); if (lookahead == '=') ADVANCE(235); if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(42) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(340); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(339); END_STATE(); case 43: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -9769,24 +9770,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); + 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(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(45) + lookahead == ' ') SKIP(44) END_STATE(); case 44: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -9802,9 +9809,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); - if (lookahead == '[') ADVANCE(268); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); + if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -9813,19 +9820,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(46) + lookahead == ' ') SKIP(44) END_STATE(); case 45: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -9835,30 +9842,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(220); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(273); - if (lookahead == '<') ADVANCE(254); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(219); + if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(235); if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); - if (lookahead == '[') ADVANCE(282); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); + if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(45) + lookahead == ' ') SKIP(47) END_STATE(); case 46: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -9868,15 +9876,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(220); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(273); - if (lookahead == '<') ADVANCE(254); + if (lookahead == ':') ADVANCE(112); + if (lookahead == ';') ADVANCE(219); + if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(235); if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); - if (lookahead == '[') ADVANCE(282); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); + if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(285); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -9885,19 +9894,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(46) + lookahead == ' ') SKIP(48) END_STATE(); case 47: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -9907,37 +9916,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(220); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(111); + if (lookahead == ':') ADVANCE(112); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(235); if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); - if (lookahead == '[') ADVANCE(268); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); + if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); - 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(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48) + lookahead == ' ') SKIP(47) END_STATE(); case 48: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -9947,15 +9950,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(220); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(111); + if (lookahead == ':') ADVANCE(112); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(235); if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); if (('A' <= lookahead && lookahead <= 'Z') || @@ -9965,10 +9968,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || @@ -9976,8 +9979,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 49: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -9991,20 +9994,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(274); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == ']') ADVANCE(272); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10012,8 +10015,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 50: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10027,12 +10030,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(274); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == ']') ADVANCE(272); if (lookahead == '^') ADVANCE(284); @@ -10043,10 +10046,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10054,8 +10057,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 51: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10069,20 +10072,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(274); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == ']') ADVANCE(272); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10090,8 +10093,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 52: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10105,12 +10108,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(274); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == ']') ADVANCE(272); if (lookahead == '^') ADVANCE(284); @@ -10121,10 +10124,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10132,8 +10135,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 53: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10143,21 +10146,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(244); if (lookahead == '.') ADVANCE(221); if (lookahead == '/') ADVANCE(250); - if (lookahead == ':') ADVANCE(111); + if (lookahead == ':') ADVANCE(112); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10165,8 +10168,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 54: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10176,21 +10179,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(244); if (lookahead == '.') ADVANCE(221); if (lookahead == '/') ADVANCE(250); - if (lookahead == ':') ADVANCE(111); + if (lookahead == ':') ADVANCE(112); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10198,8 +10201,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 55: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10210,12 +10213,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(221); if (lookahead == '/') ADVANCE(250); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(284); if (('A' <= lookahead && lookahead <= 'Z') || @@ -10225,10 +10228,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10236,8 +10239,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 56: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10248,12 +10251,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(221); if (lookahead == '/') ADVANCE(250); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); if (('A' <= lookahead && lookahead <= 'Z') || @@ -10263,10 +10266,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10274,8 +10277,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 57: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10286,12 +10289,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(250); if (lookahead == ':') ADVANCE(273); if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(284); if (('A' <= lookahead && lookahead <= 'Z') || @@ -10301,18 +10304,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(58) END_STATE(); case 58: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10323,12 +10326,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(250); if (lookahead == ':') ADVANCE(273); if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); if (('A' <= lookahead && lookahead <= 'Z') || @@ -10338,18 +10341,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(58) END_STATE(); case 59: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(122); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(123); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -10365,8 +10368,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(285); if (('A' <= lookahead && lookahead <= 'Z') || @@ -10376,10 +10379,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10387,8 +10390,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 60: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(122); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(123); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -10404,8 +10407,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); if (('A' <= lookahead && lookahead <= 'Z') || @@ -10415,10 +10418,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10426,8 +10429,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 61: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(122); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(123); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -10437,15 +10440,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(220); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(111); + if (lookahead == ':') ADVANCE(112); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(235); if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(285); if (('A' <= lookahead && lookahead <= 'Z') || @@ -10455,10 +10458,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10466,8 +10469,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 62: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(122); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(123); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -10477,15 +10480,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(220); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(111); + if (lookahead == ':') ADVANCE(112); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(235); if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); if (('A' <= lookahead && lookahead <= 'Z') || @@ -10495,10 +10498,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10506,8 +10509,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 63: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(122); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(123); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10521,12 +10524,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(274); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == ']') ADVANCE(272); if (lookahead == '^') ADVANCE(284); @@ -10537,10 +10540,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '}') ADVANCE(231); @@ -10549,8 +10552,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 64: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(122); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(123); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10564,12 +10567,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(274); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == ']') ADVANCE(272); if (lookahead == '^') ADVANCE(284); @@ -10580,10 +10583,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '}') ADVANCE(231); @@ -10592,8 +10595,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 65: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(122); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(123); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10604,12 +10607,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(221); if (lookahead == '/') ADVANCE(250); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(284); if (('A' <= lookahead && lookahead <= 'Z') || @@ -10619,10 +10622,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10630,8 +10633,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 66: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(122); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(123); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10642,12 +10645,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(221); if (lookahead == '/') ADVANCE(250); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); if (('A' <= lookahead && lookahead <= 'Z') || @@ -10657,10 +10660,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10668,8 +10671,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 67: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(122); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(123); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10680,12 +10683,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(250); if (lookahead == ':') ADVANCE(273); if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(284); if (('A' <= lookahead && lookahead <= 'Z') || @@ -10695,18 +10698,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(68) END_STATE(); case 68: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(122); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(123); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10717,12 +10720,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(250); if (lookahead == ':') ADVANCE(273); if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); if (('A' <= lookahead && lookahead <= 'Z') || @@ -10732,18 +10735,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'o') ADVANCE(381); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'o') ADVANCE(389); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(68) END_STATE(); case 69: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(138); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(139); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -10753,7 +10756,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(220); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(111); + if (lookahead == ':') ADVANCE(112); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(235); @@ -10761,9 +10764,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '?') ADVANCE(278); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(285); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'i') ADVANCE(143); - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'o') ADVANCE(146); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10771,8 +10774,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 70: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(138); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(139); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -10782,7 +10785,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(220); if (lookahead == '/') ADVANCE(251); - if (lookahead == ':') ADVANCE(111); + if (lookahead == ':') ADVANCE(112); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(256); if (lookahead == '=') ADVANCE(235); @@ -10790,9 +10793,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '?') ADVANCE(278); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'i') ADVANCE(143); - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'o') ADVANCE(146); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10800,8 +10803,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 71: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(137); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(138); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -10818,9 +10821,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '?') ADVANCE(278); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(285); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'i') ADVANCE(143); - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'o') ADVANCE(146); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10828,8 +10831,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 72: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(137); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(138); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); if (lookahead == '(') ADVANCE(232); @@ -10846,9 +10849,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '?') ADVANCE(278); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'i') ADVANCE(143); - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'o') ADVANCE(146); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10856,8 +10859,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 73: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(137); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(138); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10871,15 +10874,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(274); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '[') ADVANCE(268); if (lookahead == ']') ADVANCE(272); if (lookahead == '^') ADVANCE(284); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'i') ADVANCE(143); - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'o') ADVANCE(146); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10887,8 +10890,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 74: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(137); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(138); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10902,15 +10905,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(274); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '[') ADVANCE(282); if (lookahead == ']') ADVANCE(272); if (lookahead == '^') ADVANCE(284); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'i') ADVANCE(143); - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'o') ADVANCE(146); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10918,8 +10921,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 75: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(137); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(138); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10929,18 +10932,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(244); if (lookahead == '.') ADVANCE(221); if (lookahead == '/') ADVANCE(250); - if (lookahead == ':') ADVANCE(111); + if (lookahead == ':') ADVANCE(112); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '[') ADVANCE(268); if (lookahead == ']') ADVANCE(272); if (lookahead == '^') ADVANCE(284); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'i') ADVANCE(143); - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'o') ADVANCE(146); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10948,8 +10951,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 76: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(137); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(138); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10959,18 +10962,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(244); if (lookahead == '.') ADVANCE(221); if (lookahead == '/') ADVANCE(250); - if (lookahead == ':') ADVANCE(111); + if (lookahead == ':') ADVANCE(112); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(257); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '[') ADVANCE(282); if (lookahead == ']') ADVANCE(272); if (lookahead == '^') ADVANCE(284); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'i') ADVANCE(143); - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'o') ADVANCE(146); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || @@ -10978,8 +10981,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 77: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(137); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(138); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -10991,14 +10994,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(250); if (lookahead == ':') ADVANCE(273); if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(284); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'i') ADVANCE(143); - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'o') ADVANCE(146); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || @@ -11006,8 +11009,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 78: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(126); - if (lookahead == '$') ADVANCE(137); + if (lookahead == '#') ADVANCE(127); + if (lookahead == '$') ADVANCE(138); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); if (lookahead == '(') ADVANCE(232); @@ -11019,14 +11022,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(250); if (lookahead == ':') ADVANCE(273); if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); - if (lookahead == 'a') ADVANCE(146); - if (lookahead == 'i') ADVANCE(143); - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'o') ADVANCE(146); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || @@ -11034,10 +11037,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 79: if (lookahead == '!') ADVANCE(279); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '$') ADVANCE(123); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '$') ADVANCE(124); if (lookahead == '&') ADVANCE(286); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == ')') ADVANCE(233); if (lookahead == '*') ADVANCE(247); @@ -11045,80 +11048,80 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(230); if (lookahead == '-') ADVANCE(243); if (lookahead == '.') ADVANCE(223); - if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '0') ADVANCE(335); if (lookahead == ':') ADVANCE(273); if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(100); + if (lookahead == '<') ADVANCE(101); if (lookahead == '?') ADVANCE(277); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == ']') ADVANCE(272); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(236); if (lookahead == '}') ADVANCE(231); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(79) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 80: if (lookahead == '!') ADVANCE(279); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '$') ADVANCE(123); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '$') ADVANCE(124); if (lookahead == '&') ADVANCE(286); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(247); if (lookahead == '+') ADVANCE(239); if (lookahead == '-') ADVANCE(243); if (lookahead == '.') ADVANCE(225); - if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(336); - if (lookahead == '<') ADVANCE(100); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '0') ADVANCE(335); + if (lookahead == '<') ADVANCE(101); if (lookahead == '?') ADVANCE(277); if (lookahead == '@') ADVANCE(94); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(80) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 81: if (lookahead == '!') ADVANCE(279); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '$') ADVANCE(125); if (lookahead == '&') ADVANCE(286); if (lookahead == '(') ADVANCE(232); if (lookahead == ')') ADVANCE(233); if (lookahead == '*') ADVANCE(247); if (lookahead == ',') ADVANCE(230); if (lookahead == '.') ADVANCE(222); - if (lookahead == '/') ADVANCE(97); + if (lookahead == '/') ADVANCE(98); if (lookahead == '<') ADVANCE(269); if (lookahead == '=') ADVANCE(234); if (lookahead == '?') ADVANCE(277); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -11126,27 +11129,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('n' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'm') ADVANCE(386); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'm') ADVANCE(394); if (lookahead == '{') ADVANCE(229); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(82) END_STATE(); case 82: if (lookahead == '!') ADVANCE(279); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '$') ADVANCE(125); if (lookahead == '&') ADVANCE(286); if (lookahead == '(') ADVANCE(232); if (lookahead == ')') ADVANCE(233); if (lookahead == '*') ADVANCE(247); if (lookahead == ',') ADVANCE(230); if (lookahead == '.') ADVANCE(222); - if (lookahead == '/') ADVANCE(97); + if (lookahead == '/') ADVANCE(98); if (lookahead == '=') ADVANCE(234); if (lookahead == '?') ADVANCE(277); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -11154,27 +11157,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('n' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'm') ADVANCE(386); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'm') ADVANCE(394); if (lookahead == '{') ADVANCE(229); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(82) END_STATE(); case 83: if (lookahead == '!') ADVANCE(279); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '$') ADVANCE(125); if (lookahead == '&') ADVANCE(286); if (lookahead == '(') ADVANCE(232); if (lookahead == ')') ADVANCE(233); if (lookahead == '*') ADVANCE(247); if (lookahead == ',') ADVANCE(230); - if (lookahead == '.') ADVANCE(103); - if (lookahead == '/') ADVANCE(97); + if (lookahead == '.') ADVANCE(104); + if (lookahead == '/') ADVANCE(98); if (lookahead == '=') ADVANCE(234); if (lookahead == '?') ADVANCE(277); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == ']') ADVANCE(272); if (('A' <= lookahead && lookahead <= 'Z') || @@ -11183,117 +11186,115 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('n' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'm') ADVANCE(386); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'm') ADVANCE(394); if (lookahead == '{') ADVANCE(229); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(83) END_STATE(); case 84: - if (lookahead == '!') ADVANCE(109); - if (lookahead == '$') ADVANCE(124); + if (lookahead == '!') ADVANCE(110); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(252); if (lookahead == '(') ADVANCE(232); + if (lookahead == ')') ADVANCE(233); if (lookahead == '*') ADVANCE(247); if (lookahead == '+') ADVANCE(239); if (lookahead == '-') ADVANCE(243); + if (lookahead == '.') ADVANCE(222); if (lookahead == '/') ADVANCE(250); + if (lookahead == '0') ADVANCE(342); + if (lookahead == ':') ADVANCE(273); if (lookahead == '<') ADVANCE(258); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(260); - if (lookahead == '@') ADVANCE(91); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); + if (lookahead == ']') ADVANCE(272); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == '{') ADVANCE(229); + if (lookahead == '|') ADVANCE(236); + if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(84) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(339); END_STATE(); case 85: - if (lookahead == '!') ADVANCE(109); - if (lookahead == '$') ADVANCE(302); + if (lookahead == '!') ADVANCE(110); + if (lookahead == '$') ADVANCE(125); if (lookahead == '%') ADVANCE(252); if (lookahead == '(') ADVANCE(232); - if (lookahead == ')') ADVANCE(233); if (lookahead == '*') ADVANCE(247); if (lookahead == '+') ADVANCE(239); - if (lookahead == ',') ADVANCE(230); if (lookahead == '-') ADVANCE(243); - if (lookahead == '.') ADVANCE(222); if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(343); - if (lookahead == ':') ADVANCE(273); - if (lookahead == '<') ADVANCE(271); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '<') ADVANCE(258); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(260); - if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); - if (lookahead == '[') ADVANCE(268); - if (lookahead == ']') ADVANCE(272); + if (lookahead == '@') ADVANCE(91); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); + if (lookahead == '[') ADVANCE(282); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(236); - if (lookahead == '}') ADVANCE(231); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(86) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(340); + lookahead == ' ') SKIP(85) END_STATE(); case 86: - if (lookahead == '!') ADVANCE(109); - if (lookahead == '$') ADVANCE(302); + if (lookahead == '!') ADVANCE(110); + if (lookahead == '$') ADVANCE(97); if (lookahead == '%') ADVANCE(252); if (lookahead == '(') ADVANCE(232); if (lookahead == ')') ADVANCE(233); if (lookahead == '*') ADVANCE(247); if (lookahead == '+') ADVANCE(239); - if (lookahead == ',') ADVANCE(230); if (lookahead == '-') ADVANCE(243); if (lookahead == '.') ADVANCE(222); if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(343); + if (lookahead == '0') ADVANCE(342); if (lookahead == ':') ADVANCE(273); - if (lookahead == '<') ADVANCE(258); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(260); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); - if (lookahead == '[') ADVANCE(282); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); + if (lookahead == '[') ADVANCE(268); if (lookahead == ']') ADVANCE(272); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(236); if (lookahead == '}') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(86) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(340); + lookahead == ' ') SKIP(84) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(339); END_STATE(); case 87: - if (lookahead == '"') ADVANCE(404); - if (lookahead == '$') ADVANCE(124); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '$') ADVANCE(125); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '.') ADVANCE(160); - if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '0') ADVANCE(335); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || lookahead == 'a' || @@ -11302,102 +11303,102 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('s' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'r') ADVANCE(372); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(87) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 88: - if (lookahead == '"') ADVANCE(404); - if (lookahead == '$') ADVANCE(148); - if (lookahead == '/') ADVANCE(350); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '$') ADVANCE(351); + if (lookahead == '/') ADVANCE(353); if (lookahead == '\\') ADVANCE(183); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(351); - if (lookahead != 0) ADVANCE(352); + lookahead == ' ') ADVANCE(354); + if (lookahead != 0) ADVANCE(355); END_STATE(); case 89: - if (lookahead == '"') ADVANCE(404); - if (lookahead == '/') ADVANCE(356); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '/') ADVANCE(363); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(357); - if (lookahead != 0) ADVANCE(358); + lookahead == ' ') ADVANCE(364); + if (lookahead != 0) ADVANCE(365); END_STATE(); case 90: - if (lookahead == '$') ADVANCE(124); + if (lookahead == '$') ADVANCE(125); if (lookahead == '.') ADVANCE(220); - if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(360); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '0') ADVANCE(368); if (lookahead == '>') ADVANCE(259); if (lookahead == '@') ADVANCE(92); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == ']') ADVANCE(272); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); if (lookahead == '}') ADVANCE(231); if (lookahead == '+' || - lookahead == '-') ADVANCE(359); + lookahead == '-') ADVANCE(367); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(90) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(340); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(339); END_STATE(); case 91: - if (lookahead == '$') ADVANCE(124); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); - if (lookahead == '[') ADVANCE(402); + if (lookahead == '$') ADVANCE(125); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); + if (lookahead == '[') ADVANCE(410); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); case 92: - if (lookahead == '$') ADVANCE(124); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == '$') ADVANCE(125); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); case 93: - if (lookahead == '$') ADVANCE(124); - if (lookahead == 'C') ADVANCE(365); - if (lookahead == 'J') ADVANCE(369); - if (lookahead == '[') ADVANCE(402); + if (lookahead == '$') ADVANCE(125); + if (lookahead == 'C') ADVANCE(373); + if (lookahead == 'J') ADVANCE(377); + if (lookahead == '[') ADVANCE(410); if (lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(372); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(380); END_STATE(); case 94: - if (lookahead == '$') ADVANCE(124); - if (lookahead == 'C') ADVANCE(365); - if (lookahead == 'J') ADVANCE(369); + if (lookahead == '$') ADVANCE(125); + if (lookahead == 'C') ADVANCE(373); + if (lookahead == 'J') ADVANCE(377); if (lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(372); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(380); END_STATE(); case 95: - if (lookahead == '$') ADVANCE(148); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '$') ADVANCE(351); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '/') ADVANCE(347); if (lookahead == '\\') ADVANCE(183); if (('\t' <= lookahead && lookahead <= '\r') || @@ -11405,111 +11406,122 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(349); END_STATE(); case 96: - if (lookahead == '\'') ADVANCE(405); - if (lookahead == '/') ADVANCE(353); + if (lookahead == '\'') ADVANCE(346); + if (lookahead == '/') ADVANCE(359); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(354); - if (lookahead != 0) ADVANCE(355); + lookahead == ' ') ADVANCE(360); + if (lookahead != 0) ADVANCE(361); END_STATE(); case 97: - if (lookahead == '*') ADVANCE(210); - if (lookahead == '/') ADVANCE(207); + if (lookahead == '(') ADVANCE(309); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); case 98: if (lookahead == '*') ADVANCE(210); if (lookahead == '/') ADVANCE(207); - if (lookahead == '=') ADVANCE(323); END_STATE(); case 99: + if (lookahead == '*') ADVANCE(210); + if (lookahead == '/') ADVANCE(207); + if (lookahead == '=') ADVANCE(322); + END_STATE(); + case 100: if (lookahead == '*') ADVANCE(213); if (lookahead == '/') ADVANCE(215); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(216); if (lookahead != 0) ADVANCE(217); END_STATE(); - case 100: - if (lookahead == '-') ADVANCE(290); - END_STATE(); case 101: if (lookahead == '-') ADVANCE(290); - if (lookahead == '<') ADVANCE(115); END_STATE(); case 102: - if (lookahead == '.') ADVANCE(267); + if (lookahead == '-') ADVANCE(290); + if (lookahead == '<') ADVANCE(116); END_STATE(); case 103: - if (lookahead == '.') ADVANCE(102); + if (lookahead == '.') ADVANCE(267); END_STATE(); case 104: + if (lookahead == '.') ADVANCE(103); + END_STATE(); + case 105: if (lookahead == '.') ADVANCE(160); if (lookahead == 'E' || lookahead == 'e') ADVANCE(149); if (lookahead == '_') ADVANCE(161); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(105); END_STATE(); - case 105: + case 106: if (lookahead == '.') ADVANCE(168); if (lookahead == '_') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(335); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(334); END_STATE(); - case 106: - if (lookahead == '/') ADVANCE(97); + case 107: + if (lookahead == '/') ADVANCE(98); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(106) + lookahead == ' ') SKIP(107) END_STATE(); - case 107: - if (lookahead == '/') ADVANCE(399); + case 108: + if (lookahead == '/') ADVANCE(407); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(400); + lookahead == ' ') ADVANCE(408); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(401); + lookahead != '}') ADVANCE(409); END_STATE(); - case 108: - if (lookahead == '/') ADVANCE(396); + case 109: + if (lookahead == '/') ADVANCE(404); if (lookahead == '\n' || - lookahead == '\r') SKIP(106) + lookahead == '\r') SKIP(107) if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(397); + lookahead == ' ') ADVANCE(405); if (lookahead != 0 && - lookahead != '\\') ADVANCE(398); - END_STATE(); - case 109: - if (lookahead == '=') ADVANCE(264); + lookahead != '\\') ADVANCE(406); END_STATE(); case 110: - if (lookahead == '=') ADVANCE(324); + if (lookahead == '=') ADVANCE(264); END_STATE(); case 111: - if (lookahead == '=') ADVANCE(334); + if (lookahead == '=') ADVANCE(323); END_STATE(); case 112: - if (lookahead == '=') ADVANCE(263); + if (lookahead == '=') ADVANCE(333); END_STATE(); case 113: - if (lookahead == '=') ADVANCE(332); + if (lookahead == '=') ADVANCE(263); END_STATE(); case 114: - if (lookahead == '=') ADVANCE(329); + if (lookahead == '=') ADVANCE(331); END_STATE(); case 115: - if (lookahead == '=') ADVANCE(325); + if (lookahead == '=') ADVANCE(328); END_STATE(); case 116: - if (lookahead == '=') ADVANCE(326); - if (lookahead == '>') ADVANCE(117); + if (lookahead == '=') ADVANCE(324); END_STATE(); case 117: - if (lookahead == '=') ADVANCE(327); + if (lookahead == '=') ADVANCE(325); + if (lookahead == '>') ADVANCE(118); END_STATE(); case 118: - if (lookahead == '>') ADVANCE(116); + if (lookahead == '=') ADVANCE(326); END_STATE(); case 119: - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == '>') ADVANCE(117); + END_STATE(); + case 120: + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || @@ -11518,14 +11530,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('j' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'e') ADVANCE(376); - if (lookahead == 'f') ADVANCE(379); - if (lookahead == 'i') ADVANCE(375); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'e') ADVANCE(384); + if (lookahead == 'f') ADVANCE(387); + if (lookahead == 'i') ADVANCE(383); END_STATE(); - case 120: - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + case 121: + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || @@ -11533,13 +11545,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('j' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'e') ADVANCE(376); - if (lookahead == 'i') ADVANCE(375); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'e') ADVANCE(384); + if (lookahead == 'i') ADVANCE(383); END_STATE(); - case 121: - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + case 122: + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'e') || @@ -11548,136 +11560,133 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('j' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'f') ADVANCE(379); - if (lookahead == 'i') ADVANCE(375); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'f') ADVANCE(387); + if (lookahead == 'i') ADVANCE(383); END_STATE(); - case 122: - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + case 123: + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); 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(387); - if (lookahead == 'e') ADVANCE(376); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'e') ADVANCE(384); END_STATE(); - case 123: - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + case 124: + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); 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(387); - if (lookahead == 'i') ADVANCE(375); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'i') ADVANCE(383); END_STATE(); - case 124: - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + case 125: + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 125: - if (lookahead == 'J') ADVANCE(370); + case 126: + if (lookahead == 'J') ADVANCE(378); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - END_STATE(); - case 126: - if (lookahead == '[') ADVANCE(311); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); case 127: - if (lookahead == '_') ADVANCE(154); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(339); + if (lookahead == '[') ADVANCE(310); END_STATE(); case 128: + if (lookahead == '_') ADVANCE(154); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(338); + END_STATE(); + case 129: if (lookahead == '_') ADVANCE(152); if (lookahead == '0' || - lookahead == '1') ADVANCE(341); + lookahead == '1') ADVANCE(340); END_STATE(); - case 129: + case 130: if (lookahead == '_') ADVANCE(166); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(342); - END_STATE(); - case 130: - if (lookahead == '`') ADVANCE(346); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(341); END_STATE(); case 131: - if (lookahead == '`') ADVANCE(346); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(155); + if (lookahead == '`') ADVANCE(345); END_STATE(); case 132: - if (lookahead == 'c') ADVANCE(144); + if (lookahead == '`') ADVANCE(345); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(155); END_STATE(); case 133: - if (lookahead == 'd') ADVANCE(135); + if (lookahead == 'c') ADVANCE(145); END_STATE(); case 134: if (lookahead == 'd') ADVANCE(136); END_STATE(); case 135: - if (lookahead == 'e') ADVANCE(132); + if (lookahead == 'd') ADVANCE(137); END_STATE(); case 136: - if (lookahead == 'e') ADVANCE(281); + if (lookahead == 'e') ADVANCE(133); END_STATE(); case 137: - if (lookahead == 'e') ADVANCE(141); + if (lookahead == 'e') ADVANCE(281); END_STATE(); case 138: - if (lookahead == 'e') ADVANCE(141); - if (lookahead == 'i') ADVANCE(140); + if (lookahead == 'e') ADVANCE(142); END_STATE(); case 139: - if (lookahead == 'e') ADVANCE(314); + if (lookahead == 'e') ADVANCE(142); + if (lookahead == 'i') ADVANCE(141); END_STATE(); case 140: - if (lookahead == 'f') ADVANCE(312); + if (lookahead == 'e') ADVANCE(313); END_STATE(); case 141: - if (lookahead == 'l') ADVANCE(147); + if (lookahead == 'f') ADVANCE(311); END_STATE(); case 142: - if (lookahead == 'n') ADVANCE(321); - if (lookahead == 's') ADVANCE(318); + if (lookahead == 'l') ADVANCE(148); END_STATE(); case 143: - if (lookahead == 'n') ADVANCE(319); - if (lookahead == 's') ADVANCE(316); + if (lookahead == 'n') ADVANCE(320); + if (lookahead == 's') ADVANCE(317); END_STATE(); case 144: - if (lookahead == 'o') ADVANCE(134); + if (lookahead == 'n') ADVANCE(318); + if (lookahead == 's') ADVANCE(315); END_STATE(); case 145: - if (lookahead == 'r') ADVANCE(303); + if (lookahead == 'o') ADVANCE(135); END_STATE(); case 146: - if (lookahead == 's') ADVANCE(227); + if (lookahead == 'r') ADVANCE(301); END_STATE(); case 147: - if (lookahead == 's') ADVANCE(139); + if (lookahead == 's') ADVANCE(227); END_STATE(); case 148: - if (lookahead == '{') ADVANCE(403); + if (lookahead == 's') ADVANCE(140); END_STATE(); case 149: if (lookahead == '+' || lookahead == '-') ADVANCE(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(344); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(343); END_STATE(); case 150: if (lookahead == 'P' || @@ -11696,43 +11705,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 152: if (lookahead == '0' || - lookahead == '1') ADVANCE(341); + lookahead == '1') ADVANCE(340); END_STATE(); case 153: if (lookahead == '8' || - lookahead == '9') ADVANCE(104); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(337); + lookahead == '9') ADVANCE(105); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(336); END_STATE(); case 154: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(339); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(338); END_STATE(); case 155: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(130); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(131); END_STATE(); case 156: if (('0' <= lookahead && lookahead <= '7')) ADVANCE(155); END_STATE(); case 157: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(339); END_STATE(); case 158: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(303); END_STATE(); case 159: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 160: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(344); END_STATE(); case 161: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(105); END_STATE(); case 162: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(344); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(343); END_STATE(); case 163: - if (sym_rune_literal_character_set_1(lookahead)) ADVANCE(130); - if (lookahead == '0') ADVANCE(131); + if (sym_rune_literal_character_set_1(lookahead)) ADVANCE(131); + if (lookahead == '0') ADVANCE(132); if (lookahead == 'U') ADVANCE(181); if (lookahead == 'u') ADVANCE(174); if (lookahead == 'x') ADVANCE(170); @@ -11741,22 +11750,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 164: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(305); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); END_STATE(); case 165: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(130); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(131); END_STATE(); case 166: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(342); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(341); END_STATE(); case 167: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(335); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(334); END_STATE(); case 168: if (('0' <= lookahead && lookahead <= '9') || @@ -11834,7 +11843,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); case 183: if (lookahead != 0 && @@ -11844,16 +11853,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '0' || '9' < lookahead) && lookahead != 'U' && lookahead != 'u' && - lookahead != 'x') ADVANCE(305); + lookahead != 'x') ADVANCE(303); if (lookahead == '\r') ADVANCE(1); - if (lookahead == 'U') ADVANCE(307); - if (lookahead == 'u') ADVANCE(309); - if (lookahead == 'x') ADVANCE(308); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + if (lookahead == 'U') ADVANCE(305); + if (lookahead == 'u') ADVANCE(307); + if (lookahead == 'x') ADVANCE(306); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(304); END_STATE(); case 184: if (lookahead != 0 && - lookahead != '\\') ADVANCE(130); + lookahead != '\\') ADVANCE(131); if (lookahead == '\\') ADVANCE(163); END_STATE(); case 185: @@ -11861,12 +11870,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(395); - if (lookahead == '$') ADVANCE(121); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(403); + if (lookahead == '$') ADVANCE(122); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(249); if (lookahead == '+') ADVANCE(241); @@ -11874,7 +11883,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(226); if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '0') ADVANCE(335); if (lookahead == ':') ADVANCE(274); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(254); @@ -11882,38 +11891,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(186) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 186: if (eof) ADVANCE(200); if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(395); - if (lookahead == '$') ADVANCE(121); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(403); + if (lookahead == '$') ADVANCE(122); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(249); if (lookahead == '+') ADVANCE(241); @@ -11921,7 +11930,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(226); if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '0') ADVANCE(335); if (lookahead == ':') ADVANCE(274); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(254); @@ -11929,38 +11938,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(186) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 187: if (eof) ADVANCE(200); if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(395); - if (lookahead == '$') ADVANCE(121); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(403); + if (lookahead == '$') ADVANCE(122); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(247); if (lookahead == '+') ADVANCE(240); @@ -11968,43 +11977,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(244); if (lookahead == '.') ADVANCE(226); if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '0') ADVANCE(335); if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(188) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 188: if (eof) ADVANCE(200); if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(395); - if (lookahead == '$') ADVANCE(121); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(403); + if (lookahead == '$') ADVANCE(122); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(247); if (lookahead == '+') ADVANCE(240); @@ -12012,43 +12021,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(244); if (lookahead == '.') ADVANCE(226); if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '0') ADVANCE(335); if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(188) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 189: if (eof) ADVANCE(200); if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(395); - if (lookahead == '$') ADVANCE(119); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(403); + if (lookahead == '$') ADVANCE(120); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(249); if (lookahead == '+') ADVANCE(241); @@ -12056,44 +12065,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(226); if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(336); - if (lookahead == ':') ADVANCE(111); + if (lookahead == '0') ADVANCE(335); + if (lookahead == ':') ADVANCE(112); if (lookahead == '<') ADVANCE(254); if (lookahead == '=') ADVANCE(235); if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(190) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 190: if (eof) ADVANCE(200); if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(395); - if (lookahead == '$') ADVANCE(119); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(403); + if (lookahead == '$') ADVANCE(120); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(249); if (lookahead == '+') ADVANCE(241); @@ -12101,44 +12110,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(226); if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(336); - if (lookahead == ':') ADVANCE(111); + if (lookahead == '0') ADVANCE(335); + if (lookahead == ':') ADVANCE(112); if (lookahead == '<') ADVANCE(254); if (lookahead == '=') ADVANCE(235); if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(190) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 191: if (eof) ADVANCE(200); if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(395); - if (lookahead == '$') ADVANCE(119); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(403); + if (lookahead == '$') ADVANCE(120); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(247); if (lookahead == '+') ADVANCE(240); @@ -12146,43 +12155,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(244); if (lookahead == '.') ADVANCE(226); if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '0') ADVANCE(335); if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(192) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 192: if (eof) ADVANCE(200); if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(395); - if (lookahead == '$') ADVANCE(119); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(403); + if (lookahead == '$') ADVANCE(120); if (lookahead == '%') ADVANCE(252); if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(247); if (lookahead == '+') ADVANCE(240); @@ -12190,197 +12199,197 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(244); if (lookahead == '.') ADVANCE(226); if (lookahead == '/') ADVANCE(250); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '0') ADVANCE(335); if (lookahead == '<') ADVANCE(255); - if (lookahead == '=') ADVANCE(112); + if (lookahead == '=') ADVANCE(113); if (lookahead == '>') ADVANCE(262); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(238); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(192) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 193: if (eof) ADVANCE(200); if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(279); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(392); - if (lookahead == '$') ADVANCE(121); - if (lookahead == '%') ADVANCE(110); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(400); + if (lookahead == '$') ADVANCE(122); + if (lookahead == '%') ADVANCE(111); if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(249); if (lookahead == '+') ADVANCE(242); if (lookahead == ',') ADVANCE(230); if (lookahead == '-') ADVANCE(246); if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(98); - if (lookahead == '0') ADVANCE(336); - if (lookahead == ':') ADVANCE(111); - if (lookahead == '<') ADVANCE(101); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '0') ADVANCE(335); + if (lookahead == ':') ADVANCE(112); + if (lookahead == '<') ADVANCE(102); if (lookahead == '=') ADVANCE(234); - if (lookahead == '>') ADVANCE(118); + if (lookahead == '>') ADVANCE(119); if (lookahead == '?') ADVANCE(277); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(113); + if (lookahead == '|') ADVANCE(114); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(193) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 194: if (eof) ADVANCE(200); if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(279); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(392); - if (lookahead == '$') ADVANCE(121); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(400); + if (lookahead == '$') ADVANCE(122); if (lookahead == '&') ADVANCE(286); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(247); if (lookahead == '+') ADVANCE(239); if (lookahead == ',') ADVANCE(230); if (lookahead == '-') ADVANCE(243); if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '0') ADVANCE(335); if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(100); + if (lookahead == '<') ADVANCE(101); if (lookahead == '?') ADVANCE(277); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(236); if (lookahead == '}') ADVANCE(231); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(194) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 195: if (eof) ADVANCE(200); if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(279); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(392); - if (lookahead == '$') ADVANCE(121); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(400); + if (lookahead == '$') ADVANCE(122); if (lookahead == '&') ADVANCE(286); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(247); if (lookahead == '+') ADVANCE(239); if (lookahead == '-') ADVANCE(243); if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(336); - if (lookahead == '<') ADVANCE(100); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '0') ADVANCE(335); + if (lookahead == '<') ADVANCE(101); if (lookahead == '?') ADVANCE(277); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(268); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(236); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(196) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 196: if (eof) ADVANCE(200); if (lookahead == '\n') ADVANCE(201); if (lookahead == '\r') ADVANCE(202); if (lookahead == '!') ADVANCE(279); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(392); - if (lookahead == '$') ADVANCE(121); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(400); + if (lookahead == '$') ADVANCE(122); if (lookahead == '&') ADVANCE(286); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(247); if (lookahead == '+') ADVANCE(239); if (lookahead == '-') ADVANCE(243); if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(336); - if (lookahead == '<') ADVANCE(100); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '0') ADVANCE(335); + if (lookahead == '<') ADVANCE(101); if (lookahead == '?') ADVANCE(277); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(236); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(196) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 197: if (eof) ADVANCE(200); if (lookahead == '!') ADVANCE(280); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(394); - if (lookahead == '$') ADVANCE(301); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(402); + if (lookahead == '$') ADVANCE(350); if (lookahead == '%') ADVANCE(253); if (lookahead == '&') ADVANCE(287); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == ')') ADVANCE(233); if (lookahead == '*') ADVANCE(248); @@ -12389,7 +12398,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(245); if (lookahead == '.') ADVANCE(221); if (lookahead == '/') ADVANCE(251); - if (lookahead == '0') ADVANCE(360); + if (lookahead == '0') ADVANCE(368); if (lookahead == ':') ADVANCE(274); if (lookahead == ';') ADVANCE(219); if (lookahead == '<') ADVANCE(254); @@ -12397,102 +12406,102 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(261); if (lookahead == '?') ADVANCE(278); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '\\') ADVANCE(183); if (lookahead == ']') ADVANCE(272); if (lookahead == '^') ADVANCE(285); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'a') ADVANCE(383); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'i') ADVANCE(373); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'o') ADVANCE(381); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'i') ADVANCE(381); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(237); if (lookahead == '}') ADVANCE(231); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(197) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(340); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(339); END_STATE(); case 198: if (eof) ADVANCE(200); if (lookahead == '!') ADVANCE(279); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(393); - if (lookahead == '$') ADVANCE(121); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(401); + if (lookahead == '$') ADVANCE(122); if (lookahead == '&') ADVANCE(286); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(247); if (lookahead == '+') ADVANCE(239); if (lookahead == ',') ADVANCE(230); if (lookahead == '-') ADVANCE(243); if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(336); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '0') ADVANCE(335); if (lookahead == ';') ADVANCE(219); - if (lookahead == '<') ADVANCE(100); + if (lookahead == '<') ADVANCE(101); if (lookahead == '>') ADVANCE(259); if (lookahead == '?') ADVANCE(277); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == ']') ADVANCE(272); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '|') ADVANCE(236); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(198) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 199: if (eof) ADVANCE(200); if (lookahead == '!') ADVANCE(279); - if (lookahead == '"') ADVANCE(404); - if (lookahead == '#') ADVANCE(392); - if (lookahead == '$') ADVANCE(121); + if (lookahead == '"') ADVANCE(352); + if (lookahead == '#') ADVANCE(400); + if (lookahead == '$') ADVANCE(122); if (lookahead == '&') ADVANCE(286); - if (lookahead == '\'') ADVANCE(405); + if (lookahead == '\'') ADVANCE(346); if (lookahead == '(') ADVANCE(232); if (lookahead == '*') ADVANCE(247); if (lookahead == '+') ADVANCE(239); if (lookahead == '-') ADVANCE(243); if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(97); - if (lookahead == '0') ADVANCE(336); - if (lookahead == '<') ADVANCE(100); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '0') ADVANCE(335); + if (lookahead == '<') ADVANCE(101); if (lookahead == '?') ADVANCE(277); if (lookahead == '@') ADVANCE(93); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); if (lookahead == '[') ADVANCE(282); if (lookahead == '^') ADVANCE(284); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(387); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(395); if (lookahead == '`') ADVANCE(184); - if (lookahead == 'c') ADVANCE(363); - if (lookahead == 'j') ADVANCE(385); - if (lookahead == 'm') ADVANCE(386); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == 'c') ADVANCE(371); + if (lookahead == 'j') ADVANCE(392); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'r') ADVANCE(372); if (lookahead == '{') ADVANCE(229); if (lookahead == '}') ADVANCE(231); if (lookahead == '~') ADVANCE(283); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(199) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); case 200: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -12539,7 +12548,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(398); + lookahead != '\\') ADVANCE(406); END_STATE(); case 209: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); @@ -12554,7 +12563,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(398); + lookahead != '\\') ADVANCE(406); END_STATE(); case 212: ACCEPT_TOKEN(anon_sym_SLASH_STAR); @@ -12597,29 +12606,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 221: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(391); + if (lookahead == '.') ADVANCE(399); END_STATE(); case 222: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(102); + if (lookahead == '.') ADVANCE(103); END_STATE(); case 223: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(102); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(345); + if (lookahead == '.') ADVANCE(103); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(344); END_STATE(); case 224: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(390); + if (lookahead == '.') ADVANCE(398); END_STATE(); case 225: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(390); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(345); + if (lookahead == '.') ADVANCE(398); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(344); END_STATE(); case 226: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(344); END_STATE(); case 227: ACCEPT_TOKEN(anon_sym_as); @@ -12632,7 +12641,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); case 229: ACCEPT_TOKEN(anon_sym_LBRACE); @@ -12661,7 +12670,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 237: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(332); + if (lookahead == '=') ADVANCE(331); if (lookahead == '|') ADVANCE(300); END_STATE(); case 238: @@ -12678,11 +12687,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 241: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '+') ADVANCE(275); - if (lookahead == '=') ADVANCE(330); + if (lookahead == '=') ADVANCE(329); END_STATE(); case 242: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(330); + if (lookahead == '=') ADVANCE(329); END_STATE(); case 243: ACCEPT_TOKEN(anon_sym_DASH); @@ -12694,11 +12703,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 245: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(276); - if (lookahead == '=') ADVANCE(331); + if (lookahead == '=') ADVANCE(330); END_STATE(); case 246: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(331); + if (lookahead == '=') ADVANCE(330); END_STATE(); case 247: ACCEPT_TOKEN(anon_sym_STAR); @@ -12709,7 +12718,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 249: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(322); + if (lookahead == '=') ADVANCE(321); END_STATE(); case 250: ACCEPT_TOKEN(anon_sym_SLASH); @@ -12720,14 +12729,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(210); if (lookahead == '/') ADVANCE(207); - if (lookahead == '=') ADVANCE(323); + if (lookahead == '=') ADVANCE(322); END_STATE(); case 252: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 253: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(324); + if (lookahead == '=') ADVANCE(323); END_STATE(); case 254: ACCEPT_TOKEN(anon_sym_LT); @@ -12811,7 +12820,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 274: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(334); + if (lookahead == '=') ADVANCE(333); END_STATE(); case 275: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); @@ -12824,7 +12833,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 278: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(310); + if (lookahead == '.') ADVANCE(308); END_STATE(); case 279: ACCEPT_TOKEN(anon_sym_BANG); @@ -12832,7 +12841,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 280: ACCEPT_TOKEN(anon_sym_BANG); if (lookahead == '=') ADVANCE(264); - if (lookahead == 'i') ADVANCE(142); + if (lookahead == 'i') ADVANCE(143); END_STATE(); case 281: ACCEPT_TOKEN(anon_sym_json_DOTdecode); @@ -12848,7 +12857,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 285: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(333); + if (lookahead == '=') ADVANCE(332); END_STATE(); case 286: ACCEPT_TOKEN(anon_sym_AMP); @@ -12856,7 +12865,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 287: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(299); - if (lookahead == '=') ADVANCE(328); + if (lookahead == '=') ADVANCE(327); if (lookahead == '^') ADVANCE(298); END_STATE(); case 288: @@ -12866,8 +12875,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 289: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(328); - if (lookahead == '^') ADVANCE(114); + if (lookahead == '=') ADVANCE(327); + if (lookahead == '^') ADVANCE(115); END_STATE(); case 290: ACCEPT_TOKEN(anon_sym_LT_DASH); @@ -12877,11 +12886,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 292: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(325); + if (lookahead == '=') ADVANCE(324); END_STATE(); case 293: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(326); + if (lookahead == '=') ADVANCE(325); if (lookahead == '>') ADVANCE(296); END_STATE(); case 294: @@ -12893,14 +12902,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 296: ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(327); + if (lookahead == '=') ADVANCE(326); END_STATE(); case 297: ACCEPT_TOKEN(anon_sym_AMP_CARET); END_STATE(); case 298: ACCEPT_TOKEN(anon_sym_AMP_CARET); - if (lookahead == '=') ADVANCE(329); + if (lookahead == '=') ADVANCE(328); END_STATE(); case 299: ACCEPT_TOKEN(anon_sym_AMP_AMP); @@ -12909,38 +12918,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 301: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); - 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(387); - if (lookahead == 'e') ADVANCE(376); - if (lookahead == 'f') ADVANCE(379); - if (lookahead == 'i') ADVANCE(375); - if (lookahead == '{') ADVANCE(403); - END_STATE(); - case 302: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == 'C') ADVANCE(366); - if (lookahead == 'J') ADVANCE(370); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - END_STATE(); - case 303: ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 304: + case 302: ACCEPT_TOKEN(anon_sym_or); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -12948,43 +12928,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 305: + case 303: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 306: + case 304: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(158); END_STATE(); - case 307: + case 305: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(179); END_STATE(); - case 308: + case 306: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(164); END_STATE(); - case 309: + case 307: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(172); END_STATE(); - case 310: + case 308: ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); - case 311: + case 309: + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + END_STATE(); + case 310: ACCEPT_TOKEN(anon_sym_POUND_LBRACK); END_STATE(); - case 312: + case 311: ACCEPT_TOKEN(anon_sym_DOLLARif); END_STATE(); - case 313: + case 312: ACCEPT_TOKEN(anon_sym_DOLLARif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -12992,12 +12975,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 314: + case 313: ACCEPT_TOKEN(anon_sym_DOLLARelse); END_STATE(); - case 315: + case 314: ACCEPT_TOKEN(anon_sym_DOLLARelse); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13005,12 +12988,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 316: + case 315: ACCEPT_TOKEN(anon_sym_is); END_STATE(); - case 317: + case 316: ACCEPT_TOKEN(anon_sym_is); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13018,15 +13001,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 318: + case 317: ACCEPT_TOKEN(anon_sym_BANGis); END_STATE(); - case 319: + case 318: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 320: + case 319: ACCEPT_TOKEN(anon_sym_in); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13034,51 +13017,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 321: + case 320: ACCEPT_TOKEN(anon_sym_BANGin); END_STATE(); - case 322: + case 321: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 323: + case 322: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 324: + case 323: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 325: + case 324: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 326: + case 325: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 327: + case 326: ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); - case 328: + case 327: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 329: + case 328: ACCEPT_TOKEN(anon_sym_AMP_CARET_EQ); END_STATE(); - case 330: + case 329: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 331: + case 330: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 332: + case 331: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 333: + case 332: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 334: + case 333: ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); - case 335: + case 334: ACCEPT_TOKEN(sym_int_literal); if (lookahead == '.') ADVANCE(151); if (lookahead == 'P' || @@ -13086,93 +13069,96 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(335); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(334); END_STATE(); - case 336: + case 335: ACCEPT_TOKEN(sym_int_literal); if (lookahead == '.') ADVANCE(160); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(128); + lookahead == 'b') ADVANCE(129); if (lookahead == 'E' || lookahead == 'e') ADVANCE(149); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(127); + lookahead == 'o') ADVANCE(128); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(105); + lookahead == 'x') ADVANCE(106); if (lookahead == '_') ADVANCE(153); if (lookahead == '8' || - lookahead == '9') ADVANCE(104); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(337); + lookahead == '9') ADVANCE(105); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(336); END_STATE(); - case 337: + case 336: ACCEPT_TOKEN(sym_int_literal); if (lookahead == '.') ADVANCE(160); if (lookahead == 'E' || lookahead == 'e') ADVANCE(149); if (lookahead == '_') ADVANCE(153); if (lookahead == '8' || - lookahead == '9') ADVANCE(104); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(337); + lookahead == '9') ADVANCE(105); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(336); END_STATE(); - case 338: + case 337: ACCEPT_TOKEN(sym_int_literal); if (lookahead == '.') ADVANCE(160); if (lookahead == 'E' || lookahead == 'e') ADVANCE(149); if (lookahead == '_') ADVANCE(159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(338); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(337); END_STATE(); - case 339: + case 338: ACCEPT_TOKEN(sym_int_literal); if (lookahead == '_') ADVANCE(154); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(339); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(338); END_STATE(); - case 340: + case 339: ACCEPT_TOKEN(sym_int_literal); if (lookahead == '_') ADVANCE(157); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(339); END_STATE(); - case 341: + case 340: ACCEPT_TOKEN(sym_int_literal); if (lookahead == '_') ADVANCE(152); if (lookahead == '0' || - lookahead == '1') ADVANCE(341); + lookahead == '1') ADVANCE(340); END_STATE(); - case 342: + case 341: ACCEPT_TOKEN(sym_int_literal); if (lookahead == '_') ADVANCE(166); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(342); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(341); END_STATE(); - case 343: + case 342: ACCEPT_TOKEN(sym_int_literal); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(128); + lookahead == 'b') ADVANCE(129); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(127); + lookahead == 'o') ADVANCE(128); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(129); + lookahead == 'x') ADVANCE(130); if (lookahead == '_') ADVANCE(154); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(339); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(338); END_STATE(); - case 344: + case 343: ACCEPT_TOKEN(sym_float_literal); if (lookahead == '_') ADVANCE(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(344); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(343); END_STATE(); - case 345: + case 344: ACCEPT_TOKEN(sym_float_literal); if (lookahead == 'E' || lookahead == 'e') ADVANCE(149); if (lookahead == '_') ADVANCE(160); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(344); END_STATE(); - case 346: + case 345: ACCEPT_TOKEN(sym_rune_literal); END_STATE(); + case 346: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); case 347: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); + ACCEPT_TOKEN(aux_sym_interpreted_string_literal_token1); if (lookahead == '*') ADVANCE(349); if (lookahead == '/') ADVANCE(349); if (lookahead != 0 && @@ -13181,7 +13167,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\\') ADVANCE(349); END_STATE(); case 348: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); + ACCEPT_TOKEN(aux_sym_interpreted_string_literal_token1); if (lookahead == '/') ADVANCE(347); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(348); @@ -13191,160 +13177,194 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\\') ADVANCE(349); END_STATE(); case 349: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); + ACCEPT_TOKEN(aux_sym_interpreted_string_literal_token1); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && lookahead != '\\') ADVANCE(349); END_STATE(); case 350: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(352); - if (lookahead == '/') ADVANCE(352); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == 'C') ADVANCE(374); + if (lookahead == 'J') ADVANCE(378); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == '{') ADVANCE(366); + END_STATE(); + case 351: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '{') ADVANCE(366); + END_STATE(); + case 352: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 353: + ACCEPT_TOKEN(aux_sym_interpreted_string_literal_token2); + if (lookahead == '*') ADVANCE(355); + if (lookahead == '/') ADVANCE(355); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(352); + lookahead != '\\') ADVANCE(355); END_STATE(); - case 351: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '/') ADVANCE(350); + case 354: + ACCEPT_TOKEN(aux_sym_interpreted_string_literal_token2); + if (lookahead == '/') ADVANCE(353); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(351); + lookahead == ' ') ADVANCE(354); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(352); + lookahead != '\\') ADVANCE(355); END_STATE(); - case 352: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); + case 355: + ACCEPT_TOKEN(aux_sym_interpreted_string_literal_token2); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(352); + lookahead != '\\') ADVANCE(355); END_STATE(); - case 353: + case 356: + ACCEPT_TOKEN(anon_sym_c_SQUOTE); + END_STATE(); + case 357: + ACCEPT_TOKEN(anon_sym_c_DQUOTE); + END_STATE(); + case 358: + ACCEPT_TOKEN(anon_sym_r_SQUOTE); + END_STATE(); + case 359: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(355); - if (lookahead == '/') ADVANCE(355); + if (lookahead == '*') ADVANCE(361); + if (lookahead == '/') ADVANCE(361); if (lookahead != 0 && - lookahead != '\'') ADVANCE(355); + lookahead != '\'') ADVANCE(361); END_STATE(); - case 354: + case 360: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '/') ADVANCE(353); + if (lookahead == '/') ADVANCE(359); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(354); + lookahead == ' ') ADVANCE(360); if (lookahead != 0 && - lookahead != '\'') ADVANCE(355); + lookahead != '\'') ADVANCE(361); END_STATE(); - case 355: + case 361: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); if (lookahead != 0 && - lookahead != '\'') ADVANCE(355); + lookahead != '\'') ADVANCE(361); END_STATE(); - case 356: + case 362: + ACCEPT_TOKEN(anon_sym_r_DQUOTE); + END_STATE(); + case 363: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(358); - if (lookahead == '/') ADVANCE(358); + if (lookahead == '*') ADVANCE(365); + if (lookahead == '/') ADVANCE(365); if (lookahead != 0 && - lookahead != '"') ADVANCE(358); + lookahead != '"') ADVANCE(365); END_STATE(); - case 357: + case 364: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '/') ADVANCE(356); + if (lookahead == '/') ADVANCE(363); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(357); + lookahead == ' ') ADVANCE(364); if (lookahead != 0 && - lookahead != '"') ADVANCE(358); + lookahead != '"') ADVANCE(365); END_STATE(); - case 358: + case 365: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); if (lookahead != 0 && - lookahead != '"') ADVANCE(358); + lookahead != '"') ADVANCE(365); END_STATE(); - case 359: + case 366: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + END_STATE(); + case 367: ACCEPT_TOKEN(aux_sym_format_specifier_token2); END_STATE(); - case 360: + case 368: ACCEPT_TOKEN(anon_sym_0); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(128); + lookahead == 'b') ADVANCE(129); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(127); + lookahead == 'o') ADVANCE(128); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(129); + lookahead == 'x') ADVANCE(130); if (lookahead == '_') ADVANCE(154); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(339); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(338); END_STATE(); - case 361: + case 369: ACCEPT_TOKEN(sym_pseudo_compile_time_identifier); if (lookahead == '.') ADVANCE(182); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(362); + lookahead == '_') ADVANCE(370); if (('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 362: + case 370: ACCEPT_TOKEN(sym_pseudo_compile_time_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(362); + lookahead == '_') ADVANCE(370); if (('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 363: + case 371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(406); - if (lookahead == '\'') ADVANCE(407); + if (lookahead == '"') ADVANCE(357); + if (lookahead == '\'') ADVANCE(356); 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(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 364: + case 372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(408); - if (lookahead == '\'') ADVANCE(409); + if (lookahead == '"') ADVANCE(362); + if (lookahead == '\'') ADVANCE(358); 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(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 365: + case 373: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(125); + if (lookahead == '.') ADVANCE(126); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(362); + lookahead == '_') ADVANCE(370); if (('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 366: + case 374: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(125); + if (lookahead == '.') ADVANCE(126); 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(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 367: + case 375: ACCEPT_TOKEN(sym_identifier); if (lookahead == '.') ADVANCE(182); if (('0' <= lookahead && lookahead <= '9') || @@ -13353,69 +13373,69 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 368: + case 376: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(133); + if (lookahead == '.') ADVANCE(134); 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(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 369: + case 377: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(361); + if (lookahead == 'S') ADVANCE(369); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(362); + lookahead == '_') ADVANCE(370); if (('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 370: + case 378: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(367); + if (lookahead == 'S') ADVANCE(375); 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(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 371: + case 379: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '[') ADVANCE(388); + if (lookahead == '[') ADVANCE(396); 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(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 372: + case 380: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(362); + lookahead == '_') ADVANCE(370); if (('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 373: + case 381: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(387); - if (lookahead == 'n') ADVANCE(320); - if (lookahead == 's') ADVANCE(317); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(395); + if (lookahead == 'n') ADVANCE(319); + if (lookahead == 's') ADVANCE(316); END_STATE(); - case 374: + case 382: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13424,10 +13444,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('f' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'e') ADVANCE(315); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'e') ADVANCE(314); END_STATE(); - case 375: + case 383: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13436,10 +13456,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('g' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'f') ADVANCE(313); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'f') ADVANCE(312); END_STATE(); - case 376: + case 384: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13448,10 +13468,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('m' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'l') ADVANCE(384); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'l') ADVANCE(393); END_STATE(); - case 377: + case 385: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13460,10 +13480,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('o' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'n') ADVANCE(368); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'n') ADVANCE(376); END_STATE(); - case 378: + case 386: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13472,10 +13492,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'o') ADVANCE(377); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'o') ADVANCE(385); END_STATE(); - case 379: + case 387: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13484,10 +13504,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'o') ADVANCE(382); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'o') ADVANCE(390); END_STATE(); - case 380: + case 388: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13496,10 +13516,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('q' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'p') ADVANCE(371); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'p') ADVANCE(379); END_STATE(); - case 381: + case 389: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13508,10 +13528,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('s' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'r') ADVANCE(304); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'r') ADVANCE(302); END_STATE(); - case 382: + case 390: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13520,10 +13540,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('s' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'r') ADVANCE(389); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'r') ADVANCE(397); END_STATE(); - case 383: + case 391: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13532,10 +13552,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('t' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); if (lookahead == 's') ADVANCE(228); END_STATE(); - case 384: + case 392: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13544,10 +13564,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('t' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 's') ADVANCE(374); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 's') ADVANCE(386); END_STATE(); - case 385: + case 393: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13556,10 +13576,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('t' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 's') ADVANCE(378); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 's') ADVANCE(382); END_STATE(); - case 386: + case 394: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13567,10 +13587,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('b' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); - if (lookahead == 'a') ADVANCE(380); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); + if (lookahead == 'a') ADVANCE(388); END_STATE(); - case 387: + case 395: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13578,12 +13598,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 388: + case 396: ACCEPT_TOKEN(anon_sym_map_LBRACK); END_STATE(); - case 389: + case 397: ACCEPT_TOKEN(anon_sym_DOLLARfor); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13591,105 +13611,84 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(387); + (945 <= lookahead && lookahead <= 969)) ADVANCE(395); END_STATE(); - case 390: + case 398: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 391: + case 399: ACCEPT_TOKEN(anon_sym_DOT_DOT); if (lookahead == '.') ADVANCE(267); END_STATE(); - case 392: + case 400: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 393: + case 401: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead == '!') ADVANCE(203); END_STATE(); - case 394: + case 402: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead == '!') ADVANCE(203); - if (lookahead == '[') ADVANCE(311); + if (lookahead == '[') ADVANCE(310); END_STATE(); - case 395: + case 403: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '[') ADVANCE(311); + if (lookahead == '[') ADVANCE(310); END_STATE(); - case 396: + case 404: ACCEPT_TOKEN(aux_sym_hash_statement_token1); if (lookahead == '*') ADVANCE(211); if (lookahead == '/') ADVANCE(208); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(398); + lookahead != '\\') ADVANCE(406); END_STATE(); - case 397: + case 405: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '/') ADVANCE(396); + if (lookahead == '/') ADVANCE(404); if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') ADVANCE(397); + lookahead == ' ') ADVANCE(405); if (lookahead != 0 && (lookahead < '\n' || '\r' < lookahead) && - lookahead != '\\') ADVANCE(398); + lookahead != '\\') ADVANCE(406); END_STATE(); - case 398: + case 406: ACCEPT_TOKEN(aux_sym_hash_statement_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && - lookahead != '\\') ADVANCE(398); + lookahead != '\\') ADVANCE(406); END_STATE(); - case 399: + case 407: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(401); - if (lookahead == '/') ADVANCE(401); + if (lookahead == '*') ADVANCE(409); + if (lookahead == '/') ADVANCE(409); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(401); + lookahead != '}') ADVANCE(409); END_STATE(); - case 400: + case 408: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '/') ADVANCE(399); + if (lookahead == '/') ADVANCE(407); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(400); + lookahead == ' ') ADVANCE(408); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(401); + lookahead != '}') ADVANCE(409); END_STATE(); - case 401: + case 409: ACCEPT_TOKEN(aux_sym__content_block_token1); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(401); + lookahead != '}') ADVANCE(409); END_STATE(); - case 402: + case 410: ACCEPT_TOKEN(anon_sym_AT_LBRACK); END_STATE(); - case 403: - ACCEPT_TOKEN(sym___dolcbr); - END_STATE(); - case 404: - ACCEPT_TOKEN(sym___double_quote); - END_STATE(); - case 405: - ACCEPT_TOKEN(sym___single_quote); - END_STATE(); - case 406: - ACCEPT_TOKEN(sym___c_double_quote); - END_STATE(); - case 407: - ACCEPT_TOKEN(sym___c_single_quote); - END_STATE(); - case 408: - ACCEPT_TOKEN(sym___r_double_quote); - END_STATE(); - case 409: - ACCEPT_TOKEN(sym___r_single_quote); - END_STATE(); default: return false; } @@ -14441,26 +14440,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [172] = {.lex_state = 79}, [173] = {.lex_state = 79}, [174] = {.lex_state = 79}, - [175] = {.lex_state = 79}, - [176] = {.lex_state = 79}, - [177] = {.lex_state = 187}, + [175] = {.lex_state = 187}, + [176] = {.lex_state = 80}, + [177] = {.lex_state = 79}, [178] = {.lex_state = 79}, [179] = {.lex_state = 79}, - [180] = {.lex_state = 79}, - [181] = {.lex_state = 187}, + [180] = {.lex_state = 187}, + [181] = {.lex_state = 79}, [182] = {.lex_state = 79}, [183] = {.lex_state = 187}, [184] = {.lex_state = 79}, - [185] = {.lex_state = 79}, - [186] = {.lex_state = 79}, + [185] = {.lex_state = 187}, + [186] = {.lex_state = 187}, [187] = {.lex_state = 79}, [188] = {.lex_state = 79}, [189] = {.lex_state = 79}, - [190] = {.lex_state = 187}, + [190] = {.lex_state = 79}, [191] = {.lex_state = 79}, - [192] = {.lex_state = 80}, + [192] = {.lex_state = 79}, [193] = {.lex_state = 79}, - [194] = {.lex_state = 187}, + [194] = {.lex_state = 79}, [195] = {.lex_state = 79}, [196] = {.lex_state = 79}, [197] = {.lex_state = 79}, @@ -14476,13 +14475,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [207] = {.lex_state = 79}, [208] = {.lex_state = 79}, [209] = {.lex_state = 79}, - [210] = {.lex_state = 185}, - [211] = {.lex_state = 79}, + [210] = {.lex_state = 79}, + [211] = {.lex_state = 30}, [212] = {.lex_state = 79}, [213] = {.lex_state = 79}, - [214] = {.lex_state = 79}, - [215] = {.lex_state = 30}, - [216] = {.lex_state = 185}, + [214] = {.lex_state = 185}, + [215] = {.lex_state = 185}, + [216] = {.lex_state = 79}, [217] = {.lex_state = 185}, [218] = {.lex_state = 185}, [219] = {.lex_state = 185}, @@ -14497,11 +14496,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [228] = {.lex_state = 185}, [229] = {.lex_state = 185}, [230] = {.lex_state = 185}, - [231] = {.lex_state = 185}, - [232] = {.lex_state = 189}, - [233] = {.lex_state = 185}, + [231] = {.lex_state = 189}, + [232] = {.lex_state = 79}, + [233] = {.lex_state = 79}, [234] = {.lex_state = 79}, - [235] = {.lex_state = 189}, + [235] = {.lex_state = 79}, [236] = {.lex_state = 79}, [237] = {.lex_state = 79}, [238] = {.lex_state = 79}, @@ -14510,11 +14509,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [241] = {.lex_state = 79}, [242] = {.lex_state = 79}, [243] = {.lex_state = 79}, - [244] = {.lex_state = 185}, + [244] = {.lex_state = 79}, [245] = {.lex_state = 79}, [246] = {.lex_state = 79}, [247] = {.lex_state = 79}, - [248] = {.lex_state = 185}, + [248] = {.lex_state = 79}, [249] = {.lex_state = 79}, [250] = {.lex_state = 79}, [251] = {.lex_state = 79}, @@ -14523,17 +14522,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [254] = {.lex_state = 79}, [255] = {.lex_state = 79}, [256] = {.lex_state = 79}, - [257] = {.lex_state = 189}, + [257] = {.lex_state = 79}, [258] = {.lex_state = 79}, [259] = {.lex_state = 79}, [260] = {.lex_state = 79}, [261] = {.lex_state = 79}, - [262] = {.lex_state = 79}, + [262] = {.lex_state = 189}, [263] = {.lex_state = 79}, - [264] = {.lex_state = 79}, + [264] = {.lex_state = 185}, [265] = {.lex_state = 79}, [266] = {.lex_state = 79}, - [267] = {.lex_state = 79}, + [267] = {.lex_state = 185}, [268] = {.lex_state = 79}, [269] = {.lex_state = 79}, [270] = {.lex_state = 79}, @@ -14543,18 +14542,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [274] = {.lex_state = 79}, [275] = {.lex_state = 79}, [276] = {.lex_state = 79}, - [277] = {.lex_state = 79}, + [277] = {.lex_state = 185}, [278] = {.lex_state = 79}, [279] = {.lex_state = 79}, [280] = {.lex_state = 79}, - [281] = {.lex_state = 79}, + [281] = {.lex_state = 189}, [282] = {.lex_state = 79}, [283] = {.lex_state = 79}, [284] = {.lex_state = 79}, [285] = {.lex_state = 79}, [286] = {.lex_state = 79}, [287] = {.lex_state = 79}, - [288] = {.lex_state = 79}, + [288] = {.lex_state = 185}, [289] = {.lex_state = 79}, [290] = {.lex_state = 79}, [291] = {.lex_state = 79}, @@ -14562,214 +14561,214 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [293] = {.lex_state = 79}, [294] = {.lex_state = 79}, [295] = {.lex_state = 79}, - [296] = {.lex_state = 79}, + [296] = {.lex_state = 185}, [297] = {.lex_state = 79}, [298] = {.lex_state = 79}, [299] = {.lex_state = 79}, - [300] = {.lex_state = 185}, + [300] = {.lex_state = 189}, [301] = {.lex_state = 79}, [302] = {.lex_state = 79}, [303] = {.lex_state = 79}, [304] = {.lex_state = 79}, - [305] = {.lex_state = 79}, - [306] = {.lex_state = 189}, - [307] = {.lex_state = 79}, - [308] = {.lex_state = 79}, + [305] = {.lex_state = 185}, + [306] = {.lex_state = 185}, + [307] = {.lex_state = 185}, + [308] = {.lex_state = 80}, [309] = {.lex_state = 185}, [310] = {.lex_state = 185}, - [311] = {.lex_state = 79}, - [312] = {.lex_state = 185}, - [313] = {.lex_state = 80}, - [314] = {.lex_state = 80}, + [311] = {.lex_state = 185}, + [312] = {.lex_state = 79}, + [313] = {.lex_state = 185}, + [314] = {.lex_state = 185}, [315] = {.lex_state = 185}, - [316] = {.lex_state = 79}, - [317] = {.lex_state = 185}, + [316] = {.lex_state = 185}, + [317] = {.lex_state = 79}, [318] = {.lex_state = 185}, - [319] = {.lex_state = 79}, + [319] = {.lex_state = 185}, [320] = {.lex_state = 185}, - [321] = {.lex_state = 80}, - [322] = {.lex_state = 80}, - [323] = {.lex_state = 79}, - [324] = {.lex_state = 79}, - [325] = {.lex_state = 79}, - [326] = {.lex_state = 79}, - [327] = {.lex_state = 79}, - [328] = {.lex_state = 185}, - [329] = {.lex_state = 79}, - [330] = {.lex_state = 80}, - [331] = {.lex_state = 80}, + [321] = {.lex_state = 185}, + [322] = {.lex_state = 185}, + [323] = {.lex_state = 185}, + [324] = {.lex_state = 185}, + [325] = {.lex_state = 185}, + [326] = {.lex_state = 185}, + [327] = {.lex_state = 185}, + [328] = {.lex_state = 79}, + [329] = {.lex_state = 185}, + [330] = {.lex_state = 185}, + [331] = {.lex_state = 185}, [332] = {.lex_state = 185}, - [333] = {.lex_state = 79}, + [333] = {.lex_state = 185}, [334] = {.lex_state = 185}, [335] = {.lex_state = 185}, - [336] = {.lex_state = 80}, - [337] = {.lex_state = 80}, - [338] = {.lex_state = 79}, - [339] = {.lex_state = 79}, + [336] = {.lex_state = 185}, + [337] = {.lex_state = 185}, + [338] = {.lex_state = 185}, + [339] = {.lex_state = 185}, [340] = {.lex_state = 185}, - [341] = {.lex_state = 79}, + [341] = {.lex_state = 185}, [342] = {.lex_state = 185}, - [343] = {.lex_state = 79}, + [343] = {.lex_state = 185}, [344] = {.lex_state = 185}, [345] = {.lex_state = 185}, - [346] = {.lex_state = 79}, - [347] = {.lex_state = 79}, - [348] = {.lex_state = 80}, - [349] = {.lex_state = 80}, + [346] = {.lex_state = 185}, + [347] = {.lex_state = 185}, + [348] = {.lex_state = 185}, + [349] = {.lex_state = 185}, [350] = {.lex_state = 185}, - [351] = {.lex_state = 79}, - [352] = {.lex_state = 79}, + [351] = {.lex_state = 185}, + [352] = {.lex_state = 185}, [353] = {.lex_state = 79}, [354] = {.lex_state = 80}, - [355] = {.lex_state = 79}, - [356] = {.lex_state = 185}, + [355] = {.lex_state = 80}, + [356] = {.lex_state = 79}, [357] = {.lex_state = 185}, - [358] = {.lex_state = 79}, + [358] = {.lex_state = 185}, [359] = {.lex_state = 185}, [360] = {.lex_state = 185}, - [361] = {.lex_state = 185}, + [361] = {.lex_state = 79}, [362] = {.lex_state = 185}, - [363] = {.lex_state = 80}, - [364] = {.lex_state = 185}, - [365] = {.lex_state = 79}, - [366] = {.lex_state = 79}, + [363] = {.lex_state = 79}, + [364] = {.lex_state = 79}, + [365] = {.lex_state = 185}, + [366] = {.lex_state = 185}, [367] = {.lex_state = 79}, - [368] = {.lex_state = 79}, + [368] = {.lex_state = 80}, [369] = {.lex_state = 79}, - [370] = {.lex_state = 80}, - [371] = {.lex_state = 185}, - [372] = {.lex_state = 79}, + [370] = {.lex_state = 185}, + [371] = {.lex_state = 79}, + [372] = {.lex_state = 80}, [373] = {.lex_state = 79}, - [374] = {.lex_state = 185}, - [375] = {.lex_state = 79}, + [374] = {.lex_state = 79}, + [375] = {.lex_state = 185}, [376] = {.lex_state = 185}, - [377] = {.lex_state = 185}, - [378] = {.lex_state = 185}, + [377] = {.lex_state = 80}, + [378] = {.lex_state = 79}, [379] = {.lex_state = 80}, [380] = {.lex_state = 185}, - [381] = {.lex_state = 185}, - [382] = {.lex_state = 185}, - [383] = {.lex_state = 185}, - [384] = {.lex_state = 79}, + [381] = {.lex_state = 80}, + [382] = {.lex_state = 79}, + [383] = {.lex_state = 79}, + [384] = {.lex_state = 185}, [385] = {.lex_state = 185}, - [386] = {.lex_state = 185}, + [386] = {.lex_state = 79}, [387] = {.lex_state = 185}, - [388] = {.lex_state = 185}, + [388] = {.lex_state = 79}, [389] = {.lex_state = 79}, - [390] = {.lex_state = 80}, - [391] = {.lex_state = 80}, - [392] = {.lex_state = 79}, - [393] = {.lex_state = 185}, + [390] = {.lex_state = 79}, + [391] = {.lex_state = 79}, + [392] = {.lex_state = 185}, + [393] = {.lex_state = 79}, [394] = {.lex_state = 79}, - [395] = {.lex_state = 185}, - [396] = {.lex_state = 79}, + [395] = {.lex_state = 80}, + [396] = {.lex_state = 80}, [397] = {.lex_state = 79}, [398] = {.lex_state = 79}, [399] = {.lex_state = 185}, - [400] = {.lex_state = 185}, - [401] = {.lex_state = 185}, - [402] = {.lex_state = 79}, - [403] = {.lex_state = 185}, + [400] = {.lex_state = 79}, + [401] = {.lex_state = 79}, + [402] = {.lex_state = 185}, + [403] = {.lex_state = 79}, [404] = {.lex_state = 185}, [405] = {.lex_state = 79}, [406] = {.lex_state = 79}, [407] = {.lex_state = 79}, [408] = {.lex_state = 80}, - [409] = {.lex_state = 185}, + [409] = {.lex_state = 80}, [410] = {.lex_state = 185}, - [411] = {.lex_state = 80}, + [411] = {.lex_state = 185}, [412] = {.lex_state = 185}, - [413] = {.lex_state = 185}, + [413] = {.lex_state = 79}, [414] = {.lex_state = 185}, [415] = {.lex_state = 185}, - [416] = {.lex_state = 185}, - [417] = {.lex_state = 185}, - [418] = {.lex_state = 185}, - [419] = {.lex_state = 185}, + [416] = {.lex_state = 79}, + [417] = {.lex_state = 79}, + [418] = {.lex_state = 80}, + [419] = {.lex_state = 80}, [420] = {.lex_state = 79}, [421] = {.lex_state = 185}, - [422] = {.lex_state = 185}, - [423] = {.lex_state = 185}, - [424] = {.lex_state = 79}, + [422] = {.lex_state = 80}, + [423] = {.lex_state = 80}, + [424] = {.lex_state = 80}, [425] = {.lex_state = 185}, [426] = {.lex_state = 185}, [427] = {.lex_state = 185}, - [428] = {.lex_state = 185}, - [429] = {.lex_state = 185}, - [430] = {.lex_state = 185}, - [431] = {.lex_state = 185}, - [432] = {.lex_state = 79}, + [428] = {.lex_state = 79}, + [429] = {.lex_state = 80}, + [430] = {.lex_state = 79}, + [431] = {.lex_state = 79}, + [432] = {.lex_state = 185}, [433] = {.lex_state = 185}, - [434] = {.lex_state = 79}, + [434] = {.lex_state = 185}, [435] = {.lex_state = 185}, - [436] = {.lex_state = 79}, + [436] = {.lex_state = 185}, [437] = {.lex_state = 79}, - [438] = {.lex_state = 80}, + [438] = {.lex_state = 79}, [439] = {.lex_state = 79}, - [440] = {.lex_state = 80}, + [440] = {.lex_state = 185}, [441] = {.lex_state = 79}, [442] = {.lex_state = 185}, [443] = {.lex_state = 185}, - [444] = {.lex_state = 79}, - [445] = {.lex_state = 79}, - [446] = {.lex_state = 185}, + [444] = {.lex_state = 185}, + [445] = {.lex_state = 185}, + [446] = {.lex_state = 79}, [447] = {.lex_state = 185}, [448] = {.lex_state = 79}, [449] = {.lex_state = 79}, - [450] = {.lex_state = 185}, + [450] = {.lex_state = 79}, [451] = {.lex_state = 79}, - [452] = {.lex_state = 185}, - [453] = {.lex_state = 185}, + [452] = {.lex_state = 80}, + [453] = {.lex_state = 80}, [454] = {.lex_state = 185}, [455] = {.lex_state = 185}, [456] = {.lex_state = 79}, [457] = {.lex_state = 185}, - [458] = {.lex_state = 79}, - [459] = {.lex_state = 79}, + [458] = {.lex_state = 185}, + [459] = {.lex_state = 185}, [460] = {.lex_state = 185}, [461] = {.lex_state = 185}, [462] = {.lex_state = 185}, - [463] = {.lex_state = 185}, - [464] = {.lex_state = 185}, - [465] = {.lex_state = 185}, + [463] = {.lex_state = 79}, + [464] = {.lex_state = 79}, + [465] = {.lex_state = 79}, [466] = {.lex_state = 79}, - [467] = {.lex_state = 185}, + [467] = {.lex_state = 80}, [468] = {.lex_state = 80}, - [469] = {.lex_state = 185}, - [470] = {.lex_state = 80}, - [471] = {.lex_state = 185}, + [469] = {.lex_state = 79}, + [470] = {.lex_state = 79}, + [471] = {.lex_state = 79}, [472] = {.lex_state = 185}, - [473] = {.lex_state = 185}, - [474] = {.lex_state = 79}, - [475] = {.lex_state = 79}, + [473] = {.lex_state = 79}, + [474] = {.lex_state = 185}, + [475] = {.lex_state = 185}, [476] = {.lex_state = 185}, - [477] = {.lex_state = 185}, - [478] = {.lex_state = 79}, - [479] = {.lex_state = 185}, - [480] = {.lex_state = 79}, + [477] = {.lex_state = 80}, + [478] = {.lex_state = 80}, + [479] = {.lex_state = 79}, + [480] = {.lex_state = 185}, [481] = {.lex_state = 185}, - [482] = {.lex_state = 80}, + [482] = {.lex_state = 79}, [483] = {.lex_state = 185}, [484] = {.lex_state = 185}, - [485] = {.lex_state = 80}, + [485] = {.lex_state = 185}, [486] = {.lex_state = 185}, - [487] = {.lex_state = 185}, - [488] = {.lex_state = 185}, - [489] = {.lex_state = 185}, - [490] = {.lex_state = 185}, + [487] = {.lex_state = 79}, + [488] = {.lex_state = 79}, + [489] = {.lex_state = 79}, + [490] = {.lex_state = 79}, [491] = {.lex_state = 185}, [492] = {.lex_state = 79}, [493] = {.lex_state = 185}, [494] = {.lex_state = 79}, [495] = {.lex_state = 185}, - [496] = {.lex_state = 79}, + [496] = {.lex_state = 185}, [497] = {.lex_state = 79}, - [498] = {.lex_state = 185}, - [499] = {.lex_state = 185}, + [498] = {.lex_state = 79}, + [499] = {.lex_state = 79}, [500] = {.lex_state = 185}, - [501] = {.lex_state = 185}, + [501] = {.lex_state = 79}, [502] = {.lex_state = 79}, - [503] = {.lex_state = 185}, + [503] = {.lex_state = 79}, [504] = {.lex_state = 79}, [505] = {.lex_state = 79}, [506] = {.lex_state = 79}, @@ -15246,16 +15245,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [977] = {.lex_state = 187}, [978] = {.lex_state = 187}, [979] = {.lex_state = 187}, - [980] = {.lex_state = 187}, - [981] = {.lex_state = 191}, + [980] = {.lex_state = 191}, + [981] = {.lex_state = 37}, [982] = {.lex_state = 37}, [983] = {.lex_state = 37}, [984] = {.lex_state = 191}, - [985] = {.lex_state = 187}, - [986] = {.lex_state = 191}, - [987] = {.lex_state = 37}, + [985] = {.lex_state = 191}, + [986] = {.lex_state = 187}, + [987] = {.lex_state = 191}, [988] = {.lex_state = 187}, - [989] = {.lex_state = 191}, + [989] = {.lex_state = 187}, [990] = {.lex_state = 37}, [991] = {.lex_state = 37}, [992] = {.lex_state = 187}, @@ -15368,42 +15367,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1099] = {.lex_state = 194}, [1100] = {.lex_state = 194}, [1101] = {.lex_state = 6}, - [1102] = {.lex_state = 193}, - [1103] = {.lex_state = 6}, + [1102] = {.lex_state = 6}, + [1103] = {.lex_state = 193}, [1104] = {.lex_state = 6}, [1105] = {.lex_state = 6}, [1106] = {.lex_state = 6}, [1107] = {.lex_state = 2}, [1108] = {.lex_state = 2}, [1109] = {.lex_state = 2}, - [1110] = {.lex_state = 10}, + [1110] = {.lex_state = 2}, [1111] = {.lex_state = 2}, [1112] = {.lex_state = 2}, - [1113] = {.lex_state = 2}, + [1113] = {.lex_state = 10}, [1114] = {.lex_state = 2}, [1115] = {.lex_state = 2}, [1116] = {.lex_state = 2}, [1117] = {.lex_state = 2}, [1118] = {.lex_state = 2}, - [1119] = {.lex_state = 2}, + [1119] = {.lex_state = 10}, [1120] = {.lex_state = 10}, - [1121] = {.lex_state = 10}, - [1122] = {.lex_state = 10}, + [1121] = {.lex_state = 2}, + [1122] = {.lex_state = 2}, [1123] = {.lex_state = 10}, [1124] = {.lex_state = 2}, - [1125] = {.lex_state = 2}, + [1125] = {.lex_state = 10}, [1126] = {.lex_state = 2}, [1127] = {.lex_state = 2}, [1128] = {.lex_state = 2}, - [1129] = {.lex_state = 4}, - [1130] = {.lex_state = 2}, + [1129] = {.lex_state = 2}, + [1130] = {.lex_state = 4}, [1131] = {.lex_state = 2}, [1132] = {.lex_state = 2}, - [1133] = {.lex_state = 2}, - [1134] = {.lex_state = 4}, + [1133] = {.lex_state = 4}, + [1134] = {.lex_state = 2}, [1135] = {.lex_state = 4}, - [1136] = {.lex_state = 4}, - [1137] = {.lex_state = 2}, + [1136] = {.lex_state = 2}, + [1137] = {.lex_state = 4}, [1138] = {.lex_state = 2}, [1139] = {.lex_state = 2}, [1140] = {.lex_state = 2}, @@ -15431,13 +15430,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1162] = {.lex_state = 2}, [1163] = {.lex_state = 2}, [1164] = {.lex_state = 2}, - [1165] = {.lex_state = 2}, + [1165] = {.lex_state = 41}, [1166] = {.lex_state = 2}, - [1167] = {.lex_state = 2}, + [1167] = {.lex_state = 41}, [1168] = {.lex_state = 2}, [1169] = {.lex_state = 2}, - [1170] = {.lex_state = 2}, - [1171] = {.lex_state = 41}, + [1170] = {.lex_state = 41}, + [1171] = {.lex_state = 2}, [1172] = {.lex_state = 2}, [1173] = {.lex_state = 2}, [1174] = {.lex_state = 2}, @@ -15454,22 +15453,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1185] = {.lex_state = 2}, [1186] = {.lex_state = 2}, [1187] = {.lex_state = 2}, - [1188] = {.lex_state = 41}, + [1188] = {.lex_state = 2}, [1189] = {.lex_state = 2}, [1190] = {.lex_state = 2}, [1191] = {.lex_state = 2}, - [1192] = {.lex_state = 2}, + [1192] = {.lex_state = 41}, [1193] = {.lex_state = 2}, [1194] = {.lex_state = 2}, - [1195] = {.lex_state = 43}, - [1196] = {.lex_state = 43}, - [1197] = {.lex_state = 43}, + [1195] = {.lex_state = 2}, + [1196] = {.lex_state = 2}, + [1197] = {.lex_state = 2}, [1198] = {.lex_state = 2}, [1199] = {.lex_state = 2}, - [1200] = {.lex_state = 2}, - [1201] = {.lex_state = 2}, - [1202] = {.lex_state = 43}, - [1203] = {.lex_state = 2}, + [1200] = {.lex_state = 45}, + [1201] = {.lex_state = 45}, + [1202] = {.lex_state = 2}, + [1203] = {.lex_state = 45}, [1204] = {.lex_state = 2}, [1205] = {.lex_state = 2}, [1206] = {.lex_state = 2}, @@ -15488,7 +15487,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1219] = {.lex_state = 2}, [1220] = {.lex_state = 2}, [1221] = {.lex_state = 2}, - [1222] = {.lex_state = 41}, + [1222] = {.lex_state = 2}, [1223] = {.lex_state = 2}, [1224] = {.lex_state = 2}, [1225] = {.lex_state = 2}, @@ -15513,43 +15512,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1244] = {.lex_state = 2}, [1245] = {.lex_state = 2}, [1246] = {.lex_state = 2}, - [1247] = {.lex_state = 41}, - [1248] = {.lex_state = 41}, - [1249] = {.lex_state = 41}, - [1250] = {.lex_state = 43}, - [1251] = {.lex_state = 2}, - [1252] = {.lex_state = 2}, - [1253] = {.lex_state = 2}, - [1254] = {.lex_state = 37}, - [1255] = {.lex_state = 2}, + [1247] = {.lex_state = 2}, + [1248] = {.lex_state = 2}, + [1249] = {.lex_state = 2}, + [1250] = {.lex_state = 41}, + [1251] = {.lex_state = 45}, + [1252] = {.lex_state = 45}, + [1253] = {.lex_state = 45}, + [1254] = {.lex_state = 2}, + [1255] = {.lex_state = 37}, [1256] = {.lex_state = 37}, - [1257] = {.lex_state = 41}, - [1258] = {.lex_state = 37}, + [1257] = {.lex_state = 37}, + [1258] = {.lex_state = 45}, [1259] = {.lex_state = 37}, [1260] = {.lex_state = 37}, [1261] = {.lex_state = 37}, [1262] = {.lex_state = 37}, - [1263] = {.lex_state = 39}, - [1264] = {.lex_state = 37}, + [1263] = {.lex_state = 37}, + [1264] = {.lex_state = 39}, [1265] = {.lex_state = 37}, [1266] = {.lex_state = 37}, [1267] = {.lex_state = 37}, [1268] = {.lex_state = 37}, - [1269] = {.lex_state = 39}, + [1269] = {.lex_state = 37}, [1270] = {.lex_state = 37}, [1271] = {.lex_state = 37}, [1272] = {.lex_state = 37}, [1273] = {.lex_state = 37}, - [1274] = {.lex_state = 37}, - [1275] = {.lex_state = 39}, - [1276] = {.lex_state = 37}, + [1274] = {.lex_state = 39}, + [1275] = {.lex_state = 37}, + [1276] = {.lex_state = 39}, [1277] = {.lex_state = 37}, [1278] = {.lex_state = 37}, [1279] = {.lex_state = 37}, [1280] = {.lex_state = 37}, [1281] = {.lex_state = 37}, - [1282] = {.lex_state = 37}, - [1283] = {.lex_state = 39}, + [1282] = {.lex_state = 39}, + [1283] = {.lex_state = 37}, [1284] = {.lex_state = 37}, [1285] = {.lex_state = 37}, [1286] = {.lex_state = 37}, @@ -15659,29 +15658,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1390] = {.lex_state = 37}, [1391] = {.lex_state = 14}, [1392] = {.lex_state = 37}, - [1393] = {.lex_state = 14}, + [1393] = {.lex_state = 37}, [1394] = {.lex_state = 14}, [1395] = {.lex_state = 14}, [1396] = {.lex_state = 37}, - [1397] = {.lex_state = 37}, - [1398] = {.lex_state = 14}, + [1397] = {.lex_state = 14}, + [1398] = {.lex_state = 37}, [1399] = {.lex_state = 37}, - [1400] = {.lex_state = 37}, - [1401] = {.lex_state = 195}, + [1400] = {.lex_state = 14}, + [1401] = {.lex_state = 49}, [1402] = {.lex_state = 49}, [1403] = {.lex_state = 49}, - [1404] = {.lex_state = 49}, + [1404] = {.lex_state = 195}, [1405] = {.lex_state = 194}, [1406] = {.lex_state = 194}, [1407] = {.lex_state = 194}, - [1408] = {.lex_state = 195}, - [1409] = {.lex_state = 49}, + [1408] = {.lex_state = 194}, + [1409] = {.lex_state = 14}, [1410] = {.lex_state = 194}, - [1411] = {.lex_state = 14}, + [1411] = {.lex_state = 195}, [1412] = {.lex_state = 195}, [1413] = {.lex_state = 194}, - [1414] = {.lex_state = 194}, - [1415] = {.lex_state = 195}, + [1414] = {.lex_state = 195}, + [1415] = {.lex_state = 49}, [1416] = {.lex_state = 194}, [1417] = {.lex_state = 194}, [1418] = {.lex_state = 194}, @@ -15689,7 +15688,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1420] = {.lex_state = 194}, [1421] = {.lex_state = 194}, [1422] = {.lex_state = 194}, - [1423] = {.lex_state = 14}, + [1423] = {.lex_state = 194}, [1424] = {.lex_state = 194}, [1425] = {.lex_state = 194}, [1426] = {.lex_state = 194}, @@ -15698,7 +15697,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1429] = {.lex_state = 194}, [1430] = {.lex_state = 194}, [1431] = {.lex_state = 194}, - [1432] = {.lex_state = 194}, + [1432] = {.lex_state = 14}, [1433] = {.lex_state = 194}, [1434] = {.lex_state = 194}, [1435] = {.lex_state = 194}, @@ -15713,23 +15712,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1444] = {.lex_state = 194}, [1445] = {.lex_state = 194}, [1446] = {.lex_state = 194}, - [1447] = {.lex_state = 194}, + [1447] = {.lex_state = 14}, [1448] = {.lex_state = 194}, [1449] = {.lex_state = 194}, [1450] = {.lex_state = 194}, [1451] = {.lex_state = 194}, [1452] = {.lex_state = 194}, [1453] = {.lex_state = 194}, - [1454] = {.lex_state = 14}, - [1455] = {.lex_state = 14}, + [1454] = {.lex_state = 194}, + [1455] = {.lex_state = 194}, [1456] = {.lex_state = 194}, [1457] = {.lex_state = 194}, [1458] = {.lex_state = 194}, - [1459] = {.lex_state = 14}, + [1459] = {.lex_state = 194}, [1460] = {.lex_state = 194}, [1461] = {.lex_state = 194}, [1462] = {.lex_state = 194}, - [1463] = {.lex_state = 194}, + [1463] = {.lex_state = 14}, [1464] = {.lex_state = 194}, [1465] = {.lex_state = 194}, [1466] = {.lex_state = 194}, @@ -15741,7 +15740,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1472] = {.lex_state = 194}, [1473] = {.lex_state = 194}, [1474] = {.lex_state = 194}, - [1475] = {.lex_state = 194}, + [1475] = {.lex_state = 14}, [1476] = {.lex_state = 194}, [1477] = {.lex_state = 194}, [1478] = {.lex_state = 194}, @@ -15760,7 +15759,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1491] = {.lex_state = 194}, [1492] = {.lex_state = 194}, [1493] = {.lex_state = 194}, - [1494] = {.lex_state = 49}, + [1494] = {.lex_state = 194}, [1495] = {.lex_state = 194}, [1496] = {.lex_state = 194}, [1497] = {.lex_state = 194}, @@ -15769,9 +15768,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1500] = {.lex_state = 194}, [1501] = {.lex_state = 194}, [1502] = {.lex_state = 194}, - [1503] = {.lex_state = 194}, + [1503] = {.lex_state = 199}, [1504] = {.lex_state = 194}, - [1505] = {.lex_state = 194}, + [1505] = {.lex_state = 199}, [1506] = {.lex_state = 194}, [1507] = {.lex_state = 194}, [1508] = {.lex_state = 194}, @@ -15779,14 +15778,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1510] = {.lex_state = 194}, [1511] = {.lex_state = 194}, [1512] = {.lex_state = 194}, - [1513] = {.lex_state = 194}, + [1513] = {.lex_state = 49}, [1514] = {.lex_state = 194}, [1515] = {.lex_state = 194}, [1516] = {.lex_state = 194}, - [1517] = {.lex_state = 199}, + [1517] = {.lex_state = 194}, [1518] = {.lex_state = 194}, [1519] = {.lex_state = 194}, - [1520] = {.lex_state = 194}, + [1520] = {.lex_state = 53}, [1521] = {.lex_state = 194}, [1522] = {.lex_state = 194}, [1523] = {.lex_state = 194}, @@ -15800,8 +15799,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1531] = {.lex_state = 194}, [1532] = {.lex_state = 194}, [1533] = {.lex_state = 194}, - [1534] = {.lex_state = 53}, - [1535] = {.lex_state = 199}, + [1534] = {.lex_state = 194}, + [1535] = {.lex_state = 194}, [1536] = {.lex_state = 194}, [1537] = {.lex_state = 194}, [1538] = {.lex_state = 194}, @@ -15841,19 +15840,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1572] = {.lex_state = 194}, [1573] = {.lex_state = 194}, [1574] = {.lex_state = 194}, - [1575] = {.lex_state = 53}, - [1576] = {.lex_state = 53}, - [1577] = {.lex_state = 199}, + [1575] = {.lex_state = 199}, + [1576] = {.lex_state = 49}, + [1577] = {.lex_state = 53}, [1578] = {.lex_state = 53}, [1579] = {.lex_state = 53}, - [1580] = {.lex_state = 49}, - [1581] = {.lex_state = 79}, + [1580] = {.lex_state = 53}, + [1581] = {.lex_state = 49}, [1582] = {.lex_state = 199}, [1583] = {.lex_state = 199}, - [1584] = {.lex_state = 199}, - [1585] = {.lex_state = 49}, - [1586] = {.lex_state = 199}, - [1587] = {.lex_state = 49}, + [1584] = {.lex_state = 49}, + [1585] = {.lex_state = 199}, + [1586] = {.lex_state = 79}, + [1587] = {.lex_state = 199}, [1588] = {.lex_state = 199}, [1589] = {.lex_state = 6}, [1590] = {.lex_state = 6}, @@ -15865,17 +15864,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1596] = {.lex_state = 10}, [1597] = {.lex_state = 10}, [1598] = {.lex_state = 10}, - [1599] = {.lex_state = 43}, - [1600] = {.lex_state = 43}, - [1601] = {.lex_state = 43}, - [1602] = {.lex_state = 43}, + [1599] = {.lex_state = 41}, + [1600] = {.lex_state = 41}, + [1601] = {.lex_state = 41}, + [1602] = {.lex_state = 41}, [1603] = {.lex_state = 41}, - [1604] = {.lex_state = 43}, - [1605] = {.lex_state = 24}, - [1606] = {.lex_state = 41}, - [1607] = {.lex_state = 41}, - [1608] = {.lex_state = 41}, - [1609] = {.lex_state = 41}, + [1604] = {.lex_state = 24}, + [1605] = {.lex_state = 45}, + [1606] = {.lex_state = 45}, + [1607] = {.lex_state = 45}, + [1608] = {.lex_state = 45}, + [1609] = {.lex_state = 45}, [1610] = {.lex_state = 24}, [1611] = {.lex_state = 24}, [1612] = {.lex_state = 24}, @@ -15888,56 +15887,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1619] = {.lex_state = 24}, [1620] = {.lex_state = 24}, [1621] = {.lex_state = 24}, - [1622] = {.lex_state = 18}, - [1623] = {.lex_state = 18}, - [1624] = {.lex_state = 7}, + [1622] = {.lex_state = 26}, + [1623] = {.lex_state = 7}, + [1624] = {.lex_state = 18}, [1625] = {.lex_state = 7}, - [1626] = {.lex_state = 26}, + [1626] = {.lex_state = 18}, [1627] = {.lex_state = 24}, - [1628] = {.lex_state = 26}, + [1628] = {.lex_state = 24}, [1629] = {.lex_state = 24}, - [1630] = {.lex_state = 69}, - [1631] = {.lex_state = 24}, - [1632] = {.lex_state = 26}, + [1630] = {.lex_state = 24}, + [1631] = {.lex_state = 26}, + [1632] = {.lex_state = 24}, [1633] = {.lex_state = 24}, [1634] = {.lex_state = 24}, [1635] = {.lex_state = 24}, - [1636] = {.lex_state = 69}, + [1636] = {.lex_state = 26}, [1637] = {.lex_state = 24}, [1638] = {.lex_state = 24}, [1639] = {.lex_state = 24}, [1640] = {.lex_state = 24}, [1641] = {.lex_state = 24}, [1642] = {.lex_state = 24}, - [1643] = {.lex_state = 24}, - [1644] = {.lex_state = 24}, - [1645] = {.lex_state = 26}, - [1646] = {.lex_state = 26}, + [1643] = {.lex_state = 26}, + [1644] = {.lex_state = 26}, + [1645] = {.lex_state = 24}, + [1646] = {.lex_state = 24}, [1647] = {.lex_state = 24}, [1648] = {.lex_state = 24}, [1649] = {.lex_state = 26}, [1650] = {.lex_state = 26}, [1651] = {.lex_state = 24}, - [1652] = {.lex_state = 24}, - [1653] = {.lex_state = 24}, - [1654] = {.lex_state = 26}, + [1652] = {.lex_state = 26}, + [1653] = {.lex_state = 199}, + [1654] = {.lex_state = 24}, [1655] = {.lex_state = 24}, - [1656] = {.lex_state = 26}, - [1657] = {.lex_state = 26}, - [1658] = {.lex_state = 26}, - [1659] = {.lex_state = 26}, - [1660] = {.lex_state = 24}, - [1661] = {.lex_state = 24}, + [1656] = {.lex_state = 24}, + [1657] = {.lex_state = 24}, + [1658] = {.lex_state = 24}, + [1659] = {.lex_state = 24}, + [1660] = {.lex_state = 26}, + [1661] = {.lex_state = 26}, [1662] = {.lex_state = 24}, - [1663] = {.lex_state = 199}, + [1663] = {.lex_state = 24}, [1664] = {.lex_state = 24}, - [1665] = {.lex_state = 24}, - [1666] = {.lex_state = 24}, + [1665] = {.lex_state = 69}, + [1666] = {.lex_state = 69}, [1667] = {.lex_state = 24}, - [1668] = {.lex_state = 24}, - [1669] = {.lex_state = 24}, + [1668] = {.lex_state = 26}, + [1669] = {.lex_state = 26}, [1670] = {.lex_state = 24}, - [1671] = {.lex_state = 11}, + [1671] = {.lex_state = 24}, [1672] = {.lex_state = 24}, [1673] = {.lex_state = 24}, [1674] = {.lex_state = 24}, @@ -15953,32 +15952,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1684] = {.lex_state = 24}, [1685] = {.lex_state = 24}, [1686] = {.lex_state = 24}, - [1687] = {.lex_state = 20}, + [1687] = {.lex_state = 24}, [1688] = {.lex_state = 24}, [1689] = {.lex_state = 24}, [1690] = {.lex_state = 24}, [1691] = {.lex_state = 24}, [1692] = {.lex_state = 24}, [1693] = {.lex_state = 24}, - [1694] = {.lex_state = 26}, + [1694] = {.lex_state = 24}, [1695] = {.lex_state = 24}, [1696] = {.lex_state = 24}, [1697] = {.lex_state = 24}, [1698] = {.lex_state = 24}, [1699] = {.lex_state = 24}, - [1700] = {.lex_state = 20}, + [1700] = {.lex_state = 24}, [1701] = {.lex_state = 24}, - [1702] = {.lex_state = 24}, - [1703] = {.lex_state = 24}, + [1702] = {.lex_state = 11}, + [1703] = {.lex_state = 11}, [1704] = {.lex_state = 24}, [1705] = {.lex_state = 24}, [1706] = {.lex_state = 24}, [1707] = {.lex_state = 24}, - [1708] = {.lex_state = 24}, - [1709] = {.lex_state = 24}, + [1708] = {.lex_state = 20}, + [1709] = {.lex_state = 20}, [1710] = {.lex_state = 24}, [1711] = {.lex_state = 24}, - [1712] = {.lex_state = 24}, + [1712] = {.lex_state = 26}, [1713] = {.lex_state = 24}, [1714] = {.lex_state = 24}, [1715] = {.lex_state = 24}, @@ -15990,7 +15989,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1721] = {.lex_state = 24}, [1722] = {.lex_state = 24}, [1723] = {.lex_state = 24}, - [1724] = {.lex_state = 11}, + [1724] = {.lex_state = 24}, [1725] = {.lex_state = 24}, [1726] = {.lex_state = 24}, [1727] = {.lex_state = 24}, @@ -16017,65 +16016,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1748] = {.lex_state = 24}, [1749] = {.lex_state = 24}, [1750] = {.lex_state = 24}, - [1751] = {.lex_state = 26}, - [1752] = {.lex_state = 71}, - [1753] = {.lex_state = 71}, - [1754] = {.lex_state = 71}, + [1751] = {.lex_state = 69}, + [1752] = {.lex_state = 26}, + [1753] = {.lex_state = 26}, + [1754] = {.lex_state = 26}, [1755] = {.lex_state = 71}, [1756] = {.lex_state = 26}, - [1757] = {.lex_state = 26}, + [1757] = {.lex_state = 71}, [1758] = {.lex_state = 71}, [1759] = {.lex_state = 71}, - [1760] = {.lex_state = 71}, + [1760] = {.lex_state = 26}, [1761] = {.lex_state = 71}, - [1762] = {.lex_state = 69}, - [1763] = {.lex_state = 71}, + [1762] = {.lex_state = 26}, + [1763] = {.lex_state = 69}, [1764] = {.lex_state = 69}, [1765] = {.lex_state = 69}, [1766] = {.lex_state = 69}, [1767] = {.lex_state = 69}, - [1768] = {.lex_state = 71}, + [1768] = {.lex_state = 69}, [1769] = {.lex_state = 69}, - [1770] = {.lex_state = 69}, + [1770] = {.lex_state = 71}, [1771] = {.lex_state = 69}, - [1772] = {.lex_state = 69}, - [1773] = {.lex_state = 69}, - [1774] = {.lex_state = 69}, + [1772] = {.lex_state = 71}, + [1773] = {.lex_state = 71}, + [1774] = {.lex_state = 71}, [1775] = {.lex_state = 69}, - [1776] = {.lex_state = 26}, - [1777] = {.lex_state = 69}, - [1778] = {.lex_state = 26}, - [1779] = {.lex_state = 26}, + [1776] = {.lex_state = 69}, + [1777] = {.lex_state = 71}, + [1778] = {.lex_state = 69}, + [1779] = {.lex_state = 69}, [1780] = {.lex_state = 26}, - [1781] = {.lex_state = 14}, + [1781] = {.lex_state = 26}, [1782] = {.lex_state = 26}, [1783] = {.lex_state = 26}, - [1784] = {.lex_state = 26}, + [1784] = {.lex_state = 69}, [1785] = {.lex_state = 26}, [1786] = {.lex_state = 26}, [1787] = {.lex_state = 26}, [1788] = {.lex_state = 26}, [1789] = {.lex_state = 26}, [1790] = {.lex_state = 26}, - [1791] = {.lex_state = 26}, - [1792] = {.lex_state = 26}, + [1791] = {.lex_state = 46}, + [1792] = {.lex_state = 46}, [1793] = {.lex_state = 26}, - [1794] = {.lex_state = 26}, + [1794] = {.lex_state = 69}, [1795] = {.lex_state = 26}, [1796] = {.lex_state = 26}, - [1797] = {.lex_state = 26}, + [1797] = {.lex_state = 69}, [1798] = {.lex_state = 26}, - [1799] = {.lex_state = 26}, + [1799] = {.lex_state = 69}, [1800] = {.lex_state = 26}, [1801] = {.lex_state = 26}, [1802] = {.lex_state = 26}, [1803] = {.lex_state = 26}, [1804] = {.lex_state = 26}, [1805] = {.lex_state = 26}, - [1806] = {.lex_state = 26}, - [1807] = {.lex_state = 26}, - [1808] = {.lex_state = 26}, - [1809] = {.lex_state = 26}, + [1806] = {.lex_state = 69}, + [1807] = {.lex_state = 69}, + [1808] = {.lex_state = 69}, + [1809] = {.lex_state = 69}, [1810] = {.lex_state = 26}, [1811] = {.lex_state = 26}, [1812] = {.lex_state = 26}, @@ -16086,9 +16085,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1817] = {.lex_state = 26}, [1818] = {.lex_state = 26}, [1819] = {.lex_state = 26}, - [1820] = {.lex_state = 14}, - [1821] = {.lex_state = 26}, - [1822] = {.lex_state = 26}, + [1820] = {.lex_state = 61}, + [1821] = {.lex_state = 43}, + [1822] = {.lex_state = 43}, [1823] = {.lex_state = 26}, [1824] = {.lex_state = 26}, [1825] = {.lex_state = 26}, @@ -16097,8 +16096,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1828] = {.lex_state = 26}, [1829] = {.lex_state = 26}, [1830] = {.lex_state = 26}, - [1831] = {.lex_state = 44}, - [1832] = {.lex_state = 44}, + [1831] = {.lex_state = 26}, + [1832] = {.lex_state = 26}, [1833] = {.lex_state = 26}, [1834] = {.lex_state = 26}, [1835] = {.lex_state = 26}, @@ -16113,105 +16112,105 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1844] = {.lex_state = 26}, [1845] = {.lex_state = 26}, [1846] = {.lex_state = 26}, - [1847] = {.lex_state = 69}, - [1848] = {.lex_state = 69}, - [1849] = {.lex_state = 26}, - [1850] = {.lex_state = 69}, - [1851] = {.lex_state = 69}, + [1847] = {.lex_state = 26}, + [1848] = {.lex_state = 26}, + [1849] = {.lex_state = 14}, + [1850] = {.lex_state = 26}, + [1851] = {.lex_state = 26}, [1852] = {.lex_state = 26}, - [1853] = {.lex_state = 69}, + [1853] = {.lex_state = 26}, [1854] = {.lex_state = 26}, - [1855] = {.lex_state = 47}, + [1855] = {.lex_state = 26}, [1856] = {.lex_state = 26}, - [1857] = {.lex_state = 69}, + [1857] = {.lex_state = 26}, [1858] = {.lex_state = 26}, [1859] = {.lex_state = 26}, - [1860] = {.lex_state = 14}, + [1860] = {.lex_state = 26}, [1861] = {.lex_state = 26}, [1862] = {.lex_state = 26}, - [1863] = {.lex_state = 47}, - [1864] = {.lex_state = 69}, - [1865] = {.lex_state = 26}, - [1866] = {.lex_state = 26}, + [1863] = {.lex_state = 26}, + [1864] = {.lex_state = 26}, + [1865] = {.lex_state = 14}, + [1866] = {.lex_state = 14}, [1867] = {.lex_state = 26}, [1868] = {.lex_state = 26}, [1869] = {.lex_state = 26}, - [1870] = {.lex_state = 59}, + [1870] = {.lex_state = 26}, [1871] = {.lex_state = 26}, - [1872] = {.lex_state = 71}, + [1872] = {.lex_state = 26}, [1873] = {.lex_state = 26}, - [1874] = {.lex_state = 26}, - [1875] = {.lex_state = 69}, + [1874] = {.lex_state = 59}, + [1875] = {.lex_state = 26}, [1876] = {.lex_state = 26}, - [1877] = {.lex_state = 69}, + [1877] = {.lex_state = 26}, [1878] = {.lex_state = 26}, [1879] = {.lex_state = 26}, [1880] = {.lex_state = 26}, - [1881] = {.lex_state = 26}, - [1882] = {.lex_state = 14}, - [1883] = {.lex_state = 14}, - [1884] = {.lex_state = 61}, + [1881] = {.lex_state = 69}, + [1882] = {.lex_state = 59}, + [1883] = {.lex_state = 26}, + [1884] = {.lex_state = 26}, [1885] = {.lex_state = 26}, [1886] = {.lex_state = 26}, [1887] = {.lex_state = 26}, - [1888] = {.lex_state = 26}, + [1888] = {.lex_state = 61}, [1889] = {.lex_state = 26}, - [1890] = {.lex_state = 26}, - [1891] = {.lex_state = 26}, + [1890] = {.lex_state = 14}, + [1891] = {.lex_state = 14}, [1892] = {.lex_state = 26}, [1893] = {.lex_state = 26}, [1894] = {.lex_state = 26}, - [1895] = {.lex_state = 61}, + [1895] = {.lex_state = 71}, [1896] = {.lex_state = 26}, [1897] = {.lex_state = 26}, - [1898] = {.lex_state = 59}, + [1898] = {.lex_state = 26}, [1899] = {.lex_state = 71}, [1900] = {.lex_state = 69}, - [1901] = {.lex_state = 69}, - [1902] = {.lex_state = 69}, - [1903] = {.lex_state = 71}, - [1904] = {.lex_state = 30}, + [1901] = {.lex_state = 30}, + [1902] = {.lex_state = 71}, + [1903] = {.lex_state = 69}, + [1904] = {.lex_state = 69}, [1905] = {.lex_state = 69}, [1906] = {.lex_state = 69}, - [1907] = {.lex_state = 30}, + [1907] = {.lex_state = 71}, [1908] = {.lex_state = 69}, - [1909] = {.lex_state = 69}, - [1910] = {.lex_state = 71}, - [1911] = {.lex_state = 71}, - [1912] = {.lex_state = 71}, - [1913] = {.lex_state = 69}, - [1914] = {.lex_state = 71}, - [1915] = {.lex_state = 71}, + [1909] = {.lex_state = 71}, + [1910] = {.lex_state = 69}, + [1911] = {.lex_state = 30}, + [1912] = {.lex_state = 69}, + [1913] = {.lex_state = 71}, + [1914] = {.lex_state = 69}, + [1915] = {.lex_state = 69}, [1916] = {.lex_state = 71}, [1917] = {.lex_state = 69}, [1918] = {.lex_state = 71}, [1919] = {.lex_state = 71}, - [1920] = {.lex_state = 69}, + [1920] = {.lex_state = 71}, [1921] = {.lex_state = 69}, [1922] = {.lex_state = 69}, - [1923] = {.lex_state = 69}, - [1924] = {.lex_state = 69}, - [1925] = {.lex_state = 69}, - [1926] = {.lex_state = 69}, + [1923] = {.lex_state = 71}, + [1924] = {.lex_state = 71}, + [1925] = {.lex_state = 71}, + [1926] = {.lex_state = 30}, [1927] = {.lex_state = 69}, - [1928] = {.lex_state = 69}, + [1928] = {.lex_state = 71}, [1929] = {.lex_state = 69}, - [1930] = {.lex_state = 71}, - [1931] = {.lex_state = 71}, + [1930] = {.lex_state = 69}, + [1931] = {.lex_state = 69}, [1932] = {.lex_state = 69}, - [1933] = {.lex_state = 69}, - [1934] = {.lex_state = 71}, - [1935] = {.lex_state = 71}, - [1936] = {.lex_state = 69}, + [1933] = {.lex_state = 71}, + [1934] = {.lex_state = 69}, + [1935] = {.lex_state = 69}, + [1936] = {.lex_state = 71}, [1937] = {.lex_state = 71}, [1938] = {.lex_state = 69}, - [1939] = {.lex_state = 71}, + [1939] = {.lex_state = 69}, [1940] = {.lex_state = 71}, [1941] = {.lex_state = 69}, [1942] = {.lex_state = 69}, - [1943] = {.lex_state = 69}, - [1944] = {.lex_state = 71}, - [1945] = {.lex_state = 69}, + [1943] = {.lex_state = 71}, + [1944] = {.lex_state = 69}, + [1945] = {.lex_state = 71}, [1946] = {.lex_state = 69}, [1947] = {.lex_state = 69}, [1948] = {.lex_state = 69}, @@ -16226,112 +16225,112 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1957] = {.lex_state = 69}, [1958] = {.lex_state = 69}, [1959] = {.lex_state = 69}, - [1960] = {.lex_state = 69}, + [1960] = {.lex_state = 71}, [1961] = {.lex_state = 69}, [1962] = {.lex_state = 69}, - [1963] = {.lex_state = 71}, + [1963] = {.lex_state = 69}, [1964] = {.lex_state = 69}, [1965] = {.lex_state = 69}, - [1966] = {.lex_state = 69}, - [1967] = {.lex_state = 69}, - [1968] = {.lex_state = 69}, + [1966] = {.lex_state = 71}, + [1967] = {.lex_state = 71}, + [1968] = {.lex_state = 71}, [1969] = {.lex_state = 69}, [1970] = {.lex_state = 69}, - [1971] = {.lex_state = 69}, - [1972] = {.lex_state = 69}, + [1971] = {.lex_state = 71}, + [1972] = {.lex_state = 71}, [1973] = {.lex_state = 69}, - [1974] = {.lex_state = 69}, - [1975] = {.lex_state = 69}, + [1974] = {.lex_state = 71}, + [1975] = {.lex_state = 71}, [1976] = {.lex_state = 71}, [1977] = {.lex_state = 69}, - [1978] = {.lex_state = 71}, - [1979] = {.lex_state = 71}, + [1978] = {.lex_state = 69}, + [1979] = {.lex_state = 69}, [1980] = {.lex_state = 69}, [1981] = {.lex_state = 69}, - [1982] = {.lex_state = 71}, - [1983] = {.lex_state = 71}, - [1984] = {.lex_state = 71}, - [1985] = {.lex_state = 69}, + [1982] = {.lex_state = 69}, + [1983] = {.lex_state = 69}, + [1984] = {.lex_state = 69}, + [1985] = {.lex_state = 71}, [1986] = {.lex_state = 69}, [1987] = {.lex_state = 69}, [1988] = {.lex_state = 69}, - [1989] = {.lex_state = 69}, - [1990] = {.lex_state = 69}, + [1989] = {.lex_state = 71}, + [1990] = {.lex_state = 71}, [1991] = {.lex_state = 69}, - [1992] = {.lex_state = 69}, - [1993] = {.lex_state = 69}, - [1994] = {.lex_state = 69}, - [1995] = {.lex_state = 69}, - [1996] = {.lex_state = 69}, + [1992] = {.lex_state = 71}, + [1993] = {.lex_state = 71}, + [1994] = {.lex_state = 71}, + [1995] = {.lex_state = 71}, + [1996] = {.lex_state = 71}, [1997] = {.lex_state = 69}, [1998] = {.lex_state = 69}, [1999] = {.lex_state = 69}, [2000] = {.lex_state = 69}, [2001] = {.lex_state = 69}, - [2002] = {.lex_state = 71}, - [2003] = {.lex_state = 71}, - [2004] = {.lex_state = 30}, - [2005] = {.lex_state = 71}, - [2006] = {.lex_state = 71}, - [2007] = {.lex_state = 69}, + [2002] = {.lex_state = 69}, + [2003] = {.lex_state = 69}, + [2004] = {.lex_state = 69}, + [2005] = {.lex_state = 69}, + [2006] = {.lex_state = 69}, + [2007] = {.lex_state = 71}, [2008] = {.lex_state = 69}, - [2009] = {.lex_state = 71}, - [2010] = {.lex_state = 69}, + [2009] = {.lex_state = 69}, + [2010] = {.lex_state = 71}, [2011] = {.lex_state = 69}, - [2012] = {.lex_state = 69}, + [2012] = {.lex_state = 71}, [2013] = {.lex_state = 71}, [2014] = {.lex_state = 71}, [2015] = {.lex_state = 71}, - [2016] = {.lex_state = 71}, + [2016] = {.lex_state = 69}, [2017] = {.lex_state = 69}, - [2018] = {.lex_state = 69}, + [2018] = {.lex_state = 71}, [2019] = {.lex_state = 71}, [2020] = {.lex_state = 69}, - [2021] = {.lex_state = 71}, - [2022] = {.lex_state = 69}, + [2021] = {.lex_state = 69}, + [2022] = {.lex_state = 71}, [2023] = {.lex_state = 71}, [2024] = {.lex_state = 71}, [2025] = {.lex_state = 71}, [2026] = {.lex_state = 71}, - [2027] = {.lex_state = 69}, - [2028] = {.lex_state = 69}, - [2029] = {.lex_state = 71}, + [2027] = {.lex_state = 71}, + [2028] = {.lex_state = 71}, + [2029] = {.lex_state = 69}, [2030] = {.lex_state = 71}, [2031] = {.lex_state = 71}, [2032] = {.lex_state = 69}, - [2033] = {.lex_state = 71}, - [2034] = {.lex_state = 71}, + [2033] = {.lex_state = 69}, + [2034] = {.lex_state = 69}, [2035] = {.lex_state = 71}, [2036] = {.lex_state = 69}, - [2037] = {.lex_state = 71}, + [2037] = {.lex_state = 69}, [2038] = {.lex_state = 69}, [2039] = {.lex_state = 69}, - [2040] = {.lex_state = 69}, + [2040] = {.lex_state = 71}, [2041] = {.lex_state = 69}, - [2042] = {.lex_state = 71}, + [2042] = {.lex_state = 69}, [2043] = {.lex_state = 69}, [2044] = {.lex_state = 71}, - [2045] = {.lex_state = 71}, + [2045] = {.lex_state = 69}, [2046] = {.lex_state = 69}, - [2047] = {.lex_state = 71}, + [2047] = {.lex_state = 69}, [2048] = {.lex_state = 71}, - [2049] = {.lex_state = 71}, + [2049] = {.lex_state = 69}, [2050] = {.lex_state = 69}, - [2051] = {.lex_state = 71}, + [2051] = {.lex_state = 69}, [2052] = {.lex_state = 69}, - [2053] = {.lex_state = 71}, - [2054] = {.lex_state = 71}, + [2053] = {.lex_state = 69}, + [2054] = {.lex_state = 69}, [2055] = {.lex_state = 71}, [2056] = {.lex_state = 71}, [2057] = {.lex_state = 71}, - [2058] = {.lex_state = 69}, + [2058] = {.lex_state = 71}, [2059] = {.lex_state = 71}, [2060] = {.lex_state = 71}, [2061] = {.lex_state = 71}, - [2062] = {.lex_state = 71}, - [2063] = {.lex_state = 71}, - [2064] = {.lex_state = 71}, - [2065] = {.lex_state = 69}, + [2062] = {.lex_state = 69}, + [2063] = {.lex_state = 69}, + [2064] = {.lex_state = 69}, + [2065] = {.lex_state = 71}, [2066] = {.lex_state = 71}, [2067] = {.lex_state = 71}, [2068] = {.lex_state = 71}, @@ -16343,39 +16342,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2074] = {.lex_state = 71}, [2075] = {.lex_state = 71}, [2076] = {.lex_state = 71}, - [2077] = {.lex_state = 71}, + [2077] = {.lex_state = 69}, [2078] = {.lex_state = 71}, [2079] = {.lex_state = 71}, - [2080] = {.lex_state = 71}, + [2080] = {.lex_state = 69}, [2081] = {.lex_state = 71}, [2082] = {.lex_state = 71}, - [2083] = {.lex_state = 69}, + [2083] = {.lex_state = 71}, [2084] = {.lex_state = 71}, [2085] = {.lex_state = 71}, [2086] = {.lex_state = 69}, - [2087] = {.lex_state = 71}, + [2087] = {.lex_state = 69}, [2088] = {.lex_state = 71}, - [2089] = {.lex_state = 71}, - [2090] = {.lex_state = 71}, + [2089] = {.lex_state = 69}, + [2090] = {.lex_state = 69}, [2091] = {.lex_state = 71}, [2092] = {.lex_state = 71}, [2093] = {.lex_state = 71}, [2094] = {.lex_state = 69}, - [2095] = {.lex_state = 69}, - [2096] = {.lex_state = 69}, + [2095] = {.lex_state = 71}, + [2096] = {.lex_state = 71}, [2097] = {.lex_state = 69}, [2098] = {.lex_state = 71}, [2099] = {.lex_state = 69}, [2100] = {.lex_state = 69}, - [2101] = {.lex_state = 69}, - [2102] = {.lex_state = 71}, - [2103] = {.lex_state = 69}, + [2101] = {.lex_state = 71}, + [2102] = {.lex_state = 69}, + [2103] = {.lex_state = 71}, [2104] = {.lex_state = 71}, [2105] = {.lex_state = 71}, - [2106] = {.lex_state = 69}, + [2106] = {.lex_state = 71}, [2107] = {.lex_state = 71}, - [2108] = {.lex_state = 69}, - [2109] = {.lex_state = 71}, + [2108] = {.lex_state = 71}, + [2109] = {.lex_state = 69}, [2110] = {.lex_state = 69}, [2111] = {.lex_state = 71}, [2112] = {.lex_state = 71}, @@ -16387,33 +16386,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2118] = {.lex_state = 49}, [2119] = {.lex_state = 49}, [2120] = {.lex_state = 49}, - [2121] = {.lex_state = 15}, + [2121] = {.lex_state = 69}, [2122] = {.lex_state = 15}, - [2123] = {.lex_state = 69}, + [2123] = {.lex_state = 15}, [2124] = {.lex_state = 15}, - [2125] = {.lex_state = 15}, + [2125] = {.lex_state = 79}, [2126] = {.lex_state = 15}, - [2127] = {.lex_state = 79}, - [2128] = {.lex_state = 15}, - [2129] = {.lex_state = 15}, + [2127] = {.lex_state = 15}, + [2128] = {.lex_state = 22}, + [2129] = {.lex_state = 79}, [2130] = {.lex_state = 15}, - [2131] = {.lex_state = 22}, - [2132] = {.lex_state = 22}, - [2133] = {.lex_state = 22}, - [2134] = {.lex_state = 22}, - [2135] = {.lex_state = 79}, + [2131] = {.lex_state = 79}, + [2132] = {.lex_state = 79}, + [2133] = {.lex_state = 79}, + [2134] = {.lex_state = 79}, + [2135] = {.lex_state = 22}, [2136] = {.lex_state = 79}, [2137] = {.lex_state = 15}, [2138] = {.lex_state = 79}, - [2139] = {.lex_state = 79}, + [2139] = {.lex_state = 22}, [2140] = {.lex_state = 79}, - [2141] = {.lex_state = 79}, + [2141] = {.lex_state = 22}, [2142] = {.lex_state = 15}, [2143] = {.lex_state = 79}, - [2144] = {.lex_state = 79}, - [2145] = {.lex_state = 79}, + [2144] = {.lex_state = 15}, + [2145] = {.lex_state = 15}, [2146] = {.lex_state = 15}, - [2147] = {.lex_state = 53}, + [2147] = {.lex_state = 15}, [2148] = {.lex_state = 15}, [2149] = {.lex_state = 15}, [2150] = {.lex_state = 15}, @@ -16429,9 +16428,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2160] = {.lex_state = 15}, [2161] = {.lex_state = 15}, [2162] = {.lex_state = 15}, - [2163] = {.lex_state = 15}, + [2163] = {.lex_state = 79}, [2164] = {.lex_state = 15}, - [2165] = {.lex_state = 79}, + [2165] = {.lex_state = 15}, [2166] = {.lex_state = 15}, [2167] = {.lex_state = 15}, [2168] = {.lex_state = 15}, @@ -16445,26 +16444,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2176] = {.lex_state = 15}, [2177] = {.lex_state = 15}, [2178] = {.lex_state = 15}, - [2179] = {.lex_state = 79}, + [2179] = {.lex_state = 15}, [2180] = {.lex_state = 15}, [2181] = {.lex_state = 15}, - [2182] = {.lex_state = 53}, + [2182] = {.lex_state = 15}, [2183] = {.lex_state = 15}, [2184] = {.lex_state = 15}, [2185] = {.lex_state = 15}, - [2186] = {.lex_state = 79}, + [2186] = {.lex_state = 15}, [2187] = {.lex_state = 15}, [2188] = {.lex_state = 15}, [2189] = {.lex_state = 15}, [2190] = {.lex_state = 15}, [2191] = {.lex_state = 15}, [2192] = {.lex_state = 15}, - [2193] = {.lex_state = 15}, + [2193] = {.lex_state = 53}, [2194] = {.lex_state = 15}, [2195] = {.lex_state = 15}, [2196] = {.lex_state = 15}, [2197] = {.lex_state = 15}, - [2198] = {.lex_state = 53}, + [2198] = {.lex_state = 79}, [2199] = {.lex_state = 15}, [2200] = {.lex_state = 15}, [2201] = {.lex_state = 15}, @@ -16476,19 +16475,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2207] = {.lex_state = 15}, [2208] = {.lex_state = 15}, [2209] = {.lex_state = 15}, - [2210] = {.lex_state = 15}, + [2210] = {.lex_state = 53}, [2211] = {.lex_state = 15}, - [2212] = {.lex_state = 79}, - [2213] = {.lex_state = 15}, + [2212] = {.lex_state = 53}, + [2213] = {.lex_state = 53}, [2214] = {.lex_state = 15}, - [2215] = {.lex_state = 53}, - [2216] = {.lex_state = 15}, + [2215] = {.lex_state = 15}, + [2216] = {.lex_state = 53}, [2217] = {.lex_state = 15}, [2218] = {.lex_state = 15}, - [2219] = {.lex_state = 15}, + [2219] = {.lex_state = 79}, [2220] = {.lex_state = 15}, [2221] = {.lex_state = 15}, - [2222] = {.lex_state = 15}, + [2222] = {.lex_state = 79}, [2223] = {.lex_state = 15}, [2224] = {.lex_state = 15}, [2225] = {.lex_state = 15}, @@ -16507,7 +16506,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2238] = {.lex_state = 15}, [2239] = {.lex_state = 15}, [2240] = {.lex_state = 15}, - [2241] = {.lex_state = 53}, + [2241] = {.lex_state = 15}, [2242] = {.lex_state = 15}, [2243] = {.lex_state = 15}, [2244] = {.lex_state = 15}, @@ -16520,41 +16519,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2251] = {.lex_state = 15}, [2252] = {.lex_state = 15}, [2253] = {.lex_state = 15}, - [2254] = {.lex_state = 31}, + [2254] = {.lex_state = 15}, [2255] = {.lex_state = 15}, [2256] = {.lex_state = 15}, - [2257] = {.lex_state = 15}, + [2257] = {.lex_state = 31}, [2258] = {.lex_state = 79}, [2259] = {.lex_state = 15}, [2260] = {.lex_state = 15}, - [2261] = {.lex_state = 73}, + [2261] = {.lex_state = 15}, [2262] = {.lex_state = 63}, - [2263] = {.lex_state = 15}, - [2264] = {.lex_state = 63}, - [2265] = {.lex_state = 73}, - [2266] = {.lex_state = 15}, - [2267] = {.lex_state = 73}, - [2268] = {.lex_state = 15}, + [2263] = {.lex_state = 73}, + [2264] = {.lex_state = 15}, + [2265] = {.lex_state = 15}, + [2266] = {.lex_state = 79}, + [2267] = {.lex_state = 15}, + [2268] = {.lex_state = 73}, [2269] = {.lex_state = 15}, - [2270] = {.lex_state = 15}, + [2270] = {.lex_state = 73}, [2271] = {.lex_state = 15}, - [2272] = {.lex_state = 15}, - [2273] = {.lex_state = 79}, + [2272] = {.lex_state = 63}, + [2273] = {.lex_state = 15}, [2274] = {.lex_state = 15}, [2275] = {.lex_state = 15}, - [2276] = {.lex_state = 15}, + [2276] = {.lex_state = 50}, [2277] = {.lex_state = 50}, - [2278] = {.lex_state = 50}, + [2278] = {.lex_state = 15}, [2279] = {.lex_state = 73}, - [2280] = {.lex_state = 15}, - [2281] = {.lex_state = 28}, + [2280] = {.lex_state = 28}, + [2281] = {.lex_state = 15}, [2282] = {.lex_state = 28}, [2283] = {.lex_state = 73}, [2284] = {.lex_state = 73}, [2285] = {.lex_state = 28}, - [2286] = {.lex_state = 28}, - [2287] = {.lex_state = 15}, - [2288] = {.lex_state = 73}, + [2286] = {.lex_state = 15}, + [2287] = {.lex_state = 28}, + [2288] = {.lex_state = 28}, [2289] = {.lex_state = 73}, [2290] = {.lex_state = 73}, [2291] = {.lex_state = 73}, @@ -16567,24 +16566,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2298] = {.lex_state = 73}, [2299] = {.lex_state = 73}, [2300] = {.lex_state = 73}, - [2301] = {.lex_state = 73}, + [2301] = {.lex_state = 28}, [2302] = {.lex_state = 73}, [2303] = {.lex_state = 73}, - [2304] = {.lex_state = 28}, - [2305] = {.lex_state = 73}, - [2306] = {.lex_state = 73}, + [2304] = {.lex_state = 73}, + [2305] = {.lex_state = 28}, + [2306] = {.lex_state = 28}, [2307] = {.lex_state = 73}, [2308] = {.lex_state = 28}, [2309] = {.lex_state = 28}, [2310] = {.lex_state = 28}, - [2311] = {.lex_state = 28}, + [2311] = {.lex_state = 73}, [2312] = {.lex_state = 73}, [2313] = {.lex_state = 73}, [2314] = {.lex_state = 73}, - [2315] = {.lex_state = 28}, + [2315] = {.lex_state = 15}, [2316] = {.lex_state = 73}, [2317] = {.lex_state = 73}, - [2318] = {.lex_state = 28}, + [2318] = {.lex_state = 15}, [2319] = {.lex_state = 73}, [2320] = {.lex_state = 73}, [2321] = {.lex_state = 73}, @@ -16593,75 +16592,75 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2324] = {.lex_state = 73}, [2325] = {.lex_state = 73}, [2326] = {.lex_state = 73}, - [2327] = {.lex_state = 73}, + [2327] = {.lex_state = 28}, [2328] = {.lex_state = 73}, [2329] = {.lex_state = 73}, [2330] = {.lex_state = 73}, [2331] = {.lex_state = 73}, [2332] = {.lex_state = 73}, [2333] = {.lex_state = 73}, - [2334] = {.lex_state = 28}, + [2334] = {.lex_state = 73}, [2335] = {.lex_state = 73}, - [2336] = {.lex_state = 73}, + [2336] = {.lex_state = 28}, [2337] = {.lex_state = 73}, [2338] = {.lex_state = 73}, [2339] = {.lex_state = 73}, [2340] = {.lex_state = 73}, [2341] = {.lex_state = 73}, [2342] = {.lex_state = 73}, - [2343] = {.lex_state = 22}, - [2344] = {.lex_state = 73}, + [2343] = {.lex_state = 73}, + [2344] = {.lex_state = 28}, [2345] = {.lex_state = 73}, [2346] = {.lex_state = 73}, - [2347] = {.lex_state = 73}, + [2347] = {.lex_state = 28}, [2348] = {.lex_state = 73}, [2349] = {.lex_state = 73}, [2350] = {.lex_state = 73}, [2351] = {.lex_state = 73}, [2352] = {.lex_state = 73}, [2353] = {.lex_state = 73}, - [2354] = {.lex_state = 73}, + [2354] = {.lex_state = 28}, [2355] = {.lex_state = 73}, [2356] = {.lex_state = 73}, - [2357] = {.lex_state = 15}, - [2358] = {.lex_state = 15}, - [2359] = {.lex_state = 28}, + [2357] = {.lex_state = 73}, + [2358] = {.lex_state = 28}, + [2359] = {.lex_state = 73}, [2360] = {.lex_state = 73}, - [2361] = {.lex_state = 73}, + [2361] = {.lex_state = 22}, [2362] = {.lex_state = 73}, [2363] = {.lex_state = 73}, [2364] = {.lex_state = 73}, [2365] = {.lex_state = 73}, [2366] = {.lex_state = 73}, [2367] = {.lex_state = 73}, - [2368] = {.lex_state = 28}, - [2369] = {.lex_state = 22}, + [2368] = {.lex_state = 73}, + [2369] = {.lex_state = 73}, [2370] = {.lex_state = 73}, [2371] = {.lex_state = 73}, [2372] = {.lex_state = 73}, [2373] = {.lex_state = 73}, - [2374] = {.lex_state = 28}, + [2374] = {.lex_state = 73}, [2375] = {.lex_state = 73}, [2376] = {.lex_state = 73}, - [2377] = {.lex_state = 73}, + [2377] = {.lex_state = 28}, [2378] = {.lex_state = 73}, [2379] = {.lex_state = 73}, - [2380] = {.lex_state = 28}, + [2380] = {.lex_state = 73}, [2381] = {.lex_state = 73}, [2382] = {.lex_state = 73}, [2383] = {.lex_state = 73}, - [2384] = {.lex_state = 28}, + [2384] = {.lex_state = 22}, [2385] = {.lex_state = 73}, [2386] = {.lex_state = 73}, [2387] = {.lex_state = 73}, [2388] = {.lex_state = 73}, [2389] = {.lex_state = 73}, - [2390] = {.lex_state = 28}, + [2390] = {.lex_state = 73}, [2391] = {.lex_state = 73}, [2392] = {.lex_state = 73}, - [2393] = {.lex_state = 28}, + [2393] = {.lex_state = 73}, [2394] = {.lex_state = 73}, - [2395] = {.lex_state = 73}, + [2395] = {.lex_state = 28}, [2396] = {.lex_state = 73}, [2397] = {.lex_state = 73}, [2398] = {.lex_state = 73}, @@ -16677,70 +16676,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2408] = {.lex_state = 73}, [2409] = {.lex_state = 73}, [2410] = {.lex_state = 73}, - [2411] = {.lex_state = 73}, + [2411] = {.lex_state = 28}, [2412] = {.lex_state = 73}, - [2413] = {.lex_state = 28}, - [2414] = {.lex_state = 28}, + [2413] = {.lex_state = 73}, + [2414] = {.lex_state = 73}, [2415] = {.lex_state = 73}, - [2416] = {.lex_state = 73}, + [2416] = {.lex_state = 28}, [2417] = {.lex_state = 73}, - [2418] = {.lex_state = 73}, - [2419] = {.lex_state = 73}, - [2420] = {.lex_state = 73}, - [2421] = {.lex_state = 73}, - [2422] = {.lex_state = 28}, - [2423] = {.lex_state = 28}, + [2418] = {.lex_state = 75}, + [2419] = {.lex_state = 28}, + [2420] = {.lex_state = 31}, + [2421] = {.lex_state = 33}, + [2422] = {.lex_state = 33}, + [2423] = {.lex_state = 75}, [2424] = {.lex_state = 28}, [2425] = {.lex_state = 28}, - [2426] = {.lex_state = 73}, - [2427] = {.lex_state = 33}, + [2426] = {.lex_state = 75}, + [2427] = {.lex_state = 28}, [2428] = {.lex_state = 33}, - [2429] = {.lex_state = 33}, - [2430] = {.lex_state = 28}, - [2431] = {.lex_state = 75}, + [2429] = {.lex_state = 28}, + [2430] = {.lex_state = 75}, + [2431] = {.lex_state = 28}, [2432] = {.lex_state = 75}, - [2433] = {.lex_state = 75}, - [2434] = {.lex_state = 73}, + [2433] = {.lex_state = 73}, + [2434] = {.lex_state = 75}, [2435] = {.lex_state = 75}, [2436] = {.lex_state = 28}, - [2437] = {.lex_state = 73}, - [2438] = {.lex_state = 31}, - [2439] = {.lex_state = 75}, - [2440] = {.lex_state = 75}, - [2441] = {.lex_state = 75}, + [2437] = {.lex_state = 28}, + [2438] = {.lex_state = 73}, + [2439] = {.lex_state = 73}, + [2440] = {.lex_state = 73}, + [2441] = {.lex_state = 28}, [2442] = {.lex_state = 75}, - [2443] = {.lex_state = 28}, + [2443] = {.lex_state = 75}, [2444] = {.lex_state = 75}, [2445] = {.lex_state = 73}, - [2446] = {.lex_state = 28}, - [2447] = {.lex_state = 73}, - [2448] = {.lex_state = 75}, - [2449] = {.lex_state = 28}, - [2450] = {.lex_state = 28}, - [2451] = {.lex_state = 75}, - [2452] = {.lex_state = 28}, - [2453] = {.lex_state = 65}, - [2454] = {.lex_state = 73}, - [2455] = {.lex_state = 28}, - [2456] = {.lex_state = 28}, - [2457] = {.lex_state = 28}, - [2458] = {.lex_state = 75}, - [2459] = {.lex_state = 73}, - [2460] = {.lex_state = 75}, + [2446] = {.lex_state = 73}, + [2447] = {.lex_state = 28}, + [2448] = {.lex_state = 73}, + [2449] = {.lex_state = 73}, + [2450] = {.lex_state = 75}, + [2451] = {.lex_state = 73}, + [2452] = {.lex_state = 65}, + [2453] = {.lex_state = 28}, + [2454] = {.lex_state = 55}, + [2455] = {.lex_state = 55}, + [2456] = {.lex_state = 73}, + [2457] = {.lex_state = 73}, + [2458] = {.lex_state = 28}, + [2459] = {.lex_state = 75}, + [2460] = {.lex_state = 73}, [2461] = {.lex_state = 28}, - [2462] = {.lex_state = 75}, - [2463] = {.lex_state = 75}, + [2462] = {.lex_state = 28}, + [2463] = {.lex_state = 28}, [2464] = {.lex_state = 28}, [2465] = {.lex_state = 28}, [2466] = {.lex_state = 28}, - [2467] = {.lex_state = 73}, + [2467] = {.lex_state = 28}, [2468] = {.lex_state = 28}, [2469] = {.lex_state = 28}, [2470] = {.lex_state = 28}, [2471] = {.lex_state = 28}, [2472] = {.lex_state = 28}, [2473] = {.lex_state = 28}, - [2474] = {.lex_state = 28}, + [2474] = {.lex_state = 75}, [2475] = {.lex_state = 28}, [2476] = {.lex_state = 28}, [2477] = {.lex_state = 28}, @@ -16757,72 +16756,72 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2488] = {.lex_state = 73}, [2489] = {.lex_state = 28}, [2490] = {.lex_state = 28}, - [2491] = {.lex_state = 28}, + [2491] = {.lex_state = 73}, [2492] = {.lex_state = 28}, - [2493] = {.lex_state = 28}, - [2494] = {.lex_state = 28}, - [2495] = {.lex_state = 73}, - [2496] = {.lex_state = 73}, + [2493] = {.lex_state = 73}, + [2494] = {.lex_state = 73}, + [2495] = {.lex_state = 28}, + [2496] = {.lex_state = 28}, [2497] = {.lex_state = 28}, [2498] = {.lex_state = 28}, [2499] = {.lex_state = 73}, - [2500] = {.lex_state = 75}, + [2500] = {.lex_state = 28}, [2501] = {.lex_state = 28}, - [2502] = {.lex_state = 73}, + [2502] = {.lex_state = 65}, [2503] = {.lex_state = 28}, [2504] = {.lex_state = 28}, - [2505] = {.lex_state = 73}, + [2505] = {.lex_state = 28}, [2506] = {.lex_state = 28}, [2507] = {.lex_state = 28}, [2508] = {.lex_state = 28}, [2509] = {.lex_state = 28}, - [2510] = {.lex_state = 28}, + [2510] = {.lex_state = 73}, [2511] = {.lex_state = 28}, [2512] = {.lex_state = 28}, - [2513] = {.lex_state = 28}, + [2513] = {.lex_state = 75}, [2514] = {.lex_state = 28}, - [2515] = {.lex_state = 28}, - [2516] = {.lex_state = 28}, + [2515] = {.lex_state = 73}, + [2516] = {.lex_state = 75}, [2517] = {.lex_state = 28}, [2518] = {.lex_state = 28}, - [2519] = {.lex_state = 28}, + [2519] = {.lex_state = 75}, [2520] = {.lex_state = 28}, [2521] = {.lex_state = 28}, - [2522] = {.lex_state = 73}, + [2522] = {.lex_state = 75}, [2523] = {.lex_state = 28}, [2524] = {.lex_state = 28}, [2525] = {.lex_state = 28}, - [2526] = {.lex_state = 75}, + [2526] = {.lex_state = 28}, [2527] = {.lex_state = 28}, - [2528] = {.lex_state = 28}, - [2529] = {.lex_state = 28}, + [2528] = {.lex_state = 75}, + [2529] = {.lex_state = 75}, [2530] = {.lex_state = 28}, [2531] = {.lex_state = 28}, - [2532] = {.lex_state = 28}, + [2532] = {.lex_state = 73}, [2533] = {.lex_state = 28}, [2534] = {.lex_state = 28}, [2535] = {.lex_state = 28}, - [2536] = {.lex_state = 73}, - [2537] = {.lex_state = 28}, + [2536] = {.lex_state = 28}, + [2537] = {.lex_state = 73}, [2538] = {.lex_state = 28}, [2539] = {.lex_state = 28}, - [2540] = {.lex_state = 65}, - [2541] = {.lex_state = 73}, - [2542] = {.lex_state = 73}, - [2543] = {.lex_state = 73}, + [2540] = {.lex_state = 28}, + [2541] = {.lex_state = 28}, + [2542] = {.lex_state = 28}, + [2543] = {.lex_state = 28}, [2544] = {.lex_state = 28}, [2545] = {.lex_state = 28}, - [2546] = {.lex_state = 28}, - [2547] = {.lex_state = 73}, - [2548] = {.lex_state = 75}, + [2546] = {.lex_state = 73}, + [2547] = {.lex_state = 28}, + [2548] = {.lex_state = 28}, [2549] = {.lex_state = 28}, - [2550] = {.lex_state = 73}, + [2550] = {.lex_state = 28}, [2551] = {.lex_state = 28}, [2552] = {.lex_state = 28}, [2553] = {.lex_state = 28}, [2554] = {.lex_state = 28}, - [2555] = {.lex_state = 75}, - [2556] = {.lex_state = 28}, + [2555] = {.lex_state = 28}, + [2556] = {.lex_state = 73}, [2557] = {.lex_state = 28}, [2558] = {.lex_state = 73}, [2559] = {.lex_state = 28}, @@ -16839,92 +16838,92 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2570] = {.lex_state = 28}, [2571] = {.lex_state = 75}, [2572] = {.lex_state = 28}, - [2573] = {.lex_state = 55}, - [2574] = {.lex_state = 55}, - [2575] = {.lex_state = 28}, + [2573] = {.lex_state = 28}, + [2574] = {.lex_state = 28}, + [2575] = {.lex_state = 73}, [2576] = {.lex_state = 28}, - [2577] = {.lex_state = 28}, + [2577] = {.lex_state = 73}, [2578] = {.lex_state = 28}, [2579] = {.lex_state = 73}, [2580] = {.lex_state = 73}, [2581] = {.lex_state = 73}, - [2582] = {.lex_state = 75}, + [2582] = {.lex_state = 73}, [2583] = {.lex_state = 73}, - [2584] = {.lex_state = 75}, - [2585] = {.lex_state = 75}, - [2586] = {.lex_state = 77}, - [2587] = {.lex_state = 73}, - [2588] = {.lex_state = 75}, + [2584] = {.lex_state = 73}, + [2585] = {.lex_state = 73}, + [2586] = {.lex_state = 73}, + [2587] = {.lex_state = 75}, + [2588] = {.lex_state = 73}, [2589] = {.lex_state = 73}, - [2590] = {.lex_state = 73}, + [2590] = {.lex_state = 75}, [2591] = {.lex_state = 73}, [2592] = {.lex_state = 73}, [2593] = {.lex_state = 73}, [2594] = {.lex_state = 73}, [2595] = {.lex_state = 73}, - [2596] = {.lex_state = 73}, - [2597] = {.lex_state = 75}, + [2596] = {.lex_state = 28}, + [2597] = {.lex_state = 73}, [2598] = {.lex_state = 73}, [2599] = {.lex_state = 73}, [2600] = {.lex_state = 75}, - [2601] = {.lex_state = 28}, + [2601] = {.lex_state = 73}, [2602] = {.lex_state = 73}, [2603] = {.lex_state = 73}, [2604] = {.lex_state = 73}, - [2605] = {.lex_state = 73}, + [2605] = {.lex_state = 75}, [2606] = {.lex_state = 73}, [2607] = {.lex_state = 73}, - [2608] = {.lex_state = 75}, + [2608] = {.lex_state = 77}, [2609] = {.lex_state = 73}, [2610] = {.lex_state = 73}, - [2611] = {.lex_state = 73}, + [2611] = {.lex_state = 75}, [2612] = {.lex_state = 73}, [2613] = {.lex_state = 73}, [2614] = {.lex_state = 73}, [2615] = {.lex_state = 73}, [2616] = {.lex_state = 73}, - [2617] = {.lex_state = 73}, + [2617] = {.lex_state = 75}, [2618] = {.lex_state = 73}, - [2619] = {.lex_state = 73}, + [2619] = {.lex_state = 75}, [2620] = {.lex_state = 75}, [2621] = {.lex_state = 73}, [2622] = {.lex_state = 75}, - [2623] = {.lex_state = 73}, + [2623] = {.lex_state = 75}, [2624] = {.lex_state = 73}, - [2625] = {.lex_state = 73}, + [2625] = {.lex_state = 83}, [2626] = {.lex_state = 75}, [2627] = {.lex_state = 75}, - [2628] = {.lex_state = 75}, - [2629] = {.lex_state = 83}, - [2630] = {.lex_state = 73}, + [2628] = {.lex_state = 73}, + [2629] = {.lex_state = 73}, + [2630] = {.lex_state = 75}, [2631] = {.lex_state = 75}, - [2632] = {.lex_state = 73}, + [2632] = {.lex_state = 75}, [2633] = {.lex_state = 75}, [2634] = {.lex_state = 75}, - [2635] = {.lex_state = 75}, + [2635] = {.lex_state = 73}, [2636] = {.lex_state = 73}, - [2637] = {.lex_state = 75}, - [2638] = {.lex_state = 75}, + [2637] = {.lex_state = 73}, + [2638] = {.lex_state = 73}, [2639] = {.lex_state = 73}, - [2640] = {.lex_state = 73}, + [2640] = {.lex_state = 75}, [2641] = {.lex_state = 73}, - [2642] = {.lex_state = 73}, - [2643] = {.lex_state = 75}, + [2642] = {.lex_state = 75}, + [2643] = {.lex_state = 77}, [2644] = {.lex_state = 75}, - [2645] = {.lex_state = 75}, - [2646] = {.lex_state = 73}, - [2647] = {.lex_state = 75}, + [2645] = {.lex_state = 83}, + [2646] = {.lex_state = 75}, + [2647] = {.lex_state = 73}, [2648] = {.lex_state = 75}, [2649] = {.lex_state = 75}, - [2650] = {.lex_state = 77}, + [2650] = {.lex_state = 75}, [2651] = {.lex_state = 75}, [2652] = {.lex_state = 75}, [2653] = {.lex_state = 75}, - [2654] = {.lex_state = 73}, + [2654] = {.lex_state = 75}, [2655] = {.lex_state = 75}, [2656] = {.lex_state = 75}, [2657] = {.lex_state = 75}, - [2658] = {.lex_state = 75}, + [2658] = {.lex_state = 73}, [2659] = {.lex_state = 75}, [2660] = {.lex_state = 75}, [2661] = {.lex_state = 75}, @@ -16936,215 +16935,215 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2667] = {.lex_state = 75}, [2668] = {.lex_state = 75}, [2669] = {.lex_state = 75}, - [2670] = {.lex_state = 75}, + [2670] = {.lex_state = 83}, [2671] = {.lex_state = 75}, - [2672] = {.lex_state = 83}, + [2672] = {.lex_state = 73}, [2673] = {.lex_state = 75}, [2674] = {.lex_state = 75}, [2675] = {.lex_state = 75}, [2676] = {.lex_state = 73}, - [2677] = {.lex_state = 67}, - [2678] = {.lex_state = 73}, + [2677] = {.lex_state = 75}, + [2678] = {.lex_state = 75}, [2679] = {.lex_state = 75}, [2680] = {.lex_state = 75}, [2681] = {.lex_state = 75}, - [2682] = {.lex_state = 83}, - [2683] = {.lex_state = 73}, - [2684] = {.lex_state = 75}, + [2682] = {.lex_state = 75}, + [2683] = {.lex_state = 75}, + [2684] = {.lex_state = 67}, [2685] = {.lex_state = 75}, [2686] = {.lex_state = 75}, - [2687] = {.lex_state = 75}, - [2688] = {.lex_state = 75}, - [2689] = {.lex_state = 75}, - [2690] = {.lex_state = 75}, + [2687] = {.lex_state = 73}, + [2688] = {.lex_state = 73}, + [2689] = {.lex_state = 73}, + [2690] = {.lex_state = 73}, [2691] = {.lex_state = 75}, [2692] = {.lex_state = 75}, [2693] = {.lex_state = 75}, - [2694] = {.lex_state = 73}, + [2694] = {.lex_state = 75}, [2695] = {.lex_state = 73}, - [2696] = {.lex_state = 75}, - [2697] = {.lex_state = 73}, + [2696] = {.lex_state = 73}, + [2697] = {.lex_state = 57}, [2698] = {.lex_state = 75}, - [2699] = {.lex_state = 75}, + [2699] = {.lex_state = 73}, [2700] = {.lex_state = 75}, - [2701] = {.lex_state = 75}, - [2702] = {.lex_state = 75}, - [2703] = {.lex_state = 73}, + [2701] = {.lex_state = 83}, + [2702] = {.lex_state = 83}, + [2703] = {.lex_state = 75}, [2704] = {.lex_state = 73}, - [2705] = {.lex_state = 75}, - [2706] = {.lex_state = 83}, - [2707] = {.lex_state = 73}, - [2708] = {.lex_state = 73}, - [2709] = {.lex_state = 73}, + [2705] = {.lex_state = 57}, + [2706] = {.lex_state = 75}, + [2707] = {.lex_state = 75}, + [2708] = {.lex_state = 75}, + [2709] = {.lex_state = 75}, [2710] = {.lex_state = 75}, [2711] = {.lex_state = 73}, - [2712] = {.lex_state = 73}, + [2712] = {.lex_state = 75}, [2713] = {.lex_state = 75}, - [2714] = {.lex_state = 75}, + [2714] = {.lex_state = 73}, [2715] = {.lex_state = 75}, [2716] = {.lex_state = 75}, [2717] = {.lex_state = 75}, - [2718] = {.lex_state = 73}, + [2718] = {.lex_state = 75}, [2719] = {.lex_state = 75}, - [2720] = {.lex_state = 75}, + [2720] = {.lex_state = 73}, [2721] = {.lex_state = 75}, - [2722] = {.lex_state = 75}, + [2722] = {.lex_state = 73}, [2723] = {.lex_state = 75}, - [2724] = {.lex_state = 75}, + [2724] = {.lex_state = 83}, [2725] = {.lex_state = 75}, - [2726] = {.lex_state = 75}, - [2727] = {.lex_state = 83}, + [2726] = {.lex_state = 83}, + [2727] = {.lex_state = 77}, [2728] = {.lex_state = 75}, [2729] = {.lex_state = 75}, [2730] = {.lex_state = 75}, - [2731] = {.lex_state = 73}, - [2732] = {.lex_state = 73}, - [2733] = {.lex_state = 73}, - [2734] = {.lex_state = 73}, + [2731] = {.lex_state = 75}, + [2732] = {.lex_state = 75}, + [2733] = {.lex_state = 75}, + [2734] = {.lex_state = 75}, [2735] = {.lex_state = 75}, [2736] = {.lex_state = 75}, [2737] = {.lex_state = 75}, [2738] = {.lex_state = 75}, - [2739] = {.lex_state = 73}, + [2739] = {.lex_state = 75}, [2740] = {.lex_state = 75}, [2741] = {.lex_state = 75}, [2742] = {.lex_state = 75}, - [2743] = {.lex_state = 75}, - [2744] = {.lex_state = 75}, - [2745] = {.lex_state = 75}, - [2746] = {.lex_state = 75}, - [2747] = {.lex_state = 75}, + [2743] = {.lex_state = 73}, + [2744] = {.lex_state = 73}, + [2745] = {.lex_state = 73}, + [2746] = {.lex_state = 73}, + [2747] = {.lex_state = 67}, [2748] = {.lex_state = 75}, - [2749] = {.lex_state = 75}, - [2750] = {.lex_state = 73}, - [2751] = {.lex_state = 73}, + [2749] = {.lex_state = 83}, + [2750] = {.lex_state = 83}, + [2751] = {.lex_state = 75}, [2752] = {.lex_state = 73}, - [2753] = {.lex_state = 83}, - [2754] = {.lex_state = 73}, - [2755] = {.lex_state = 83}, - [2756] = {.lex_state = 75}, + [2753] = {.lex_state = 77}, + [2754] = {.lex_state = 75}, + [2755] = {.lex_state = 75}, + [2756] = {.lex_state = 73}, [2757] = {.lex_state = 73}, - [2758] = {.lex_state = 57}, - [2759] = {.lex_state = 83}, - [2760] = {.lex_state = 77}, - [2761] = {.lex_state = 57}, - [2762] = {.lex_state = 75}, - [2763] = {.lex_state = 73}, + [2758] = {.lex_state = 75}, + [2759] = {.lex_state = 75}, + [2760] = {.lex_state = 73}, + [2761] = {.lex_state = 73}, + [2762] = {.lex_state = 73}, + [2763] = {.lex_state = 75}, [2764] = {.lex_state = 75}, - [2765] = {.lex_state = 75}, + [2765] = {.lex_state = 73}, [2766] = {.lex_state = 73}, - [2767] = {.lex_state = 73}, + [2767] = {.lex_state = 75}, [2768] = {.lex_state = 73}, - [2769] = {.lex_state = 73}, + [2769] = {.lex_state = 83}, [2770] = {.lex_state = 73}, [2771] = {.lex_state = 75}, - [2772] = {.lex_state = 83}, - [2773] = {.lex_state = 83}, + [2772] = {.lex_state = 73}, + [2773] = {.lex_state = 73}, [2774] = {.lex_state = 73}, [2775] = {.lex_state = 73}, [2776] = {.lex_state = 73}, [2777] = {.lex_state = 73}, [2778] = {.lex_state = 73}, - [2779] = {.lex_state = 75}, - [2780] = {.lex_state = 77}, + [2779] = {.lex_state = 73}, + [2780] = {.lex_state = 75}, [2781] = {.lex_state = 83}, - [2782] = {.lex_state = 83}, + [2782] = {.lex_state = 73}, [2783] = {.lex_state = 73}, - [2784] = {.lex_state = 73}, - [2785] = {.lex_state = 73}, - [2786] = {.lex_state = 73}, + [2784] = {.lex_state = 75}, + [2785] = {.lex_state = 75}, + [2786] = {.lex_state = 83}, [2787] = {.lex_state = 73}, - [2788] = {.lex_state = 73}, - [2789] = {.lex_state = 83}, + [2788] = {.lex_state = 83}, + [2789] = {.lex_state = 73}, [2790] = {.lex_state = 73}, - [2791] = {.lex_state = 75}, + [2791] = {.lex_state = 73}, [2792] = {.lex_state = 75}, [2793] = {.lex_state = 73}, - [2794] = {.lex_state = 83}, + [2794] = {.lex_state = 73}, [2795] = {.lex_state = 73}, [2796] = {.lex_state = 73}, - [2797] = {.lex_state = 73}, - [2798] = {.lex_state = 73}, - [2799] = {.lex_state = 75}, - [2800] = {.lex_state = 73}, - [2801] = {.lex_state = 83}, + [2797] = {.lex_state = 83}, + [2798] = {.lex_state = 83}, + [2799] = {.lex_state = 73}, + [2800] = {.lex_state = 75}, + [2801] = {.lex_state = 73}, [2802] = {.lex_state = 73}, - [2803] = {.lex_state = 67}, - [2804] = {.lex_state = 83}, + [2803] = {.lex_state = 83}, + [2804] = {.lex_state = 73}, [2805] = {.lex_state = 73}, [2806] = {.lex_state = 77}, [2807] = {.lex_state = 73}, [2808] = {.lex_state = 73}, - [2809] = {.lex_state = 73}, + [2809] = {.lex_state = 81}, [2810] = {.lex_state = 73}, [2811] = {.lex_state = 73}, [2812] = {.lex_state = 73}, [2813] = {.lex_state = 73}, [2814] = {.lex_state = 73}, [2815] = {.lex_state = 73}, - [2816] = {.lex_state = 81}, - [2817] = {.lex_state = 73}, + [2816] = {.lex_state = 73}, + [2817] = {.lex_state = 81}, [2818] = {.lex_state = 73}, - [2819] = {.lex_state = 73}, + [2819] = {.lex_state = 81}, [2820] = {.lex_state = 73}, - [2821] = {.lex_state = 81}, - [2822] = {.lex_state = 77}, - [2823] = {.lex_state = 73}, - [2824] = {.lex_state = 81}, + [2821] = {.lex_state = 73}, + [2822] = {.lex_state = 73}, + [2823] = {.lex_state = 81}, + [2824] = {.lex_state = 73}, [2825] = {.lex_state = 73}, - [2826] = {.lex_state = 73}, + [2826] = {.lex_state = 77}, [2827] = {.lex_state = 73}, [2828] = {.lex_state = 73}, [2829] = {.lex_state = 73}, [2830] = {.lex_state = 73}, - [2831] = {.lex_state = 81}, + [2831] = {.lex_state = 73}, [2832] = {.lex_state = 73}, [2833] = {.lex_state = 77}, - [2834] = {.lex_state = 73}, - [2835] = {.lex_state = 33}, + [2834] = {.lex_state = 77}, + [2835] = {.lex_state = 77}, [2836] = {.lex_state = 77}, - [2837] = {.lex_state = 77}, + [2837] = {.lex_state = 33}, [2838] = {.lex_state = 73}, - [2839] = {.lex_state = 83}, - [2840] = {.lex_state = 77}, - [2841] = {.lex_state = 77}, - [2842] = {.lex_state = 73}, - [2843] = {.lex_state = 77}, - [2844] = {.lex_state = 73}, + [2839] = {.lex_state = 73}, + [2840] = {.lex_state = 73}, + [2841] = {.lex_state = 73}, + [2842] = {.lex_state = 77}, + [2843] = {.lex_state = 73}, + [2844] = {.lex_state = 77}, [2845] = {.lex_state = 77}, - [2846] = {.lex_state = 77}, - [2847] = {.lex_state = 73}, - [2848] = {.lex_state = 73}, + [2846] = {.lex_state = 73}, + [2847] = {.lex_state = 77}, + [2848] = {.lex_state = 83}, [2849] = {.lex_state = 77}, - [2850] = {.lex_state = 83}, - [2851] = {.lex_state = 77}, + [2850] = {.lex_state = 77}, + [2851] = {.lex_state = 73}, [2852] = {.lex_state = 77}, - [2853] = {.lex_state = 77}, + [2853] = {.lex_state = 73}, [2854] = {.lex_state = 77}, [2855] = {.lex_state = 77}, - [2856] = {.lex_state = 77}, + [2856] = {.lex_state = 33}, [2857] = {.lex_state = 77}, [2858] = {.lex_state = 77}, - [2859] = {.lex_state = 77}, - [2860] = {.lex_state = 83}, - [2861] = {.lex_state = 83}, - [2862] = {.lex_state = 77}, + [2859] = {.lex_state = 83}, + [2860] = {.lex_state = 77}, + [2861] = {.lex_state = 73}, + [2862] = {.lex_state = 33}, [2863] = {.lex_state = 77}, - [2864] = {.lex_state = 77}, - [2865] = {.lex_state = 73}, - [2866] = {.lex_state = 77}, - [2867] = {.lex_state = 73}, - [2868] = {.lex_state = 73}, - [2869] = {.lex_state = 73}, - [2870] = {.lex_state = 33}, - [2871] = {.lex_state = 33}, + [2864] = {.lex_state = 73}, + [2865] = {.lex_state = 77}, + [2866] = {.lex_state = 73}, + [2867] = {.lex_state = 77}, + [2868] = {.lex_state = 77}, + [2869] = {.lex_state = 77}, + [2870] = {.lex_state = 83}, + [2871] = {.lex_state = 73}, [2872] = {.lex_state = 77}, - [2873] = {.lex_state = 73}, + [2873] = {.lex_state = 77}, [2874] = {.lex_state = 77}, - [2875] = {.lex_state = 73}, + [2875] = {.lex_state = 77}, [2876] = {.lex_state = 77}, [2877] = {.lex_state = 77}, - [2878] = {.lex_state = 77}, + [2878] = {.lex_state = 83}, [2879] = {.lex_state = 73}, [2880] = {.lex_state = 73}, [2881] = {.lex_state = 77}, @@ -17505,116 +17504,116 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3236] = {.lex_state = 83}, [3237] = {.lex_state = 83}, [3238] = {.lex_state = 83}, - [3239] = {.lex_state = 87}, - [3240] = {.lex_state = 87}, + [3239] = {.lex_state = 83}, + [3240] = {.lex_state = 83}, [3241] = {.lex_state = 83}, - [3242] = {.lex_state = 83}, + [3242] = {.lex_state = 87}, [3243] = {.lex_state = 83}, [3244] = {.lex_state = 83}, [3245] = {.lex_state = 83}, [3246] = {.lex_state = 83}, - [3247] = {.lex_state = 83}, - [3248] = {.lex_state = 85}, + [3247] = {.lex_state = 87}, + [3248] = {.lex_state = 86}, [3249] = {.lex_state = 33}, [3250] = {.lex_state = 33}, [3251] = {.lex_state = 33}, [3252] = {.lex_state = 33}, [3253] = {.lex_state = 33}, [3254] = {.lex_state = 185}, - [3255] = {.lex_state = 83}, - [3256] = {.lex_state = 83}, - [3257] = {.lex_state = 83}, - [3258] = {.lex_state = 84}, - [3259] = {.lex_state = 84}, + [3255] = {.lex_state = 85}, + [3256] = {.lex_state = 85}, + [3257] = {.lex_state = 87}, + [3258] = {.lex_state = 83}, + [3259] = {.lex_state = 83}, [3260] = {.lex_state = 83}, - [3261] = {.lex_state = 87}, + [3261] = {.lex_state = 83}, [3262] = {.lex_state = 83}, - [3263] = {.lex_state = 84}, - [3264] = {.lex_state = 41}, - [3265] = {.lex_state = 34}, + [3263] = {.lex_state = 85}, + [3264] = {.lex_state = 34}, + [3265] = {.lex_state = 41}, [3266] = {.lex_state = 83}, - [3267] = {.lex_state = 34}, + [3267] = {.lex_state = 41}, [3268] = {.lex_state = 41}, - [3269] = {.lex_state = 41}, - [3270] = {.lex_state = 41}, + [3269] = {.lex_state = 34}, + [3270] = {.lex_state = 83}, [3271] = {.lex_state = 41}, [3272] = {.lex_state = 41}, [3273] = {.lex_state = 41}, [3274] = {.lex_state = 41}, [3275] = {.lex_state = 41}, [3276] = {.lex_state = 41}, - [3277] = {.lex_state = 83}, + [3277] = {.lex_state = 41}, [3278] = {.lex_state = 41}, [3279] = {.lex_state = 41}, - [3280] = {.lex_state = 85}, - [3281] = {.lex_state = 83}, - [3282] = {.lex_state = 85}, + [3280] = {.lex_state = 86}, + [3281] = {.lex_state = 86}, + [3282] = {.lex_state = 83}, [3283] = {.lex_state = 83}, - [3284] = {.lex_state = 85}, + [3284] = {.lex_state = 86}, [3285] = {.lex_state = 85}, - [3286] = {.lex_state = 85}, - [3287] = {.lex_state = 85}, - [3288] = {.lex_state = 85}, - [3289] = {.lex_state = 85}, - [3290] = {.lex_state = 85}, + [3286] = {.lex_state = 86}, + [3287] = {.lex_state = 86}, + [3288] = {.lex_state = 35}, + [3289] = {.lex_state = 86}, + [3290] = {.lex_state = 86}, [3291] = {.lex_state = 85}, - [3292] = {.lex_state = 85}, - [3293] = {.lex_state = 84}, - [3294] = {.lex_state = 84}, - [3295] = {.lex_state = 85}, + [3292] = {.lex_state = 34}, + [3293] = {.lex_state = 86}, + [3294] = {.lex_state = 41}, + [3295] = {.lex_state = 35}, [3296] = {.lex_state = 85}, - [3297] = {.lex_state = 85}, - [3298] = {.lex_state = 84}, - [3299] = {.lex_state = 85}, - [3300] = {.lex_state = 85}, - [3301] = {.lex_state = 84}, - [3302] = {.lex_state = 85}, - [3303] = {.lex_state = 85}, - [3304] = {.lex_state = 85}, - [3305] = {.lex_state = 35}, - [3306] = {.lex_state = 41}, - [3307] = {.lex_state = 84}, - [3308] = {.lex_state = 84}, - [3309] = {.lex_state = 41}, + [3297] = {.lex_state = 86}, + [3298] = {.lex_state = 86}, + [3299] = {.lex_state = 35}, + [3300] = {.lex_state = 86}, + [3301] = {.lex_state = 86}, + [3302] = {.lex_state = 35}, + [3303] = {.lex_state = 86}, + [3304] = {.lex_state = 86}, + [3305] = {.lex_state = 41}, + [3306] = {.lex_state = 86}, + [3307] = {.lex_state = 86}, + [3308] = {.lex_state = 86}, + [3309] = {.lex_state = 86}, [3310] = {.lex_state = 85}, - [3311] = {.lex_state = 85}, - [3312] = {.lex_state = 84}, - [3313] = {.lex_state = 85}, + [3311] = {.lex_state = 86}, + [3312] = {.lex_state = 86}, + [3313] = {.lex_state = 41}, [3314] = {.lex_state = 85}, - [3315] = {.lex_state = 84}, - [3316] = {.lex_state = 85}, - [3317] = {.lex_state = 85}, - [3318] = {.lex_state = 85}, - [3319] = {.lex_state = 34}, - [3320] = {.lex_state = 85}, - [3321] = {.lex_state = 35}, - [3322] = {.lex_state = 85}, - [3323] = {.lex_state = 41}, + [3315] = {.lex_state = 86}, + [3316] = {.lex_state = 86}, + [3317] = {.lex_state = 86}, + [3318] = {.lex_state = 86}, + [3319] = {.lex_state = 41}, + [3320] = {.lex_state = 86}, + [3321] = {.lex_state = 86}, + [3322] = {.lex_state = 86}, + [3323] = {.lex_state = 86}, [3324] = {.lex_state = 85}, - [3325] = {.lex_state = 35}, - [3326] = {.lex_state = 85}, - [3327] = {.lex_state = 35}, - [3328] = {.lex_state = 85}, - [3329] = {.lex_state = 85}, - [3330] = {.lex_state = 41}, - [3331] = {.lex_state = 84}, - [3332] = {.lex_state = 34}, + [3325] = {.lex_state = 85}, + [3326] = {.lex_state = 86}, + [3327] = {.lex_state = 86}, + [3328] = {.lex_state = 86}, + [3329] = {.lex_state = 86}, + [3330] = {.lex_state = 85}, + [3331] = {.lex_state = 34}, + [3332] = {.lex_state = 85}, [3333] = {.lex_state = 34}, [3334] = {.lex_state = 34}, - [3335] = {.lex_state = 84}, - [3336] = {.lex_state = 84}, + [3335] = {.lex_state = 85}, + [3336] = {.lex_state = 85}, [3337] = {.lex_state = 34}, - [3338] = {.lex_state = 84}, + [3338] = {.lex_state = 85}, [3339] = {.lex_state = 34}, [3340] = {.lex_state = 34}, [3341] = {.lex_state = 34}, [3342] = {.lex_state = 34}, [3343] = {.lex_state = 34}, - [3344] = {.lex_state = 84}, + [3344] = {.lex_state = 35}, [3345] = {.lex_state = 34}, - [3346] = {.lex_state = 35}, + [3346] = {.lex_state = 34}, [3347] = {.lex_state = 34}, - [3348] = {.lex_state = 34}, + [3348] = {.lex_state = 85}, [3349] = {.lex_state = 34}, [3350] = {.lex_state = 34}, [3351] = {.lex_state = 34}, @@ -17630,560 +17629,560 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3361] = {.lex_state = 34}, [3362] = {.lex_state = 34}, [3363] = {.lex_state = 34}, - [3364] = {.lex_state = 85}, - [3365] = {.lex_state = 35}, - [3366] = {.lex_state = 85}, + [3364] = {.lex_state = 35}, + [3365] = {.lex_state = 86}, + [3366] = {.lex_state = 86}, [3367] = {.lex_state = 81}, - [3368] = {.lex_state = 34}, - [3369] = {.lex_state = 81}, - [3370] = {.lex_state = 34}, - [3371] = {.lex_state = 34}, - [3372] = {.lex_state = 85}, + [3368] = {.lex_state = 81}, + [3369] = {.lex_state = 34}, + [3370] = {.lex_state = 81}, + [3371] = {.lex_state = 81}, + [3372] = {.lex_state = 81}, [3373] = {.lex_state = 81}, - [3374] = {.lex_state = 85}, - [3375] = {.lex_state = 34}, + [3374] = {.lex_state = 81}, + [3375] = {.lex_state = 81}, [3376] = {.lex_state = 81}, - [3377] = {.lex_state = 81}, - [3378] = {.lex_state = 81}, + [3377] = {.lex_state = 34}, + [3378] = {.lex_state = 34}, [3379] = {.lex_state = 81}, - [3380] = {.lex_state = 81}, - [3381] = {.lex_state = 81}, - [3382] = {.lex_state = 81}, + [3380] = {.lex_state = 86}, + [3381] = {.lex_state = 86}, + [3382] = {.lex_state = 34}, [3383] = {.lex_state = 81}, [3384] = {.lex_state = 81}, [3385] = {.lex_state = 34}, [3386] = {.lex_state = 34}, [3387] = {.lex_state = 34}, - [3388] = {.lex_state = 24}, + [3388] = {.lex_state = 34}, [3389] = {.lex_state = 34}, [3390] = {.lex_state = 34}, [3391] = {.lex_state = 34}, - [3392] = {.lex_state = 34}, - [3393] = {.lex_state = 24}, + [3392] = {.lex_state = 24}, + [3393] = {.lex_state = 34}, [3394] = {.lex_state = 34}, - [3395] = {.lex_state = 24}, + [3395] = {.lex_state = 34}, [3396] = {.lex_state = 34}, - [3397] = {.lex_state = 85}, + [3397] = {.lex_state = 24}, [3398] = {.lex_state = 24}, - [3399] = {.lex_state = 34}, + [3399] = {.lex_state = 24}, [3400] = {.lex_state = 34}, - [3401] = {.lex_state = 34}, - [3402] = {.lex_state = 81}, - [3403] = {.lex_state = 81}, - [3404] = {.lex_state = 81}, - [3405] = {.lex_state = 24}, - [3406] = {.lex_state = 81}, - [3407] = {.lex_state = 81}, - [3408] = {.lex_state = 85}, - [3409] = {.lex_state = 81}, - [3410] = {.lex_state = 81}, - [3411] = {.lex_state = 85}, + [3401] = {.lex_state = 86}, + [3402] = {.lex_state = 95}, + [3403] = {.lex_state = 86}, + [3404] = {.lex_state = 88}, + [3405] = {.lex_state = 95}, + [3406] = {.lex_state = 88}, + [3407] = {.lex_state = 88}, + [3408] = {.lex_state = 95}, + [3409] = {.lex_state = 95}, + [3410] = {.lex_state = 88}, + [3411] = {.lex_state = 95}, [3412] = {.lex_state = 81}, - [3413] = {.lex_state = 85}, - [3414] = {.lex_state = 81}, - [3415] = {.lex_state = 81}, - [3416] = {.lex_state = 81}, - [3417] = {.lex_state = 81}, - [3418] = {.lex_state = 81}, - [3419] = {.lex_state = 81}, + [3413] = {.lex_state = 95}, + [3414] = {.lex_state = 95}, + [3415] = {.lex_state = 95}, + [3416] = {.lex_state = 88}, + [3417] = {.lex_state = 95}, + [3418] = {.lex_state = 88}, + [3419] = {.lex_state = 95}, [3420] = {.lex_state = 81}, - [3421] = {.lex_state = 81}, - [3422] = {.lex_state = 85}, - [3423] = {.lex_state = 81}, - [3424] = {.lex_state = 81}, - [3425] = {.lex_state = 81}, - [3426] = {.lex_state = 81}, - [3427] = {.lex_state = 81}, - [3428] = {.lex_state = 34}, - [3429] = {.lex_state = 85}, - [3430] = {.lex_state = 81}, - [3431] = {.lex_state = 85}, - [3432] = {.lex_state = 81}, + [3421] = {.lex_state = 95}, + [3422] = {.lex_state = 95}, + [3423] = {.lex_state = 95}, + [3424] = {.lex_state = 88}, + [3425] = {.lex_state = 95}, + [3426] = {.lex_state = 88}, + [3427] = {.lex_state = 88}, + [3428] = {.lex_state = 95}, + [3429] = {.lex_state = 88}, + [3430] = {.lex_state = 88}, + [3431] = {.lex_state = 95}, + [3432] = {.lex_state = 88}, [3433] = {.lex_state = 81}, - [3434] = {.lex_state = 24}, - [3435] = {.lex_state = 88}, - [3436] = {.lex_state = 88}, - [3437] = {.lex_state = 194}, - [3438] = {.lex_state = 194}, + [3434] = {.lex_state = 81}, + [3435] = {.lex_state = 81}, + [3436] = {.lex_state = 34}, + [3437] = {.lex_state = 88}, + [3438] = {.lex_state = 95}, [3439] = {.lex_state = 88}, [3440] = {.lex_state = 95}, - [3441] = {.lex_state = 88}, - [3442] = {.lex_state = 95}, - [3443] = {.lex_state = 95}, - [3444] = {.lex_state = 88}, - [3445] = {.lex_state = 194}, - [3446] = {.lex_state = 88}, - [3447] = {.lex_state = 95}, - [3448] = {.lex_state = 95}, - [3449] = {.lex_state = 0}, - [3450] = {.lex_state = 95}, - [3451] = {.lex_state = 88}, - [3452] = {.lex_state = 95}, - [3453] = {.lex_state = 88}, + [3441] = {.lex_state = 86}, + [3442] = {.lex_state = 88}, + [3443] = {.lex_state = 88}, + [3444] = {.lex_state = 81}, + [3445] = {.lex_state = 88}, + [3446] = {.lex_state = 81}, + [3447] = {.lex_state = 88}, + [3448] = {.lex_state = 81}, + [3449] = {.lex_state = 95}, + [3450] = {.lex_state = 88}, + [3451] = {.lex_state = 95}, + [3452] = {.lex_state = 88}, + [3453] = {.lex_state = 95}, [3454] = {.lex_state = 88}, [3455] = {.lex_state = 95}, [3456] = {.lex_state = 88}, - [3457] = {.lex_state = 95}, + [3457] = {.lex_state = 88}, [3458] = {.lex_state = 88}, - [3459] = {.lex_state = 88}, - [3460] = {.lex_state = 0}, - [3461] = {.lex_state = 95}, - [3462] = {.lex_state = 88}, + [3459] = {.lex_state = 95}, + [3460] = {.lex_state = 88}, + [3461] = {.lex_state = 24}, + [3462] = {.lex_state = 81}, [3463] = {.lex_state = 95}, [3464] = {.lex_state = 88}, - [3465] = {.lex_state = 95}, - [3466] = {.lex_state = 88}, - [3467] = {.lex_state = 95}, - [3468] = {.lex_state = 194}, + [3465] = {.lex_state = 88}, + [3466] = {.lex_state = 95}, + [3467] = {.lex_state = 88}, + [3468] = {.lex_state = 88}, [3469] = {.lex_state = 95}, - [3470] = {.lex_state = 95}, - [3471] = {.lex_state = 88}, + [3470] = {.lex_state = 88}, + [3471] = {.lex_state = 95}, [3472] = {.lex_state = 95}, [3473] = {.lex_state = 88}, - [3474] = {.lex_state = 88}, - [3475] = {.lex_state = 95}, - [3476] = {.lex_state = 95}, - [3477] = {.lex_state = 90}, - [3478] = {.lex_state = 88}, - [3479] = {.lex_state = 95}, - [3480] = {.lex_state = 88}, - [3481] = {.lex_state = 95}, - [3482] = {.lex_state = 88}, - [3483] = {.lex_state = 194}, - [3484] = {.lex_state = 95}, - [3485] = {.lex_state = 194}, - [3486] = {.lex_state = 95}, + [3474] = {.lex_state = 81}, + [3475] = {.lex_state = 81}, + [3476] = {.lex_state = 88}, + [3477] = {.lex_state = 95}, + [3478] = {.lex_state = 81}, + [3479] = {.lex_state = 81}, + [3480] = {.lex_state = 24}, + [3481] = {.lex_state = 81}, + [3482] = {.lex_state = 95}, + [3483] = {.lex_state = 81}, + [3484] = {.lex_state = 86}, + [3485] = {.lex_state = 95}, + [3486] = {.lex_state = 81}, [3487] = {.lex_state = 88}, - [3488] = {.lex_state = 88}, - [3489] = {.lex_state = 194}, - [3490] = {.lex_state = 88}, - [3491] = {.lex_state = 95}, - [3492] = {.lex_state = 95}, - [3493] = {.lex_state = 95}, - [3494] = {.lex_state = 88}, + [3488] = {.lex_state = 95}, + [3489] = {.lex_state = 88}, + [3490] = {.lex_state = 95}, + [3491] = {.lex_state = 88}, + [3492] = {.lex_state = 86}, + [3493] = {.lex_state = 81}, + [3494] = {.lex_state = 95}, [3495] = {.lex_state = 95}, - [3496] = {.lex_state = 88}, + [3496] = {.lex_state = 81}, [3497] = {.lex_state = 88}, - [3498] = {.lex_state = 88}, + [3498] = {.lex_state = 81}, [3499] = {.lex_state = 95}, [3500] = {.lex_state = 88}, [3501] = {.lex_state = 95}, [3502] = {.lex_state = 95}, - [3503] = {.lex_state = 95}, + [3503] = {.lex_state = 81}, [3504] = {.lex_state = 88}, - [3505] = {.lex_state = 95}, + [3505] = {.lex_state = 88}, [3506] = {.lex_state = 88}, - [3507] = {.lex_state = 95}, - [3508] = {.lex_state = 88}, - [3509] = {.lex_state = 95}, + [3507] = {.lex_state = 81}, + [3508] = {.lex_state = 95}, + [3509] = {.lex_state = 88}, [3510] = {.lex_state = 95}, - [3511] = {.lex_state = 34}, + [3511] = {.lex_state = 88}, [3512] = {.lex_state = 88}, - [3513] = {.lex_state = 95}, - [3514] = {.lex_state = 88}, + [3513] = {.lex_state = 86}, + [3514] = {.lex_state = 81}, [3515] = {.lex_state = 95}, - [3516] = {.lex_state = 95}, - [3517] = {.lex_state = 88}, - [3518] = {.lex_state = 95}, + [3516] = {.lex_state = 88}, + [3517] = {.lex_state = 95}, + [3518] = {.lex_state = 88}, [3519] = {.lex_state = 88}, [3520] = {.lex_state = 88}, [3521] = {.lex_state = 95}, [3522] = {.lex_state = 88}, [3523] = {.lex_state = 95}, - [3524] = {.lex_state = 34}, - [3525] = {.lex_state = 88}, + [3524] = {.lex_state = 81}, + [3525] = {.lex_state = 95}, [3526] = {.lex_state = 95}, - [3527] = {.lex_state = 88}, + [3527] = {.lex_state = 95}, [3528] = {.lex_state = 95}, - [3529] = {.lex_state = 95}, - [3530] = {.lex_state = 88}, - [3531] = {.lex_state = 95}, - [3532] = {.lex_state = 95}, - [3533] = {.lex_state = 88}, - [3534] = {.lex_state = 95}, - [3535] = {.lex_state = 88}, - [3536] = {.lex_state = 88}, - [3537] = {.lex_state = 88}, - [3538] = {.lex_state = 88}, - [3539] = {.lex_state = 85}, - [3540] = {.lex_state = 88}, - [3541] = {.lex_state = 95}, - [3542] = {.lex_state = 88}, - [3543] = {.lex_state = 194}, - [3544] = {.lex_state = 95}, - [3545] = {.lex_state = 88}, - [3546] = {.lex_state = 95}, - [3547] = {.lex_state = 85}, + [3529] = {.lex_state = 81}, + [3530] = {.lex_state = 95}, + [3531] = {.lex_state = 88}, + [3532] = {.lex_state = 194}, + [3533] = {.lex_state = 34}, + [3534] = {.lex_state = 194}, + [3535] = {.lex_state = 86}, + [3536] = {.lex_state = 86}, + [3537] = {.lex_state = 86}, + [3538] = {.lex_state = 194}, + [3539] = {.lex_state = 194}, + [3540] = {.lex_state = 194}, + [3541] = {.lex_state = 0}, + [3542] = {.lex_state = 34}, + [3543] = {.lex_state = 0}, + [3544] = {.lex_state = 194}, + [3545] = {.lex_state = 90}, + [3546] = {.lex_state = 194}, + [3547] = {.lex_state = 194}, [3548] = {.lex_state = 0}, - [3549] = {.lex_state = 34}, - [3550] = {.lex_state = 85}, - [3551] = {.lex_state = 85}, - [3552] = {.lex_state = 81}, - [3553] = {.lex_state = 81}, - [3554] = {.lex_state = 0}, - [3555] = {.lex_state = 194}, + [3549] = {.lex_state = 86}, + [3550] = {.lex_state = 86}, + [3551] = {.lex_state = 88}, + [3552] = {.lex_state = 0}, + [3553] = {.lex_state = 0}, + [3554] = {.lex_state = 86}, + [3555] = {.lex_state = 0}, [3556] = {.lex_state = 0}, - [3557] = {.lex_state = 0}, - [3558] = {.lex_state = 0}, + [3557] = {.lex_state = 194}, + [3558] = {.lex_state = 95}, [3559] = {.lex_state = 0}, - [3560] = {.lex_state = 194}, - [3561] = {.lex_state = 81}, - [3562] = {.lex_state = 81}, - [3563] = {.lex_state = 34}, - [3564] = {.lex_state = 0}, - [3565] = {.lex_state = 85}, - [3566] = {.lex_state = 194}, + [3560] = {.lex_state = 198}, + [3561] = {.lex_state = 0}, + [3562] = {.lex_state = 194}, + [3563] = {.lex_state = 88}, + [3564] = {.lex_state = 88}, + [3565] = {.lex_state = 88}, + [3566] = {.lex_state = 34}, [3567] = {.lex_state = 194}, - [3568] = {.lex_state = 85}, - [3569] = {.lex_state = 0}, - [3570] = {.lex_state = 81}, + [3568] = {.lex_state = 95}, + [3569] = {.lex_state = 86}, + [3570] = {.lex_state = 34}, [3571] = {.lex_state = 81}, - [3572] = {.lex_state = 198}, + [3572] = {.lex_state = 81}, [3573] = {.lex_state = 81}, - [3574] = {.lex_state = 85}, - [3575] = {.lex_state = 85}, - [3576] = {.lex_state = 194}, - [3577] = {.lex_state = 194}, - [3578] = {.lex_state = 34}, - [3579] = {.lex_state = 81}, - [3580] = {.lex_state = 0}, - [3581] = {.lex_state = 0}, - [3582] = {.lex_state = 0}, - [3583] = {.lex_state = 85}, - [3584] = {.lex_state = 0}, - [3585] = {.lex_state = 0}, - [3586] = {.lex_state = 69}, - [3587] = {.lex_state = 85}, + [3574] = {.lex_state = 86}, + [3575] = {.lex_state = 0}, + [3576] = {.lex_state = 81}, + [3577] = {.lex_state = 81}, + [3578] = {.lex_state = 86}, + [3579] = {.lex_state = 194}, + [3580] = {.lex_state = 95}, + [3581] = {.lex_state = 194}, + [3582] = {.lex_state = 81}, + [3583] = {.lex_state = 34}, + [3584] = {.lex_state = 194}, + [3585] = {.lex_state = 95}, + [3586] = {.lex_state = 81}, + [3587] = {.lex_state = 81}, [3588] = {.lex_state = 69}, - [3589] = {.lex_state = 0}, - [3590] = {.lex_state = 69}, - [3591] = {.lex_state = 85}, - [3592] = {.lex_state = 85}, - [3593] = {.lex_state = 0}, - [3594] = {.lex_state = 194}, - [3595] = {.lex_state = 0}, - [3596] = {.lex_state = 85}, + [3589] = {.lex_state = 69}, + [3590] = {.lex_state = 194}, + [3591] = {.lex_state = 0}, + [3592] = {.lex_state = 81}, + [3593] = {.lex_state = 100}, + [3594] = {.lex_state = 100}, + [3595] = {.lex_state = 194}, + [3596] = {.lex_state = 69}, [3597] = {.lex_state = 69}, [3598] = {.lex_state = 0}, - [3599] = {.lex_state = 194}, - [3600] = {.lex_state = 0}, - [3601] = {.lex_state = 88}, - [3602] = {.lex_state = 69}, - [3603] = {.lex_state = 85}, + [3599] = {.lex_state = 69}, + [3600] = {.lex_state = 69}, + [3601] = {.lex_state = 86}, + [3602] = {.lex_state = 86}, + [3603] = {.lex_state = 86}, [3604] = {.lex_state = 69}, [3605] = {.lex_state = 0}, - [3606] = {.lex_state = 90}, - [3607] = {.lex_state = 0}, - [3608] = {.lex_state = 85}, - [3609] = {.lex_state = 0}, - [3610] = {.lex_state = 85}, - [3611] = {.lex_state = 95}, - [3612] = {.lex_state = 85}, - [3613] = {.lex_state = 85}, - [3614] = {.lex_state = 85}, - [3615] = {.lex_state = 0}, - [3616] = {.lex_state = 69}, - [3617] = {.lex_state = 194}, - [3618] = {.lex_state = 0}, - [3619] = {.lex_state = 69}, - [3620] = {.lex_state = 88}, - [3621] = {.lex_state = 95}, - [3622] = {.lex_state = 0}, - [3623] = {.lex_state = 194}, - [3624] = {.lex_state = 0}, - [3625] = {.lex_state = 194}, - [3626] = {.lex_state = 194}, - [3627] = {.lex_state = 69}, + [3606] = {.lex_state = 194}, + [3607] = {.lex_state = 86}, + [3608] = {.lex_state = 86}, + [3609] = {.lex_state = 81}, + [3610] = {.lex_state = 86}, + [3611] = {.lex_state = 69}, + [3612] = {.lex_state = 69}, + [3613] = {.lex_state = 69}, + [3614] = {.lex_state = 86}, + [3615] = {.lex_state = 69}, + [3616] = {.lex_state = 86}, + [3617] = {.lex_state = 0}, + [3618] = {.lex_state = 86}, + [3619] = {.lex_state = 86}, + [3620] = {.lex_state = 69}, + [3621] = {.lex_state = 0}, + [3622] = {.lex_state = 86}, + [3623] = {.lex_state = 69}, + [3624] = {.lex_state = 69}, + [3625] = {.lex_state = 0}, + [3626] = {.lex_state = 69}, + [3627] = {.lex_state = 86}, [3628] = {.lex_state = 0}, [3629] = {.lex_state = 69}, - [3630] = {.lex_state = 0}, - [3631] = {.lex_state = 85}, - [3632] = {.lex_state = 85}, - [3633] = {.lex_state = 0}, - [3634] = {.lex_state = 85}, - [3635] = {.lex_state = 85}, - [3636] = {.lex_state = 85}, + [3630] = {.lex_state = 86}, + [3631] = {.lex_state = 194}, + [3632] = {.lex_state = 86}, + [3633] = {.lex_state = 194}, + [3634] = {.lex_state = 0}, + [3635] = {.lex_state = 86}, + [3636] = {.lex_state = 69}, [3637] = {.lex_state = 0}, - [3638] = {.lex_state = 0}, - [3639] = {.lex_state = 95}, - [3640] = {.lex_state = 69}, + [3638] = {.lex_state = 86}, + [3639] = {.lex_state = 0}, + [3640] = {.lex_state = 86}, [3641] = {.lex_state = 0}, [3642] = {.lex_state = 194}, [3643] = {.lex_state = 90}, - [3644] = {.lex_state = 198}, - [3645] = {.lex_state = 85}, - [3646] = {.lex_state = 0}, - [3647] = {.lex_state = 88}, - [3648] = {.lex_state = 194}, - [3649] = {.lex_state = 194}, - [3650] = {.lex_state = 69}, - [3651] = {.lex_state = 0}, - [3652] = {.lex_state = 0}, - [3653] = {.lex_state = 194}, - [3654] = {.lex_state = 69}, - [3655] = {.lex_state = 194}, - [3656] = {.lex_state = 69}, + [3644] = {.lex_state = 0}, + [3645] = {.lex_state = 198}, + [3646] = {.lex_state = 86}, + [3647] = {.lex_state = 69}, + [3648] = {.lex_state = 69}, + [3649] = {.lex_state = 0}, + [3650] = {.lex_state = 86}, + [3651] = {.lex_state = 86}, + [3652] = {.lex_state = 86}, + [3653] = {.lex_state = 86}, + [3654] = {.lex_state = 86}, + [3655] = {.lex_state = 0}, + [3656] = {.lex_state = 86}, [3657] = {.lex_state = 69}, - [3658] = {.lex_state = 85}, - [3659] = {.lex_state = 85}, - [3660] = {.lex_state = 85}, - [3661] = {.lex_state = 198}, - [3662] = {.lex_state = 85}, - [3663] = {.lex_state = 0}, - [3664] = {.lex_state = 81}, - [3665] = {.lex_state = 85}, - [3666] = {.lex_state = 99}, - [3667] = {.lex_state = 95}, - [3668] = {.lex_state = 194}, + [3658] = {.lex_state = 0}, + [3659] = {.lex_state = 86}, + [3660] = {.lex_state = 69}, + [3661] = {.lex_state = 69}, + [3662] = {.lex_state = 86}, + [3663] = {.lex_state = 86}, + [3664] = {.lex_state = 0}, + [3665] = {.lex_state = 0}, + [3666] = {.lex_state = 0}, + [3667] = {.lex_state = 0}, + [3668] = {.lex_state = 198}, [3669] = {.lex_state = 0}, - [3670] = {.lex_state = 0}, - [3671] = {.lex_state = 194}, - [3672] = {.lex_state = 194}, - [3673] = {.lex_state = 0}, + [3670] = {.lex_state = 86}, + [3671] = {.lex_state = 0}, + [3672] = {.lex_state = 0}, + [3673] = {.lex_state = 86}, [3674] = {.lex_state = 0}, - [3675] = {.lex_state = 0}, - [3676] = {.lex_state = 0}, - [3677] = {.lex_state = 194}, - [3678] = {.lex_state = 69}, - [3679] = {.lex_state = 0}, - [3680] = {.lex_state = 88}, - [3681] = {.lex_state = 194}, - [3682] = {.lex_state = 88}, - [3683] = {.lex_state = 85}, + [3675] = {.lex_state = 100}, + [3676] = {.lex_state = 86}, + [3677] = {.lex_state = 0}, + [3678] = {.lex_state = 0}, + [3679] = {.lex_state = 86}, + [3680] = {.lex_state = 194}, + [3681] = {.lex_state = 86}, + [3682] = {.lex_state = 69}, + [3683] = {.lex_state = 0}, [3684] = {.lex_state = 194}, - [3685] = {.lex_state = 0}, - [3686] = {.lex_state = 85}, + [3685] = {.lex_state = 194}, + [3686] = {.lex_state = 194}, [3687] = {.lex_state = 194}, - [3688] = {.lex_state = 194}, - [3689] = {.lex_state = 194}, - [3690] = {.lex_state = 99}, - [3691] = {.lex_state = 85}, - [3692] = {.lex_state = 0}, - [3693] = {.lex_state = 85}, - [3694] = {.lex_state = 194}, - [3695] = {.lex_state = 85}, - [3696] = {.lex_state = 69}, - [3697] = {.lex_state = 194}, + [3688] = {.lex_state = 0}, + [3689] = {.lex_state = 86}, + [3690] = {.lex_state = 69}, + [3691] = {.lex_state = 86}, + [3692] = {.lex_state = 194}, + [3693] = {.lex_state = 0}, + [3694] = {.lex_state = 0}, + [3695] = {.lex_state = 86}, + [3696] = {.lex_state = 194}, + [3697] = {.lex_state = 69}, [3698] = {.lex_state = 0}, - [3699] = {.lex_state = 85}, - [3700] = {.lex_state = 85}, - [3701] = {.lex_state = 0}, - [3702] = {.lex_state = 194}, - [3703] = {.lex_state = 69}, - [3704] = {.lex_state = 85}, - [3705] = {.lex_state = 69}, - [3706] = {.lex_state = 69}, - [3707] = {.lex_state = 85}, - [3708] = {.lex_state = 85}, - [3709] = {.lex_state = 69}, - [3710] = {.lex_state = 0}, - [3711] = {.lex_state = 95}, - [3712] = {.lex_state = 0}, - [3713] = {.lex_state = 85}, + [3699] = {.lex_state = 69}, + [3700] = {.lex_state = 194}, + [3701] = {.lex_state = 86}, + [3702] = {.lex_state = 90}, + [3703] = {.lex_state = 198}, + [3704] = {.lex_state = 194}, + [3705] = {.lex_state = 194}, + [3706] = {.lex_state = 86}, + [3707] = {.lex_state = 0}, + [3708] = {.lex_state = 0}, + [3709] = {.lex_state = 0}, + [3710] = {.lex_state = 69}, + [3711] = {.lex_state = 86}, + [3712] = {.lex_state = 86}, + [3713] = {.lex_state = 0}, [3714] = {.lex_state = 0}, - [3715] = {.lex_state = 0}, - [3716] = {.lex_state = 85}, - [3717] = {.lex_state = 85}, - [3718] = {.lex_state = 0}, - [3719] = {.lex_state = 0}, - [3720] = {.lex_state = 85}, - [3721] = {.lex_state = 69}, + [3715] = {.lex_state = 194}, + [3716] = {.lex_state = 69}, + [3717] = {.lex_state = 194}, + [3718] = {.lex_state = 194}, + [3719] = {.lex_state = 194}, + [3720] = {.lex_state = 194}, + [3721] = {.lex_state = 0}, [3722] = {.lex_state = 194}, - [3723] = {.lex_state = 69}, - [3724] = {.lex_state = 0}, - [3725] = {.lex_state = 69}, - [3726] = {.lex_state = 69}, - [3727] = {.lex_state = 85}, - [3728] = {.lex_state = 69}, - [3729] = {.lex_state = 194}, - [3730] = {.lex_state = 85}, - [3731] = {.lex_state = 85}, - [3732] = {.lex_state = 69}, - [3733] = {.lex_state = 0}, + [3723] = {.lex_state = 194}, + [3724] = {.lex_state = 194}, + [3725] = {.lex_state = 0}, + [3726] = {.lex_state = 0}, + [3727] = {.lex_state = 0}, + [3728] = {.lex_state = 86}, + [3729] = {.lex_state = 86}, + [3730] = {.lex_state = 0}, + [3731] = {.lex_state = 0}, + [3732] = {.lex_state = 194}, + [3733] = {.lex_state = 86}, [3734] = {.lex_state = 0}, - [3735] = {.lex_state = 85}, + [3735] = {.lex_state = 86}, [3736] = {.lex_state = 0}, [3737] = {.lex_state = 0}, - [3738] = {.lex_state = 85}, - [3739] = {.lex_state = 99}, + [3738] = {.lex_state = 86}, + [3739] = {.lex_state = 0}, [3740] = {.lex_state = 0}, - [3741] = {.lex_state = 85}, - [3742] = {.lex_state = 81}, - [3743] = {.lex_state = 0}, - [3744] = {.lex_state = 194}, - [3745] = {.lex_state = 69}, - [3746] = {.lex_state = 85}, - [3747] = {.lex_state = 85}, + [3741] = {.lex_state = 0}, + [3742] = {.lex_state = 194}, + [3743] = {.lex_state = 69}, + [3744] = {.lex_state = 0}, + [3745] = {.lex_state = 0}, + [3746] = {.lex_state = 0}, + [3747] = {.lex_state = 0}, [3748] = {.lex_state = 0}, - [3749] = {.lex_state = 85}, - [3750] = {.lex_state = 69}, + [3749] = {.lex_state = 0}, + [3750] = {.lex_state = 86}, [3751] = {.lex_state = 81}, [3752] = {.lex_state = 0}, [3753] = {.lex_state = 69}, [3754] = {.lex_state = 0}, - [3755] = {.lex_state = 198}, + [3755] = {.lex_state = 0}, [3756] = {.lex_state = 0}, - [3757] = {.lex_state = 89}, - [3758] = {.lex_state = 0}, + [3757] = {.lex_state = 0}, + [3758] = {.lex_state = 81}, [3759] = {.lex_state = 0}, [3760] = {.lex_state = 0}, - [3761] = {.lex_state = 81}, + [3761] = {.lex_state = 0}, [3762] = {.lex_state = 89}, [3763] = {.lex_state = 96}, [3764] = {.lex_state = 0}, [3765] = {.lex_state = 0}, [3766] = {.lex_state = 0}, [3767] = {.lex_state = 0}, - [3768] = {.lex_state = 0}, - [3769] = {.lex_state = 85}, - [3770] = {.lex_state = 0}, - [3771] = {.lex_state = 89}, - [3772] = {.lex_state = 198}, - [3773] = {.lex_state = 0}, - [3774] = {.lex_state = 96}, - [3775] = {.lex_state = 81}, + [3768] = {.lex_state = 81}, + [3769] = {.lex_state = 0}, + [3770] = {.lex_state = 198}, + [3771] = {.lex_state = 86}, + [3772] = {.lex_state = 86}, + [3773] = {.lex_state = 81}, + [3774] = {.lex_state = 0}, + [3775] = {.lex_state = 0}, [3776] = {.lex_state = 0}, - [3777] = {.lex_state = 198}, - [3778] = {.lex_state = 0}, + [3777] = {.lex_state = 96}, + [3778] = {.lex_state = 89}, [3779] = {.lex_state = 0}, - [3780] = {.lex_state = 0}, - [3781] = {.lex_state = 0}, + [3780] = {.lex_state = 96}, + [3781] = {.lex_state = 89}, [3782] = {.lex_state = 0}, [3783] = {.lex_state = 0}, [3784] = {.lex_state = 0}, [3785] = {.lex_state = 0}, - [3786] = {.lex_state = 0}, + [3786] = {.lex_state = 86}, [3787] = {.lex_state = 0}, [3788] = {.lex_state = 0}, - [3789] = {.lex_state = 81}, - [3790] = {.lex_state = 0}, - [3791] = {.lex_state = 0}, + [3789] = {.lex_state = 0}, + [3790] = {.lex_state = 86}, + [3791] = {.lex_state = 81}, [3792] = {.lex_state = 0}, - [3793] = {.lex_state = 0}, - [3794] = {.lex_state = 89}, - [3795] = {.lex_state = 96}, - [3796] = {.lex_state = 0}, + [3793] = {.lex_state = 86}, + [3794] = {.lex_state = 198}, + [3795] = {.lex_state = 0}, + [3796] = {.lex_state = 96}, [3797] = {.lex_state = 0}, - [3798] = {.lex_state = 96}, + [3798] = {.lex_state = 0}, [3799] = {.lex_state = 0}, - [3800] = {.lex_state = 0}, - [3801] = {.lex_state = 89}, + [3800] = {.lex_state = 96}, + [3801] = {.lex_state = 0}, [3802] = {.lex_state = 0}, [3803] = {.lex_state = 0}, [3804] = {.lex_state = 0}, [3805] = {.lex_state = 0}, - [3806] = {.lex_state = 85}, - [3807] = {.lex_state = 0}, + [3806] = {.lex_state = 0}, + [3807] = {.lex_state = 86}, [3808] = {.lex_state = 0}, [3809] = {.lex_state = 0}, [3810] = {.lex_state = 0}, - [3811] = {.lex_state = 81}, - [3812] = {.lex_state = 0}, + [3811] = {.lex_state = 96}, + [3812] = {.lex_state = 86}, [3813] = {.lex_state = 0}, [3814] = {.lex_state = 0}, [3815] = {.lex_state = 0}, [3816] = {.lex_state = 0}, - [3817] = {.lex_state = 0}, - [3818] = {.lex_state = 85}, - [3819] = {.lex_state = 0}, + [3817] = {.lex_state = 96}, + [3818] = {.lex_state = 89}, + [3819] = {.lex_state = 198}, [3820] = {.lex_state = 0}, - [3821] = {.lex_state = 85}, + [3821] = {.lex_state = 0}, [3822] = {.lex_state = 0}, - [3823] = {.lex_state = 89}, + [3823] = {.lex_state = 0}, [3824] = {.lex_state = 96}, [3825] = {.lex_state = 0}, [3826] = {.lex_state = 0}, - [3827] = {.lex_state = 85}, - [3828] = {.lex_state = 96}, - [3829] = {.lex_state = 89}, - [3830] = {.lex_state = 96}, - [3831] = {.lex_state = 89}, - [3832] = {.lex_state = 96}, + [3827] = {.lex_state = 0}, + [3828] = {.lex_state = 0}, + [3829] = {.lex_state = 0}, + [3830] = {.lex_state = 89}, + [3831] = {.lex_state = 86}, + [3832] = {.lex_state = 69}, [3833] = {.lex_state = 0}, - [3834] = {.lex_state = 89}, + [3834] = {.lex_state = 86}, [3835] = {.lex_state = 0}, - [3836] = {.lex_state = 0}, - [3837] = {.lex_state = 0}, + [3836] = {.lex_state = 96}, + [3837] = {.lex_state = 89}, [3838] = {.lex_state = 0}, - [3839] = {.lex_state = 89}, - [3840] = {.lex_state = 96}, - [3841] = {.lex_state = 0}, - [3842] = {.lex_state = 85}, - [3843] = {.lex_state = 0}, + [3839] = {.lex_state = 0}, + [3840] = {.lex_state = 86}, + [3841] = {.lex_state = 96}, + [3842] = {.lex_state = 0}, + [3843] = {.lex_state = 89}, [3844] = {.lex_state = 0}, - [3845] = {.lex_state = 85}, - [3846] = {.lex_state = 0}, + [3845] = {.lex_state = 96}, + [3846] = {.lex_state = 89}, [3847] = {.lex_state = 0}, - [3848] = {.lex_state = 0}, + [3848] = {.lex_state = 198}, [3849] = {.lex_state = 0}, [3850] = {.lex_state = 0}, - [3851] = {.lex_state = 0}, - [3852] = {.lex_state = 89}, - [3853] = {.lex_state = 96}, - [3854] = {.lex_state = 0}, - [3855] = {.lex_state = 85}, - [3856] = {.lex_state = 69}, + [3851] = {.lex_state = 86}, + [3852] = {.lex_state = 86}, + [3853] = {.lex_state = 0}, + [3854] = {.lex_state = 89}, + [3855] = {.lex_state = 96}, + [3856] = {.lex_state = 86}, [3857] = {.lex_state = 0}, - [3858] = {.lex_state = 198}, - [3859] = {.lex_state = 85}, - [3860] = {.lex_state = 85}, + [3858] = {.lex_state = 0}, + [3859] = {.lex_state = 0}, + [3860] = {.lex_state = 0}, [3861] = {.lex_state = 0}, [3862] = {.lex_state = 0}, [3863] = {.lex_state = 0}, [3864] = {.lex_state = 0}, - [3865] = {.lex_state = 0}, - [3866] = {.lex_state = 85}, - [3867] = {.lex_state = 89}, - [3868] = {.lex_state = 96}, - [3869] = {.lex_state = 85}, - [3870] = {.lex_state = 0}, + [3865] = {.lex_state = 86}, + [3866] = {.lex_state = 0}, + [3867] = {.lex_state = 0}, + [3868] = {.lex_state = 0}, + [3869] = {.lex_state = 0}, + [3870] = {.lex_state = 86}, [3871] = {.lex_state = 0}, - [3872] = {.lex_state = 198}, - [3873] = {.lex_state = 0}, + [3872] = {.lex_state = 0}, + [3873] = {.lex_state = 89}, [3874] = {.lex_state = 0}, - [3875] = {.lex_state = 0}, + [3875] = {.lex_state = 198}, [3876] = {.lex_state = 0}, [3877] = {.lex_state = 0}, - [3878] = {.lex_state = 96}, + [3878] = {.lex_state = 89}, [3879] = {.lex_state = 0}, - [3880] = {.lex_state = 85}, + [3880] = {.lex_state = 0}, [3881] = {.lex_state = 0}, - [3882] = {.lex_state = 85}, + [3882] = {.lex_state = 0}, [3883] = {.lex_state = 0}, - [3884] = {.lex_state = 89}, - [3885] = {.lex_state = 85}, - [3886] = {.lex_state = 96}, - [3887] = {.lex_state = 96}, - [3888] = {.lex_state = 0}, + [3884] = {.lex_state = 96}, + [3885] = {.lex_state = 96}, + [3886] = {.lex_state = 86}, + [3887] = {.lex_state = 0}, + [3888] = {.lex_state = 89}, [3889] = {.lex_state = 0}, - [3890] = {.lex_state = 99}, - [3891] = {.lex_state = 0}, - [3892] = {.lex_state = 89}, - [3893] = {.lex_state = 96}, - [3894] = {.lex_state = 89}, + [3890] = {.lex_state = 0}, + [3891] = {.lex_state = 81}, + [3892] = {.lex_state = 0}, + [3893] = {.lex_state = 0}, + [3894] = {.lex_state = 0}, [3895] = {.lex_state = 0}, [3896] = {.lex_state = 0}, [3897] = {.lex_state = 0}, [3898] = {.lex_state = 0}, - [3899] = {.lex_state = 89}, - [3900] = {.lex_state = 96}, - [3901] = {.lex_state = 85}, + [3899] = {.lex_state = 0}, + [3900] = {.lex_state = 0}, + [3901] = {.lex_state = 0}, [3902] = {.lex_state = 96}, [3903] = {.lex_state = 0}, - [3904] = {.lex_state = 69}, + [3904] = {.lex_state = 89}, [3905] = {.lex_state = 0}, - [3906] = {.lex_state = 0}, - [3907] = {.lex_state = 0}, + [3906] = {.lex_state = 96}, + [3907] = {.lex_state = 89}, [3908] = {.lex_state = 0}, - [3909] = {.lex_state = 81}, + [3909] = {.lex_state = 86}, [3910] = {.lex_state = 0}, - [3911] = {.lex_state = 85}, + [3911] = {.lex_state = 0}, [3912] = {.lex_state = 0}, - [3913] = {.lex_state = 89}, - [3914] = {.lex_state = 0}, - [3915] = {.lex_state = 85}, - [3916] = {.lex_state = 0}, - [3917] = {.lex_state = 0}, + [3913] = {.lex_state = 0}, + [3914] = {.lex_state = 96}, + [3915] = {.lex_state = 89}, + [3916] = {.lex_state = 89}, + [3917] = {.lex_state = 69}, [3918] = {.lex_state = 0}, [3919] = {.lex_state = 0}, [3920] = {.lex_state = 89}, @@ -18191,39 +18190,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3922] = {.lex_state = 0}, [3923] = {.lex_state = 0}, [3924] = {.lex_state = 0}, - [3925] = {.lex_state = 89}, - [3926] = {.lex_state = 96}, - [3927] = {.lex_state = 96}, + [3925] = {.lex_state = 86}, + [3926] = {.lex_state = 0}, + [3927] = {.lex_state = 86}, [3928] = {.lex_state = 0}, [3929] = {.lex_state = 0}, - [3930] = {.lex_state = 89}, - [3931] = {.lex_state = 96}, + [3930] = {.lex_state = 0}, + [3931] = {.lex_state = 0}, [3932] = {.lex_state = 0}, [3933] = {.lex_state = 0}, [3934] = {.lex_state = 0}, - [3935] = {.lex_state = 0}, + [3935] = {.lex_state = 86}, [3936] = {.lex_state = 0}, - [3937] = {.lex_state = 85}, - [3938] = {.lex_state = 0}, - [3939] = {.lex_state = 0}, + [3937] = {.lex_state = 96}, + [3938] = {.lex_state = 89}, + [3939] = {.lex_state = 86}, [3940] = {.lex_state = 0}, - [3941] = {.lex_state = 96}, - [3942] = {.lex_state = 0}, - [3943] = {.lex_state = 96}, - [3944] = {.lex_state = 85}, + [3941] = {.lex_state = 0}, + [3942] = {.lex_state = 96}, + [3943] = {.lex_state = 89}, + [3944] = {.lex_state = 0}, [3945] = {.lex_state = 89}, - [3946] = {.lex_state = 89}, - [3947] = {.lex_state = 85}, + [3946] = {.lex_state = 96}, + [3947] = {.lex_state = 0}, [3948] = {.lex_state = 0}, - [3949] = {.lex_state = 89}, - [3950] = {.lex_state = 96}, - [3951] = {.lex_state = 89}, - [3952] = {.lex_state = 198}, - [3953] = {.lex_state = 0}, - [3954] = {.lex_state = 198}, + [3949] = {.lex_state = 0}, + [3950] = {.lex_state = 0}, + [3951] = {.lex_state = 0}, + [3952] = {.lex_state = 96}, + [3953] = {.lex_state = 96}, + [3954] = {.lex_state = 0}, [3955] = {.lex_state = 0}, [3956] = {.lex_state = 0}, - [3957] = {.lex_state = 85}, + [3957] = {.lex_state = 89}, [3958] = {.lex_state = 0}, [3959] = {.lex_state = 0}, [3960] = {.lex_state = 0}, @@ -18232,9 +18231,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3963] = {.lex_state = 0}, [3964] = {.lex_state = 0}, [3965] = {.lex_state = 0}, - [3966] = {.lex_state = 96}, - [3967] = {.lex_state = 0}, - [3968] = {.lex_state = 0}, + [3966] = {.lex_state = 0}, + [3967] = {.lex_state = 86}, + [3968] = {.lex_state = 86}, [3969] = {.lex_state = 0}, [3970] = {.lex_state = 0}, [3971] = {.lex_state = 0}, @@ -18243,43 +18242,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3974] = {.lex_state = 0}, [3975] = {.lex_state = 0}, [3976] = {.lex_state = 0}, - [3977] = {.lex_state = 81}, - [3978] = {.lex_state = 0}, + [3977] = {.lex_state = 0}, + [3978] = {.lex_state = 89}, [3979] = {.lex_state = 0}, [3980] = {.lex_state = 0}, - [3981] = {.lex_state = 0}, + [3981] = {.lex_state = 198}, [3982] = {.lex_state = 0}, [3983] = {.lex_state = 0}, - [3984] = {.lex_state = 89}, - [3985] = {.lex_state = 0}, + [3984] = {.lex_state = 69}, + [3985] = {.lex_state = 86}, [3986] = {.lex_state = 0}, - [3987] = {.lex_state = 0}, - [3988] = {.lex_state = 0}, - [3989] = {.lex_state = 0}, + [3987] = {.lex_state = 100}, + [3988] = {.lex_state = 89}, + [3989] = {.lex_state = 89}, [3990] = {.lex_state = 0}, - [3991] = {.lex_state = 0}, - [3992] = {.lex_state = 85}, - [3993] = {.lex_state = 0}, - [3994] = {.lex_state = 0}, + [3991] = {.lex_state = 96}, + [3992] = {.lex_state = 0}, + [3993] = {.lex_state = 96}, + [3994] = {.lex_state = 89}, [3995] = {.lex_state = 0}, [3996] = {.lex_state = 0}, - [3997] = {.lex_state = 69}, - [3998] = {.lex_state = 85}, + [3997] = {.lex_state = 0}, + [3998] = {.lex_state = 86}, [3999] = {.lex_state = 0}, - [4000] = {.lex_state = 85}, + [4000] = {.lex_state = 0}, [4001] = {.lex_state = 0}, [4002] = {.lex_state = 0}, [4003] = {.lex_state = 0}, [4004] = {.lex_state = 0}, [4005] = {.lex_state = 0}, - [4006] = {.lex_state = 85}, + [4006] = {.lex_state = 0}, [4007] = {.lex_state = 0}, - [4008] = {.lex_state = 85}, - [4009] = {.lex_state = 85}, - [4010] = {.lex_state = 0}, + [4008] = {.lex_state = 0}, + [4009] = {.lex_state = 0}, + [4010] = {.lex_state = 86}, [4011] = {.lex_state = 0}, [4012] = {.lex_state = 0}, - [4013] = {.lex_state = 85}, + [4013] = {.lex_state = 0}, [4014] = {.lex_state = 0}, [4015] = {.lex_state = 0}, [4016] = {.lex_state = 0}, @@ -18288,37 +18287,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4019] = {.lex_state = 0}, [4020] = {.lex_state = 0}, [4021] = {.lex_state = 0}, - [4022] = {.lex_state = 0}, + [4022] = {.lex_state = 86}, [4023] = {.lex_state = 0}, [4024] = {.lex_state = 0}, [4025] = {.lex_state = 0}, - [4026] = {.lex_state = 0}, - [4027] = {.lex_state = 0}, + [4026] = {.lex_state = 86}, + [4027] = {.lex_state = 89}, [4028] = {.lex_state = 0}, [4029] = {.lex_state = 0}, [4030] = {.lex_state = 0}, [4031] = {.lex_state = 0}, [4032] = {.lex_state = 0}, [4033] = {.lex_state = 0}, - [4034] = {.lex_state = 0}, + [4034] = {.lex_state = 86}, [4035] = {.lex_state = 0}, [4036] = {.lex_state = 0}, [4037] = {.lex_state = 0}, [4038] = {.lex_state = 0}, [4039] = {.lex_state = 0}, [4040] = {.lex_state = 0}, - [4041] = {.lex_state = 85}, + [4041] = {.lex_state = 0}, [4042] = {.lex_state = 0}, [4043] = {.lex_state = 0}, - [4044] = {.lex_state = 85}, + [4044] = {.lex_state = 0}, [4045] = {.lex_state = 0}, [4046] = {.lex_state = 0}, [4047] = {.lex_state = 0}, [4048] = {.lex_state = 0}, - [4049] = {.lex_state = 0}, + [4049] = {.lex_state = 86}, [4050] = {.lex_state = 0}, - [4051] = {.lex_state = 85}, - [4052] = {.lex_state = 85}, + [4051] = {.lex_state = 86}, + [4052] = {.lex_state = 0}, [4053] = {.lex_state = 0}, [4054] = {.lex_state = 0}, [4055] = {.lex_state = 0}, @@ -18328,9 +18327,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4059] = {.lex_state = 0}, [4060] = {.lex_state = 0}, [4061] = {.lex_state = 0}, - [4062] = {.lex_state = 0}, - [4063] = {.lex_state = 85}, - [4064] = {.lex_state = 0}, + [4062] = {.lex_state = 86}, + [4063] = {.lex_state = 0}, + [4064] = {.lex_state = 86}, [4065] = {.lex_state = 0}, [4066] = {.lex_state = 0}, [4067] = {.lex_state = 0}, @@ -18338,13 +18337,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4069] = {.lex_state = 0}, [4070] = {.lex_state = 0}, [4071] = {.lex_state = 0}, - [4072] = {.lex_state = 0}, + [4072] = {.lex_state = 86}, [4073] = {.lex_state = 0}, [4074] = {.lex_state = 0}, [4075] = {.lex_state = 0}, - [4076] = {.lex_state = 85}, - [4077] = {.lex_state = 0}, - [4078] = {.lex_state = 85}, + [4076] = {.lex_state = 96}, + [4077] = {.lex_state = 86}, + [4078] = {.lex_state = 0}, [4079] = {.lex_state = 0}, [4080] = {.lex_state = 0}, [4081] = {.lex_state = 0}, @@ -18353,40 +18352,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4084] = {.lex_state = 0}, [4085] = {.lex_state = 0}, [4086] = {.lex_state = 0}, - [4087] = {.lex_state = 85}, - [4088] = {.lex_state = 85}, + [4087] = {.lex_state = 0}, + [4088] = {.lex_state = 0}, [4089] = {.lex_state = 0}, - [4090] = {.lex_state = 0}, + [4090] = {.lex_state = 86}, [4091] = {.lex_state = 0}, [4092] = {.lex_state = 0}, - [4093] = {.lex_state = 0}, - [4094] = {.lex_state = 85}, + [4093] = {.lex_state = 86}, + [4094] = {.lex_state = 86}, [4095] = {.lex_state = 0}, [4096] = {.lex_state = 0}, [4097] = {.lex_state = 0}, [4098] = {.lex_state = 0}, [4099] = {.lex_state = 0}, [4100] = {.lex_state = 0}, - [4101] = {.lex_state = 85}, - [4102] = {.lex_state = 0}, + [4101] = {.lex_state = 69}, + [4102] = {.lex_state = 86}, [4103] = {.lex_state = 0}, [4104] = {.lex_state = 0}, [4105] = {.lex_state = 0}, [4106] = {.lex_state = 0}, [4107] = {.lex_state = 0}, - [4108] = {.lex_state = 85}, + [4108] = {.lex_state = 86}, [4109] = {.lex_state = 0}, [4110] = {.lex_state = 0}, [4111] = {.lex_state = 0}, [4112] = {.lex_state = 0}, - [4113] = {.lex_state = 0}, + [4113] = {.lex_state = 86}, [4114] = {.lex_state = 0}, [4115] = {.lex_state = 0}, [4116] = {.lex_state = 0}, [4117] = {.lex_state = 0}, [4118] = {.lex_state = 0}, [4119] = {.lex_state = 0}, - [4120] = {.lex_state = 85}, + [4120] = {.lex_state = 0}, [4121] = {.lex_state = 0}, [4122] = {.lex_state = 0}, [4123] = {.lex_state = 0}, @@ -18397,7 +18396,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4128] = {.lex_state = 0}, [4129] = {.lex_state = 0}, [4130] = {.lex_state = 0}, - [4131] = {.lex_state = 85}, + [4131] = {.lex_state = 69}, [4132] = {.lex_state = 0}, [4133] = {.lex_state = 0}, [4134] = {.lex_state = 0}, @@ -18405,19 +18404,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4136] = {.lex_state = 0}, [4137] = {.lex_state = 0}, [4138] = {.lex_state = 0}, - [4139] = {.lex_state = 69}, + [4139] = {.lex_state = 0}, [4140] = {.lex_state = 0}, [4141] = {.lex_state = 0}, [4142] = {.lex_state = 0}, [4143] = {.lex_state = 0}, - [4144] = {.lex_state = 0}, + [4144] = {.lex_state = 86}, [4145] = {.lex_state = 0}, [4146] = {.lex_state = 0}, [4147] = {.lex_state = 0}, - [4148] = {.lex_state = 0}, + [4148] = {.lex_state = 86}, [4149] = {.lex_state = 0}, [4150] = {.lex_state = 0}, - [4151] = {.lex_state = 0}, + [4151] = {.lex_state = 86}, [4152] = {.lex_state = 0}, [4153] = {.lex_state = 0}, [4154] = {.lex_state = 0}, @@ -18429,10 +18428,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4160] = {.lex_state = 0}, [4161] = {.lex_state = 0}, [4162] = {.lex_state = 0}, - [4163] = {.lex_state = 0}, - [4164] = {.lex_state = 0}, + [4163] = {.lex_state = 69}, + [4164] = {.lex_state = 86}, [4165] = {.lex_state = 0}, - [4166] = {.lex_state = 0}, + [4166] = {.lex_state = 86}, [4167] = {.lex_state = 0}, [4168] = {.lex_state = 0}, [4169] = {.lex_state = 0}, @@ -18445,29 +18444,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4176] = {.lex_state = 0}, [4177] = {.lex_state = 0}, [4178] = {.lex_state = 0}, - [4179] = {.lex_state = 85}, + [4179] = {.lex_state = 0}, [4180] = {.lex_state = 0}, [4181] = {.lex_state = 0}, - [4182] = {.lex_state = 0}, + [4182] = {.lex_state = 86}, [4183] = {.lex_state = 0}, [4184] = {.lex_state = 0}, [4185] = {.lex_state = 0}, [4186] = {.lex_state = 0}, [4187] = {.lex_state = 0}, - [4188] = {.lex_state = 85}, + [4188] = {.lex_state = 0}, [4189] = {.lex_state = 0}, - [4190] = {.lex_state = 85}, - [4191] = {.lex_state = 0}, + [4190] = {.lex_state = 0}, + [4191] = {.lex_state = 86}, [4192] = {.lex_state = 0}, - [4193] = {.lex_state = 0}, - [4194] = {.lex_state = 85}, + [4193] = {.lex_state = 86}, + [4194] = {.lex_state = 86}, [4195] = {.lex_state = 0}, [4196] = {.lex_state = 0}, [4197] = {.lex_state = 0}, [4198] = {.lex_state = 0}, [4199] = {.lex_state = 0}, [4200] = {.lex_state = 0}, - [4201] = {.lex_state = 85}, + [4201] = {.lex_state = 0}, [4202] = {.lex_state = 0}, [4203] = {.lex_state = 0}, [4204] = {.lex_state = 0}, @@ -18476,9 +18475,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4207] = {.lex_state = 0}, [4208] = {.lex_state = 0}, [4209] = {.lex_state = 0}, - [4210] = {.lex_state = 0}, - [4211] = {.lex_state = 85}, - [4212] = {.lex_state = 0}, + [4210] = {.lex_state = 86}, + [4211] = {.lex_state = 0}, + [4212] = {.lex_state = 86}, [4213] = {.lex_state = 0}, [4214] = {.lex_state = 0}, [4215] = {.lex_state = 0}, @@ -18490,51 +18489,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4221] = {.lex_state = 0}, [4222] = {.lex_state = 0}, [4223] = {.lex_state = 0}, - [4224] = {.lex_state = 69}, - [4225] = {.lex_state = 0}, - [4226] = {.lex_state = 0}, + [4224] = {.lex_state = 0}, + [4225] = {.lex_state = 86}, + [4226] = {.lex_state = 86}, [4227] = {.lex_state = 0}, [4228] = {.lex_state = 0}, [4229] = {.lex_state = 0}, [4230] = {.lex_state = 0}, - [4231] = {.lex_state = 85}, + [4231] = {.lex_state = 0}, [4232] = {.lex_state = 0}, [4233] = {.lex_state = 0}, [4234] = {.lex_state = 0}, [4235] = {.lex_state = 0}, [4236] = {.lex_state = 0}, - [4237] = {.lex_state = 85}, - [4238] = {.lex_state = 85}, + [4237] = {.lex_state = 0}, + [4238] = {.lex_state = 0}, [4239] = {.lex_state = 0}, [4240] = {.lex_state = 0}, - [4241] = {.lex_state = 85}, + [4241] = {.lex_state = 0}, [4242] = {.lex_state = 0}, [4243] = {.lex_state = 0}, [4244] = {.lex_state = 0}, [4245] = {.lex_state = 0}, - [4246] = {.lex_state = 85}, + [4246] = {.lex_state = 0}, [4247] = {.lex_state = 0}, [4248] = {.lex_state = 0}, [4249] = {.lex_state = 0}, - [4250] = {.lex_state = 85}, - [4251] = {.lex_state = 0}, + [4250] = {.lex_state = 0}, + [4251] = {.lex_state = 86}, [4252] = {.lex_state = 0}, - [4253] = {.lex_state = 85}, - [4254] = {.lex_state = 0}, + [4253] = {.lex_state = 0}, + [4254] = {.lex_state = 86}, [4255] = {.lex_state = 0}, [4256] = {.lex_state = 0}, - [4257] = {.lex_state = 89}, + [4257] = {.lex_state = 0}, [4258] = {.lex_state = 0}, [4259] = {.lex_state = 0}, - [4260] = {.lex_state = 85}, + [4260] = {.lex_state = 0}, [4261] = {.lex_state = 0}, [4262] = {.lex_state = 0}, [4263] = {.lex_state = 0}, - [4264] = {.lex_state = 198}, - [4265] = {.lex_state = 96}, + [4264] = {.lex_state = 0}, + [4265] = {.lex_state = 0}, [4266] = {.lex_state = 0}, [4267] = {.lex_state = 0}, - [4268] = {.lex_state = 85}, + [4268] = {.lex_state = 0}, [4269] = {.lex_state = 0}, [4270] = {.lex_state = 0}, [4271] = {.lex_state = 0}, @@ -18551,12 +18550,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4282] = {.lex_state = 0}, [4283] = {.lex_state = 0}, [4284] = {.lex_state = 0}, - [4285] = {.lex_state = 0}, - [4286] = {.lex_state = 85}, + [4285] = {.lex_state = 86}, + [4286] = {.lex_state = 86}, [4287] = {.lex_state = 0}, - [4288] = {.lex_state = 69}, + [4288] = {.lex_state = 86}, [4289] = {.lex_state = 0}, - [4290] = {.lex_state = 0}, + [4290] = {.lex_state = 86}, [4291] = {.lex_state = 0}, [4292] = {.lex_state = 0}, [4293] = {.lex_state = 0}, @@ -18564,127 +18563,127 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4295] = {.lex_state = 0}, [4296] = {.lex_state = 0}, [4297] = {.lex_state = 0}, - [4298] = {.lex_state = 85}, - [4299] = {.lex_state = 0}, + [4298] = {.lex_state = 0}, + [4299] = {.lex_state = 86}, [4300] = {.lex_state = 0}, - [4301] = {.lex_state = 0}, + [4301] = {.lex_state = 86}, [4302] = {.lex_state = 0}, - [4303] = {.lex_state = 0}, - [4304] = {.lex_state = 0}, + [4303] = {.lex_state = 86}, + [4304] = {.lex_state = 198}, [4305] = {.lex_state = 0}, - [4306] = {.lex_state = 85}, + [4306] = {.lex_state = 0}, [4307] = {.lex_state = 0}, - [4308] = {.lex_state = 85}, - [4309] = {.lex_state = 0}, - [4310] = {.lex_state = 0}, - [4311] = {.lex_state = 85}, - [4312] = {.lex_state = 85}, - [4313] = {.lex_state = 85}, - [4314] = {.lex_state = 0}, + [4308] = {.lex_state = 0}, + [4309] = {.lex_state = 86}, + [4310] = {.lex_state = 86}, + [4311] = {.lex_state = 86}, + [4312] = {.lex_state = 0}, + [4313] = {.lex_state = 86}, + [4314] = {.lex_state = 86}, [4315] = {.lex_state = 0}, - [4316] = {.lex_state = 85}, + [4316] = {.lex_state = 0}, [4317] = {.lex_state = 0}, - [4318] = {.lex_state = 85}, - [4319] = {.lex_state = 85}, + [4318] = {.lex_state = 0}, + [4319] = {.lex_state = 0}, [4320] = {.lex_state = 0}, - [4321] = {.lex_state = 0}, + [4321] = {.lex_state = 108}, [4322] = {.lex_state = 0}, [4323] = {.lex_state = 0}, [4324] = {.lex_state = 0}, [4325] = {.lex_state = 0}, [4326] = {.lex_state = 0}, [4327] = {.lex_state = 0}, - [4328] = {.lex_state = 0}, + [4328] = {.lex_state = 108}, [4329] = {.lex_state = 0}, [4330] = {.lex_state = 0}, [4331] = {.lex_state = 0}, [4332] = {.lex_state = 0}, - [4333] = {.lex_state = 107}, + [4333] = {.lex_state = 41}, [4334] = {.lex_state = 0}, [4335] = {.lex_state = 0}, - [4336] = {.lex_state = 0}, + [4336] = {.lex_state = 86}, [4337] = {.lex_state = 0}, - [4338] = {.lex_state = 85}, - [4339] = {.lex_state = 85}, - [4340] = {.lex_state = 85}, - [4341] = {.lex_state = 107}, - [4342] = {.lex_state = 41}, - [4343] = {.lex_state = 0}, + [4338] = {.lex_state = 0}, + [4339] = {.lex_state = 0}, + [4340] = {.lex_state = 0}, + [4341] = {.lex_state = 0}, + [4342] = {.lex_state = 0}, + [4343] = {.lex_state = 205}, [4344] = {.lex_state = 0}, - [4345] = {.lex_state = 0}, + [4345] = {.lex_state = 108}, [4346] = {.lex_state = 0}, [4347] = {.lex_state = 0}, - [4348] = {.lex_state = 85}, - [4349] = {.lex_state = 0}, + [4348] = {.lex_state = 0}, + [4349] = {.lex_state = 108}, [4350] = {.lex_state = 0}, [4351] = {.lex_state = 0}, [4352] = {.lex_state = 0}, [4353] = {.lex_state = 0}, - [4354] = {.lex_state = 107}, + [4354] = {.lex_state = 41}, [4355] = {.lex_state = 0}, - [4356] = {.lex_state = 85}, - [4357] = {.lex_state = 0}, + [4356] = {.lex_state = 0}, + [4357] = {.lex_state = 86}, [4358] = {.lex_state = 0}, - [4359] = {.lex_state = 85}, - [4360] = {.lex_state = 85}, + [4359] = {.lex_state = 0}, + [4360] = {.lex_state = 0}, [4361] = {.lex_state = 0}, - [4362] = {.lex_state = 85}, - [4363] = {.lex_state = 0}, + [4362] = {.lex_state = 0}, + [4363] = {.lex_state = 86}, [4364] = {.lex_state = 0}, [4365] = {.lex_state = 0}, - [4366] = {.lex_state = 0}, + [4366] = {.lex_state = 86}, [4367] = {.lex_state = 0}, [4368] = {.lex_state = 0}, [4369] = {.lex_state = 0}, - [4370] = {.lex_state = 0}, - [4371] = {.lex_state = 107}, + [4370] = {.lex_state = 108}, + [4371] = {.lex_state = 108}, [4372] = {.lex_state = 0}, [4373] = {.lex_state = 0}, [4374] = {.lex_state = 0}, - [4375] = {.lex_state = 107}, + [4375] = {.lex_state = 0}, [4376] = {.lex_state = 0}, [4377] = {.lex_state = 0}, - [4378] = {.lex_state = 0}, + [4378] = {.lex_state = 86}, [4379] = {.lex_state = 0}, [4380] = {.lex_state = 0}, - [4381] = {.lex_state = 0}, - [4382] = {.lex_state = 0}, + [4381] = {.lex_state = 109}, + [4382] = {.lex_state = 108}, [4383] = {.lex_state = 0}, [4384] = {.lex_state = 0}, - [4385] = {.lex_state = 0}, + [4385] = {.lex_state = 86}, [4386] = {.lex_state = 0}, [4387] = {.lex_state = 0}, [4388] = {.lex_state = 0}, [4389] = {.lex_state = 0}, [4390] = {.lex_state = 0}, - [4391] = {.lex_state = 0}, + [4391] = {.lex_state = 108}, [4392] = {.lex_state = 0}, [4393] = {.lex_state = 0}, - [4394] = {.lex_state = 0}, + [4394] = {.lex_state = 109}, [4395] = {.lex_state = 0}, - [4396] = {.lex_state = 107}, + [4396] = {.lex_state = 41}, [4397] = {.lex_state = 0}, - [4398] = {.lex_state = 107}, + [4398] = {.lex_state = 0}, [4399] = {.lex_state = 0}, [4400] = {.lex_state = 0}, - [4401] = {.lex_state = 0}, + [4401] = {.lex_state = 86}, [4402] = {.lex_state = 0}, [4403] = {.lex_state = 0}, [4404] = {.lex_state = 0}, - [4405] = {.lex_state = 85}, + [4405] = {.lex_state = 0}, [4406] = {.lex_state = 0}, [4407] = {.lex_state = 0}, [4408] = {.lex_state = 0}, - [4409] = {.lex_state = 85}, + [4409] = {.lex_state = 0}, [4410] = {.lex_state = 0}, [4411] = {.lex_state = 0}, - [4412] = {.lex_state = 0}, + [4412] = {.lex_state = 108}, [4413] = {.lex_state = 0}, [4414] = {.lex_state = 0}, [4415] = {.lex_state = 0}, [4416] = {.lex_state = 0}, - [4417] = {.lex_state = 107}, - [4418] = {.lex_state = 41}, + [4417] = {.lex_state = 0}, + [4418] = {.lex_state = 0}, [4419] = {.lex_state = 0}, [4420] = {.lex_state = 0}, [4421] = {.lex_state = 0}, @@ -18699,67 +18698,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4430] = {.lex_state = 0}, [4431] = {.lex_state = 0}, [4432] = {.lex_state = 0}, - [4433] = {.lex_state = 0}, + [4433] = {.lex_state = 108}, [4434] = {.lex_state = 0}, [4435] = {.lex_state = 0}, [4436] = {.lex_state = 0}, [4437] = {.lex_state = 0}, - [4438] = {.lex_state = 107}, - [4439] = {.lex_state = 0}, + [4438] = {.lex_state = 0}, + [4439] = {.lex_state = 86}, [4440] = {.lex_state = 0}, [4441] = {.lex_state = 0}, [4442] = {.lex_state = 0}, - [4443] = {.lex_state = 69}, - [4444] = {.lex_state = 0}, - [4445] = {.lex_state = 85}, + [4443] = {.lex_state = 198}, + [4444] = {.lex_state = 86}, + [4445] = {.lex_state = 0}, [4446] = {.lex_state = 0}, [4447] = {.lex_state = 0}, - [4448] = {.lex_state = 0}, + [4448] = {.lex_state = 86}, [4449] = {.lex_state = 0}, [4450] = {.lex_state = 0}, [4451] = {.lex_state = 0}, - [4452] = {.lex_state = 85}, + [4452] = {.lex_state = 0}, [4453] = {.lex_state = 0}, - [4454] = {.lex_state = 0}, + [4454] = {.lex_state = 108}, [4455] = {.lex_state = 0}, [4456] = {.lex_state = 0}, [4457] = {.lex_state = 0}, - [4458] = {.lex_state = 0}, - [4459] = {.lex_state = 107}, + [4458] = {.lex_state = 108}, + [4459] = {.lex_state = 0}, [4460] = {.lex_state = 0}, - [4461] = {.lex_state = 0}, + [4461] = {.lex_state = 205}, [4462] = {.lex_state = 0}, [4463] = {.lex_state = 0}, - [4464] = {.lex_state = 107}, + [4464] = {.lex_state = 0}, [4465] = {.lex_state = 0}, [4466] = {.lex_state = 0}, [4467] = {.lex_state = 0}, [4468] = {.lex_state = 0}, [4469] = {.lex_state = 0}, - [4470] = {.lex_state = 0}, + [4470] = {.lex_state = 108}, [4471] = {.lex_state = 0}, [4472] = {.lex_state = 0}, [4473] = {.lex_state = 0}, [4474] = {.lex_state = 0}, - [4475] = {.lex_state = 107}, + [4475] = {.lex_state = 108}, [4476] = {.lex_state = 0}, - [4477] = {.lex_state = 0}, + [4477] = {.lex_state = 86}, [4478] = {.lex_state = 0}, [4479] = {.lex_state = 0}, - [4480] = {.lex_state = 107}, + [4480] = {.lex_state = 0}, [4481] = {.lex_state = 0}, - [4482] = {.lex_state = 0}, - [4483] = {.lex_state = 0}, - [4484] = {.lex_state = 0}, + [4482] = {.lex_state = 86}, + [4483] = {.lex_state = 86}, + [4484] = {.lex_state = 86}, [4485] = {.lex_state = 0}, [4486] = {.lex_state = 0}, - [4487] = {.lex_state = 0}, + [4487] = {.lex_state = 86}, [4488] = {.lex_state = 0}, [4489] = {.lex_state = 0}, [4490] = {.lex_state = 0}, - [4491] = {.lex_state = 107}, + [4491] = {.lex_state = 0}, [4492] = {.lex_state = 0}, - [4493] = {.lex_state = 41}, + [4493] = {.lex_state = 0}, [4494] = {.lex_state = 0}, [4495] = {.lex_state = 0}, [4496] = {.lex_state = 0}, @@ -18767,7 +18766,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4498] = {.lex_state = 0}, [4499] = {.lex_state = 0}, [4500] = {.lex_state = 0}, - [4501] = {.lex_state = 85}, + [4501] = {.lex_state = 0}, [4502] = {.lex_state = 0}, [4503] = {.lex_state = 0}, [4504] = {.lex_state = 0}, @@ -18783,12 +18782,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4514] = {.lex_state = 0}, [4515] = {.lex_state = 0}, [4516] = {.lex_state = 0}, - [4517] = {.lex_state = 0}, + [4517] = {.lex_state = 86}, [4518] = {.lex_state = 0}, [4519] = {.lex_state = 0}, [4520] = {.lex_state = 0}, [4521] = {.lex_state = 0}, - [4522] = {.lex_state = 205}, + [4522] = {.lex_state = 0}, [4523] = {.lex_state = 0}, [4524] = {.lex_state = 0}, [4525] = {.lex_state = 0}, @@ -18808,10 +18807,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4539] = {.lex_state = 0}, [4540] = {.lex_state = 0}, [4541] = {.lex_state = 0}, - [4542] = {.lex_state = 0}, - [4543] = {.lex_state = 0}, - [4544] = {.lex_state = 108}, - [4545] = {.lex_state = 0}, + [4542] = {.lex_state = 69}, + [4543] = {.lex_state = 86}, + [4544] = {.lex_state = 86}, + [4545] = {.lex_state = 86}, [4546] = {.lex_state = 0}, [4547] = {.lex_state = 0}, [4548] = {.lex_state = 0}, @@ -18822,7 +18821,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4553] = {.lex_state = 0}, [4554] = {.lex_state = 0}, [4555] = {.lex_state = 0}, - [4556] = {.lex_state = 0}, + [4556] = {.lex_state = 86}, [4557] = {.lex_state = 0}, [4558] = {.lex_state = 0}, [4559] = {.lex_state = 0}, @@ -18830,12 +18829,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4561] = {.lex_state = 0}, [4562] = {.lex_state = 0}, [4563] = {.lex_state = 0}, - [4564] = {.lex_state = 0}, + [4564] = {.lex_state = 86}, [4565] = {.lex_state = 0}, [4566] = {.lex_state = 0}, - [4567] = {.lex_state = 0}, - [4568] = {.lex_state = 0}, - [4569] = {.lex_state = 0}, + [4567] = {.lex_state = 86}, + [4568] = {.lex_state = 86}, + [4569] = {.lex_state = 86}, [4570] = {.lex_state = 0}, [4571] = {.lex_state = 0}, [4572] = {.lex_state = 0}, @@ -18845,36 +18844,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4576] = {.lex_state = 0}, [4577] = {.lex_state = 0}, [4578] = {.lex_state = 0}, - [4579] = {.lex_state = 198}, + [4579] = {.lex_state = 0}, [4580] = {.lex_state = 0}, [4581] = {.lex_state = 0}, [4582] = {.lex_state = 0}, [4583] = {.lex_state = 0}, - [4584] = {.lex_state = 85}, + [4584] = {.lex_state = 0}, [4585] = {.lex_state = 0}, [4586] = {.lex_state = 0}, - [4587] = {.lex_state = 85}, + [4587] = {.lex_state = 0}, [4588] = {.lex_state = 0}, [4589] = {.lex_state = 0}, [4590] = {.lex_state = 0}, [4591] = {.lex_state = 0}, [4592] = {.lex_state = 0}, - [4593] = {.lex_state = 85}, - [4594] = {.lex_state = 85}, - [4595] = {.lex_state = 108}, + [4593] = {.lex_state = 0}, + [4594] = {.lex_state = 0}, + [4595] = {.lex_state = 0}, [4596] = {.lex_state = 0}, [4597] = {.lex_state = 0}, [4598] = {.lex_state = 0}, [4599] = {.lex_state = 0}, - [4600] = {.lex_state = 85}, + [4600] = {.lex_state = 0}, [4601] = {.lex_state = 0}, [4602] = {.lex_state = 0}, [4603] = {.lex_state = 0}, - [4604] = {.lex_state = 85}, + [4604] = {.lex_state = 0}, [4605] = {.lex_state = 0}, [4606] = {.lex_state = 0}, [4607] = {.lex_state = 0}, - [4608] = {.lex_state = 85}, + [4608] = {.lex_state = 0}, [4609] = {.lex_state = 0}, [4610] = {.lex_state = 0}, [4611] = {.lex_state = 0}, @@ -18884,39 +18883,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4615] = {.lex_state = 0}, [4616] = {.lex_state = 0}, [4617] = {.lex_state = 0}, - [4618] = {.lex_state = 85}, + [4618] = {.lex_state = 0}, [4619] = {.lex_state = 0}, - [4620] = {.lex_state = 85}, + [4620] = {.lex_state = 0}, [4621] = {.lex_state = 0}, - [4622] = {.lex_state = 0}, + [4622] = {.lex_state = 86}, [4623] = {.lex_state = 0}, [4624] = {.lex_state = 0}, [4625] = {.lex_state = 0}, - [4626] = {.lex_state = 85}, + [4626] = {.lex_state = 0}, [4627] = {.lex_state = 0}, [4628] = {.lex_state = 0}, [4629] = {.lex_state = 0}, [4630] = {.lex_state = 0}, [4631] = {.lex_state = 0}, - [4632] = {.lex_state = 85}, - [4633] = {.lex_state = 0}, - [4634] = {.lex_state = 0}, - [4635] = {.lex_state = 0}, - [4636] = {.lex_state = 0}, - [4637] = {.lex_state = 0}, - [4638] = {.lex_state = 0}, - [4639] = {.lex_state = 0}, - [4640] = {.lex_state = 0}, - [4641] = {.lex_state = 0}, - [4642] = {.lex_state = 85}, - [4643] = {.lex_state = 205}, - [4644] = {.lex_state = 0}, - [4645] = {.lex_state = 0}, - [4646] = {.lex_state = 0}, - [4647] = {.lex_state = 0}, - [4648] = {(TSStateId)(-1)}, - [4649] = {(TSStateId)(-1)}, - [4650] = {(TSStateId)(-1)}, + [4632] = {(TSStateId)(-1)}, + [4633] = {(TSStateId)(-1)}, + [4634] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -18986,7 +18969,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_CARET] = ACTIONS(1), [anon_sym_AMP_AMP] = ACTIONS(1), [anon_sym_PIPE_PIPE] = ACTIONS(1), - [anon_sym_DOLLAR] = ACTIONS(1), [anon_sym_or] = ACTIONS(1), [sym_escape_sequence] = ACTIONS(1), [sym_none] = ACTIONS(1), @@ -18997,8 +18979,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_LBRACK] = ACTIONS(1), [anon_sym_if] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), - [anon_sym_DOLLARif] = ACTIONS(1), - [anon_sym_DOLLARelse] = ACTIONS(1), [anon_sym_is] = ACTIONS(1), [anon_sym_BANGis] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), @@ -19023,6 +19003,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sql] = ACTIONS(1), [sym_int_literal] = ACTIONS(1), [sym_rune_literal] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_DOLLAR] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [anon_sym_c_SQUOTE] = ACTIONS(1), + [anon_sym_c_DQUOTE] = ACTIONS(1), + [anon_sym_r_SQUOTE] = ACTIONS(1), + [anon_sym_r_DQUOTE] = ACTIONS(1), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), [aux_sym_format_specifier_token1] = ACTIONS(1), [aux_sym_format_specifier_token2] = ACTIONS(1), [anon_sym_0] = ACTIONS(1), @@ -19040,125 +19028,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1), [anon_sym_continue] = ACTIONS(1), [anon_sym_return] = ACTIONS(1), - [anon_sym_DOLLARfor] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), [anon_sym_DOT_DOT] = ACTIONS(1), [anon_sym_POUND] = ACTIONS(1), [anon_sym_asm] = ACTIONS(1), [anon_sym_AT_LBRACK] = ACTIONS(1), - [sym___dolcbr] = ACTIONS(1), - [sym___double_quote] = ACTIONS(1), - [sym___single_quote] = ACTIONS(1), - [sym___c_double_quote] = ACTIONS(1), - [sym___c_single_quote] = ACTIONS(1), - [sym___r_double_quote] = ACTIONS(1), - [sym___r_single_quote] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(4582), + [sym_source_file] = STATE(4520), [sym_shebang] = STATE(2), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), - [sym_module_clause] = STATE(4), - [sym_import_list] = STATE(11), - [sym_import_declaration] = STATE(1586), - [sym_const_declaration] = STATE(1496), - [sym_global_var_declaration] = STATE(1496), - [sym_type_declaration] = STATE(1496), - [sym_function_declaration] = STATE(1496), - [sym_static_method_declaration] = STATE(1496), - [sym_struct_declaration] = STATE(1496), - [sym_enum_declaration] = STATE(1496), - [sym_interface_declaration] = STATE(1496), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_strictly_expression_list] = STATE(1497), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_visibility_modifiers] = STATE(3431), - [sym_mutability_modifiers] = STATE(800), - [sym_mutable_expression] = STATE(3271), - [sym_expression_list] = STATE(3330), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement] = STATE(1496), - [sym_simple_statement] = STATE(1532), - [sym_assert_statement] = STATE(1532), - [sym_append_statement] = STATE(1532), - [sym_send_statement] = STATE(1532), - [sym_var_declaration] = STATE(1497), - [sym_assignment_statement] = STATE(1497), - [sym_block] = STATE(1532), - [sym_defer_statement] = STATE(1532), - [sym_goto_statement] = STATE(1532), - [sym_break_statement] = STATE(1532), - [sym_continue_statement] = STATE(1532), - [sym_return_statement] = STATE(1532), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1532), - [sym_compile_time_for_statement] = STATE(1532), - [sym_for_statement] = STATE(1532), - [sym_hash_statement] = STATE(1532), - [sym_asm_statement] = STATE(1532), - [sym_attributes] = STATE(3366), - [sym_attribute] = STATE(3319), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_import_list_repeat1] = STATE(1535), - [aux_sym_attributes_repeat1] = STATE(3331), + [sym_module_clause] = STATE(3), + [sym_import_list] = STATE(5), + [sym_import_declaration] = STATE(1583), + [sym_const_declaration] = STATE(1499), + [sym_global_var_declaration] = STATE(1499), + [sym_type_declaration] = STATE(1499), + [sym_function_declaration] = STATE(1499), + [sym_static_method_declaration] = STATE(1499), + [sym_struct_declaration] = STATE(1499), + [sym_enum_declaration] = STATE(1499), + [sym_interface_declaration] = STATE(1499), + [sym__expression] = STATE(214), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_strictly_expression_list] = STATE(1501), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_visibility_modifiers] = STATE(3401), + [sym_mutability_modifiers] = STATE(566), + [sym_mutable_expression] = STATE(3274), + [sym_expression_list] = STATE(3313), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement] = STATE(1499), + [sym_simple_statement] = STATE(1489), + [sym_assert_statement] = STATE(1489), + [sym_append_statement] = STATE(1489), + [sym_send_statement] = STATE(1489), + [sym_var_declaration] = STATE(1501), + [sym_assignment_statement] = STATE(1501), + [sym_block] = STATE(1489), + [sym_defer_statement] = STATE(1489), + [sym_goto_statement] = STATE(1489), + [sym_break_statement] = STATE(1489), + [sym_continue_statement] = STATE(1489), + [sym_return_statement] = STATE(1489), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1489), + [sym_compile_time_for_statement] = STATE(1489), + [sym_for_statement] = STATE(1489), + [sym_hash_statement] = STATE(1489), + [sym_asm_statement] = STATE(1489), + [sym_attributes] = STATE(3365), + [sym_attribute] = STATE(3292), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_import_list_repeat1] = STATE(1505), + [aux_sym_attributes_repeat1] = STATE(3332), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_POUND_BANG] = ACTIONS(11), @@ -19207,133 +19187,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(63), [sym_float_literal] = ACTIONS(79), [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(109), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [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), + [anon_sym_assert] = ACTIONS(105), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_goto] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_return] = ACTIONS(115), + [anon_sym_DOLLARfor] = ACTIONS(117), + [anon_sym_for] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_asm] = ACTIONS(123), + [anon_sym_AT_LBRACK] = ACTIONS(125), }, [2] = { [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), - [sym_module_clause] = STATE(3), - [sym_import_list] = STATE(6), - [sym_import_declaration] = STATE(1586), - [sym_const_declaration] = STATE(1496), - [sym_global_var_declaration] = STATE(1496), - [sym_type_declaration] = STATE(1496), - [sym_function_declaration] = STATE(1496), - [sym_static_method_declaration] = STATE(1496), - [sym_struct_declaration] = STATE(1496), - [sym_enum_declaration] = STATE(1496), - [sym_interface_declaration] = STATE(1496), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_strictly_expression_list] = STATE(1497), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_visibility_modifiers] = STATE(3431), - [sym_mutability_modifiers] = STATE(800), - [sym_mutable_expression] = STATE(3271), - [sym_expression_list] = STATE(3330), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement] = STATE(1496), - [sym_simple_statement] = STATE(1532), - [sym_assert_statement] = STATE(1532), - [sym_append_statement] = STATE(1532), - [sym_send_statement] = STATE(1532), - [sym_var_declaration] = STATE(1497), - [sym_assignment_statement] = STATE(1497), - [sym_block] = STATE(1532), - [sym_defer_statement] = STATE(1532), - [sym_goto_statement] = STATE(1532), - [sym_break_statement] = STATE(1532), - [sym_continue_statement] = STATE(1532), - [sym_return_statement] = STATE(1532), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1532), - [sym_compile_time_for_statement] = STATE(1532), - [sym_for_statement] = STATE(1532), - [sym_hash_statement] = STATE(1532), - [sym_asm_statement] = STATE(1532), - [sym_attributes] = STATE(3366), - [sym_attribute] = STATE(3319), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_import_list_repeat1] = STATE(1535), - [aux_sym_attributes_repeat1] = STATE(3331), + [sym_module_clause] = STATE(4), + [sym_import_list] = STATE(8), + [sym_import_declaration] = STATE(1583), + [sym_const_declaration] = STATE(1499), + [sym_global_var_declaration] = STATE(1499), + [sym_type_declaration] = STATE(1499), + [sym_function_declaration] = STATE(1499), + [sym_static_method_declaration] = STATE(1499), + [sym_struct_declaration] = STATE(1499), + [sym_enum_declaration] = STATE(1499), + [sym_interface_declaration] = STATE(1499), + [sym__expression] = STATE(214), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_strictly_expression_list] = STATE(1501), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_visibility_modifiers] = STATE(3401), + [sym_mutability_modifiers] = STATE(566), + [sym_mutable_expression] = STATE(3274), + [sym_expression_list] = STATE(3313), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement] = STATE(1499), + [sym_simple_statement] = STATE(1489), + [sym_assert_statement] = STATE(1489), + [sym_append_statement] = STATE(1489), + [sym_send_statement] = STATE(1489), + [sym_var_declaration] = STATE(1501), + [sym_assignment_statement] = STATE(1501), + [sym_block] = STATE(1489), + [sym_defer_statement] = STATE(1489), + [sym_goto_statement] = STATE(1489), + [sym_break_statement] = STATE(1489), + [sym_continue_statement] = STATE(1489), + [sym_return_statement] = STATE(1489), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1489), + [sym_compile_time_for_statement] = STATE(1489), + [sym_for_statement] = STATE(1489), + [sym_hash_statement] = STATE(1489), + [sym_asm_statement] = STATE(1489), + [sym_attributes] = STATE(3365), + [sym_attribute] = STATE(3292), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_import_list_repeat1] = STATE(1505), + [aux_sym_attributes_repeat1] = STATE(3332), [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -19381,133 +19361,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(63), [sym_float_literal] = ACTIONS(79), [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), + [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), + [anon_sym_assert] = ACTIONS(105), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_goto] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_return] = ACTIONS(115), + [anon_sym_DOLLARfor] = ACTIONS(117), + [anon_sym_for] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(123), + [anon_sym_AT_LBRACK] = ACTIONS(125), }, [3] = { [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [sym_import_list] = STATE(5), - [sym_import_declaration] = STATE(1586), - [sym_const_declaration] = STATE(1496), - [sym_global_var_declaration] = STATE(1496), - [sym_type_declaration] = STATE(1496), - [sym_function_declaration] = STATE(1496), - [sym_static_method_declaration] = STATE(1496), - [sym_struct_declaration] = STATE(1496), - [sym_enum_declaration] = STATE(1496), - [sym_interface_declaration] = STATE(1496), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_strictly_expression_list] = STATE(1497), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_visibility_modifiers] = STATE(3431), - [sym_mutability_modifiers] = STATE(800), - [sym_mutable_expression] = STATE(3271), - [sym_expression_list] = STATE(3330), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement] = STATE(1496), - [sym_simple_statement] = STATE(1532), - [sym_assert_statement] = STATE(1532), - [sym_append_statement] = STATE(1532), - [sym_send_statement] = STATE(1532), - [sym_var_declaration] = STATE(1497), - [sym_assignment_statement] = STATE(1497), - [sym_block] = STATE(1532), - [sym_defer_statement] = STATE(1532), - [sym_goto_statement] = STATE(1532), - [sym_break_statement] = STATE(1532), - [sym_continue_statement] = STATE(1532), - [sym_return_statement] = STATE(1532), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1532), - [sym_compile_time_for_statement] = STATE(1532), - [sym_for_statement] = STATE(1532), - [sym_hash_statement] = STATE(1532), - [sym_asm_statement] = STATE(1532), - [sym_attributes] = STATE(3374), - [sym_attribute] = STATE(3319), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_import_list_repeat1] = STATE(1535), - [aux_sym_attributes_repeat1] = STATE(3331), - [ts_builtin_sym_end] = ACTIONS(131), + [sym_import_list] = STATE(8), + [sym_import_declaration] = STATE(1583), + [sym_const_declaration] = STATE(1499), + [sym_global_var_declaration] = STATE(1499), + [sym_type_declaration] = STATE(1499), + [sym_function_declaration] = STATE(1499), + [sym_static_method_declaration] = STATE(1499), + [sym_struct_declaration] = STATE(1499), + [sym_enum_declaration] = STATE(1499), + [sym_interface_declaration] = STATE(1499), + [sym__expression] = STATE(214), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_strictly_expression_list] = STATE(1501), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_visibility_modifiers] = STATE(3401), + [sym_mutability_modifiers] = STATE(566), + [sym_mutable_expression] = STATE(3274), + [sym_expression_list] = STATE(3313), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement] = STATE(1499), + [sym_simple_statement] = STATE(1489), + [sym_assert_statement] = STATE(1489), + [sym_append_statement] = STATE(1489), + [sym_send_statement] = STATE(1489), + [sym_var_declaration] = STATE(1501), + [sym_assignment_statement] = STATE(1501), + [sym_block] = STATE(1489), + [sym_defer_statement] = STATE(1489), + [sym_goto_statement] = STATE(1489), + [sym_break_statement] = STATE(1489), + [sym_continue_statement] = STATE(1489), + [sym_return_statement] = STATE(1489), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1489), + [sym_compile_time_for_statement] = STATE(1489), + [sym_for_statement] = STATE(1489), + [sym_hash_statement] = STATE(1489), + [sym_asm_statement] = STATE(1489), + [sym_attributes] = STATE(3381), + [sym_attribute] = STATE(3292), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_import_list_repeat1] = STATE(1505), + [aux_sym_attributes_repeat1] = STATE(3332), + [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -19553,133 +19533,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(63), [sym_float_literal] = ACTIONS(79), [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), + [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), + [anon_sym_assert] = ACTIONS(105), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_goto] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_return] = ACTIONS(115), + [anon_sym_DOLLARfor] = ACTIONS(117), + [anon_sym_for] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(123), + [anon_sym_AT_LBRACK] = ACTIONS(125), }, [4] = { [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), - [sym_import_list] = STATE(6), - [sym_import_declaration] = STATE(1586), - [sym_const_declaration] = STATE(1496), - [sym_global_var_declaration] = STATE(1496), - [sym_type_declaration] = STATE(1496), - [sym_function_declaration] = STATE(1496), - [sym_static_method_declaration] = STATE(1496), - [sym_struct_declaration] = STATE(1496), - [sym_enum_declaration] = STATE(1496), - [sym_interface_declaration] = STATE(1496), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_strictly_expression_list] = STATE(1497), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_visibility_modifiers] = STATE(3431), - [sym_mutability_modifiers] = STATE(800), - [sym_mutable_expression] = STATE(3271), - [sym_expression_list] = STATE(3330), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement] = STATE(1496), - [sym_simple_statement] = STATE(1532), - [sym_assert_statement] = STATE(1532), - [sym_append_statement] = STATE(1532), - [sym_send_statement] = STATE(1532), - [sym_var_declaration] = STATE(1497), - [sym_assignment_statement] = STATE(1497), - [sym_block] = STATE(1532), - [sym_defer_statement] = STATE(1532), - [sym_goto_statement] = STATE(1532), - [sym_break_statement] = STATE(1532), - [sym_continue_statement] = STATE(1532), - [sym_return_statement] = STATE(1532), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1532), - [sym_compile_time_for_statement] = STATE(1532), - [sym_for_statement] = STATE(1532), - [sym_hash_statement] = STATE(1532), - [sym_asm_statement] = STATE(1532), - [sym_attributes] = STATE(3374), - [sym_attribute] = STATE(3319), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_import_list_repeat1] = STATE(1535), - [aux_sym_attributes_repeat1] = STATE(3331), - [ts_builtin_sym_end] = ACTIONS(127), + [sym_import_list] = STATE(7), + [sym_import_declaration] = STATE(1583), + [sym_const_declaration] = STATE(1499), + [sym_global_var_declaration] = STATE(1499), + [sym_type_declaration] = STATE(1499), + [sym_function_declaration] = STATE(1499), + [sym_static_method_declaration] = STATE(1499), + [sym_struct_declaration] = STATE(1499), + [sym_enum_declaration] = STATE(1499), + [sym_interface_declaration] = STATE(1499), + [sym__expression] = STATE(214), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_strictly_expression_list] = STATE(1501), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_visibility_modifiers] = STATE(3401), + [sym_mutability_modifiers] = STATE(566), + [sym_mutable_expression] = STATE(3274), + [sym_expression_list] = STATE(3313), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement] = STATE(1499), + [sym_simple_statement] = STATE(1489), + [sym_assert_statement] = STATE(1489), + [sym_append_statement] = STATE(1489), + [sym_send_statement] = STATE(1489), + [sym_var_declaration] = STATE(1501), + [sym_assignment_statement] = STATE(1501), + [sym_block] = STATE(1489), + [sym_defer_statement] = STATE(1489), + [sym_goto_statement] = STATE(1489), + [sym_break_statement] = STATE(1489), + [sym_continue_statement] = STATE(1489), + [sym_return_statement] = STATE(1489), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1489), + [sym_compile_time_for_statement] = STATE(1489), + [sym_for_statement] = STATE(1489), + [sym_hash_statement] = STATE(1489), + [sym_asm_statement] = STATE(1489), + [sym_attributes] = STATE(3381), + [sym_attribute] = STATE(3292), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_import_list_repeat1] = STATE(1505), + [aux_sym_attributes_repeat1] = STATE(3332), + [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -19725,130 +19705,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(63), [sym_float_literal] = ACTIONS(79), [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), + [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), + [anon_sym_assert] = ACTIONS(105), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_goto] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_return] = ACTIONS(115), + [anon_sym_DOLLARfor] = ACTIONS(117), + [anon_sym_for] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(123), + [anon_sym_AT_LBRACK] = ACTIONS(125), }, [5] = { [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [sym_const_declaration] = STATE(1496), - [sym_global_var_declaration] = STATE(1496), - [sym_type_declaration] = STATE(1496), - [sym_function_declaration] = STATE(1496), - [sym_static_method_declaration] = STATE(1496), - [sym_struct_declaration] = STATE(1496), - [sym_enum_declaration] = STATE(1496), - [sym_interface_declaration] = STATE(1496), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_strictly_expression_list] = STATE(1497), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_visibility_modifiers] = STATE(3431), - [sym_mutability_modifiers] = STATE(800), - [sym_mutable_expression] = STATE(3271), - [sym_expression_list] = STATE(3330), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement] = STATE(1496), - [sym_simple_statement] = STATE(1532), - [sym_assert_statement] = STATE(1532), - [sym_append_statement] = STATE(1532), - [sym_send_statement] = STATE(1532), - [sym_var_declaration] = STATE(1497), - [sym_assignment_statement] = STATE(1497), - [sym_block] = STATE(1532), - [sym_defer_statement] = STATE(1532), - [sym_goto_statement] = STATE(1532), - [sym_break_statement] = STATE(1532), - [sym_continue_statement] = STATE(1532), - [sym_return_statement] = STATE(1532), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1532), - [sym_compile_time_for_statement] = STATE(1532), - [sym_for_statement] = STATE(1532), - [sym_hash_statement] = STATE(1532), - [sym_asm_statement] = STATE(1532), - [sym_attributes] = STATE(3374), - [sym_attribute] = STATE(3319), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_attributes_repeat1] = STATE(3331), - [ts_builtin_sym_end] = ACTIONS(133), + [sym_const_declaration] = STATE(1499), + [sym_global_var_declaration] = STATE(1499), + [sym_type_declaration] = STATE(1499), + [sym_function_declaration] = STATE(1499), + [sym_static_method_declaration] = STATE(1499), + [sym_struct_declaration] = STATE(1499), + [sym_enum_declaration] = STATE(1499), + [sym_interface_declaration] = STATE(1499), + [sym__expression] = STATE(214), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_strictly_expression_list] = STATE(1501), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_visibility_modifiers] = STATE(3401), + [sym_mutability_modifiers] = STATE(566), + [sym_mutable_expression] = STATE(3274), + [sym_expression_list] = STATE(3313), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement] = STATE(1499), + [sym_simple_statement] = STATE(1489), + [sym_assert_statement] = STATE(1489), + [sym_append_statement] = STATE(1489), + [sym_send_statement] = STATE(1489), + [sym_var_declaration] = STATE(1501), + [sym_assignment_statement] = STATE(1501), + [sym_block] = STATE(1489), + [sym_defer_statement] = STATE(1489), + [sym_goto_statement] = STATE(1489), + [sym_break_statement] = STATE(1489), + [sym_continue_statement] = STATE(1489), + [sym_return_statement] = STATE(1489), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1489), + [sym_compile_time_for_statement] = STATE(1489), + [sym_for_statement] = STATE(1489), + [sym_hash_statement] = STATE(1489), + [sym_asm_statement] = STATE(1489), + [sym_attributes] = STATE(3381), + [sym_attribute] = STATE(3292), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_attributes_repeat1] = STATE(3332), + [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -19893,130 +19873,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(63), [sym_float_literal] = ACTIONS(79), [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), + [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), + [anon_sym_assert] = ACTIONS(105), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_goto] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_return] = ACTIONS(115), + [anon_sym_DOLLARfor] = ACTIONS(117), + [anon_sym_for] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(123), + [anon_sym_AT_LBRACK] = ACTIONS(125), }, [6] = { [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), - [sym_const_declaration] = STATE(1496), - [sym_global_var_declaration] = STATE(1496), - [sym_type_declaration] = STATE(1496), - [sym_function_declaration] = STATE(1496), - [sym_static_method_declaration] = STATE(1496), - [sym_struct_declaration] = STATE(1496), - [sym_enum_declaration] = STATE(1496), - [sym_interface_declaration] = STATE(1496), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_strictly_expression_list] = STATE(1497), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_visibility_modifiers] = STATE(3431), - [sym_mutability_modifiers] = STATE(800), - [sym_mutable_expression] = STATE(3271), - [sym_expression_list] = STATE(3330), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement] = STATE(1496), - [sym_simple_statement] = STATE(1532), - [sym_assert_statement] = STATE(1532), - [sym_append_statement] = STATE(1532), - [sym_send_statement] = STATE(1532), - [sym_var_declaration] = STATE(1497), - [sym_assignment_statement] = STATE(1497), - [sym_block] = STATE(1532), - [sym_defer_statement] = STATE(1532), - [sym_goto_statement] = STATE(1532), - [sym_break_statement] = STATE(1532), - [sym_continue_statement] = STATE(1532), - [sym_return_statement] = STATE(1532), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1532), - [sym_compile_time_for_statement] = STATE(1532), - [sym_for_statement] = STATE(1532), - [sym_hash_statement] = STATE(1532), - [sym_asm_statement] = STATE(1532), - [sym_attributes] = STATE(3374), - [sym_attribute] = STATE(3319), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_attributes_repeat1] = STATE(3331), - [ts_builtin_sym_end] = ACTIONS(131), + [sym_const_declaration] = STATE(1499), + [sym_global_var_declaration] = STATE(1499), + [sym_type_declaration] = STATE(1499), + [sym_function_declaration] = STATE(1499), + [sym_static_method_declaration] = STATE(1499), + [sym_struct_declaration] = STATE(1499), + [sym_enum_declaration] = STATE(1499), + [sym_interface_declaration] = STATE(1499), + [sym__expression] = STATE(214), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_strictly_expression_list] = STATE(1501), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_visibility_modifiers] = STATE(3401), + [sym_mutability_modifiers] = STATE(566), + [sym_mutable_expression] = STATE(3274), + [sym_expression_list] = STATE(3313), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement] = STATE(1499), + [sym_simple_statement] = STATE(1489), + [sym_assert_statement] = STATE(1489), + [sym_append_statement] = STATE(1489), + [sym_send_statement] = STATE(1489), + [sym_var_declaration] = STATE(1501), + [sym_assignment_statement] = STATE(1501), + [sym_block] = STATE(1489), + [sym_defer_statement] = STATE(1489), + [sym_goto_statement] = STATE(1489), + [sym_break_statement] = STATE(1489), + [sym_continue_statement] = STATE(1489), + [sym_return_statement] = STATE(1489), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1489), + [sym_compile_time_for_statement] = STATE(1489), + [sym_for_statement] = STATE(1489), + [sym_hash_statement] = STATE(1489), + [sym_asm_statement] = STATE(1489), + [sym_attributes] = STATE(3381), + [sym_attribute] = STATE(3292), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_attributes_repeat1] = STATE(3332), + [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -20061,130 +20041,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(63), [sym_float_literal] = ACTIONS(79), [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), + [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), + [anon_sym_assert] = ACTIONS(105), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_goto] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_return] = ACTIONS(115), + [anon_sym_DOLLARfor] = ACTIONS(117), + [anon_sym_for] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [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(1496), - [sym_global_var_declaration] = STATE(1496), - [sym_type_declaration] = STATE(1496), - [sym_function_declaration] = STATE(1496), - [sym_static_method_declaration] = STATE(1496), - [sym_struct_declaration] = STATE(1496), - [sym_enum_declaration] = STATE(1496), - [sym_interface_declaration] = STATE(1496), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_strictly_expression_list] = STATE(1497), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_visibility_modifiers] = STATE(3431), - [sym_mutability_modifiers] = STATE(800), - [sym_mutable_expression] = STATE(3271), - [sym_expression_list] = STATE(3330), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement] = STATE(1496), - [sym_simple_statement] = STATE(1532), - [sym_assert_statement] = STATE(1532), - [sym_append_statement] = STATE(1532), - [sym_send_statement] = STATE(1532), - [sym_var_declaration] = STATE(1497), - [sym_assignment_statement] = STATE(1497), - [sym_block] = STATE(1532), - [sym_defer_statement] = STATE(1532), - [sym_goto_statement] = STATE(1532), - [sym_break_statement] = STATE(1532), - [sym_continue_statement] = STATE(1532), - [sym_return_statement] = STATE(1532), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1532), - [sym_compile_time_for_statement] = STATE(1532), - [sym_for_statement] = STATE(1532), - [sym_hash_statement] = STATE(1532), - [sym_asm_statement] = STATE(1532), - [sym_attributes] = STATE(3374), - [sym_attribute] = STATE(3319), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_attributes_repeat1] = STATE(3331), - [ts_builtin_sym_end] = ACTIONS(131), + [sym_const_declaration] = STATE(1499), + [sym_global_var_declaration] = STATE(1499), + [sym_type_declaration] = STATE(1499), + [sym_function_declaration] = STATE(1499), + [sym_static_method_declaration] = STATE(1499), + [sym_struct_declaration] = STATE(1499), + [sym_enum_declaration] = STATE(1499), + [sym_interface_declaration] = STATE(1499), + [sym__expression] = STATE(214), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_strictly_expression_list] = STATE(1501), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_visibility_modifiers] = STATE(3401), + [sym_mutability_modifiers] = STATE(566), + [sym_mutable_expression] = STATE(3274), + [sym_expression_list] = STATE(3313), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement] = STATE(1499), + [sym_simple_statement] = STATE(1489), + [sym_assert_statement] = STATE(1489), + [sym_append_statement] = STATE(1489), + [sym_send_statement] = STATE(1489), + [sym_var_declaration] = STATE(1501), + [sym_assignment_statement] = STATE(1501), + [sym_block] = STATE(1489), + [sym_defer_statement] = STATE(1489), + [sym_goto_statement] = STATE(1489), + [sym_break_statement] = STATE(1489), + [sym_continue_statement] = STATE(1489), + [sym_return_statement] = STATE(1489), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1489), + [sym_compile_time_for_statement] = STATE(1489), + [sym_for_statement] = STATE(1489), + [sym_hash_statement] = STATE(1489), + [sym_asm_statement] = STATE(1489), + [sym_attributes] = STATE(3381), + [sym_attribute] = STATE(3292), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_attributes_repeat1] = STATE(3332), + [ts_builtin_sym_end] = ACTIONS(133), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -20229,298 +20209,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(63), [sym_float_literal] = ACTIONS(79), [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), + [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), + [anon_sym_assert] = ACTIONS(105), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_goto] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_return] = ACTIONS(115), + [anon_sym_DOLLARfor] = ACTIONS(117), + [anon_sym_for] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [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(1496), - [sym_global_var_declaration] = STATE(1496), - [sym_type_declaration] = STATE(1496), - [sym_function_declaration] = STATE(1496), - [sym_static_method_declaration] = STATE(1496), - [sym_struct_declaration] = STATE(1496), - [sym_enum_declaration] = STATE(1496), - [sym_interface_declaration] = STATE(1496), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_strictly_expression_list] = STATE(1497), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_visibility_modifiers] = STATE(3431), - [sym_mutability_modifiers] = STATE(800), - [sym_mutable_expression] = STATE(3271), - [sym_expression_list] = STATE(3330), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement] = STATE(1496), - [sym_simple_statement] = STATE(1532), - [sym_assert_statement] = STATE(1532), - [sym_append_statement] = STATE(1532), - [sym_send_statement] = STATE(1532), - [sym_var_declaration] = STATE(1497), - [sym_assignment_statement] = STATE(1497), - [sym_block] = STATE(1532), - [sym_defer_statement] = STATE(1532), - [sym_goto_statement] = STATE(1532), - [sym_break_statement] = STATE(1532), - [sym_continue_statement] = STATE(1532), - [sym_return_statement] = STATE(1532), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1532), - [sym_compile_time_for_statement] = STATE(1532), - [sym_for_statement] = STATE(1532), - [sym_hash_statement] = STATE(1532), - [sym_asm_statement] = STATE(1532), - [sym_attributes] = STATE(3374), - [sym_attribute] = STATE(3319), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_attributes_repeat1] = STATE(3331), - [ts_builtin_sym_end] = ACTIONS(135), - [sym_identifier] = ACTIONS(137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(140), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_const] = ACTIONS(146), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym___global] = ACTIONS(152), - [anon_sym_type] = ACTIONS(155), - [anon_sym_fn] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_DASH] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(164), - [anon_sym_struct] = ACTIONS(167), - [anon_sym_union] = ACTIONS(170), - [anon_sym_pub] = ACTIONS(173), - [anon_sym_mut] = ACTIONS(176), - [anon_sym_enum] = ACTIONS(179), - [anon_sym_interface] = ACTIONS(182), - [anon_sym_QMARK] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(188), - [anon_sym_go] = ACTIONS(191), - [anon_sym_spawn] = ACTIONS(194), - [anon_sym_json_DOTdecode] = ACTIONS(197), - [anon_sym_LBRACK2] = ACTIONS(200), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_CARET] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(206), - [sym_none] = ACTIONS(209), - [sym_true] = ACTIONS(209), - [sym_false] = ACTIONS(209), - [sym_nil] = ACTIONS(209), - [anon_sym_if] = ACTIONS(212), - [anon_sym_DOLLARif] = ACTIONS(215), - [anon_sym_match] = ACTIONS(218), - [anon_sym_select] = ACTIONS(221), - [anon_sym_lock] = ACTIONS(224), - [anon_sym_rlock] = ACTIONS(224), - [anon_sym_unsafe] = ACTIONS(227), - [anon_sym_sql] = ACTIONS(230), - [sym_int_literal] = ACTIONS(209), - [sym_float_literal] = ACTIONS(233), - [sym_rune_literal] = ACTIONS(233), - [sym_pseudo_compile_time_identifier] = ACTIONS(236), - [anon_sym_shared] = ACTIONS(239), - [anon_sym_map_LBRACK] = ACTIONS(242), - [anon_sym_chan] = ACTIONS(245), - [anon_sym_thread] = ACTIONS(248), - [anon_sym_atomic] = ACTIONS(251), - [anon_sym_assert] = ACTIONS(254), - [anon_sym_defer] = ACTIONS(257), - [anon_sym_goto] = ACTIONS(260), - [anon_sym_break] = ACTIONS(263), - [anon_sym_continue] = ACTIONS(266), - [anon_sym_return] = ACTIONS(269), - [anon_sym_DOLLARfor] = ACTIONS(272), - [anon_sym_for] = ACTIONS(275), - [anon_sym_POUND] = ACTIONS(278), - [anon_sym_asm] = ACTIONS(281), - [anon_sym_AT_LBRACK] = ACTIONS(284), - [sym___double_quote] = ACTIONS(287), - [sym___single_quote] = ACTIONS(290), - [sym___c_double_quote] = ACTIONS(293), - [sym___c_single_quote] = ACTIONS(296), - [sym___r_double_quote] = ACTIONS(299), - [sym___r_single_quote] = ACTIONS(302), - }, - [9] = { - [sym_line_comment] = STATE(9), - [sym_block_comment] = STATE(9), - [sym_const_declaration] = STATE(1496), - [sym_global_var_declaration] = STATE(1496), - [sym_type_declaration] = STATE(1496), - [sym_function_declaration] = STATE(1496), - [sym_static_method_declaration] = STATE(1496), - [sym_struct_declaration] = STATE(1496), - [sym_enum_declaration] = STATE(1496), - [sym_interface_declaration] = STATE(1496), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_strictly_expression_list] = STATE(1497), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_visibility_modifiers] = STATE(3431), - [sym_mutability_modifiers] = STATE(800), - [sym_mutable_expression] = STATE(3271), - [sym_expression_list] = STATE(3330), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement] = STATE(1496), - [sym_simple_statement] = STATE(1532), - [sym_assert_statement] = STATE(1532), - [sym_append_statement] = STATE(1532), - [sym_send_statement] = STATE(1532), - [sym_var_declaration] = STATE(1497), - [sym_assignment_statement] = STATE(1497), - [sym_block] = STATE(1532), - [sym_defer_statement] = STATE(1532), - [sym_goto_statement] = STATE(1532), - [sym_break_statement] = STATE(1532), - [sym_continue_statement] = STATE(1532), - [sym_return_statement] = STATE(1532), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1532), - [sym_compile_time_for_statement] = STATE(1532), - [sym_for_statement] = STATE(1532), - [sym_hash_statement] = STATE(1532), - [sym_asm_statement] = STATE(1532), - [sym_attributes] = STATE(3374), - [sym_attribute] = STATE(3319), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_attributes_repeat1] = STATE(3331), - [ts_builtin_sym_end] = ACTIONS(127), + [sym_const_declaration] = STATE(1499), + [sym_global_var_declaration] = STATE(1499), + [sym_type_declaration] = STATE(1499), + [sym_function_declaration] = STATE(1499), + [sym_static_method_declaration] = STATE(1499), + [sym_struct_declaration] = STATE(1499), + [sym_enum_declaration] = STATE(1499), + [sym_interface_declaration] = STATE(1499), + [sym__expression] = STATE(214), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_strictly_expression_list] = STATE(1501), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_visibility_modifiers] = STATE(3401), + [sym_mutability_modifiers] = STATE(566), + [sym_mutable_expression] = STATE(3274), + [sym_expression_list] = STATE(3313), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement] = STATE(1499), + [sym_simple_statement] = STATE(1489), + [sym_assert_statement] = STATE(1489), + [sym_append_statement] = STATE(1489), + [sym_send_statement] = STATE(1489), + [sym_var_declaration] = STATE(1501), + [sym_assignment_statement] = STATE(1501), + [sym_block] = STATE(1489), + [sym_defer_statement] = STATE(1489), + [sym_goto_statement] = STATE(1489), + [sym_break_statement] = STATE(1489), + [sym_continue_statement] = STATE(1489), + [sym_return_statement] = STATE(1489), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1489), + [sym_compile_time_for_statement] = STATE(1489), + [sym_for_statement] = STATE(1489), + [sym_hash_statement] = STATE(1489), + [sym_asm_statement] = STATE(1489), + [sym_attributes] = STATE(3381), + [sym_attribute] = STATE(3292), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_attributes_repeat1] = STATE(3332), + [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -20565,130 +20377,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(63), [sym_float_literal] = ACTIONS(79), [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), + [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), + [anon_sym_assert] = ACTIONS(105), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_goto] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_return] = ACTIONS(115), + [anon_sym_DOLLARfor] = ACTIONS(117), + [anon_sym_for] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [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(1496), - [sym_global_var_declaration] = STATE(1496), - [sym_type_declaration] = STATE(1496), - [sym_function_declaration] = STATE(1496), - [sym_static_method_declaration] = STATE(1496), - [sym_struct_declaration] = STATE(1496), - [sym_enum_declaration] = STATE(1496), - [sym_interface_declaration] = STATE(1496), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_strictly_expression_list] = STATE(1497), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_visibility_modifiers] = STATE(3431), - [sym_mutability_modifiers] = STATE(800), - [sym_mutable_expression] = STATE(3271), - [sym_expression_list] = STATE(3330), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement] = STATE(1496), - [sym_simple_statement] = STATE(1532), - [sym_assert_statement] = STATE(1532), - [sym_append_statement] = STATE(1532), - [sym_send_statement] = STATE(1532), - [sym_var_declaration] = STATE(1497), - [sym_assignment_statement] = STATE(1497), - [sym_block] = STATE(1532), - [sym_defer_statement] = STATE(1532), - [sym_goto_statement] = STATE(1532), - [sym_break_statement] = STATE(1532), - [sym_continue_statement] = STATE(1532), - [sym_return_statement] = STATE(1532), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1532), - [sym_compile_time_for_statement] = STATE(1532), - [sym_for_statement] = STATE(1532), - [sym_hash_statement] = STATE(1532), - [sym_asm_statement] = STATE(1532), - [sym_attributes] = STATE(3374), - [sym_attribute] = STATE(3319), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_attributes_repeat1] = STATE(3331), - [ts_builtin_sym_end] = ACTIONS(305), + [9] = { + [sym_line_comment] = STATE(9), + [sym_block_comment] = STATE(9), + [sym_const_declaration] = STATE(1499), + [sym_global_var_declaration] = STATE(1499), + [sym_type_declaration] = STATE(1499), + [sym_function_declaration] = STATE(1499), + [sym_static_method_declaration] = STATE(1499), + [sym_struct_declaration] = STATE(1499), + [sym_enum_declaration] = STATE(1499), + [sym_interface_declaration] = STATE(1499), + [sym__expression] = STATE(214), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_strictly_expression_list] = STATE(1501), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_visibility_modifiers] = STATE(3401), + [sym_mutability_modifiers] = STATE(566), + [sym_mutable_expression] = STATE(3274), + [sym_expression_list] = STATE(3313), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement] = STATE(1499), + [sym_simple_statement] = STATE(1489), + [sym_assert_statement] = STATE(1489), + [sym_append_statement] = STATE(1489), + [sym_send_statement] = STATE(1489), + [sym_var_declaration] = STATE(1501), + [sym_assignment_statement] = STATE(1501), + [sym_block] = STATE(1489), + [sym_defer_statement] = STATE(1489), + [sym_goto_statement] = STATE(1489), + [sym_break_statement] = STATE(1489), + [sym_continue_statement] = STATE(1489), + [sym_return_statement] = STATE(1489), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1489), + [sym_compile_time_for_statement] = STATE(1489), + [sym_for_statement] = STATE(1489), + [sym_hash_statement] = STATE(1489), + [sym_asm_statement] = STATE(1489), + [sym_attributes] = STATE(3381), + [sym_attribute] = STATE(3292), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_attributes_repeat1] = STATE(3332), + [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -20733,130 +20545,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(63), [sym_float_literal] = ACTIONS(79), [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), + [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), + [anon_sym_assert] = ACTIONS(105), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_goto] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_return] = ACTIONS(115), + [anon_sym_DOLLARfor] = ACTIONS(117), + [anon_sym_for] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(123), + [anon_sym_AT_LBRACK] = ACTIONS(125), + }, + [10] = { + [sym_line_comment] = STATE(10), + [sym_block_comment] = STATE(10), + [sym_const_declaration] = STATE(1499), + [sym_global_var_declaration] = STATE(1499), + [sym_type_declaration] = STATE(1499), + [sym_function_declaration] = STATE(1499), + [sym_static_method_declaration] = STATE(1499), + [sym_struct_declaration] = STATE(1499), + [sym_enum_declaration] = STATE(1499), + [sym_interface_declaration] = STATE(1499), + [sym__expression] = STATE(214), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_strictly_expression_list] = STATE(1501), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_visibility_modifiers] = STATE(3401), + [sym_mutability_modifiers] = STATE(566), + [sym_mutable_expression] = STATE(3274), + [sym_expression_list] = STATE(3313), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement] = STATE(1499), + [sym_simple_statement] = STATE(1489), + [sym_assert_statement] = STATE(1489), + [sym_append_statement] = STATE(1489), + [sym_send_statement] = STATE(1489), + [sym_var_declaration] = STATE(1501), + [sym_assignment_statement] = STATE(1501), + [sym_block] = STATE(1489), + [sym_defer_statement] = STATE(1489), + [sym_goto_statement] = STATE(1489), + [sym_break_statement] = STATE(1489), + [sym_continue_statement] = STATE(1489), + [sym_return_statement] = STATE(1489), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1489), + [sym_compile_time_for_statement] = STATE(1489), + [sym_for_statement] = STATE(1489), + [sym_hash_statement] = STATE(1489), + [sym_asm_statement] = STATE(1489), + [sym_attributes] = STATE(3381), + [sym_attribute] = STATE(3292), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_attributes_repeat1] = STATE(3332), + [ts_builtin_sym_end] = ACTIONS(135), + [sym_identifier] = ACTIONS(137), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_const] = ACTIONS(146), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym___global] = ACTIONS(152), + [anon_sym_type] = ACTIONS(155), + [anon_sym_fn] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_STAR] = ACTIONS(164), + [anon_sym_struct] = ACTIONS(167), + [anon_sym_union] = ACTIONS(170), + [anon_sym_pub] = ACTIONS(173), + [anon_sym_mut] = ACTIONS(176), + [anon_sym_enum] = ACTIONS(179), + [anon_sym_interface] = ACTIONS(182), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_go] = ACTIONS(191), + [anon_sym_spawn] = ACTIONS(194), + [anon_sym_json_DOTdecode] = ACTIONS(197), + [anon_sym_LBRACK2] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(161), + [anon_sym_CARET] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(203), + [anon_sym_LT_DASH] = ACTIONS(206), + [sym_none] = ACTIONS(209), + [sym_true] = ACTIONS(209), + [sym_false] = ACTIONS(209), + [sym_nil] = ACTIONS(209), + [anon_sym_if] = ACTIONS(212), + [anon_sym_DOLLARif] = ACTIONS(215), + [anon_sym_match] = ACTIONS(218), + [anon_sym_select] = ACTIONS(221), + [anon_sym_lock] = ACTIONS(224), + [anon_sym_rlock] = ACTIONS(224), + [anon_sym_unsafe] = ACTIONS(227), + [anon_sym_sql] = ACTIONS(230), + [sym_int_literal] = ACTIONS(209), + [sym_float_literal] = ACTIONS(233), + [sym_rune_literal] = ACTIONS(233), + [anon_sym_SQUOTE] = ACTIONS(236), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_c_SQUOTE] = ACTIONS(242), + [anon_sym_c_DQUOTE] = ACTIONS(245), + [anon_sym_r_SQUOTE] = ACTIONS(248), + [anon_sym_r_DQUOTE] = ACTIONS(251), + [sym_pseudo_compile_time_identifier] = ACTIONS(254), + [anon_sym_shared] = ACTIONS(257), + [anon_sym_map_LBRACK] = ACTIONS(260), + [anon_sym_chan] = ACTIONS(263), + [anon_sym_thread] = ACTIONS(266), + [anon_sym_atomic] = ACTIONS(269), + [anon_sym_assert] = ACTIONS(272), + [anon_sym_defer] = ACTIONS(275), + [anon_sym_goto] = ACTIONS(278), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(284), + [anon_sym_return] = ACTIONS(287), + [anon_sym_DOLLARfor] = ACTIONS(290), + [anon_sym_for] = ACTIONS(293), + [anon_sym_POUND] = ACTIONS(296), + [anon_sym_asm] = ACTIONS(299), + [anon_sym_AT_LBRACK] = ACTIONS(302), }, [11] = { [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), - [sym_const_declaration] = STATE(1496), - [sym_global_var_declaration] = STATE(1496), - [sym_type_declaration] = STATE(1496), - [sym_function_declaration] = STATE(1496), - [sym_static_method_declaration] = STATE(1496), - [sym_struct_declaration] = STATE(1496), - [sym_enum_declaration] = STATE(1496), - [sym_interface_declaration] = STATE(1496), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_strictly_expression_list] = STATE(1497), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_visibility_modifiers] = STATE(3431), - [sym_mutability_modifiers] = STATE(800), - [sym_mutable_expression] = STATE(3271), - [sym_expression_list] = STATE(3330), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement] = STATE(1496), - [sym_simple_statement] = STATE(1532), - [sym_assert_statement] = STATE(1532), - [sym_append_statement] = STATE(1532), - [sym_send_statement] = STATE(1532), - [sym_var_declaration] = STATE(1497), - [sym_assignment_statement] = STATE(1497), - [sym_block] = STATE(1532), - [sym_defer_statement] = STATE(1532), - [sym_goto_statement] = STATE(1532), - [sym_break_statement] = STATE(1532), - [sym_continue_statement] = STATE(1532), - [sym_return_statement] = STATE(1532), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1532), - [sym_compile_time_for_statement] = STATE(1532), - [sym_for_statement] = STATE(1532), - [sym_hash_statement] = STATE(1532), - [sym_asm_statement] = STATE(1532), - [sym_attributes] = STATE(3374), - [sym_attribute] = STATE(3319), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_attributes_repeat1] = STATE(3331), - [ts_builtin_sym_end] = ACTIONS(127), + [sym_const_declaration] = STATE(1499), + [sym_global_var_declaration] = STATE(1499), + [sym_type_declaration] = STATE(1499), + [sym_function_declaration] = STATE(1499), + [sym_static_method_declaration] = STATE(1499), + [sym_struct_declaration] = STATE(1499), + [sym_enum_declaration] = STATE(1499), + [sym_interface_declaration] = STATE(1499), + [sym__expression] = STATE(214), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_strictly_expression_list] = STATE(1501), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_visibility_modifiers] = STATE(3401), + [sym_mutability_modifiers] = STATE(566), + [sym_mutable_expression] = STATE(3274), + [sym_expression_list] = STATE(3313), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement] = STATE(1499), + [sym_simple_statement] = STATE(1489), + [sym_assert_statement] = STATE(1489), + [sym_append_statement] = STATE(1489), + [sym_send_statement] = STATE(1489), + [sym_var_declaration] = STATE(1501), + [sym_assignment_statement] = STATE(1501), + [sym_block] = STATE(1489), + [sym_defer_statement] = STATE(1489), + [sym_goto_statement] = STATE(1489), + [sym_break_statement] = STATE(1489), + [sym_continue_statement] = STATE(1489), + [sym_return_statement] = STATE(1489), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1489), + [sym_compile_time_for_statement] = STATE(1489), + [sym_for_statement] = STATE(1489), + [sym_hash_statement] = STATE(1489), + [sym_asm_statement] = STATE(1489), + [sym_attributes] = STATE(3381), + [sym_attribute] = STATE(3292), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_attributes_repeat1] = STATE(3332), + [ts_builtin_sym_end] = ACTIONS(305), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -20901,129 +20881,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(63), [sym_float_literal] = ACTIONS(79), [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), + [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), + [anon_sym_assert] = ACTIONS(105), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_goto] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_return] = ACTIONS(115), + [anon_sym_DOLLARfor] = ACTIONS(117), + [anon_sym_for] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [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(1496), - [sym_global_var_declaration] = STATE(1496), - [sym_type_declaration] = STATE(1496), - [sym_function_declaration] = STATE(1496), - [sym_static_method_declaration] = STATE(1496), - [sym_struct_declaration] = STATE(1496), - [sym_enum_declaration] = STATE(1496), - [sym_interface_declaration] = STATE(1496), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_strictly_expression_list] = STATE(1497), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_visibility_modifiers] = STATE(3431), - [sym_mutability_modifiers] = STATE(800), - [sym_mutable_expression] = STATE(3271), - [sym_expression_list] = STATE(3330), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement] = STATE(1496), - [sym_simple_statement] = STATE(1532), - [sym_assert_statement] = STATE(1532), - [sym_append_statement] = STATE(1532), - [sym_send_statement] = STATE(1532), - [sym_var_declaration] = STATE(1497), - [sym_assignment_statement] = STATE(1497), - [sym_block] = STATE(1532), - [sym_defer_statement] = STATE(1532), - [sym_goto_statement] = STATE(1532), - [sym_break_statement] = STATE(1532), - [sym_continue_statement] = STATE(1532), - [sym_return_statement] = STATE(1532), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1532), - [sym_compile_time_for_statement] = STATE(1532), - [sym_for_statement] = STATE(1532), - [sym_hash_statement] = STATE(1532), - [sym_asm_statement] = STATE(1532), - [sym_attributes] = STATE(3374), - [sym_attribute] = STATE(3319), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_attributes_repeat1] = STATE(3331), + [sym_const_declaration] = STATE(1499), + [sym_global_var_declaration] = STATE(1499), + [sym_type_declaration] = STATE(1499), + [sym_function_declaration] = STATE(1499), + [sym_static_method_declaration] = STATE(1499), + [sym_struct_declaration] = STATE(1499), + [sym_enum_declaration] = STATE(1499), + [sym_interface_declaration] = STATE(1499), + [sym__expression] = STATE(214), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_strictly_expression_list] = STATE(1501), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_visibility_modifiers] = STATE(3401), + [sym_mutability_modifiers] = STATE(566), + [sym_mutable_expression] = STATE(3274), + [sym_expression_list] = STATE(3313), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement] = STATE(1499), + [sym_simple_statement] = STATE(1489), + [sym_assert_statement] = STATE(1489), + [sym_append_statement] = STATE(1489), + [sym_send_statement] = STATE(1489), + [sym_var_declaration] = STATE(1501), + [sym_assignment_statement] = STATE(1501), + [sym_block] = STATE(1489), + [sym_defer_statement] = STATE(1489), + [sym_goto_statement] = STATE(1489), + [sym_break_statement] = STATE(1489), + [sym_continue_statement] = STATE(1489), + [sym_return_statement] = STATE(1489), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1489), + [sym_compile_time_for_statement] = STATE(1489), + [sym_for_statement] = STATE(1489), + [sym_hash_statement] = STATE(1489), + [sym_asm_statement] = STATE(1489), + [sym_attributes] = STATE(3381), + [sym_attribute] = STATE(3292), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_attributes_repeat1] = STATE(3332), [ts_builtin_sym_end] = ACTIONS(133), [sym_identifier] = ACTIONS(9), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -21069,120 +21049,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(63), [sym_float_literal] = ACTIONS(79), [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), + [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), + [anon_sym_assert] = ACTIONS(105), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_goto] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_return] = ACTIONS(115), + [anon_sym_DOLLARfor] = ACTIONS(117), + [anon_sym_for] = ACTIONS(119), [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(123), + [anon_sym_AT_LBRACK] = ACTIONS(125), }, [13] = { [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4504), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4561), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -21221,119 +21201,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [14] = { [sym_line_comment] = STATE(14), [sym_block_comment] = STATE(14), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4549), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4476), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(289), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(241), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -21372,125 +21352,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [15] = { [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4549), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4561), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(259), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -21523,125 +21503,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [16] = { [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4504), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4404), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_RBRACE] = ACTIONS(395), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -21674,125 +21654,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [17] = { [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4528), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4561), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(397), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -21825,125 +21805,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [18] = { [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4363), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4560), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(399), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -21976,125 +21956,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [19] = { [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4514), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4630), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(401), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -22127,125 +22107,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [20] = { [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4533), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4509), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(259), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_RBRACE] = ACTIONS(403), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -22278,125 +22258,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [21] = { [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4364), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4611), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -22429,125 +22409,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [22] = { [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4514), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4561), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(407), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -22580,125 +22560,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [23] = { [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4512), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4408), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(409), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -22731,125 +22711,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [24] = { [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4384), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4408), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_RBRACE] = ACTIONS(411), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -22882,125 +22862,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [25] = { [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4514), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4557), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(409), + [anon_sym_RBRACE] = ACTIONS(413), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -23033,125 +23013,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [26] = { [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4504), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4630), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -23184,125 +23164,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [27] = { [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4533), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4395), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(255), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_RBRACE] = ACTIONS(417), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -23335,125 +23315,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [28] = { [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4528), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4536), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(419), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -23486,125 +23466,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [29] = { [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4572), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4509), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(407), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -23637,125 +23617,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [30] = { [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4517), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4509), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(313), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -23788,125 +23768,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [31] = { [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4517), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4476), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(286), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(391), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -23939,125 +23919,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [32] = { [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4533), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4541), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(271), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(423), + [anon_sym_RBRACE] = ACTIONS(421), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -24090,125 +24070,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [33] = { [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4390), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4611), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_RBRACE] = ACTIONS(423), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -24241,125 +24221,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [34] = { [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4597), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4473), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(425), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -24392,125 +24372,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [35] = { [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4390), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4395), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(241), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(429), + [anon_sym_RBRACE] = ACTIONS(427), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -24543,125 +24523,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [36] = { [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4550), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4541), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(429), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -24694,125 +24674,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [37] = { [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4384), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4395), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(433), + [anon_sym_RBRACE] = ACTIONS(431), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -24845,125 +24825,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [38] = { [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4504), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4510), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(433), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -24996,119 +24976,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [39] = { [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4597), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1604), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4536), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), - [aux_sym_map_init_expression_repeat1] = STATE(242), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), + [aux_sym_map_init_expression_repeat1] = STATE(238), [sym_identifier] = ACTIONS(307), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25147,117 +25127,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [40] = { [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4550), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4403), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25296,117 +25276,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [41] = { [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4512), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4510), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25445,117 +25425,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [42] = { [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4502), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4557), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25594,117 +25574,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [43] = { [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4514), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4536), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25743,117 +25723,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [44] = { [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4528), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4476), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -25892,117 +25872,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [45] = { [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4504), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4377), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26041,117 +26021,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [46] = { [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4533), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4395), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26190,117 +26170,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [47] = { [sym_line_comment] = STATE(47), [sym_block_comment] = STATE(47), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4364), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4588), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26339,117 +26319,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [48] = { [sym_line_comment] = STATE(48), [sym_block_comment] = STATE(48), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4518), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4541), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26488,117 +26468,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [49] = { [sym_line_comment] = STATE(49), [sym_block_comment] = STATE(49), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4572), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4561), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26637,117 +26617,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [50] = { [sym_line_comment] = STATE(50), [sym_block_comment] = STATE(50), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4363), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4560), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26786,117 +26766,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [51] = { [sym_line_comment] = STATE(51), [sym_block_comment] = STATE(51), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4402), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4611), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -26935,117 +26915,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [52] = { [sym_line_comment] = STATE(52), [sym_block_comment] = STATE(52), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4634), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4630), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27084,117 +27064,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [53] = { [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4384), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4505), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27233,117 +27213,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [54] = { [sym_line_comment] = STATE(54), [sym_block_comment] = STATE(54), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4549), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4408), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27382,117 +27362,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [55] = { [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4597), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4528), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27531,117 +27511,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [56] = { [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4517), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4404), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27680,117 +27660,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [57] = { [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4508), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4509), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27829,117 +27809,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [58] = { [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4576), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4631), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -27978,117 +27958,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [59] = { [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement_list] = STATE(4390), - [sym__statement] = STATE(3566), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement_list] = STATE(4473), + [sym__statement] = STATE(3557), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4547), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4430), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28127,116 +28107,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [60] = { [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement] = STATE(3594), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement] = STATE(3633), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4563), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4445), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28275,116 +28255,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [61] = { [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement] = STATE(3594), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement] = STATE(3633), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3648), - [sym_empty_labeled_statement] = STATE(4637), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(3686), + [sym_empty_labeled_statement] = STATE(4539), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28423,115 +28403,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [62] = { [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement] = STATE(3688), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(3648), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement] = STATE(3705), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(3686), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28570,115 +28550,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [63] = { [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement] = STATE(3688), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), + [sym__expression] = STATE(214), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_strictly_expression_list] = STATE(1501), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_mutability_modifiers] = STATE(566), + [sym_mutable_expression] = STATE(3274), + [sym_expression_list] = STATE(3313), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement] = STATE(1500), + [sym_simple_statement] = STATE(1489), + [sym_assert_statement] = STATE(1489), + [sym_append_statement] = STATE(1489), + [sym_send_statement] = STATE(1489), + [sym_var_declaration] = STATE(1501), + [sym_assignment_statement] = STATE(1501), + [sym_block] = STATE(1489), + [sym_defer_statement] = STATE(1489), + [sym_goto_statement] = STATE(1489), + [sym_break_statement] = STATE(1489), + [sym_continue_statement] = STATE(1489), + [sym_return_statement] = STATE(1489), [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(3648), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [sym_labeled_statement] = STATE(1489), + [sym_compile_time_for_statement] = STATE(1489), + [sym_for_statement] = STATE(1489), + [sym_hash_statement] = STATE(1489), + [sym_asm_statement] = STATE(1489), + [sym_identifier] = ACTIONS(9), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(105), + [anon_sym_defer] = ACTIONS(107), + [anon_sym_goto] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_return] = ACTIONS(115), + [anon_sym_DOLLARfor] = ACTIONS(117), + [anon_sym_for] = ACTIONS(119), + [anon_sym_POUND] = ACTIONS(129), + [anon_sym_asm] = ACTIONS(123), + }, + [64] = { + [sym_line_comment] = STATE(64), + [sym_block_comment] = STATE(64), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement] = STATE(3633), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(3686), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28716,115 +28842,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, - [64] = { - [sym_line_comment] = STATE(64), - [sym_block_comment] = STATE(64), - [sym__expression] = STATE(1612), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_strictly_expression_list] = STATE(3649), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3278), - [sym_expression_list] = STATE(3323), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement] = STATE(3594), - [sym_simple_statement] = STATE(3648), - [sym_assert_statement] = STATE(3648), - [sym_append_statement] = STATE(3648), - [sym_send_statement] = STATE(3648), - [sym_var_declaration] = STATE(3649), - [sym_assignment_statement] = STATE(3649), - [sym_block] = STATE(3648), - [sym_defer_statement] = STATE(3648), - [sym_goto_statement] = STATE(3648), - [sym_break_statement] = STATE(3648), - [sym_continue_statement] = STATE(3648), - [sym_return_statement] = STATE(3648), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(3648), - [sym_compile_time_for_statement] = STATE(3648), - [sym_for_statement] = STATE(3648), - [sym_hash_statement] = STATE(3648), - [sym_asm_statement] = STATE(3648), + [65] = { + [sym_line_comment] = STATE(65), + [sym_block_comment] = STATE(65), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_strictly_expression_list] = STATE(3732), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(650), + [sym_mutable_expression] = STATE(3277), + [sym_expression_list] = STATE(3319), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__statement] = STATE(3705), + [sym_simple_statement] = STATE(3686), + [sym_assert_statement] = STATE(3686), + [sym_append_statement] = STATE(3686), + [sym_send_statement] = STATE(3686), + [sym_var_declaration] = STATE(3732), + [sym_assignment_statement] = STATE(3732), + [sym_block] = STATE(3686), + [sym_defer_statement] = STATE(3686), + [sym_goto_statement] = STATE(3686), + [sym_break_statement] = STATE(3686), + [sym_continue_statement] = STATE(3686), + [sym_return_statement] = STATE(3686), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(3686), + [sym_compile_time_for_statement] = STATE(3686), + [sym_for_statement] = STATE(3686), + [sym_hash_statement] = STATE(3686), + [sym_asm_statement] = STATE(3686), [sym_identifier] = ACTIONS(437), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -28862,241 +28988,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), - }, - [65] = { - [sym_line_comment] = STATE(65), - [sym_block_comment] = STATE(65), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_strictly_expression_list] = STATE(1497), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_mutability_modifiers] = STATE(800), - [sym_mutable_expression] = STATE(3271), - [sym_expression_list] = STATE(3330), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__statement] = STATE(1518), - [sym_simple_statement] = STATE(1532), - [sym_assert_statement] = STATE(1532), - [sym_append_statement] = STATE(1532), - [sym_send_statement] = STATE(1532), - [sym_var_declaration] = STATE(1497), - [sym_assignment_statement] = STATE(1497), - [sym_block] = STATE(1532), - [sym_defer_statement] = STATE(1532), - [sym_goto_statement] = STATE(1532), - [sym_break_statement] = STATE(1532), - [sym_continue_statement] = STATE(1532), - [sym_return_statement] = STATE(1532), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(1532), - [sym_compile_time_for_statement] = STATE(1532), - [sym_for_statement] = STATE(1532), - [sym_hash_statement] = STATE(1532), - [sym_asm_statement] = STATE(1532), - [sym_identifier] = ACTIONS(9), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(371), + [anon_sym_defer] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_return] = ACTIONS(381), + [anon_sym_DOLLARfor] = ACTIONS(383), + [anon_sym_for] = ACTIONS(385), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_asm] = ACTIONS(389), }, [66] = { [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), [sym__expression] = STATE(953), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(855), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(653), [sym_mutable_expression] = STATE(1413), - [sym_expression_list] = STATE(1524), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), + [sym_expression_list] = STATE(1567), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), [ts_builtin_sym_end] = ACTIONS(491), [sym_identifier] = ACTIONS(493), [anon_sym_LF] = ACTIONS(495), @@ -29145,12 +29125,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(531), [sym_float_literal] = ACTIONS(531), [sym_rune_literal] = ACTIONS(531), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_c_SQUOTE] = ACTIONS(551), + [anon_sym_c_DQUOTE] = ACTIONS(553), + [anon_sym_r_SQUOTE] = ACTIONS(555), + [anon_sym_r_DQUOTE] = ACTIONS(557), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), [anon_sym_assert] = ACTIONS(495), [anon_sym_defer] = ACTIONS(495), [anon_sym_goto] = ACTIONS(495), @@ -29162,36 +29148,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(495), [anon_sym_asm] = ACTIONS(495), [anon_sym_AT_LBRACK] = ACTIONS(495), - [sym___double_quote] = ACTIONS(551), - [sym___single_quote] = ACTIONS(553), - [sym___c_double_quote] = ACTIONS(555), - [sym___c_single_quote] = ACTIONS(557), - [sym___r_double_quote] = ACTIONS(559), - [sym___r_single_quote] = ACTIONS(561), }, [67] = { [sym_line_comment] = STATE(67), [sym_block_comment] = STATE(67), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2320), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), + [sym_reference_expression] = STATE(4392), + [sym_type_reference_expression] = STATE(267), + [sym_plain_type] = STATE(337), + [sym__plain_type_without_special] = STATE(359), + [sym_anon_struct_type] = STATE(358), + [sym_multi_return_type] = STATE(359), + [sym_result_type] = STATE(359), + [sym_option_type] = STATE(359), + [sym_qualified_type] = STATE(267), + [sym_fixed_array_type] = STATE(358), + [sym_array_type] = STATE(358), + [sym_pointer_type] = STATE(358), + [sym_wrong_pointer_type] = STATE(358), + [sym_map_type] = STATE(358), + [sym_channel_type] = STATE(358), + [sym_shared_type] = STATE(358), + [sym_thread_type] = STATE(358), + [sym_atomic_type] = STATE(358), + [sym_generic_type] = STATE(358), + [sym_function_type] = STATE(358), [ts_builtin_sym_end] = ACTIONS(563), [sym_identifier] = ACTIONS(565), [anon_sym_LF] = ACTIONS(567), @@ -29230,15 +29210,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(567), [anon_sym_PLUS_PLUS] = ACTIONS(567), [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(579), [anon_sym_go] = ACTIONS(567), [anon_sym_spawn] = ACTIONS(567), [anon_sym_json_DOTdecode] = ACTIONS(567), - [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_LBRACK2] = ACTIONS(581), [anon_sym_TILDE] = ACTIONS(567), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), [anon_sym_LT_DASH] = ACTIONS(567), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), @@ -29281,12 +29261,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(567), [sym_float_literal] = ACTIONS(567), [sym_rune_literal] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(567), + [anon_sym_c_SQUOTE] = ACTIONS(567), + [anon_sym_c_DQUOTE] = ACTIONS(567), + [anon_sym_r_SQUOTE] = ACTIONS(567), + [anon_sym_r_DQUOTE] = ACTIONS(567), [sym_pseudo_compile_time_identifier] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(585), + [anon_sym_map_LBRACK] = ACTIONS(587), + [anon_sym_chan] = ACTIONS(589), + [anon_sym_thread] = ACTIONS(591), + [anon_sym_atomic] = ACTIONS(593), [anon_sym_assert] = ACTIONS(567), [anon_sym_defer] = ACTIONS(567), [anon_sym_goto] = ACTIONS(567), @@ -29298,444 +29284,438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(567), [anon_sym_asm] = ACTIONS(567), [anon_sym_AT_LBRACK] = ACTIONS(567), - [sym___double_quote] = ACTIONS(567), - [sym___single_quote] = ACTIONS(567), - [sym___c_double_quote] = ACTIONS(567), - [sym___c_single_quote] = ACTIONS(567), - [sym___r_double_quote] = ACTIONS(567), - [sym___r_single_quote] = ACTIONS(567), }, [68] = { [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [sym_reference_expression] = STATE(4403), - [sym_type_reference_expression] = STATE(244), - [sym_plain_type] = STATE(409), - [sym__plain_type_without_special] = STATE(387), - [sym_anon_struct_type] = STATE(388), - [sym_multi_return_type] = STATE(387), - [sym_result_type] = STATE(387), - [sym_option_type] = STATE(387), - [sym_qualified_type] = STATE(244), - [sym_fixed_array_type] = STATE(388), - [sym_array_type] = STATE(388), - [sym_pointer_type] = STATE(388), - [sym_wrong_pointer_type] = STATE(388), - [sym_map_type] = STATE(388), - [sym_channel_type] = STATE(388), - [sym_shared_type] = STATE(388), - [sym_thread_type] = STATE(388), - [sym_atomic_type] = STATE(388), - [sym_generic_type] = STATE(388), - [sym_function_type] = STATE(388), - [ts_builtin_sym_end] = ACTIONS(585), - [sym_identifier] = ACTIONS(587), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), + [sym_reference_expression] = STATE(4392), + [sym_type_reference_expression] = STATE(267), + [sym_plain_type] = STATE(341), + [sym__plain_type_without_special] = STATE(359), + [sym_anon_struct_type] = STATE(358), + [sym_multi_return_type] = STATE(359), + [sym_result_type] = STATE(359), + [sym_option_type] = STATE(359), + [sym_qualified_type] = STATE(267), + [sym_fixed_array_type] = STATE(358), + [sym_array_type] = STATE(358), + [sym_pointer_type] = STATE(358), + [sym_wrong_pointer_type] = STATE(358), + [sym_map_type] = STATE(358), + [sym_channel_type] = STATE(358), + [sym_shared_type] = STATE(358), + [sym_thread_type] = STATE(358), + [sym_atomic_type] = STATE(358), + [sym_generic_type] = STATE(358), + [sym_function_type] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(595), + [sym_identifier] = ACTIONS(565), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_CR] = ACTIONS(597), + [anon_sym_CR_LF] = ACTIONS(597), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_const] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(591), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym___global] = ACTIONS(589), - [anon_sym_type] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(595), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(597), - [anon_sym_union] = ACTIONS(589), - [anon_sym_pub] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_enum] = ACTIONS(589), - [anon_sym_interface] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(589), - [anon_sym_LBRACK2] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_LT_DASH] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_STAR_EQ] = ACTIONS(589), - [anon_sym_SLASH_EQ] = ACTIONS(589), - [anon_sym_PERCENT_EQ] = ACTIONS(589), - [anon_sym_LT_LT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), - [anon_sym_AMP_EQ] = ACTIONS(589), - [anon_sym_AMP_CARET_EQ] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(589), - [anon_sym_DASH_EQ] = ACTIONS(589), - [anon_sym_PIPE_EQ] = ACTIONS(589), - [anon_sym_CARET_EQ] = ACTIONS(589), - [anon_sym_COLON_EQ] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(589), - [sym_rune_literal] = ACTIONS(589), - [sym_pseudo_compile_time_identifier] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(607), - [anon_sym_map_LBRACK] = ACTIONS(609), - [anon_sym_chan] = ACTIONS(611), - [anon_sym_thread] = ACTIONS(613), - [anon_sym_atomic] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(589), - [anon_sym_defer] = ACTIONS(589), - [anon_sym_goto] = ACTIONS(589), - [anon_sym_break] = ACTIONS(589), - [anon_sym_continue] = ACTIONS(589), - [anon_sym_return] = ACTIONS(589), - [anon_sym_DOLLARfor] = ACTIONS(589), - [anon_sym_for] = ACTIONS(589), - [anon_sym_POUND] = ACTIONS(589), - [anon_sym_asm] = ACTIONS(589), - [anon_sym_AT_LBRACK] = ACTIONS(589), - [sym___double_quote] = ACTIONS(589), - [sym___single_quote] = ACTIONS(589), - [sym___c_double_quote] = ACTIONS(589), - [sym___c_single_quote] = ACTIONS(589), - [sym___r_double_quote] = ACTIONS(589), - [sym___r_single_quote] = ACTIONS(589), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(597), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_const] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym___global] = ACTIONS(597), + [anon_sym_type] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_union] = ACTIONS(597), + [anon_sym_pub] = ACTIONS(597), + [anon_sym_mut] = ACTIONS(597), + [anon_sym_enum] = ACTIONS(597), + [anon_sym_interface] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(579), + [anon_sym_go] = ACTIONS(597), + [anon_sym_spawn] = ACTIONS(597), + [anon_sym_json_DOTdecode] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_LT_DASH] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_or] = ACTIONS(597), + [sym_none] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_nil] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(597), + [anon_sym_POUND_LBRACK] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(597), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(597), + [anon_sym_match] = ACTIONS(597), + [anon_sym_select] = ACTIONS(597), + [anon_sym_STAR_EQ] = ACTIONS(597), + [anon_sym_SLASH_EQ] = ACTIONS(597), + [anon_sym_PERCENT_EQ] = ACTIONS(597), + [anon_sym_LT_LT_EQ] = ACTIONS(597), + [anon_sym_GT_GT_EQ] = ACTIONS(597), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(597), + [anon_sym_AMP_EQ] = ACTIONS(597), + [anon_sym_AMP_CARET_EQ] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(597), + [anon_sym_DASH_EQ] = ACTIONS(597), + [anon_sym_PIPE_EQ] = ACTIONS(597), + [anon_sym_CARET_EQ] = ACTIONS(597), + [anon_sym_COLON_EQ] = ACTIONS(597), + [anon_sym_lock] = ACTIONS(597), + [anon_sym_rlock] = ACTIONS(597), + [anon_sym_unsafe] = ACTIONS(597), + [anon_sym_sql] = ACTIONS(597), + [sym_int_literal] = ACTIONS(597), + [sym_float_literal] = ACTIONS(597), + [sym_rune_literal] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(597), + [anon_sym_c_SQUOTE] = ACTIONS(597), + [anon_sym_c_DQUOTE] = ACTIONS(597), + [anon_sym_r_SQUOTE] = ACTIONS(597), + [anon_sym_r_DQUOTE] = ACTIONS(597), + [sym_pseudo_compile_time_identifier] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(585), + [anon_sym_map_LBRACK] = ACTIONS(587), + [anon_sym_chan] = ACTIONS(589), + [anon_sym_thread] = ACTIONS(591), + [anon_sym_atomic] = ACTIONS(593), + [anon_sym_assert] = ACTIONS(597), + [anon_sym_defer] = ACTIONS(597), + [anon_sym_goto] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_DOLLARfor] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_POUND] = ACTIONS(597), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_AT_LBRACK] = ACTIONS(597), }, [69] = { [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), - [sym_reference_expression] = STATE(4403), - [sym_type_reference_expression] = STATE(244), - [sym_plain_type] = STATE(421), - [sym__plain_type_without_special] = STATE(387), - [sym_anon_struct_type] = STATE(388), - [sym_multi_return_type] = STATE(387), - [sym_result_type] = STATE(387), - [sym_option_type] = STATE(387), - [sym_qualified_type] = STATE(244), - [sym_fixed_array_type] = STATE(388), - [sym_array_type] = STATE(388), - [sym_pointer_type] = STATE(388), - [sym_wrong_pointer_type] = STATE(388), - [sym_map_type] = STATE(388), - [sym_channel_type] = STATE(388), - [sym_shared_type] = STATE(388), - [sym_thread_type] = STATE(388), - [sym_atomic_type] = STATE(388), - [sym_generic_type] = STATE(388), - [sym_function_type] = STATE(388), - [ts_builtin_sym_end] = ACTIONS(617), - [sym_identifier] = ACTIONS(587), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), + [sym_reference_expression] = STATE(4392), + [sym_type_reference_expression] = STATE(267), + [sym_plain_type] = STATE(352), + [sym__plain_type_without_special] = STATE(359), + [sym_anon_struct_type] = STATE(358), + [sym_multi_return_type] = STATE(359), + [sym_result_type] = STATE(359), + [sym_option_type] = STATE(359), + [sym_qualified_type] = STATE(267), + [sym_fixed_array_type] = STATE(358), + [sym_array_type] = STATE(358), + [sym_pointer_type] = STATE(358), + [sym_wrong_pointer_type] = STATE(358), + [sym_map_type] = STATE(358), + [sym_channel_type] = STATE(358), + [sym_shared_type] = STATE(358), + [sym_thread_type] = STATE(358), + [sym_atomic_type] = STATE(358), + [sym_generic_type] = STATE(358), + [sym_function_type] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(599), + [sym_identifier] = ACTIONS(565), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_const] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(591), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym___global] = ACTIONS(619), - [anon_sym_type] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(595), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(597), - [anon_sym_union] = ACTIONS(619), - [anon_sym_pub] = ACTIONS(619), - [anon_sym_mut] = ACTIONS(619), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_interface] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_go] = ACTIONS(619), - [anon_sym_spawn] = ACTIONS(619), - [anon_sym_json_DOTdecode] = ACTIONS(619), - [anon_sym_LBRACK2] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_LT_DASH] = ACTIONS(619), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(619), - [sym_none] = ACTIONS(619), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [sym_nil] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_if] = ACTIONS(619), - [anon_sym_DOLLARif] = ACTIONS(619), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_match] = ACTIONS(619), - [anon_sym_select] = ACTIONS(619), - [anon_sym_STAR_EQ] = ACTIONS(619), - [anon_sym_SLASH_EQ] = ACTIONS(619), - [anon_sym_PERCENT_EQ] = ACTIONS(619), - [anon_sym_LT_LT_EQ] = ACTIONS(619), - [anon_sym_GT_GT_EQ] = ACTIONS(619), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(619), - [anon_sym_AMP_EQ] = ACTIONS(619), - [anon_sym_AMP_CARET_EQ] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(619), - [anon_sym_DASH_EQ] = ACTIONS(619), - [anon_sym_PIPE_EQ] = ACTIONS(619), - [anon_sym_CARET_EQ] = ACTIONS(619), - [anon_sym_COLON_EQ] = ACTIONS(619), - [anon_sym_lock] = ACTIONS(619), - [anon_sym_rlock] = ACTIONS(619), - [anon_sym_unsafe] = ACTIONS(619), - [anon_sym_sql] = ACTIONS(619), - [sym_int_literal] = ACTIONS(619), - [sym_float_literal] = ACTIONS(619), - [sym_rune_literal] = ACTIONS(619), - [sym_pseudo_compile_time_identifier] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(607), - [anon_sym_map_LBRACK] = ACTIONS(609), - [anon_sym_chan] = ACTIONS(611), - [anon_sym_thread] = ACTIONS(613), - [anon_sym_atomic] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(619), - [anon_sym_goto] = ACTIONS(619), - [anon_sym_break] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(619), - [anon_sym_return] = ACTIONS(619), - [anon_sym_DOLLARfor] = ACTIONS(619), - [anon_sym_for] = ACTIONS(619), - [anon_sym_POUND] = ACTIONS(619), - [anon_sym_asm] = ACTIONS(619), - [anon_sym_AT_LBRACK] = ACTIONS(619), - [sym___double_quote] = ACTIONS(619), - [sym___single_quote] = ACTIONS(619), - [sym___c_double_quote] = ACTIONS(619), - [sym___c_single_quote] = ACTIONS(619), - [sym___r_double_quote] = ACTIONS(619), - [sym___r_single_quote] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_const] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym___global] = ACTIONS(601), + [anon_sym_type] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_union] = ACTIONS(601), + [anon_sym_pub] = ACTIONS(601), + [anon_sym_mut] = ACTIONS(601), + [anon_sym_enum] = ACTIONS(601), + [anon_sym_interface] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(579), + [anon_sym_go] = ACTIONS(601), + [anon_sym_spawn] = ACTIONS(601), + [anon_sym_json_DOTdecode] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_LT_DASH] = ACTIONS(601), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_or] = ACTIONS(601), + [sym_none] = ACTIONS(601), + [sym_true] = ACTIONS(601), + [sym_false] = ACTIONS(601), + [sym_nil] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_POUND_LBRACK] = ACTIONS(601), + [anon_sym_if] = ACTIONS(601), + [anon_sym_DOLLARif] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(601), + [anon_sym_match] = ACTIONS(601), + [anon_sym_select] = ACTIONS(601), + [anon_sym_STAR_EQ] = ACTIONS(601), + [anon_sym_SLASH_EQ] = ACTIONS(601), + [anon_sym_PERCENT_EQ] = ACTIONS(601), + [anon_sym_LT_LT_EQ] = ACTIONS(601), + [anon_sym_GT_GT_EQ] = ACTIONS(601), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(601), + [anon_sym_AMP_EQ] = ACTIONS(601), + [anon_sym_AMP_CARET_EQ] = ACTIONS(601), + [anon_sym_PLUS_EQ] = ACTIONS(601), + [anon_sym_DASH_EQ] = ACTIONS(601), + [anon_sym_PIPE_EQ] = ACTIONS(601), + [anon_sym_CARET_EQ] = ACTIONS(601), + [anon_sym_COLON_EQ] = ACTIONS(601), + [anon_sym_lock] = ACTIONS(601), + [anon_sym_rlock] = ACTIONS(601), + [anon_sym_unsafe] = ACTIONS(601), + [anon_sym_sql] = ACTIONS(601), + [sym_int_literal] = ACTIONS(601), + [sym_float_literal] = ACTIONS(601), + [sym_rune_literal] = ACTIONS(601), + [anon_sym_SQUOTE] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(601), + [anon_sym_c_SQUOTE] = ACTIONS(601), + [anon_sym_c_DQUOTE] = ACTIONS(601), + [anon_sym_r_SQUOTE] = ACTIONS(601), + [anon_sym_r_DQUOTE] = ACTIONS(601), + [sym_pseudo_compile_time_identifier] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(585), + [anon_sym_map_LBRACK] = ACTIONS(587), + [anon_sym_chan] = ACTIONS(589), + [anon_sym_thread] = ACTIONS(591), + [anon_sym_atomic] = ACTIONS(593), + [anon_sym_assert] = ACTIONS(601), + [anon_sym_defer] = ACTIONS(601), + [anon_sym_goto] = ACTIONS(601), + [anon_sym_break] = ACTIONS(601), + [anon_sym_continue] = ACTIONS(601), + [anon_sym_return] = ACTIONS(601), + [anon_sym_DOLLARfor] = ACTIONS(601), + [anon_sym_for] = ACTIONS(601), + [anon_sym_POUND] = ACTIONS(601), + [anon_sym_asm] = ACTIONS(601), + [anon_sym_AT_LBRACK] = ACTIONS(601), }, [70] = { [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), - [sym_reference_expression] = STATE(4403), - [sym_type_reference_expression] = STATE(244), - [sym_plain_type] = STATE(431), - [sym__plain_type_without_special] = STATE(387), - [sym_anon_struct_type] = STATE(388), - [sym_multi_return_type] = STATE(387), - [sym_result_type] = STATE(387), - [sym_option_type] = STATE(387), - [sym_qualified_type] = STATE(244), - [sym_fixed_array_type] = STATE(388), - [sym_array_type] = STATE(388), - [sym_pointer_type] = STATE(388), - [sym_wrong_pointer_type] = STATE(388), - [sym_map_type] = STATE(388), - [sym_channel_type] = STATE(388), - [sym_shared_type] = STATE(388), - [sym_thread_type] = STATE(388), - [sym_atomic_type] = STATE(388), - [sym_generic_type] = STATE(388), - [sym_function_type] = STATE(388), - [ts_builtin_sym_end] = ACTIONS(621), - [sym_identifier] = ACTIONS(587), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2386), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [ts_builtin_sym_end] = ACTIONS(603), + [sym_identifier] = ACTIONS(605), + [anon_sym_LF] = ACTIONS(607), + [anon_sym_CR] = ACTIONS(607), + [anon_sym_CR_LF] = ACTIONS(607), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(623), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_const] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(591), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym___global] = ACTIONS(623), - [anon_sym_type] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(595), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(597), - [anon_sym_union] = ACTIONS(623), - [anon_sym_pub] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(623), - [anon_sym_enum] = ACTIONS(623), - [anon_sym_interface] = ACTIONS(623), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_go] = ACTIONS(623), - [anon_sym_spawn] = ACTIONS(623), - [anon_sym_json_DOTdecode] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_LT_DASH] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [sym_none] = ACTIONS(623), - [sym_true] = ACTIONS(623), - [sym_false] = ACTIONS(623), - [sym_nil] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(623), - [anon_sym_POUND_LBRACK] = ACTIONS(623), - [anon_sym_if] = ACTIONS(623), - [anon_sym_DOLLARif] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(623), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_match] = ACTIONS(623), - [anon_sym_select] = ACTIONS(623), - [anon_sym_STAR_EQ] = ACTIONS(623), - [anon_sym_SLASH_EQ] = ACTIONS(623), - [anon_sym_PERCENT_EQ] = ACTIONS(623), - [anon_sym_LT_LT_EQ] = ACTIONS(623), - [anon_sym_GT_GT_EQ] = ACTIONS(623), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(623), - [anon_sym_AMP_EQ] = ACTIONS(623), - [anon_sym_AMP_CARET_EQ] = ACTIONS(623), - [anon_sym_PLUS_EQ] = ACTIONS(623), - [anon_sym_DASH_EQ] = ACTIONS(623), - [anon_sym_PIPE_EQ] = ACTIONS(623), - [anon_sym_CARET_EQ] = ACTIONS(623), - [anon_sym_COLON_EQ] = ACTIONS(623), - [anon_sym_lock] = ACTIONS(623), - [anon_sym_rlock] = ACTIONS(623), - [anon_sym_unsafe] = ACTIONS(623), - [anon_sym_sql] = ACTIONS(623), - [sym_int_literal] = ACTIONS(623), - [sym_float_literal] = ACTIONS(623), - [sym_rune_literal] = ACTIONS(623), - [sym_pseudo_compile_time_identifier] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(607), - [anon_sym_map_LBRACK] = ACTIONS(609), - [anon_sym_chan] = ACTIONS(611), - [anon_sym_thread] = ACTIONS(613), - [anon_sym_atomic] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_defer] = ACTIONS(623), - [anon_sym_goto] = ACTIONS(623), - [anon_sym_break] = ACTIONS(623), - [anon_sym_continue] = ACTIONS(623), - [anon_sym_return] = ACTIONS(623), - [anon_sym_DOLLARfor] = ACTIONS(623), - [anon_sym_for] = ACTIONS(623), - [anon_sym_POUND] = ACTIONS(623), - [anon_sym_asm] = ACTIONS(623), - [anon_sym_AT_LBRACK] = ACTIONS(623), - [sym___double_quote] = ACTIONS(623), - [sym___single_quote] = ACTIONS(623), - [sym___c_double_quote] = ACTIONS(623), - [sym___c_single_quote] = ACTIONS(623), - [sym___r_double_quote] = ACTIONS(623), - [sym___r_single_quote] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(607), + [anon_sym___global] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_union] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_mut] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_interface] = ACTIONS(607), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_go] = ACTIONS(607), + [anon_sym_spawn] = ACTIONS(607), + [anon_sym_json_DOTdecode] = ACTIONS(607), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(607), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_LT_DASH] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(607), + [sym_none] = ACTIONS(607), + [sym_true] = ACTIONS(607), + [sym_false] = ACTIONS(607), + [sym_nil] = ACTIONS(607), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_DOLLARif] = ACTIONS(607), + [anon_sym_is] = ACTIONS(607), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(607), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_select] = ACTIONS(607), + [anon_sym_STAR_EQ] = ACTIONS(607), + [anon_sym_SLASH_EQ] = ACTIONS(607), + [anon_sym_PERCENT_EQ] = ACTIONS(607), + [anon_sym_LT_LT_EQ] = ACTIONS(607), + [anon_sym_GT_GT_EQ] = ACTIONS(607), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(607), + [anon_sym_AMP_EQ] = ACTIONS(607), + [anon_sym_AMP_CARET_EQ] = ACTIONS(607), + [anon_sym_PLUS_EQ] = ACTIONS(607), + [anon_sym_DASH_EQ] = ACTIONS(607), + [anon_sym_PIPE_EQ] = ACTIONS(607), + [anon_sym_CARET_EQ] = ACTIONS(607), + [anon_sym_COLON_EQ] = ACTIONS(607), + [anon_sym_lock] = ACTIONS(607), + [anon_sym_rlock] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_sql] = ACTIONS(607), + [sym_int_literal] = ACTIONS(607), + [sym_float_literal] = ACTIONS(607), + [sym_rune_literal] = ACTIONS(607), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [anon_sym_c_SQUOTE] = ACTIONS(607), + [anon_sym_c_DQUOTE] = ACTIONS(607), + [anon_sym_r_SQUOTE] = ACTIONS(607), + [anon_sym_r_DQUOTE] = ACTIONS(607), + [sym_pseudo_compile_time_identifier] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(607), + [anon_sym_defer] = ACTIONS(607), + [anon_sym_goto] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_POUND] = ACTIONS(607), + [anon_sym_asm] = ACTIONS(607), + [anon_sym_AT_LBRACK] = ACTIONS(607), }, [71] = { [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2345), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2311), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), [ts_builtin_sym_end] = ACTIONS(625), [sym_identifier] = ACTIONS(627), [anon_sym_LF] = ACTIONS(627), @@ -29825,6 +29805,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(627), [sym_float_literal] = ACTIONS(627), [sym_rune_literal] = ACTIONS(627), + [anon_sym_SQUOTE] = ACTIONS(627), + [anon_sym_DQUOTE] = ACTIONS(627), + [anon_sym_c_SQUOTE] = ACTIONS(627), + [anon_sym_c_DQUOTE] = ACTIONS(627), + [anon_sym_r_SQUOTE] = ACTIONS(627), + [anon_sym_r_DQUOTE] = ACTIONS(627), [sym_pseudo_compile_time_identifier] = ACTIONS(627), [anon_sym_shared] = ACTIONS(627), [anon_sym_map_LBRACK] = ACTIONS(627), @@ -29842,88 +29828,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(627), [anon_sym_asm] = ACTIONS(627), [anon_sym_AT_LBRACK] = ACTIONS(627), - [sym___double_quote] = ACTIONS(627), - [sym___single_quote] = ACTIONS(627), - [sym___c_double_quote] = ACTIONS(627), - [sym___c_single_quote] = ACTIONS(627), - [sym___r_double_quote] = ACTIONS(627), - [sym___r_single_quote] = ACTIONS(627), }, [72] = { [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), - [sym_struct_field_scope] = STATE(3390), - [sym_struct_field_declaration] = STATE(3390), + [sym_struct_field_scope] = STATE(3389), + [sym_struct_field_declaration] = STATE(3389), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3392), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4444), - [sym_short_element_list] = STATE(4448), + [sym_embedded_definition] = STATE(3386), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4495), + [sym_short_element_list] = STATE(4490), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1220), - [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1223), + [sym_type_reference_expression] = STATE(3344), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(3371), - [sym_function_type] = STATE(2362), - [aux_sym__struct_body_repeat1] = STATE(3324), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3344), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(3382), + [sym_function_type] = STATE(2292), + [aux_sym__struct_body_repeat1] = STATE(3326), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -29965,94 +29945,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [73] = { [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), - [sym_struct_field_scope] = STATE(3390), - [sym_struct_field_declaration] = STATE(3390), + [sym_struct_field_scope] = STATE(3389), + [sym_struct_field_declaration] = STATE(3389), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3392), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4578), - [sym_short_element_list] = STATE(4583), + [sym_embedded_definition] = STATE(3386), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4615), + [sym_short_element_list] = STATE(4614), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1220), - [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1223), + [sym_type_reference_expression] = STATE(3344), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(3371), - [sym_function_type] = STATE(2362), - [aux_sym__struct_body_repeat1] = STATE(3324), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3344), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(3382), + [sym_function_type] = STATE(2292), + [aux_sym__struct_body_repeat1] = STATE(3326), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -30094,94 +30074,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [74] = { [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), - [sym_struct_field_scope] = STATE(3390), - [sym_struct_field_declaration] = STATE(3390), + [sym_struct_field_scope] = STATE(3389), + [sym_struct_field_declaration] = STATE(3389), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3392), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4484), - [sym_short_element_list] = STATE(4446), + [sym_embedded_definition] = STATE(3386), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4546), + [sym_short_element_list] = STATE(4533), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1220), - [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1223), + [sym_type_reference_expression] = STATE(3344), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(3371), - [sym_function_type] = STATE(2362), - [aux_sym__struct_body_repeat1] = STATE(3324), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3344), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(3382), + [sym_function_type] = STATE(2292), + [aux_sym__struct_body_repeat1] = STATE(3326), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -30223,94 +30203,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [75] = { [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), - [sym_struct_field_scope] = STATE(3390), - [sym_struct_field_declaration] = STATE(3390), + [sym_struct_field_scope] = STATE(3389), + [sym_struct_field_declaration] = STATE(3389), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3392), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4357), - [sym_short_element_list] = STATE(4347), + [sym_embedded_definition] = STATE(3386), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4582), + [sym_short_element_list] = STATE(4589), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1220), - [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1223), + [sym_type_reference_expression] = STATE(3344), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(3371), - [sym_function_type] = STATE(2362), - [aux_sym__struct_body_repeat1] = STATE(3324), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3344), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(3382), + [sym_function_type] = STATE(2292), + [aux_sym__struct_body_repeat1] = STATE(3326), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -30352,94 +30332,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [76] = { [sym_line_comment] = STATE(76), [sym_block_comment] = STATE(76), - [sym_struct_field_scope] = STATE(3390), - [sym_struct_field_declaration] = STATE(3390), + [sym_struct_field_scope] = STATE(3389), + [sym_struct_field_declaration] = STATE(3389), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3392), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4610), - [sym_short_element_list] = STATE(4609), + [sym_embedded_definition] = STATE(3386), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4405), + [sym_short_element_list] = STATE(4406), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1220), - [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1223), + [sym_type_reference_expression] = STATE(3344), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(3371), - [sym_function_type] = STATE(2362), - [aux_sym__struct_body_repeat1] = STATE(3324), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3344), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(3382), + [sym_function_type] = STATE(2292), + [aux_sym__struct_body_repeat1] = STATE(3326), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -30481,94 +30461,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [77] = { [sym_line_comment] = STATE(77), [sym_block_comment] = STATE(77), - [sym_struct_field_scope] = STATE(3390), - [sym_struct_field_declaration] = STATE(3390), + [sym_struct_field_scope] = STATE(3389), + [sym_struct_field_declaration] = STATE(3389), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3392), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4441), - [sym_short_element_list] = STATE(4442), + [sym_embedded_definition] = STATE(3386), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4607), + [sym_short_element_list] = STATE(4605), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1220), - [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1223), + [sym_type_reference_expression] = STATE(3344), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(3371), - [sym_function_type] = STATE(2362), - [aux_sym__struct_body_repeat1] = STATE(3324), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3344), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(3382), + [sym_function_type] = STATE(2292), + [aux_sym__struct_body_repeat1] = STATE(3326), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -30610,94 +30590,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [78] = { [sym_line_comment] = STATE(78), [sym_block_comment] = STATE(78), - [sym_struct_field_scope] = STATE(3390), - [sym_struct_field_declaration] = STATE(3390), + [sym_struct_field_scope] = STATE(3389), + [sym_struct_field_declaration] = STATE(3389), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3392), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4467), - [sym_short_element_list] = STATE(4463), + [sym_embedded_definition] = STATE(3386), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4359), + [sym_short_element_list] = STATE(4358), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1220), - [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1223), + [sym_type_reference_expression] = STATE(3344), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(3371), - [sym_function_type] = STATE(2362), - [aux_sym__struct_body_repeat1] = STATE(3324), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3344), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(3382), + [sym_function_type] = STATE(2292), + [aux_sym__struct_body_repeat1] = STATE(3326), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -30739,94 +30719,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [79] = { [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), - [sym_struct_field_scope] = STATE(3390), - [sym_struct_field_declaration] = STATE(3390), + [sym_struct_field_scope] = STATE(3389), + [sym_struct_field_declaration] = STATE(3389), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3392), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4596), - [sym_short_element_list] = STATE(4601), + [sym_embedded_definition] = STATE(3386), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4417), + [sym_short_element_list] = STATE(4420), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1220), - [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1223), + [sym_type_reference_expression] = STATE(3344), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(3371), - [sym_function_type] = STATE(2362), - [aux_sym__struct_body_repeat1] = STATE(3324), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3344), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(3382), + [sym_function_type] = STATE(2292), + [aux_sym__struct_body_repeat1] = STATE(3326), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -30868,94 +30848,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [80] = { [sym_line_comment] = STATE(80), [sym_block_comment] = STATE(80), - [sym_struct_field_scope] = STATE(3390), - [sym_struct_field_declaration] = STATE(3390), + [sym_struct_field_scope] = STATE(3389), + [sym_struct_field_declaration] = STATE(3389), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3392), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4570), - [sym_short_element_list] = STATE(4568), + [sym_embedded_definition] = STATE(3386), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4457), + [sym_short_element_list] = STATE(4508), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1220), - [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1223), + [sym_type_reference_expression] = STATE(3344), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(3371), - [sym_function_type] = STATE(2362), - [aux_sym__struct_body_repeat1] = STATE(3324), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3344), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(3382), + [sym_function_type] = STATE(2292), + [aux_sym__struct_body_repeat1] = STATE(3326), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -30997,94 +30977,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [81] = { [sym_line_comment] = STATE(81), [sym_block_comment] = STATE(81), - [sym_struct_field_scope] = STATE(3390), - [sym_struct_field_declaration] = STATE(3390), + [sym_struct_field_scope] = STATE(3389), + [sym_struct_field_declaration] = STATE(3389), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3392), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4552), - [sym_short_element_list] = STATE(4556), + [sym_embedded_definition] = STATE(3386), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4339), + [sym_short_element_list] = STATE(4338), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1220), - [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1223), + [sym_type_reference_expression] = STATE(3344), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(3371), - [sym_function_type] = STATE(2362), - [aux_sym__struct_body_repeat1] = STATE(3324), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3344), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(3382), + [sym_function_type] = STATE(2292), + [aux_sym__struct_body_repeat1] = STATE(3326), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -31126,94 +31106,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [82] = { [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), - [sym_struct_field_scope] = STATE(3390), - [sym_struct_field_declaration] = STATE(3390), + [sym_struct_field_scope] = STATE(3389), + [sym_struct_field_declaration] = STATE(3389), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3392), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4519), - [sym_short_element_list] = STATE(4520), + [sym_embedded_definition] = STATE(3386), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4512), + [sym_short_element_list] = STATE(4514), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1220), - [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1223), + [sym_type_reference_expression] = STATE(3344), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(3371), - [sym_function_type] = STATE(2362), - [aux_sym__struct_body_repeat1] = STATE(3324), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3344), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(3382), + [sym_function_type] = STATE(2292), + [aux_sym__struct_body_repeat1] = STATE(3326), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -31255,94 +31235,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [83] = { [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [sym_struct_field_scope] = STATE(3390), - [sym_struct_field_declaration] = STATE(3390), + [sym_struct_field_scope] = STATE(3389), + [sym_struct_field_declaration] = STATE(3389), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3392), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4431), - [sym_short_element_list] = STATE(4425), + [sym_embedded_definition] = STATE(3386), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4590), + [sym_short_element_list] = STATE(4592), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1220), - [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1223), + [sym_type_reference_expression] = STATE(3344), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(3371), - [sym_function_type] = STATE(2362), - [aux_sym__struct_body_repeat1] = STATE(3324), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3344), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(3382), + [sym_function_type] = STATE(2292), + [aux_sym__struct_body_repeat1] = STATE(3326), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -31384,94 +31364,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [84] = { [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [sym_struct_field_scope] = STATE(3390), - [sym_struct_field_declaration] = STATE(3390), + [sym_struct_field_scope] = STATE(3389), + [sym_struct_field_declaration] = STATE(3389), [sym__struct_field_definition] = STATE(3391), - [sym_embedded_definition] = STATE(3392), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4401), - [sym_short_element_list] = STATE(4404), + [sym_embedded_definition] = STATE(3386), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4620), + [sym_short_element_list] = STATE(4616), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1220), - [sym_type_reference_expression] = STATE(3346), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1223), + [sym_type_reference_expression] = STATE(3344), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3346), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(3371), - [sym_function_type] = STATE(2362), - [aux_sym__struct_body_repeat1] = STATE(3324), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3344), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(3382), + [sym_function_type] = STATE(2292), + [aux_sym__struct_body_repeat1] = STATE(3326), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), [sym_identifier] = ACTIONS(629), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -31513,123 +31493,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [85] = { [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [sym__expression] = STATE(1630), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_strictly_expression_list] = STATE(4047), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(2099), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(652), - [sym_mutable_expression] = STATE(3275), - [sym_expression_list] = STATE(3309), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_simple_statement] = STATE(4426), - [sym_var_declaration] = STATE(4047), - [sym_var_definition_list] = STATE(4443), - [sym_var_definition] = STATE(3997), - [sym_assignment_statement] = STATE(4047), - [sym_block] = STATE(1523), - [sym_is_clause] = STATE(4233), - [sym_range_clause] = STATE(4233), - [sym_for_clause] = STATE(4233), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4515), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), + [sym_expression_without_blocks_list] = STATE(3279), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(117), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(703), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(707), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(719), + [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), [anon_sym_TILDE] = ACTIONS(713), [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), [anon_sym_DOLLARif] = ACTIONS(739), [anon_sym_match] = ACTIONS(741), [anon_sym_select] = ACTIONS(743), @@ -31637,1650 +31617,1650 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rlock] = ACTIONS(745), [anon_sym_unsafe] = ACTIONS(747), [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), + [sym_int_literal] = ACTIONS(733), [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [86] = { [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4509), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4353), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [87] = { [sym_line_comment] = STATE(87), [sym_block_comment] = STATE(87), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4455), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(767), + [sym__expression] = STATE(1665), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_strictly_expression_list] = STATE(4289), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(879), + [sym_mutable_expression] = STATE(3276), + [sym_expression_list] = STATE(3294), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_simple_statement] = STATE(4499), + [sym_var_declaration] = STATE(4289), + [sym_var_definition_list] = STATE(4542), + [sym_var_definition] = STATE(3917), + [sym_assignment_statement] = STATE(4289), + [sym_block] = STATE(1514), + [sym_is_clause] = STATE(4170), + [sym_range_clause] = STATE(4170), + [sym_for_clause] = STATE(4170), + [sym_identifier] = ACTIONS(769), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(833), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), - [anon_sym_mut] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), + [anon_sym_mut] = ACTIONS(787), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [88] = { [sym_line_comment] = STATE(88), [sym_block_comment] = STATE(88), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4566), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4479), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(114), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [89] = { [sym_line_comment] = STATE(89), [sym_block_comment] = STATE(89), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4612), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4586), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(147), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [90] = { [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4435), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4530), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [91] = { [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4529), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4530), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(125), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(841), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [92] = { [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4562), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4597), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(123), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(843), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [93] = { [sym_line_comment] = STATE(93), [sym_block_comment] = STATE(93), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4562), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4322), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(123), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(127), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [94] = { [sym_line_comment] = STATE(94), [sym_block_comment] = STATE(94), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4411), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4608), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(147), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [95] = { [sym_line_comment] = STATE(95), [sym_block_comment] = STATE(95), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4407), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4353), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [96] = { [sym_line_comment] = STATE(96), [sym_block_comment] = STATE(96), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4343), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4597), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(127), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(851), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [97] = { [sym_line_comment] = STATE(97), [sym_block_comment] = STATE(97), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4455), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4519), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(132), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [98] = { [sym_line_comment] = STATE(98), [sym_block_comment] = STATE(98), - [sym__expression] = STATE(1636), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_strictly_expression_list] = STATE(4047), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(2099), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(652), - [sym_mutable_expression] = STATE(3275), - [sym_expression_list] = STATE(3309), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_simple_statement] = STATE(4426), - [sym_var_declaration] = STATE(4047), - [sym_var_definition_list] = STATE(4443), - [sym_var_definition] = STATE(3997), - [sym_assignment_statement] = STATE(4047), - [sym_block] = STATE(3702), - [sym_is_clause] = STATE(4171), - [sym_range_clause] = STATE(4171), - [sym_for_clause] = STATE(4171), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4429), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), + [sym_expression_without_blocks_list] = STATE(3279), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(115), [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(703), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(853), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(719), + [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), [anon_sym_TILDE] = ACTIONS(713), [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), [anon_sym_DOLLARif] = ACTIONS(739), [anon_sym_match] = ACTIONS(741), [anon_sym_select] = ACTIONS(743), @@ -33288,6365 +33268,6365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_rlock] = ACTIONS(745), [anon_sym_unsafe] = ACTIONS(747), [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), + [sym_int_literal] = ACTIONS(733), [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [99] = { [sym_line_comment] = STATE(99), [sym_block_comment] = STATE(99), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4455), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4597), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [100] = { [sym_line_comment] = STATE(100), [sym_block_comment] = STATE(100), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4407), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4519), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(132), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [101] = { [sym_line_comment] = STATE(101), [sym_block_comment] = STATE(101), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4602), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4429), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(115), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [102] = { [sym_line_comment] = STATE(102), [sym_block_comment] = STATE(102), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4606), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4519), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(145), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(132), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(863), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [103] = { [sym_line_comment] = STATE(103), [sym_block_comment] = STATE(103), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4456), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4602), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [104] = { [sym_line_comment] = STATE(104), [sym_block_comment] = STATE(104), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4612), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4602), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(147), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(867), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [105] = { [sym_line_comment] = STATE(105), [sym_block_comment] = STATE(105), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4612), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), - [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(147), - [sym_identifier] = ACTIONS(767), + [sym__expression] = STATE(1666), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_strictly_expression_list] = STATE(4289), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(2054), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(879), + [sym_mutable_expression] = STATE(3276), + [sym_expression_list] = STATE(3294), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_simple_statement] = STATE(4499), + [sym_var_declaration] = STATE(4289), + [sym_var_definition_list] = STATE(4542), + [sym_var_definition] = STATE(3917), + [sym_assignment_statement] = STATE(4289), + [sym_block] = STATE(3717), + [sym_is_clause] = STATE(4231), + [sym_range_clause] = STATE(4231), + [sym_for_clause] = STATE(4231), + [sym_identifier] = ACTIONS(769), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), - [anon_sym_mut] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), + [anon_sym_mut] = ACTIONS(787), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [106] = { [sym_line_comment] = STATE(106), [sym_block_comment] = STATE(106), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4455), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4595), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(110), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(867), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [107] = { [sym_line_comment] = STATE(107), [sym_block_comment] = STATE(107), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4566), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4519), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(114), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(132), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [108] = { [sym_line_comment] = STATE(108), [sym_block_comment] = STATE(108), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4529), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4515), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(125), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(117), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [109] = { [sym_line_comment] = STATE(109), [sym_block_comment] = STATE(109), - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4606), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4413), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [aux_sym_select_expression_repeat1] = STATE(145), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [aux_sym_select_expression_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [110] = { [sym_line_comment] = STATE(110), [sym_block_comment] = STATE(110), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4326), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4571), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(128), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [111] = { [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4335), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4521), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [112] = { [sym_line_comment] = STATE(112), [sym_block_comment] = STATE(112), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4639), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4486), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [113] = { [sym_line_comment] = STATE(113), [sym_block_comment] = STATE(113), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4377), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4547), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [114] = { [sym_line_comment] = STATE(114), [sym_block_comment] = STATE(114), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4641), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4471), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(112), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [115] = { [sym_line_comment] = STATE(115), [sym_block_comment] = STATE(115), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4419), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4467), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [116] = { [sym_line_comment] = STATE(116), [sym_block_comment] = STATE(116), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4421), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4573), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [117] = { [sym_line_comment] = STATE(117), [sym_block_comment] = STATE(117), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4410), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4549), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [118] = { [sym_line_comment] = STATE(118), [sym_block_comment] = STATE(118), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4536), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4562), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(119), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [119] = { [sym_line_comment] = STATE(119), [sym_block_comment] = STATE(119), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4506), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4553), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [120] = { [sym_line_comment] = STATE(120), [sym_block_comment] = STATE(120), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4539), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4493), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(118), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [121] = { [sym_line_comment] = STATE(121), [sym_block_comment] = STATE(121), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4386), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4492), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(897), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [122] = { [sym_line_comment] = STATE(122), [sym_block_comment] = STATE(122), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4385), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4628), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(116), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [123] = { [sym_line_comment] = STATE(123), [sym_block_comment] = STATE(123), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4540), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4626), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [124] = { [sym_line_comment] = STATE(124), [sym_block_comment] = STATE(124), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4560), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4355), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(148), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [125] = { [sym_line_comment] = STATE(125), [sym_block_comment] = STATE(125), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4557), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4627), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [126] = { [sym_line_comment] = STATE(126), [sym_block_comment] = STATE(126), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4329), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4337), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [127] = { [sym_line_comment] = STATE(127), [sym_block_comment] = STATE(127), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4485), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4334), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [128] = { [sym_line_comment] = STATE(128), [sym_block_comment] = STATE(128), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4336), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4550), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [129] = { [sym_line_comment] = STATE(129), [sym_block_comment] = STATE(129), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4636), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4435), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [130] = { [sym_line_comment] = STATE(130), [sym_block_comment] = STATE(130), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4350), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4367), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(126), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(128), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [131] = { [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4358), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4537), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(113), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [132] = { [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4337), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4535), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(119), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [133] = { [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4478), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4624), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [134] = { [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4481), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4565), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [135] = { [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4487), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4425), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [136] = { [sym_line_comment] = STATE(136), [sym_block_comment] = STATE(136), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4486), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4591), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [137] = { [sym_line_comment] = STATE(137), [sym_block_comment] = STATE(137), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4320), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4438), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [138] = { [sym_line_comment] = STATE(138), [sym_block_comment] = STATE(138), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4605), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4397), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [139] = { [sym_line_comment] = STATE(139), [sym_block_comment] = STATE(139), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4585), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4441), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [140] = { [sym_line_comment] = STATE(140), [sym_block_comment] = STATE(140), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4588), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4593), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [141] = { [sym_line_comment] = STATE(141), [sym_block_comment] = STATE(141), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4589), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4424), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [142] = { [sym_line_comment] = STATE(142), [sym_block_comment] = STATE(142), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4490), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4364), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [143] = { [sym_line_comment] = STATE(143), [sym_block_comment] = STATE(143), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4617), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4422), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [144] = { [sym_line_comment] = STATE(144), [sym_block_comment] = STATE(144), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4638), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4489), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [145] = { [sym_line_comment] = STATE(145), [sym_block_comment] = STATE(145), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4625), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4481), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(146), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [146] = { [sym_line_comment] = STATE(146), [sym_block_comment] = STATE(146), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4640), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4447), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), - [aux_sym_select_expression_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(767), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), + [aux_sym_select_expression_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [147] = { [sym_line_comment] = STATE(147), [sym_block_comment] = STATE(147), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4645), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4594), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [148] = { [sym_line_comment] = STATE(148), [sym_block_comment] = STATE(148), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_select_else_arn_clause] = STATE(4564), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_select_else_arn_clause] = STATE(4558), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(701), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(717), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(803), - [anon_sym_DOLLARif] = ACTIONS(805), - [anon_sym_match] = ACTIONS(807), - [anon_sym_select] = ACTIONS(809), - [anon_sym_lock] = ACTIONS(811), - [anon_sym_rlock] = ACTIONS(811), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_sql] = ACTIONS(815), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(735), + [anon_sym_else] = ACTIONS(737), + [anon_sym_DOLLARif] = ACTIONS(739), + [anon_sym_match] = ACTIONS(741), + [anon_sym_select] = ACTIONS(743), + [anon_sym_lock] = ACTIONS(745), + [anon_sym_rlock] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(747), + [anon_sym_sql] = ACTIONS(749), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [149] = { [sym_line_comment] = STATE(149), [sym_block_comment] = STATE(149), - [sym__expression] = STATE(2780), - [sym__expression_without_blocks] = STATE(1903), - [sym__expression_with_blocks] = STATE(2882), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(2877), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(2877), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(2877), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(2877), - [sym_compile_time_if_expression] = STATE(2877), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(2877), - [sym_select_expression] = STATE(2877), - [sym_select_arm] = STATE(2140), - [sym_select_arm_statement] = STATE(4150), - [sym_select_var_declaration] = STATE(4507), - [sym_lock_expression] = STATE(2877), - [sym_unsafe_expression] = STATE(2877), - [sym_sql_expression] = STATE(2877), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(641), - [sym_mutable_identifier] = STATE(3847), - [sym_identifier_list] = STATE(4511), + [sym__expression] = STATE(2727), + [sym__expression_without_blocks] = STATE(1902), + [sym__expression_with_blocks] = STATE(2865), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(2867), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(2867), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(2867), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(2867), + [sym_compile_time_if_expression] = STATE(2867), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(2867), + [sym_select_expression] = STATE(2867), + [sym_select_arm] = STATE(2143), + [sym_select_arm_statement] = STATE(4061), + [sym_select_var_declaration] = STATE(4587), + [sym_lock_expression] = STATE(2867), + [sym_unsafe_expression] = STATE(2867), + [sym_sql_expression] = STATE(2867), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(844), + [sym_mutable_identifier] = STATE(3995), + [sym_identifier_list] = STATE(4583), [sym_expression_without_blocks_list] = STATE(3279), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_send_statement] = STATE(4507), + [sym_plain_type] = STATE(4107), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_send_statement] = STATE(4587), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(953), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -39687,348 +39667,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1006), [sym_float_literal] = ACTIONS(1032), [sym_rune_literal] = ACTIONS(1032), - [sym_pseudo_compile_time_identifier] = ACTIONS(1035), - [anon_sym_shared] = ACTIONS(1038), - [anon_sym_map_LBRACK] = ACTIONS(1041), - [anon_sym_chan] = ACTIONS(1044), - [anon_sym_thread] = ACTIONS(1047), - [anon_sym_atomic] = ACTIONS(1050), - [sym___double_quote] = ACTIONS(1053), - [sym___single_quote] = ACTIONS(1056), - [sym___c_double_quote] = ACTIONS(1059), - [sym___c_single_quote] = ACTIONS(1062), - [sym___r_double_quote] = ACTIONS(1065), - [sym___r_single_quote] = ACTIONS(1068), + [anon_sym_SQUOTE] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1038), + [anon_sym_c_SQUOTE] = ACTIONS(1041), + [anon_sym_c_DQUOTE] = ACTIONS(1044), + [anon_sym_r_SQUOTE] = ACTIONS(1047), + [anon_sym_r_DQUOTE] = ACTIONS(1050), + [sym_pseudo_compile_time_identifier] = ACTIONS(1053), + [anon_sym_shared] = ACTIONS(1056), + [anon_sym_map_LBRACK] = ACTIONS(1059), + [anon_sym_chan] = ACTIONS(1062), + [anon_sym_thread] = ACTIONS(1065), + [anon_sym_atomic] = ACTIONS(1068), }, [150] = { [sym_line_comment] = STATE(150), [sym_block_comment] = STATE(150), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2584), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_match_arms] = STATE(4644), - [sym_match_arm] = STATE(2141), - [sym_match_expression_list] = STATE(4299), - [sym_match_arm_type] = STATE(3851), - [sym_match_else_arm_clause] = STATE(2141), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3848), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__definite_range] = STATE(3816), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1077), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [151] = { - [sym_line_comment] = STATE(151), - [sym_block_comment] = STATE(151), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2584), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_match_arms] = STATE(4590), - [sym_match_arm] = STATE(2141), - [sym_match_expression_list] = STATE(4299), - [sym_match_arm_type] = STATE(3851), - [sym_match_else_arm_clause] = STATE(2141), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3848), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__definite_range] = STATE(3816), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [152] = { - [sym_line_comment] = STATE(152), - [sym_block_comment] = STATE(152), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_short_lambda] = STATE(4432), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_short_lambda] = STATE(4464), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), [aux_sym_argument_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(1139), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_RPAREN] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -40056,102 +39790,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [153] = { - [sym_line_comment] = STATE(153), - [sym_block_comment] = STATE(153), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_short_lambda] = STATE(4388), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(1139), + [151] = { + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_short_lambda] = STATE(4523), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(202), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1147), - [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_RPAREN] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -40179,225 +39913,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), - }, - [154] = { - [sym_line_comment] = STATE(154), - [sym_block_comment] = STATE(154), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2584), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_match_arms] = STATE(4541), - [sym_match_arm] = STATE(2141), - [sym_match_expression_list] = STATE(4299), - [sym_match_arm_type] = STATE(3851), - [sym_match_else_arm_clause] = STATE(2141), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3848), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__definite_range] = STATE(3816), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1149), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [155] = { - [sym_line_comment] = STATE(155), - [sym_block_comment] = STATE(155), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_short_lambda] = STATE(4327), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), + [152] = { + [sym_line_comment] = STATE(152), + [sym_block_comment] = STATE(152), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_short_lambda] = STATE(4599), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), [aux_sym_argument_list_repeat1] = STATE(208), - [sym_identifier] = ACTIONS(1139), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1151), - [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_RPAREN] = ACTIONS(1081), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -40425,225 +40036,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [156] = { - [sym_line_comment] = STATE(156), - [sym_block_comment] = STATE(156), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2584), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), + [153] = { + [sym_line_comment] = STATE(153), + [sym_block_comment] = STATE(153), + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_match_arms] = STATE(4366), - [sym_match_arm] = STATE(2141), - [sym_match_expression_list] = STATE(4299), - [sym_match_arm_type] = STATE(3851), - [sym_match_else_arm_clause] = STATE(2141), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3848), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__definite_range] = STATE(3816), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1071), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4496), + [sym_match_arm] = STATE(2134), + [sym_match_expression_list] = STATE(4145), + [sym_match_arm_type] = STATE(3872), + [sym_match_else_arm_clause] = STATE(2134), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3874), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__definite_range] = STATE(3868), + [aux_sym_match_arms_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(1083), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1119), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(1125), + [anon_sym_lock] = ACTIONS(1127), + [anon_sym_rlock] = ACTIONS(1127), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [157] = { - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_short_lambda] = STATE(4424), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(1139), + [154] = { + [sym_line_comment] = STATE(154), + [sym_block_comment] = STATE(154), + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4572), + [sym_match_arm] = STATE(2134), + [sym_match_expression_list] = STATE(4145), + [sym_match_arm_type] = STATE(3872), + [sym_match_else_arm_clause] = STATE(2134), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3874), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__definite_range] = STATE(3868), + [aux_sym_match_arms_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1099), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1119), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(1125), + [anon_sym_lock] = ACTIONS(1127), + [anon_sym_rlock] = ACTIONS(1127), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [155] = { + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4596), + [sym_match_arm] = STATE(2134), + [sym_match_expression_list] = STATE(4145), + [sym_match_arm_type] = STATE(3872), + [sym_match_else_arm_clause] = STATE(2134), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3874), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__definite_range] = STATE(3868), + [aux_sym_match_arms_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1099), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1119), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(1125), + [anon_sym_lock] = ACTIONS(1127), + [anon_sym_rlock] = ACTIONS(1127), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [156] = { + [sym_line_comment] = STATE(156), + [sym_block_comment] = STATE(156), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_short_lambda] = STATE(4584), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1155), - [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_RPAREN] = ACTIONS(1153), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -40671,102 +40528,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [158] = { - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_short_lambda] = STATE(4624), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), + [157] = { + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_short_lambda] = STATE(4329), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), [aux_sym_argument_list_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(1139), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1157), - [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -40794,225 +40651,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [158] = { + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4361), + [sym_match_arm] = STATE(2134), + [sym_match_expression_list] = STATE(4145), + [sym_match_arm_type] = STATE(3872), + [sym_match_else_arm_clause] = STATE(2134), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3874), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__definite_range] = STATE(3868), + [aux_sym_match_arms_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1099), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1119), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(1125), + [anon_sym_lock] = ACTIONS(1127), + [anon_sym_rlock] = ACTIONS(1127), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [159] = { [sym_line_comment] = STATE(159), [sym_block_comment] = STATE(159), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2584), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_match_arms] = STATE(4477), - [sym_match_arm] = STATE(2141), - [sym_match_expression_list] = STATE(4299), - [sym_match_arm_type] = STATE(3851), - [sym_match_else_arm_clause] = STATE(2141), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3848), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__definite_range] = STATE(3816), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1071), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4503), + [sym_match_arm] = STATE(2134), + [sym_match_expression_list] = STATE(4145), + [sym_match_arm_type] = STATE(3872), + [sym_match_else_arm_clause] = STATE(2134), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3874), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__definite_range] = STATE(3868), + [aux_sym_match_arms_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(1083), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1119), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(1125), + [anon_sym_lock] = ACTIONS(1127), + [anon_sym_rlock] = ACTIONS(1127), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [160] = { [sym_line_comment] = STATE(160), [sym_block_comment] = STATE(160), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_short_lambda] = STATE(4322), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4623), + [sym_match_arm] = STATE(2134), + [sym_match_expression_list] = STATE(4145), + [sym_match_arm_type] = STATE(3872), + [sym_match_else_arm_clause] = STATE(2134), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3874), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__definite_range] = STATE(3868), + [aux_sym_match_arms_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1099), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1119), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(1125), + [anon_sym_lock] = ACTIONS(1127), + [anon_sym_rlock] = ACTIONS(1127), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [161] = { + [sym_line_comment] = STATE(161), + [sym_block_comment] = STATE(161), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_short_lambda] = STATE(4504), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1161), - [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_RPAREN] = ACTIONS(1163), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -41040,348 +41143,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), - }, - [161] = { - [sym_line_comment] = STATE(161), - [sym_block_comment] = STATE(161), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2584), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_match_arms] = STATE(4482), - [sym_match_arm] = STATE(2141), - [sym_match_expression_list] = STATE(4299), - [sym_match_arm_type] = STATE(3851), - [sym_match_else_arm_clause] = STATE(2141), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3848), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__definite_range] = STATE(3816), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [162] = { [sym_line_comment] = STATE(162), [sym_block_comment] = STATE(162), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2584), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_match_arms] = STATE(4365), - [sym_match_arm] = STATE(2141), - [sym_match_expression_list] = STATE(4299), - [sym_match_arm_type] = STATE(3851), - [sym_match_else_arm_clause] = STATE(2141), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3848), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__definite_range] = STATE(3816), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1071), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4446), + [sym_match_arm] = STATE(2134), + [sym_match_expression_list] = STATE(4145), + [sym_match_arm_type] = STATE(3872), + [sym_match_else_arm_clause] = STATE(2134), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3874), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__definite_range] = STATE(3868), + [aux_sym_match_arms_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(1083), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1119), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(1125), + [anon_sym_lock] = ACTIONS(1127), + [anon_sym_rlock] = ACTIONS(1127), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [163] = { [sym_line_comment] = STATE(163), [sym_block_comment] = STATE(163), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_short_lambda] = STATE(4558), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4534), + [sym_match_arm] = STATE(2134), + [sym_match_expression_list] = STATE(4145), + [sym_match_arm_type] = STATE(3872), + [sym_match_else_arm_clause] = STATE(2134), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3874), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__definite_range] = STATE(3868), + [aux_sym_match_arms_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1167), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1099), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1119), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(1125), + [anon_sym_lock] = ACTIONS(1127), + [anon_sym_rlock] = ACTIONS(1127), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [164] = { + [sym_line_comment] = STATE(164), + [sym_block_comment] = STATE(164), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_short_lambda] = STATE(4319), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1167), - [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_RPAREN] = ACTIONS(1169), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -41409,594 +41512,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), - }, - [164] = { - [sym_line_comment] = STATE(164), - [sym_block_comment] = STATE(164), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2584), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_match_arms] = STATE(4554), - [sym_match_arm] = STATE(2141), - [sym_match_expression_list] = STATE(4299), - [sym_match_arm_type] = STATE(3851), - [sym_match_else_arm_clause] = STATE(2141), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3848), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__definite_range] = STATE(3816), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1169), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [165] = { [sym_line_comment] = STATE(165), [sym_block_comment] = STATE(165), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2584), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_match_arms] = STATE(4392), - [sym_match_arm] = STATE(2141), - [sym_match_expression_list] = STATE(4299), - [sym_match_arm_type] = STATE(3851), - [sym_match_else_arm_clause] = STATE(2141), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3848), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__definite_range] = STATE(3816), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1071), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4331), + [sym_match_arm] = STATE(2134), + [sym_match_expression_list] = STATE(4145), + [sym_match_arm_type] = STATE(3872), + [sym_match_else_arm_clause] = STATE(2134), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3874), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__definite_range] = STATE(3868), + [aux_sym_match_arms_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(1083), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), [anon_sym_RBRACE] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1119), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(1125), + [anon_sym_lock] = ACTIONS(1127), + [anon_sym_rlock] = ACTIONS(1127), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [166] = { [sym_line_comment] = STATE(166), [sym_block_comment] = STATE(166), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2584), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_match_arms] = STATE(4422), - [sym_match_arm] = STATE(2141), - [sym_match_expression_list] = STATE(4299), - [sym_match_arm_type] = STATE(3851), - [sym_match_else_arm_clause] = STATE(2141), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3848), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__definite_range] = STATE(3816), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1071), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4625), + [sym_match_arm] = STATE(2134), + [sym_match_expression_list] = STATE(4145), + [sym_match_arm_type] = STATE(3872), + [sym_match_else_arm_clause] = STATE(2134), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3874), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__definite_range] = STATE(3868), + [aux_sym_match_arms_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(1083), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), [anon_sym_RBRACE] = ACTIONS(1173), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1119), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(1125), + [anon_sym_lock] = ACTIONS(1127), + [anon_sym_rlock] = ACTIONS(1127), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [167] = { [sym_line_comment] = STATE(167), [sym_block_comment] = STATE(167), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2584), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_match_arms] = STATE(4447), - [sym_match_arm] = STATE(2141), - [sym_match_expression_list] = STATE(4299), - [sym_match_arm_type] = STATE(3851), - [sym_match_else_arm_clause] = STATE(2141), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3848), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__definite_range] = STATE(3816), - [aux_sym_match_arms_repeat1] = STATE(188), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_short_lambda] = STATE(4436), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(206), [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1175), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_RPAREN] = ACTIONS(1175), + [anon_sym_PIPE] = ACTIONS(1075), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [168] = { [sym_line_comment] = STATE(168), [sym_block_comment] = STATE(168), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_short_lambda] = STATE(4614), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_short_lambda] = STATE(4606), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_RPAREN] = ACTIONS(1177), - [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -42024,225 +42004,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [169] = { [sym_line_comment] = STATE(169), [sym_block_comment] = STATE(169), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2584), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_match_arms] = STATE(4488), - [sym_match_arm] = STATE(2141), - [sym_match_expression_list] = STATE(4299), - [sym_match_arm_type] = STATE(3851), - [sym_match_else_arm_clause] = STATE(2141), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3848), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__definite_range] = STATE(3816), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1071), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4548), + [sym_match_arm] = STATE(2134), + [sym_match_expression_list] = STATE(4145), + [sym_match_arm_type] = STATE(3872), + [sym_match_else_arm_clause] = STATE(2134), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3874), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__definite_range] = STATE(3868), + [aux_sym_match_arms_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(1083), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1119), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(1125), + [anon_sym_lock] = ACTIONS(1127), + [anon_sym_rlock] = ACTIONS(1127), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [170] = { [sym_line_comment] = STATE(170), [sym_block_comment] = STATE(170), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_short_lambda] = STATE(4450), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_short_lambda] = STATE(4527), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(209), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_RPAREN] = ACTIONS(1181), - [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -42270,225 +42250,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [171] = { [sym_line_comment] = STATE(171), [sym_block_comment] = STATE(171), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2584), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_match_arms] = STATE(4646), - [sym_match_arm] = STATE(2141), - [sym_match_expression_list] = STATE(4299), - [sym_match_arm_type] = STATE(3851), - [sym_match_else_arm_clause] = STATE(2141), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3848), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__definite_range] = STATE(3816), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1071), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4462), + [sym_match_arm] = STATE(2134), + [sym_match_expression_list] = STATE(4145), + [sym_match_arm_type] = STATE(3872), + [sym_match_else_arm_clause] = STATE(2134), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3874), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__definite_range] = STATE(3868), + [aux_sym_match_arms_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(1083), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1119), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(1125), + [anon_sym_lock] = ACTIONS(1127), + [anon_sym_rlock] = ACTIONS(1127), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [172] = { [sym_line_comment] = STATE(172), [sym_block_comment] = STATE(172), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_short_lambda] = STATE(4535), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_short_lambda] = STATE(4570), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_RPAREN] = ACTIONS(1185), - [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -42516,102 +42496,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [173] = { [sym_line_comment] = STATE(173), [sym_block_comment] = STATE(173), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_short_lambda] = STATE(4465), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_short_lambda] = STATE(4415), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_RPAREN] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -42639,340 +42619,462 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [174] = { [sym_line_comment] = STATE(174), [sym_block_comment] = STATE(174), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_short_lambda] = STATE(4527), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_match_arms] = STATE(4421), + [sym_match_arm] = STATE(2134), + [sym_match_expression_list] = STATE(4145), + [sym_match_arm_type] = STATE(3872), + [sym_match_else_arm_clause] = STATE(2134), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3874), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__definite_range] = STATE(3868), + [aux_sym_match_arms_repeat1] = STATE(184), + [sym_identifier] = ACTIONS(1083), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1143), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1119), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(1125), + [anon_sym_lock] = ACTIONS(1127), + [anon_sym_rlock] = ACTIONS(1127), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [175] = { [sym_line_comment] = STATE(175), [sym_block_comment] = STATE(175), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4592), - [sym_short_element_list] = STATE(4591), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1154), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1139), + [sym_reference_expression] = STATE(4344), + [sym_type_reference_expression] = STATE(989), + [sym_plain_type] = STATE(1075), + [sym__plain_type_without_special] = STATE(1091), + [sym_anon_struct_type] = STATE(1089), + [sym_multi_return_type] = STATE(1091), + [sym_result_type] = STATE(1091), + [sym_option_type] = STATE(1091), + [sym_qualified_type] = STATE(989), + [sym_fixed_array_type] = STATE(1089), + [sym_array_type] = STATE(1089), + [sym_pointer_type] = STATE(1089), + [sym_wrong_pointer_type] = STATE(1089), + [sym_map_type] = STATE(1089), + [sym_channel_type] = STATE(1089), + [sym_shared_type] = STATE(1089), + [sym_thread_type] = STATE(1089), + [sym_atomic_type] = STATE(1089), + [sym_generic_type] = STATE(1089), + [sym_function_type] = STATE(1089), + [ts_builtin_sym_end] = ACTIONS(599), + [sym_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_const] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym___global] = ACTIONS(601), + [anon_sym_type] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(601), + [anon_sym_pub] = ACTIONS(601), + [anon_sym_mut] = ACTIONS(601), + [anon_sym_enum] = ACTIONS(601), + [anon_sym_interface] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(601), + [anon_sym_spawn] = ACTIONS(601), + [anon_sym_json_DOTdecode] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(1207), + [anon_sym_LT_DASH] = ACTIONS(601), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_or] = ACTIONS(601), + [sym_none] = ACTIONS(601), + [sym_true] = ACTIONS(601), + [sym_false] = ACTIONS(601), + [sym_nil] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_POUND_LBRACK] = ACTIONS(601), + [anon_sym_if] = ACTIONS(601), + [anon_sym_DOLLARif] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(601), + [anon_sym_match] = ACTIONS(601), + [anon_sym_select] = ACTIONS(601), + [anon_sym_lock] = ACTIONS(601), + [anon_sym_rlock] = ACTIONS(601), + [anon_sym_unsafe] = ACTIONS(601), + [anon_sym_sql] = ACTIONS(601), + [sym_int_literal] = ACTIONS(601), + [sym_float_literal] = ACTIONS(601), + [sym_rune_literal] = ACTIONS(601), + [anon_sym_SQUOTE] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(601), + [anon_sym_c_SQUOTE] = ACTIONS(601), + [anon_sym_c_DQUOTE] = ACTIONS(601), + [anon_sym_r_SQUOTE] = ACTIONS(601), + [anon_sym_r_DQUOTE] = ACTIONS(601), + [sym_pseudo_compile_time_identifier] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(1209), + [anon_sym_map_LBRACK] = ACTIONS(1211), + [anon_sym_chan] = ACTIONS(1213), + [anon_sym_thread] = ACTIONS(1215), + [anon_sym_atomic] = ACTIONS(1217), + [anon_sym_assert] = ACTIONS(601), + [anon_sym_defer] = ACTIONS(601), + [anon_sym_goto] = ACTIONS(601), + [anon_sym_break] = ACTIONS(601), + [anon_sym_continue] = ACTIONS(601), + [anon_sym_return] = ACTIONS(601), + [anon_sym_DOLLARfor] = ACTIONS(601), + [anon_sym_for] = ACTIONS(601), + [anon_sym_POUND] = ACTIONS(601), + [anon_sym_asm] = ACTIONS(601), + [anon_sym_AT_LBRACK] = ACTIONS(601), + }, + [176] = { + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2804), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2815), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4437), + [sym_attribute_expression] = STATE(3894), + [sym_if_attribute] = STATE(4129), + [sym__plain_attribute] = STATE(4129), + [sym_literal_attribute] = STATE(4133), + [sym_value_attribute] = STATE(3822), + [sym_key_value_attribute] = STATE(4133), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(647), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1261), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, - [176] = { - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4324), - [sym_short_element_list] = STATE(4323), + [177] = { + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4440), + [sym_short_element_list] = STATE(4442), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1154), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1198), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1139), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1193), + [anon_sym_RBRACE] = ACTIONS(1283), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -43006,217 +43108,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), - }, - [177] = { - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), - [sym_reference_expression] = STATE(4349), - [sym_type_reference_expression] = STATE(985), - [sym_plain_type] = STATE(1058), - [sym__plain_type_without_special] = STATE(1066), - [sym_anon_struct_type] = STATE(1030), - [sym_multi_return_type] = STATE(1066), - [sym_result_type] = STATE(1066), - [sym_option_type] = STATE(1066), - [sym_qualified_type] = STATE(985), - [sym_fixed_array_type] = STATE(1030), - [sym_array_type] = STATE(1030), - [sym_pointer_type] = STATE(1030), - [sym_wrong_pointer_type] = STATE(1030), - [sym_map_type] = STATE(1030), - [sym_channel_type] = STATE(1030), - [sym_shared_type] = STATE(1030), - [sym_thread_type] = STATE(1030), - [sym_atomic_type] = STATE(1030), - [sym_generic_type] = STATE(1030), - [sym_function_type] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(585), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_const] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym___global] = ACTIONS(589), - [anon_sym_type] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(1199), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(1203), - [anon_sym_union] = ACTIONS(589), - [anon_sym_pub] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_enum] = ACTIONS(589), - [anon_sym_interface] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(589), - [anon_sym_LBRACK2] = ACTIONS(1209), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(1211), - [anon_sym_LT_DASH] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(589), - [sym_rune_literal] = ACTIONS(589), - [sym_pseudo_compile_time_identifier] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(1213), - [anon_sym_map_LBRACK] = ACTIONS(1215), - [anon_sym_chan] = ACTIONS(1217), - [anon_sym_thread] = ACTIONS(1219), - [anon_sym_atomic] = ACTIONS(1221), - [anon_sym_assert] = ACTIONS(589), - [anon_sym_defer] = ACTIONS(589), - [anon_sym_goto] = ACTIONS(589), - [anon_sym_break] = ACTIONS(589), - [anon_sym_continue] = ACTIONS(589), - [anon_sym_return] = ACTIONS(589), - [anon_sym_DOLLARfor] = ACTIONS(589), - [anon_sym_for] = ACTIONS(589), - [anon_sym_POUND] = ACTIONS(589), - [anon_sym_asm] = ACTIONS(589), - [anon_sym_AT_LBRACK] = ACTIONS(589), - [sym___double_quote] = ACTIONS(589), - [sym___single_quote] = ACTIONS(589), - [sym___c_double_quote] = ACTIONS(589), - [sym___c_single_quote] = ACTIONS(589), - [sym___r_double_quote] = ACTIONS(589), - [sym___r_single_quote] = ACTIONS(589), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [178] = { [sym_line_comment] = STATE(178), [sym_block_comment] = STATE(178), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4472), - [sym_short_element_list] = STATE(4476), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4418), + [sym_short_element_list] = STATE(4419), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1154), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1198), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1139), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1285), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -43250,95 +43230,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [179] = { [sym_line_comment] = STATE(179), [sym_block_comment] = STATE(179), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4561), - [sym_short_element_list] = STATE(4574), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4612), + [sym_short_element_list] = STATE(4613), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1154), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1198), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1139), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1287), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -43372,410 +43352,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [180] = { [sym_line_comment] = STATE(180), [sym_block_comment] = STATE(180), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4543), - [sym_short_element_list] = STATE(4551), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1154), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1139), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(647), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), - }, - [181] = { - [sym_line_comment] = STATE(181), - [sym_block_comment] = STATE(181), - [sym_reference_expression] = STATE(4349), - [sym_type_reference_expression] = STATE(985), - [sym_plain_type] = STATE(1005), - [sym__plain_type_without_special] = STATE(1066), - [sym_anon_struct_type] = STATE(1030), - [sym_multi_return_type] = STATE(1066), - [sym_result_type] = STATE(1066), - [sym_option_type] = STATE(1066), - [sym_qualified_type] = STATE(985), - [sym_fixed_array_type] = STATE(1030), - [sym_array_type] = STATE(1030), - [sym_pointer_type] = STATE(1030), - [sym_wrong_pointer_type] = STATE(1030), - [sym_map_type] = STATE(1030), - [sym_channel_type] = STATE(1030), - [sym_shared_type] = STATE(1030), - [sym_thread_type] = STATE(1030), - [sym_atomic_type] = STATE(1030), - [sym_generic_type] = STATE(1030), - [sym_function_type] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(617), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_const] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym___global] = ACTIONS(619), - [anon_sym_type] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(1199), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(1203), - [anon_sym_union] = ACTIONS(619), - [anon_sym_pub] = ACTIONS(619), - [anon_sym_mut] = ACTIONS(619), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_interface] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_go] = ACTIONS(619), - [anon_sym_spawn] = ACTIONS(619), - [anon_sym_json_DOTdecode] = ACTIONS(619), - [anon_sym_LBRACK2] = ACTIONS(1209), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(1211), - [anon_sym_LT_DASH] = ACTIONS(619), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(619), - [sym_none] = ACTIONS(619), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [sym_nil] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_if] = ACTIONS(619), - [anon_sym_DOLLARif] = ACTIONS(619), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_match] = ACTIONS(619), - [anon_sym_select] = ACTIONS(619), - [anon_sym_lock] = ACTIONS(619), - [anon_sym_rlock] = ACTIONS(619), - [anon_sym_unsafe] = ACTIONS(619), - [anon_sym_sql] = ACTIONS(619), - [sym_int_literal] = ACTIONS(619), - [sym_float_literal] = ACTIONS(619), - [sym_rune_literal] = ACTIONS(619), - [sym_pseudo_compile_time_identifier] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(1213), - [anon_sym_map_LBRACK] = ACTIONS(1215), - [anon_sym_chan] = ACTIONS(1217), - [anon_sym_thread] = ACTIONS(1219), - [anon_sym_atomic] = ACTIONS(1221), - [anon_sym_assert] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(619), - [anon_sym_goto] = ACTIONS(619), - [anon_sym_break] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(619), - [anon_sym_return] = ACTIONS(619), - [anon_sym_DOLLARfor] = ACTIONS(619), - [anon_sym_for] = ACTIONS(619), - [anon_sym_POUND] = ACTIONS(619), - [anon_sym_asm] = ACTIONS(619), - [anon_sym_AT_LBRACK] = ACTIONS(619), - [sym___double_quote] = ACTIONS(619), - [sym___single_quote] = ACTIONS(619), - [sym___c_double_quote] = ACTIONS(619), - [sym___c_single_quote] = ACTIONS(619), - [sym___r_double_quote] = ACTIONS(619), - [sym___r_single_quote] = ACTIONS(619), - }, - [182] = { - [sym_line_comment] = STATE(182), - [sym_block_comment] = STATE(182), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4461), - [sym_short_element_list] = STATE(4470), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1154), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1139), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(647), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), - }, - [183] = { - [sym_line_comment] = STATE(183), - [sym_block_comment] = STATE(183), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2320), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), + [sym_reference_expression] = STATE(4344), + [sym_type_reference_expression] = STATE(989), + [sym_plain_type] = STATE(1012), + [sym__plain_type_without_special] = STATE(1091), + [sym_anon_struct_type] = STATE(1089), + [sym_multi_return_type] = STATE(1091), + [sym_result_type] = STATE(1091), + [sym_option_type] = STATE(1091), + [sym_qualified_type] = STATE(989), + [sym_fixed_array_type] = STATE(1089), + [sym_array_type] = STATE(1089), + [sym_pointer_type] = STATE(1089), + [sym_wrong_pointer_type] = STATE(1089), + [sym_map_type] = STATE(1089), + [sym_channel_type] = STATE(1089), + [sym_shared_type] = STATE(1089), + [sym_thread_type] = STATE(1089), + [sym_atomic_type] = STATE(1089), + [sym_generic_type] = STATE(1089), + [sym_function_type] = STATE(1089), [ts_builtin_sym_end] = ACTIONS(563), - [sym_identifier] = ACTIONS(565), + [sym_identifier] = ACTIONS(1191), [anon_sym_LF] = ACTIONS(567), [anon_sym_CR] = ACTIONS(567), [anon_sym_CR_LF] = ACTIONS(567), @@ -43786,14 +43400,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_const] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(1193), [anon_sym___global] = ACTIONS(567), [anon_sym_type] = ACTIONS(567), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(1195), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(1197), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(567), [anon_sym_LT] = ACTIONS(567), @@ -43803,7 +43417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(567), [anon_sym_GT_EQ] = ACTIONS(567), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(1199), [anon_sym_union] = ACTIONS(567), [anon_sym_pub] = ACTIONS(567), [anon_sym_mut] = ACTIONS(567), @@ -43811,15 +43425,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(567), [anon_sym_PLUS_PLUS] = ACTIONS(567), [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1203), [anon_sym_go] = ACTIONS(567), [anon_sym_spawn] = ACTIONS(567), [anon_sym_json_DOTdecode] = ACTIONS(567), - [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_LBRACK2] = ACTIONS(1205), [anon_sym_TILDE] = ACTIONS(567), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(1207), [anon_sym_LT_DASH] = ACTIONS(567), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), @@ -43849,12 +43463,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(567), [sym_float_literal] = ACTIONS(567), [sym_rune_literal] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(567), + [anon_sym_c_SQUOTE] = ACTIONS(567), + [anon_sym_c_DQUOTE] = ACTIONS(567), + [anon_sym_r_SQUOTE] = ACTIONS(567), + [anon_sym_r_DQUOTE] = ACTIONS(567), [sym_pseudo_compile_time_identifier] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(1209), + [anon_sym_map_LBRACK] = ACTIONS(1211), + [anon_sym_chan] = ACTIONS(1213), + [anon_sym_thread] = ACTIONS(1215), + [anon_sym_atomic] = ACTIONS(1217), [anon_sym_assert] = ACTIONS(567), [anon_sym_defer] = ACTIONS(567), [anon_sym_goto] = ACTIONS(567), @@ -43866,211 +43486,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(567), [anon_sym_asm] = ACTIONS(567), [anon_sym_AT_LBRACK] = ACTIONS(567), - [sym___double_quote] = ACTIONS(567), - [sym___single_quote] = ACTIONS(567), - [sym___c_double_quote] = ACTIONS(567), - [sym___c_single_quote] = ACTIONS(567), - [sym___r_double_quote] = ACTIONS(567), - [sym___r_single_quote] = ACTIONS(567), - }, - [184] = { - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4629), - [sym_short_element_list] = STATE(4630), - [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1154), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1139), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(647), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), }, - [185] = { - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4430), - [sym_short_element_list] = STATE(4428), + [181] = { + [sym_line_comment] = STATE(181), + [sym_block_comment] = STATE(181), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4474), + [sym_short_element_list] = STATE(4324), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1154), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1198), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1139), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1235), + [anon_sym_RBRACE] = ACTIONS(1289), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -44104,95 +43596,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [186] = { - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4633), - [sym_short_element_list] = STATE(4575), + [182] = { + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4555), + [sym_short_element_list] = STATE(4554), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1154), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1198), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1139), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_RBRACE] = ACTIONS(1291), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -44226,408 +43718,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [187] = { - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2584), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_match_arm] = STATE(2141), - [sym_match_expression_list] = STATE(4299), - [sym_match_arm_type] = STATE(3851), - [sym_match_else_arm_clause] = STATE(2141), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3848), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__definite_range] = STATE(3816), - [aux_sym_match_arms_repeat1] = STATE(187), - [sym_identifier] = ACTIONS(1239), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_fn] = ACTIONS(1253), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_struct] = ACTIONS(1262), - [anon_sym_mut] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_BANG] = ACTIONS(1271), - [anon_sym_go] = ACTIONS(1274), - [anon_sym_spawn] = ACTIONS(1277), - [anon_sym_json_DOTdecode] = ACTIONS(1280), - [anon_sym_LBRACK2] = ACTIONS(1283), - [anon_sym_TILDE] = ACTIONS(1256), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_LT_DASH] = ACTIONS(1289), - [sym_none] = ACTIONS(1292), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [sym_nil] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1295), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_DOLLARif] = ACTIONS(1301), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_select] = ACTIONS(1307), - [anon_sym_lock] = ACTIONS(1310), - [anon_sym_rlock] = ACTIONS(1310), - [anon_sym_unsafe] = ACTIONS(1313), - [anon_sym_sql] = ACTIONS(1316), - [sym_int_literal] = ACTIONS(1292), - [sym_float_literal] = ACTIONS(1319), - [sym_rune_literal] = ACTIONS(1319), - [sym_pseudo_compile_time_identifier] = ACTIONS(1322), - [anon_sym_shared] = ACTIONS(1325), - [anon_sym_map_LBRACK] = ACTIONS(1328), - [anon_sym_chan] = ACTIONS(1331), - [anon_sym_thread] = ACTIONS(1334), - [anon_sym_atomic] = ACTIONS(1337), - [sym___double_quote] = ACTIONS(1340), - [sym___single_quote] = ACTIONS(1343), - [sym___c_double_quote] = ACTIONS(1346), - [sym___c_single_quote] = ACTIONS(1349), - [sym___r_double_quote] = ACTIONS(1352), - [sym___r_single_quote] = ACTIONS(1355), + [183] = { + [sym_line_comment] = STATE(183), + [sym_block_comment] = STATE(183), + [sym_reference_expression] = STATE(4344), + [sym_type_reference_expression] = STATE(989), + [sym_plain_type] = STATE(1037), + [sym__plain_type_without_special] = STATE(1091), + [sym_anon_struct_type] = STATE(1089), + [sym_multi_return_type] = STATE(1091), + [sym_result_type] = STATE(1091), + [sym_option_type] = STATE(1091), + [sym_qualified_type] = STATE(989), + [sym_fixed_array_type] = STATE(1089), + [sym_array_type] = STATE(1089), + [sym_pointer_type] = STATE(1089), + [sym_wrong_pointer_type] = STATE(1089), + [sym_map_type] = STATE(1089), + [sym_channel_type] = STATE(1089), + [sym_shared_type] = STATE(1089), + [sym_thread_type] = STATE(1089), + [sym_atomic_type] = STATE(1089), + [sym_generic_type] = STATE(1089), + [sym_function_type] = STATE(1089), + [ts_builtin_sym_end] = ACTIONS(595), + [sym_identifier] = ACTIONS(1191), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_CR] = ACTIONS(597), + [anon_sym_CR_LF] = ACTIONS(597), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(597), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_const] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym___global] = ACTIONS(597), + [anon_sym_type] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_union] = ACTIONS(597), + [anon_sym_pub] = ACTIONS(597), + [anon_sym_mut] = ACTIONS(597), + [anon_sym_enum] = ACTIONS(597), + [anon_sym_interface] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(597), + [anon_sym_spawn] = ACTIONS(597), + [anon_sym_json_DOTdecode] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(1207), + [anon_sym_LT_DASH] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_or] = ACTIONS(597), + [sym_none] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_nil] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(597), + [anon_sym_POUND_LBRACK] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(597), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(597), + [anon_sym_match] = ACTIONS(597), + [anon_sym_select] = ACTIONS(597), + [anon_sym_lock] = ACTIONS(597), + [anon_sym_rlock] = ACTIONS(597), + [anon_sym_unsafe] = ACTIONS(597), + [anon_sym_sql] = ACTIONS(597), + [sym_int_literal] = ACTIONS(597), + [sym_float_literal] = ACTIONS(597), + [sym_rune_literal] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(597), + [anon_sym_c_SQUOTE] = ACTIONS(597), + [anon_sym_c_DQUOTE] = ACTIONS(597), + [anon_sym_r_SQUOTE] = ACTIONS(597), + [anon_sym_r_DQUOTE] = ACTIONS(597), + [sym_pseudo_compile_time_identifier] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(1209), + [anon_sym_map_LBRACK] = ACTIONS(1211), + [anon_sym_chan] = ACTIONS(1213), + [anon_sym_thread] = ACTIONS(1215), + [anon_sym_atomic] = ACTIONS(1217), + [anon_sym_assert] = ACTIONS(597), + [anon_sym_defer] = ACTIONS(597), + [anon_sym_goto] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_DOLLARfor] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_POUND] = ACTIONS(597), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_AT_LBRACK] = ACTIONS(597), }, - [188] = { - [sym_line_comment] = STATE(188), - [sym_block_comment] = STATE(188), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2584), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), + [184] = { + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_match_arm] = STATE(2141), - [sym_match_expression_list] = STATE(4299), - [sym_match_arm_type] = STATE(3851), - [sym_match_else_arm_clause] = STATE(2141), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3848), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__definite_range] = STATE(3816), - [aux_sym_match_arms_repeat1] = STATE(187), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [189] = { - [sym_line_comment] = STATE(189), - [sym_block_comment] = STATE(189), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1369), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1390), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1399), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_attribute_expression] = STATE(3861), - [sym_if_attribute] = STATE(4192), - [sym__plain_attribute] = STATE(4192), - [sym_literal_attribute] = STATE(4193), - [sym_value_attribute] = STATE(3862), - [sym_key_value_attribute] = STATE(4193), - [aux_sym__array_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(1360), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_match_arm] = STATE(2134), + [sym_match_expression_list] = STATE(4145), + [sym_match_arm_type] = STATE(3872), + [sym_match_else_arm_clause] = STATE(2134), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3874), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__definite_range] = STATE(3868), + [aux_sym_match_arms_repeat1] = STATE(195), + [sym_identifier] = ACTIONS(1083), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1404), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1119), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(1125), + [anon_sym_lock] = ACTIONS(1127), + [anon_sym_rlock] = ACTIONS(1127), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [190] = { - [sym_line_comment] = STATE(190), - [sym_block_comment] = STATE(190), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2345), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), + [185] = { + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2311), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), [ts_builtin_sym_end] = ACTIONS(625), [sym_identifier] = ACTIONS(627), [anon_sym_LF] = ACTIONS(627), @@ -44703,6 +44073,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(627), [sym_float_literal] = ACTIONS(627), [sym_rune_literal] = ACTIONS(627), + [anon_sym_SQUOTE] = ACTIONS(627), + [anon_sym_DQUOTE] = ACTIONS(627), + [anon_sym_c_SQUOTE] = ACTIONS(627), + [anon_sym_c_DQUOTE] = ACTIONS(627), + [anon_sym_r_SQUOTE] = ACTIONS(627), + [anon_sym_r_DQUOTE] = ACTIONS(627), [sym_pseudo_compile_time_identifier] = ACTIONS(627), [anon_sym_shared] = ACTIONS(627), [anon_sym_map_LBRACK] = ACTIONS(627), @@ -44720,89 +44096,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(627), [anon_sym_asm] = ACTIONS(627), [anon_sym_AT_LBRACK] = ACTIONS(627), - [sym___double_quote] = ACTIONS(627), - [sym___single_quote] = ACTIONS(627), - [sym___c_double_quote] = ACTIONS(627), - [sym___c_single_quote] = ACTIONS(627), - [sym___r_double_quote] = ACTIONS(627), - [sym___r_single_quote] = ACTIONS(627), }, - [191] = { - [sym_line_comment] = STATE(191), - [sym_block_comment] = STATE(191), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4420), - [sym_short_element_list] = STATE(4414), + [186] = { + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2386), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [ts_builtin_sym_end] = ACTIONS(603), + [sym_identifier] = ACTIONS(605), + [anon_sym_LF] = ACTIONS(607), + [anon_sym_CR] = ACTIONS(607), + [anon_sym_CR_LF] = ACTIONS(607), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym___global] = ACTIONS(607), + [anon_sym_type] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_union] = ACTIONS(607), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_mut] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_interface] = ACTIONS(607), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_go] = ACTIONS(607), + [anon_sym_spawn] = ACTIONS(607), + [anon_sym_json_DOTdecode] = ACTIONS(607), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(607), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_LT_DASH] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(607), + [sym_none] = ACTIONS(607), + [sym_true] = ACTIONS(607), + [sym_false] = ACTIONS(607), + [sym_nil] = ACTIONS(607), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_DOLLARif] = ACTIONS(607), + [anon_sym_is] = ACTIONS(607), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(607), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_select] = ACTIONS(607), + [anon_sym_lock] = ACTIONS(607), + [anon_sym_rlock] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_sql] = ACTIONS(607), + [sym_int_literal] = ACTIONS(607), + [sym_float_literal] = ACTIONS(607), + [sym_rune_literal] = ACTIONS(607), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [anon_sym_c_SQUOTE] = ACTIONS(607), + [anon_sym_c_DQUOTE] = ACTIONS(607), + [anon_sym_r_SQUOTE] = ACTIONS(607), + [anon_sym_r_DQUOTE] = ACTIONS(607), + [sym_pseudo_compile_time_identifier] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_assert] = ACTIONS(607), + [anon_sym_defer] = ACTIONS(607), + [anon_sym_goto] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_POUND] = ACTIONS(607), + [anon_sym_asm] = ACTIONS(607), + [anon_sym_AT_LBRACK] = ACTIONS(607), + }, + [187] = { + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4374), + [sym_short_element_list] = STATE(4332), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1154), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1198), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1139), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1297), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -44836,217 +44328,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [192] = { - [sym_line_comment] = STATE(192), - [sym_block_comment] = STATE(192), - [sym__expression] = STATE(2602), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2623), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2813), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4542), - [sym_attribute_expression] = STATE(3861), - [sym_if_attribute] = STATE(4192), - [sym__plain_attribute] = STATE(4192), - [sym_literal_attribute] = STATE(4193), - [sym_value_attribute] = STATE(3862), - [sym_key_value_attribute] = STATE(4193), - [sym_identifier] = ACTIONS(1428), + [188] = { + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1337), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1392), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1396), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_attribute_expression] = STATE(3894), + [sym_if_attribute] = STATE(4129), + [sym__plain_attribute] = STATE(4129), + [sym_literal_attribute] = STATE(4133), + [sym_value_attribute] = STATE(3822), + [sym_key_value_attribute] = STATE(4133), + [aux_sym__array_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(1313), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1470), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(1343), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [193] = { - [sym_line_comment] = STATE(193), - [sym_block_comment] = STATE(193), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4389), - [sym_short_element_list] = STATE(4379), + [189] = { + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4451), + [sym_short_element_list] = STATE(4450), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1154), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1198), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1139), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1365), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -45080,217 +44572,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), - }, - [194] = { - [sym_line_comment] = STATE(194), - [sym_block_comment] = STATE(194), - [sym_reference_expression] = STATE(4349), - [sym_type_reference_expression] = STATE(985), - [sym_plain_type] = STATE(1090), - [sym__plain_type_without_special] = STATE(1066), - [sym_anon_struct_type] = STATE(1030), - [sym_multi_return_type] = STATE(1066), - [sym_result_type] = STATE(1066), - [sym_option_type] = STATE(1066), - [sym_qualified_type] = STATE(985), - [sym_fixed_array_type] = STATE(1030), - [sym_array_type] = STATE(1030), - [sym_pointer_type] = STATE(1030), - [sym_wrong_pointer_type] = STATE(1030), - [sym_map_type] = STATE(1030), - [sym_channel_type] = STATE(1030), - [sym_shared_type] = STATE(1030), - [sym_thread_type] = STATE(1030), - [sym_atomic_type] = STATE(1030), - [sym_generic_type] = STATE(1030), - [sym_function_type] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(621), - [sym_identifier] = ACTIONS(1195), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(623), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_const] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym___global] = ACTIONS(623), - [anon_sym_type] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(1199), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(1203), - [anon_sym_union] = ACTIONS(623), - [anon_sym_pub] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(623), - [anon_sym_enum] = ACTIONS(623), - [anon_sym_interface] = ACTIONS(623), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_go] = ACTIONS(623), - [anon_sym_spawn] = ACTIONS(623), - [anon_sym_json_DOTdecode] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(1209), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(1211), - [anon_sym_LT_DASH] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [sym_none] = ACTIONS(623), - [sym_true] = ACTIONS(623), - [sym_false] = ACTIONS(623), - [sym_nil] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(623), - [anon_sym_POUND_LBRACK] = ACTIONS(623), - [anon_sym_if] = ACTIONS(623), - [anon_sym_DOLLARif] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(623), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_match] = ACTIONS(623), - [anon_sym_select] = ACTIONS(623), - [anon_sym_lock] = ACTIONS(623), - [anon_sym_rlock] = ACTIONS(623), - [anon_sym_unsafe] = ACTIONS(623), - [anon_sym_sql] = ACTIONS(623), - [sym_int_literal] = ACTIONS(623), - [sym_float_literal] = ACTIONS(623), - [sym_rune_literal] = ACTIONS(623), - [sym_pseudo_compile_time_identifier] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(1213), - [anon_sym_map_LBRACK] = ACTIONS(1215), - [anon_sym_chan] = ACTIONS(1217), - [anon_sym_thread] = ACTIONS(1219), - [anon_sym_atomic] = ACTIONS(1221), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_defer] = ACTIONS(623), - [anon_sym_goto] = ACTIONS(623), - [anon_sym_break] = ACTIONS(623), - [anon_sym_continue] = ACTIONS(623), - [anon_sym_return] = ACTIONS(623), - [anon_sym_DOLLARfor] = ACTIONS(623), - [anon_sym_for] = ACTIONS(623), - [anon_sym_POUND] = ACTIONS(623), - [anon_sym_asm] = ACTIONS(623), - [anon_sym_AT_LBRACK] = ACTIONS(623), - [sym___double_quote] = ACTIONS(623), - [sym___single_quote] = ACTIONS(623), - [sym___c_double_quote] = ACTIONS(623), - [sym___c_single_quote] = ACTIONS(623), - [sym___r_double_quote] = ACTIONS(623), - [sym___r_single_quote] = ACTIONS(623), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [195] = { - [sym_line_comment] = STATE(195), - [sym_block_comment] = STATE(195), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4571), - [sym_short_element_list] = STATE(4647), + [190] = { + [sym_line_comment] = STATE(190), + [sym_block_comment] = STATE(190), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4601), + [sym_short_element_list] = STATE(4600), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1154), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1198), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1139), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1367), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -45324,95 +44694,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [196] = { - [sym_line_comment] = STATE(196), - [sym_block_comment] = STATE(196), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_element_list] = STATE(4548), - [sym_short_element_list] = STATE(4546), + [191] = { + [sym_line_comment] = STATE(191), + [sym_block_comment] = STATE(191), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4618), + [sym_short_element_list] = STATE(4619), [sym_keyed_element] = STATE(3387), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1154), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1198), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), [sym_spread_expression] = STATE(3387), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_element_list_repeat1] = STATE(3413), - [aux_sym_short_element_list_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1139), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1369), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -45446,100 +44816,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [197] = { - [sym_line_comment] = STATE(197), - [sym_block_comment] = STATE(197), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1139), + [192] = { + [sym_line_comment] = STATE(192), + [sym_block_comment] = STATE(192), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4577), + [sym_short_element_list] = STATE(4576), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1198), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1371), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1498), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(647), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -45567,100 +44938,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [198] = { - [sym_line_comment] = STATE(198), - [sym_block_comment] = STATE(198), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1139), + [193] = { + [sym_line_comment] = STATE(193), + [sym_block_comment] = STATE(193), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4500), + [sym_short_element_list] = STATE(4498), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1198), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1373), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1500), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(647), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -45688,100 +45060,587 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [199] = { - [sym_line_comment] = STATE(199), - [sym_block_comment] = STATE(199), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1139), + [194] = { + [sym_line_comment] = STATE(194), + [sym_block_comment] = STATE(194), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4526), + [sym_short_element_list] = STATE(4529), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1198), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [195] = { + [sym_line_comment] = STATE(195), + [sym_block_comment] = STATE(195), + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_match_arm] = STATE(2134), + [sym_match_expression_list] = STATE(4145), + [sym_match_arm_type] = STATE(3872), + [sym_match_else_arm_clause] = STATE(2134), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3874), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__definite_range] = STATE(3868), + [aux_sym_match_arms_repeat1] = STATE(195), + [sym_identifier] = ACTIONS(1377), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_fn] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1397), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_mut] = ACTIONS(1403), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_go] = ACTIONS(1412), + [anon_sym_spawn] = ACTIONS(1415), + [anon_sym_json_DOTdecode] = ACTIONS(1418), + [anon_sym_LBRACK2] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1394), + [anon_sym_CARET] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_LT_DASH] = ACTIONS(1427), + [sym_none] = ACTIONS(1430), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_nil] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_DOLLARif] = ACTIONS(1439), + [anon_sym_match] = ACTIONS(1442), + [anon_sym_select] = ACTIONS(1445), + [anon_sym_lock] = ACTIONS(1448), + [anon_sym_rlock] = ACTIONS(1448), + [anon_sym_unsafe] = ACTIONS(1451), + [anon_sym_sql] = ACTIONS(1454), + [sym_int_literal] = ACTIONS(1430), + [sym_float_literal] = ACTIONS(1457), + [sym_rune_literal] = ACTIONS(1457), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_c_SQUOTE] = ACTIONS(1466), + [anon_sym_c_DQUOTE] = ACTIONS(1469), + [anon_sym_r_SQUOTE] = ACTIONS(1472), + [anon_sym_r_DQUOTE] = ACTIONS(1475), + [sym_pseudo_compile_time_identifier] = ACTIONS(1478), + [anon_sym_shared] = ACTIONS(1481), + [anon_sym_map_LBRACK] = ACTIONS(1484), + [anon_sym_chan] = ACTIONS(1487), + [anon_sym_thread] = ACTIONS(1490), + [anon_sym_atomic] = ACTIONS(1493), + }, + [196] = { + [sym_line_comment] = STATE(196), + [sym_block_comment] = STATE(196), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_element_list] = STATE(4538), + [sym_short_element_list] = STATE(4540), + [sym_keyed_element] = STATE(3387), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1198), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(3387), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_element_list_repeat1] = STATE(3441), + [aux_sym_short_element_list_repeat1] = STATE(373), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(647), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [197] = { + [sym_line_comment] = STATE(197), + [sym_block_comment] = STATE(197), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_RPAREN] = ACTIONS(1498), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [198] = { + [sym_line_comment] = STATE(198), + [sym_block_comment] = STATE(198), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1502), + [anon_sym_RPAREN] = ACTIONS(1500), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -45809,210 +45668,331 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [199] = { + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(1502), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_RPAREN] = ACTIONS(1514), + [anon_sym_fn] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), + [anon_sym_struct] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(1531), + [anon_sym_QMARK] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1537), + [anon_sym_go] = ACTIONS(1540), + [anon_sym_spawn] = ACTIONS(1543), + [anon_sym_json_DOTdecode] = ACTIONS(1546), + [anon_sym_LBRACK2] = ACTIONS(1549), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_LT_DASH] = ACTIONS(1555), + [sym_none] = ACTIONS(1558), + [sym_true] = ACTIONS(1558), + [sym_false] = ACTIONS(1558), + [sym_nil] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1564), + [anon_sym_match] = ACTIONS(1567), + [anon_sym_select] = ACTIONS(1570), + [anon_sym_lock] = ACTIONS(1573), + [anon_sym_rlock] = ACTIONS(1573), + [anon_sym_unsafe] = ACTIONS(1576), + [anon_sym_sql] = ACTIONS(1579), + [sym_int_literal] = ACTIONS(1558), + [sym_float_literal] = ACTIONS(1582), + [sym_rune_literal] = ACTIONS(1582), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_c_SQUOTE] = ACTIONS(1591), + [anon_sym_c_DQUOTE] = ACTIONS(1594), + [anon_sym_r_SQUOTE] = ACTIONS(1597), + [anon_sym_r_DQUOTE] = ACTIONS(1600), + [sym_pseudo_compile_time_identifier] = ACTIONS(1603), + [anon_sym_shared] = ACTIONS(1606), + [anon_sym_map_LBRACK] = ACTIONS(1609), + [anon_sym_chan] = ACTIONS(1612), + [anon_sym_thread] = ACTIONS(1615), + [anon_sym_atomic] = ACTIONS(1618), }, [200] = { [sym_line_comment] = STATE(200), [sym_block_comment] = STATE(200), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1504), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_fn] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1527), - [anon_sym_struct] = ACTIONS(1530), - [anon_sym_mut] = ACTIONS(1533), - [anon_sym_QMARK] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_go] = ACTIONS(1542), - [anon_sym_spawn] = ACTIONS(1545), - [anon_sym_json_DOTdecode] = ACTIONS(1548), - [anon_sym_LBRACK2] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1521), - [anon_sym_CARET] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1554), - [anon_sym_LT_DASH] = ACTIONS(1557), - [sym_none] = ACTIONS(1560), - [sym_true] = ACTIONS(1560), - [sym_false] = ACTIONS(1560), - [sym_nil] = ACTIONS(1560), - [anon_sym_if] = ACTIONS(1563), - [anon_sym_DOLLARif] = ACTIONS(1566), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_select] = ACTIONS(1572), - [anon_sym_lock] = ACTIONS(1575), - [anon_sym_rlock] = ACTIONS(1575), - [anon_sym_unsafe] = ACTIONS(1578), - [anon_sym_sql] = ACTIONS(1581), - [sym_int_literal] = ACTIONS(1560), - [sym_float_literal] = ACTIONS(1584), - [sym_rune_literal] = ACTIONS(1584), - [sym_pseudo_compile_time_identifier] = ACTIONS(1587), - [anon_sym_shared] = ACTIONS(1590), - [anon_sym_map_LBRACK] = ACTIONS(1593), - [anon_sym_chan] = ACTIONS(1596), - [anon_sym_thread] = ACTIONS(1599), - [anon_sym_atomic] = ACTIONS(1602), - [sym___double_quote] = ACTIONS(1605), - [sym___single_quote] = ACTIONS(1608), - [sym___c_double_quote] = ACTIONS(1611), - [sym___c_single_quote] = ACTIONS(1614), - [sym___r_double_quote] = ACTIONS(1617), - [sym___r_single_quote] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_RPAREN] = ACTIONS(1621), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [201] = { [sym_line_comment] = STATE(201), [sym_block_comment] = STATE(201), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -46023,7 +46003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46051,89 +46031,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [202] = { [sym_line_comment] = STATE(202), [sym_block_comment] = STATE(202), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -46144,7 +46124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46172,89 +46152,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [203] = { [sym_line_comment] = STATE(203), [sym_block_comment] = STATE(203), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -46265,7 +46245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46293,89 +46273,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [204] = { [sym_line_comment] = STATE(204), [sym_block_comment] = STATE(204), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -46386,7 +46366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46414,89 +46394,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [205] = { [sym_line_comment] = STATE(205), [sym_block_comment] = STATE(205), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -46507,7 +46487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46535,89 +46515,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [206] = { [sym_line_comment] = STATE(206), [sym_block_comment] = STATE(206), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -46628,7 +46608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46656,89 +46636,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [207] = { [sym_line_comment] = STATE(207), [sym_block_comment] = STATE(207), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -46749,7 +46729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46777,89 +46757,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [208] = { [sym_line_comment] = STATE(208), [sym_block_comment] = STATE(208), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -46870,7 +46850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -46898,89 +46878,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [209] = { [sym_line_comment] = STATE(209), [sym_block_comment] = STATE(209), - [sym__expression] = STATE(1126), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_argument] = STATE(1907), - [sym_type_initializer] = STATE(1212), - [sym_keyed_element] = STATE(1904), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1252), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_spread_expression] = STATE(1904), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(769), - [sym_mutable_expression] = STATE(1904), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_argument_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1121), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_argument] = STATE(1911), + [sym_type_initializer] = STATE(1179), + [sym_keyed_element] = STATE(1901), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1188), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_spread_expression] = STATE(1901), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(743), + [sym_mutable_expression] = STATE(1901), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_argument_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -46991,7 +46971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), @@ -47019,865 +46999,865 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [210] = { [sym_line_comment] = STATE(210), [sym_block_comment] = STATE(210), - [sym_type_parameters] = STATE(4275), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(356), - [aux_sym_strictly_expression_list_repeat1] = STATE(1416), - [ts_builtin_sym_end] = ACTIONS(1641), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LF] = ACTIONS(1643), - [anon_sym_CR] = ACTIONS(1643), - [anon_sym_CR_LF] = ACTIONS(1643), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1647), + [sym__expression] = STATE(1771), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_strictly_expression_list] = STATE(4289), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(879), + [sym_mutable_expression] = STATE(3272), + [sym_expression_list] = STATE(3305), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_simple_statement] = STATE(4350), + [sym_var_declaration] = STATE(4289), + [sym_assignment_statement] = STATE(4289), + [sym_identifier] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(773), [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_COMMA] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_EQ] = ACTIONS(1649), - [anon_sym___global] = ACTIONS(1643), - [anon_sym_type] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_PERCENT] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_GT] = ACTIONS(1657), - [anon_sym_EQ_EQ] = ACTIONS(1657), - [anon_sym_BANG_EQ] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1657), - [anon_sym_GT_EQ] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1643), - [anon_sym_union] = ACTIONS(1643), - [anon_sym_pub] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_enum] = ACTIONS(1643), - [anon_sym_interface] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_QMARK] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_go] = ACTIONS(1643), - [anon_sym_spawn] = ACTIONS(1643), - [anon_sym_json_DOTdecode] = ACTIONS(1643), - [anon_sym_LBRACK2] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_LT_DASH] = ACTIONS(1643), - [anon_sym_LT_LT] = ACTIONS(1655), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_GT_GT_GT] = ACTIONS(1655), - [anon_sym_AMP_CARET] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1673), - [anon_sym_or] = ACTIONS(1675), - [sym_none] = ACTIONS(1643), - [sym_true] = ACTIONS(1643), - [sym_false] = ACTIONS(1643), - [sym_nil] = ACTIONS(1643), - [anon_sym_QMARK_DOT] = ACTIONS(1645), - [anon_sym_POUND_LBRACK] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_DOLLARif] = ACTIONS(1643), - [anon_sym_is] = ACTIONS(1677), - [anon_sym_BANGis] = ACTIONS(1677), - [anon_sym_in] = ACTIONS(1679), - [anon_sym_BANGin] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_select] = ACTIONS(1643), - [anon_sym_STAR_EQ] = ACTIONS(1649), - [anon_sym_SLASH_EQ] = ACTIONS(1649), - [anon_sym_PERCENT_EQ] = ACTIONS(1649), - [anon_sym_LT_LT_EQ] = ACTIONS(1649), - [anon_sym_GT_GT_EQ] = ACTIONS(1649), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1649), - [anon_sym_AMP_EQ] = ACTIONS(1649), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1649), - [anon_sym_PLUS_EQ] = ACTIONS(1649), - [anon_sym_DASH_EQ] = ACTIONS(1649), - [anon_sym_PIPE_EQ] = ACTIONS(1649), - [anon_sym_CARET_EQ] = ACTIONS(1649), - [anon_sym_COLON_EQ] = ACTIONS(1649), - [anon_sym_lock] = ACTIONS(1643), - [anon_sym_rlock] = ACTIONS(1643), - [anon_sym_unsafe] = ACTIONS(1643), - [anon_sym_sql] = ACTIONS(1643), - [sym_int_literal] = ACTIONS(1643), - [sym_float_literal] = ACTIONS(1643), - [sym_rune_literal] = ACTIONS(1643), - [sym_pseudo_compile_time_identifier] = ACTIONS(1643), - [anon_sym_shared] = ACTIONS(1643), - [anon_sym_map_LBRACK] = ACTIONS(1643), - [anon_sym_chan] = ACTIONS(1643), - [anon_sym_thread] = ACTIONS(1643), - [anon_sym_atomic] = ACTIONS(1643), - [anon_sym_assert] = ACTIONS(1643), - [anon_sym_defer] = ACTIONS(1643), - [anon_sym_goto] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_DOLLARfor] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(1643), - [anon_sym_asm] = ACTIONS(1643), - [anon_sym_AT_LBRACK] = ACTIONS(1643), - [sym___double_quote] = ACTIONS(1643), - [sym___single_quote] = ACTIONS(1643), - [sym___c_double_quote] = ACTIONS(1643), - [sym___c_single_quote] = ACTIONS(1643), - [sym___r_double_quote] = ACTIONS(1643), - [sym___r_single_quote] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [211] = { [sym_line_comment] = STATE(211), [sym_block_comment] = STATE(211), - [sym__expression] = STATE(1762), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_strictly_expression_list] = STATE(4047), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(652), - [sym_mutable_expression] = STATE(3276), - [sym_expression_list] = STATE(3306), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_simple_statement] = STATE(4516), - [sym_var_declaration] = STATE(4047), - [sym_assignment_statement] = STATE(4047), - [sym_identifier] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [sym__expression] = STATE(2287), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(624), + [sym_mutable_expression] = STATE(3538), + [sym_expression_list] = STATE(3718), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), + [anon_sym_LF] = ACTIONS(495), + [anon_sym_CR] = ACTIONS(495), + [anon_sym_CR_LF] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1649), + [anon_sym_RBRACE] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_STAR] = ACTIONS(1657), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(1661), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(1667), + [anon_sym_LBRACK2] = ACTIONS(1669), + [anon_sym_TILDE] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_LT_DASH] = ACTIONS(1673), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(1675), + [sym_rune_literal] = ACTIONS(1675), + [anon_sym_SQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1693), + [anon_sym_c_SQUOTE] = ACTIONS(1695), + [anon_sym_c_DQUOTE] = ACTIONS(1697), + [anon_sym_r_SQUOTE] = ACTIONS(1699), + [anon_sym_r_DQUOTE] = ACTIONS(1701), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [212] = { [sym_line_comment] = STATE(212), [sym_block_comment] = STATE(212), - [sym__expression] = STATE(1762), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_strictly_expression_list] = STATE(4047), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(652), - [sym_mutable_expression] = STATE(3276), - [sym_expression_list] = STATE(3306), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_simple_statement] = STATE(4567), - [sym_var_declaration] = STATE(4047), - [sym_assignment_statement] = STATE(4047), - [sym_identifier] = ACTIONS(1681), + [sym__expression] = STATE(1771), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_strictly_expression_list] = STATE(4289), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(879), + [sym_mutable_expression] = STATE(3272), + [sym_expression_list] = STATE(3305), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_simple_statement] = STATE(4384), + [sym_var_declaration] = STATE(4289), + [sym_assignment_statement] = STATE(4289), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [213] = { [sym_line_comment] = STATE(213), [sym_block_comment] = STATE(213), - [sym__expression] = STATE(1762), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_strictly_expression_list] = STATE(4047), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(652), - [sym_mutable_expression] = STATE(3276), - [sym_expression_list] = STATE(3306), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_simple_statement] = STATE(4449), - [sym_var_declaration] = STATE(4047), - [sym_assignment_statement] = STATE(4047), - [sym_identifier] = ACTIONS(1681), + [sym__expression] = STATE(1771), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_strictly_expression_list] = STATE(4289), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(879), + [sym_mutable_expression] = STATE(3272), + [sym_expression_list] = STATE(3305), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_simple_statement] = STATE(4387), + [sym_var_declaration] = STATE(4289), + [sym_assignment_statement] = STATE(4289), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [214] = { [sym_line_comment] = STATE(214), [sym_block_comment] = STATE(214), - [sym__expression] = STATE(1762), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_strictly_expression_list] = STATE(4047), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(652), - [sym_mutable_expression] = STATE(3276), - [sym_expression_list] = STATE(3306), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_simple_statement] = STATE(4382), - [sym_var_declaration] = STATE(4047), - [sym_assignment_statement] = STATE(4047), - [sym_identifier] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym_type_parameters] = STATE(4287), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(399), + [aux_sym_strictly_expression_list_repeat1] = STATE(3275), + [ts_builtin_sym_end] = ACTIONS(1709), + [sym_identifier] = ACTIONS(1711), + [anon_sym_LF] = ACTIONS(1711), + [anon_sym_CR] = ACTIONS(1711), + [anon_sym_CR_LF] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_COMMA] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_EQ] = ACTIONS(1721), + [anon_sym___global] = ACTIONS(1711), + [anon_sym_type] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_STAR] = ACTIONS(1725), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_PERCENT] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_EQ_EQ] = ACTIONS(1727), + [anon_sym_BANG_EQ] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_struct] = ACTIONS(1711), + [anon_sym_union] = ACTIONS(1711), + [anon_sym_pub] = ACTIONS(1711), + [anon_sym_mut] = ACTIONS(1711), + [anon_sym_enum] = ACTIONS(1711), + [anon_sym_interface] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_QMARK] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_go] = ACTIONS(1711), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(1711), + [anon_sym_LBRACK2] = ACTIONS(1739), + [anon_sym_TILDE] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT_DASH] = ACTIONS(1741), + [anon_sym_LT_LT] = ACTIONS(1743), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_GT_GT_GT] = ACTIONS(1725), + [anon_sym_AMP_CARET] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1745), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_or] = ACTIONS(1749), + [sym_none] = ACTIONS(1711), + [sym_true] = ACTIONS(1711), + [sym_false] = ACTIONS(1711), + [sym_nil] = ACTIONS(1711), + [anon_sym_QMARK_DOT] = ACTIONS(1713), + [anon_sym_POUND_LBRACK] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1711), + [anon_sym_DOLLARif] = ACTIONS(1711), + [anon_sym_is] = ACTIONS(1751), + [anon_sym_BANGis] = ACTIONS(1751), + [anon_sym_in] = ACTIONS(1753), + [anon_sym_BANGin] = ACTIONS(1753), + [anon_sym_match] = ACTIONS(1711), + [anon_sym_select] = ACTIONS(1711), + [anon_sym_STAR_EQ] = ACTIONS(1721), + [anon_sym_SLASH_EQ] = ACTIONS(1721), + [anon_sym_PERCENT_EQ] = ACTIONS(1721), + [anon_sym_LT_LT_EQ] = ACTIONS(1721), + [anon_sym_GT_GT_EQ] = ACTIONS(1721), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1721), + [anon_sym_AMP_EQ] = ACTIONS(1721), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1721), + [anon_sym_PLUS_EQ] = ACTIONS(1721), + [anon_sym_DASH_EQ] = ACTIONS(1721), + [anon_sym_PIPE_EQ] = ACTIONS(1721), + [anon_sym_CARET_EQ] = ACTIONS(1721), + [anon_sym_COLON_EQ] = ACTIONS(1721), + [anon_sym_lock] = ACTIONS(1711), + [anon_sym_rlock] = ACTIONS(1711), + [anon_sym_unsafe] = ACTIONS(1711), + [anon_sym_sql] = ACTIONS(1711), + [sym_int_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), + [sym_rune_literal] = ACTIONS(1711), + [anon_sym_SQUOTE] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(1711), + [anon_sym_c_SQUOTE] = ACTIONS(1711), + [anon_sym_c_DQUOTE] = ACTIONS(1711), + [anon_sym_r_SQUOTE] = ACTIONS(1711), + [anon_sym_r_DQUOTE] = ACTIONS(1711), + [sym_pseudo_compile_time_identifier] = ACTIONS(1711), + [anon_sym_shared] = ACTIONS(1711), + [anon_sym_map_LBRACK] = ACTIONS(1711), + [anon_sym_chan] = ACTIONS(1711), + [anon_sym_thread] = ACTIONS(1711), + [anon_sym_atomic] = ACTIONS(1711), + [anon_sym_assert] = ACTIONS(1711), + [anon_sym_defer] = ACTIONS(1711), + [anon_sym_goto] = ACTIONS(1711), + [anon_sym_break] = ACTIONS(1711), + [anon_sym_continue] = ACTIONS(1711), + [anon_sym_return] = ACTIONS(1711), + [anon_sym_DOLLARfor] = ACTIONS(1711), + [anon_sym_for] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(1711), + [anon_sym_asm] = ACTIONS(1711), + [anon_sym_AT_LBRACK] = ACTIONS(1711), }, [215] = { [sym_line_comment] = STATE(215), [sym_block_comment] = STATE(215), - [sym__expression] = STATE(2282), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(805), - [sym_mutable_expression] = STATE(3438), - [sym_expression_list] = STATE(3694), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), - [anon_sym_LF] = ACTIONS(495), - [anon_sym_CR] = ACTIONS(495), - [anon_sym_CR_LF] = ACTIONS(495), + [sym_type_parameters] = STATE(4287), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(399), + [aux_sym_strictly_expression_list_repeat1] = STATE(1416), + [ts_builtin_sym_end] = ACTIONS(1755), + [sym_identifier] = ACTIONS(1757), + [anon_sym_LF] = ACTIONS(1757), + [anon_sym_CR] = ACTIONS(1757), + [anon_sym_CR_LF] = ACTIONS(1757), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(1697), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_struct] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(1713), - [anon_sym_LBRACK2] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_LT_DASH] = ACTIONS(1719), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(1721), - [sym_rune_literal] = ACTIONS(1721), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1739), - [sym___single_quote] = ACTIONS(1741), - [sym___c_double_quote] = ACTIONS(1743), - [sym___c_single_quote] = ACTIONS(1745), - [sym___r_double_quote] = ACTIONS(1747), - [sym___r_single_quote] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_COMMA] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym___global] = ACTIONS(1757), + [anon_sym_type] = ACTIONS(1757), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_fn] = ACTIONS(1757), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_STAR] = ACTIONS(1725), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_PERCENT] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_EQ_EQ] = ACTIONS(1727), + [anon_sym_BANG_EQ] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_struct] = ACTIONS(1757), + [anon_sym_union] = ACTIONS(1757), + [anon_sym_pub] = ACTIONS(1757), + [anon_sym_mut] = ACTIONS(1757), + [anon_sym_enum] = ACTIONS(1757), + [anon_sym_interface] = ACTIONS(1757), + [anon_sym_PLUS_PLUS] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_QMARK] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_go] = ACTIONS(1757), + [anon_sym_spawn] = ACTIONS(1757), + [anon_sym_json_DOTdecode] = ACTIONS(1757), + [anon_sym_LBRACK2] = ACTIONS(1739), + [anon_sym_TILDE] = ACTIONS(1757), + [anon_sym_CARET] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT_DASH] = ACTIONS(1757), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_GT_GT_GT] = ACTIONS(1725), + [anon_sym_AMP_CARET] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1745), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_or] = ACTIONS(1749), + [sym_none] = ACTIONS(1757), + [sym_true] = ACTIONS(1757), + [sym_false] = ACTIONS(1757), + [sym_nil] = ACTIONS(1757), + [anon_sym_QMARK_DOT] = ACTIONS(1713), + [anon_sym_POUND_LBRACK] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1757), + [anon_sym_DOLLARif] = ACTIONS(1757), + [anon_sym_is] = ACTIONS(1751), + [anon_sym_BANGis] = ACTIONS(1751), + [anon_sym_in] = ACTIONS(1753), + [anon_sym_BANGin] = ACTIONS(1753), + [anon_sym_match] = ACTIONS(1757), + [anon_sym_select] = ACTIONS(1757), + [anon_sym_STAR_EQ] = ACTIONS(1759), + [anon_sym_SLASH_EQ] = ACTIONS(1759), + [anon_sym_PERCENT_EQ] = ACTIONS(1759), + [anon_sym_LT_LT_EQ] = ACTIONS(1759), + [anon_sym_GT_GT_EQ] = ACTIONS(1759), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1759), + [anon_sym_AMP_EQ] = ACTIONS(1759), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1759), + [anon_sym_PLUS_EQ] = ACTIONS(1759), + [anon_sym_DASH_EQ] = ACTIONS(1759), + [anon_sym_PIPE_EQ] = ACTIONS(1759), + [anon_sym_CARET_EQ] = ACTIONS(1759), + [anon_sym_COLON_EQ] = ACTIONS(1759), + [anon_sym_lock] = ACTIONS(1757), + [anon_sym_rlock] = ACTIONS(1757), + [anon_sym_unsafe] = ACTIONS(1757), + [anon_sym_sql] = ACTIONS(1757), + [sym_int_literal] = ACTIONS(1757), + [sym_float_literal] = ACTIONS(1757), + [sym_rune_literal] = ACTIONS(1757), + [anon_sym_SQUOTE] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [anon_sym_c_SQUOTE] = ACTIONS(1757), + [anon_sym_c_DQUOTE] = ACTIONS(1757), + [anon_sym_r_SQUOTE] = ACTIONS(1757), + [anon_sym_r_DQUOTE] = ACTIONS(1757), + [sym_pseudo_compile_time_identifier] = ACTIONS(1757), + [anon_sym_shared] = ACTIONS(1757), + [anon_sym_map_LBRACK] = ACTIONS(1757), + [anon_sym_chan] = ACTIONS(1757), + [anon_sym_thread] = ACTIONS(1757), + [anon_sym_atomic] = ACTIONS(1757), + [anon_sym_assert] = ACTIONS(1757), + [anon_sym_defer] = ACTIONS(1757), + [anon_sym_goto] = ACTIONS(1757), + [anon_sym_break] = ACTIONS(1757), + [anon_sym_continue] = ACTIONS(1757), + [anon_sym_return] = ACTIONS(1757), + [anon_sym_DOLLARfor] = ACTIONS(1757), + [anon_sym_for] = ACTIONS(1757), + [anon_sym_POUND] = ACTIONS(1757), + [anon_sym_asm] = ACTIONS(1757), + [anon_sym_AT_LBRACK] = ACTIONS(1757), }, [216] = { [sym_line_comment] = STATE(216), [sym_block_comment] = STATE(216), - [sym_type_parameters] = STATE(4275), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(356), - [aux_sym_strictly_expression_list_repeat1] = STATE(3270), - [ts_builtin_sym_end] = ACTIONS(1751), - [sym_identifier] = ACTIONS(1753), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_CR] = ACTIONS(1753), - [anon_sym_CR_LF] = ACTIONS(1753), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1753), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_EQ] = ACTIONS(1757), - [anon_sym___global] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_fn] = ACTIONS(1753), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_PERCENT] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_GT] = ACTIONS(1657), - [anon_sym_EQ_EQ] = ACTIONS(1657), - [anon_sym_BANG_EQ] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1657), - [anon_sym_GT_EQ] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1753), - [anon_sym_union] = ACTIONS(1753), - [anon_sym_pub] = ACTIONS(1753), - [anon_sym_mut] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_interface] = ACTIONS(1753), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_QMARK] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_go] = ACTIONS(1753), - [anon_sym_spawn] = ACTIONS(1753), - [anon_sym_json_DOTdecode] = ACTIONS(1753), - [anon_sym_LBRACK2] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1753), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_LT_DASH] = ACTIONS(1759), - [anon_sym_LT_LT] = ACTIONS(1761), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_GT_GT_GT] = ACTIONS(1655), - [anon_sym_AMP_CARET] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1673), - [anon_sym_or] = ACTIONS(1675), - [sym_none] = ACTIONS(1753), - [sym_true] = ACTIONS(1753), - [sym_false] = ACTIONS(1753), - [sym_nil] = ACTIONS(1753), - [anon_sym_QMARK_DOT] = ACTIONS(1645), - [anon_sym_POUND_LBRACK] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_DOLLARif] = ACTIONS(1753), - [anon_sym_is] = ACTIONS(1677), - [anon_sym_BANGis] = ACTIONS(1677), - [anon_sym_in] = ACTIONS(1679), - [anon_sym_BANGin] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1753), - [anon_sym_select] = ACTIONS(1753), - [anon_sym_STAR_EQ] = ACTIONS(1757), - [anon_sym_SLASH_EQ] = ACTIONS(1757), - [anon_sym_PERCENT_EQ] = ACTIONS(1757), - [anon_sym_LT_LT_EQ] = ACTIONS(1757), - [anon_sym_GT_GT_EQ] = ACTIONS(1757), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1757), - [anon_sym_AMP_EQ] = ACTIONS(1757), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1757), - [anon_sym_PLUS_EQ] = ACTIONS(1757), - [anon_sym_DASH_EQ] = ACTIONS(1757), - [anon_sym_PIPE_EQ] = ACTIONS(1757), - [anon_sym_CARET_EQ] = ACTIONS(1757), - [anon_sym_COLON_EQ] = ACTIONS(1757), - [anon_sym_lock] = ACTIONS(1753), - [anon_sym_rlock] = ACTIONS(1753), - [anon_sym_unsafe] = ACTIONS(1753), - [anon_sym_sql] = ACTIONS(1753), - [sym_int_literal] = ACTIONS(1753), - [sym_float_literal] = ACTIONS(1753), - [sym_rune_literal] = ACTIONS(1753), - [sym_pseudo_compile_time_identifier] = ACTIONS(1753), - [anon_sym_shared] = ACTIONS(1753), - [anon_sym_map_LBRACK] = ACTIONS(1753), - [anon_sym_chan] = ACTIONS(1753), - [anon_sym_thread] = ACTIONS(1753), - [anon_sym_atomic] = ACTIONS(1753), - [anon_sym_assert] = ACTIONS(1753), - [anon_sym_defer] = ACTIONS(1753), - [anon_sym_goto] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_DOLLARfor] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_POUND] = ACTIONS(1753), - [anon_sym_asm] = ACTIONS(1753), - [anon_sym_AT_LBRACK] = ACTIONS(1753), - [sym___double_quote] = ACTIONS(1753), - [sym___single_quote] = ACTIONS(1753), - [sym___c_double_quote] = ACTIONS(1753), - [sym___c_single_quote] = ACTIONS(1753), - [sym___r_double_quote] = ACTIONS(1753), - [sym___r_single_quote] = ACTIONS(1753), + [sym__expression] = STATE(1771), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_strictly_expression_list] = STATE(4289), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(879), + [sym_mutable_expression] = STATE(3272), + [sym_expression_list] = STATE(3305), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_simple_statement] = STATE(4485), + [sym_var_declaration] = STATE(4289), + [sym_assignment_statement] = STATE(4289), + [sym_identifier] = ACTIONS(1641), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [217] = { [sym_line_comment] = STATE(217), [sym_block_comment] = STATE(217), - [sym_type_parameters] = STATE(4275), + [sym_type_parameters] = STATE(4287), [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(356), + [sym_or_block] = STATE(399), [ts_builtin_sym_end] = ACTIONS(1763), [sym_identifier] = ACTIONS(1765), [anon_sym_LF] = ACTIONS(1765), @@ -47885,66 +47865,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_as] = ACTIONS(1715), [anon_sym_LBRACE] = ACTIONS(1765), [anon_sym_COMMA] = ACTIONS(1765), [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1719), [anon_sym_EQ] = ACTIONS(1765), [anon_sym___global] = ACTIONS(1765), [anon_sym_type] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1723), [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_PERCENT] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_STAR] = ACTIONS(1725), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_PERCENT] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_EQ_EQ] = ACTIONS(1727), + [anon_sym_BANG_EQ] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1729), [anon_sym_struct] = ACTIONS(1765), [anon_sym_union] = ACTIONS(1765), [anon_sym_pub] = ACTIONS(1765), [anon_sym_mut] = ACTIONS(1765), [anon_sym_enum] = ACTIONS(1765), [anon_sym_interface] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_QMARK] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1737), [anon_sym_go] = ACTIONS(1765), [anon_sym_spawn] = ACTIONS(1765), [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(1739), [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(1655), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_GT_GT_GT] = ACTIONS(1655), - [anon_sym_AMP_CARET] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_GT_GT_GT] = ACTIONS(1725), + [anon_sym_AMP_CARET] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1745), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_or] = ACTIONS(1749), [sym_none] = ACTIONS(1765), [sym_true] = ACTIONS(1765), [sym_false] = ACTIONS(1765), [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(1645), - [anon_sym_POUND_LBRACK] = ACTIONS(1669), + [anon_sym_QMARK_DOT] = ACTIONS(1713), + [anon_sym_POUND_LBRACK] = ACTIONS(1739), [anon_sym_if] = ACTIONS(1765), [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_BANGin] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(1751), + [anon_sym_BANGis] = ACTIONS(1751), + [anon_sym_in] = ACTIONS(1753), + [anon_sym_BANGin] = ACTIONS(1753), [anon_sym_match] = ACTIONS(1765), [anon_sym_select] = ACTIONS(1765), [anon_sym_STAR_EQ] = ACTIONS(1765), @@ -47967,6 +47947,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1765), [sym_float_literal] = ACTIONS(1765), [sym_rune_literal] = ACTIONS(1765), + [anon_sym_SQUOTE] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [anon_sym_c_SQUOTE] = ACTIONS(1765), + [anon_sym_c_DQUOTE] = ACTIONS(1765), + [anon_sym_r_SQUOTE] = ACTIONS(1765), + [anon_sym_r_DQUOTE] = ACTIONS(1765), [sym_pseudo_compile_time_identifier] = ACTIONS(1765), [anon_sym_shared] = ACTIONS(1765), [anon_sym_map_LBRACK] = ACTIONS(1765), @@ -47984,19 +47970,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(1765), [anon_sym_asm] = ACTIONS(1765), [anon_sym_AT_LBRACK] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), }, [218] = { [sym_line_comment] = STATE(218), [sym_block_comment] = STATE(218), - [sym_type_parameters] = STATE(4275), + [sym_type_parameters] = STATE(4287), [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(356), + [sym_or_block] = STATE(399), [ts_builtin_sym_end] = ACTIONS(1767), [sym_identifier] = ACTIONS(1769), [anon_sym_LF] = ACTIONS(1769), @@ -48004,12 +47984,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1769), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1645), + [anon_sym_DOT] = ACTIONS(1713), [anon_sym_as] = ACTIONS(1769), [anon_sym_LBRACE] = ACTIONS(1769), [anon_sym_COMMA] = ACTIONS(1769), [anon_sym_const] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1719), [anon_sym_EQ] = ACTIONS(1769), [anon_sym___global] = ACTIONS(1769), [anon_sym_type] = ACTIONS(1769), @@ -48026,7 +48006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1769), [anon_sym_LT_EQ] = ACTIONS(1769), [anon_sym_GT_EQ] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1729), [anon_sym_struct] = ACTIONS(1769), [anon_sym_union] = ACTIONS(1769), [anon_sym_pub] = ACTIONS(1769), @@ -48035,12 +48015,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1769), [anon_sym_PLUS_PLUS] = ACTIONS(1769), [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_QMARK] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_QMARK] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1737), [anon_sym_go] = ACTIONS(1769), [anon_sym_spawn] = ACTIONS(1769), [anon_sym_json_DOTdecode] = ACTIONS(1769), - [anon_sym_LBRACK2] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(1739), [anon_sym_TILDE] = ACTIONS(1769), [anon_sym_CARET] = ACTIONS(1769), [anon_sym_AMP] = ACTIONS(1769), @@ -48056,8 +48036,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1769), [sym_false] = ACTIONS(1769), [sym_nil] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(1645), - [anon_sym_POUND_LBRACK] = ACTIONS(1669), + [anon_sym_QMARK_DOT] = ACTIONS(1713), + [anon_sym_POUND_LBRACK] = ACTIONS(1739), [anon_sym_if] = ACTIONS(1769), [anon_sym_DOLLARif] = ACTIONS(1769), [anon_sym_is] = ACTIONS(1769), @@ -48086,6 +48066,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1769), [sym_float_literal] = ACTIONS(1769), [sym_rune_literal] = ACTIONS(1769), + [anon_sym_SQUOTE] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [anon_sym_c_SQUOTE] = ACTIONS(1769), + [anon_sym_c_DQUOTE] = ACTIONS(1769), + [anon_sym_r_SQUOTE] = ACTIONS(1769), + [anon_sym_r_DQUOTE] = ACTIONS(1769), [sym_pseudo_compile_time_identifier] = ACTIONS(1769), [anon_sym_shared] = ACTIONS(1769), [anon_sym_map_LBRACK] = ACTIONS(1769), @@ -48103,257 +48089,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(1769), [anon_sym_asm] = ACTIONS(1769), [anon_sym_AT_LBRACK] = ACTIONS(1769), - [sym___double_quote] = ACTIONS(1769), - [sym___single_quote] = ACTIONS(1769), - [sym___c_double_quote] = ACTIONS(1769), - [sym___c_single_quote] = ACTIONS(1769), - [sym___r_double_quote] = ACTIONS(1769), - [sym___r_single_quote] = ACTIONS(1769), }, [219] = { [sym_line_comment] = STATE(219), [sym_block_comment] = STATE(219), - [sym_type_parameters] = STATE(4275), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(356), - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1765), - [anon_sym_CR] = ACTIONS(1765), - [anon_sym_CR_LF] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym___global] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_PERCENT] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1765), - [anon_sym_pub] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [anon_sym_interface] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(1655), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_GT_GT_GT] = ACTIONS(1655), - [anon_sym_AMP_CARET] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(1645), - [anon_sym_POUND_LBRACK] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_BANGin] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_STAR_EQ] = ACTIONS(1765), - [anon_sym_SLASH_EQ] = ACTIONS(1765), - [anon_sym_PERCENT_EQ] = ACTIONS(1765), - [anon_sym_LT_LT_EQ] = ACTIONS(1765), - [anon_sym_GT_GT_EQ] = ACTIONS(1765), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1765), - [anon_sym_AMP_EQ] = ACTIONS(1765), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1765), - [anon_sym_PLUS_EQ] = ACTIONS(1765), - [anon_sym_DASH_EQ] = ACTIONS(1765), - [anon_sym_PIPE_EQ] = ACTIONS(1765), - [anon_sym_CARET_EQ] = ACTIONS(1765), - [anon_sym_COLON_EQ] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1765), - [sym_rune_literal] = ACTIONS(1765), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1765), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [anon_sym_assert] = ACTIONS(1765), - [anon_sym_defer] = ACTIONS(1765), - [anon_sym_goto] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_DOLLARfor] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(1765), - [anon_sym_asm] = ACTIONS(1765), - [anon_sym_AT_LBRACK] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), - }, - [220] = { - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), - [sym_type_parameters] = STATE(4275), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(356), - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1765), - [anon_sym_CR] = ACTIONS(1765), - [anon_sym_CR_LF] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym___global] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_SLASH] = ACTIONS(1765), - [anon_sym_PERCENT] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1765), - [anon_sym_pub] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [anon_sym_interface] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1765), - [anon_sym_GT_GT_GT] = ACTIONS(1765), - [anon_sym_AMP_CARET] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(1645), - [anon_sym_POUND_LBRACK] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_BANGin] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_STAR_EQ] = ACTIONS(1765), - [anon_sym_SLASH_EQ] = ACTIONS(1765), - [anon_sym_PERCENT_EQ] = ACTIONS(1765), - [anon_sym_LT_LT_EQ] = ACTIONS(1765), - [anon_sym_GT_GT_EQ] = ACTIONS(1765), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1765), - [anon_sym_AMP_EQ] = ACTIONS(1765), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1765), - [anon_sym_PLUS_EQ] = ACTIONS(1765), - [anon_sym_DASH_EQ] = ACTIONS(1765), - [anon_sym_PIPE_EQ] = ACTIONS(1765), - [anon_sym_CARET_EQ] = ACTIONS(1765), - [anon_sym_COLON_EQ] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1765), - [sym_rune_literal] = ACTIONS(1765), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1765), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [anon_sym_assert] = ACTIONS(1765), - [anon_sym_defer] = ACTIONS(1765), - [anon_sym_goto] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_DOLLARfor] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(1765), - [anon_sym_asm] = ACTIONS(1765), - [anon_sym_AT_LBRACK] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), - }, - [221] = { - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), - [sym_type_parameters] = STATE(4275), + [sym_type_parameters] = STATE(4287), [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(356), + [sym_or_block] = STATE(399), [ts_builtin_sym_end] = ACTIONS(1771), [sym_identifier] = ACTIONS(1773), [anon_sym_LF] = ACTIONS(1773), @@ -48361,66 +48103,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1773), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1647), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_as] = ACTIONS(1715), [anon_sym_LBRACE] = ACTIONS(1773), [anon_sym_COMMA] = ACTIONS(1773), [anon_sym_const] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1719), [anon_sym_EQ] = ACTIONS(1773), [anon_sym___global] = ACTIONS(1773), [anon_sym_type] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1723), [anon_sym_fn] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_PERCENT] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_GT] = ACTIONS(1657), - [anon_sym_EQ_EQ] = ACTIONS(1657), - [anon_sym_BANG_EQ] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1657), - [anon_sym_GT_EQ] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_STAR] = ACTIONS(1725), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_PERCENT] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_EQ_EQ] = ACTIONS(1727), + [anon_sym_BANG_EQ] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1729), [anon_sym_struct] = ACTIONS(1773), [anon_sym_union] = ACTIONS(1773), [anon_sym_pub] = ACTIONS(1773), [anon_sym_mut] = ACTIONS(1773), [anon_sym_enum] = ACTIONS(1773), [anon_sym_interface] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_QMARK] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_QMARK] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1737), [anon_sym_go] = ACTIONS(1773), [anon_sym_spawn] = ACTIONS(1773), [anon_sym_json_DOTdecode] = ACTIONS(1773), - [anon_sym_LBRACK2] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(1739), [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), [anon_sym_LT_DASH] = ACTIONS(1773), - [anon_sym_LT_LT] = ACTIONS(1655), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_GT_GT_GT] = ACTIONS(1655), - [anon_sym_AMP_CARET] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1673), - [anon_sym_or] = ACTIONS(1675), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_GT_GT_GT] = ACTIONS(1725), + [anon_sym_AMP_CARET] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1745), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_or] = ACTIONS(1749), [sym_none] = ACTIONS(1773), [sym_true] = ACTIONS(1773), [sym_false] = ACTIONS(1773), [sym_nil] = ACTIONS(1773), - [anon_sym_QMARK_DOT] = ACTIONS(1645), - [anon_sym_POUND_LBRACK] = ACTIONS(1669), + [anon_sym_QMARK_DOT] = ACTIONS(1713), + [anon_sym_POUND_LBRACK] = ACTIONS(1739), [anon_sym_if] = ACTIONS(1773), [anon_sym_DOLLARif] = ACTIONS(1773), - [anon_sym_is] = ACTIONS(1677), - [anon_sym_BANGis] = ACTIONS(1677), - [anon_sym_in] = ACTIONS(1679), - [anon_sym_BANGin] = ACTIONS(1679), + [anon_sym_is] = ACTIONS(1775), + [anon_sym_BANGis] = ACTIONS(1775), + [anon_sym_in] = ACTIONS(1753), + [anon_sym_BANGin] = ACTIONS(1753), [anon_sym_match] = ACTIONS(1773), [anon_sym_select] = ACTIONS(1773), [anon_sym_STAR_EQ] = ACTIONS(1773), @@ -48443,6 +48185,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1773), [sym_float_literal] = ACTIONS(1773), [sym_rune_literal] = ACTIONS(1773), + [anon_sym_SQUOTE] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [anon_sym_c_SQUOTE] = ACTIONS(1773), + [anon_sym_c_DQUOTE] = ACTIONS(1773), + [anon_sym_r_SQUOTE] = ACTIONS(1773), + [anon_sym_r_DQUOTE] = ACTIONS(1773), [sym_pseudo_compile_time_identifier] = ACTIONS(1773), [anon_sym_shared] = ACTIONS(1773), [anon_sym_map_LBRACK] = ACTIONS(1773), @@ -48460,733 +48208,727 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(1773), [anon_sym_asm] = ACTIONS(1773), [anon_sym_AT_LBRACK] = ACTIONS(1773), - [sym___double_quote] = ACTIONS(1773), - [sym___single_quote] = ACTIONS(1773), - [sym___c_double_quote] = ACTIONS(1773), - [sym___c_single_quote] = ACTIONS(1773), - [sym___r_double_quote] = ACTIONS(1773), - [sym___r_single_quote] = ACTIONS(1773), + }, + [220] = { + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), + [sym_type_parameters] = STATE(4287), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(1777), + [sym_identifier] = ACTIONS(1779), + [anon_sym_LF] = ACTIONS(1779), + [anon_sym_CR] = ACTIONS(1779), + [anon_sym_CR_LF] = ACTIONS(1779), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_EQ] = ACTIONS(1779), + [anon_sym___global] = ACTIONS(1779), + [anon_sym_type] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_fn] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_STAR] = ACTIONS(1725), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_PERCENT] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_EQ_EQ] = ACTIONS(1727), + [anon_sym_BANG_EQ] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_struct] = ACTIONS(1779), + [anon_sym_union] = ACTIONS(1779), + [anon_sym_pub] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_enum] = ACTIONS(1779), + [anon_sym_interface] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_QMARK] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_go] = ACTIONS(1779), + [anon_sym_spawn] = ACTIONS(1779), + [anon_sym_json_DOTdecode] = ACTIONS(1779), + [anon_sym_LBRACK2] = ACTIONS(1739), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_CARET] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT_DASH] = ACTIONS(1779), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_GT_GT_GT] = ACTIONS(1725), + [anon_sym_AMP_CARET] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1745), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_or] = ACTIONS(1749), + [sym_none] = ACTIONS(1779), + [sym_true] = ACTIONS(1779), + [sym_false] = ACTIONS(1779), + [sym_nil] = ACTIONS(1779), + [anon_sym_QMARK_DOT] = ACTIONS(1713), + [anon_sym_POUND_LBRACK] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1779), + [anon_sym_is] = ACTIONS(1751), + [anon_sym_BANGis] = ACTIONS(1751), + [anon_sym_in] = ACTIONS(1753), + [anon_sym_BANGin] = ACTIONS(1753), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_select] = ACTIONS(1779), + [anon_sym_STAR_EQ] = ACTIONS(1779), + [anon_sym_SLASH_EQ] = ACTIONS(1779), + [anon_sym_PERCENT_EQ] = ACTIONS(1779), + [anon_sym_LT_LT_EQ] = ACTIONS(1779), + [anon_sym_GT_GT_EQ] = ACTIONS(1779), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1779), + [anon_sym_AMP_EQ] = ACTIONS(1779), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1779), + [anon_sym_PLUS_EQ] = ACTIONS(1779), + [anon_sym_DASH_EQ] = ACTIONS(1779), + [anon_sym_PIPE_EQ] = ACTIONS(1779), + [anon_sym_CARET_EQ] = ACTIONS(1779), + [anon_sym_COLON_EQ] = ACTIONS(1779), + [anon_sym_lock] = ACTIONS(1779), + [anon_sym_rlock] = ACTIONS(1779), + [anon_sym_unsafe] = ACTIONS(1779), + [anon_sym_sql] = ACTIONS(1779), + [sym_int_literal] = ACTIONS(1779), + [sym_float_literal] = ACTIONS(1779), + [sym_rune_literal] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_c_SQUOTE] = ACTIONS(1779), + [anon_sym_c_DQUOTE] = ACTIONS(1779), + [anon_sym_r_SQUOTE] = ACTIONS(1779), + [anon_sym_r_DQUOTE] = ACTIONS(1779), + [sym_pseudo_compile_time_identifier] = ACTIONS(1779), + [anon_sym_shared] = ACTIONS(1779), + [anon_sym_map_LBRACK] = ACTIONS(1779), + [anon_sym_chan] = ACTIONS(1779), + [anon_sym_thread] = ACTIONS(1779), + [anon_sym_atomic] = ACTIONS(1779), + [anon_sym_assert] = ACTIONS(1779), + [anon_sym_defer] = ACTIONS(1779), + [anon_sym_goto] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_DOLLARfor] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1779), + [anon_sym_AT_LBRACK] = ACTIONS(1779), + }, + [221] = { + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), + [sym_type_parameters] = STATE(4287), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(1781), + [sym_identifier] = ACTIONS(1783), + [anon_sym_LF] = ACTIONS(1783), + [anon_sym_CR] = ACTIONS(1783), + [anon_sym_CR_LF] = ACTIONS(1783), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_EQ] = ACTIONS(1783), + [anon_sym___global] = ACTIONS(1783), + [anon_sym_type] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_fn] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_PERCENT] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_EQ_EQ] = ACTIONS(1783), + [anon_sym_BANG_EQ] = ACTIONS(1783), + [anon_sym_LT_EQ] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_struct] = ACTIONS(1783), + [anon_sym_union] = ACTIONS(1783), + [anon_sym_pub] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_enum] = ACTIONS(1783), + [anon_sym_interface] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_QMARK] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_go] = ACTIONS(1783), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1783), + [anon_sym_LBRACK2] = ACTIONS(1739), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_LT_DASH] = ACTIONS(1783), + [anon_sym_LT_LT] = ACTIONS(1783), + [anon_sym_GT_GT] = ACTIONS(1783), + [anon_sym_GT_GT_GT] = ACTIONS(1783), + [anon_sym_AMP_CARET] = ACTIONS(1783), + [anon_sym_AMP_AMP] = ACTIONS(1783), + [anon_sym_PIPE_PIPE] = ACTIONS(1783), + [anon_sym_or] = ACTIONS(1783), + [sym_none] = ACTIONS(1783), + [sym_true] = ACTIONS(1783), + [sym_false] = ACTIONS(1783), + [sym_nil] = ACTIONS(1783), + [anon_sym_QMARK_DOT] = ACTIONS(1713), + [anon_sym_POUND_LBRACK] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1783), + [anon_sym_is] = ACTIONS(1783), + [anon_sym_BANGis] = ACTIONS(1783), + [anon_sym_in] = ACTIONS(1783), + [anon_sym_BANGin] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_select] = ACTIONS(1783), + [anon_sym_STAR_EQ] = ACTIONS(1783), + [anon_sym_SLASH_EQ] = ACTIONS(1783), + [anon_sym_PERCENT_EQ] = ACTIONS(1783), + [anon_sym_LT_LT_EQ] = ACTIONS(1783), + [anon_sym_GT_GT_EQ] = ACTIONS(1783), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1783), + [anon_sym_AMP_EQ] = ACTIONS(1783), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1783), + [anon_sym_PLUS_EQ] = ACTIONS(1783), + [anon_sym_DASH_EQ] = ACTIONS(1783), + [anon_sym_PIPE_EQ] = ACTIONS(1783), + [anon_sym_CARET_EQ] = ACTIONS(1783), + [anon_sym_COLON_EQ] = ACTIONS(1783), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1783), + [anon_sym_sql] = ACTIONS(1783), + [sym_int_literal] = ACTIONS(1783), + [sym_float_literal] = ACTIONS(1783), + [sym_rune_literal] = ACTIONS(1783), + [anon_sym_SQUOTE] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1783), + [anon_sym_c_SQUOTE] = ACTIONS(1783), + [anon_sym_c_DQUOTE] = ACTIONS(1783), + [anon_sym_r_SQUOTE] = ACTIONS(1783), + [anon_sym_r_DQUOTE] = ACTIONS(1783), + [sym_pseudo_compile_time_identifier] = ACTIONS(1783), + [anon_sym_shared] = ACTIONS(1783), + [anon_sym_map_LBRACK] = ACTIONS(1783), + [anon_sym_chan] = ACTIONS(1783), + [anon_sym_thread] = ACTIONS(1783), + [anon_sym_atomic] = ACTIONS(1783), + [anon_sym_assert] = ACTIONS(1783), + [anon_sym_defer] = ACTIONS(1783), + [anon_sym_goto] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_DOLLARfor] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(1783), + [anon_sym_asm] = ACTIONS(1783), + [anon_sym_AT_LBRACK] = ACTIONS(1783), }, [222] = { [sym_line_comment] = STATE(222), [sym_block_comment] = STATE(222), - [sym_type_parameters] = STATE(4275), + [sym_type_parameters] = STATE(4287), [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(356), - [ts_builtin_sym_end] = ACTIONS(1775), - [sym_identifier] = ACTIONS(1777), - [anon_sym_LF] = ACTIONS(1777), - [anon_sym_CR] = ACTIONS(1777), - [anon_sym_CR_LF] = ACTIONS(1777), + [sym_or_block] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_LF] = ACTIONS(1787), + [anon_sym_CR] = ACTIONS(1787), + [anon_sym_CR_LF] = ACTIONS(1787), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1777), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym___global] = ACTIONS(1777), - [anon_sym_type] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_fn] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(1777), - [anon_sym_DASH] = ACTIONS(1777), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_SLASH] = ACTIONS(1765), - [anon_sym_PERCENT] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1777), - [anon_sym_union] = ACTIONS(1777), - [anon_sym_pub] = ACTIONS(1777), - [anon_sym_mut] = ACTIONS(1777), - [anon_sym_enum] = ACTIONS(1777), - [anon_sym_interface] = ACTIONS(1777), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_go] = ACTIONS(1777), - [anon_sym_spawn] = ACTIONS(1777), - [anon_sym_json_DOTdecode] = ACTIONS(1777), - [anon_sym_LBRACK2] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_CARET] = ACTIONS(1777), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_LT_DASH] = ACTIONS(1777), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1765), - [anon_sym_GT_GT_GT] = ACTIONS(1765), - [anon_sym_AMP_CARET] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1777), - [sym_true] = ACTIONS(1777), - [sym_false] = ACTIONS(1777), - [sym_nil] = ACTIONS(1777), - [anon_sym_QMARK_DOT] = ACTIONS(1645), - [anon_sym_POUND_LBRACK] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_DOLLARif] = ACTIONS(1777), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_BANGin] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1777), - [anon_sym_select] = ACTIONS(1777), - [anon_sym_STAR_EQ] = ACTIONS(1765), - [anon_sym_SLASH_EQ] = ACTIONS(1765), - [anon_sym_PERCENT_EQ] = ACTIONS(1765), - [anon_sym_LT_LT_EQ] = ACTIONS(1765), - [anon_sym_GT_GT_EQ] = ACTIONS(1765), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1765), - [anon_sym_AMP_EQ] = ACTIONS(1765), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1765), - [anon_sym_PLUS_EQ] = ACTIONS(1765), - [anon_sym_DASH_EQ] = ACTIONS(1765), - [anon_sym_PIPE_EQ] = ACTIONS(1765), - [anon_sym_CARET_EQ] = ACTIONS(1765), - [anon_sym_COLON_EQ] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1777), - [anon_sym_rlock] = ACTIONS(1777), - [anon_sym_unsafe] = ACTIONS(1777), - [anon_sym_sql] = ACTIONS(1777), - [sym_int_literal] = ACTIONS(1777), - [sym_float_literal] = ACTIONS(1777), - [sym_rune_literal] = ACTIONS(1777), - [sym_pseudo_compile_time_identifier] = ACTIONS(1777), - [anon_sym_shared] = ACTIONS(1777), - [anon_sym_map_LBRACK] = ACTIONS(1777), - [anon_sym_chan] = ACTIONS(1777), - [anon_sym_thread] = ACTIONS(1777), - [anon_sym_atomic] = ACTIONS(1777), - [anon_sym_assert] = ACTIONS(1777), - [anon_sym_defer] = ACTIONS(1777), - [anon_sym_goto] = ACTIONS(1777), - [anon_sym_break] = ACTIONS(1777), - [anon_sym_continue] = ACTIONS(1777), - [anon_sym_return] = ACTIONS(1777), - [anon_sym_DOLLARfor] = ACTIONS(1777), - [anon_sym_for] = ACTIONS(1777), - [anon_sym_POUND] = ACTIONS(1777), - [anon_sym_asm] = ACTIONS(1777), - [anon_sym_AT_LBRACK] = ACTIONS(1777), - [sym___double_quote] = ACTIONS(1777), - [sym___single_quote] = ACTIONS(1777), - [sym___c_double_quote] = ACTIONS(1777), - [sym___c_single_quote] = ACTIONS(1777), - [sym___r_double_quote] = ACTIONS(1777), - [sym___r_single_quote] = ACTIONS(1777), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_as] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_COMMA] = ACTIONS(1787), + [anon_sym_const] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_EQ] = ACTIONS(1787), + [anon_sym___global] = ACTIONS(1787), + [anon_sym_type] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_fn] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_STAR] = ACTIONS(1725), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_PERCENT] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_EQ_EQ] = ACTIONS(1787), + [anon_sym_BANG_EQ] = ACTIONS(1787), + [anon_sym_LT_EQ] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_struct] = ACTIONS(1787), + [anon_sym_union] = ACTIONS(1787), + [anon_sym_pub] = ACTIONS(1787), + [anon_sym_mut] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1787), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_go] = ACTIONS(1787), + [anon_sym_spawn] = ACTIONS(1787), + [anon_sym_json_DOTdecode] = ACTIONS(1787), + [anon_sym_LBRACK2] = ACTIONS(1739), + [anon_sym_TILDE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT_DASH] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_GT_GT_GT] = ACTIONS(1725), + [anon_sym_AMP_CARET] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1787), + [anon_sym_PIPE_PIPE] = ACTIONS(1787), + [anon_sym_or] = ACTIONS(1787), + [sym_none] = ACTIONS(1787), + [sym_true] = ACTIONS(1787), + [sym_false] = ACTIONS(1787), + [sym_nil] = ACTIONS(1787), + [anon_sym_QMARK_DOT] = ACTIONS(1713), + [anon_sym_POUND_LBRACK] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_DOLLARif] = ACTIONS(1787), + [anon_sym_is] = ACTIONS(1787), + [anon_sym_BANGis] = ACTIONS(1787), + [anon_sym_in] = ACTIONS(1787), + [anon_sym_BANGin] = ACTIONS(1787), + [anon_sym_match] = ACTIONS(1787), + [anon_sym_select] = ACTIONS(1787), + [anon_sym_STAR_EQ] = ACTIONS(1787), + [anon_sym_SLASH_EQ] = ACTIONS(1787), + [anon_sym_PERCENT_EQ] = ACTIONS(1787), + [anon_sym_LT_LT_EQ] = ACTIONS(1787), + [anon_sym_GT_GT_EQ] = ACTIONS(1787), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1787), + [anon_sym_AMP_EQ] = ACTIONS(1787), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1787), + [anon_sym_PLUS_EQ] = ACTIONS(1787), + [anon_sym_DASH_EQ] = ACTIONS(1787), + [anon_sym_PIPE_EQ] = ACTIONS(1787), + [anon_sym_CARET_EQ] = ACTIONS(1787), + [anon_sym_COLON_EQ] = ACTIONS(1787), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1787), + [anon_sym_sql] = ACTIONS(1787), + [sym_int_literal] = ACTIONS(1787), + [sym_float_literal] = ACTIONS(1787), + [sym_rune_literal] = ACTIONS(1787), + [anon_sym_SQUOTE] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [anon_sym_c_SQUOTE] = ACTIONS(1787), + [anon_sym_c_DQUOTE] = ACTIONS(1787), + [anon_sym_r_SQUOTE] = ACTIONS(1787), + [anon_sym_r_DQUOTE] = ACTIONS(1787), + [sym_pseudo_compile_time_identifier] = ACTIONS(1787), + [anon_sym_shared] = ACTIONS(1787), + [anon_sym_map_LBRACK] = ACTIONS(1787), + [anon_sym_chan] = ACTIONS(1787), + [anon_sym_thread] = ACTIONS(1787), + [anon_sym_atomic] = ACTIONS(1787), + [anon_sym_assert] = ACTIONS(1787), + [anon_sym_defer] = ACTIONS(1787), + [anon_sym_goto] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_DOLLARfor] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1787), + [anon_sym_asm] = ACTIONS(1787), + [anon_sym_AT_LBRACK] = ACTIONS(1787), }, [223] = { [sym_line_comment] = STATE(223), [sym_block_comment] = STATE(223), - [sym_type_parameters] = STATE(4275), + [sym_type_parameters] = STATE(4287), [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(356), - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1765), - [anon_sym_CR] = ACTIONS(1765), - [anon_sym_CR_LF] = ACTIONS(1765), + [sym_or_block] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym___global] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_PERCENT] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_GT] = ACTIONS(1657), - [anon_sym_EQ_EQ] = ACTIONS(1657), - [anon_sym_BANG_EQ] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1657), - [anon_sym_GT_EQ] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1765), - [anon_sym_pub] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [anon_sym_interface] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(1655), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_GT_GT_GT] = ACTIONS(1655), - [anon_sym_AMP_CARET] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(1645), - [anon_sym_POUND_LBRACK] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1679), - [anon_sym_BANGin] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_STAR_EQ] = ACTIONS(1765), - [anon_sym_SLASH_EQ] = ACTIONS(1765), - [anon_sym_PERCENT_EQ] = ACTIONS(1765), - [anon_sym_LT_LT_EQ] = ACTIONS(1765), - [anon_sym_GT_GT_EQ] = ACTIONS(1765), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1765), - [anon_sym_AMP_EQ] = ACTIONS(1765), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1765), - [anon_sym_PLUS_EQ] = ACTIONS(1765), - [anon_sym_DASH_EQ] = ACTIONS(1765), - [anon_sym_PIPE_EQ] = ACTIONS(1765), - [anon_sym_CARET_EQ] = ACTIONS(1765), - [anon_sym_COLON_EQ] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1765), - [sym_rune_literal] = ACTIONS(1765), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1765), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [anon_sym_assert] = ACTIONS(1765), - [anon_sym_defer] = ACTIONS(1765), - [anon_sym_goto] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_DOLLARfor] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(1765), - [anon_sym_asm] = ACTIONS(1765), - [anon_sym_AT_LBRACK] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_EQ] = ACTIONS(1791), + [anon_sym___global] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(1791), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1725), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_PERCENT] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_EQ] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_pub] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(1739), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_GT_GT_GT] = ACTIONS(1725), + [anon_sym_AMP_CARET] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(1713), + [anon_sym_POUND_LBRACK] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_BANGin] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_STAR_EQ] = ACTIONS(1791), + [anon_sym_SLASH_EQ] = ACTIONS(1791), + [anon_sym_PERCENT_EQ] = ACTIONS(1791), + [anon_sym_LT_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_GT_EQ] = ACTIONS(1791), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1791), + [anon_sym_AMP_EQ] = ACTIONS(1791), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1791), + [anon_sym_PLUS_EQ] = ACTIONS(1791), + [anon_sym_DASH_EQ] = ACTIONS(1791), + [anon_sym_PIPE_EQ] = ACTIONS(1791), + [anon_sym_CARET_EQ] = ACTIONS(1791), + [anon_sym_COLON_EQ] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_assert] = ACTIONS(1791), + [anon_sym_defer] = ACTIONS(1791), + [anon_sym_goto] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_DOLLARfor] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_POUND] = ACTIONS(1791), + [anon_sym_asm] = ACTIONS(1791), + [anon_sym_AT_LBRACK] = ACTIONS(1791), }, [224] = { [sym_line_comment] = STATE(224), [sym_block_comment] = STATE(224), - [sym_type_parameters] = STATE(4275), + [sym_type_parameters] = STATE(4287), [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(356), - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1765), - [anon_sym_CR] = ACTIONS(1765), - [anon_sym_CR_LF] = ACTIONS(1765), + [sym_or_block] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym___global] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_PERCENT] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_GT] = ACTIONS(1657), - [anon_sym_EQ_EQ] = ACTIONS(1657), - [anon_sym_BANG_EQ] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1657), - [anon_sym_GT_EQ] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1765), - [anon_sym_pub] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [anon_sym_interface] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(1655), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_GT_GT_GT] = ACTIONS(1655), - [anon_sym_AMP_CARET] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(1645), - [anon_sym_POUND_LBRACK] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1679), - [anon_sym_BANGin] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_STAR_EQ] = ACTIONS(1765), - [anon_sym_SLASH_EQ] = ACTIONS(1765), - [anon_sym_PERCENT_EQ] = ACTIONS(1765), - [anon_sym_LT_LT_EQ] = ACTIONS(1765), - [anon_sym_GT_GT_EQ] = ACTIONS(1765), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1765), - [anon_sym_AMP_EQ] = ACTIONS(1765), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1765), - [anon_sym_PLUS_EQ] = ACTIONS(1765), - [anon_sym_DASH_EQ] = ACTIONS(1765), - [anon_sym_PIPE_EQ] = ACTIONS(1765), - [anon_sym_CARET_EQ] = ACTIONS(1765), - [anon_sym_COLON_EQ] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1765), - [sym_rune_literal] = ACTIONS(1765), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1765), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [anon_sym_assert] = ACTIONS(1765), - [anon_sym_defer] = ACTIONS(1765), - [anon_sym_goto] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_DOLLARfor] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(1765), - [anon_sym_asm] = ACTIONS(1765), - [anon_sym_AT_LBRACK] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_EQ] = ACTIONS(1791), + [anon_sym___global] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(1791), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1791), + [anon_sym_SLASH] = ACTIONS(1791), + [anon_sym_PERCENT] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_EQ] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_pub] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(1739), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(1791), + [anon_sym_GT_GT] = ACTIONS(1791), + [anon_sym_GT_GT_GT] = ACTIONS(1791), + [anon_sym_AMP_CARET] = ACTIONS(1791), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(1713), + [anon_sym_POUND_LBRACK] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_BANGin] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_STAR_EQ] = ACTIONS(1791), + [anon_sym_SLASH_EQ] = ACTIONS(1791), + [anon_sym_PERCENT_EQ] = ACTIONS(1791), + [anon_sym_LT_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_GT_EQ] = ACTIONS(1791), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1791), + [anon_sym_AMP_EQ] = ACTIONS(1791), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1791), + [anon_sym_PLUS_EQ] = ACTIONS(1791), + [anon_sym_DASH_EQ] = ACTIONS(1791), + [anon_sym_PIPE_EQ] = ACTIONS(1791), + [anon_sym_CARET_EQ] = ACTIONS(1791), + [anon_sym_COLON_EQ] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_assert] = ACTIONS(1791), + [anon_sym_defer] = ACTIONS(1791), + [anon_sym_goto] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_DOLLARfor] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_POUND] = ACTIONS(1791), + [anon_sym_asm] = ACTIONS(1791), + [anon_sym_AT_LBRACK] = ACTIONS(1791), }, [225] = { [sym_line_comment] = STATE(225), [sym_block_comment] = STATE(225), - [sym_type_parameters] = STATE(4275), + [sym_type_parameters] = STATE(4287), [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(356), - [ts_builtin_sym_end] = ACTIONS(1779), - [sym_identifier] = ACTIONS(1781), - [anon_sym_LF] = ACTIONS(1781), - [anon_sym_CR] = ACTIONS(1781), - [anon_sym_CR_LF] = ACTIONS(1781), + [sym_or_block] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_COMMA] = ACTIONS(1781), - [anon_sym_const] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_EQ] = ACTIONS(1781), - [anon_sym___global] = ACTIONS(1781), - [anon_sym_type] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_fn] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_PERCENT] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_EQ_EQ] = ACTIONS(1781), - [anon_sym_BANG_EQ] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1781), - [anon_sym_union] = ACTIONS(1781), - [anon_sym_pub] = ACTIONS(1781), - [anon_sym_mut] = ACTIONS(1781), - [anon_sym_enum] = ACTIONS(1781), - [anon_sym_interface] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_QMARK] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1781), - [anon_sym_LBRACK2] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_LT_DASH] = ACTIONS(1781), - [anon_sym_LT_LT] = ACTIONS(1655), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_GT_GT_GT] = ACTIONS(1655), - [anon_sym_AMP_CARET] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1781), - [anon_sym_PIPE_PIPE] = ACTIONS(1781), - [anon_sym_or] = ACTIONS(1781), - [sym_none] = ACTIONS(1781), - [sym_true] = ACTIONS(1781), - [sym_false] = ACTIONS(1781), - [sym_nil] = ACTIONS(1781), - [anon_sym_QMARK_DOT] = ACTIONS(1645), - [anon_sym_POUND_LBRACK] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_DOLLARif] = ACTIONS(1781), - [anon_sym_is] = ACTIONS(1781), - [anon_sym_BANGis] = ACTIONS(1781), - [anon_sym_in] = ACTIONS(1781), - [anon_sym_BANGin] = ACTIONS(1781), - [anon_sym_match] = ACTIONS(1781), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_STAR_EQ] = ACTIONS(1781), - [anon_sym_SLASH_EQ] = ACTIONS(1781), - [anon_sym_PERCENT_EQ] = ACTIONS(1781), - [anon_sym_LT_LT_EQ] = ACTIONS(1781), - [anon_sym_GT_GT_EQ] = ACTIONS(1781), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1781), - [anon_sym_AMP_EQ] = ACTIONS(1781), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1781), - [anon_sym_PLUS_EQ] = ACTIONS(1781), - [anon_sym_DASH_EQ] = ACTIONS(1781), - [anon_sym_PIPE_EQ] = ACTIONS(1781), - [anon_sym_CARET_EQ] = ACTIONS(1781), - [anon_sym_COLON_EQ] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1781), - [anon_sym_rlock] = ACTIONS(1781), - [anon_sym_unsafe] = ACTIONS(1781), - [anon_sym_sql] = ACTIONS(1781), - [sym_int_literal] = ACTIONS(1781), - [sym_float_literal] = ACTIONS(1781), - [sym_rune_literal] = ACTIONS(1781), - [sym_pseudo_compile_time_identifier] = ACTIONS(1781), - [anon_sym_shared] = ACTIONS(1781), - [anon_sym_map_LBRACK] = ACTIONS(1781), - [anon_sym_chan] = ACTIONS(1781), - [anon_sym_thread] = ACTIONS(1781), - [anon_sym_atomic] = ACTIONS(1781), - [anon_sym_assert] = ACTIONS(1781), - [anon_sym_defer] = ACTIONS(1781), - [anon_sym_goto] = ACTIONS(1781), - [anon_sym_break] = ACTIONS(1781), - [anon_sym_continue] = ACTIONS(1781), - [anon_sym_return] = ACTIONS(1781), - [anon_sym_DOLLARfor] = ACTIONS(1781), - [anon_sym_for] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(1781), - [anon_sym_asm] = ACTIONS(1781), - [anon_sym_AT_LBRACK] = ACTIONS(1781), - [sym___double_quote] = ACTIONS(1781), - [sym___single_quote] = ACTIONS(1781), - [sym___c_double_quote] = ACTIONS(1781), - [sym___c_single_quote] = ACTIONS(1781), - [sym___r_double_quote] = ACTIONS(1781), - [sym___r_single_quote] = ACTIONS(1781), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_EQ] = ACTIONS(1791), + [anon_sym___global] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_STAR] = ACTIONS(1725), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_PERCENT] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_EQ] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_pub] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(1739), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_GT_GT_GT] = ACTIONS(1725), + [anon_sym_AMP_CARET] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(1713), + [anon_sym_POUND_LBRACK] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_BANGin] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_STAR_EQ] = ACTIONS(1791), + [anon_sym_SLASH_EQ] = ACTIONS(1791), + [anon_sym_PERCENT_EQ] = ACTIONS(1791), + [anon_sym_LT_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_GT_EQ] = ACTIONS(1791), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1791), + [anon_sym_AMP_EQ] = ACTIONS(1791), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1791), + [anon_sym_PLUS_EQ] = ACTIONS(1791), + [anon_sym_DASH_EQ] = ACTIONS(1791), + [anon_sym_PIPE_EQ] = ACTIONS(1791), + [anon_sym_CARET_EQ] = ACTIONS(1791), + [anon_sym_COLON_EQ] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_assert] = ACTIONS(1791), + [anon_sym_defer] = ACTIONS(1791), + [anon_sym_goto] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_DOLLARfor] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_POUND] = ACTIONS(1791), + [anon_sym_asm] = ACTIONS(1791), + [anon_sym_AT_LBRACK] = ACTIONS(1791), }, [226] = { [sym_line_comment] = STATE(226), [sym_block_comment] = STATE(226), - [sym_type_parameters] = STATE(4275), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(356), - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_EQ] = ACTIONS(1785), - [anon_sym___global] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_SLASH] = ACTIONS(1785), - [anon_sym_PERCENT] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_pub] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(1785), - [anon_sym_GT_GT] = ACTIONS(1785), - [anon_sym_GT_GT_GT] = ACTIONS(1785), - [anon_sym_AMP_CARET] = ACTIONS(1785), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(1645), - [anon_sym_POUND_LBRACK] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_BANGin] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_STAR_EQ] = ACTIONS(1785), - [anon_sym_SLASH_EQ] = ACTIONS(1785), - [anon_sym_PERCENT_EQ] = ACTIONS(1785), - [anon_sym_LT_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_GT_EQ] = ACTIONS(1785), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1785), - [anon_sym_AMP_EQ] = ACTIONS(1785), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1785), - [anon_sym_PLUS_EQ] = ACTIONS(1785), - [anon_sym_DASH_EQ] = ACTIONS(1785), - [anon_sym_PIPE_EQ] = ACTIONS(1785), - [anon_sym_CARET_EQ] = ACTIONS(1785), - [anon_sym_COLON_EQ] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [anon_sym_assert] = ACTIONS(1785), - [anon_sym_defer] = ACTIONS(1785), - [anon_sym_goto] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_DOLLARfor] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(1785), - [anon_sym_asm] = ACTIONS(1785), - [anon_sym_AT_LBRACK] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), - }, - [227] = { - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), - [sym_type_parameters] = STATE(4275), - [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(356), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym_identifier] = ACTIONS(1789), - [anon_sym_LF] = ACTIONS(1789), - [anon_sym_CR] = ACTIONS(1789), - [anon_sym_CR_LF] = ACTIONS(1789), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_const] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_EQ] = ACTIONS(1789), - [anon_sym___global] = ACTIONS(1789), - [anon_sym_type] = ACTIONS(1789), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_fn] = ACTIONS(1789), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_PERCENT] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_GT] = ACTIONS(1657), - [anon_sym_EQ_EQ] = ACTIONS(1657), - [anon_sym_BANG_EQ] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1657), - [anon_sym_GT_EQ] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1789), - [anon_sym_union] = ACTIONS(1789), - [anon_sym_pub] = ACTIONS(1789), - [anon_sym_mut] = ACTIONS(1789), - [anon_sym_enum] = ACTIONS(1789), - [anon_sym_interface] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_QMARK] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_go] = ACTIONS(1789), - [anon_sym_spawn] = ACTIONS(1789), - [anon_sym_json_DOTdecode] = ACTIONS(1789), - [anon_sym_LBRACK2] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_LT_DASH] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(1655), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_GT_GT_GT] = ACTIONS(1655), - [anon_sym_AMP_CARET] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1673), - [anon_sym_or] = ACTIONS(1675), - [sym_none] = ACTIONS(1789), - [sym_true] = ACTIONS(1789), - [sym_false] = ACTIONS(1789), - [sym_nil] = ACTIONS(1789), - [anon_sym_QMARK_DOT] = ACTIONS(1645), - [anon_sym_POUND_LBRACK] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1789), - [anon_sym_is] = ACTIONS(1791), - [anon_sym_BANGis] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1679), - [anon_sym_BANGin] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1789), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_STAR_EQ] = ACTIONS(1789), - [anon_sym_SLASH_EQ] = ACTIONS(1789), - [anon_sym_PERCENT_EQ] = ACTIONS(1789), - [anon_sym_LT_LT_EQ] = ACTIONS(1789), - [anon_sym_GT_GT_EQ] = ACTIONS(1789), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1789), - [anon_sym_AMP_EQ] = ACTIONS(1789), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1789), - [anon_sym_PLUS_EQ] = ACTIONS(1789), - [anon_sym_DASH_EQ] = ACTIONS(1789), - [anon_sym_PIPE_EQ] = ACTIONS(1789), - [anon_sym_CARET_EQ] = ACTIONS(1789), - [anon_sym_COLON_EQ] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1789), - [anon_sym_rlock] = ACTIONS(1789), - [anon_sym_unsafe] = ACTIONS(1789), - [anon_sym_sql] = ACTIONS(1789), - [sym_int_literal] = ACTIONS(1789), - [sym_float_literal] = ACTIONS(1789), - [sym_rune_literal] = ACTIONS(1789), - [sym_pseudo_compile_time_identifier] = ACTIONS(1789), - [anon_sym_shared] = ACTIONS(1789), - [anon_sym_map_LBRACK] = ACTIONS(1789), - [anon_sym_chan] = ACTIONS(1789), - [anon_sym_thread] = ACTIONS(1789), - [anon_sym_atomic] = ACTIONS(1789), - [anon_sym_assert] = ACTIONS(1789), - [anon_sym_defer] = ACTIONS(1789), - [anon_sym_goto] = ACTIONS(1789), - [anon_sym_break] = ACTIONS(1789), - [anon_sym_continue] = ACTIONS(1789), - [anon_sym_return] = ACTIONS(1789), - [anon_sym_DOLLARfor] = ACTIONS(1789), - [anon_sym_for] = ACTIONS(1789), - [anon_sym_POUND] = ACTIONS(1789), - [anon_sym_asm] = ACTIONS(1789), - [anon_sym_AT_LBRACK] = ACTIONS(1789), - [sym___double_quote] = ACTIONS(1789), - [sym___single_quote] = ACTIONS(1789), - [sym___c_double_quote] = ACTIONS(1789), - [sym___c_single_quote] = ACTIONS(1789), - [sym___r_double_quote] = ACTIONS(1789), - [sym___r_single_quote] = ACTIONS(1789), - }, - [228] = { - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), - [sym_type_parameters] = STATE(4275), + [sym_type_parameters] = STATE(4287), [sym_argument_list] = STATE(360), - [sym_or_block] = STATE(356), + [sym_or_block] = STATE(399), [ts_builtin_sym_end] = ACTIONS(1793), [sym_identifier] = ACTIONS(1795), [anon_sym_LF] = ACTIONS(1795), @@ -49194,81 +48936,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1795), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1647), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_as] = ACTIONS(1791), [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_COMMA] = ACTIONS(1795), + [anon_sym_COMMA] = ACTIONS(1791), [anon_sym_const] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_EQ] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_EQ] = ACTIONS(1791), [anon_sym___global] = ACTIONS(1795), [anon_sym_type] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1791), [anon_sym_fn] = ACTIONS(1795), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_PERCENT] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_GT] = ACTIONS(1657), - [anon_sym_EQ_EQ] = ACTIONS(1657), - [anon_sym_BANG_EQ] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1657), - [anon_sym_GT_EQ] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_SLASH] = ACTIONS(1791), + [anon_sym_PERCENT] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_EQ] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1729), [anon_sym_struct] = ACTIONS(1795), [anon_sym_union] = ACTIONS(1795), [anon_sym_pub] = ACTIONS(1795), [anon_sym_mut] = ACTIONS(1795), [anon_sym_enum] = ACTIONS(1795), [anon_sym_interface] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_QMARK] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1737), [anon_sym_go] = ACTIONS(1795), [anon_sym_spawn] = ACTIONS(1795), [anon_sym_json_DOTdecode] = ACTIONS(1795), - [anon_sym_LBRACK2] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(1739), [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(1795), [anon_sym_LT_DASH] = ACTIONS(1795), - [anon_sym_LT_LT] = ACTIONS(1655), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_GT_GT_GT] = ACTIONS(1655), - [anon_sym_AMP_CARET] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1673), - [anon_sym_or] = ACTIONS(1675), + [anon_sym_LT_LT] = ACTIONS(1791), + [anon_sym_GT_GT] = ACTIONS(1791), + [anon_sym_GT_GT_GT] = ACTIONS(1791), + [anon_sym_AMP_CARET] = ACTIONS(1791), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), [sym_none] = ACTIONS(1795), [sym_true] = ACTIONS(1795), [sym_false] = ACTIONS(1795), [sym_nil] = ACTIONS(1795), - [anon_sym_QMARK_DOT] = ACTIONS(1645), - [anon_sym_POUND_LBRACK] = ACTIONS(1669), + [anon_sym_QMARK_DOT] = ACTIONS(1713), + [anon_sym_POUND_LBRACK] = ACTIONS(1739), [anon_sym_if] = ACTIONS(1795), [anon_sym_DOLLARif] = ACTIONS(1795), - [anon_sym_is] = ACTIONS(1677), - [anon_sym_BANGis] = ACTIONS(1677), - [anon_sym_in] = ACTIONS(1679), - [anon_sym_BANGin] = ACTIONS(1679), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_BANGin] = ACTIONS(1791), [anon_sym_match] = ACTIONS(1795), [anon_sym_select] = ACTIONS(1795), - [anon_sym_STAR_EQ] = ACTIONS(1795), - [anon_sym_SLASH_EQ] = ACTIONS(1795), - [anon_sym_PERCENT_EQ] = ACTIONS(1795), - [anon_sym_LT_LT_EQ] = ACTIONS(1795), - [anon_sym_GT_GT_EQ] = ACTIONS(1795), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1795), - [anon_sym_AMP_EQ] = ACTIONS(1795), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1795), - [anon_sym_PLUS_EQ] = ACTIONS(1795), - [anon_sym_DASH_EQ] = ACTIONS(1795), - [anon_sym_PIPE_EQ] = ACTIONS(1795), - [anon_sym_CARET_EQ] = ACTIONS(1795), - [anon_sym_COLON_EQ] = ACTIONS(1795), + [anon_sym_STAR_EQ] = ACTIONS(1791), + [anon_sym_SLASH_EQ] = ACTIONS(1791), + [anon_sym_PERCENT_EQ] = ACTIONS(1791), + [anon_sym_LT_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_GT_EQ] = ACTIONS(1791), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1791), + [anon_sym_AMP_EQ] = ACTIONS(1791), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1791), + [anon_sym_PLUS_EQ] = ACTIONS(1791), + [anon_sym_DASH_EQ] = ACTIONS(1791), + [anon_sym_PIPE_EQ] = ACTIONS(1791), + [anon_sym_CARET_EQ] = ACTIONS(1791), + [anon_sym_COLON_EQ] = ACTIONS(1791), [anon_sym_lock] = ACTIONS(1795), [anon_sym_rlock] = ACTIONS(1795), [anon_sym_unsafe] = ACTIONS(1795), @@ -49276,6 +49018,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1795), [sym_float_literal] = ACTIONS(1795), [sym_rune_literal] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1795), + [anon_sym_c_SQUOTE] = ACTIONS(1795), + [anon_sym_c_DQUOTE] = ACTIONS(1795), + [anon_sym_r_SQUOTE] = ACTIONS(1795), + [anon_sym_r_DQUOTE] = ACTIONS(1795), [sym_pseudo_compile_time_identifier] = ACTIONS(1795), [anon_sym_shared] = ACTIONS(1795), [anon_sym_map_LBRACK] = ACTIONS(1795), @@ -49293,17 +49041,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(1795), [anon_sym_asm] = ACTIONS(1795), [anon_sym_AT_LBRACK] = ACTIONS(1795), - [sym___double_quote] = ACTIONS(1795), - [sym___single_quote] = ACTIONS(1795), - [sym___c_double_quote] = ACTIONS(1795), - [sym___c_single_quote] = ACTIONS(1795), - [sym___r_double_quote] = ACTIONS(1795), - [sym___r_single_quote] = ACTIONS(1795), + }, + [227] = { + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [sym_type_parameters] = STATE(4287), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_EQ] = ACTIONS(1791), + [anon_sym___global] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_STAR] = ACTIONS(1725), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_PERCENT] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_EQ_EQ] = ACTIONS(1727), + [anon_sym_BANG_EQ] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_pub] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(1739), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_GT_GT_GT] = ACTIONS(1725), + [anon_sym_AMP_CARET] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(1713), + [anon_sym_POUND_LBRACK] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1753), + [anon_sym_BANGin] = ACTIONS(1753), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_STAR_EQ] = ACTIONS(1791), + [anon_sym_SLASH_EQ] = ACTIONS(1791), + [anon_sym_PERCENT_EQ] = ACTIONS(1791), + [anon_sym_LT_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_GT_EQ] = ACTIONS(1791), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1791), + [anon_sym_AMP_EQ] = ACTIONS(1791), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1791), + [anon_sym_PLUS_EQ] = ACTIONS(1791), + [anon_sym_DASH_EQ] = ACTIONS(1791), + [anon_sym_PIPE_EQ] = ACTIONS(1791), + [anon_sym_CARET_EQ] = ACTIONS(1791), + [anon_sym_COLON_EQ] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_assert] = ACTIONS(1791), + [anon_sym_defer] = ACTIONS(1791), + [anon_sym_goto] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_DOLLARfor] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_POUND] = ACTIONS(1791), + [anon_sym_asm] = ACTIONS(1791), + [anon_sym_AT_LBRACK] = ACTIONS(1791), + }, + [228] = { + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), + [sym_type_parameters] = STATE(4287), + [sym_argument_list] = STATE(360), + [sym_or_block] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_EQ] = ACTIONS(1791), + [anon_sym___global] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_STAR] = ACTIONS(1725), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_PERCENT] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_EQ_EQ] = ACTIONS(1727), + [anon_sym_BANG_EQ] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_pub] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(1739), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(1725), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_GT_GT_GT] = ACTIONS(1725), + [anon_sym_AMP_CARET] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1745), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(1713), + [anon_sym_POUND_LBRACK] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1753), + [anon_sym_BANGin] = ACTIONS(1753), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_STAR_EQ] = ACTIONS(1791), + [anon_sym_SLASH_EQ] = ACTIONS(1791), + [anon_sym_PERCENT_EQ] = ACTIONS(1791), + [anon_sym_LT_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_GT_EQ] = ACTIONS(1791), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1791), + [anon_sym_AMP_EQ] = ACTIONS(1791), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1791), + [anon_sym_PLUS_EQ] = ACTIONS(1791), + [anon_sym_DASH_EQ] = ACTIONS(1791), + [anon_sym_PIPE_EQ] = ACTIONS(1791), + [anon_sym_CARET_EQ] = ACTIONS(1791), + [anon_sym_COLON_EQ] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_assert] = ACTIONS(1791), + [anon_sym_defer] = ACTIONS(1791), + [anon_sym_goto] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_DOLLARfor] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_POUND] = ACTIONS(1791), + [anon_sym_asm] = ACTIONS(1791), + [anon_sym_AT_LBRACK] = ACTIONS(1791), }, [229] = { [sym_line_comment] = STATE(229), [sym_block_comment] = STATE(229), - [sym_else_branch] = STATE(463), + [sym_else_branch] = STATE(376), [ts_builtin_sym_end] = ACTIONS(1797), [sym_identifier] = ACTIONS(1799), [anon_sym_LF] = ACTIONS(1799), @@ -49394,6 +49374,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1799), [sym_float_literal] = ACTIONS(1799), [sym_rune_literal] = ACTIONS(1799), + [anon_sym_SQUOTE] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [anon_sym_c_SQUOTE] = ACTIONS(1799), + [anon_sym_c_DQUOTE] = ACTIONS(1799), + [anon_sym_r_SQUOTE] = ACTIONS(1799), + [anon_sym_r_DQUOTE] = ACTIONS(1799), [sym_pseudo_compile_time_identifier] = ACTIONS(1799), [anon_sym_shared] = ACTIONS(1799), [anon_sym_map_LBRACK] = ACTIONS(1799), @@ -49411,17 +49397,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(1799), [anon_sym_asm] = ACTIONS(1799), [anon_sym_AT_LBRACK] = ACTIONS(1799), - [sym___double_quote] = ACTIONS(1799), - [sym___single_quote] = ACTIONS(1799), - [sym___c_double_quote] = ACTIONS(1799), - [sym___c_single_quote] = ACTIONS(1799), - [sym___r_double_quote] = ACTIONS(1799), - [sym___r_single_quote] = ACTIONS(1799), }, [230] = { [sym_line_comment] = STATE(230), [sym_block_comment] = STATE(230), - [sym_else_branch] = STATE(452), + [sym_else_branch] = STATE(380), [ts_builtin_sym_end] = ACTIONS(1803), [sym_identifier] = ACTIONS(1805), [anon_sym_LF] = ACTIONS(1805), @@ -49512,6 +49492,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1805), [sym_float_literal] = ACTIONS(1805), [sym_rune_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1805), + [anon_sym_c_SQUOTE] = ACTIONS(1805), + [anon_sym_c_DQUOTE] = ACTIONS(1805), + [anon_sym_r_SQUOTE] = ACTIONS(1805), + [anon_sym_r_DQUOTE] = ACTIONS(1805), [sym_pseudo_compile_time_identifier] = ACTIONS(1805), [anon_sym_shared] = ACTIONS(1805), [anon_sym_map_LBRACK] = ACTIONS(1805), @@ -49529,12 +49515,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(1805), [anon_sym_asm] = ACTIONS(1805), [anon_sym_AT_LBRACK] = ACTIONS(1805), - [sym___double_quote] = ACTIONS(1805), - [sym___single_quote] = ACTIONS(1805), - [sym___c_double_quote] = ACTIONS(1805), - [sym___c_single_quote] = ACTIONS(1805), - [sym___r_double_quote] = ACTIONS(1805), - [sym___r_single_quote] = ACTIONS(1805), }, [231] = { [sym_line_comment] = STATE(231), @@ -49601,8 +49581,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(1809), [anon_sym_POUND_LBRACK] = ACTIONS(1809), [anon_sym_if] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1809), [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_DOLLARelse] = ACTIONS(1809), [anon_sym_is] = ACTIONS(1809), [anon_sym_BANGis] = ACTIONS(1809), [anon_sym_in] = ACTIONS(1809), @@ -49629,6 +49609,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1809), [sym_float_literal] = ACTIONS(1809), [sym_rune_literal] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_c_SQUOTE] = ACTIONS(1809), + [anon_sym_c_DQUOTE] = ACTIONS(1809), + [anon_sym_r_SQUOTE] = ACTIONS(1809), + [anon_sym_r_DQUOTE] = ACTIONS(1809), [sym_pseudo_compile_time_identifier] = ACTIONS(1809), [anon_sym_shared] = ACTIONS(1809), [anon_sym_map_LBRACK] = ACTIONS(1809), @@ -49646,7972 +49632,7498 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(1809), [anon_sym_asm] = ACTIONS(1809), [anon_sym_AT_LBRACK] = ACTIONS(1809), - [sym___double_quote] = ACTIONS(1809), - [sym___single_quote] = ACTIONS(1809), - [sym___c_double_quote] = ACTIONS(1809), - [sym___c_single_quote] = ACTIONS(1809), - [sym___r_double_quote] = ACTIONS(1809), - [sym___r_single_quote] = ACTIONS(1809), }, [232] = { [sym_line_comment] = STATE(232), [sym_block_comment] = STATE(232), - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_CR] = ACTIONS(1809), - [anon_sym_CR_LF] = ACTIONS(1809), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_EQ] = ACTIONS(1809), - [anon_sym___global] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_pub] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1809), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1809), - [anon_sym_AMP_CARET] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_PIPE_PIPE] = ACTIONS(1809), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1809), - [anon_sym_POUND_LBRACK] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_DOLLARelse] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1809), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_STAR_EQ] = ACTIONS(1809), - [anon_sym_SLASH_EQ] = ACTIONS(1809), - [anon_sym_PERCENT_EQ] = ACTIONS(1809), - [anon_sym_LT_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_GT_EQ] = ACTIONS(1809), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1809), - [anon_sym_AMP_EQ] = ACTIONS(1809), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1809), - [anon_sym_PLUS_EQ] = ACTIONS(1809), - [anon_sym_DASH_EQ] = ACTIONS(1809), - [anon_sym_PIPE_EQ] = ACTIONS(1809), - [anon_sym_CARET_EQ] = ACTIONS(1809), - [anon_sym_COLON_EQ] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), - [sym_rune_literal] = ACTIONS(1809), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1809), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), - [anon_sym_assert] = ACTIONS(1809), - [anon_sym_defer] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_DOLLARfor] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_POUND] = ACTIONS(1809), - [anon_sym_asm] = ACTIONS(1809), - [anon_sym_AT_LBRACK] = ACTIONS(1809), - [sym___double_quote] = ACTIONS(1809), - [sym___single_quote] = ACTIONS(1809), - [sym___c_double_quote] = ACTIONS(1809), - [sym___c_single_quote] = ACTIONS(1809), - [sym___r_double_quote] = ACTIONS(1809), - [sym___r_single_quote] = ACTIONS(1809), - }, - [233] = { - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [ts_builtin_sym_end] = ACTIONS(1811), - [sym_identifier] = ACTIONS(1813), - [anon_sym_LF] = ACTIONS(1813), - [anon_sym_CR] = ACTIONS(1813), - [anon_sym_CR_LF] = ACTIONS(1813), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_as] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_COMMA] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(1813), - [anon_sym_EQ] = ACTIONS(1813), - [anon_sym___global] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1813), - [anon_sym_PIPE] = ACTIONS(1813), - [anon_sym_fn] = ACTIONS(1813), + [sym__expression] = STATE(2314), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(582), + [sym_mutable_expression] = STATE(3787), + [sym_expression_list] = STATE(4409), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_var_declaration] = STATE(4060), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), [anon_sym_PLUS] = ACTIONS(1813), [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_SLASH] = ACTIONS(1813), - [anon_sym_PERCENT] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_GT] = ACTIONS(1813), - [anon_sym_EQ_EQ] = ACTIONS(1813), - [anon_sym_BANG_EQ] = ACTIONS(1813), - [anon_sym_LT_EQ] = ACTIONS(1813), - [anon_sym_GT_EQ] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_union] = ACTIONS(1813), - [anon_sym_pub] = ACTIONS(1813), - [anon_sym_mut] = ACTIONS(1813), - [anon_sym_enum] = ACTIONS(1813), - [anon_sym_interface] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_QMARK] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_go] = ACTIONS(1813), - [anon_sym_spawn] = ACTIONS(1813), - [anon_sym_json_DOTdecode] = ACTIONS(1813), - [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), [anon_sym_TILDE] = ACTIONS(1813), [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_LT_DASH] = ACTIONS(1813), - [anon_sym_LT_LT] = ACTIONS(1813), - [anon_sym_GT_GT] = ACTIONS(1813), - [anon_sym_GT_GT_GT] = ACTIONS(1813), - [anon_sym_AMP_CARET] = ACTIONS(1813), - [anon_sym_AMP_AMP] = ACTIONS(1813), - [anon_sym_PIPE_PIPE] = ACTIONS(1813), - [anon_sym_or] = ACTIONS(1813), - [sym_none] = ACTIONS(1813), - [sym_true] = ACTIONS(1813), - [sym_false] = ACTIONS(1813), - [sym_nil] = ACTIONS(1813), - [anon_sym_QMARK_DOT] = ACTIONS(1813), - [anon_sym_POUND_LBRACK] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_else] = ACTIONS(1813), - [anon_sym_DOLLARif] = ACTIONS(1813), - [anon_sym_is] = ACTIONS(1813), - [anon_sym_BANGis] = ACTIONS(1813), - [anon_sym_in] = ACTIONS(1813), - [anon_sym_BANGin] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_STAR_EQ] = ACTIONS(1813), - [anon_sym_SLASH_EQ] = ACTIONS(1813), - [anon_sym_PERCENT_EQ] = ACTIONS(1813), - [anon_sym_LT_LT_EQ] = ACTIONS(1813), - [anon_sym_GT_GT_EQ] = ACTIONS(1813), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1813), - [anon_sym_AMP_EQ] = ACTIONS(1813), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1813), - [anon_sym_PLUS_EQ] = ACTIONS(1813), - [anon_sym_DASH_EQ] = ACTIONS(1813), - [anon_sym_PIPE_EQ] = ACTIONS(1813), - [anon_sym_CARET_EQ] = ACTIONS(1813), - [anon_sym_COLON_EQ] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1813), - [anon_sym_rlock] = ACTIONS(1813), - [anon_sym_unsafe] = ACTIONS(1813), - [anon_sym_sql] = ACTIONS(1813), - [sym_int_literal] = ACTIONS(1813), - [sym_float_literal] = ACTIONS(1813), - [sym_rune_literal] = ACTIONS(1813), - [sym_pseudo_compile_time_identifier] = ACTIONS(1813), - [anon_sym_shared] = ACTIONS(1813), - [anon_sym_map_LBRACK] = ACTIONS(1813), - [anon_sym_chan] = ACTIONS(1813), - [anon_sym_thread] = ACTIONS(1813), - [anon_sym_atomic] = ACTIONS(1813), - [anon_sym_assert] = ACTIONS(1813), - [anon_sym_defer] = ACTIONS(1813), - [anon_sym_goto] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_DOLLARfor] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_POUND] = ACTIONS(1813), - [anon_sym_asm] = ACTIONS(1813), - [anon_sym_AT_LBRACK] = ACTIONS(1813), - [sym___double_quote] = ACTIONS(1813), - [sym___single_quote] = ACTIONS(1813), - [sym___c_double_quote] = ACTIONS(1813), - [sym___c_single_quote] = ACTIONS(1813), - [sym___r_double_quote] = ACTIONS(1813), - [sym___r_single_quote] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [233] = { + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(241), + [sym_identifier] = ACTIONS(1219), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [234] = { [sym_line_comment] = STATE(234), [sym_block_comment] = STATE(234), - [sym__expression] = STATE(2363), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(893), - [sym_mutable_expression] = STATE(3871), - [sym_expression_list] = STATE(4483), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_var_declaration] = STATE(4282), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4265), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(2097), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [235] = { [sym_line_comment] = STATE(235), [sym_block_comment] = STATE(235), - [ts_builtin_sym_end] = ACTIONS(1841), - [sym_identifier] = ACTIONS(1843), - [anon_sym_LF] = ACTIONS(1843), - [anon_sym_CR] = ACTIONS(1843), - [anon_sym_CR_LF] = ACTIONS(1843), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1843), - [anon_sym_as] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_COMMA] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_EQ] = ACTIONS(1843), - [anon_sym___global] = ACTIONS(1843), - [anon_sym_type] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_fn] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1843), - [anon_sym_SLASH] = ACTIONS(1843), - [anon_sym_PERCENT] = ACTIONS(1843), - [anon_sym_LT] = ACTIONS(1843), - [anon_sym_GT] = ACTIONS(1843), - [anon_sym_EQ_EQ] = ACTIONS(1843), - [anon_sym_BANG_EQ] = ACTIONS(1843), - [anon_sym_LT_EQ] = ACTIONS(1843), - [anon_sym_GT_EQ] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_struct] = ACTIONS(1843), - [anon_sym_union] = ACTIONS(1843), - [anon_sym_pub] = ACTIONS(1843), - [anon_sym_mut] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1843), - [anon_sym_interface] = ACTIONS(1843), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_go] = ACTIONS(1843), - [anon_sym_spawn] = ACTIONS(1843), - [anon_sym_json_DOTdecode] = ACTIONS(1843), - [anon_sym_LBRACK2] = ACTIONS(1843), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_CARET] = ACTIONS(1843), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_LT_DASH] = ACTIONS(1843), - [anon_sym_LT_LT] = ACTIONS(1843), - [anon_sym_GT_GT] = ACTIONS(1843), - [anon_sym_GT_GT_GT] = ACTIONS(1843), - [anon_sym_AMP_CARET] = ACTIONS(1843), - [anon_sym_AMP_AMP] = ACTIONS(1843), - [anon_sym_PIPE_PIPE] = ACTIONS(1843), - [anon_sym_or] = ACTIONS(1843), - [sym_none] = ACTIONS(1843), - [sym_true] = ACTIONS(1843), - [sym_false] = ACTIONS(1843), - [sym_nil] = ACTIONS(1843), - [anon_sym_QMARK_DOT] = ACTIONS(1843), - [anon_sym_POUND_LBRACK] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_DOLLARif] = ACTIONS(1843), - [anon_sym_DOLLARelse] = ACTIONS(1845), - [anon_sym_is] = ACTIONS(1843), - [anon_sym_BANGis] = ACTIONS(1843), - [anon_sym_in] = ACTIONS(1843), - [anon_sym_BANGin] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_select] = ACTIONS(1843), - [anon_sym_STAR_EQ] = ACTIONS(1843), - [anon_sym_SLASH_EQ] = ACTIONS(1843), - [anon_sym_PERCENT_EQ] = ACTIONS(1843), - [anon_sym_LT_LT_EQ] = ACTIONS(1843), - [anon_sym_GT_GT_EQ] = ACTIONS(1843), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1843), - [anon_sym_AMP_EQ] = ACTIONS(1843), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1843), - [anon_sym_PLUS_EQ] = ACTIONS(1843), - [anon_sym_DASH_EQ] = ACTIONS(1843), - [anon_sym_PIPE_EQ] = ACTIONS(1843), - [anon_sym_CARET_EQ] = ACTIONS(1843), - [anon_sym_COLON_EQ] = ACTIONS(1843), - [anon_sym_lock] = ACTIONS(1843), - [anon_sym_rlock] = ACTIONS(1843), - [anon_sym_unsafe] = ACTIONS(1843), - [anon_sym_sql] = ACTIONS(1843), - [sym_int_literal] = ACTIONS(1843), - [sym_float_literal] = ACTIONS(1843), - [sym_rune_literal] = ACTIONS(1843), - [sym_pseudo_compile_time_identifier] = ACTIONS(1843), - [anon_sym_shared] = ACTIONS(1843), - [anon_sym_map_LBRACK] = ACTIONS(1843), - [anon_sym_chan] = ACTIONS(1843), - [anon_sym_thread] = ACTIONS(1843), - [anon_sym_atomic] = ACTIONS(1843), - [anon_sym_assert] = ACTIONS(1843), - [anon_sym_defer] = ACTIONS(1843), - [anon_sym_goto] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_DOLLARfor] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_POUND] = ACTIONS(1843), - [anon_sym_asm] = ACTIONS(1843), - [anon_sym_AT_LBRACK] = ACTIONS(1843), - [sym___double_quote] = ACTIONS(1843), - [sym___single_quote] = ACTIONS(1843), - [sym___c_double_quote] = ACTIONS(1843), - [sym___c_single_quote] = ACTIONS(1843), - [sym___r_double_quote] = ACTIONS(1843), - [sym___r_single_quote] = ACTIONS(1843), - }, - [236] = { - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4155), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(2333), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [236] = { + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4074), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(1334), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [237] = { [sym_line_comment] = STATE(237), [sym_block_comment] = STATE(237), - [sym__expression] = STATE(2303), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(893), - [sym_mutable_expression] = STATE(3871), - [sym_expression_list] = STATE(4483), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_var_declaration] = STATE(4136), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [238] = { [sym_line_comment] = STATE(238), [sym_block_comment] = STATE(238), - [sym__expression] = STATE(1259), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym___rcbr] = STATE(3680), - [aux_sym_string_interpolation_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_go] = ACTIONS(1857), - [anon_sym_spawn] = ACTIONS(1859), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1863), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [239] = { [sym_line_comment] = STATE(239), [sym_block_comment] = STATE(239), - [sym__expression] = STATE(2314), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(893), - [sym_mutable_expression] = STATE(3871), - [sym_expression_list] = STATE(4483), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_var_declaration] = STATE(4143), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4155), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(2333), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [240] = { [sym_line_comment] = STATE(240), [sym_block_comment] = STATE(240), - [sym__expression] = STATE(2408), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2614), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(893), - [sym_mutable_expression] = STATE(3871), - [sym_expression_list] = STATE(4483), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_var_declaration] = STATE(4284), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4298), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(433), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [241] = { [sym_line_comment] = STATE(241), [sym_block_comment] = STATE(241), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(236), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [242] = { [sym_line_comment] = STATE(242), [sym_block_comment] = STATE(242), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [243] = { [sym_line_comment] = STATE(243), [sym_block_comment] = STATE(243), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4279), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(1821), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [244] = { [sym_line_comment] = STATE(244), [sym_block_comment] = STATE(244), - [sym_type_parameters] = STATE(465), - [ts_builtin_sym_end] = ACTIONS(1879), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1881), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_union] = ACTIONS(1881), - [anon_sym_pub] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_enum] = ACTIONS(1881), - [anon_sym_interface] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_QMARK] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_GT_GT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_AMP_CARET] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_or] = ACTIONS(1881), - [sym_none] = ACTIONS(1881), - [sym_true] = ACTIONS(1881), - [sym_false] = ACTIONS(1881), - [sym_nil] = ACTIONS(1881), - [anon_sym_QMARK_DOT] = ACTIONS(1881), - [anon_sym_POUND_LBRACK] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_BANGin] = ACTIONS(1881), - [anon_sym_match] = ACTIONS(1881), - [anon_sym_select] = ACTIONS(1881), - [anon_sym_STAR_EQ] = ACTIONS(1881), - [anon_sym_SLASH_EQ] = ACTIONS(1881), - [anon_sym_PERCENT_EQ] = ACTIONS(1881), - [anon_sym_LT_LT_EQ] = ACTIONS(1881), - [anon_sym_GT_GT_EQ] = ACTIONS(1881), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1881), - [anon_sym_AMP_EQ] = ACTIONS(1881), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1881), - [anon_sym_PLUS_EQ] = ACTIONS(1881), - [anon_sym_DASH_EQ] = ACTIONS(1881), - [anon_sym_PIPE_EQ] = ACTIONS(1881), - [anon_sym_CARET_EQ] = ACTIONS(1881), - [anon_sym_COLON_EQ] = ACTIONS(1881), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1881), - [anon_sym_sql] = ACTIONS(1881), - [sym_int_literal] = ACTIONS(1881), - [sym_float_literal] = ACTIONS(1881), - [sym_rune_literal] = ACTIONS(1881), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1881), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [anon_sym_assert] = ACTIONS(1881), - [anon_sym_defer] = ACTIONS(1881), - [anon_sym_goto] = ACTIONS(1881), - [anon_sym_break] = ACTIONS(1881), - [anon_sym_continue] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1881), - [anon_sym_DOLLARfor] = ACTIONS(1881), - [anon_sym_for] = ACTIONS(1881), - [anon_sym_POUND] = ACTIONS(1881), - [anon_sym_asm] = ACTIONS(1881), - [anon_sym_AT_LBRACK] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1881), - [sym___single_quote] = ACTIONS(1881), - [sym___c_double_quote] = ACTIONS(1881), - [sym___c_single_quote] = ACTIONS(1881), - [sym___r_double_quote] = ACTIONS(1881), - [sym___r_single_quote] = ACTIONS(1881), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1219), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [245] = { [sym_line_comment] = STATE(245), [sym_block_comment] = STATE(245), - [sym__expression] = STATE(2306), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(893), - [sym_mutable_expression] = STATE(3871), - [sym_expression_list] = STATE(4483), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_var_declaration] = STATE(4283), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2303), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(582), + [sym_mutable_expression] = STATE(3787), + [sym_expression_list] = STATE(4409), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_var_declaration] = STATE(4015), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [246] = { [sym_line_comment] = STATE(246), [sym_block_comment] = STATE(246), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4075), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(1046), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [247] = { [sym_line_comment] = STATE(247), [sym_block_comment] = STATE(247), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(246), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4265), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(2097), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [248] = { [sym_line_comment] = STATE(248), [sym_block_comment] = STATE(248), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_COLON] = ACTIONS(1897), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1889), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1889), - [anon_sym_AMP_CARET] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1889), - [anon_sym_POUND_LBRACK] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_STAR_EQ] = ACTIONS(1889), - [anon_sym_SLASH_EQ] = ACTIONS(1889), - [anon_sym_PERCENT_EQ] = ACTIONS(1889), - [anon_sym_LT_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_AMP_EQ] = ACTIONS(1889), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1889), - [anon_sym_PLUS_EQ] = ACTIONS(1889), - [anon_sym_DASH_EQ] = ACTIONS(1889), - [anon_sym_PIPE_EQ] = ACTIONS(1889), - [anon_sym_CARET_EQ] = ACTIONS(1889), - [anon_sym_COLON_EQ] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4192), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(2570), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [249] = { [sym_line_comment] = STATE(249), [sym_block_comment] = STATE(249), - [sym__expression] = STATE(2352), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(893), - [sym_mutable_expression] = STATE(3871), - [sym_expression_list] = STATE(4483), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_var_declaration] = STATE(4163), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4192), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(2570), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [250] = { [sym_line_comment] = STATE(250), [sym_block_comment] = STATE(250), - [sym__expression] = STATE(1340), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym___rcbr] = STATE(3639), - [aux_sym_string_interpolation_repeat1] = STATE(365), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_go] = ACTIONS(1857), - [anon_sym_spawn] = ACTIONS(1859), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1863), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [251] = { [sym_line_comment] = STATE(251), [sym_block_comment] = STATE(251), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4225), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(2008), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2355), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(582), + [sym_mutable_expression] = STATE(3787), + [sym_expression_list] = STATE(4409), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_var_declaration] = STATE(4249), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [252] = { [sym_line_comment] = STATE(252), [sym_block_comment] = STATE(252), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4278), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(2333), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4125), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(2252), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [253] = { [sym_line_comment] = STATE(253), [sym_block_comment] = STATE(253), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4134), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(1341), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [254] = { [sym_line_comment] = STATE(254), [sym_block_comment] = STATE(254), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4145), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(1095), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(250), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [255] = { [sym_line_comment] = STATE(255), [sym_block_comment] = STATE(255), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [256] = { [sym_line_comment] = STATE(256), [sym_block_comment] = STATE(256), - [sym__expression] = STATE(1340), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym___rcbr] = STATE(3620), - [aux_sym_string_interpolation_repeat1] = STATE(365), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4096), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(2630), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_go] = ACTIONS(1857), - [anon_sym_spawn] = ACTIONS(1859), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1863), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [257] = { [sym_line_comment] = STATE(257), [sym_block_comment] = STATE(257), - [ts_builtin_sym_end] = ACTIONS(1911), - [sym_identifier] = ACTIONS(1913), - [anon_sym_LF] = ACTIONS(1913), - [anon_sym_CR] = ACTIONS(1913), - [anon_sym_CR_LF] = ACTIONS(1913), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1913), - [anon_sym_as] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_EQ] = ACTIONS(1913), - [anon_sym___global] = ACTIONS(1913), - [anon_sym_type] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1913), - [anon_sym_fn] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_LT] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_struct] = ACTIONS(1913), - [anon_sym_union] = ACTIONS(1913), - [anon_sym_pub] = ACTIONS(1913), - [anon_sym_mut] = ACTIONS(1913), - [anon_sym_enum] = ACTIONS(1913), - [anon_sym_interface] = ACTIONS(1913), - [anon_sym_PLUS_PLUS] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1913), - [anon_sym_QMARK] = ACTIONS(1913), - [anon_sym_BANG] = ACTIONS(1913), - [anon_sym_go] = ACTIONS(1913), - [anon_sym_spawn] = ACTIONS(1913), - [anon_sym_json_DOTdecode] = ACTIONS(1913), - [anon_sym_LBRACK2] = ACTIONS(1913), - [anon_sym_TILDE] = ACTIONS(1913), - [anon_sym_CARET] = ACTIONS(1913), - [anon_sym_AMP] = ACTIONS(1913), - [anon_sym_LT_DASH] = ACTIONS(1913), - [anon_sym_LT_LT] = ACTIONS(1913), - [anon_sym_GT_GT] = ACTIONS(1913), - [anon_sym_GT_GT_GT] = ACTIONS(1913), - [anon_sym_AMP_CARET] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_or] = ACTIONS(1913), - [sym_none] = ACTIONS(1913), - [sym_true] = ACTIONS(1913), - [sym_false] = ACTIONS(1913), - [sym_nil] = ACTIONS(1913), - [anon_sym_QMARK_DOT] = ACTIONS(1913), - [anon_sym_POUND_LBRACK] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_DOLLARif] = ACTIONS(1913), - [anon_sym_DOLLARelse] = ACTIONS(1915), - [anon_sym_is] = ACTIONS(1913), - [anon_sym_BANGis] = ACTIONS(1913), - [anon_sym_in] = ACTIONS(1913), - [anon_sym_BANGin] = ACTIONS(1913), - [anon_sym_match] = ACTIONS(1913), - [anon_sym_select] = ACTIONS(1913), - [anon_sym_STAR_EQ] = ACTIONS(1913), - [anon_sym_SLASH_EQ] = ACTIONS(1913), - [anon_sym_PERCENT_EQ] = ACTIONS(1913), - [anon_sym_LT_LT_EQ] = ACTIONS(1913), - [anon_sym_GT_GT_EQ] = ACTIONS(1913), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1913), - [anon_sym_AMP_EQ] = ACTIONS(1913), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1913), - [anon_sym_PLUS_EQ] = ACTIONS(1913), - [anon_sym_DASH_EQ] = ACTIONS(1913), - [anon_sym_PIPE_EQ] = ACTIONS(1913), - [anon_sym_CARET_EQ] = ACTIONS(1913), - [anon_sym_COLON_EQ] = ACTIONS(1913), - [anon_sym_lock] = ACTIONS(1913), - [anon_sym_rlock] = ACTIONS(1913), - [anon_sym_unsafe] = ACTIONS(1913), - [anon_sym_sql] = ACTIONS(1913), - [sym_int_literal] = ACTIONS(1913), - [sym_float_literal] = ACTIONS(1913), - [sym_rune_literal] = ACTIONS(1913), - [sym_pseudo_compile_time_identifier] = ACTIONS(1913), - [anon_sym_shared] = ACTIONS(1913), - [anon_sym_map_LBRACK] = ACTIONS(1913), - [anon_sym_chan] = ACTIONS(1913), - [anon_sym_thread] = ACTIONS(1913), - [anon_sym_atomic] = ACTIONS(1913), - [anon_sym_assert] = ACTIONS(1913), - [anon_sym_defer] = ACTIONS(1913), - [anon_sym_goto] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_DOLLARfor] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(1913), - [anon_sym_asm] = ACTIONS(1913), - [anon_sym_AT_LBRACK] = ACTIONS(1913), - [sym___double_quote] = ACTIONS(1913), - [sym___single_quote] = ACTIONS(1913), - [sym___c_double_quote] = ACTIONS(1913), - [sym___c_single_quote] = ACTIONS(1913), - [sym___r_double_quote] = ACTIONS(1913), - [sym___r_single_quote] = ACTIONS(1913), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4237), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(1696), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [258] = { [sym_line_comment] = STATE(258), [sym_block_comment] = STATE(258), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2335), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(582), + [sym_mutable_expression] = STATE(3787), + [sym_expression_list] = STATE(4409), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_var_declaration] = STATE(4159), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [259] = { [sym_line_comment] = STATE(259), [sym_block_comment] = STATE(259), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4050), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(1197), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [260] = { [sym_line_comment] = STATE(260), [sym_block_comment] = STATE(260), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), [aux_sym_map_init_expression_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1428), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [261] = { [sym_line_comment] = STATE(261), [sym_block_comment] = STATE(261), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4287), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(2856), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2388), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2614), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(582), + [sym_mutable_expression] = STATE(3787), + [sym_expression_list] = STATE(4409), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_var_declaration] = STATE(4078), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [262] = { [sym_line_comment] = STATE(262), [sym_block_comment] = STATE(262), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4225), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(2008), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LF] = ACTIONS(1889), + [anon_sym_CR] = ACTIONS(1889), + [anon_sym_CR_LF] = ACTIONS(1889), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_COMMA] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_EQ] = ACTIONS(1889), + [anon_sym___global] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_PERCENT] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_EQ_EQ] = ACTIONS(1889), + [anon_sym_BANG_EQ] = ACTIONS(1889), + [anon_sym_LT_EQ] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_union] = ACTIONS(1889), + [anon_sym_pub] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1889), + [anon_sym_interface] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1889), + [anon_sym_spawn] = ACTIONS(1889), + [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_LBRACK2] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1889), + [anon_sym_LT_LT] = ACTIONS(1889), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT_GT] = ACTIONS(1889), + [anon_sym_AMP_CARET] = ACTIONS(1889), + [anon_sym_AMP_AMP] = ACTIONS(1889), + [anon_sym_PIPE_PIPE] = ACTIONS(1889), + [anon_sym_or] = ACTIONS(1889), + [sym_none] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_nil] = ACTIONS(1889), + [anon_sym_QMARK_DOT] = ACTIONS(1889), + [anon_sym_POUND_LBRACK] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_DOLLARif] = ACTIONS(1889), + [anon_sym_DOLLARelse] = ACTIONS(1889), + [anon_sym_is] = ACTIONS(1889), + [anon_sym_BANGis] = ACTIONS(1889), + [anon_sym_in] = ACTIONS(1889), + [anon_sym_BANGin] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_select] = ACTIONS(1889), + [anon_sym_STAR_EQ] = ACTIONS(1889), + [anon_sym_SLASH_EQ] = ACTIONS(1889), + [anon_sym_PERCENT_EQ] = ACTIONS(1889), + [anon_sym_LT_LT_EQ] = ACTIONS(1889), + [anon_sym_GT_GT_EQ] = ACTIONS(1889), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1889), + [anon_sym_AMP_EQ] = ACTIONS(1889), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1889), + [anon_sym_PLUS_EQ] = ACTIONS(1889), + [anon_sym_DASH_EQ] = ACTIONS(1889), + [anon_sym_PIPE_EQ] = ACTIONS(1889), + [anon_sym_CARET_EQ] = ACTIONS(1889), + [anon_sym_COLON_EQ] = ACTIONS(1889), + [anon_sym_lock] = ACTIONS(1889), + [anon_sym_rlock] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_sql] = ACTIONS(1889), + [sym_int_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1889), + [sym_rune_literal] = ACTIONS(1889), + [anon_sym_SQUOTE] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(1889), + [anon_sym_c_SQUOTE] = ACTIONS(1889), + [anon_sym_c_DQUOTE] = ACTIONS(1889), + [anon_sym_r_SQUOTE] = ACTIONS(1889), + [anon_sym_r_DQUOTE] = ACTIONS(1889), + [sym_pseudo_compile_time_identifier] = ACTIONS(1889), + [anon_sym_shared] = ACTIONS(1889), + [anon_sym_map_LBRACK] = ACTIONS(1889), + [anon_sym_chan] = ACTIONS(1889), + [anon_sym_thread] = ACTIONS(1889), + [anon_sym_atomic] = ACTIONS(1889), + [anon_sym_assert] = ACTIONS(1889), + [anon_sym_defer] = ACTIONS(1889), + [anon_sym_goto] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_DOLLARfor] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(1889), + [anon_sym_asm] = ACTIONS(1889), + [anon_sym_AT_LBRACK] = ACTIONS(1889), }, [263] = { [sym_line_comment] = STATE(263), [sym_block_comment] = STATE(263), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4062), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(2528), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [264] = { [sym_line_comment] = STATE(264), [sym_block_comment] = STATE(264), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4213), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(498), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LF] = ACTIONS(1889), + [anon_sym_CR] = ACTIONS(1889), + [anon_sym_CR_LF] = ACTIONS(1889), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_COMMA] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_EQ] = ACTIONS(1889), + [anon_sym___global] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_PERCENT] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_EQ_EQ] = ACTIONS(1889), + [anon_sym_BANG_EQ] = ACTIONS(1889), + [anon_sym_LT_EQ] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_union] = ACTIONS(1889), + [anon_sym_pub] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1889), + [anon_sym_interface] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1889), + [anon_sym_spawn] = ACTIONS(1889), + [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_LBRACK2] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1889), + [anon_sym_LT_LT] = ACTIONS(1889), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT_GT] = ACTIONS(1889), + [anon_sym_AMP_CARET] = ACTIONS(1889), + [anon_sym_AMP_AMP] = ACTIONS(1889), + [anon_sym_PIPE_PIPE] = ACTIONS(1889), + [anon_sym_or] = ACTIONS(1889), + [sym_none] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_nil] = ACTIONS(1889), + [anon_sym_QMARK_DOT] = ACTIONS(1889), + [anon_sym_POUND_LBRACK] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_else] = ACTIONS(1889), + [anon_sym_DOLLARif] = ACTIONS(1889), + [anon_sym_is] = ACTIONS(1889), + [anon_sym_BANGis] = ACTIONS(1889), + [anon_sym_in] = ACTIONS(1889), + [anon_sym_BANGin] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_select] = ACTIONS(1889), + [anon_sym_STAR_EQ] = ACTIONS(1889), + [anon_sym_SLASH_EQ] = ACTIONS(1889), + [anon_sym_PERCENT_EQ] = ACTIONS(1889), + [anon_sym_LT_LT_EQ] = ACTIONS(1889), + [anon_sym_GT_GT_EQ] = ACTIONS(1889), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1889), + [anon_sym_AMP_EQ] = ACTIONS(1889), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1889), + [anon_sym_PLUS_EQ] = ACTIONS(1889), + [anon_sym_DASH_EQ] = ACTIONS(1889), + [anon_sym_PIPE_EQ] = ACTIONS(1889), + [anon_sym_CARET_EQ] = ACTIONS(1889), + [anon_sym_COLON_EQ] = ACTIONS(1889), + [anon_sym_lock] = ACTIONS(1889), + [anon_sym_rlock] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_sql] = ACTIONS(1889), + [sym_int_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1889), + [sym_rune_literal] = ACTIONS(1889), + [anon_sym_SQUOTE] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(1889), + [anon_sym_c_SQUOTE] = ACTIONS(1889), + [anon_sym_c_DQUOTE] = ACTIONS(1889), + [anon_sym_r_SQUOTE] = ACTIONS(1889), + [anon_sym_r_DQUOTE] = ACTIONS(1889), + [sym_pseudo_compile_time_identifier] = ACTIONS(1889), + [anon_sym_shared] = ACTIONS(1889), + [anon_sym_map_LBRACK] = ACTIONS(1889), + [anon_sym_chan] = ACTIONS(1889), + [anon_sym_thread] = ACTIONS(1889), + [anon_sym_atomic] = ACTIONS(1889), + [anon_sym_assert] = ACTIONS(1889), + [anon_sym_defer] = ACTIONS(1889), + [anon_sym_goto] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_DOLLARfor] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(1889), + [anon_sym_asm] = ACTIONS(1889), + [anon_sym_AT_LBRACK] = ACTIONS(1889), }, [265] = { [sym_line_comment] = STATE(265), [sym_block_comment] = STATE(265), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(259), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4155), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(2333), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [266] = { [sym_line_comment] = STATE(266), [sym_block_comment] = STATE(266), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4144), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(1709), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4096), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(2630), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [267] = { [sym_line_comment] = STATE(267), [sym_block_comment] = STATE(267), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [sym_type_parameters] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(1897), + [sym_identifier] = ACTIONS(1899), + [anon_sym_LF] = ACTIONS(1899), + [anon_sym_CR] = ACTIONS(1899), + [anon_sym_CR_LF] = ACTIONS(1899), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_as] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym___global] = ACTIONS(1899), + [anon_sym_type] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_PERCENT] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1899), + [anon_sym_GT_EQ] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_struct] = ACTIONS(1899), + [anon_sym_union] = ACTIONS(1899), + [anon_sym_pub] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_enum] = ACTIONS(1899), + [anon_sym_interface] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_QMARK] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_go] = ACTIONS(1899), + [anon_sym_spawn] = ACTIONS(1899), + [anon_sym_json_DOTdecode] = ACTIONS(1899), + [anon_sym_LBRACK2] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1899), + [anon_sym_LT_LT] = ACTIONS(1899), + [anon_sym_GT_GT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1899), + [anon_sym_AMP_CARET] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(1899), + [anon_sym_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_or] = ACTIONS(1899), + [sym_none] = ACTIONS(1899), + [sym_true] = ACTIONS(1899), + [sym_false] = ACTIONS(1899), + [sym_nil] = ACTIONS(1899), + [anon_sym_QMARK_DOT] = ACTIONS(1899), + [anon_sym_POUND_LBRACK] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_DOLLARif] = ACTIONS(1899), + [anon_sym_is] = ACTIONS(1899), + [anon_sym_BANGis] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_BANGin] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_select] = ACTIONS(1899), + [anon_sym_STAR_EQ] = ACTIONS(1899), + [anon_sym_SLASH_EQ] = ACTIONS(1899), + [anon_sym_PERCENT_EQ] = ACTIONS(1899), + [anon_sym_LT_LT_EQ] = ACTIONS(1899), + [anon_sym_GT_GT_EQ] = ACTIONS(1899), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1899), + [anon_sym_AMP_EQ] = ACTIONS(1899), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1899), + [anon_sym_PLUS_EQ] = ACTIONS(1899), + [anon_sym_DASH_EQ] = ACTIONS(1899), + [anon_sym_PIPE_EQ] = ACTIONS(1899), + [anon_sym_CARET_EQ] = ACTIONS(1899), + [anon_sym_COLON_EQ] = ACTIONS(1899), + [anon_sym_lock] = ACTIONS(1899), + [anon_sym_rlock] = ACTIONS(1899), + [anon_sym_unsafe] = ACTIONS(1899), + [anon_sym_sql] = ACTIONS(1899), + [sym_int_literal] = ACTIONS(1899), + [sym_float_literal] = ACTIONS(1899), + [sym_rune_literal] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_c_SQUOTE] = ACTIONS(1899), + [anon_sym_c_DQUOTE] = ACTIONS(1899), + [anon_sym_r_SQUOTE] = ACTIONS(1899), + [anon_sym_r_DQUOTE] = ACTIONS(1899), + [sym_pseudo_compile_time_identifier] = ACTIONS(1899), + [anon_sym_shared] = ACTIONS(1899), + [anon_sym_map_LBRACK] = ACTIONS(1899), + [anon_sym_chan] = ACTIONS(1899), + [anon_sym_thread] = ACTIONS(1899), + [anon_sym_atomic] = ACTIONS(1899), + [anon_sym_assert] = ACTIONS(1899), + [anon_sym_defer] = ACTIONS(1899), + [anon_sym_goto] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_DOLLARfor] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(1899), + [anon_sym_asm] = ACTIONS(1899), + [anon_sym_AT_LBRACK] = ACTIONS(1899), }, [268] = { [sym_line_comment] = STATE(268), [sym_block_comment] = STATE(268), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4154), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(2151), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [269] = { [sym_line_comment] = STATE(269), [sym_block_comment] = STATE(269), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4278), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4155), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), [sym_block] = STATE(2333), - [sym_identifier] = ACTIONS(1815), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [270] = { [sym_line_comment] = STATE(270), [sym_block_comment] = STATE(270), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4068), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(2626), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4096), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(2630), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [271] = { [sym_line_comment] = STATE(271), [sym_block_comment] = STATE(271), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1907), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1910), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_RBRACE] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_fn] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1924), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1927), + [anon_sym_struct] = ACTIONS(1930), + [anon_sym_mut] = ACTIONS(1933), + [anon_sym_QMARK] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_go] = ACTIONS(1942), + [anon_sym_spawn] = ACTIONS(1945), + [anon_sym_json_DOTdecode] = ACTIONS(1948), + [anon_sym_LBRACK2] = ACTIONS(1951), + [anon_sym_TILDE] = ACTIONS(1924), + [anon_sym_CARET] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_LT_DASH] = ACTIONS(1957), + [sym_none] = ACTIONS(1960), + [sym_true] = ACTIONS(1960), + [sym_false] = ACTIONS(1960), + [sym_nil] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1963), + [anon_sym_DOLLARif] = ACTIONS(1966), + [anon_sym_match] = ACTIONS(1969), + [anon_sym_select] = ACTIONS(1972), + [anon_sym_lock] = ACTIONS(1975), + [anon_sym_rlock] = ACTIONS(1975), + [anon_sym_unsafe] = ACTIONS(1978), + [anon_sym_sql] = ACTIONS(1981), + [sym_int_literal] = ACTIONS(1960), + [sym_float_literal] = ACTIONS(1984), + [sym_rune_literal] = ACTIONS(1984), + [anon_sym_SQUOTE] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_c_SQUOTE] = ACTIONS(1993), + [anon_sym_c_DQUOTE] = ACTIONS(1996), + [anon_sym_r_SQUOTE] = ACTIONS(1999), + [anon_sym_r_DQUOTE] = ACTIONS(2002), + [sym_pseudo_compile_time_identifier] = ACTIONS(2005), + [anon_sym_shared] = ACTIONS(2008), + [anon_sym_map_LBRACK] = ACTIONS(2011), + [anon_sym_chan] = ACTIONS(2014), + [anon_sym_thread] = ACTIONS(2017), + [anon_sym_atomic] = ACTIONS(2020), }, [272] = { [sym_line_comment] = STATE(272), [sym_block_comment] = STATE(272), - [sym__expression] = STATE(2292), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(893), - [sym_mutable_expression] = STATE(3871), - [sym_expression_list] = STATE(4483), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_var_declaration] = STATE(4178), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4126), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(2852), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [273] = { [sym_line_comment] = STATE(273), [sym_block_comment] = STATE(273), - [sym__expression] = STATE(2326), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(893), - [sym_mutable_expression] = STATE(3871), - [sym_expression_list] = STATE(4483), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_var_declaration] = STATE(4200), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [274] = { [sym_line_comment] = STATE(274), [sym_block_comment] = STATE(274), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4145), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(1095), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2378), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(582), + [sym_mutable_expression] = STATE(3787), + [sym_expression_list] = STATE(4409), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_var_declaration] = STATE(4258), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [275] = { [sym_line_comment] = STATE(275), [sym_block_comment] = STATE(275), - [sym__expression] = STATE(2288), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(893), - [sym_mutable_expression] = STATE(3871), - [sym_expression_list] = STATE(4483), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_var_declaration] = STATE(4075), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [276] = { [sym_line_comment] = STATE(276), [sym_block_comment] = STATE(276), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4154), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(2151), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2388), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(582), + [sym_mutable_expression] = STATE(3787), + [sym_expression_list] = STATE(4409), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_var_declaration] = STATE(4078), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [277] = { [sym_line_comment] = STATE(277), [sym_block_comment] = STATE(277), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1809), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_CR] = ACTIONS(1809), + [anon_sym_CR_LF] = ACTIONS(1809), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2029), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_EQ] = ACTIONS(2029), + [anon_sym___global] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(2029), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(2029), + [anon_sym_PERCENT] = ACTIONS(2029), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2029), + [anon_sym_EQ_EQ] = ACTIONS(2029), + [anon_sym_BANG_EQ] = ACTIONS(2029), + [anon_sym_LT_EQ] = ACTIONS(2029), + [anon_sym_GT_EQ] = ACTIONS(2029), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_pub] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_interface] = ACTIONS(1809), + [anon_sym_PLUS_PLUS] = ACTIONS(2029), + [anon_sym_DASH_DASH] = ACTIONS(2029), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1809), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(2029), + [anon_sym_GT_GT] = ACTIONS(2029), + [anon_sym_GT_GT_GT] = ACTIONS(2029), + [anon_sym_AMP_CARET] = ACTIONS(2029), + [anon_sym_AMP_AMP] = ACTIONS(2029), + [anon_sym_PIPE_PIPE] = ACTIONS(2029), + [anon_sym_or] = ACTIONS(2029), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(2029), + [anon_sym_POUND_LBRACK] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(2029), + [anon_sym_BANGis] = ACTIONS(2029), + [anon_sym_in] = ACTIONS(2029), + [anon_sym_BANGin] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_STAR_EQ] = ACTIONS(2029), + [anon_sym_SLASH_EQ] = ACTIONS(2029), + [anon_sym_PERCENT_EQ] = ACTIONS(2029), + [anon_sym_LT_LT_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_AMP_EQ] = ACTIONS(2029), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2029), + [anon_sym_PLUS_EQ] = ACTIONS(2029), + [anon_sym_DASH_EQ] = ACTIONS(2029), + [anon_sym_PIPE_EQ] = ACTIONS(2029), + [anon_sym_CARET_EQ] = ACTIONS(2029), + [anon_sym_COLON_EQ] = ACTIONS(2029), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_rune_literal] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_c_SQUOTE] = ACTIONS(1809), + [anon_sym_c_DQUOTE] = ACTIONS(1809), + [anon_sym_r_SQUOTE] = ACTIONS(1809), + [anon_sym_r_DQUOTE] = ACTIONS(1809), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1809), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [anon_sym_assert] = ACTIONS(1809), + [anon_sym_defer] = ACTIONS(1809), + [anon_sym_goto] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_DOLLARfor] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_asm] = ACTIONS(1809), + [anon_sym_AT_LBRACK] = ACTIONS(1809), }, [278] = { [sym_line_comment] = STATE(278), [sym_block_comment] = STATE(278), - [sym__expression] = STATE(2354), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(893), - [sym_mutable_expression] = STATE(3871), - [sym_expression_list] = STATE(4483), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_var_declaration] = STATE(4021), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [279] = { [sym_line_comment] = STATE(279), [sym_block_comment] = STATE(279), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(277), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [280] = { [sym_line_comment] = STATE(280), [sym_block_comment] = STATE(280), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(289), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4018), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(1992), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [281] = { [sym_line_comment] = STATE(281), [sym_block_comment] = STATE(281), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4134), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(1341), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(2039), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LF] = ACTIONS(2041), + [anon_sym_CR] = ACTIONS(2041), + [anon_sym_CR_LF] = ACTIONS(2041), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2041), + [anon_sym_as] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_const] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_EQ] = ACTIONS(2041), + [anon_sym___global] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2041), + [anon_sym_PIPE] = ACTIONS(2041), + [anon_sym_fn] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2041), + [anon_sym_STAR] = ACTIONS(2041), + [anon_sym_SLASH] = ACTIONS(2041), + [anon_sym_PERCENT] = ACTIONS(2041), + [anon_sym_LT] = ACTIONS(2041), + [anon_sym_GT] = ACTIONS(2041), + [anon_sym_EQ_EQ] = ACTIONS(2041), + [anon_sym_BANG_EQ] = ACTIONS(2041), + [anon_sym_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_EQ] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_struct] = ACTIONS(2041), + [anon_sym_union] = ACTIONS(2041), + [anon_sym_pub] = ACTIONS(2041), + [anon_sym_mut] = ACTIONS(2041), + [anon_sym_enum] = ACTIONS(2041), + [anon_sym_interface] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_QMARK] = ACTIONS(2041), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_go] = ACTIONS(2041), + [anon_sym_spawn] = ACTIONS(2041), + [anon_sym_json_DOTdecode] = ACTIONS(2041), + [anon_sym_LBRACK2] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_LT_DASH] = ACTIONS(2041), + [anon_sym_LT_LT] = ACTIONS(2041), + [anon_sym_GT_GT] = ACTIONS(2041), + [anon_sym_GT_GT_GT] = ACTIONS(2041), + [anon_sym_AMP_CARET] = ACTIONS(2041), + [anon_sym_AMP_AMP] = ACTIONS(2041), + [anon_sym_PIPE_PIPE] = ACTIONS(2041), + [anon_sym_or] = ACTIONS(2041), + [sym_none] = ACTIONS(2041), + [sym_true] = ACTIONS(2041), + [sym_false] = ACTIONS(2041), + [sym_nil] = ACTIONS(2041), + [anon_sym_QMARK_DOT] = ACTIONS(2041), + [anon_sym_POUND_LBRACK] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_DOLLARif] = ACTIONS(2041), + [anon_sym_DOLLARelse] = ACTIONS(2043), + [anon_sym_is] = ACTIONS(2041), + [anon_sym_BANGis] = ACTIONS(2041), + [anon_sym_in] = ACTIONS(2041), + [anon_sym_BANGin] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_select] = ACTIONS(2041), + [anon_sym_STAR_EQ] = ACTIONS(2041), + [anon_sym_SLASH_EQ] = ACTIONS(2041), + [anon_sym_PERCENT_EQ] = ACTIONS(2041), + [anon_sym_LT_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2041), + [anon_sym_AMP_EQ] = ACTIONS(2041), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2041), + [anon_sym_PLUS_EQ] = ACTIONS(2041), + [anon_sym_DASH_EQ] = ACTIONS(2041), + [anon_sym_PIPE_EQ] = ACTIONS(2041), + [anon_sym_CARET_EQ] = ACTIONS(2041), + [anon_sym_COLON_EQ] = ACTIONS(2041), + [anon_sym_lock] = ACTIONS(2041), + [anon_sym_rlock] = ACTIONS(2041), + [anon_sym_unsafe] = ACTIONS(2041), + [anon_sym_sql] = ACTIONS(2041), + [sym_int_literal] = ACTIONS(2041), + [sym_float_literal] = ACTIONS(2041), + [sym_rune_literal] = ACTIONS(2041), + [anon_sym_SQUOTE] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(2041), + [anon_sym_c_SQUOTE] = ACTIONS(2041), + [anon_sym_c_DQUOTE] = ACTIONS(2041), + [anon_sym_r_SQUOTE] = ACTIONS(2041), + [anon_sym_r_DQUOTE] = ACTIONS(2041), + [sym_pseudo_compile_time_identifier] = ACTIONS(2041), + [anon_sym_shared] = ACTIONS(2041), + [anon_sym_map_LBRACK] = ACTIONS(2041), + [anon_sym_chan] = ACTIONS(2041), + [anon_sym_thread] = ACTIONS(2041), + [anon_sym_atomic] = ACTIONS(2041), + [anon_sym_assert] = ACTIONS(2041), + [anon_sym_defer] = ACTIONS(2041), + [anon_sym_goto] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_DOLLARfor] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_POUND] = ACTIONS(2041), + [anon_sym_asm] = ACTIONS(2041), + [anon_sym_AT_LBRACK] = ACTIONS(2041), }, [282] = { [sym_line_comment] = STATE(282), [sym_block_comment] = STATE(282), - [sym__expression] = STATE(2408), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(893), - [sym_mutable_expression] = STATE(3871), - [sym_expression_list] = STATE(4483), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_var_declaration] = STATE(4284), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4275), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(1829), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [283] = { [sym_line_comment] = STATE(283), [sym_block_comment] = STATE(283), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2323), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(582), + [sym_mutable_expression] = STATE(3787), + [sym_expression_list] = STATE(4409), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_var_declaration] = STATE(4195), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [284] = { [sym_line_comment] = STATE(284), [sym_block_comment] = STATE(284), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4278), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(2333), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(268), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [285] = { [sym_line_comment] = STATE(285), [sym_block_comment] = STATE(285), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4068), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(2626), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4075), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(1046), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [286] = { [sym_line_comment] = STATE(286), [sym_block_comment] = STATE(286), - [sym__expression] = STATE(2322), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(893), - [sym_mutable_expression] = STATE(3871), - [sym_expression_list] = STATE(4483), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_var_declaration] = STATE(4060), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [287] = { [sym_line_comment] = STATE(287), [sym_block_comment] = STATE(287), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2391), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(582), + [sym_mutable_expression] = STATE(3787), + [sym_expression_list] = STATE(4409), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_var_declaration] = STATE(4238), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [288] = { [sym_line_comment] = STATE(288), [sym_block_comment] = STATE(288), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(2053), + [sym_identifier] = ACTIONS(2055), + [anon_sym_LF] = ACTIONS(2055), + [anon_sym_CR] = ACTIONS(2055), + [anon_sym_CR_LF] = ACTIONS(2055), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_EQ] = ACTIONS(2055), + [anon_sym___global] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(2055), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_PERCENT] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_EQ_EQ] = ACTIONS(2055), + [anon_sym_BANG_EQ] = ACTIONS(2055), + [anon_sym_LT_EQ] = ACTIONS(2055), + [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(2055), + [anon_sym_union] = ACTIONS(2055), + [anon_sym_pub] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2063), + [anon_sym_enum] = ACTIONS(2055), + [anon_sym_interface] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_QMARK] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2055), + [anon_sym_spawn] = ACTIONS(2055), + [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_LBRACK2] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_LT] = ACTIONS(2055), + [anon_sym_GT_GT] = ACTIONS(2055), + [anon_sym_GT_GT_GT] = ACTIONS(2055), + [anon_sym_AMP_CARET] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2055), + [anon_sym_PIPE_PIPE] = ACTIONS(2055), + [anon_sym_or] = ACTIONS(2055), + [sym_none] = ACTIONS(2055), + [sym_true] = ACTIONS(2055), + [sym_false] = ACTIONS(2055), + [sym_nil] = ACTIONS(2055), + [anon_sym_QMARK_DOT] = ACTIONS(2055), + [anon_sym_POUND_LBRACK] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_DOLLARif] = ACTIONS(2055), + [anon_sym_is] = ACTIONS(2055), + [anon_sym_BANGis] = ACTIONS(2055), + [anon_sym_in] = ACTIONS(2055), + [anon_sym_BANGin] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_select] = ACTIONS(2055), + [anon_sym_STAR_EQ] = ACTIONS(2055), + [anon_sym_SLASH_EQ] = ACTIONS(2055), + [anon_sym_PERCENT_EQ] = ACTIONS(2055), + [anon_sym_LT_LT_EQ] = ACTIONS(2055), + [anon_sym_GT_GT_EQ] = ACTIONS(2055), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), + [anon_sym_AMP_EQ] = ACTIONS(2055), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), + [anon_sym_PLUS_EQ] = ACTIONS(2055), + [anon_sym_DASH_EQ] = ACTIONS(2055), + [anon_sym_PIPE_EQ] = ACTIONS(2055), + [anon_sym_CARET_EQ] = ACTIONS(2055), + [anon_sym_COLON_EQ] = ACTIONS(2055), + [anon_sym_lock] = ACTIONS(2055), + [anon_sym_rlock] = ACTIONS(2055), + [anon_sym_unsafe] = ACTIONS(2055), + [anon_sym_sql] = ACTIONS(2055), + [sym_int_literal] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), + [sym_rune_literal] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2055), + [anon_sym_c_SQUOTE] = ACTIONS(2055), + [anon_sym_c_DQUOTE] = ACTIONS(2055), + [anon_sym_r_SQUOTE] = ACTIONS(2055), + [anon_sym_r_DQUOTE] = ACTIONS(2055), + [sym_pseudo_compile_time_identifier] = ACTIONS(2055), + [anon_sym_shared] = ACTIONS(2055), + [anon_sym_map_LBRACK] = ACTIONS(2055), + [anon_sym_chan] = ACTIONS(2055), + [anon_sym_thread] = ACTIONS(2055), + [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_assert] = ACTIONS(2055), + [anon_sym_defer] = ACTIONS(2055), + [anon_sym_goto] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_DOLLARfor] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(2055), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym_AT_LBRACK] = ACTIONS(2055), }, [289] = { [sym_line_comment] = STATE(289), [sym_block_comment] = STATE(289), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2335), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2614), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(582), + [sym_mutable_expression] = STATE(3787), + [sym_expression_list] = STATE(4409), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_var_declaration] = STATE(4159), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [290] = { [sym_line_comment] = STATE(290), [sym_block_comment] = STATE(290), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [291] = { [sym_line_comment] = STATE(291), [sym_block_comment] = STATE(291), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4185), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(1153), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [292] = { [sym_line_comment] = STATE(292), [sym_block_comment] = STATE(292), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2295), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(582), + [sym_mutable_expression] = STATE(3787), + [sym_expression_list] = STATE(4409), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_var_declaration] = STATE(4038), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [293] = { [sym_line_comment] = STATE(293), [sym_block_comment] = STATE(293), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4024), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(1982), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2405), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(582), + [sym_mutable_expression] = STATE(3787), + [sym_expression_list] = STATE(4409), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_var_declaration] = STATE(4124), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1975), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [294] = { [sym_line_comment] = STATE(294), [sym_block_comment] = STATE(294), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4062), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(2528), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2408), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(582), + [sym_mutable_expression] = STATE(3787), + [sym_expression_list] = STATE(4409), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_var_declaration] = STATE(4271), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [295] = { [sym_line_comment] = STATE(295), [sym_block_comment] = STATE(295), - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(893), - [sym_mutable_expression] = STATE(3871), - [sym_expression_list] = STATE(4483), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_var_declaration] = STATE(4015), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4125), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(2252), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [296] = { [sym_line_comment] = STATE(296), [sym_block_comment] = STATE(296), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [297] = { - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [298] = { - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(299), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [299] = { - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [300] = { - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), [ts_builtin_sym_end] = ACTIONS(1807), [sym_identifier] = ACTIONS(1809), [anon_sym_LF] = ACTIONS(1809), @@ -57619,38 +57131,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1809), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1987), [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1987), + [anon_sym_as] = ACTIONS(1809), [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1987), + [anon_sym_COMMA] = ACTIONS(1809), [anon_sym_const] = ACTIONS(1809), [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_EQ] = ACTIONS(1987), + [anon_sym_EQ] = ACTIONS(1809), [anon_sym___global] = ACTIONS(1809), [anon_sym_type] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1987), + [anon_sym_PIPE] = ACTIONS(1809), [anon_sym_fn] = ACTIONS(1809), [anon_sym_PLUS] = ACTIONS(1809), [anon_sym_DASH] = ACTIONS(1809), [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1987), - [anon_sym_PERCENT] = ACTIONS(1987), - [anon_sym_LT] = ACTIONS(1987), - [anon_sym_GT] = ACTIONS(1987), - [anon_sym_EQ_EQ] = ACTIONS(1987), - [anon_sym_BANG_EQ] = ACTIONS(1987), - [anon_sym_LT_EQ] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1807), [anon_sym_struct] = ACTIONS(1809), [anon_sym_union] = ACTIONS(1809), [anon_sym_pub] = ACTIONS(1809), [anon_sym_mut] = ACTIONS(1809), [anon_sym_enum] = ACTIONS(1809), [anon_sym_interface] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1987), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), [anon_sym_QMARK] = ACTIONS(1809), [anon_sym_BANG] = ACTIONS(1809), [anon_sym_go] = ACTIONS(1809), @@ -57661,40 +57172,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1809), [anon_sym_AMP] = ACTIONS(1809), [anon_sym_LT_DASH] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1987), - [anon_sym_GT_GT] = ACTIONS(1987), - [anon_sym_GT_GT_GT] = ACTIONS(1987), - [anon_sym_AMP_CARET] = ACTIONS(1987), - [anon_sym_AMP_AMP] = ACTIONS(1987), - [anon_sym_PIPE_PIPE] = ACTIONS(1987), - [anon_sym_or] = ACTIONS(1987), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_AMP_CARET] = ACTIONS(1809), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_or] = ACTIONS(1809), [sym_none] = ACTIONS(1809), [sym_true] = ACTIONS(1809), [sym_false] = ACTIONS(1809), [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1987), - [anon_sym_POUND_LBRACK] = ACTIONS(1987), + [anon_sym_QMARK_DOT] = ACTIONS(1809), + [anon_sym_POUND_LBRACK] = ACTIONS(1809), [anon_sym_if] = ACTIONS(1809), + [anon_sym_else] = ACTIONS(1809), [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1987), - [anon_sym_BANGis] = ACTIONS(1987), - [anon_sym_in] = ACTIONS(1987), - [anon_sym_BANGin] = ACTIONS(1987), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1809), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1809), [anon_sym_match] = ACTIONS(1809), [anon_sym_select] = ACTIONS(1809), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_COLON_EQ] = ACTIONS(1987), + [anon_sym_STAR_EQ] = ACTIONS(1809), + [anon_sym_SLASH_EQ] = ACTIONS(1809), + [anon_sym_PERCENT_EQ] = ACTIONS(1809), + [anon_sym_LT_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_GT_EQ] = ACTIONS(1809), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1809), + [anon_sym_AMP_EQ] = ACTIONS(1809), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1809), + [anon_sym_PLUS_EQ] = ACTIONS(1809), + [anon_sym_DASH_EQ] = ACTIONS(1809), + [anon_sym_PIPE_EQ] = ACTIONS(1809), + [anon_sym_CARET_EQ] = ACTIONS(1809), + [anon_sym_COLON_EQ] = ACTIONS(1809), [anon_sym_lock] = ACTIONS(1809), [anon_sym_rlock] = ACTIONS(1809), [anon_sym_unsafe] = ACTIONS(1809), @@ -57702,6 +57214,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1809), [sym_float_literal] = ACTIONS(1809), [sym_rune_literal] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_c_SQUOTE] = ACTIONS(1809), + [anon_sym_c_DQUOTE] = ACTIONS(1809), + [anon_sym_r_SQUOTE] = ACTIONS(1809), + [anon_sym_r_DQUOTE] = ACTIONS(1809), [sym_pseudo_compile_time_identifier] = ACTIONS(1809), [anon_sym_shared] = ACTIONS(1809), [anon_sym_map_LBRACK] = ACTIONS(1809), @@ -57719,952 +57237,1874 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(1809), [anon_sym_asm] = ACTIONS(1809), [anon_sym_AT_LBRACK] = ACTIONS(1809), - [sym___double_quote] = ACTIONS(1809), - [sym___single_quote] = ACTIONS(1809), - [sym___c_double_quote] = ACTIONS(1809), - [sym___c_single_quote] = ACTIONS(1809), - [sym___r_double_quote] = ACTIONS(1809), - [sym___r_single_quote] = ACTIONS(1809), + }, + [297] = { + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1219), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [298] = { + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(297), + [sym_identifier] = ACTIONS(1219), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [299] = { + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(238), + [sym_identifier] = ACTIONS(1219), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [300] = { + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2079), + [anon_sym_as] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_COMMA] = ACTIONS(2079), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_EQ] = ACTIONS(2079), + [anon_sym___global] = ACTIONS(2079), + [anon_sym_type] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_SLASH] = ACTIONS(2079), + [anon_sym_PERCENT] = ACTIONS(2079), + [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(2077), + [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(2079), + [anon_sym_BANG] = ACTIONS(2079), + [anon_sym_go] = ACTIONS(2079), + [anon_sym_spawn] = ACTIONS(2079), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2079), + [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(2079), + [anon_sym_GT_GT] = ACTIONS(2079), + [anon_sym_GT_GT_GT] = ACTIONS(2079), + [anon_sym_AMP_CARET] = ACTIONS(2079), + [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(2079), + [anon_sym_POUND_LBRACK] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_DOLLARif] = ACTIONS(2079), + [anon_sym_DOLLARelse] = ACTIONS(2081), + [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), + [anon_sym_AT_LBRACK] = ACTIONS(2079), }, [301] = { [sym_line_comment] = STATE(301), [sym_block_comment] = STATE(301), - [sym__expression] = STATE(2297), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(893), - [sym_mutable_expression] = STATE(3871), - [sym_expression_list] = STATE(4483), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_var_declaration] = STATE(4230), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4074), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_block] = STATE(1334), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [302] = { [sym_line_comment] = STATE(302), [sym_block_comment] = STATE(302), - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2614), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(893), - [sym_mutable_expression] = STATE(3871), - [sym_expression_list] = STATE(4483), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_var_declaration] = STATE(4015), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_map_keyed_element] = STATE(1926), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_map_init_expression_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [303] = { [sym_line_comment] = STATE(303), [sym_block_comment] = STATE(303), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(1991), + [sym__expression] = STATE(2380), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(582), + [sym_mutable_expression] = STATE(3787), + [sym_expression_list] = STATE(4409), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_var_declaration] = STATE(4259), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_fn] = ACTIONS(2005), - [anon_sym_PLUS] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_struct] = ACTIONS(2014), - [anon_sym_mut] = ACTIONS(2017), - [anon_sym_QMARK] = ACTIONS(2020), - [anon_sym_BANG] = ACTIONS(2023), - [anon_sym_go] = ACTIONS(2026), - [anon_sym_spawn] = ACTIONS(2029), - [anon_sym_json_DOTdecode] = ACTIONS(2032), - [anon_sym_LBRACK2] = ACTIONS(2035), - [anon_sym_TILDE] = ACTIONS(2008), - [anon_sym_CARET] = ACTIONS(2008), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_LT_DASH] = ACTIONS(2041), - [sym_none] = ACTIONS(2044), - [sym_true] = ACTIONS(2044), - [sym_false] = ACTIONS(2044), - [sym_nil] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2047), - [anon_sym_DOLLARif] = ACTIONS(2050), - [anon_sym_match] = ACTIONS(2053), - [anon_sym_select] = ACTIONS(2056), - [anon_sym_lock] = ACTIONS(2059), - [anon_sym_rlock] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2062), - [anon_sym_sql] = ACTIONS(2065), - [sym_int_literal] = ACTIONS(2044), - [sym_float_literal] = ACTIONS(2068), - [sym_rune_literal] = ACTIONS(2068), - [sym_pseudo_compile_time_identifier] = ACTIONS(2071), - [anon_sym_shared] = ACTIONS(2074), - [anon_sym_map_LBRACK] = ACTIONS(2077), - [anon_sym_chan] = ACTIONS(2080), - [anon_sym_thread] = ACTIONS(2083), - [anon_sym_atomic] = ACTIONS(2086), - [sym___double_quote] = ACTIONS(2089), - [sym___single_quote] = ACTIONS(2092), - [sym___c_double_quote] = ACTIONS(2095), - [sym___c_single_quote] = ACTIONS(2098), - [sym___r_double_quote] = ACTIONS(2101), - [sym___r_single_quote] = ACTIONS(2104), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [304] = { [sym_line_comment] = STATE(304), [sym_block_comment] = STATE(304), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4068), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(2626), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2319), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(582), + [sym_mutable_expression] = STATE(3787), + [sym_expression_list] = STATE(4409), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_var_declaration] = STATE(4103), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [305] = { [sym_line_comment] = STATE(305), [sym_block_comment] = STATE(305), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4278), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_block] = STATE(2333), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1809), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_CR] = ACTIONS(1809), + [anon_sym_CR_LF] = ACTIONS(1809), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_EQ] = ACTIONS(1809), + [anon_sym___global] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_pub] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_interface] = ACTIONS(1809), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1809), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_AMP_CARET] = ACTIONS(1809), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_or] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1809), + [anon_sym_POUND_LBRACK] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1809), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_STAR_EQ] = ACTIONS(1809), + [anon_sym_SLASH_EQ] = ACTIONS(1809), + [anon_sym_PERCENT_EQ] = ACTIONS(1809), + [anon_sym_LT_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_GT_EQ] = ACTIONS(1809), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1809), + [anon_sym_AMP_EQ] = ACTIONS(1809), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1809), + [anon_sym_PLUS_EQ] = ACTIONS(1809), + [anon_sym_DASH_EQ] = ACTIONS(1809), + [anon_sym_PIPE_EQ] = ACTIONS(1809), + [anon_sym_CARET_EQ] = ACTIONS(1809), + [anon_sym_COLON_EQ] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_rune_literal] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_c_SQUOTE] = ACTIONS(1809), + [anon_sym_c_DQUOTE] = ACTIONS(1809), + [anon_sym_r_SQUOTE] = ACTIONS(1809), + [anon_sym_r_DQUOTE] = ACTIONS(1809), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1809), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [anon_sym_assert] = ACTIONS(1809), + [anon_sym_defer] = ACTIONS(1809), + [anon_sym_goto] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_DOLLARfor] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_asm] = ACTIONS(1809), + [anon_sym_AT_LBRACK] = ACTIONS(1809), }, [306] = { [sym_line_comment] = STATE(306), [sym_block_comment] = STATE(306), - [ts_builtin_sym_end] = ACTIONS(1811), - [sym_identifier] = ACTIONS(1813), - [anon_sym_LF] = ACTIONS(1813), - [anon_sym_CR] = ACTIONS(1813), - [anon_sym_CR_LF] = ACTIONS(1813), + [ts_builtin_sym_end] = ACTIONS(2087), + [sym_identifier] = ACTIONS(2089), + [anon_sym_LF] = ACTIONS(2089), + [anon_sym_CR] = ACTIONS(2089), + [anon_sym_CR_LF] = ACTIONS(2089), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_as] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_COMMA] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(1813), - [anon_sym_EQ] = ACTIONS(1813), - [anon_sym___global] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1813), - [anon_sym_PIPE] = ACTIONS(1813), - [anon_sym_fn] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_SLASH] = ACTIONS(1813), - [anon_sym_PERCENT] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_GT] = ACTIONS(1813), - [anon_sym_EQ_EQ] = ACTIONS(1813), - [anon_sym_BANG_EQ] = ACTIONS(1813), - [anon_sym_LT_EQ] = ACTIONS(1813), - [anon_sym_GT_EQ] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_union] = ACTIONS(1813), - [anon_sym_pub] = ACTIONS(1813), - [anon_sym_mut] = ACTIONS(1813), - [anon_sym_enum] = ACTIONS(1813), - [anon_sym_interface] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_QMARK] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_go] = ACTIONS(1813), - [anon_sym_spawn] = ACTIONS(1813), - [anon_sym_json_DOTdecode] = ACTIONS(1813), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_LT_DASH] = ACTIONS(1813), - [anon_sym_LT_LT] = ACTIONS(1813), - [anon_sym_GT_GT] = ACTIONS(1813), - [anon_sym_GT_GT_GT] = ACTIONS(1813), - [anon_sym_AMP_CARET] = ACTIONS(1813), - [anon_sym_AMP_AMP] = ACTIONS(1813), - [anon_sym_PIPE_PIPE] = ACTIONS(1813), - [anon_sym_or] = ACTIONS(1813), - [sym_none] = ACTIONS(1813), - [sym_true] = ACTIONS(1813), - [sym_false] = ACTIONS(1813), - [sym_nil] = ACTIONS(1813), - [anon_sym_QMARK_DOT] = ACTIONS(1813), - [anon_sym_POUND_LBRACK] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_DOLLARif] = ACTIONS(1813), - [anon_sym_DOLLARelse] = ACTIONS(1813), - [anon_sym_is] = ACTIONS(1813), - [anon_sym_BANGis] = ACTIONS(1813), - [anon_sym_in] = ACTIONS(1813), - [anon_sym_BANGin] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_STAR_EQ] = ACTIONS(1813), - [anon_sym_SLASH_EQ] = ACTIONS(1813), - [anon_sym_PERCENT_EQ] = ACTIONS(1813), - [anon_sym_LT_LT_EQ] = ACTIONS(1813), - [anon_sym_GT_GT_EQ] = ACTIONS(1813), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1813), - [anon_sym_AMP_EQ] = ACTIONS(1813), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1813), - [anon_sym_PLUS_EQ] = ACTIONS(1813), - [anon_sym_DASH_EQ] = ACTIONS(1813), - [anon_sym_PIPE_EQ] = ACTIONS(1813), - [anon_sym_CARET_EQ] = ACTIONS(1813), - [anon_sym_COLON_EQ] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1813), - [anon_sym_rlock] = ACTIONS(1813), - [anon_sym_unsafe] = ACTIONS(1813), - [anon_sym_sql] = ACTIONS(1813), - [sym_int_literal] = ACTIONS(1813), - [sym_float_literal] = ACTIONS(1813), - [sym_rune_literal] = ACTIONS(1813), - [sym_pseudo_compile_time_identifier] = ACTIONS(1813), - [anon_sym_shared] = ACTIONS(1813), - [anon_sym_map_LBRACK] = ACTIONS(1813), - [anon_sym_chan] = ACTIONS(1813), - [anon_sym_thread] = ACTIONS(1813), - [anon_sym_atomic] = ACTIONS(1813), - [anon_sym_assert] = ACTIONS(1813), - [anon_sym_defer] = ACTIONS(1813), - [anon_sym_goto] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_DOLLARfor] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_POUND] = ACTIONS(1813), - [anon_sym_asm] = ACTIONS(1813), - [anon_sym_AT_LBRACK] = ACTIONS(1813), - [sym___double_quote] = ACTIONS(1813), - [sym___single_quote] = ACTIONS(1813), - [sym___c_double_quote] = ACTIONS(1813), - [sym___c_single_quote] = ACTIONS(1813), - [sym___r_double_quote] = ACTIONS(1813), - [sym___r_single_quote] = ACTIONS(1813), + [anon_sym_DOT] = ACTIONS(2089), + [anon_sym_as] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_EQ] = ACTIONS(2089), + [anon_sym___global] = ACTIONS(2089), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_fn] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_PERCENT] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_GT] = ACTIONS(2089), + [anon_sym_EQ_EQ] = ACTIONS(2089), + [anon_sym_BANG_EQ] = ACTIONS(2089), + [anon_sym_LT_EQ] = ACTIONS(2089), + [anon_sym_GT_EQ] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_struct] = ACTIONS(2089), + [anon_sym_union] = ACTIONS(2089), + [anon_sym_pub] = ACTIONS(2089), + [anon_sym_mut] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [anon_sym_interface] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_QMARK] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_go] = ACTIONS(2089), + [anon_sym_spawn] = ACTIONS(2089), + [anon_sym_json_DOTdecode] = ACTIONS(2089), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2089), + [anon_sym_CARET] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_LT_DASH] = ACTIONS(2089), + [anon_sym_LT_LT] = ACTIONS(2089), + [anon_sym_GT_GT] = ACTIONS(2089), + [anon_sym_GT_GT_GT] = ACTIONS(2089), + [anon_sym_AMP_CARET] = ACTIONS(2089), + [anon_sym_AMP_AMP] = ACTIONS(2089), + [anon_sym_PIPE_PIPE] = ACTIONS(2089), + [anon_sym_or] = ACTIONS(2089), + [sym_none] = ACTIONS(2089), + [sym_true] = ACTIONS(2089), + [sym_false] = ACTIONS(2089), + [sym_nil] = ACTIONS(2089), + [anon_sym_QMARK_DOT] = ACTIONS(2089), + [anon_sym_POUND_LBRACK] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(2089), + [anon_sym_is] = ACTIONS(2089), + [anon_sym_BANGis] = ACTIONS(2089), + [anon_sym_in] = ACTIONS(2089), + [anon_sym_BANGin] = ACTIONS(2089), + [anon_sym_match] = ACTIONS(2089), + [anon_sym_select] = ACTIONS(2089), + [anon_sym_STAR_EQ] = ACTIONS(2089), + [anon_sym_SLASH_EQ] = ACTIONS(2089), + [anon_sym_PERCENT_EQ] = ACTIONS(2089), + [anon_sym_LT_LT_EQ] = ACTIONS(2089), + [anon_sym_GT_GT_EQ] = ACTIONS(2089), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2089), + [anon_sym_AMP_EQ] = ACTIONS(2089), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2089), + [anon_sym_PLUS_EQ] = ACTIONS(2089), + [anon_sym_DASH_EQ] = ACTIONS(2089), + [anon_sym_PIPE_EQ] = ACTIONS(2089), + [anon_sym_CARET_EQ] = ACTIONS(2089), + [anon_sym_COLON_EQ] = ACTIONS(2089), + [anon_sym_lock] = ACTIONS(2089), + [anon_sym_rlock] = ACTIONS(2089), + [anon_sym_unsafe] = ACTIONS(2089), + [anon_sym_sql] = ACTIONS(2089), + [sym_int_literal] = ACTIONS(2089), + [sym_float_literal] = ACTIONS(2089), + [sym_rune_literal] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2089), + [anon_sym_c_SQUOTE] = ACTIONS(2089), + [anon_sym_c_DQUOTE] = ACTIONS(2089), + [anon_sym_r_SQUOTE] = ACTIONS(2089), + [anon_sym_r_DQUOTE] = ACTIONS(2089), + [sym_pseudo_compile_time_identifier] = ACTIONS(2089), + [anon_sym_shared] = ACTIONS(2089), + [anon_sym_map_LBRACK] = ACTIONS(2089), + [anon_sym_chan] = ACTIONS(2089), + [anon_sym_thread] = ACTIONS(2089), + [anon_sym_atomic] = ACTIONS(2089), + [anon_sym_assert] = ACTIONS(2089), + [anon_sym_defer] = ACTIONS(2089), + [anon_sym_goto] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_DOLLARfor] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(2089), + [anon_sym_asm] = ACTIONS(2089), + [anon_sym_AT_LBRACK] = ACTIONS(2089), }, [307] = { [sym_line_comment] = STATE(307), [sym_block_comment] = STATE(307), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_map_keyed_element] = STATE(2004), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_map_init_expression_repeat1] = STATE(267), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [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(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2093), + [anon_sym_as] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_COMMA] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_EQ] = ACTIONS(2093), + [anon_sym___global] = ACTIONS(2093), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_PIPE] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(2093), + [anon_sym_SLASH] = ACTIONS(2093), + [anon_sym_PERCENT] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_GT] = ACTIONS(2093), + [anon_sym_EQ_EQ] = ACTIONS(2093), + [anon_sym_BANG_EQ] = ACTIONS(2093), + [anon_sym_LT_EQ] = ACTIONS(2093), + [anon_sym_GT_EQ] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_union] = ACTIONS(2093), + [anon_sym_pub] = ACTIONS(2093), + [anon_sym_mut] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_PLUS_PLUS] = ACTIONS(2093), + [anon_sym_DASH_DASH] = ACTIONS(2093), + [anon_sym_QMARK] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2093), + [anon_sym_json_DOTdecode] = ACTIONS(2093), + [anon_sym_LBRACK2] = ACTIONS(2093), + [anon_sym_TILDE] = ACTIONS(2093), + [anon_sym_CARET] = ACTIONS(2093), + [anon_sym_AMP] = ACTIONS(2093), + [anon_sym_LT_DASH] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_GT_GT] = ACTIONS(2093), + [anon_sym_GT_GT_GT] = ACTIONS(2093), + [anon_sym_AMP_CARET] = ACTIONS(2093), + [anon_sym_AMP_AMP] = ACTIONS(2093), + [anon_sym_PIPE_PIPE] = ACTIONS(2093), + [anon_sym_or] = ACTIONS(2093), + [sym_none] = ACTIONS(2093), + [sym_true] = ACTIONS(2093), + [sym_false] = ACTIONS(2093), + [sym_nil] = ACTIONS(2093), + [anon_sym_QMARK_DOT] = ACTIONS(2093), + [anon_sym_POUND_LBRACK] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_DOLLARif] = ACTIONS(2093), + [anon_sym_is] = ACTIONS(2093), + [anon_sym_BANGis] = ACTIONS(2093), + [anon_sym_in] = ACTIONS(2093), + [anon_sym_BANGin] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_select] = ACTIONS(2093), + [anon_sym_STAR_EQ] = ACTIONS(2093), + [anon_sym_SLASH_EQ] = ACTIONS(2093), + [anon_sym_PERCENT_EQ] = ACTIONS(2093), + [anon_sym_LT_LT_EQ] = ACTIONS(2093), + [anon_sym_GT_GT_EQ] = ACTIONS(2093), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2093), + [anon_sym_AMP_EQ] = ACTIONS(2093), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2093), + [anon_sym_PLUS_EQ] = ACTIONS(2093), + [anon_sym_DASH_EQ] = ACTIONS(2093), + [anon_sym_PIPE_EQ] = ACTIONS(2093), + [anon_sym_CARET_EQ] = ACTIONS(2093), + [anon_sym_COLON_EQ] = ACTIONS(2093), + [anon_sym_lock] = ACTIONS(2093), + [anon_sym_rlock] = ACTIONS(2093), + [anon_sym_unsafe] = ACTIONS(2093), + [anon_sym_sql] = ACTIONS(2093), + [sym_int_literal] = ACTIONS(2093), + [sym_float_literal] = ACTIONS(2093), + [sym_rune_literal] = ACTIONS(2093), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(2093), + [anon_sym_c_SQUOTE] = ACTIONS(2093), + [anon_sym_c_DQUOTE] = ACTIONS(2093), + [anon_sym_r_SQUOTE] = ACTIONS(2093), + [anon_sym_r_DQUOTE] = ACTIONS(2093), + [sym_pseudo_compile_time_identifier] = ACTIONS(2093), + [anon_sym_shared] = ACTIONS(2093), + [anon_sym_map_LBRACK] = ACTIONS(2093), + [anon_sym_chan] = ACTIONS(2093), + [anon_sym_thread] = ACTIONS(2093), + [anon_sym_atomic] = ACTIONS(2093), + [anon_sym_assert] = ACTIONS(2093), + [anon_sym_defer] = ACTIONS(2093), + [anon_sym_goto] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_DOLLARfor] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2093), + [anon_sym_asm] = ACTIONS(2093), + [anon_sym_AT_LBRACK] = ACTIONS(2093), }, [308] = { [sym_line_comment] = STATE(308), [sym_block_comment] = STATE(308), - [sym__expression] = STATE(1260), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym___rcbr] = STATE(3667), - [aux_sym_string_interpolation_repeat1] = STATE(250), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2604), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4566), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_go] = ACTIONS(1857), - [anon_sym_spawn] = ACTIONS(1859), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1863), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [309] = { [sym_line_comment] = STATE(309), [sym_block_comment] = STATE(309), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2097), + [anon_sym_LF] = ACTIONS(2097), + [anon_sym_CR] = ACTIONS(2097), + [anon_sym_CR_LF] = ACTIONS(2097), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2097), + [anon_sym_as] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_COMMA] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_EQ] = ACTIONS(2097), + [anon_sym___global] = ACTIONS(2097), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_PIPE] = ACTIONS(2097), + [anon_sym_fn] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2097), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_PERCENT] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_GT] = ACTIONS(2097), + [anon_sym_EQ_EQ] = ACTIONS(2097), + [anon_sym_BANG_EQ] = ACTIONS(2097), + [anon_sym_LT_EQ] = ACTIONS(2097), + [anon_sym_GT_EQ] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2095), + [anon_sym_struct] = ACTIONS(2097), + [anon_sym_union] = ACTIONS(2097), + [anon_sym_pub] = ACTIONS(2097), + [anon_sym_mut] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [anon_sym_interface] = ACTIONS(2097), + [anon_sym_PLUS_PLUS] = ACTIONS(2097), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [anon_sym_QMARK] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_go] = ACTIONS(2097), + [anon_sym_spawn] = ACTIONS(2097), + [anon_sym_json_DOTdecode] = ACTIONS(2097), + [anon_sym_LBRACK2] = ACTIONS(2097), + [anon_sym_TILDE] = ACTIONS(2097), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2097), + [anon_sym_LT_LT] = ACTIONS(2097), + [anon_sym_GT_GT] = ACTIONS(2097), + [anon_sym_GT_GT_GT] = ACTIONS(2097), + [anon_sym_AMP_CARET] = ACTIONS(2097), + [anon_sym_AMP_AMP] = ACTIONS(2097), + [anon_sym_PIPE_PIPE] = ACTIONS(2097), + [anon_sym_or] = ACTIONS(2097), + [sym_none] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [sym_nil] = ACTIONS(2097), + [anon_sym_QMARK_DOT] = ACTIONS(2097), + [anon_sym_POUND_LBRACK] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_DOLLARif] = ACTIONS(2097), + [anon_sym_is] = ACTIONS(2097), + [anon_sym_BANGis] = ACTIONS(2097), + [anon_sym_in] = ACTIONS(2097), + [anon_sym_BANGin] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_select] = ACTIONS(2097), + [anon_sym_STAR_EQ] = ACTIONS(2097), + [anon_sym_SLASH_EQ] = ACTIONS(2097), + [anon_sym_PERCENT_EQ] = ACTIONS(2097), + [anon_sym_LT_LT_EQ] = ACTIONS(2097), + [anon_sym_GT_GT_EQ] = ACTIONS(2097), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2097), + [anon_sym_AMP_EQ] = ACTIONS(2097), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2097), + [anon_sym_PLUS_EQ] = ACTIONS(2097), + [anon_sym_DASH_EQ] = ACTIONS(2097), + [anon_sym_PIPE_EQ] = ACTIONS(2097), + [anon_sym_CARET_EQ] = ACTIONS(2097), + [anon_sym_COLON_EQ] = ACTIONS(2097), + [anon_sym_lock] = ACTIONS(2097), + [anon_sym_rlock] = ACTIONS(2097), + [anon_sym_unsafe] = ACTIONS(2097), + [anon_sym_sql] = ACTIONS(2097), + [sym_int_literal] = ACTIONS(2097), + [sym_float_literal] = ACTIONS(2097), + [sym_rune_literal] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2097), + [anon_sym_c_SQUOTE] = ACTIONS(2097), + [anon_sym_c_DQUOTE] = ACTIONS(2097), + [anon_sym_r_SQUOTE] = ACTIONS(2097), + [anon_sym_r_DQUOTE] = ACTIONS(2097), + [sym_pseudo_compile_time_identifier] = ACTIONS(2097), + [anon_sym_shared] = ACTIONS(2097), + [anon_sym_map_LBRACK] = ACTIONS(2097), + [anon_sym_chan] = ACTIONS(2097), + [anon_sym_thread] = ACTIONS(2097), + [anon_sym_atomic] = ACTIONS(2097), + [anon_sym_assert] = ACTIONS(2097), + [anon_sym_defer] = ACTIONS(2097), + [anon_sym_goto] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_DOLLARfor] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_POUND] = ACTIONS(2097), + [anon_sym_asm] = ACTIONS(2097), + [anon_sym_AT_LBRACK] = ACTIONS(2097), + }, + [310] = { + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [ts_builtin_sym_end] = ACTIONS(2099), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LF] = ACTIONS(2101), + [anon_sym_CR] = ACTIONS(2101), + [anon_sym_CR_LF] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2101), + [anon_sym_as] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_COMMA] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_EQ] = ACTIONS(2101), + [anon_sym___global] = ACTIONS(2101), + [anon_sym_type] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_fn] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_SLASH] = ACTIONS(2101), + [anon_sym_PERCENT] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_GT] = ACTIONS(2101), + [anon_sym_EQ_EQ] = ACTIONS(2101), + [anon_sym_BANG_EQ] = ACTIONS(2101), + [anon_sym_LT_EQ] = ACTIONS(2101), + [anon_sym_GT_EQ] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2099), + [anon_sym_struct] = ACTIONS(2101), + [anon_sym_union] = ACTIONS(2101), + [anon_sym_pub] = ACTIONS(2101), + [anon_sym_mut] = ACTIONS(2101), + [anon_sym_enum] = ACTIONS(2101), + [anon_sym_interface] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_QMARK] = ACTIONS(2101), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_go] = ACTIONS(2101), + [anon_sym_spawn] = ACTIONS(2101), + [anon_sym_json_DOTdecode] = ACTIONS(2101), + [anon_sym_LBRACK2] = ACTIONS(2101), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_LT_DASH] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(2101), + [anon_sym_GT_GT] = ACTIONS(2101), + [anon_sym_GT_GT_GT] = ACTIONS(2101), + [anon_sym_AMP_CARET] = ACTIONS(2101), + [anon_sym_AMP_AMP] = ACTIONS(2101), + [anon_sym_PIPE_PIPE] = ACTIONS(2101), + [anon_sym_or] = ACTIONS(2101), + [sym_none] = ACTIONS(2101), + [sym_true] = ACTIONS(2101), + [sym_false] = ACTIONS(2101), + [sym_nil] = ACTIONS(2101), + [anon_sym_QMARK_DOT] = ACTIONS(2101), + [anon_sym_POUND_LBRACK] = ACTIONS(2101), + [anon_sym_if] = ACTIONS(2101), + [anon_sym_DOLLARif] = ACTIONS(2101), + [anon_sym_is] = ACTIONS(2101), + [anon_sym_BANGis] = ACTIONS(2101), + [anon_sym_in] = ACTIONS(2101), + [anon_sym_BANGin] = ACTIONS(2101), + [anon_sym_match] = ACTIONS(2101), + [anon_sym_select] = ACTIONS(2101), + [anon_sym_STAR_EQ] = ACTIONS(2101), + [anon_sym_SLASH_EQ] = ACTIONS(2101), + [anon_sym_PERCENT_EQ] = ACTIONS(2101), + [anon_sym_LT_LT_EQ] = ACTIONS(2101), + [anon_sym_GT_GT_EQ] = ACTIONS(2101), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2101), + [anon_sym_AMP_EQ] = ACTIONS(2101), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2101), + [anon_sym_PLUS_EQ] = ACTIONS(2101), + [anon_sym_DASH_EQ] = ACTIONS(2101), + [anon_sym_PIPE_EQ] = ACTIONS(2101), + [anon_sym_CARET_EQ] = ACTIONS(2101), + [anon_sym_COLON_EQ] = ACTIONS(2101), + [anon_sym_lock] = ACTIONS(2101), + [anon_sym_rlock] = ACTIONS(2101), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(2101), + [sym_int_literal] = ACTIONS(2101), + [sym_float_literal] = ACTIONS(2101), + [sym_rune_literal] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2101), + [anon_sym_DQUOTE] = ACTIONS(2101), + [anon_sym_c_SQUOTE] = ACTIONS(2101), + [anon_sym_c_DQUOTE] = ACTIONS(2101), + [anon_sym_r_SQUOTE] = ACTIONS(2101), + [anon_sym_r_DQUOTE] = ACTIONS(2101), + [sym_pseudo_compile_time_identifier] = ACTIONS(2101), + [anon_sym_shared] = ACTIONS(2101), + [anon_sym_map_LBRACK] = ACTIONS(2101), + [anon_sym_chan] = ACTIONS(2101), + [anon_sym_thread] = ACTIONS(2101), + [anon_sym_atomic] = ACTIONS(2101), + [anon_sym_assert] = ACTIONS(2101), + [anon_sym_defer] = ACTIONS(2101), + [anon_sym_goto] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2101), + [anon_sym_continue] = ACTIONS(2101), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_DOLLARfor] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2101), + [anon_sym_POUND] = ACTIONS(2101), + [anon_sym_asm] = ACTIONS(2101), + [anon_sym_AT_LBRACK] = ACTIONS(2101), + }, + [311] = { + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(2103), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(2105), + [anon_sym_CR] = ACTIONS(2105), + [anon_sym_CR_LF] = ACTIONS(2105), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_EQ] = ACTIONS(2105), + [anon_sym___global] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2105), + [anon_sym_GT_EQ] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(2105), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [anon_sym_QMARK] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_go] = ACTIONS(2105), + [anon_sym_spawn] = ACTIONS(2105), + [anon_sym_json_DOTdecode] = ACTIONS(2105), + [anon_sym_LBRACK2] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_LT_DASH] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_AMP_CARET] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_or] = ACTIONS(2105), + [sym_none] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_nil] = ACTIONS(2105), + [anon_sym_QMARK_DOT] = ACTIONS(2105), + [anon_sym_POUND_LBRACK] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_DOLLARif] = ACTIONS(2105), + [anon_sym_is] = ACTIONS(2105), + [anon_sym_BANGis] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_BANGin] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_select] = ACTIONS(2105), + [anon_sym_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), + }, + [312] = { + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2107), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [313] = { + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), [ts_builtin_sym_end] = ACTIONS(2113), [sym_identifier] = ACTIONS(2115), [anon_sym_LF] = ACTIONS(2115), @@ -58754,6 +59194,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(2115), [sym_float_literal] = ACTIONS(2115), [sym_rune_literal] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_c_SQUOTE] = ACTIONS(2115), + [anon_sym_c_DQUOTE] = ACTIONS(2115), + [anon_sym_r_SQUOTE] = ACTIONS(2115), + [anon_sym_r_DQUOTE] = ACTIONS(2115), [sym_pseudo_compile_time_identifier] = ACTIONS(2115), [anon_sym_shared] = ACTIONS(2115), [anon_sym_map_LBRACK] = ACTIONS(2115), @@ -58771,16 +59217,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2115), [anon_sym_asm] = ACTIONS(2115), [anon_sym_AT_LBRACK] = ACTIONS(2115), - [sym___double_quote] = ACTIONS(2115), - [sym___single_quote] = ACTIONS(2115), - [sym___c_double_quote] = ACTIONS(2115), - [sym___c_single_quote] = ACTIONS(2115), - [sym___r_double_quote] = ACTIONS(2115), - [sym___r_single_quote] = ACTIONS(2115), }, - [310] = { - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), + [314] = { + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), [ts_builtin_sym_end] = ACTIONS(2117), [sym_identifier] = ACTIONS(2119), [anon_sym_LF] = ACTIONS(2119), @@ -58870,6 +59310,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(2119), [sym_float_literal] = ACTIONS(2119), [sym_rune_literal] = ACTIONS(2119), + [anon_sym_SQUOTE] = ACTIONS(2119), + [anon_sym_DQUOTE] = ACTIONS(2119), + [anon_sym_c_SQUOTE] = ACTIONS(2119), + [anon_sym_c_DQUOTE] = ACTIONS(2119), + [anon_sym_r_SQUOTE] = ACTIONS(2119), + [anon_sym_r_DQUOTE] = ACTIONS(2119), [sym_pseudo_compile_time_identifier] = ACTIONS(2119), [anon_sym_shared] = ACTIONS(2119), [anon_sym_map_LBRACK] = ACTIONS(2119), @@ -58887,480 +59333,474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2119), [anon_sym_asm] = ACTIONS(2119), [anon_sym_AT_LBRACK] = ACTIONS(2119), - [sym___double_quote] = ACTIONS(2119), - [sym___single_quote] = ACTIONS(2119), - [sym___c_double_quote] = ACTIONS(2119), - [sym___c_single_quote] = ACTIONS(2119), - [sym___r_double_quote] = ACTIONS(2119), - [sym___r_single_quote] = ACTIONS(2119), }, - [311] = { - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1360), + [315] = { + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [ts_builtin_sym_end] = ACTIONS(2121), + [sym_identifier] = ACTIONS(2123), + [anon_sym_LF] = ACTIONS(2123), + [anon_sym_CR] = ACTIONS(2123), + [anon_sym_CR_LF] = ACTIONS(2123), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2123), + [anon_sym_as] = ACTIONS(2123), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_COMMA] = ACTIONS(2123), + [anon_sym_const] = ACTIONS(2123), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_EQ] = ACTIONS(2123), + [anon_sym___global] = ACTIONS(2123), + [anon_sym_type] = ACTIONS(2123), + [anon_sym_PIPE] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(2123), + [anon_sym_PLUS] = ACTIONS(2123), + [anon_sym_DASH] = ACTIONS(2123), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_SLASH] = ACTIONS(2123), + [anon_sym_PERCENT] = ACTIONS(2123), + [anon_sym_LT] = ACTIONS(2123), + [anon_sym_GT] = ACTIONS(2123), + [anon_sym_EQ_EQ] = ACTIONS(2123), + [anon_sym_BANG_EQ] = ACTIONS(2123), + [anon_sym_LT_EQ] = ACTIONS(2123), + [anon_sym_GT_EQ] = ACTIONS(2123), + [anon_sym_LBRACK] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2123), + [anon_sym_pub] = ACTIONS(2123), + [anon_sym_mut] = ACTIONS(2123), + [anon_sym_enum] = ACTIONS(2123), + [anon_sym_interface] = ACTIONS(2123), + [anon_sym_PLUS_PLUS] = ACTIONS(2123), + [anon_sym_DASH_DASH] = ACTIONS(2123), + [anon_sym_QMARK] = ACTIONS(2123), + [anon_sym_BANG] = ACTIONS(2123), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2123), + [anon_sym_json_DOTdecode] = ACTIONS(2123), + [anon_sym_LBRACK2] = ACTIONS(2123), + [anon_sym_TILDE] = ACTIONS(2123), + [anon_sym_CARET] = ACTIONS(2123), + [anon_sym_AMP] = ACTIONS(2123), + [anon_sym_LT_DASH] = ACTIONS(2123), + [anon_sym_LT_LT] = ACTIONS(2123), + [anon_sym_GT_GT] = ACTIONS(2123), + [anon_sym_GT_GT_GT] = ACTIONS(2123), + [anon_sym_AMP_CARET] = ACTIONS(2123), + [anon_sym_AMP_AMP] = ACTIONS(2123), + [anon_sym_PIPE_PIPE] = ACTIONS(2123), + [anon_sym_or] = ACTIONS(2123), + [sym_none] = ACTIONS(2123), + [sym_true] = ACTIONS(2123), + [sym_false] = ACTIONS(2123), + [sym_nil] = ACTIONS(2123), + [anon_sym_QMARK_DOT] = ACTIONS(2123), + [anon_sym_POUND_LBRACK] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2123), + [anon_sym_DOLLARif] = ACTIONS(2123), + [anon_sym_is] = ACTIONS(2123), + [anon_sym_BANGis] = ACTIONS(2123), + [anon_sym_in] = ACTIONS(2123), + [anon_sym_BANGin] = ACTIONS(2123), + [anon_sym_match] = ACTIONS(2123), + [anon_sym_select] = ACTIONS(2123), + [anon_sym_STAR_EQ] = ACTIONS(2123), + [anon_sym_SLASH_EQ] = ACTIONS(2123), + [anon_sym_PERCENT_EQ] = ACTIONS(2123), + [anon_sym_LT_LT_EQ] = ACTIONS(2123), + [anon_sym_GT_GT_EQ] = ACTIONS(2123), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2123), + [anon_sym_AMP_EQ] = ACTIONS(2123), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2123), + [anon_sym_PLUS_EQ] = ACTIONS(2123), + [anon_sym_DASH_EQ] = ACTIONS(2123), + [anon_sym_PIPE_EQ] = ACTIONS(2123), + [anon_sym_CARET_EQ] = ACTIONS(2123), + [anon_sym_COLON_EQ] = ACTIONS(2123), + [anon_sym_lock] = ACTIONS(2123), + [anon_sym_rlock] = ACTIONS(2123), + [anon_sym_unsafe] = ACTIONS(2123), + [anon_sym_sql] = ACTIONS(2123), + [sym_int_literal] = ACTIONS(2123), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(2123), + [anon_sym_c_SQUOTE] = ACTIONS(2123), + [anon_sym_c_DQUOTE] = ACTIONS(2123), + [anon_sym_r_SQUOTE] = ACTIONS(2123), + [anon_sym_r_DQUOTE] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(2123), + [anon_sym_shared] = ACTIONS(2123), + [anon_sym_map_LBRACK] = ACTIONS(2123), + [anon_sym_chan] = ACTIONS(2123), + [anon_sym_thread] = ACTIONS(2123), + [anon_sym_atomic] = ACTIONS(2123), + [anon_sym_assert] = ACTIONS(2123), + [anon_sym_defer] = ACTIONS(2123), + [anon_sym_goto] = ACTIONS(2123), + [anon_sym_break] = ACTIONS(2123), + [anon_sym_continue] = ACTIONS(2123), + [anon_sym_return] = ACTIONS(2123), + [anon_sym_DOLLARfor] = ACTIONS(2123), + [anon_sym_for] = ACTIONS(2123), + [anon_sym_POUND] = ACTIONS(2123), + [anon_sym_asm] = ACTIONS(2123), + [anon_sym_AT_LBRACK] = ACTIONS(2123), + }, + [316] = { + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [ts_builtin_sym_end] = ACTIONS(2125), + [sym_identifier] = ACTIONS(2127), + [anon_sym_LF] = ACTIONS(2127), + [anon_sym_CR] = ACTIONS(2127), + [anon_sym_CR_LF] = ACTIONS(2127), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2127), + [anon_sym_as] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_COMMA] = ACTIONS(2127), + [anon_sym_const] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_EQ] = ACTIONS(2127), + [anon_sym___global] = ACTIONS(2127), + [anon_sym_type] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2127), + [anon_sym_fn] = ACTIONS(2127), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_SLASH] = ACTIONS(2127), + [anon_sym_PERCENT] = ACTIONS(2127), + [anon_sym_LT] = ACTIONS(2127), + [anon_sym_GT] = ACTIONS(2127), + [anon_sym_EQ_EQ] = ACTIONS(2127), + [anon_sym_BANG_EQ] = ACTIONS(2127), + [anon_sym_LT_EQ] = ACTIONS(2127), + [anon_sym_GT_EQ] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2127), + [anon_sym_union] = ACTIONS(2127), + [anon_sym_pub] = ACTIONS(2127), + [anon_sym_mut] = ACTIONS(2127), + [anon_sym_enum] = ACTIONS(2127), + [anon_sym_interface] = ACTIONS(2127), + [anon_sym_PLUS_PLUS] = ACTIONS(2127), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym_QMARK] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_go] = ACTIONS(2127), + [anon_sym_spawn] = ACTIONS(2127), + [anon_sym_json_DOTdecode] = ACTIONS(2127), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2127), + [anon_sym_CARET] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2127), + [anon_sym_LT_DASH] = ACTIONS(2127), + [anon_sym_LT_LT] = ACTIONS(2127), + [anon_sym_GT_GT] = ACTIONS(2127), + [anon_sym_GT_GT_GT] = ACTIONS(2127), + [anon_sym_AMP_CARET] = ACTIONS(2127), + [anon_sym_AMP_AMP] = ACTIONS(2127), + [anon_sym_PIPE_PIPE] = ACTIONS(2127), + [anon_sym_or] = ACTIONS(2127), + [sym_none] = ACTIONS(2127), + [sym_true] = ACTIONS(2127), + [sym_false] = ACTIONS(2127), + [sym_nil] = ACTIONS(2127), + [anon_sym_QMARK_DOT] = ACTIONS(2127), + [anon_sym_POUND_LBRACK] = ACTIONS(2127), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_DOLLARif] = ACTIONS(2127), + [anon_sym_is] = ACTIONS(2127), + [anon_sym_BANGis] = ACTIONS(2127), + [anon_sym_in] = ACTIONS(2127), + [anon_sym_BANGin] = ACTIONS(2127), + [anon_sym_match] = ACTIONS(2127), + [anon_sym_select] = ACTIONS(2127), + [anon_sym_STAR_EQ] = ACTIONS(2127), + [anon_sym_SLASH_EQ] = ACTIONS(2127), + [anon_sym_PERCENT_EQ] = ACTIONS(2127), + [anon_sym_LT_LT_EQ] = ACTIONS(2127), + [anon_sym_GT_GT_EQ] = ACTIONS(2127), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2127), + [anon_sym_AMP_EQ] = ACTIONS(2127), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2127), + [anon_sym_PLUS_EQ] = ACTIONS(2127), + [anon_sym_DASH_EQ] = ACTIONS(2127), + [anon_sym_PIPE_EQ] = ACTIONS(2127), + [anon_sym_CARET_EQ] = ACTIONS(2127), + [anon_sym_COLON_EQ] = ACTIONS(2127), + [anon_sym_lock] = ACTIONS(2127), + [anon_sym_rlock] = ACTIONS(2127), + [anon_sym_unsafe] = ACTIONS(2127), + [anon_sym_sql] = ACTIONS(2127), + [sym_int_literal] = ACTIONS(2127), + [sym_float_literal] = ACTIONS(2127), + [sym_rune_literal] = ACTIONS(2127), + [anon_sym_SQUOTE] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(2127), + [anon_sym_c_SQUOTE] = ACTIONS(2127), + [anon_sym_c_DQUOTE] = ACTIONS(2127), + [anon_sym_r_SQUOTE] = ACTIONS(2127), + [anon_sym_r_DQUOTE] = ACTIONS(2127), + [sym_pseudo_compile_time_identifier] = ACTIONS(2127), + [anon_sym_shared] = ACTIONS(2127), + [anon_sym_map_LBRACK] = ACTIONS(2127), + [anon_sym_chan] = ACTIONS(2127), + [anon_sym_thread] = ACTIONS(2127), + [anon_sym_atomic] = ACTIONS(2127), + [anon_sym_assert] = ACTIONS(2127), + [anon_sym_defer] = ACTIONS(2127), + [anon_sym_goto] = ACTIONS(2127), + [anon_sym_break] = ACTIONS(2127), + [anon_sym_continue] = ACTIONS(2127), + [anon_sym_return] = ACTIONS(2127), + [anon_sym_DOLLARfor] = ACTIONS(2127), + [anon_sym_for] = ACTIONS(2127), + [anon_sym_POUND] = ACTIONS(2127), + [anon_sym_asm] = ACTIONS(2127), + [anon_sym_AT_LBRACK] = ACTIONS(2127), + }, + [317] = { + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1398), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1396), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(449), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [312] = { - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), - [ts_builtin_sym_end] = ACTIONS(2123), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LF] = ACTIONS(2125), - [anon_sym_CR] = ACTIONS(2125), - [anon_sym_CR_LF] = ACTIONS(2125), + [318] = { + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [ts_builtin_sym_end] = ACTIONS(2131), + [sym_identifier] = ACTIONS(2133), + [anon_sym_LF] = ACTIONS(2133), + [anon_sym_CR] = ACTIONS(2133), + [anon_sym_CR_LF] = ACTIONS(2133), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_COMMA] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_EQ] = ACTIONS(2125), - [anon_sym___global] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_PIPE] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_PERCENT] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_GT] = ACTIONS(2125), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2125), - [anon_sym_GT_EQ] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2123), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_mut] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [anon_sym_QMARK] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_go] = ACTIONS(2125), - [anon_sym_spawn] = ACTIONS(2125), - [anon_sym_json_DOTdecode] = ACTIONS(2125), - [anon_sym_LBRACK2] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_CARET] = ACTIONS(2125), - [anon_sym_AMP] = ACTIONS(2125), - [anon_sym_LT_DASH] = ACTIONS(2125), - [anon_sym_LT_LT] = ACTIONS(2125), - [anon_sym_GT_GT] = ACTIONS(2125), - [anon_sym_GT_GT_GT] = ACTIONS(2125), - [anon_sym_AMP_CARET] = ACTIONS(2125), - [anon_sym_AMP_AMP] = ACTIONS(2125), - [anon_sym_PIPE_PIPE] = ACTIONS(2125), - [anon_sym_or] = ACTIONS(2125), - [sym_none] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_nil] = ACTIONS(2125), - [anon_sym_QMARK_DOT] = ACTIONS(2125), - [anon_sym_POUND_LBRACK] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_DOLLARif] = ACTIONS(2125), - [anon_sym_is] = ACTIONS(2125), - [anon_sym_BANGis] = ACTIONS(2125), - [anon_sym_in] = ACTIONS(2125), - [anon_sym_BANGin] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_select] = ACTIONS(2125), - [anon_sym_STAR_EQ] = ACTIONS(2125), - [anon_sym_SLASH_EQ] = ACTIONS(2125), - [anon_sym_PERCENT_EQ] = ACTIONS(2125), - [anon_sym_LT_LT_EQ] = ACTIONS(2125), - [anon_sym_GT_GT_EQ] = ACTIONS(2125), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2125), - [anon_sym_AMP_EQ] = ACTIONS(2125), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2125), - [anon_sym_PLUS_EQ] = ACTIONS(2125), - [anon_sym_DASH_EQ] = ACTIONS(2125), - [anon_sym_PIPE_EQ] = ACTIONS(2125), - [anon_sym_CARET_EQ] = ACTIONS(2125), - [anon_sym_COLON_EQ] = ACTIONS(2125), - [anon_sym_lock] = ACTIONS(2125), - [anon_sym_rlock] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(2125), - [sym_int_literal] = ACTIONS(2125), - [sym_float_literal] = ACTIONS(2125), - [sym_rune_literal] = ACTIONS(2125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2125), - [anon_sym_shared] = ACTIONS(2125), - [anon_sym_map_LBRACK] = ACTIONS(2125), - [anon_sym_chan] = ACTIONS(2125), - [anon_sym_thread] = ACTIONS(2125), - [anon_sym_atomic] = ACTIONS(2125), - [anon_sym_assert] = ACTIONS(2125), - [anon_sym_defer] = ACTIONS(2125), - [anon_sym_goto] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_DOLLARfor] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_POUND] = ACTIONS(2125), - [anon_sym_asm] = ACTIONS(2125), - [anon_sym_AT_LBRACK] = ACTIONS(2125), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2125), - [sym___c_double_quote] = ACTIONS(2125), - [sym___c_single_quote] = ACTIONS(2125), - [sym___r_double_quote] = ACTIONS(2125), - [sym___r_single_quote] = ACTIONS(2125), - }, - [313] = { - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), - [sym__expression] = STATE(2594), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4387), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [314] = { - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), - [sym__expression] = STATE(2594), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3569), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4387), - [sym_identifier] = ACTIONS(2127), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(2133), + [anon_sym_as] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_COMMA] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2133), + [anon_sym___global] = ACTIONS(2133), + [anon_sym_type] = ACTIONS(2133), + [anon_sym_PIPE] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2133), + [anon_sym_SLASH] = ACTIONS(2133), + [anon_sym_PERCENT] = ACTIONS(2133), + [anon_sym_LT] = ACTIONS(2133), + [anon_sym_GT] = ACTIONS(2133), + [anon_sym_EQ_EQ] = ACTIONS(2133), + [anon_sym_BANG_EQ] = ACTIONS(2133), + [anon_sym_LT_EQ] = ACTIONS(2133), + [anon_sym_GT_EQ] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2133), + [anon_sym_union] = ACTIONS(2133), + [anon_sym_pub] = ACTIONS(2133), + [anon_sym_mut] = ACTIONS(2133), + [anon_sym_enum] = ACTIONS(2133), + [anon_sym_interface] = ACTIONS(2133), + [anon_sym_PLUS_PLUS] = ACTIONS(2133), + [anon_sym_DASH_DASH] = ACTIONS(2133), + [anon_sym_QMARK] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2133), + [anon_sym_go] = ACTIONS(2133), + [anon_sym_spawn] = ACTIONS(2133), + [anon_sym_json_DOTdecode] = ACTIONS(2133), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2133), + [anon_sym_CARET] = ACTIONS(2133), [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_LT_DASH] = ACTIONS(2133), + [anon_sym_LT_LT] = ACTIONS(2133), + [anon_sym_GT_GT] = ACTIONS(2133), + [anon_sym_GT_GT_GT] = ACTIONS(2133), + [anon_sym_AMP_CARET] = ACTIONS(2133), + [anon_sym_AMP_AMP] = ACTIONS(2133), + [anon_sym_PIPE_PIPE] = ACTIONS(2133), + [anon_sym_or] = ACTIONS(2133), + [sym_none] = ACTIONS(2133), + [sym_true] = ACTIONS(2133), + [sym_false] = ACTIONS(2133), + [sym_nil] = ACTIONS(2133), + [anon_sym_QMARK_DOT] = ACTIONS(2133), + [anon_sym_POUND_LBRACK] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_DOLLARif] = ACTIONS(2133), + [anon_sym_is] = ACTIONS(2133), + [anon_sym_BANGis] = ACTIONS(2133), + [anon_sym_in] = ACTIONS(2133), + [anon_sym_BANGin] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_STAR_EQ] = ACTIONS(2133), + [anon_sym_SLASH_EQ] = ACTIONS(2133), + [anon_sym_PERCENT_EQ] = ACTIONS(2133), + [anon_sym_LT_LT_EQ] = ACTIONS(2133), + [anon_sym_GT_GT_EQ] = ACTIONS(2133), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2133), + [anon_sym_AMP_EQ] = ACTIONS(2133), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2133), + [anon_sym_PLUS_EQ] = ACTIONS(2133), + [anon_sym_DASH_EQ] = ACTIONS(2133), + [anon_sym_PIPE_EQ] = ACTIONS(2133), + [anon_sym_CARET_EQ] = ACTIONS(2133), + [anon_sym_COLON_EQ] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2133), + [anon_sym_rlock] = ACTIONS(2133), + [anon_sym_unsafe] = ACTIONS(2133), + [anon_sym_sql] = ACTIONS(2133), + [sym_int_literal] = ACTIONS(2133), + [sym_float_literal] = ACTIONS(2133), + [sym_rune_literal] = ACTIONS(2133), + [anon_sym_SQUOTE] = ACTIONS(2133), + [anon_sym_DQUOTE] = ACTIONS(2133), + [anon_sym_c_SQUOTE] = ACTIONS(2133), + [anon_sym_c_DQUOTE] = ACTIONS(2133), + [anon_sym_r_SQUOTE] = ACTIONS(2133), + [anon_sym_r_DQUOTE] = ACTIONS(2133), + [sym_pseudo_compile_time_identifier] = ACTIONS(2133), + [anon_sym_shared] = ACTIONS(2133), + [anon_sym_map_LBRACK] = ACTIONS(2133), + [anon_sym_chan] = ACTIONS(2133), + [anon_sym_thread] = ACTIONS(2133), + [anon_sym_atomic] = ACTIONS(2133), + [anon_sym_assert] = ACTIONS(2133), + [anon_sym_defer] = ACTIONS(2133), + [anon_sym_goto] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_DOLLARfor] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_POUND] = ACTIONS(2133), + [anon_sym_asm] = ACTIONS(2133), + [anon_sym_AT_LBRACK] = ACTIONS(2133), }, - [315] = { - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), + [319] = { + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), [ts_builtin_sym_end] = ACTIONS(2135), [sym_identifier] = ACTIONS(2137), [anon_sym_LF] = ACTIONS(2137), @@ -59368,66 +59808,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(2137), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), + [anon_sym_DOT] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), [anon_sym_LBRACE] = ACTIONS(2137), [anon_sym_COMMA] = ACTIONS(2137), [anon_sym_const] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2139), [anon_sym_EQ] = ACTIONS(2137), [anon_sym___global] = ACTIONS(2137), [anon_sym_type] = ACTIONS(2137), - [anon_sym_PIPE] = ACTIONS(2137), + [anon_sym_PIPE] = ACTIONS(2139), [anon_sym_fn] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_SLASH] = ACTIONS(2137), - [anon_sym_PERCENT] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_GT] = ACTIONS(2137), - [anon_sym_EQ_EQ] = ACTIONS(2137), - [anon_sym_BANG_EQ] = ACTIONS(2137), - [anon_sym_LT_EQ] = ACTIONS(2137), - [anon_sym_GT_EQ] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2135), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2142), [anon_sym_struct] = ACTIONS(2137), [anon_sym_union] = ACTIONS(2137), [anon_sym_pub] = ACTIONS(2137), [anon_sym_mut] = ACTIONS(2137), [anon_sym_enum] = ACTIONS(2137), [anon_sym_interface] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_QMARK] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_QMARK] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), [anon_sym_go] = ACTIONS(2137), [anon_sym_spawn] = ACTIONS(2137), [anon_sym_json_DOTdecode] = ACTIONS(2137), - [anon_sym_LBRACK2] = ACTIONS(2137), + [anon_sym_LBRACK2] = ACTIONS(2139), [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), [anon_sym_LT_DASH] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(2137), - [anon_sym_GT_GT] = ACTIONS(2137), - [anon_sym_GT_GT_GT] = ACTIONS(2137), - [anon_sym_AMP_CARET] = ACTIONS(2137), - [anon_sym_AMP_AMP] = ACTIONS(2137), - [anon_sym_PIPE_PIPE] = ACTIONS(2137), - [anon_sym_or] = ACTIONS(2137), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_AMP_CARET] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_or] = ACTIONS(2139), [sym_none] = ACTIONS(2137), [sym_true] = ACTIONS(2137), [sym_false] = ACTIONS(2137), [sym_nil] = ACTIONS(2137), - [anon_sym_QMARK_DOT] = ACTIONS(2137), - [anon_sym_POUND_LBRACK] = ACTIONS(2137), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_POUND_LBRACK] = ACTIONS(2139), [anon_sym_if] = ACTIONS(2137), [anon_sym_DOLLARif] = ACTIONS(2137), - [anon_sym_is] = ACTIONS(2137), - [anon_sym_BANGis] = ACTIONS(2137), - [anon_sym_in] = ACTIONS(2137), - [anon_sym_BANGin] = ACTIONS(2137), + [anon_sym_is] = ACTIONS(2139), + [anon_sym_BANGis] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_BANGin] = ACTIONS(2139), [anon_sym_match] = ACTIONS(2137), [anon_sym_select] = ACTIONS(2137), [anon_sym_STAR_EQ] = ACTIONS(2137), @@ -59450,6 +59890,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(2137), [sym_float_literal] = ACTIONS(2137), [sym_rune_literal] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(2137), + [anon_sym_c_SQUOTE] = ACTIONS(2137), + [anon_sym_c_DQUOTE] = ACTIONS(2137), + [anon_sym_r_SQUOTE] = ACTIONS(2137), + [anon_sym_r_DQUOTE] = ACTIONS(2137), [sym_pseudo_compile_time_identifier] = ACTIONS(2137), [anon_sym_shared] = ACTIONS(2137), [anon_sym_map_LBRACK] = ACTIONS(2137), @@ -59467,3032 +59913,2098 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2137), [anon_sym_asm] = ACTIONS(2137), [anon_sym_AT_LBRACK] = ACTIONS(2137), - [sym___double_quote] = ACTIONS(2137), - [sym___single_quote] = ACTIONS(2137), - [sym___c_double_quote] = ACTIONS(2137), - [sym___c_single_quote] = ACTIONS(2137), - [sym___r_double_quote] = ACTIONS(2137), - [sym___r_single_quote] = ACTIONS(2137), - }, - [316] = { - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4399), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [317] = { - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [ts_builtin_sym_end] = ACTIONS(2141), - [sym_identifier] = ACTIONS(2143), - [anon_sym_LF] = ACTIONS(2143), - [anon_sym_CR] = ACTIONS(2143), - [anon_sym_CR_LF] = ACTIONS(2143), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2143), - [anon_sym_as] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_COMMA] = ACTIONS(2143), - [anon_sym_const] = ACTIONS(2143), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_EQ] = ACTIONS(2143), - [anon_sym___global] = ACTIONS(2143), - [anon_sym_type] = ACTIONS(2143), - [anon_sym_PIPE] = ACTIONS(2143), - [anon_sym_fn] = ACTIONS(2143), - [anon_sym_PLUS] = ACTIONS(2143), - [anon_sym_DASH] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(2143), - [anon_sym_SLASH] = ACTIONS(2143), - [anon_sym_PERCENT] = ACTIONS(2143), - [anon_sym_LT] = ACTIONS(2143), - [anon_sym_GT] = ACTIONS(2143), - [anon_sym_EQ_EQ] = ACTIONS(2143), - [anon_sym_BANG_EQ] = ACTIONS(2143), - [anon_sym_LT_EQ] = ACTIONS(2143), - [anon_sym_GT_EQ] = ACTIONS(2143), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2143), - [anon_sym_union] = ACTIONS(2143), - [anon_sym_pub] = ACTIONS(2143), - [anon_sym_mut] = ACTIONS(2143), - [anon_sym_enum] = ACTIONS(2143), - [anon_sym_interface] = ACTIONS(2143), - [anon_sym_PLUS_PLUS] = ACTIONS(2143), - [anon_sym_DASH_DASH] = ACTIONS(2143), - [anon_sym_QMARK] = ACTIONS(2143), - [anon_sym_BANG] = ACTIONS(2143), - [anon_sym_go] = ACTIONS(2143), - [anon_sym_spawn] = ACTIONS(2143), - [anon_sym_json_DOTdecode] = ACTIONS(2143), - [anon_sym_LBRACK2] = ACTIONS(2143), - [anon_sym_TILDE] = ACTIONS(2143), - [anon_sym_CARET] = ACTIONS(2143), - [anon_sym_AMP] = ACTIONS(2143), - [anon_sym_LT_DASH] = ACTIONS(2143), - [anon_sym_LT_LT] = ACTIONS(2143), - [anon_sym_GT_GT] = ACTIONS(2143), - [anon_sym_GT_GT_GT] = ACTIONS(2143), - [anon_sym_AMP_CARET] = ACTIONS(2143), - [anon_sym_AMP_AMP] = ACTIONS(2143), - [anon_sym_PIPE_PIPE] = ACTIONS(2143), - [anon_sym_or] = ACTIONS(2143), - [sym_none] = ACTIONS(2143), - [sym_true] = ACTIONS(2143), - [sym_false] = ACTIONS(2143), - [sym_nil] = ACTIONS(2143), - [anon_sym_QMARK_DOT] = ACTIONS(2143), - [anon_sym_POUND_LBRACK] = ACTIONS(2143), - [anon_sym_if] = ACTIONS(2143), - [anon_sym_DOLLARif] = ACTIONS(2143), - [anon_sym_is] = ACTIONS(2143), - [anon_sym_BANGis] = ACTIONS(2143), - [anon_sym_in] = ACTIONS(2143), - [anon_sym_BANGin] = ACTIONS(2143), - [anon_sym_match] = ACTIONS(2143), - [anon_sym_select] = ACTIONS(2143), - [anon_sym_STAR_EQ] = ACTIONS(2143), - [anon_sym_SLASH_EQ] = ACTIONS(2143), - [anon_sym_PERCENT_EQ] = ACTIONS(2143), - [anon_sym_LT_LT_EQ] = ACTIONS(2143), - [anon_sym_GT_GT_EQ] = ACTIONS(2143), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2143), - [anon_sym_AMP_EQ] = ACTIONS(2143), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2143), - [anon_sym_PLUS_EQ] = ACTIONS(2143), - [anon_sym_DASH_EQ] = ACTIONS(2143), - [anon_sym_PIPE_EQ] = ACTIONS(2143), - [anon_sym_CARET_EQ] = ACTIONS(2143), - [anon_sym_COLON_EQ] = ACTIONS(2143), - [anon_sym_lock] = ACTIONS(2143), - [anon_sym_rlock] = ACTIONS(2143), - [anon_sym_unsafe] = ACTIONS(2143), - [anon_sym_sql] = ACTIONS(2143), - [sym_int_literal] = ACTIONS(2143), - [sym_float_literal] = ACTIONS(2143), - [sym_rune_literal] = ACTIONS(2143), - [sym_pseudo_compile_time_identifier] = ACTIONS(2143), - [anon_sym_shared] = ACTIONS(2143), - [anon_sym_map_LBRACK] = ACTIONS(2143), - [anon_sym_chan] = ACTIONS(2143), - [anon_sym_thread] = ACTIONS(2143), - [anon_sym_atomic] = ACTIONS(2143), - [anon_sym_assert] = ACTIONS(2143), - [anon_sym_defer] = ACTIONS(2143), - [anon_sym_goto] = ACTIONS(2143), - [anon_sym_break] = ACTIONS(2143), - [anon_sym_continue] = ACTIONS(2143), - [anon_sym_return] = ACTIONS(2143), - [anon_sym_DOLLARfor] = ACTIONS(2143), - [anon_sym_for] = ACTIONS(2143), - [anon_sym_POUND] = ACTIONS(2143), - [anon_sym_asm] = ACTIONS(2143), - [anon_sym_AT_LBRACK] = ACTIONS(2143), - [sym___double_quote] = ACTIONS(2143), - [sym___single_quote] = ACTIONS(2143), - [sym___c_double_quote] = ACTIONS(2143), - [sym___c_single_quote] = ACTIONS(2143), - [sym___r_double_quote] = ACTIONS(2143), - [sym___r_single_quote] = ACTIONS(2143), - }, - [318] = { - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1889), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1889), - [anon_sym_AMP_CARET] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1889), - [anon_sym_POUND_LBRACK] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_STAR_EQ] = ACTIONS(1889), - [anon_sym_SLASH_EQ] = ACTIONS(1889), - [anon_sym_PERCENT_EQ] = ACTIONS(1889), - [anon_sym_LT_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_AMP_EQ] = ACTIONS(1889), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1889), - [anon_sym_PLUS_EQ] = ACTIONS(1889), - [anon_sym_DASH_EQ] = ACTIONS(1889), - [anon_sym_PIPE_EQ] = ACTIONS(1889), - [anon_sym_CARET_EQ] = ACTIONS(1889), - [anon_sym_COLON_EQ] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), - }, - [319] = { - [sym_line_comment] = STATE(319), - [sym_block_comment] = STATE(319), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1397), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1399), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(338), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2145), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), }, [320] = { [sym_line_comment] = STATE(320), [sym_block_comment] = STATE(320), - [ts_builtin_sym_end] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2149), - [anon_sym_LF] = ACTIONS(2149), - [anon_sym_CR] = ACTIONS(2149), - [anon_sym_CR_LF] = ACTIONS(2149), + [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(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2149), - [anon_sym_as] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_COMMA] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_EQ] = ACTIONS(2149), - [anon_sym___global] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_PIPE] = ACTIONS(2149), - [anon_sym_fn] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_PERCENT] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_GT] = ACTIONS(2149), - [anon_sym_EQ_EQ] = ACTIONS(2149), - [anon_sym_BANG_EQ] = ACTIONS(2149), - [anon_sym_LT_EQ] = ACTIONS(2149), - [anon_sym_GT_EQ] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2149), - [anon_sym_union] = ACTIONS(2149), - [anon_sym_pub] = ACTIONS(2149), - [anon_sym_mut] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_QMARK] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_go] = ACTIONS(2149), - [anon_sym_spawn] = ACTIONS(2149), - [anon_sym_json_DOTdecode] = ACTIONS(2149), - [anon_sym_LBRACK2] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_LT_DASH] = ACTIONS(2149), - [anon_sym_LT_LT] = ACTIONS(2149), - [anon_sym_GT_GT] = ACTIONS(2149), - [anon_sym_GT_GT_GT] = ACTIONS(2149), - [anon_sym_AMP_CARET] = ACTIONS(2149), - [anon_sym_AMP_AMP] = ACTIONS(2149), - [anon_sym_PIPE_PIPE] = ACTIONS(2149), - [anon_sym_or] = ACTIONS(2149), - [sym_none] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_nil] = ACTIONS(2149), - [anon_sym_QMARK_DOT] = ACTIONS(2149), - [anon_sym_POUND_LBRACK] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_DOLLARif] = ACTIONS(2149), - [anon_sym_is] = ACTIONS(2149), - [anon_sym_BANGis] = ACTIONS(2149), - [anon_sym_in] = ACTIONS(2149), - [anon_sym_BANGin] = ACTIONS(2149), - [anon_sym_match] = ACTIONS(2149), - [anon_sym_select] = ACTIONS(2149), - [anon_sym_STAR_EQ] = ACTIONS(2149), - [anon_sym_SLASH_EQ] = ACTIONS(2149), - [anon_sym_PERCENT_EQ] = ACTIONS(2149), - [anon_sym_LT_LT_EQ] = ACTIONS(2149), - [anon_sym_GT_GT_EQ] = ACTIONS(2149), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2149), - [anon_sym_AMP_EQ] = ACTIONS(2149), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2149), - [anon_sym_PLUS_EQ] = ACTIONS(2149), - [anon_sym_DASH_EQ] = ACTIONS(2149), - [anon_sym_PIPE_EQ] = ACTIONS(2149), - [anon_sym_CARET_EQ] = ACTIONS(2149), - [anon_sym_COLON_EQ] = ACTIONS(2149), - [anon_sym_lock] = ACTIONS(2149), - [anon_sym_rlock] = ACTIONS(2149), - [anon_sym_unsafe] = ACTIONS(2149), - [anon_sym_sql] = ACTIONS(2149), - [sym_int_literal] = ACTIONS(2149), - [sym_float_literal] = ACTIONS(2149), - [sym_rune_literal] = ACTIONS(2149), - [sym_pseudo_compile_time_identifier] = ACTIONS(2149), - [anon_sym_shared] = ACTIONS(2149), - [anon_sym_map_LBRACK] = ACTIONS(2149), - [anon_sym_chan] = ACTIONS(2149), - [anon_sym_thread] = ACTIONS(2149), - [anon_sym_atomic] = ACTIONS(2149), - [anon_sym_assert] = ACTIONS(2149), - [anon_sym_defer] = ACTIONS(2149), - [anon_sym_goto] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_DOLLARfor] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_asm] = ACTIONS(2149), - [anon_sym_AT_LBRACK] = ACTIONS(2149), - [sym___double_quote] = ACTIONS(2149), - [sym___single_quote] = ACTIONS(2149), - [sym___c_double_quote] = ACTIONS(2149), - [sym___c_single_quote] = ACTIONS(2149), - [sym___r_double_quote] = ACTIONS(2149), - [sym___r_single_quote] = ACTIONS(2149), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_EQ] = ACTIONS(2147), + [anon_sym___global] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_STAR_EQ] = ACTIONS(2147), + [anon_sym_SLASH_EQ] = ACTIONS(2147), + [anon_sym_PERCENT_EQ] = ACTIONS(2147), + [anon_sym_LT_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_GT_EQ] = ACTIONS(2147), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2147), + [anon_sym_AMP_EQ] = ACTIONS(2147), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2147), + [anon_sym_PLUS_EQ] = ACTIONS(2147), + [anon_sym_DASH_EQ] = ACTIONS(2147), + [anon_sym_PIPE_EQ] = ACTIONS(2147), + [anon_sym_CARET_EQ] = ACTIONS(2147), + [anon_sym_COLON_EQ] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), + [anon_sym_AT_LBRACK] = ACTIONS(2147), }, [321] = { [sym_line_comment] = STATE(321), [sym_block_comment] = STATE(321), - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4628), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(2149), + [sym_identifier] = ACTIONS(2151), + [anon_sym_LF] = ACTIONS(2151), + [anon_sym_CR] = ACTIONS(2151), + [anon_sym_CR_LF] = ACTIONS(2151), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_COMMA] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_EQ] = ACTIONS(2151), + [anon_sym___global] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_PIPE] = ACTIONS(2151), + [anon_sym_fn] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_PERCENT] = ACTIONS(2151), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_GT] = ACTIONS(2151), + [anon_sym_EQ_EQ] = ACTIONS(2151), + [anon_sym_BANG_EQ] = ACTIONS(2151), + [anon_sym_LT_EQ] = ACTIONS(2151), + [anon_sym_GT_EQ] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_struct] = ACTIONS(2151), + [anon_sym_union] = ACTIONS(2151), + [anon_sym_pub] = ACTIONS(2151), + [anon_sym_mut] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), + [anon_sym_interface] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_QMARK] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_go] = ACTIONS(2151), + [anon_sym_spawn] = ACTIONS(2151), + [anon_sym_json_DOTdecode] = ACTIONS(2151), + [anon_sym_LBRACK2] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_LT_DASH] = ACTIONS(2151), + [anon_sym_LT_LT] = ACTIONS(2151), + [anon_sym_GT_GT] = ACTIONS(2151), + [anon_sym_GT_GT_GT] = ACTIONS(2151), + [anon_sym_AMP_CARET] = ACTIONS(2151), + [anon_sym_AMP_AMP] = ACTIONS(2151), + [anon_sym_PIPE_PIPE] = ACTIONS(2151), + [anon_sym_or] = ACTIONS(2151), + [sym_none] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_nil] = ACTIONS(2151), + [anon_sym_QMARK_DOT] = ACTIONS(2151), + [anon_sym_POUND_LBRACK] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_DOLLARif] = ACTIONS(2151), + [anon_sym_is] = ACTIONS(2151), + [anon_sym_BANGis] = ACTIONS(2151), + [anon_sym_in] = ACTIONS(2151), + [anon_sym_BANGin] = ACTIONS(2151), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_select] = ACTIONS(2151), + [anon_sym_STAR_EQ] = ACTIONS(2151), + [anon_sym_SLASH_EQ] = ACTIONS(2151), + [anon_sym_PERCENT_EQ] = ACTIONS(2151), + [anon_sym_LT_LT_EQ] = ACTIONS(2151), + [anon_sym_GT_GT_EQ] = ACTIONS(2151), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2151), + [anon_sym_AMP_EQ] = ACTIONS(2151), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2151), + [anon_sym_PLUS_EQ] = ACTIONS(2151), + [anon_sym_DASH_EQ] = ACTIONS(2151), + [anon_sym_PIPE_EQ] = ACTIONS(2151), + [anon_sym_CARET_EQ] = ACTIONS(2151), + [anon_sym_COLON_EQ] = ACTIONS(2151), + [anon_sym_lock] = ACTIONS(2151), + [anon_sym_rlock] = ACTIONS(2151), + [anon_sym_unsafe] = ACTIONS(2151), + [anon_sym_sql] = ACTIONS(2151), + [sym_int_literal] = ACTIONS(2151), + [sym_float_literal] = ACTIONS(2151), + [sym_rune_literal] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2151), + [anon_sym_c_SQUOTE] = ACTIONS(2151), + [anon_sym_c_DQUOTE] = ACTIONS(2151), + [anon_sym_r_SQUOTE] = ACTIONS(2151), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(2151), + [anon_sym_shared] = ACTIONS(2151), + [anon_sym_map_LBRACK] = ACTIONS(2151), + [anon_sym_chan] = ACTIONS(2151), + [anon_sym_thread] = ACTIONS(2151), + [anon_sym_atomic] = ACTIONS(2151), + [anon_sym_assert] = ACTIONS(2151), + [anon_sym_defer] = ACTIONS(2151), + [anon_sym_goto] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_DOLLARfor] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_POUND] = ACTIONS(2151), + [anon_sym_asm] = ACTIONS(2151), + [anon_sym_AT_LBRACK] = ACTIONS(2151), }, [322] = { [sym_line_comment] = STATE(322), [sym_block_comment] = STATE(322), - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3569), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4628), - [sym_identifier] = ACTIONS(2127), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(2153), + [sym_identifier] = ACTIONS(2155), + [anon_sym_LF] = ACTIONS(2155), + [anon_sym_CR] = ACTIONS(2155), + [anon_sym_CR_LF] = ACTIONS(2155), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_as] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_COMMA] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_EQ] = ACTIONS(2155), + [anon_sym___global] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2155), + [anon_sym_PIPE] = ACTIONS(2155), + [anon_sym_fn] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2155), + [anon_sym_SLASH] = ACTIONS(2155), + [anon_sym_PERCENT] = ACTIONS(2155), + [anon_sym_LT] = ACTIONS(2155), + [anon_sym_GT] = ACTIONS(2155), + [anon_sym_EQ_EQ] = ACTIONS(2155), + [anon_sym_BANG_EQ] = ACTIONS(2155), + [anon_sym_LT_EQ] = ACTIONS(2155), + [anon_sym_GT_EQ] = ACTIONS(2155), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_struct] = ACTIONS(2155), + [anon_sym_union] = ACTIONS(2155), + [anon_sym_pub] = ACTIONS(2155), + [anon_sym_mut] = ACTIONS(2155), + [anon_sym_enum] = ACTIONS(2155), + [anon_sym_interface] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_QMARK] = ACTIONS(2155), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_go] = ACTIONS(2155), + [anon_sym_spawn] = ACTIONS(2155), + [anon_sym_json_DOTdecode] = ACTIONS(2155), + [anon_sym_LBRACK2] = ACTIONS(2155), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_LT_DASH] = ACTIONS(2155), + [anon_sym_LT_LT] = ACTIONS(2155), + [anon_sym_GT_GT] = ACTIONS(2155), + [anon_sym_GT_GT_GT] = ACTIONS(2155), + [anon_sym_AMP_CARET] = ACTIONS(2155), + [anon_sym_AMP_AMP] = ACTIONS(2155), + [anon_sym_PIPE_PIPE] = ACTIONS(2155), + [anon_sym_or] = ACTIONS(2155), + [sym_none] = ACTIONS(2155), + [sym_true] = ACTIONS(2155), + [sym_false] = ACTIONS(2155), + [sym_nil] = ACTIONS(2155), + [anon_sym_QMARK_DOT] = ACTIONS(2155), + [anon_sym_POUND_LBRACK] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_DOLLARif] = ACTIONS(2155), + [anon_sym_is] = ACTIONS(2155), + [anon_sym_BANGis] = ACTIONS(2155), + [anon_sym_in] = ACTIONS(2155), + [anon_sym_BANGin] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_select] = ACTIONS(2155), + [anon_sym_STAR_EQ] = ACTIONS(2155), + [anon_sym_SLASH_EQ] = ACTIONS(2155), + [anon_sym_PERCENT_EQ] = ACTIONS(2155), + [anon_sym_LT_LT_EQ] = ACTIONS(2155), + [anon_sym_GT_GT_EQ] = ACTIONS(2155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2155), + [anon_sym_AMP_EQ] = ACTIONS(2155), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2155), + [anon_sym_PLUS_EQ] = ACTIONS(2155), + [anon_sym_DASH_EQ] = ACTIONS(2155), + [anon_sym_PIPE_EQ] = ACTIONS(2155), + [anon_sym_CARET_EQ] = ACTIONS(2155), + [anon_sym_COLON_EQ] = ACTIONS(2155), + [anon_sym_lock] = ACTIONS(2155), + [anon_sym_rlock] = ACTIONS(2155), + [anon_sym_unsafe] = ACTIONS(2155), + [anon_sym_sql] = ACTIONS(2155), + [sym_int_literal] = ACTIONS(2155), + [sym_float_literal] = ACTIONS(2155), + [sym_rune_literal] = ACTIONS(2155), + [anon_sym_SQUOTE] = ACTIONS(2155), + [anon_sym_DQUOTE] = ACTIONS(2155), + [anon_sym_c_SQUOTE] = ACTIONS(2155), + [anon_sym_c_DQUOTE] = ACTIONS(2155), + [anon_sym_r_SQUOTE] = ACTIONS(2155), + [anon_sym_r_DQUOTE] = ACTIONS(2155), + [sym_pseudo_compile_time_identifier] = ACTIONS(2155), + [anon_sym_shared] = ACTIONS(2155), + [anon_sym_map_LBRACK] = ACTIONS(2155), + [anon_sym_chan] = ACTIONS(2155), + [anon_sym_thread] = ACTIONS(2155), + [anon_sym_atomic] = ACTIONS(2155), + [anon_sym_assert] = ACTIONS(2155), + [anon_sym_defer] = ACTIONS(2155), + [anon_sym_goto] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_DOLLARfor] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_POUND] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2155), + [anon_sym_AT_LBRACK] = ACTIONS(2155), }, [323] = { [sym_line_comment] = STATE(323), [sym_block_comment] = STATE(323), - [sym__expression] = STATE(2282), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(805), - [sym_mutable_expression] = STATE(3438), - [sym_expression_list] = STATE(3655), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [ts_builtin_sym_end] = ACTIONS(2157), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LF] = ACTIONS(2159), + [anon_sym_CR] = ACTIONS(2159), + [anon_sym_CR_LF] = ACTIONS(2159), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2159), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_EQ] = ACTIONS(2159), + [anon_sym___global] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_PIPE] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(2159), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2159), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_PERCENT] = ACTIONS(2159), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_GT] = ACTIONS(2159), + [anon_sym_EQ_EQ] = ACTIONS(2159), + [anon_sym_BANG_EQ] = ACTIONS(2159), + [anon_sym_LT_EQ] = ACTIONS(2159), + [anon_sym_GT_EQ] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(2159), + [anon_sym_union] = ACTIONS(2159), + [anon_sym_pub] = ACTIONS(2159), + [anon_sym_mut] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [anon_sym_interface] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [anon_sym_QMARK] = ACTIONS(2159), [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_go] = ACTIONS(2159), + [anon_sym_spawn] = ACTIONS(2159), + [anon_sym_json_DOTdecode] = ACTIONS(2159), + [anon_sym_LBRACK2] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_CARET] = ACTIONS(2159), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_LT_DASH] = ACTIONS(2159), + [anon_sym_LT_LT] = ACTIONS(2159), + [anon_sym_GT_GT] = ACTIONS(2159), + [anon_sym_GT_GT_GT] = ACTIONS(2159), + [anon_sym_AMP_CARET] = ACTIONS(2159), + [anon_sym_AMP_AMP] = ACTIONS(2159), + [anon_sym_PIPE_PIPE] = ACTIONS(2159), + [anon_sym_or] = ACTIONS(2159), + [sym_none] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_nil] = ACTIONS(2159), + [anon_sym_QMARK_DOT] = ACTIONS(2159), + [anon_sym_POUND_LBRACK] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_DOLLARif] = ACTIONS(2159), + [anon_sym_is] = ACTIONS(2159), + [anon_sym_BANGis] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2159), + [anon_sym_BANGin] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_select] = ACTIONS(2159), + [anon_sym_STAR_EQ] = ACTIONS(2159), + [anon_sym_SLASH_EQ] = ACTIONS(2159), + [anon_sym_PERCENT_EQ] = ACTIONS(2159), + [anon_sym_LT_LT_EQ] = ACTIONS(2159), + [anon_sym_GT_GT_EQ] = ACTIONS(2159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2159), + [anon_sym_AMP_EQ] = ACTIONS(2159), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2159), + [anon_sym_PLUS_EQ] = ACTIONS(2159), + [anon_sym_DASH_EQ] = ACTIONS(2159), + [anon_sym_PIPE_EQ] = ACTIONS(2159), + [anon_sym_CARET_EQ] = ACTIONS(2159), + [anon_sym_COLON_EQ] = ACTIONS(2159), + [anon_sym_lock] = ACTIONS(2159), + [anon_sym_rlock] = ACTIONS(2159), + [anon_sym_unsafe] = ACTIONS(2159), + [anon_sym_sql] = ACTIONS(2159), + [sym_int_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_rune_literal] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_c_SQUOTE] = ACTIONS(2159), + [anon_sym_c_DQUOTE] = ACTIONS(2159), + [anon_sym_r_SQUOTE] = ACTIONS(2159), + [anon_sym_r_DQUOTE] = ACTIONS(2159), + [sym_pseudo_compile_time_identifier] = ACTIONS(2159), + [anon_sym_shared] = ACTIONS(2159), + [anon_sym_map_LBRACK] = ACTIONS(2159), + [anon_sym_chan] = ACTIONS(2159), + [anon_sym_thread] = ACTIONS(2159), + [anon_sym_atomic] = ACTIONS(2159), + [anon_sym_assert] = ACTIONS(2159), + [anon_sym_defer] = ACTIONS(2159), + [anon_sym_goto] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_DOLLARfor] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_POUND] = ACTIONS(2159), + [anon_sym_asm] = ACTIONS(2159), + [anon_sym_AT_LBRACK] = ACTIONS(2159), }, [324] = { [sym_line_comment] = STATE(324), [sym_block_comment] = STATE(324), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4372), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(2161), + [sym_identifier] = ACTIONS(2163), + [anon_sym_LF] = ACTIONS(2163), + [anon_sym_CR] = ACTIONS(2163), + [anon_sym_CR_LF] = ACTIONS(2163), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2163), + [anon_sym_as] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_EQ] = ACTIONS(2163), + [anon_sym___global] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_fn] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2163), + [anon_sym_PERCENT] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2163), + [anon_sym_GT] = ACTIONS(2163), + [anon_sym_EQ_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ] = ACTIONS(2163), + [anon_sym_LT_EQ] = ACTIONS(2163), + [anon_sym_GT_EQ] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2163), + [anon_sym_union] = ACTIONS(2163), + [anon_sym_pub] = ACTIONS(2163), + [anon_sym_mut] = ACTIONS(2163), + [anon_sym_enum] = ACTIONS(2163), + [anon_sym_interface] = ACTIONS(2163), + [anon_sym_PLUS_PLUS] = ACTIONS(2163), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [anon_sym_QMARK] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_go] = ACTIONS(2163), + [anon_sym_spawn] = ACTIONS(2163), + [anon_sym_json_DOTdecode] = ACTIONS(2163), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_CARET] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2163), + [anon_sym_LT_DASH] = ACTIONS(2163), + [anon_sym_LT_LT] = ACTIONS(2163), + [anon_sym_GT_GT] = ACTIONS(2163), + [anon_sym_GT_GT_GT] = ACTIONS(2163), + [anon_sym_AMP_CARET] = ACTIONS(2163), + [anon_sym_AMP_AMP] = ACTIONS(2163), + [anon_sym_PIPE_PIPE] = ACTIONS(2163), + [anon_sym_or] = ACTIONS(2163), + [sym_none] = ACTIONS(2163), + [sym_true] = ACTIONS(2163), + [sym_false] = ACTIONS(2163), + [sym_nil] = ACTIONS(2163), + [anon_sym_QMARK_DOT] = ACTIONS(2163), + [anon_sym_POUND_LBRACK] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_DOLLARif] = ACTIONS(2163), + [anon_sym_is] = ACTIONS(2163), + [anon_sym_BANGis] = ACTIONS(2163), + [anon_sym_in] = ACTIONS(2163), + [anon_sym_BANGin] = ACTIONS(2163), + [anon_sym_match] = ACTIONS(2163), + [anon_sym_select] = ACTIONS(2163), + [anon_sym_STAR_EQ] = ACTIONS(2163), + [anon_sym_SLASH_EQ] = ACTIONS(2163), + [anon_sym_PERCENT_EQ] = ACTIONS(2163), + [anon_sym_LT_LT_EQ] = ACTIONS(2163), + [anon_sym_GT_GT_EQ] = ACTIONS(2163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2163), + [anon_sym_AMP_EQ] = ACTIONS(2163), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2163), + [anon_sym_PLUS_EQ] = ACTIONS(2163), + [anon_sym_DASH_EQ] = ACTIONS(2163), + [anon_sym_PIPE_EQ] = ACTIONS(2163), + [anon_sym_CARET_EQ] = ACTIONS(2163), + [anon_sym_COLON_EQ] = ACTIONS(2163), + [anon_sym_lock] = ACTIONS(2163), + [anon_sym_rlock] = ACTIONS(2163), + [anon_sym_unsafe] = ACTIONS(2163), + [anon_sym_sql] = ACTIONS(2163), + [sym_int_literal] = ACTIONS(2163), + [sym_float_literal] = ACTIONS(2163), + [sym_rune_literal] = ACTIONS(2163), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [anon_sym_c_SQUOTE] = ACTIONS(2163), + [anon_sym_c_DQUOTE] = ACTIONS(2163), + [anon_sym_r_SQUOTE] = ACTIONS(2163), + [anon_sym_r_DQUOTE] = ACTIONS(2163), + [sym_pseudo_compile_time_identifier] = ACTIONS(2163), + [anon_sym_shared] = ACTIONS(2163), + [anon_sym_map_LBRACK] = ACTIONS(2163), + [anon_sym_chan] = ACTIONS(2163), + [anon_sym_thread] = ACTIONS(2163), + [anon_sym_atomic] = ACTIONS(2163), + [anon_sym_assert] = ACTIONS(2163), + [anon_sym_defer] = ACTIONS(2163), + [anon_sym_goto] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_DOLLARfor] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_POUND] = ACTIONS(2163), + [anon_sym_asm] = ACTIONS(2163), + [anon_sym_AT_LBRACK] = ACTIONS(2163), }, [325] = { [sym_line_comment] = STATE(325), [sym_block_comment] = STATE(325), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1397), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1399), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2167), + [anon_sym_LF] = ACTIONS(2167), + [anon_sym_CR] = ACTIONS(2167), + [anon_sym_CR_LF] = ACTIONS(2167), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_COMMA] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_EQ] = ACTIONS(2167), + [anon_sym___global] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_PIPE] = ACTIONS(2167), + [anon_sym_fn] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_PERCENT] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2167), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_LT_EQ] = ACTIONS(2167), + [anon_sym_GT_EQ] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_union] = ACTIONS(2167), + [anon_sym_pub] = ACTIONS(2167), + [anon_sym_mut] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_QMARK] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_go] = ACTIONS(2167), + [anon_sym_spawn] = ACTIONS(2167), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_LT_DASH] = ACTIONS(2167), + [anon_sym_LT_LT] = ACTIONS(2167), + [anon_sym_GT_GT] = ACTIONS(2167), + [anon_sym_GT_GT_GT] = ACTIONS(2167), + [anon_sym_AMP_CARET] = ACTIONS(2167), + [anon_sym_AMP_AMP] = ACTIONS(2167), + [anon_sym_PIPE_PIPE] = ACTIONS(2167), + [anon_sym_or] = ACTIONS(2167), + [sym_none] = ACTIONS(2167), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_nil] = ACTIONS(2167), + [anon_sym_QMARK_DOT] = ACTIONS(2167), + [anon_sym_POUND_LBRACK] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_DOLLARif] = ACTIONS(2167), + [anon_sym_is] = ACTIONS(2167), + [anon_sym_BANGis] = ACTIONS(2167), + [anon_sym_in] = ACTIONS(2167), + [anon_sym_BANGin] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_select] = ACTIONS(2167), + [anon_sym_STAR_EQ] = ACTIONS(2167), + [anon_sym_SLASH_EQ] = ACTIONS(2167), + [anon_sym_PERCENT_EQ] = ACTIONS(2167), + [anon_sym_LT_LT_EQ] = ACTIONS(2167), + [anon_sym_GT_GT_EQ] = ACTIONS(2167), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2167), + [anon_sym_AMP_EQ] = ACTIONS(2167), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2167), + [anon_sym_PLUS_EQ] = ACTIONS(2167), + [anon_sym_DASH_EQ] = ACTIONS(2167), + [anon_sym_PIPE_EQ] = ACTIONS(2167), + [anon_sym_CARET_EQ] = ACTIONS(2167), + [anon_sym_COLON_EQ] = ACTIONS(2167), + [anon_sym_lock] = ACTIONS(2167), + [anon_sym_rlock] = ACTIONS(2167), + [anon_sym_unsafe] = ACTIONS(2167), + [anon_sym_sql] = ACTIONS(2167), + [sym_int_literal] = ACTIONS(2167), + [sym_float_literal] = ACTIONS(2167), + [sym_rune_literal] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_c_SQUOTE] = ACTIONS(2167), + [anon_sym_c_DQUOTE] = ACTIONS(2167), + [anon_sym_r_SQUOTE] = ACTIONS(2167), + [anon_sym_r_DQUOTE] = ACTIONS(2167), + [sym_pseudo_compile_time_identifier] = ACTIONS(2167), + [anon_sym_shared] = ACTIONS(2167), + [anon_sym_map_LBRACK] = ACTIONS(2167), + [anon_sym_chan] = ACTIONS(2167), + [anon_sym_thread] = ACTIONS(2167), + [anon_sym_atomic] = ACTIONS(2167), + [anon_sym_assert] = ACTIONS(2167), + [anon_sym_defer] = ACTIONS(2167), + [anon_sym_goto] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_DOLLARfor] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_POUND] = ACTIONS(2167), + [anon_sym_asm] = ACTIONS(2167), + [anon_sym_AT_LBRACK] = ACTIONS(2167), }, [326] = { [sym_line_comment] = STATE(326), [sym_block_comment] = STATE(326), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4399), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2171), + [anon_sym_LF] = ACTIONS(2171), + [anon_sym_CR] = ACTIONS(2171), + [anon_sym_CR_LF] = ACTIONS(2171), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2171), + [anon_sym_as] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_COMMA] = ACTIONS(2171), + [anon_sym_const] = ACTIONS(2171), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_EQ] = ACTIONS(2171), + [anon_sym___global] = ACTIONS(2171), + [anon_sym_type] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2171), + [anon_sym_fn] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_GT] = ACTIONS(2171), + [anon_sym_EQ_EQ] = ACTIONS(2171), + [anon_sym_BANG_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_struct] = ACTIONS(2171), + [anon_sym_union] = ACTIONS(2171), + [anon_sym_pub] = ACTIONS(2171), + [anon_sym_mut] = ACTIONS(2171), + [anon_sym_enum] = ACTIONS(2171), + [anon_sym_interface] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_go] = ACTIONS(2171), + [anon_sym_spawn] = ACTIONS(2171), + [anon_sym_json_DOTdecode] = ACTIONS(2171), + [anon_sym_LBRACK2] = ACTIONS(2171), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2171), + [anon_sym_LT_LT] = ACTIONS(2171), + [anon_sym_GT_GT] = ACTIONS(2171), + [anon_sym_GT_GT_GT] = ACTIONS(2171), + [anon_sym_AMP_CARET] = ACTIONS(2171), + [anon_sym_AMP_AMP] = ACTIONS(2171), + [anon_sym_PIPE_PIPE] = ACTIONS(2171), + [anon_sym_or] = ACTIONS(2171), + [sym_none] = ACTIONS(2171), + [sym_true] = ACTIONS(2171), + [sym_false] = ACTIONS(2171), + [sym_nil] = ACTIONS(2171), + [anon_sym_QMARK_DOT] = ACTIONS(2171), + [anon_sym_POUND_LBRACK] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(2171), + [anon_sym_DOLLARif] = ACTIONS(2171), + [anon_sym_is] = ACTIONS(2171), + [anon_sym_BANGis] = ACTIONS(2171), + [anon_sym_in] = ACTIONS(2171), + [anon_sym_BANGin] = ACTIONS(2171), + [anon_sym_match] = ACTIONS(2171), + [anon_sym_select] = ACTIONS(2171), + [anon_sym_STAR_EQ] = ACTIONS(2171), + [anon_sym_SLASH_EQ] = ACTIONS(2171), + [anon_sym_PERCENT_EQ] = ACTIONS(2171), + [anon_sym_LT_LT_EQ] = ACTIONS(2171), + [anon_sym_GT_GT_EQ] = ACTIONS(2171), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2171), + [anon_sym_AMP_EQ] = ACTIONS(2171), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2171), + [anon_sym_PLUS_EQ] = ACTIONS(2171), + [anon_sym_DASH_EQ] = ACTIONS(2171), + [anon_sym_PIPE_EQ] = ACTIONS(2171), + [anon_sym_CARET_EQ] = ACTIONS(2171), + [anon_sym_COLON_EQ] = ACTIONS(2171), + [anon_sym_lock] = ACTIONS(2171), + [anon_sym_rlock] = ACTIONS(2171), + [anon_sym_unsafe] = ACTIONS(2171), + [anon_sym_sql] = ACTIONS(2171), + [sym_int_literal] = ACTIONS(2171), + [sym_float_literal] = ACTIONS(2171), + [sym_rune_literal] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_c_SQUOTE] = ACTIONS(2171), + [anon_sym_c_DQUOTE] = ACTIONS(2171), + [anon_sym_r_SQUOTE] = ACTIONS(2171), + [anon_sym_r_DQUOTE] = ACTIONS(2171), + [sym_pseudo_compile_time_identifier] = ACTIONS(2171), + [anon_sym_shared] = ACTIONS(2171), + [anon_sym_map_LBRACK] = ACTIONS(2171), + [anon_sym_chan] = ACTIONS(2171), + [anon_sym_thread] = ACTIONS(2171), + [anon_sym_atomic] = ACTIONS(2171), + [anon_sym_assert] = ACTIONS(2171), + [anon_sym_defer] = ACTIONS(2171), + [anon_sym_goto] = ACTIONS(2171), + [anon_sym_break] = ACTIONS(2171), + [anon_sym_continue] = ACTIONS(2171), + [anon_sym_return] = ACTIONS(2171), + [anon_sym_DOLLARfor] = ACTIONS(2171), + [anon_sym_for] = ACTIONS(2171), + [anon_sym_POUND] = ACTIONS(2171), + [anon_sym_asm] = ACTIONS(2171), + [anon_sym_AT_LBRACK] = ACTIONS(2171), }, [327] = { [sym_line_comment] = STATE(327), [sym_block_comment] = STATE(327), - [sym__expression] = STATE(2282), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(805), - [sym_mutable_expression] = STATE(3438), - [sym_expression_list] = STATE(3642), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [ts_builtin_sym_end] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_CR] = ACTIONS(2175), + [anon_sym_CR_LF] = ACTIONS(2175), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym___global] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_pub] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_AMP_CARET] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_POUND_LBRACK] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_STAR_EQ] = ACTIONS(2175), + [anon_sym_SLASH_EQ] = ACTIONS(2175), + [anon_sym_PERCENT_EQ] = ACTIONS(2175), + [anon_sym_LT_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_GT_EQ] = ACTIONS(2175), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2175), + [anon_sym_AMP_EQ] = ACTIONS(2175), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2175), + [anon_sym_PLUS_EQ] = ACTIONS(2175), + [anon_sym_DASH_EQ] = ACTIONS(2175), + [anon_sym_PIPE_EQ] = ACTIONS(2175), + [anon_sym_CARET_EQ] = ACTIONS(2175), + [anon_sym_COLON_EQ] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_c_SQUOTE] = ACTIONS(2175), + [anon_sym_c_DQUOTE] = ACTIONS(2175), + [anon_sym_r_SQUOTE] = ACTIONS(2175), + [anon_sym_r_DQUOTE] = ACTIONS(2175), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2175), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), + [anon_sym_assert] = ACTIONS(2175), + [anon_sym_defer] = ACTIONS(2175), + [anon_sym_goto] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_DOLLARfor] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_asm] = ACTIONS(2175), + [anon_sym_AT_LBRACK] = ACTIONS(2175), }, [328] = { [sym_line_comment] = STATE(328), [sym_block_comment] = STATE(328), - [ts_builtin_sym_end] = ACTIONS(2189), - [sym_identifier] = ACTIONS(2191), - [anon_sym_LF] = ACTIONS(2191), - [anon_sym_CR] = ACTIONS(2191), - [anon_sym_CR_LF] = ACTIONS(2191), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_as] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_COMMA] = ACTIONS(2191), - [anon_sym_const] = ACTIONS(2191), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_EQ] = ACTIONS(2191), - [anon_sym___global] = ACTIONS(2191), - [anon_sym_type] = ACTIONS(2191), - [anon_sym_PIPE] = ACTIONS(2191), - [anon_sym_fn] = ACTIONS(2191), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_SLASH] = ACTIONS(2191), - [anon_sym_PERCENT] = ACTIONS(2191), - [anon_sym_LT] = ACTIONS(2191), - [anon_sym_GT] = ACTIONS(2191), - [anon_sym_EQ_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ] = ACTIONS(2191), - [anon_sym_LT_EQ] = ACTIONS(2191), - [anon_sym_GT_EQ] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_struct] = ACTIONS(2191), - [anon_sym_union] = ACTIONS(2191), - [anon_sym_pub] = ACTIONS(2191), - [anon_sym_mut] = ACTIONS(2191), - [anon_sym_enum] = ACTIONS(2191), - [anon_sym_interface] = ACTIONS(2191), - [anon_sym_PLUS_PLUS] = ACTIONS(2191), - [anon_sym_DASH_DASH] = ACTIONS(2191), - [anon_sym_QMARK] = ACTIONS(2191), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_go] = ACTIONS(2191), - [anon_sym_spawn] = ACTIONS(2191), - [anon_sym_json_DOTdecode] = ACTIONS(2191), - [anon_sym_LBRACK2] = ACTIONS(2191), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(2191), - [anon_sym_LT_LT] = ACTIONS(2191), - [anon_sym_GT_GT] = ACTIONS(2191), - [anon_sym_GT_GT_GT] = ACTIONS(2191), - [anon_sym_AMP_CARET] = ACTIONS(2191), - [anon_sym_AMP_AMP] = ACTIONS(2191), - [anon_sym_PIPE_PIPE] = ACTIONS(2191), - [anon_sym_or] = ACTIONS(2191), - [sym_none] = ACTIONS(2191), - [sym_true] = ACTIONS(2191), - [sym_false] = ACTIONS(2191), - [sym_nil] = ACTIONS(2191), - [anon_sym_QMARK_DOT] = ACTIONS(2191), - [anon_sym_POUND_LBRACK] = ACTIONS(2191), - [anon_sym_if] = ACTIONS(2191), - [anon_sym_DOLLARif] = ACTIONS(2191), - [anon_sym_is] = ACTIONS(2191), - [anon_sym_BANGis] = ACTIONS(2191), - [anon_sym_in] = ACTIONS(2191), - [anon_sym_BANGin] = ACTIONS(2191), - [anon_sym_match] = ACTIONS(2191), - [anon_sym_select] = ACTIONS(2191), - [anon_sym_STAR_EQ] = ACTIONS(2191), - [anon_sym_SLASH_EQ] = ACTIONS(2191), - [anon_sym_PERCENT_EQ] = ACTIONS(2191), - [anon_sym_LT_LT_EQ] = ACTIONS(2191), - [anon_sym_GT_GT_EQ] = ACTIONS(2191), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2191), - [anon_sym_AMP_EQ] = ACTIONS(2191), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2191), - [anon_sym_PLUS_EQ] = ACTIONS(2191), - [anon_sym_DASH_EQ] = ACTIONS(2191), - [anon_sym_PIPE_EQ] = ACTIONS(2191), - [anon_sym_CARET_EQ] = ACTIONS(2191), - [anon_sym_COLON_EQ] = ACTIONS(2191), - [anon_sym_lock] = ACTIONS(2191), - [anon_sym_rlock] = ACTIONS(2191), - [anon_sym_unsafe] = ACTIONS(2191), - [anon_sym_sql] = ACTIONS(2191), - [sym_int_literal] = ACTIONS(2191), - [sym_float_literal] = ACTIONS(2191), - [sym_rune_literal] = ACTIONS(2191), - [sym_pseudo_compile_time_identifier] = ACTIONS(2191), - [anon_sym_shared] = ACTIONS(2191), - [anon_sym_map_LBRACK] = ACTIONS(2191), - [anon_sym_chan] = ACTIONS(2191), - [anon_sym_thread] = ACTIONS(2191), - [anon_sym_atomic] = ACTIONS(2191), - [anon_sym_assert] = ACTIONS(2191), - [anon_sym_defer] = ACTIONS(2191), - [anon_sym_goto] = ACTIONS(2191), - [anon_sym_break] = ACTIONS(2191), - [anon_sym_continue] = ACTIONS(2191), - [anon_sym_return] = ACTIONS(2191), - [anon_sym_DOLLARfor] = ACTIONS(2191), - [anon_sym_for] = ACTIONS(2191), - [anon_sym_POUND] = ACTIONS(2191), - [anon_sym_asm] = ACTIONS(2191), - [anon_sym_AT_LBRACK] = ACTIONS(2191), - [sym___double_quote] = ACTIONS(2191), - [sym___single_quote] = ACTIONS(2191), - [sym___c_double_quote] = ACTIONS(2191), - [sym___c_single_quote] = ACTIONS(2191), - [sym___r_double_quote] = ACTIONS(2191), - [sym___r_single_quote] = ACTIONS(2191), - }, - [329] = { - [sym_line_comment] = STATE(329), - [sym_block_comment] = STATE(329), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1397), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1399), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4372), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [329] = { + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), + [ts_builtin_sym_end] = ACTIONS(2179), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LF] = ACTIONS(2181), + [anon_sym_CR] = ACTIONS(2181), + [anon_sym_CR_LF] = ACTIONS(2181), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_COMMA] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_EQ] = ACTIONS(2181), + [anon_sym___global] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_SLASH] = ACTIONS(2181), + [anon_sym_PERCENT] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_GT] = ACTIONS(2181), + [anon_sym_EQ_EQ] = ACTIONS(2181), + [anon_sym_BANG_EQ] = ACTIONS(2181), + [anon_sym_LT_EQ] = ACTIONS(2181), + [anon_sym_GT_EQ] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_mut] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_interface] = ACTIONS(2181), + [anon_sym_PLUS_PLUS] = ACTIONS(2181), + [anon_sym_DASH_DASH] = ACTIONS(2181), + [anon_sym_QMARK] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2181), + [anon_sym_go] = ACTIONS(2181), + [anon_sym_spawn] = ACTIONS(2181), + [anon_sym_json_DOTdecode] = ACTIONS(2181), + [anon_sym_LBRACK2] = ACTIONS(2181), + [anon_sym_TILDE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2181), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_LT_DASH] = ACTIONS(2181), + [anon_sym_LT_LT] = ACTIONS(2181), + [anon_sym_GT_GT] = ACTIONS(2181), + [anon_sym_GT_GT_GT] = ACTIONS(2181), + [anon_sym_AMP_CARET] = ACTIONS(2181), + [anon_sym_AMP_AMP] = ACTIONS(2181), + [anon_sym_PIPE_PIPE] = ACTIONS(2181), + [anon_sym_or] = ACTIONS(2181), + [sym_none] = ACTIONS(2181), + [sym_true] = ACTIONS(2181), + [sym_false] = ACTIONS(2181), + [sym_nil] = ACTIONS(2181), + [anon_sym_QMARK_DOT] = ACTIONS(2181), + [anon_sym_POUND_LBRACK] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_DOLLARif] = ACTIONS(2181), + [anon_sym_is] = ACTIONS(2181), + [anon_sym_BANGis] = ACTIONS(2181), + [anon_sym_in] = ACTIONS(2181), + [anon_sym_BANGin] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_select] = ACTIONS(2181), + [anon_sym_STAR_EQ] = ACTIONS(2181), + [anon_sym_SLASH_EQ] = ACTIONS(2181), + [anon_sym_PERCENT_EQ] = ACTIONS(2181), + [anon_sym_LT_LT_EQ] = ACTIONS(2181), + [anon_sym_GT_GT_EQ] = ACTIONS(2181), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2181), + [anon_sym_AMP_EQ] = ACTIONS(2181), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2181), + [anon_sym_PLUS_EQ] = ACTIONS(2181), + [anon_sym_DASH_EQ] = ACTIONS(2181), + [anon_sym_PIPE_EQ] = ACTIONS(2181), + [anon_sym_CARET_EQ] = ACTIONS(2181), + [anon_sym_COLON_EQ] = ACTIONS(2181), + [anon_sym_lock] = ACTIONS(2181), + [anon_sym_rlock] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_sql] = ACTIONS(2181), + [sym_int_literal] = ACTIONS(2181), + [sym_float_literal] = ACTIONS(2181), + [sym_rune_literal] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_DQUOTE] = ACTIONS(2181), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2181), + [anon_sym_r_SQUOTE] = ACTIONS(2181), + [anon_sym_r_DQUOTE] = ACTIONS(2181), + [sym_pseudo_compile_time_identifier] = ACTIONS(2181), + [anon_sym_shared] = ACTIONS(2181), + [anon_sym_map_LBRACK] = ACTIONS(2181), + [anon_sym_chan] = ACTIONS(2181), + [anon_sym_thread] = ACTIONS(2181), + [anon_sym_atomic] = ACTIONS(2181), + [anon_sym_assert] = ACTIONS(2181), + [anon_sym_defer] = ACTIONS(2181), + [anon_sym_goto] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_DOLLARfor] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_POUND] = ACTIONS(2181), + [anon_sym_asm] = ACTIONS(2181), + [anon_sym_AT_LBRACK] = ACTIONS(2181), }, [330] = { [sym_line_comment] = STATE(330), [sym_block_comment] = STATE(330), - [sym__expression] = STATE(2617), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3569), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4569), - [sym_identifier] = ACTIONS(2127), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(2183), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LF] = ACTIONS(2185), + [anon_sym_CR] = ACTIONS(2185), + [anon_sym_CR_LF] = ACTIONS(2185), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_EQ] = ACTIONS(2185), + [anon_sym___global] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_EQ_EQ] = ACTIONS(2185), + [anon_sym_BANG_EQ] = ACTIONS(2185), + [anon_sym_LT_EQ] = ACTIONS(2185), + [anon_sym_GT_EQ] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_mut] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_interface] = ACTIONS(2185), + [anon_sym_PLUS_PLUS] = ACTIONS(2185), + [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2185), + [anon_sym_go] = ACTIONS(2185), + [anon_sym_spawn] = ACTIONS(2185), + [anon_sym_json_DOTdecode] = ACTIONS(2185), + [anon_sym_LBRACK2] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_CARET] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_LT_DASH] = ACTIONS(2185), + [anon_sym_LT_LT] = ACTIONS(2185), + [anon_sym_GT_GT] = ACTIONS(2185), + [anon_sym_GT_GT_GT] = ACTIONS(2185), + [anon_sym_AMP_CARET] = ACTIONS(2185), + [anon_sym_AMP_AMP] = ACTIONS(2185), + [anon_sym_PIPE_PIPE] = ACTIONS(2185), + [anon_sym_or] = ACTIONS(2185), + [sym_none] = ACTIONS(2185), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), + [sym_nil] = ACTIONS(2185), + [anon_sym_QMARK_DOT] = ACTIONS(2185), + [anon_sym_POUND_LBRACK] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_DOLLARif] = ACTIONS(2185), + [anon_sym_is] = ACTIONS(2185), + [anon_sym_BANGis] = ACTIONS(2185), + [anon_sym_in] = ACTIONS(2185), + [anon_sym_BANGin] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_select] = ACTIONS(2185), + [anon_sym_STAR_EQ] = ACTIONS(2185), + [anon_sym_SLASH_EQ] = ACTIONS(2185), + [anon_sym_PERCENT_EQ] = ACTIONS(2185), + [anon_sym_LT_LT_EQ] = ACTIONS(2185), + [anon_sym_GT_GT_EQ] = ACTIONS(2185), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2185), + [anon_sym_AMP_EQ] = ACTIONS(2185), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2185), + [anon_sym_PLUS_EQ] = ACTIONS(2185), + [anon_sym_DASH_EQ] = ACTIONS(2185), + [anon_sym_PIPE_EQ] = ACTIONS(2185), + [anon_sym_CARET_EQ] = ACTIONS(2185), + [anon_sym_COLON_EQ] = ACTIONS(2185), + [anon_sym_lock] = ACTIONS(2185), + [anon_sym_rlock] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_sql] = ACTIONS(2185), + [sym_int_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), + [sym_rune_literal] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_c_SQUOTE] = ACTIONS(2185), + [anon_sym_c_DQUOTE] = ACTIONS(2185), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2185), + [sym_pseudo_compile_time_identifier] = ACTIONS(2185), + [anon_sym_shared] = ACTIONS(2185), + [anon_sym_map_LBRACK] = ACTIONS(2185), + [anon_sym_chan] = ACTIONS(2185), + [anon_sym_thread] = ACTIONS(2185), + [anon_sym_atomic] = ACTIONS(2185), + [anon_sym_assert] = ACTIONS(2185), + [anon_sym_defer] = ACTIONS(2185), + [anon_sym_goto] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_DOLLARfor] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_asm] = ACTIONS(2185), + [anon_sym_AT_LBRACK] = ACTIONS(2185), }, [331] = { [sym_line_comment] = STATE(331), [sym_block_comment] = STATE(331), - [sym__expression] = STATE(2617), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4569), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(2187), + [sym_identifier] = ACTIONS(2189), + [anon_sym_LF] = ACTIONS(2189), + [anon_sym_CR] = ACTIONS(2189), + [anon_sym_CR_LF] = ACTIONS(2189), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2189), + [anon_sym_as] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_COMMA] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_EQ] = ACTIONS(2189), + [anon_sym___global] = ACTIONS(2189), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_fn] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_PERCENT] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_GT] = ACTIONS(2189), + [anon_sym_EQ_EQ] = ACTIONS(2189), + [anon_sym_BANG_EQ] = ACTIONS(2189), + [anon_sym_LT_EQ] = ACTIONS(2189), + [anon_sym_GT_EQ] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_struct] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_pub] = ACTIONS(2189), + [anon_sym_mut] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [anon_sym_interface] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_QMARK] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_go] = ACTIONS(2189), + [anon_sym_spawn] = ACTIONS(2189), + [anon_sym_json_DOTdecode] = ACTIONS(2189), + [anon_sym_LBRACK2] = ACTIONS(2189), + [anon_sym_TILDE] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2189), + [anon_sym_AMP] = ACTIONS(2189), + [anon_sym_LT_DASH] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(2189), + [anon_sym_GT_GT] = ACTIONS(2189), + [anon_sym_GT_GT_GT] = ACTIONS(2189), + [anon_sym_AMP_CARET] = ACTIONS(2189), + [anon_sym_AMP_AMP] = ACTIONS(2189), + [anon_sym_PIPE_PIPE] = ACTIONS(2189), + [anon_sym_or] = ACTIONS(2189), + [sym_none] = ACTIONS(2189), + [sym_true] = ACTIONS(2189), + [sym_false] = ACTIONS(2189), + [sym_nil] = ACTIONS(2189), + [anon_sym_QMARK_DOT] = ACTIONS(2189), + [anon_sym_POUND_LBRACK] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_DOLLARif] = ACTIONS(2189), + [anon_sym_is] = ACTIONS(2189), + [anon_sym_BANGis] = ACTIONS(2189), + [anon_sym_in] = ACTIONS(2189), + [anon_sym_BANGin] = ACTIONS(2189), + [anon_sym_match] = ACTIONS(2189), + [anon_sym_select] = ACTIONS(2189), + [anon_sym_STAR_EQ] = ACTIONS(2189), + [anon_sym_SLASH_EQ] = ACTIONS(2189), + [anon_sym_PERCENT_EQ] = ACTIONS(2189), + [anon_sym_LT_LT_EQ] = ACTIONS(2189), + [anon_sym_GT_GT_EQ] = ACTIONS(2189), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2189), + [anon_sym_AMP_EQ] = ACTIONS(2189), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2189), + [anon_sym_PLUS_EQ] = ACTIONS(2189), + [anon_sym_DASH_EQ] = ACTIONS(2189), + [anon_sym_PIPE_EQ] = ACTIONS(2189), + [anon_sym_CARET_EQ] = ACTIONS(2189), + [anon_sym_COLON_EQ] = ACTIONS(2189), + [anon_sym_lock] = ACTIONS(2189), + [anon_sym_rlock] = ACTIONS(2189), + [anon_sym_unsafe] = ACTIONS(2189), + [anon_sym_sql] = ACTIONS(2189), + [sym_int_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_rune_literal] = ACTIONS(2189), + [anon_sym_SQUOTE] = ACTIONS(2189), + [anon_sym_DQUOTE] = ACTIONS(2189), + [anon_sym_c_SQUOTE] = ACTIONS(2189), + [anon_sym_c_DQUOTE] = ACTIONS(2189), + [anon_sym_r_SQUOTE] = ACTIONS(2189), + [anon_sym_r_DQUOTE] = ACTIONS(2189), + [sym_pseudo_compile_time_identifier] = ACTIONS(2189), + [anon_sym_shared] = ACTIONS(2189), + [anon_sym_map_LBRACK] = ACTIONS(2189), + [anon_sym_chan] = ACTIONS(2189), + [anon_sym_thread] = ACTIONS(2189), + [anon_sym_atomic] = ACTIONS(2189), + [anon_sym_assert] = ACTIONS(2189), + [anon_sym_defer] = ACTIONS(2189), + [anon_sym_goto] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_DOLLARfor] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_POUND] = ACTIONS(2189), + [anon_sym_asm] = ACTIONS(2189), + [anon_sym_AT_LBRACK] = ACTIONS(2189), }, [332] = { [sym_line_comment] = STATE(332), [sym_block_comment] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), + [ts_builtin_sym_end] = ACTIONS(2191), + [sym_identifier] = ACTIONS(2193), + [anon_sym_LF] = ACTIONS(2193), + [anon_sym_CR] = ACTIONS(2193), + [anon_sym_CR_LF] = ACTIONS(2193), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1889), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1889), - [anon_sym_AMP_CARET] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1889), - [anon_sym_POUND_LBRACK] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_STAR_EQ] = ACTIONS(1889), - [anon_sym_SLASH_EQ] = ACTIONS(1889), - [anon_sym_PERCENT_EQ] = ACTIONS(1889), - [anon_sym_LT_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_AMP_EQ] = ACTIONS(1889), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1889), - [anon_sym_PLUS_EQ] = ACTIONS(1889), - [anon_sym_DASH_EQ] = ACTIONS(1889), - [anon_sym_PIPE_EQ] = ACTIONS(1889), - [anon_sym_CARET_EQ] = ACTIONS(1889), - [anon_sym_COLON_EQ] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [anon_sym_DOT] = ACTIONS(2193), + [anon_sym_as] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_COMMA] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_EQ] = ACTIONS(2193), + [anon_sym___global] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_fn] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_PERCENT] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_GT] = ACTIONS(2193), + [anon_sym_EQ_EQ] = ACTIONS(2193), + [anon_sym_BANG_EQ] = ACTIONS(2193), + [anon_sym_LT_EQ] = ACTIONS(2193), + [anon_sym_GT_EQ] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2193), + [anon_sym_union] = ACTIONS(2193), + [anon_sym_pub] = ACTIONS(2193), + [anon_sym_mut] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [anon_sym_QMARK] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_go] = ACTIONS(2193), + [anon_sym_spawn] = ACTIONS(2193), + [anon_sym_json_DOTdecode] = ACTIONS(2193), + [anon_sym_LBRACK2] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_LT_DASH] = ACTIONS(2193), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_GT_GT] = ACTIONS(2193), + [anon_sym_GT_GT_GT] = ACTIONS(2193), + [anon_sym_AMP_CARET] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2193), + [anon_sym_PIPE_PIPE] = ACTIONS(2193), + [anon_sym_or] = ACTIONS(2193), + [sym_none] = ACTIONS(2193), + [sym_true] = ACTIONS(2193), + [sym_false] = ACTIONS(2193), + [sym_nil] = ACTIONS(2193), + [anon_sym_QMARK_DOT] = ACTIONS(2193), + [anon_sym_POUND_LBRACK] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_DOLLARif] = ACTIONS(2193), + [anon_sym_is] = ACTIONS(2193), + [anon_sym_BANGis] = ACTIONS(2193), + [anon_sym_in] = ACTIONS(2193), + [anon_sym_BANGin] = ACTIONS(2193), + [anon_sym_match] = ACTIONS(2193), + [anon_sym_select] = ACTIONS(2193), + [anon_sym_STAR_EQ] = ACTIONS(2193), + [anon_sym_SLASH_EQ] = ACTIONS(2193), + [anon_sym_PERCENT_EQ] = ACTIONS(2193), + [anon_sym_LT_LT_EQ] = ACTIONS(2193), + [anon_sym_GT_GT_EQ] = ACTIONS(2193), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2193), + [anon_sym_AMP_EQ] = ACTIONS(2193), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2193), + [anon_sym_PLUS_EQ] = ACTIONS(2193), + [anon_sym_DASH_EQ] = ACTIONS(2193), + [anon_sym_PIPE_EQ] = ACTIONS(2193), + [anon_sym_CARET_EQ] = ACTIONS(2193), + [anon_sym_COLON_EQ] = ACTIONS(2193), + [anon_sym_lock] = ACTIONS(2193), + [anon_sym_rlock] = ACTIONS(2193), + [anon_sym_unsafe] = ACTIONS(2193), + [anon_sym_sql] = ACTIONS(2193), + [sym_int_literal] = ACTIONS(2193), + [sym_float_literal] = ACTIONS(2193), + [sym_rune_literal] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [anon_sym_c_SQUOTE] = ACTIONS(2193), + [anon_sym_c_DQUOTE] = ACTIONS(2193), + [anon_sym_r_SQUOTE] = ACTIONS(2193), + [anon_sym_r_DQUOTE] = ACTIONS(2193), + [sym_pseudo_compile_time_identifier] = ACTIONS(2193), + [anon_sym_shared] = ACTIONS(2193), + [anon_sym_map_LBRACK] = ACTIONS(2193), + [anon_sym_chan] = ACTIONS(2193), + [anon_sym_thread] = ACTIONS(2193), + [anon_sym_atomic] = ACTIONS(2193), + [anon_sym_assert] = ACTIONS(2193), + [anon_sym_defer] = ACTIONS(2193), + [anon_sym_goto] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_DOLLARfor] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(2193), + [anon_sym_asm] = ACTIONS(2193), + [anon_sym_AT_LBRACK] = ACTIONS(2193), }, [333] = { [sym_line_comment] = STATE(333), [sym_block_comment] = STATE(333), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2197), + [anon_sym_LF] = ACTIONS(2197), + [anon_sym_CR] = ACTIONS(2197), + [anon_sym_CR_LF] = ACTIONS(2197), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_COMMA] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_EQ] = ACTIONS(2197), + [anon_sym___global] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2197), + [anon_sym_fn] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_PERCENT] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_GT] = ACTIONS(2197), + [anon_sym_EQ_EQ] = ACTIONS(2197), + [anon_sym_BANG_EQ] = ACTIONS(2197), + [anon_sym_LT_EQ] = ACTIONS(2197), + [anon_sym_GT_EQ] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2197), + [anon_sym_union] = ACTIONS(2197), + [anon_sym_pub] = ACTIONS(2197), + [anon_sym_mut] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [anon_sym_QMARK] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_go] = ACTIONS(2197), + [anon_sym_spawn] = ACTIONS(2197), + [anon_sym_json_DOTdecode] = ACTIONS(2197), + [anon_sym_LBRACK2] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_CARET] = ACTIONS(2197), + [anon_sym_AMP] = ACTIONS(2197), + [anon_sym_LT_DASH] = ACTIONS(2197), + [anon_sym_LT_LT] = ACTIONS(2197), + [anon_sym_GT_GT] = ACTIONS(2197), + [anon_sym_GT_GT_GT] = ACTIONS(2197), + [anon_sym_AMP_CARET] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(2197), + [anon_sym_PIPE_PIPE] = ACTIONS(2197), + [anon_sym_or] = ACTIONS(2197), + [sym_none] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_nil] = ACTIONS(2197), + [anon_sym_QMARK_DOT] = ACTIONS(2197), + [anon_sym_POUND_LBRACK] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_DOLLARif] = ACTIONS(2197), + [anon_sym_is] = ACTIONS(2197), + [anon_sym_BANGis] = ACTIONS(2197), + [anon_sym_in] = ACTIONS(2197), + [anon_sym_BANGin] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_select] = ACTIONS(2197), + [anon_sym_STAR_EQ] = ACTIONS(2197), + [anon_sym_SLASH_EQ] = ACTIONS(2197), + [anon_sym_PERCENT_EQ] = ACTIONS(2197), + [anon_sym_LT_LT_EQ] = ACTIONS(2197), + [anon_sym_GT_GT_EQ] = ACTIONS(2197), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2197), + [anon_sym_AMP_EQ] = ACTIONS(2197), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2197), + [anon_sym_PLUS_EQ] = ACTIONS(2197), + [anon_sym_DASH_EQ] = ACTIONS(2197), + [anon_sym_PIPE_EQ] = ACTIONS(2197), + [anon_sym_CARET_EQ] = ACTIONS(2197), + [anon_sym_COLON_EQ] = ACTIONS(2197), + [anon_sym_lock] = ACTIONS(2197), + [anon_sym_rlock] = ACTIONS(2197), + [anon_sym_unsafe] = ACTIONS(2197), + [anon_sym_sql] = ACTIONS(2197), + [sym_int_literal] = ACTIONS(2197), + [sym_float_literal] = ACTIONS(2197), + [sym_rune_literal] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_c_SQUOTE] = ACTIONS(2197), + [anon_sym_c_DQUOTE] = ACTIONS(2197), + [anon_sym_r_SQUOTE] = ACTIONS(2197), + [anon_sym_r_DQUOTE] = ACTIONS(2197), + [sym_pseudo_compile_time_identifier] = ACTIONS(2197), + [anon_sym_shared] = ACTIONS(2197), + [anon_sym_map_LBRACK] = ACTIONS(2197), + [anon_sym_chan] = ACTIONS(2197), + [anon_sym_thread] = ACTIONS(2197), + [anon_sym_atomic] = ACTIONS(2197), + [anon_sym_assert] = ACTIONS(2197), + [anon_sym_defer] = ACTIONS(2197), + [anon_sym_goto] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_DOLLARfor] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_POUND] = ACTIONS(2197), + [anon_sym_asm] = ACTIONS(2197), + [anon_sym_AT_LBRACK] = ACTIONS(2197), }, [334] = { [sym_line_comment] = STATE(334), [sym_block_comment] = STATE(334), - [ts_builtin_sym_end] = ACTIONS(2197), - [sym_identifier] = ACTIONS(2199), - [anon_sym_LF] = ACTIONS(2199), - [anon_sym_CR] = ACTIONS(2199), - [anon_sym_CR_LF] = ACTIONS(2199), + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LF] = ACTIONS(2201), + [anon_sym_CR] = ACTIONS(2201), + [anon_sym_CR_LF] = ACTIONS(2201), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2199), - [anon_sym_as] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_COMMA] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_EQ] = ACTIONS(2199), - [anon_sym___global] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2199), - [anon_sym_PIPE] = ACTIONS(2199), - [anon_sym_fn] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(2199), - [anon_sym_SLASH] = ACTIONS(2199), - [anon_sym_PERCENT] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2199), - [anon_sym_GT] = ACTIONS(2199), - [anon_sym_EQ_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ] = ACTIONS(2199), - [anon_sym_LT_EQ] = ACTIONS(2199), - [anon_sym_GT_EQ] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(2199), - [anon_sym_union] = ACTIONS(2199), - [anon_sym_pub] = ACTIONS(2199), - [anon_sym_mut] = ACTIONS(2199), - [anon_sym_enum] = ACTIONS(2199), - [anon_sym_interface] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_QMARK] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_go] = ACTIONS(2199), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(2199), - [anon_sym_LBRACK2] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_LT_DASH] = ACTIONS(2199), - [anon_sym_LT_LT] = ACTIONS(2199), - [anon_sym_GT_GT] = ACTIONS(2199), - [anon_sym_GT_GT_GT] = ACTIONS(2199), - [anon_sym_AMP_CARET] = ACTIONS(2199), - [anon_sym_AMP_AMP] = ACTIONS(2199), - [anon_sym_PIPE_PIPE] = ACTIONS(2199), - [anon_sym_or] = ACTIONS(2199), - [sym_none] = ACTIONS(2199), - [sym_true] = ACTIONS(2199), - [sym_false] = ACTIONS(2199), - [sym_nil] = ACTIONS(2199), - [anon_sym_QMARK_DOT] = ACTIONS(2199), - [anon_sym_POUND_LBRACK] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_DOLLARif] = ACTIONS(2199), - [anon_sym_is] = ACTIONS(2199), - [anon_sym_BANGis] = ACTIONS(2199), - [anon_sym_in] = ACTIONS(2199), - [anon_sym_BANGin] = ACTIONS(2199), - [anon_sym_match] = ACTIONS(2199), - [anon_sym_select] = ACTIONS(2199), - [anon_sym_STAR_EQ] = ACTIONS(2199), - [anon_sym_SLASH_EQ] = ACTIONS(2199), - [anon_sym_PERCENT_EQ] = ACTIONS(2199), - [anon_sym_LT_LT_EQ] = ACTIONS(2199), - [anon_sym_GT_GT_EQ] = ACTIONS(2199), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2199), - [anon_sym_AMP_EQ] = ACTIONS(2199), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2199), - [anon_sym_PLUS_EQ] = ACTIONS(2199), - [anon_sym_DASH_EQ] = ACTIONS(2199), - [anon_sym_PIPE_EQ] = ACTIONS(2199), - [anon_sym_CARET_EQ] = ACTIONS(2199), - [anon_sym_COLON_EQ] = ACTIONS(2199), - [anon_sym_lock] = ACTIONS(2199), - [anon_sym_rlock] = ACTIONS(2199), - [anon_sym_unsafe] = ACTIONS(2199), - [anon_sym_sql] = ACTIONS(2199), - [sym_int_literal] = ACTIONS(2199), - [sym_float_literal] = ACTIONS(2199), - [sym_rune_literal] = ACTIONS(2199), - [sym_pseudo_compile_time_identifier] = ACTIONS(2199), - [anon_sym_shared] = ACTIONS(2199), - [anon_sym_map_LBRACK] = ACTIONS(2199), - [anon_sym_chan] = ACTIONS(2199), - [anon_sym_thread] = ACTIONS(2199), - [anon_sym_atomic] = ACTIONS(2199), - [anon_sym_assert] = ACTIONS(2199), - [anon_sym_defer] = ACTIONS(2199), - [anon_sym_goto] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_DOLLARfor] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_POUND] = ACTIONS(2199), - [anon_sym_asm] = ACTIONS(2199), - [anon_sym_AT_LBRACK] = ACTIONS(2199), - [sym___double_quote] = ACTIONS(2199), - [sym___single_quote] = ACTIONS(2199), - [sym___c_double_quote] = ACTIONS(2199), - [sym___c_single_quote] = ACTIONS(2199), - [sym___r_double_quote] = ACTIONS(2199), - [sym___r_single_quote] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_as] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_COMMA] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2201), + [anon_sym_EQ] = ACTIONS(2201), + [anon_sym___global] = ACTIONS(2201), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_fn] = ACTIONS(2201), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(2201), + [anon_sym_SLASH] = ACTIONS(2201), + [anon_sym_PERCENT] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2201), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_struct] = ACTIONS(2201), + [anon_sym_union] = ACTIONS(2201), + [anon_sym_pub] = ACTIONS(2201), + [anon_sym_mut] = ACTIONS(2201), + [anon_sym_enum] = ACTIONS(2201), + [anon_sym_interface] = ACTIONS(2201), + [anon_sym_PLUS_PLUS] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(2201), + [anon_sym_QMARK] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2201), + [anon_sym_go] = ACTIONS(2201), + [anon_sym_spawn] = ACTIONS(2201), + [anon_sym_json_DOTdecode] = ACTIONS(2201), + [anon_sym_LBRACK2] = ACTIONS(2201), + [anon_sym_TILDE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2201), + [anon_sym_AMP] = ACTIONS(2201), + [anon_sym_LT_DASH] = ACTIONS(2201), + [anon_sym_LT_LT] = ACTIONS(2201), + [anon_sym_GT_GT] = ACTIONS(2201), + [anon_sym_GT_GT_GT] = ACTIONS(2201), + [anon_sym_AMP_CARET] = ACTIONS(2201), + [anon_sym_AMP_AMP] = ACTIONS(2201), + [anon_sym_PIPE_PIPE] = ACTIONS(2201), + [anon_sym_or] = ACTIONS(2201), + [sym_none] = ACTIONS(2201), + [sym_true] = ACTIONS(2201), + [sym_false] = ACTIONS(2201), + [sym_nil] = ACTIONS(2201), + [anon_sym_QMARK_DOT] = ACTIONS(2201), + [anon_sym_POUND_LBRACK] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_DOLLARif] = ACTIONS(2201), + [anon_sym_is] = ACTIONS(2201), + [anon_sym_BANGis] = ACTIONS(2201), + [anon_sym_in] = ACTIONS(2201), + [anon_sym_BANGin] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_select] = ACTIONS(2201), + [anon_sym_STAR_EQ] = ACTIONS(2201), + [anon_sym_SLASH_EQ] = ACTIONS(2201), + [anon_sym_PERCENT_EQ] = ACTIONS(2201), + [anon_sym_LT_LT_EQ] = ACTIONS(2201), + [anon_sym_GT_GT_EQ] = ACTIONS(2201), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2201), + [anon_sym_AMP_EQ] = ACTIONS(2201), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2201), + [anon_sym_PLUS_EQ] = ACTIONS(2201), + [anon_sym_DASH_EQ] = ACTIONS(2201), + [anon_sym_PIPE_EQ] = ACTIONS(2201), + [anon_sym_CARET_EQ] = ACTIONS(2201), + [anon_sym_COLON_EQ] = ACTIONS(2201), + [anon_sym_lock] = ACTIONS(2201), + [anon_sym_rlock] = ACTIONS(2201), + [anon_sym_unsafe] = ACTIONS(2201), + [anon_sym_sql] = ACTIONS(2201), + [sym_int_literal] = ACTIONS(2201), + [sym_float_literal] = ACTIONS(2201), + [sym_rune_literal] = ACTIONS(2201), + [anon_sym_SQUOTE] = ACTIONS(2201), + [anon_sym_DQUOTE] = ACTIONS(2201), + [anon_sym_c_SQUOTE] = ACTIONS(2201), + [anon_sym_c_DQUOTE] = ACTIONS(2201), + [anon_sym_r_SQUOTE] = ACTIONS(2201), + [anon_sym_r_DQUOTE] = ACTIONS(2201), + [sym_pseudo_compile_time_identifier] = ACTIONS(2201), + [anon_sym_shared] = ACTIONS(2201), + [anon_sym_map_LBRACK] = ACTIONS(2201), + [anon_sym_chan] = ACTIONS(2201), + [anon_sym_thread] = ACTIONS(2201), + [anon_sym_atomic] = ACTIONS(2201), + [anon_sym_assert] = ACTIONS(2201), + [anon_sym_defer] = ACTIONS(2201), + [anon_sym_goto] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_DOLLARfor] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(2201), + [anon_sym_asm] = ACTIONS(2201), + [anon_sym_AT_LBRACK] = ACTIONS(2201), }, [335] = { [sym_line_comment] = STATE(335), [sym_block_comment] = STATE(335), - [ts_builtin_sym_end] = ACTIONS(2201), - [sym_identifier] = ACTIONS(2203), - [anon_sym_LF] = ACTIONS(2203), - [anon_sym_CR] = ACTIONS(2203), - [anon_sym_CR_LF] = ACTIONS(2203), + [ts_builtin_sym_end] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LF] = ACTIONS(2205), + [anon_sym_CR] = ACTIONS(2205), + [anon_sym_CR_LF] = ACTIONS(2205), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_COMMA] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_EQ] = ACTIONS(2203), - [anon_sym___global] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_PIPE] = ACTIONS(2203), - [anon_sym_fn] = ACTIONS(2203), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2203), - [anon_sym_SLASH] = ACTIONS(2203), - [anon_sym_PERCENT] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_GT] = ACTIONS(2203), - [anon_sym_EQ_EQ] = ACTIONS(2203), - [anon_sym_BANG_EQ] = ACTIONS(2203), - [anon_sym_LT_EQ] = ACTIONS(2203), - [anon_sym_GT_EQ] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_struct] = ACTIONS(2203), - [anon_sym_union] = ACTIONS(2203), - [anon_sym_pub] = ACTIONS(2203), - [anon_sym_mut] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [anon_sym_interface] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [anon_sym_QMARK] = ACTIONS(2203), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_go] = ACTIONS(2203), - [anon_sym_spawn] = ACTIONS(2203), - [anon_sym_json_DOTdecode] = ACTIONS(2203), - [anon_sym_LBRACK2] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_CARET] = ACTIONS(2203), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2203), - [anon_sym_LT_LT] = ACTIONS(2203), - [anon_sym_GT_GT] = ACTIONS(2203), - [anon_sym_GT_GT_GT] = ACTIONS(2203), - [anon_sym_AMP_CARET] = ACTIONS(2203), - [anon_sym_AMP_AMP] = ACTIONS(2203), - [anon_sym_PIPE_PIPE] = ACTIONS(2203), - [anon_sym_or] = ACTIONS(2203), - [sym_none] = ACTIONS(2203), - [sym_true] = ACTIONS(2203), - [sym_false] = ACTIONS(2203), - [sym_nil] = ACTIONS(2203), - [anon_sym_QMARK_DOT] = ACTIONS(2203), - [anon_sym_POUND_LBRACK] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_DOLLARif] = ACTIONS(2203), - [anon_sym_is] = ACTIONS(2203), - [anon_sym_BANGis] = ACTIONS(2203), - [anon_sym_in] = ACTIONS(2203), - [anon_sym_BANGin] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_select] = ACTIONS(2203), - [anon_sym_STAR_EQ] = ACTIONS(2203), - [anon_sym_SLASH_EQ] = ACTIONS(2203), - [anon_sym_PERCENT_EQ] = ACTIONS(2203), - [anon_sym_LT_LT_EQ] = ACTIONS(2203), - [anon_sym_GT_GT_EQ] = ACTIONS(2203), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2203), - [anon_sym_AMP_EQ] = ACTIONS(2203), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2203), - [anon_sym_PLUS_EQ] = ACTIONS(2203), - [anon_sym_DASH_EQ] = ACTIONS(2203), - [anon_sym_PIPE_EQ] = ACTIONS(2203), - [anon_sym_CARET_EQ] = ACTIONS(2203), - [anon_sym_COLON_EQ] = ACTIONS(2203), - [anon_sym_lock] = ACTIONS(2203), - [anon_sym_rlock] = ACTIONS(2203), - [anon_sym_unsafe] = ACTIONS(2203), - [anon_sym_sql] = ACTIONS(2203), - [sym_int_literal] = ACTIONS(2203), - [sym_float_literal] = ACTIONS(2203), - [sym_rune_literal] = ACTIONS(2203), - [sym_pseudo_compile_time_identifier] = ACTIONS(2203), - [anon_sym_shared] = ACTIONS(2203), - [anon_sym_map_LBRACK] = ACTIONS(2203), - [anon_sym_chan] = ACTIONS(2203), - [anon_sym_thread] = ACTIONS(2203), - [anon_sym_atomic] = ACTIONS(2203), - [anon_sym_assert] = ACTIONS(2203), - [anon_sym_defer] = ACTIONS(2203), - [anon_sym_goto] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_DOLLARfor] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_POUND] = ACTIONS(2203), - [anon_sym_asm] = ACTIONS(2203), - [anon_sym_AT_LBRACK] = ACTIONS(2203), - [sym___double_quote] = ACTIONS(2203), - [sym___single_quote] = ACTIONS(2203), - [sym___c_double_quote] = ACTIONS(2203), - [sym___c_single_quote] = ACTIONS(2203), - [sym___r_double_quote] = ACTIONS(2203), - [sym___r_single_quote] = ACTIONS(2203), + [anon_sym_DOT] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_EQ] = ACTIONS(2205), + [anon_sym___global] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_PIPE] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_PERCENT] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_GT] = ACTIONS(2205), + [anon_sym_EQ_EQ] = ACTIONS(2205), + [anon_sym_BANG_EQ] = ACTIONS(2205), + [anon_sym_LT_EQ] = ACTIONS(2205), + [anon_sym_GT_EQ] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2203), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_mut] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(2205), + [anon_sym_QMARK] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_go] = ACTIONS(2205), + [anon_sym_spawn] = ACTIONS(2205), + [anon_sym_json_DOTdecode] = ACTIONS(2205), + [anon_sym_LBRACK2] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_CARET] = ACTIONS(2205), + [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_LT_DASH] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(2205), + [anon_sym_GT_GT] = ACTIONS(2205), + [anon_sym_GT_GT_GT] = ACTIONS(2205), + [anon_sym_AMP_CARET] = ACTIONS(2205), + [anon_sym_AMP_AMP] = ACTIONS(2205), + [anon_sym_PIPE_PIPE] = ACTIONS(2205), + [anon_sym_or] = ACTIONS(2205), + [sym_none] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_nil] = ACTIONS(2205), + [anon_sym_QMARK_DOT] = ACTIONS(2205), + [anon_sym_POUND_LBRACK] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_DOLLARif] = ACTIONS(2205), + [anon_sym_is] = ACTIONS(2205), + [anon_sym_BANGis] = ACTIONS(2205), + [anon_sym_in] = ACTIONS(2205), + [anon_sym_BANGin] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_select] = ACTIONS(2205), + [anon_sym_STAR_EQ] = ACTIONS(2205), + [anon_sym_SLASH_EQ] = ACTIONS(2205), + [anon_sym_PERCENT_EQ] = ACTIONS(2205), + [anon_sym_LT_LT_EQ] = ACTIONS(2205), + [anon_sym_GT_GT_EQ] = ACTIONS(2205), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2205), + [anon_sym_AMP_EQ] = ACTIONS(2205), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2205), + [anon_sym_PLUS_EQ] = ACTIONS(2205), + [anon_sym_DASH_EQ] = ACTIONS(2205), + [anon_sym_PIPE_EQ] = ACTIONS(2205), + [anon_sym_CARET_EQ] = ACTIONS(2205), + [anon_sym_COLON_EQ] = ACTIONS(2205), + [anon_sym_lock] = ACTIONS(2205), + [anon_sym_rlock] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_sql] = ACTIONS(2205), + [sym_int_literal] = ACTIONS(2205), + [sym_float_literal] = ACTIONS(2205), + [sym_rune_literal] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2205), + [anon_sym_c_SQUOTE] = ACTIONS(2205), + [anon_sym_c_DQUOTE] = ACTIONS(2205), + [anon_sym_r_SQUOTE] = ACTIONS(2205), + [anon_sym_r_DQUOTE] = ACTIONS(2205), + [sym_pseudo_compile_time_identifier] = ACTIONS(2205), + [anon_sym_shared] = ACTIONS(2205), + [anon_sym_map_LBRACK] = ACTIONS(2205), + [anon_sym_chan] = ACTIONS(2205), + [anon_sym_thread] = ACTIONS(2205), + [anon_sym_atomic] = ACTIONS(2205), + [anon_sym_assert] = ACTIONS(2205), + [anon_sym_defer] = ACTIONS(2205), + [anon_sym_goto] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_DOLLARfor] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_POUND] = ACTIONS(2205), + [anon_sym_asm] = ACTIONS(2205), + [anon_sym_AT_LBRACK] = ACTIONS(2205), }, [336] = { [sym_line_comment] = STATE(336), [sym_block_comment] = STATE(336), - [sym__expression] = STATE(2596), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4469), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LF] = ACTIONS(2209), + [anon_sym_CR] = ACTIONS(2209), + [anon_sym_CR_LF] = ACTIONS(2209), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_COMMA] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_EQ] = ACTIONS(2209), + [anon_sym___global] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_fn] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_SLASH] = ACTIONS(2209), + [anon_sym_PERCENT] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_GT] = ACTIONS(2209), + [anon_sym_EQ_EQ] = ACTIONS(2209), + [anon_sym_BANG_EQ] = ACTIONS(2209), + [anon_sym_LT_EQ] = ACTIONS(2209), + [anon_sym_GT_EQ] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_struct] = ACTIONS(2209), + [anon_sym_union] = ACTIONS(2209), + [anon_sym_pub] = ACTIONS(2209), + [anon_sym_mut] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), + [anon_sym_interface] = ACTIONS(2209), + [anon_sym_PLUS_PLUS] = ACTIONS(2209), + [anon_sym_DASH_DASH] = ACTIONS(2209), + [anon_sym_QMARK] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2209), + [anon_sym_go] = ACTIONS(2209), + [anon_sym_spawn] = ACTIONS(2209), + [anon_sym_json_DOTdecode] = ACTIONS(2209), + [anon_sym_LBRACK2] = ACTIONS(2209), + [anon_sym_TILDE] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2209), + [anon_sym_AMP] = ACTIONS(2209), + [anon_sym_LT_DASH] = ACTIONS(2209), + [anon_sym_LT_LT] = ACTIONS(2209), + [anon_sym_GT_GT] = ACTIONS(2209), + [anon_sym_GT_GT_GT] = ACTIONS(2209), + [anon_sym_AMP_CARET] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(2209), + [anon_sym_PIPE_PIPE] = ACTIONS(2209), + [anon_sym_or] = ACTIONS(2209), + [sym_none] = ACTIONS(2209), + [sym_true] = ACTIONS(2209), + [sym_false] = ACTIONS(2209), + [sym_nil] = ACTIONS(2209), + [anon_sym_QMARK_DOT] = ACTIONS(2209), + [anon_sym_POUND_LBRACK] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_DOLLARif] = ACTIONS(2209), + [anon_sym_is] = ACTIONS(2209), + [anon_sym_BANGis] = ACTIONS(2209), + [anon_sym_in] = ACTIONS(2209), + [anon_sym_BANGin] = ACTIONS(2209), + [anon_sym_match] = ACTIONS(2209), + [anon_sym_select] = ACTIONS(2209), + [anon_sym_STAR_EQ] = ACTIONS(2209), + [anon_sym_SLASH_EQ] = ACTIONS(2209), + [anon_sym_PERCENT_EQ] = ACTIONS(2209), + [anon_sym_LT_LT_EQ] = ACTIONS(2209), + [anon_sym_GT_GT_EQ] = ACTIONS(2209), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2209), + [anon_sym_AMP_EQ] = ACTIONS(2209), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2209), + [anon_sym_PLUS_EQ] = ACTIONS(2209), + [anon_sym_DASH_EQ] = ACTIONS(2209), + [anon_sym_PIPE_EQ] = ACTIONS(2209), + [anon_sym_CARET_EQ] = ACTIONS(2209), + [anon_sym_COLON_EQ] = ACTIONS(2209), + [anon_sym_lock] = ACTIONS(2209), + [anon_sym_rlock] = ACTIONS(2209), + [anon_sym_unsafe] = ACTIONS(2209), + [anon_sym_sql] = ACTIONS(2209), + [sym_int_literal] = ACTIONS(2209), + [sym_float_literal] = ACTIONS(2209), + [sym_rune_literal] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_DQUOTE] = ACTIONS(2209), + [anon_sym_c_SQUOTE] = ACTIONS(2209), + [anon_sym_c_DQUOTE] = ACTIONS(2209), + [anon_sym_r_SQUOTE] = ACTIONS(2209), + [anon_sym_r_DQUOTE] = ACTIONS(2209), + [sym_pseudo_compile_time_identifier] = ACTIONS(2209), + [anon_sym_shared] = ACTIONS(2209), + [anon_sym_map_LBRACK] = ACTIONS(2209), + [anon_sym_chan] = ACTIONS(2209), + [anon_sym_thread] = ACTIONS(2209), + [anon_sym_atomic] = ACTIONS(2209), + [anon_sym_assert] = ACTIONS(2209), + [anon_sym_defer] = ACTIONS(2209), + [anon_sym_goto] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_DOLLARfor] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_POUND] = ACTIONS(2209), + [anon_sym_asm] = ACTIONS(2209), + [anon_sym_AT_LBRACK] = ACTIONS(2209), }, [337] = { [sym_line_comment] = STATE(337), [sym_block_comment] = STATE(337), - [sym__expression] = STATE(2596), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3569), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4469), - [sym_identifier] = ACTIONS(2127), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [338] = { - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2205), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), - }, - [339] = { - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4399), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [340] = { - [sym_line_comment] = STATE(340), - [sym_block_comment] = STATE(340), - [ts_builtin_sym_end] = ACTIONS(2209), - [sym_identifier] = ACTIONS(2211), - [anon_sym_LF] = ACTIONS(2211), - [anon_sym_CR] = ACTIONS(2211), - [anon_sym_CR_LF] = ACTIONS(2211), + [ts_builtin_sym_end] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2213), + [anon_sym_LF] = ACTIONS(2213), + [anon_sym_CR] = ACTIONS(2213), + [anon_sym_CR_LF] = ACTIONS(2213), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2211), - [anon_sym_as] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_COMMA] = ACTIONS(2211), - [anon_sym_const] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_EQ] = ACTIONS(2211), - [anon_sym___global] = ACTIONS(2211), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2211), - [anon_sym_fn] = ACTIONS(2211), - [anon_sym_PLUS] = ACTIONS(2211), - [anon_sym_DASH] = ACTIONS(2211), - [anon_sym_STAR] = ACTIONS(2211), - [anon_sym_SLASH] = ACTIONS(2211), - [anon_sym_PERCENT] = ACTIONS(2211), - [anon_sym_LT] = ACTIONS(2211), - [anon_sym_GT] = ACTIONS(2211), - [anon_sym_EQ_EQ] = ACTIONS(2211), - [anon_sym_BANG_EQ] = ACTIONS(2211), - [anon_sym_LT_EQ] = ACTIONS(2211), - [anon_sym_GT_EQ] = ACTIONS(2211), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(2211), - [anon_sym_union] = ACTIONS(2211), - [anon_sym_pub] = ACTIONS(2211), - [anon_sym_mut] = ACTIONS(2211), - [anon_sym_enum] = ACTIONS(2211), - [anon_sym_interface] = ACTIONS(2211), - [anon_sym_PLUS_PLUS] = ACTIONS(2211), - [anon_sym_DASH_DASH] = ACTIONS(2211), - [anon_sym_QMARK] = ACTIONS(2211), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2211), - [anon_sym_spawn] = ACTIONS(2211), - [anon_sym_json_DOTdecode] = ACTIONS(2211), - [anon_sym_LBRACK2] = ACTIONS(2211), - [anon_sym_TILDE] = ACTIONS(2211), - [anon_sym_CARET] = ACTIONS(2211), - [anon_sym_AMP] = ACTIONS(2211), - [anon_sym_LT_DASH] = ACTIONS(2211), - [anon_sym_LT_LT] = ACTIONS(2211), - [anon_sym_GT_GT] = ACTIONS(2211), - [anon_sym_GT_GT_GT] = ACTIONS(2211), - [anon_sym_AMP_CARET] = ACTIONS(2211), - [anon_sym_AMP_AMP] = ACTIONS(2211), - [anon_sym_PIPE_PIPE] = ACTIONS(2211), - [anon_sym_or] = ACTIONS(2211), - [sym_none] = ACTIONS(2211), - [sym_true] = ACTIONS(2211), - [sym_false] = ACTIONS(2211), - [sym_nil] = ACTIONS(2211), - [anon_sym_QMARK_DOT] = ACTIONS(2211), - [anon_sym_POUND_LBRACK] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2211), - [anon_sym_DOLLARif] = ACTIONS(2211), - [anon_sym_is] = ACTIONS(2211), - [anon_sym_BANGis] = ACTIONS(2211), - [anon_sym_in] = ACTIONS(2211), - [anon_sym_BANGin] = ACTIONS(2211), - [anon_sym_match] = ACTIONS(2211), - [anon_sym_select] = ACTIONS(2211), - [anon_sym_STAR_EQ] = ACTIONS(2211), - [anon_sym_SLASH_EQ] = ACTIONS(2211), - [anon_sym_PERCENT_EQ] = ACTIONS(2211), - [anon_sym_LT_LT_EQ] = ACTIONS(2211), - [anon_sym_GT_GT_EQ] = ACTIONS(2211), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2211), - [anon_sym_AMP_EQ] = ACTIONS(2211), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2211), - [anon_sym_PLUS_EQ] = ACTIONS(2211), - [anon_sym_DASH_EQ] = ACTIONS(2211), - [anon_sym_PIPE_EQ] = ACTIONS(2211), - [anon_sym_CARET_EQ] = ACTIONS(2211), - [anon_sym_COLON_EQ] = ACTIONS(2211), - [anon_sym_lock] = ACTIONS(2211), - [anon_sym_rlock] = ACTIONS(2211), - [anon_sym_unsafe] = ACTIONS(2211), - [anon_sym_sql] = ACTIONS(2211), - [sym_int_literal] = ACTIONS(2211), - [sym_float_literal] = ACTIONS(2211), - [sym_rune_literal] = ACTIONS(2211), - [sym_pseudo_compile_time_identifier] = ACTIONS(2211), - [anon_sym_shared] = ACTIONS(2211), - [anon_sym_map_LBRACK] = ACTIONS(2211), - [anon_sym_chan] = ACTIONS(2211), - [anon_sym_thread] = ACTIONS(2211), - [anon_sym_atomic] = ACTIONS(2211), - [anon_sym_assert] = ACTIONS(2211), - [anon_sym_defer] = ACTIONS(2211), - [anon_sym_goto] = ACTIONS(2211), - [anon_sym_break] = ACTIONS(2211), - [anon_sym_continue] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2211), - [anon_sym_DOLLARfor] = ACTIONS(2211), - [anon_sym_for] = ACTIONS(2211), - [anon_sym_POUND] = ACTIONS(2211), - [anon_sym_asm] = ACTIONS(2211), - [anon_sym_AT_LBRACK] = ACTIONS(2211), - [sym___double_quote] = ACTIONS(2211), - [sym___single_quote] = ACTIONS(2211), - [sym___c_double_quote] = ACTIONS(2211), - [sym___c_single_quote] = ACTIONS(2211), - [sym___r_double_quote] = ACTIONS(2211), - [sym___r_single_quote] = ACTIONS(2211), - }, - [341] = { - [sym_line_comment] = STATE(341), - [sym_block_comment] = STATE(341), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4344), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_as] = ACTIONS(2213), [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_EQ] = ACTIONS(2213), + [anon_sym___global] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_fn] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2213), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2213), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_struct] = ACTIONS(2213), + [anon_sym_union] = ACTIONS(2213), + [anon_sym_pub] = ACTIONS(2213), + [anon_sym_mut] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [anon_sym_QMARK] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_go] = ACTIONS(2213), + [anon_sym_spawn] = ACTIONS(2213), + [anon_sym_json_DOTdecode] = ACTIONS(2213), + [anon_sym_LBRACK2] = ACTIONS(2213), + [anon_sym_TILDE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_LT_DASH] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_GT_GT_GT] = ACTIONS(2213), + [anon_sym_AMP_CARET] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_or] = ACTIONS(2213), + [sym_none] = ACTIONS(2213), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [sym_nil] = ACTIONS(2213), + [anon_sym_QMARK_DOT] = ACTIONS(2213), + [anon_sym_POUND_LBRACK] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_DOLLARif] = ACTIONS(2213), + [anon_sym_is] = ACTIONS(2213), + [anon_sym_BANGis] = ACTIONS(2213), + [anon_sym_in] = ACTIONS(2213), + [anon_sym_BANGin] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_select] = ACTIONS(2213), + [anon_sym_STAR_EQ] = ACTIONS(2213), + [anon_sym_SLASH_EQ] = ACTIONS(2213), + [anon_sym_PERCENT_EQ] = ACTIONS(2213), + [anon_sym_LT_LT_EQ] = ACTIONS(2213), + [anon_sym_GT_GT_EQ] = ACTIONS(2213), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2213), + [anon_sym_AMP_EQ] = ACTIONS(2213), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2213), + [anon_sym_PLUS_EQ] = ACTIONS(2213), + [anon_sym_DASH_EQ] = ACTIONS(2213), + [anon_sym_PIPE_EQ] = ACTIONS(2213), + [anon_sym_CARET_EQ] = ACTIONS(2213), + [anon_sym_COLON_EQ] = ACTIONS(2213), + [anon_sym_lock] = ACTIONS(2213), + [anon_sym_rlock] = ACTIONS(2213), + [anon_sym_unsafe] = ACTIONS(2213), + [anon_sym_sql] = ACTIONS(2213), + [sym_int_literal] = ACTIONS(2213), + [sym_float_literal] = ACTIONS(2213), + [sym_rune_literal] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_c_SQUOTE] = ACTIONS(2213), + [anon_sym_c_DQUOTE] = ACTIONS(2213), + [anon_sym_r_SQUOTE] = ACTIONS(2213), + [anon_sym_r_DQUOTE] = ACTIONS(2213), + [sym_pseudo_compile_time_identifier] = ACTIONS(2213), + [anon_sym_shared] = ACTIONS(2213), + [anon_sym_map_LBRACK] = ACTIONS(2213), + [anon_sym_chan] = ACTIONS(2213), + [anon_sym_thread] = ACTIONS(2213), + [anon_sym_atomic] = ACTIONS(2213), + [anon_sym_assert] = ACTIONS(2213), + [anon_sym_defer] = ACTIONS(2213), + [anon_sym_goto] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_DOLLARfor] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(2213), + [anon_sym_asm] = ACTIONS(2213), + [anon_sym_AT_LBRACK] = ACTIONS(2213), }, - [342] = { - [sym_line_comment] = STATE(342), - [sym_block_comment] = STATE(342), + [338] = { + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), [ts_builtin_sym_end] = ACTIONS(2215), [sym_identifier] = ACTIONS(2217), [anon_sym_LF] = ACTIONS(2217), @@ -62500,81 +62012,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(2217), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2219), - [anon_sym_as] = ACTIONS(2219), + [anon_sym_DOT] = ACTIONS(2217), + [anon_sym_as] = ACTIONS(2217), [anon_sym_LBRACE] = ACTIONS(2217), - [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2217), [anon_sym_const] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_EQ] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_EQ] = ACTIONS(2217), [anon_sym___global] = ACTIONS(2217), [anon_sym_type] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_PIPE] = ACTIONS(2217), [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2219), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_GT] = ACTIONS(2219), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2219), - [anon_sym_GT_EQ] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_PLUS] = ACTIONS(2217), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_STAR] = ACTIONS(2217), + [anon_sym_SLASH] = ACTIONS(2217), + [anon_sym_PERCENT] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(2217), + [anon_sym_GT] = ACTIONS(2217), + [anon_sym_EQ_EQ] = ACTIONS(2217), + [anon_sym_BANG_EQ] = ACTIONS(2217), + [anon_sym_LT_EQ] = ACTIONS(2217), + [anon_sym_GT_EQ] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2215), [anon_sym_struct] = ACTIONS(2217), [anon_sym_union] = ACTIONS(2217), [anon_sym_pub] = ACTIONS(2217), [anon_sym_mut] = ACTIONS(2217), [anon_sym_enum] = ACTIONS(2217), [anon_sym_interface] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2219), - [anon_sym_DASH_DASH] = ACTIONS(2219), - [anon_sym_QMARK] = ACTIONS(2219), - [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2217), + [anon_sym_DASH_DASH] = ACTIONS(2217), + [anon_sym_QMARK] = ACTIONS(2217), + [anon_sym_BANG] = ACTIONS(2217), [anon_sym_go] = ACTIONS(2217), [anon_sym_spawn] = ACTIONS(2217), [anon_sym_json_DOTdecode] = ACTIONS(2217), - [anon_sym_LBRACK2] = ACTIONS(2219), + [anon_sym_LBRACK2] = ACTIONS(2217), [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_CARET] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2217), [anon_sym_LT_DASH] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2219), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2219), - [anon_sym_AMP_CARET] = ACTIONS(2219), - [anon_sym_AMP_AMP] = ACTIONS(2219), - [anon_sym_PIPE_PIPE] = ACTIONS(2219), - [anon_sym_or] = ACTIONS(2219), + [anon_sym_LT_LT] = ACTIONS(2217), + [anon_sym_GT_GT] = ACTIONS(2217), + [anon_sym_GT_GT_GT] = ACTIONS(2217), + [anon_sym_AMP_CARET] = ACTIONS(2217), + [anon_sym_AMP_AMP] = ACTIONS(2217), + [anon_sym_PIPE_PIPE] = ACTIONS(2217), + [anon_sym_or] = ACTIONS(2217), [sym_none] = ACTIONS(2217), [sym_true] = ACTIONS(2217), [sym_false] = ACTIONS(2217), [sym_nil] = ACTIONS(2217), - [anon_sym_QMARK_DOT] = ACTIONS(2219), - [anon_sym_POUND_LBRACK] = ACTIONS(2219), + [anon_sym_QMARK_DOT] = ACTIONS(2217), + [anon_sym_POUND_LBRACK] = ACTIONS(2217), [anon_sym_if] = ACTIONS(2217), [anon_sym_DOLLARif] = ACTIONS(2217), - [anon_sym_is] = ACTIONS(2219), - [anon_sym_BANGis] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_BANGin] = ACTIONS(2219), + [anon_sym_is] = ACTIONS(2217), + [anon_sym_BANGis] = ACTIONS(2217), + [anon_sym_in] = ACTIONS(2217), + [anon_sym_BANGin] = ACTIONS(2217), [anon_sym_match] = ACTIONS(2217), [anon_sym_select] = ACTIONS(2217), - [anon_sym_STAR_EQ] = ACTIONS(2219), - [anon_sym_SLASH_EQ] = ACTIONS(2219), - [anon_sym_PERCENT_EQ] = ACTIONS(2219), - [anon_sym_LT_LT_EQ] = ACTIONS(2219), - [anon_sym_GT_GT_EQ] = ACTIONS(2219), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2219), - [anon_sym_AMP_EQ] = ACTIONS(2219), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2219), - [anon_sym_PLUS_EQ] = ACTIONS(2219), - [anon_sym_DASH_EQ] = ACTIONS(2219), - [anon_sym_PIPE_EQ] = ACTIONS(2219), - [anon_sym_CARET_EQ] = ACTIONS(2219), - [anon_sym_COLON_EQ] = ACTIONS(2219), + [anon_sym_STAR_EQ] = ACTIONS(2217), + [anon_sym_SLASH_EQ] = ACTIONS(2217), + [anon_sym_PERCENT_EQ] = ACTIONS(2217), + [anon_sym_LT_LT_EQ] = ACTIONS(2217), + [anon_sym_GT_GT_EQ] = ACTIONS(2217), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2217), + [anon_sym_AMP_EQ] = ACTIONS(2217), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2217), + [anon_sym_PLUS_EQ] = ACTIONS(2217), + [anon_sym_DASH_EQ] = ACTIONS(2217), + [anon_sym_PIPE_EQ] = ACTIONS(2217), + [anon_sym_CARET_EQ] = ACTIONS(2217), + [anon_sym_COLON_EQ] = ACTIONS(2217), [anon_sym_lock] = ACTIONS(2217), [anon_sym_rlock] = ACTIONS(2217), [anon_sym_unsafe] = ACTIONS(2217), @@ -62582,6 +62094,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(2217), [sym_float_literal] = ACTIONS(2217), [sym_rune_literal] = ACTIONS(2217), + [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_DQUOTE] = ACTIONS(2217), + [anon_sym_c_SQUOTE] = ACTIONS(2217), + [anon_sym_c_DQUOTE] = ACTIONS(2217), + [anon_sym_r_SQUOTE] = ACTIONS(2217), + [anon_sym_r_DQUOTE] = ACTIONS(2217), [sym_pseudo_compile_time_identifier] = ACTIONS(2217), [anon_sym_shared] = ACTIONS(2217), [anon_sym_map_LBRACK] = ACTIONS(2217), @@ -62599,132 +62117,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2217), [anon_sym_asm] = ACTIONS(2217), [anon_sym_AT_LBRACK] = ACTIONS(2217), - [sym___double_quote] = ACTIONS(2217), - [sym___single_quote] = ACTIONS(2217), - [sym___c_double_quote] = ACTIONS(2217), - [sym___c_single_quote] = ACTIONS(2217), - [sym___r_double_quote] = ACTIONS(2217), - [sym___r_single_quote] = ACTIONS(2217), }, - [343] = { - [sym_line_comment] = STATE(343), - [sym_block_comment] = STATE(343), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [339] = { + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [ts_builtin_sym_end] = ACTIONS(2219), + [sym_identifier] = ACTIONS(2221), + [anon_sym_LF] = ACTIONS(2221), + [anon_sym_CR] = ACTIONS(2221), + [anon_sym_CR_LF] = ACTIONS(2221), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2221), + [anon_sym_as] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_COMMA] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_EQ] = ACTIONS(2221), + [anon_sym___global] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_PIPE] = ACTIONS(2221), + [anon_sym_fn] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_STAR] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_PERCENT] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_GT] = ACTIONS(2221), + [anon_sym_EQ_EQ] = ACTIONS(2221), + [anon_sym_BANG_EQ] = ACTIONS(2221), + [anon_sym_LT_EQ] = ACTIONS(2221), + [anon_sym_GT_EQ] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(2221), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_mut] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_QMARK] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_go] = ACTIONS(2221), + [anon_sym_spawn] = ACTIONS(2221), + [anon_sym_json_DOTdecode] = ACTIONS(2221), + [anon_sym_LBRACK2] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_LT_DASH] = ACTIONS(2221), + [anon_sym_LT_LT] = ACTIONS(2221), + [anon_sym_GT_GT] = ACTIONS(2221), + [anon_sym_GT_GT_GT] = ACTIONS(2221), + [anon_sym_AMP_CARET] = ACTIONS(2221), + [anon_sym_AMP_AMP] = ACTIONS(2221), + [anon_sym_PIPE_PIPE] = ACTIONS(2221), + [anon_sym_or] = ACTIONS(2221), + [sym_none] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_nil] = ACTIONS(2221), + [anon_sym_QMARK_DOT] = ACTIONS(2221), + [anon_sym_POUND_LBRACK] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_DOLLARif] = ACTIONS(2221), + [anon_sym_is] = ACTIONS(2221), + [anon_sym_BANGis] = ACTIONS(2221), + [anon_sym_in] = ACTIONS(2221), + [anon_sym_BANGin] = ACTIONS(2221), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_select] = ACTIONS(2221), + [anon_sym_STAR_EQ] = ACTIONS(2221), + [anon_sym_SLASH_EQ] = ACTIONS(2221), + [anon_sym_PERCENT_EQ] = ACTIONS(2221), + [anon_sym_LT_LT_EQ] = ACTIONS(2221), + [anon_sym_GT_GT_EQ] = ACTIONS(2221), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2221), + [anon_sym_AMP_EQ] = ACTIONS(2221), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2221), + [anon_sym_PLUS_EQ] = ACTIONS(2221), + [anon_sym_DASH_EQ] = ACTIONS(2221), + [anon_sym_PIPE_EQ] = ACTIONS(2221), + [anon_sym_CARET_EQ] = ACTIONS(2221), + [anon_sym_COLON_EQ] = ACTIONS(2221), + [anon_sym_lock] = ACTIONS(2221), + [anon_sym_rlock] = ACTIONS(2221), + [anon_sym_unsafe] = ACTIONS(2221), + [anon_sym_sql] = ACTIONS(2221), + [sym_int_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + [sym_rune_literal] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_c_SQUOTE] = ACTIONS(2221), + [anon_sym_c_DQUOTE] = ACTIONS(2221), + [anon_sym_r_SQUOTE] = ACTIONS(2221), + [anon_sym_r_DQUOTE] = ACTIONS(2221), + [sym_pseudo_compile_time_identifier] = ACTIONS(2221), + [anon_sym_shared] = ACTIONS(2221), + [anon_sym_map_LBRACK] = ACTIONS(2221), + [anon_sym_chan] = ACTIONS(2221), + [anon_sym_thread] = ACTIONS(2221), + [anon_sym_atomic] = ACTIONS(2221), + [anon_sym_assert] = ACTIONS(2221), + [anon_sym_defer] = ACTIONS(2221), + [anon_sym_goto] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_DOLLARfor] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(2221), + [anon_sym_asm] = ACTIONS(2221), + [anon_sym_AT_LBRACK] = ACTIONS(2221), }, - [344] = { - [sym_line_comment] = STATE(344), - [sym_block_comment] = STATE(344), + [340] = { + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2225), + [anon_sym_LF] = ACTIONS(2225), + [anon_sym_CR] = ACTIONS(2225), + [anon_sym_CR_LF] = ACTIONS(2225), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2225), + [anon_sym_as] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_COMMA] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_EQ] = ACTIONS(2225), + [anon_sym___global] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(2225), + [anon_sym_fn] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_PERCENT] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_GT] = ACTIONS(2225), + [anon_sym_EQ_EQ] = ACTIONS(2225), + [anon_sym_BANG_EQ] = ACTIONS(2225), + [anon_sym_LT_EQ] = ACTIONS(2225), + [anon_sym_GT_EQ] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2225), + [anon_sym_pub] = ACTIONS(2225), + [anon_sym_mut] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_QMARK] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_go] = ACTIONS(2225), + [anon_sym_spawn] = ACTIONS(2225), + [anon_sym_json_DOTdecode] = ACTIONS(2225), + [anon_sym_LBRACK2] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_LT_DASH] = ACTIONS(2225), + [anon_sym_LT_LT] = ACTIONS(2225), + [anon_sym_GT_GT] = ACTIONS(2225), + [anon_sym_GT_GT_GT] = ACTIONS(2225), + [anon_sym_AMP_CARET] = ACTIONS(2225), + [anon_sym_AMP_AMP] = ACTIONS(2225), + [anon_sym_PIPE_PIPE] = ACTIONS(2225), + [anon_sym_or] = ACTIONS(2225), + [sym_none] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_nil] = ACTIONS(2225), + [anon_sym_QMARK_DOT] = ACTIONS(2225), + [anon_sym_POUND_LBRACK] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_DOLLARif] = ACTIONS(2225), + [anon_sym_is] = ACTIONS(2225), + [anon_sym_BANGis] = ACTIONS(2225), + [anon_sym_in] = ACTIONS(2225), + [anon_sym_BANGin] = ACTIONS(2225), + [anon_sym_match] = ACTIONS(2225), + [anon_sym_select] = ACTIONS(2225), + [anon_sym_STAR_EQ] = ACTIONS(2225), + [anon_sym_SLASH_EQ] = ACTIONS(2225), + [anon_sym_PERCENT_EQ] = ACTIONS(2225), + [anon_sym_LT_LT_EQ] = ACTIONS(2225), + [anon_sym_GT_GT_EQ] = ACTIONS(2225), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2225), + [anon_sym_AMP_EQ] = ACTIONS(2225), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2225), + [anon_sym_PLUS_EQ] = ACTIONS(2225), + [anon_sym_DASH_EQ] = ACTIONS(2225), + [anon_sym_PIPE_EQ] = ACTIONS(2225), + [anon_sym_CARET_EQ] = ACTIONS(2225), + [anon_sym_COLON_EQ] = ACTIONS(2225), + [anon_sym_lock] = ACTIONS(2225), + [anon_sym_rlock] = ACTIONS(2225), + [anon_sym_unsafe] = ACTIONS(2225), + [anon_sym_sql] = ACTIONS(2225), + [sym_int_literal] = ACTIONS(2225), + [sym_float_literal] = ACTIONS(2225), + [sym_rune_literal] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_c_SQUOTE] = ACTIONS(2225), + [anon_sym_c_DQUOTE] = ACTIONS(2225), + [anon_sym_r_SQUOTE] = ACTIONS(2225), + [anon_sym_r_DQUOTE] = ACTIONS(2225), + [sym_pseudo_compile_time_identifier] = ACTIONS(2225), + [anon_sym_shared] = ACTIONS(2225), + [anon_sym_map_LBRACK] = ACTIONS(2225), + [anon_sym_chan] = ACTIONS(2225), + [anon_sym_thread] = ACTIONS(2225), + [anon_sym_atomic] = ACTIONS(2225), + [anon_sym_assert] = ACTIONS(2225), + [anon_sym_defer] = ACTIONS(2225), + [anon_sym_goto] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_DOLLARfor] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_POUND] = ACTIONS(2225), + [anon_sym_asm] = ACTIONS(2225), + [anon_sym_AT_LBRACK] = ACTIONS(2225), + }, + [341] = { + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), [ts_builtin_sym_end] = ACTIONS(2227), [sym_identifier] = ACTIONS(2229), [anon_sym_LF] = ACTIONS(2229), @@ -62814,6 +62442,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(2229), [sym_float_literal] = ACTIONS(2229), [sym_rune_literal] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [anon_sym_c_SQUOTE] = ACTIONS(2229), + [anon_sym_c_DQUOTE] = ACTIONS(2229), + [anon_sym_r_SQUOTE] = ACTIONS(2229), + [anon_sym_r_DQUOTE] = ACTIONS(2229), [sym_pseudo_compile_time_identifier] = ACTIONS(2229), [anon_sym_shared] = ACTIONS(2229), [anon_sym_map_LBRACK] = ACTIONS(2229), @@ -62831,16 +62465,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2229), [anon_sym_asm] = ACTIONS(2229), [anon_sym_AT_LBRACK] = ACTIONS(2229), - [sym___double_quote] = ACTIONS(2229), - [sym___single_quote] = ACTIONS(2229), - [sym___c_double_quote] = ACTIONS(2229), - [sym___c_single_quote] = ACTIONS(2229), - [sym___r_double_quote] = ACTIONS(2229), - [sym___r_single_quote] = ACTIONS(2229), }, - [345] = { - [sym_line_comment] = STATE(345), - [sym_block_comment] = STATE(345), + [342] = { + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), [ts_builtin_sym_end] = ACTIONS(2231), [sym_identifier] = ACTIONS(2233), [anon_sym_LF] = ACTIONS(2233), @@ -62930,6 +62558,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(2233), [sym_float_literal] = ACTIONS(2233), [sym_rune_literal] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_DQUOTE] = ACTIONS(2233), + [anon_sym_c_SQUOTE] = ACTIONS(2233), + [anon_sym_c_DQUOTE] = ACTIONS(2233), + [anon_sym_r_SQUOTE] = ACTIONS(2233), + [anon_sym_r_DQUOTE] = ACTIONS(2233), [sym_pseudo_compile_time_identifier] = ACTIONS(2233), [anon_sym_shared] = ACTIONS(2233), [anon_sym_map_LBRACK] = ACTIONS(2233), @@ -62947,480 +62581,938 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2233), [anon_sym_asm] = ACTIONS(2233), [anon_sym_AT_LBRACK] = ACTIONS(2233), - [sym___double_quote] = ACTIONS(2233), - [sym___single_quote] = ACTIONS(2233), - [sym___c_double_quote] = ACTIONS(2233), - [sym___c_single_quote] = ACTIONS(2233), - [sym___r_double_quote] = ACTIONS(2233), - [sym___r_single_quote] = ACTIONS(2233), }, - [346] = { - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), - [sym__expression] = STATE(953), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(855), - [sym_mutable_expression] = STATE(1413), - [sym_expression_list] = STATE(1486), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), + [343] = { + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), + [ts_builtin_sym_end] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LF] = ACTIONS(2237), + [anon_sym_CR] = ACTIONS(2237), + [anon_sym_CR_LF] = ACTIONS(2237), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_COMMA] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_EQ] = ACTIONS(2237), + [anon_sym___global] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_PERCENT] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_GT] = ACTIONS(2237), + [anon_sym_EQ_EQ] = ACTIONS(2237), + [anon_sym_BANG_EQ] = ACTIONS(2237), + [anon_sym_LT_EQ] = ACTIONS(2237), + [anon_sym_GT_EQ] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_mut] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_QMARK] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_go] = ACTIONS(2237), + [anon_sym_spawn] = ACTIONS(2237), + [anon_sym_json_DOTdecode] = ACTIONS(2237), + [anon_sym_LBRACK2] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_CARET] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_LT_DASH] = ACTIONS(2237), + [anon_sym_LT_LT] = ACTIONS(2237), + [anon_sym_GT_GT] = ACTIONS(2237), + [anon_sym_GT_GT_GT] = ACTIONS(2237), + [anon_sym_AMP_CARET] = ACTIONS(2237), + [anon_sym_AMP_AMP] = ACTIONS(2237), + [anon_sym_PIPE_PIPE] = ACTIONS(2237), + [anon_sym_or] = ACTIONS(2237), + [sym_none] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_nil] = ACTIONS(2237), + [anon_sym_QMARK_DOT] = ACTIONS(2237), + [anon_sym_POUND_LBRACK] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_DOLLARif] = ACTIONS(2237), + [anon_sym_is] = ACTIONS(2237), + [anon_sym_BANGis] = ACTIONS(2237), + [anon_sym_in] = ACTIONS(2237), + [anon_sym_BANGin] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_select] = ACTIONS(2237), + [anon_sym_STAR_EQ] = ACTIONS(2237), + [anon_sym_SLASH_EQ] = ACTIONS(2237), + [anon_sym_PERCENT_EQ] = ACTIONS(2237), + [anon_sym_LT_LT_EQ] = ACTIONS(2237), + [anon_sym_GT_GT_EQ] = ACTIONS(2237), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2237), + [anon_sym_AMP_EQ] = ACTIONS(2237), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2237), + [anon_sym_PLUS_EQ] = ACTIONS(2237), + [anon_sym_DASH_EQ] = ACTIONS(2237), + [anon_sym_PIPE_EQ] = ACTIONS(2237), + [anon_sym_CARET_EQ] = ACTIONS(2237), + [anon_sym_COLON_EQ] = ACTIONS(2237), + [anon_sym_lock] = ACTIONS(2237), + [anon_sym_rlock] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_sql] = ACTIONS(2237), + [sym_int_literal] = ACTIONS(2237), + [sym_float_literal] = ACTIONS(2237), + [sym_rune_literal] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2237), + [anon_sym_c_SQUOTE] = ACTIONS(2237), + [anon_sym_c_DQUOTE] = ACTIONS(2237), + [anon_sym_r_SQUOTE] = ACTIONS(2237), + [anon_sym_r_DQUOTE] = ACTIONS(2237), + [sym_pseudo_compile_time_identifier] = ACTIONS(2237), + [anon_sym_shared] = ACTIONS(2237), + [anon_sym_map_LBRACK] = ACTIONS(2237), + [anon_sym_chan] = ACTIONS(2237), + [anon_sym_thread] = ACTIONS(2237), + [anon_sym_atomic] = ACTIONS(2237), + [anon_sym_assert] = ACTIONS(2237), + [anon_sym_defer] = ACTIONS(2237), + [anon_sym_goto] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_DOLLARfor] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2237), + [anon_sym_AT_LBRACK] = ACTIONS(2237), + }, + [344] = { + [sym_line_comment] = STATE(344), + [sym_block_comment] = STATE(344), + [ts_builtin_sym_end] = ACTIONS(2239), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LF] = ACTIONS(2241), + [anon_sym_CR] = ACTIONS(2241), + [anon_sym_CR_LF] = ACTIONS(2241), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2241), + [anon_sym_as] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [anon_sym_COMMA] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_EQ] = ACTIONS(2241), + [anon_sym___global] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_PIPE] = ACTIONS(2241), + [anon_sym_fn] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(2241), + [anon_sym_PERCENT] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_GT] = ACTIONS(2241), + [anon_sym_EQ_EQ] = ACTIONS(2241), + [anon_sym_BANG_EQ] = ACTIONS(2241), + [anon_sym_LT_EQ] = ACTIONS(2241), + [anon_sym_GT_EQ] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_struct] = ACTIONS(2241), + [anon_sym_union] = ACTIONS(2241), + [anon_sym_pub] = ACTIONS(2241), + [anon_sym_mut] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [anon_sym_interface] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_QMARK] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_go] = ACTIONS(2241), + [anon_sym_spawn] = ACTIONS(2241), + [anon_sym_json_DOTdecode] = ACTIONS(2241), + [anon_sym_LBRACK2] = ACTIONS(2241), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_LT_DASH] = ACTIONS(2241), + [anon_sym_LT_LT] = ACTIONS(2241), + [anon_sym_GT_GT] = ACTIONS(2241), + [anon_sym_GT_GT_GT] = ACTIONS(2241), + [anon_sym_AMP_CARET] = ACTIONS(2241), + [anon_sym_AMP_AMP] = ACTIONS(2241), + [anon_sym_PIPE_PIPE] = ACTIONS(2241), + [anon_sym_or] = ACTIONS(2241), + [sym_none] = ACTIONS(2241), + [sym_true] = ACTIONS(2241), + [sym_false] = ACTIONS(2241), + [sym_nil] = ACTIONS(2241), + [anon_sym_QMARK_DOT] = ACTIONS(2241), + [anon_sym_POUND_LBRACK] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_DOLLARif] = ACTIONS(2241), + [anon_sym_is] = ACTIONS(2241), + [anon_sym_BANGis] = ACTIONS(2241), + [anon_sym_in] = ACTIONS(2241), + [anon_sym_BANGin] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_select] = ACTIONS(2241), + [anon_sym_STAR_EQ] = ACTIONS(2241), + [anon_sym_SLASH_EQ] = ACTIONS(2241), + [anon_sym_PERCENT_EQ] = ACTIONS(2241), + [anon_sym_LT_LT_EQ] = ACTIONS(2241), + [anon_sym_GT_GT_EQ] = ACTIONS(2241), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2241), + [anon_sym_AMP_EQ] = ACTIONS(2241), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2241), + [anon_sym_PLUS_EQ] = ACTIONS(2241), + [anon_sym_DASH_EQ] = ACTIONS(2241), + [anon_sym_PIPE_EQ] = ACTIONS(2241), + [anon_sym_CARET_EQ] = ACTIONS(2241), + [anon_sym_COLON_EQ] = ACTIONS(2241), + [anon_sym_lock] = ACTIONS(2241), + [anon_sym_rlock] = ACTIONS(2241), + [anon_sym_unsafe] = ACTIONS(2241), + [anon_sym_sql] = ACTIONS(2241), + [sym_int_literal] = ACTIONS(2241), + [sym_float_literal] = ACTIONS(2241), + [sym_rune_literal] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(2241), + [anon_sym_c_SQUOTE] = ACTIONS(2241), + [anon_sym_c_DQUOTE] = ACTIONS(2241), + [anon_sym_r_SQUOTE] = ACTIONS(2241), + [anon_sym_r_DQUOTE] = ACTIONS(2241), + [sym_pseudo_compile_time_identifier] = ACTIONS(2241), + [anon_sym_shared] = ACTIONS(2241), + [anon_sym_map_LBRACK] = ACTIONS(2241), + [anon_sym_chan] = ACTIONS(2241), + [anon_sym_thread] = ACTIONS(2241), + [anon_sym_atomic] = ACTIONS(2241), + [anon_sym_assert] = ACTIONS(2241), + [anon_sym_defer] = ACTIONS(2241), + [anon_sym_goto] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_DOLLARfor] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_POUND] = ACTIONS(2241), + [anon_sym_asm] = ACTIONS(2241), + [anon_sym_AT_LBRACK] = ACTIONS(2241), + }, + [345] = { + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [ts_builtin_sym_end] = ACTIONS(2243), + [sym_identifier] = ACTIONS(2245), + [anon_sym_LF] = ACTIONS(2245), + [anon_sym_CR] = ACTIONS(2245), + [anon_sym_CR_LF] = ACTIONS(2245), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2245), + [anon_sym_as] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_COMMA] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_EQ] = ACTIONS(2245), + [anon_sym___global] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_fn] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_SLASH] = ACTIONS(2245), + [anon_sym_PERCENT] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_GT] = ACTIONS(2245), + [anon_sym_EQ_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ] = ACTIONS(2245), + [anon_sym_LT_EQ] = ACTIONS(2245), + [anon_sym_GT_EQ] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_struct] = ACTIONS(2245), + [anon_sym_union] = ACTIONS(2245), + [anon_sym_pub] = ACTIONS(2245), + [anon_sym_mut] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_QMARK] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_go] = ACTIONS(2245), + [anon_sym_spawn] = ACTIONS(2245), [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_LBRACK2] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_LT_DASH] = ACTIONS(2245), + [anon_sym_LT_LT] = ACTIONS(2245), + [anon_sym_GT_GT] = ACTIONS(2245), + [anon_sym_GT_GT_GT] = ACTIONS(2245), + [anon_sym_AMP_CARET] = ACTIONS(2245), + [anon_sym_AMP_AMP] = ACTIONS(2245), + [anon_sym_PIPE_PIPE] = ACTIONS(2245), + [anon_sym_or] = ACTIONS(2245), + [sym_none] = ACTIONS(2245), + [sym_true] = ACTIONS(2245), + [sym_false] = ACTIONS(2245), + [sym_nil] = ACTIONS(2245), + [anon_sym_QMARK_DOT] = ACTIONS(2245), + [anon_sym_POUND_LBRACK] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_DOLLARif] = ACTIONS(2245), + [anon_sym_is] = ACTIONS(2245), + [anon_sym_BANGis] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(2245), + [anon_sym_BANGin] = ACTIONS(2245), + [anon_sym_match] = ACTIONS(2245), + [anon_sym_select] = ACTIONS(2245), + [anon_sym_STAR_EQ] = ACTIONS(2245), + [anon_sym_SLASH_EQ] = ACTIONS(2245), + [anon_sym_PERCENT_EQ] = ACTIONS(2245), + [anon_sym_LT_LT_EQ] = ACTIONS(2245), + [anon_sym_GT_GT_EQ] = ACTIONS(2245), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2245), + [anon_sym_AMP_EQ] = ACTIONS(2245), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2245), + [anon_sym_PLUS_EQ] = ACTIONS(2245), + [anon_sym_DASH_EQ] = ACTIONS(2245), + [anon_sym_PIPE_EQ] = ACTIONS(2245), + [anon_sym_CARET_EQ] = ACTIONS(2245), + [anon_sym_COLON_EQ] = ACTIONS(2245), + [anon_sym_lock] = ACTIONS(2245), + [anon_sym_rlock] = ACTIONS(2245), + [anon_sym_unsafe] = ACTIONS(2245), + [anon_sym_sql] = ACTIONS(2245), + [sym_int_literal] = ACTIONS(2245), + [sym_float_literal] = ACTIONS(2245), + [sym_rune_literal] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [anon_sym_c_SQUOTE] = ACTIONS(2245), + [anon_sym_c_DQUOTE] = ACTIONS(2245), + [anon_sym_r_SQUOTE] = ACTIONS(2245), + [anon_sym_r_DQUOTE] = ACTIONS(2245), + [sym_pseudo_compile_time_identifier] = ACTIONS(2245), + [anon_sym_shared] = ACTIONS(2245), + [anon_sym_map_LBRACK] = ACTIONS(2245), + [anon_sym_chan] = ACTIONS(2245), + [anon_sym_thread] = ACTIONS(2245), + [anon_sym_atomic] = ACTIONS(2245), + [anon_sym_assert] = ACTIONS(2245), + [anon_sym_defer] = ACTIONS(2245), + [anon_sym_goto] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_DOLLARfor] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_POUND] = ACTIONS(2245), + [anon_sym_asm] = ACTIONS(2245), + [anon_sym_AT_LBRACK] = ACTIONS(2245), + }, + [346] = { + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), + [ts_builtin_sym_end] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2249), + [anon_sym_LF] = ACTIONS(2249), + [anon_sym_CR] = ACTIONS(2249), + [anon_sym_CR_LF] = ACTIONS(2249), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2249), + [anon_sym_as] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_COMMA] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_EQ] = ACTIONS(2249), + [anon_sym___global] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_PIPE] = ACTIONS(2249), + [anon_sym_fn] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_GT] = ACTIONS(2249), + [anon_sym_EQ_EQ] = ACTIONS(2249), + [anon_sym_BANG_EQ] = ACTIONS(2249), + [anon_sym_LT_EQ] = ACTIONS(2249), + [anon_sym_GT_EQ] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [anon_sym_pub] = ACTIONS(2249), + [anon_sym_mut] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_interface] = ACTIONS(2249), + [anon_sym_PLUS_PLUS] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2249), + [anon_sym_QMARK] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_go] = ACTIONS(2249), + [anon_sym_spawn] = ACTIONS(2249), + [anon_sym_json_DOTdecode] = ACTIONS(2249), + [anon_sym_LBRACK2] = ACTIONS(2249), + [anon_sym_TILDE] = ACTIONS(2249), + [anon_sym_CARET] = ACTIONS(2249), [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2251), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_LT_DASH] = ACTIONS(2249), + [anon_sym_LT_LT] = ACTIONS(2249), + [anon_sym_GT_GT] = ACTIONS(2249), + [anon_sym_GT_GT_GT] = ACTIONS(2249), + [anon_sym_AMP_CARET] = ACTIONS(2249), + [anon_sym_AMP_AMP] = ACTIONS(2249), + [anon_sym_PIPE_PIPE] = ACTIONS(2249), + [anon_sym_or] = ACTIONS(2249), + [sym_none] = ACTIONS(2249), + [sym_true] = ACTIONS(2249), + [sym_false] = ACTIONS(2249), + [sym_nil] = ACTIONS(2249), + [anon_sym_QMARK_DOT] = ACTIONS(2249), + [anon_sym_POUND_LBRACK] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_DOLLARif] = ACTIONS(2249), + [anon_sym_is] = ACTIONS(2249), + [anon_sym_BANGis] = ACTIONS(2249), + [anon_sym_in] = ACTIONS(2249), + [anon_sym_BANGin] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_select] = ACTIONS(2249), + [anon_sym_STAR_EQ] = ACTIONS(2249), + [anon_sym_SLASH_EQ] = ACTIONS(2249), + [anon_sym_PERCENT_EQ] = ACTIONS(2249), + [anon_sym_LT_LT_EQ] = ACTIONS(2249), + [anon_sym_GT_GT_EQ] = ACTIONS(2249), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2249), + [anon_sym_AMP_EQ] = ACTIONS(2249), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2249), + [anon_sym_PLUS_EQ] = ACTIONS(2249), + [anon_sym_DASH_EQ] = ACTIONS(2249), + [anon_sym_PIPE_EQ] = ACTIONS(2249), + [anon_sym_CARET_EQ] = ACTIONS(2249), + [anon_sym_COLON_EQ] = ACTIONS(2249), + [anon_sym_lock] = ACTIONS(2249), + [anon_sym_rlock] = ACTIONS(2249), + [anon_sym_unsafe] = ACTIONS(2249), + [anon_sym_sql] = ACTIONS(2249), + [sym_int_literal] = ACTIONS(2249), + [sym_float_literal] = ACTIONS(2249), + [sym_rune_literal] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_c_SQUOTE] = ACTIONS(2249), + [anon_sym_c_DQUOTE] = ACTIONS(2249), + [anon_sym_r_SQUOTE] = ACTIONS(2249), + [anon_sym_r_DQUOTE] = ACTIONS(2249), + [sym_pseudo_compile_time_identifier] = ACTIONS(2249), + [anon_sym_shared] = ACTIONS(2249), + [anon_sym_map_LBRACK] = ACTIONS(2249), + [anon_sym_chan] = ACTIONS(2249), + [anon_sym_thread] = ACTIONS(2249), + [anon_sym_atomic] = ACTIONS(2249), + [anon_sym_assert] = ACTIONS(2249), + [anon_sym_defer] = ACTIONS(2249), + [anon_sym_goto] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_DOLLARfor] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_asm] = ACTIONS(2249), + [anon_sym_AT_LBRACK] = ACTIONS(2249), }, [347] = { [sym_line_comment] = STATE(347), [sym_block_comment] = STATE(347), - [sym__expression] = STATE(953), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(855), - [sym_mutable_expression] = STATE(1413), - [sym_expression_list] = STATE(1487), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2251), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), + [ts_builtin_sym_end] = ACTIONS(2251), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LF] = ACTIONS(2253), + [anon_sym_CR] = ACTIONS(2253), + [anon_sym_CR_LF] = ACTIONS(2253), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2253), + [anon_sym_as] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_COMMA] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_EQ] = ACTIONS(2253), + [anon_sym___global] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_PIPE] = ACTIONS(2253), + [anon_sym_fn] = ACTIONS(2253), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_STAR] = ACTIONS(2253), + [anon_sym_SLASH] = ACTIONS(2253), + [anon_sym_PERCENT] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_GT] = ACTIONS(2253), + [anon_sym_EQ_EQ] = ACTIONS(2253), + [anon_sym_BANG_EQ] = ACTIONS(2253), + [anon_sym_LT_EQ] = ACTIONS(2253), + [anon_sym_GT_EQ] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2251), + [anon_sym_struct] = ACTIONS(2253), + [anon_sym_union] = ACTIONS(2253), + [anon_sym_pub] = ACTIONS(2253), + [anon_sym_mut] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [anon_sym_interface] = ACTIONS(2253), + [anon_sym_PLUS_PLUS] = ACTIONS(2253), + [anon_sym_DASH_DASH] = ACTIONS(2253), + [anon_sym_QMARK] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2253), + [anon_sym_go] = ACTIONS(2253), + [anon_sym_spawn] = ACTIONS(2253), + [anon_sym_json_DOTdecode] = ACTIONS(2253), + [anon_sym_LBRACK2] = ACTIONS(2253), + [anon_sym_TILDE] = ACTIONS(2253), + [anon_sym_CARET] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(2253), + [anon_sym_LT_DASH] = ACTIONS(2253), + [anon_sym_LT_LT] = ACTIONS(2253), + [anon_sym_GT_GT] = ACTIONS(2253), + [anon_sym_GT_GT_GT] = ACTIONS(2253), + [anon_sym_AMP_CARET] = ACTIONS(2253), + [anon_sym_AMP_AMP] = ACTIONS(2253), + [anon_sym_PIPE_PIPE] = ACTIONS(2253), + [anon_sym_or] = ACTIONS(2253), + [sym_none] = ACTIONS(2253), + [sym_true] = ACTIONS(2253), + [sym_false] = ACTIONS(2253), + [sym_nil] = ACTIONS(2253), + [anon_sym_QMARK_DOT] = ACTIONS(2253), + [anon_sym_POUND_LBRACK] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_DOLLARif] = ACTIONS(2253), + [anon_sym_is] = ACTIONS(2253), + [anon_sym_BANGis] = ACTIONS(2253), + [anon_sym_in] = ACTIONS(2253), + [anon_sym_BANGin] = ACTIONS(2253), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_select] = ACTIONS(2253), + [anon_sym_STAR_EQ] = ACTIONS(2253), + [anon_sym_SLASH_EQ] = ACTIONS(2253), + [anon_sym_PERCENT_EQ] = ACTIONS(2253), + [anon_sym_LT_LT_EQ] = ACTIONS(2253), + [anon_sym_GT_GT_EQ] = ACTIONS(2253), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2253), + [anon_sym_AMP_EQ] = ACTIONS(2253), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2253), + [anon_sym_PLUS_EQ] = ACTIONS(2253), + [anon_sym_DASH_EQ] = ACTIONS(2253), + [anon_sym_PIPE_EQ] = ACTIONS(2253), + [anon_sym_CARET_EQ] = ACTIONS(2253), + [anon_sym_COLON_EQ] = ACTIONS(2253), + [anon_sym_lock] = ACTIONS(2253), + [anon_sym_rlock] = ACTIONS(2253), + [anon_sym_unsafe] = ACTIONS(2253), + [anon_sym_sql] = ACTIONS(2253), + [sym_int_literal] = ACTIONS(2253), [sym_float_literal] = ACTIONS(2253), [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2253), + [anon_sym_c_SQUOTE] = ACTIONS(2253), + [anon_sym_c_DQUOTE] = ACTIONS(2253), + [anon_sym_r_SQUOTE] = ACTIONS(2253), + [anon_sym_r_DQUOTE] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(2253), + [anon_sym_shared] = ACTIONS(2253), + [anon_sym_map_LBRACK] = ACTIONS(2253), + [anon_sym_chan] = ACTIONS(2253), + [anon_sym_thread] = ACTIONS(2253), + [anon_sym_atomic] = ACTIONS(2253), + [anon_sym_assert] = ACTIONS(2253), + [anon_sym_defer] = ACTIONS(2253), + [anon_sym_goto] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_DOLLARfor] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_POUND] = ACTIONS(2253), + [anon_sym_asm] = ACTIONS(2253), + [anon_sym_AT_LBRACK] = ACTIONS(2253), }, [348] = { [sym_line_comment] = STATE(348), [sym_block_comment] = STATE(348), - [sym__expression] = STATE(2615), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3569), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4555), - [sym_identifier] = ACTIONS(2127), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(2255), + [sym_identifier] = ACTIONS(2257), + [anon_sym_LF] = ACTIONS(2257), + [anon_sym_CR] = ACTIONS(2257), + [anon_sym_CR_LF] = ACTIONS(2257), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2257), + [anon_sym_as] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_COMMA] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_EQ] = ACTIONS(2257), + [anon_sym___global] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_PIPE] = ACTIONS(2257), + [anon_sym_fn] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_SLASH] = ACTIONS(2257), + [anon_sym_PERCENT] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_GT] = ACTIONS(2257), + [anon_sym_EQ_EQ] = ACTIONS(2257), + [anon_sym_BANG_EQ] = ACTIONS(2257), + [anon_sym_LT_EQ] = ACTIONS(2257), + [anon_sym_GT_EQ] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2257), + [anon_sym_union] = ACTIONS(2257), + [anon_sym_pub] = ACTIONS(2257), + [anon_sym_mut] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_interface] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_QMARK] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_go] = ACTIONS(2257), + [anon_sym_spawn] = ACTIONS(2257), + [anon_sym_json_DOTdecode] = ACTIONS(2257), + [anon_sym_LBRACK2] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_LT_DASH] = ACTIONS(2257), + [anon_sym_LT_LT] = ACTIONS(2257), + [anon_sym_GT_GT] = ACTIONS(2257), + [anon_sym_GT_GT_GT] = ACTIONS(2257), + [anon_sym_AMP_CARET] = ACTIONS(2257), + [anon_sym_AMP_AMP] = ACTIONS(2257), + [anon_sym_PIPE_PIPE] = ACTIONS(2257), + [anon_sym_or] = ACTIONS(2257), + [sym_none] = ACTIONS(2257), + [sym_true] = ACTIONS(2257), + [sym_false] = ACTIONS(2257), + [sym_nil] = ACTIONS(2257), + [anon_sym_QMARK_DOT] = ACTIONS(2257), + [anon_sym_POUND_LBRACK] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_DOLLARif] = ACTIONS(2257), + [anon_sym_is] = ACTIONS(2257), + [anon_sym_BANGis] = ACTIONS(2257), + [anon_sym_in] = ACTIONS(2257), + [anon_sym_BANGin] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_select] = ACTIONS(2257), + [anon_sym_STAR_EQ] = ACTIONS(2257), + [anon_sym_SLASH_EQ] = ACTIONS(2257), + [anon_sym_PERCENT_EQ] = ACTIONS(2257), + [anon_sym_LT_LT_EQ] = ACTIONS(2257), + [anon_sym_GT_GT_EQ] = ACTIONS(2257), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2257), + [anon_sym_AMP_EQ] = ACTIONS(2257), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2257), + [anon_sym_PLUS_EQ] = ACTIONS(2257), + [anon_sym_DASH_EQ] = ACTIONS(2257), + [anon_sym_PIPE_EQ] = ACTIONS(2257), + [anon_sym_CARET_EQ] = ACTIONS(2257), + [anon_sym_COLON_EQ] = ACTIONS(2257), + [anon_sym_lock] = ACTIONS(2257), + [anon_sym_rlock] = ACTIONS(2257), + [anon_sym_unsafe] = ACTIONS(2257), + [anon_sym_sql] = ACTIONS(2257), + [sym_int_literal] = ACTIONS(2257), + [sym_float_literal] = ACTIONS(2257), + [sym_rune_literal] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2257), + [anon_sym_c_SQUOTE] = ACTIONS(2257), + [anon_sym_c_DQUOTE] = ACTIONS(2257), + [anon_sym_r_SQUOTE] = ACTIONS(2257), + [anon_sym_r_DQUOTE] = ACTIONS(2257), + [sym_pseudo_compile_time_identifier] = ACTIONS(2257), + [anon_sym_shared] = ACTIONS(2257), + [anon_sym_map_LBRACK] = ACTIONS(2257), + [anon_sym_chan] = ACTIONS(2257), + [anon_sym_thread] = ACTIONS(2257), + [anon_sym_atomic] = ACTIONS(2257), + [anon_sym_assert] = ACTIONS(2257), + [anon_sym_defer] = ACTIONS(2257), + [anon_sym_goto] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_DOLLARfor] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_POUND] = ACTIONS(2257), + [anon_sym_asm] = ACTIONS(2257), + [anon_sym_AT_LBRACK] = ACTIONS(2257), }, [349] = { [sym_line_comment] = STATE(349), [sym_block_comment] = STATE(349), - [sym__expression] = STATE(2615), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4555), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_LF] = ACTIONS(2261), + [anon_sym_CR] = ACTIONS(2261), + [anon_sym_CR_LF] = ACTIONS(2261), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2261), + [anon_sym_as] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2261), + [anon_sym_COMMA] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_EQ] = ACTIONS(2261), + [anon_sym___global] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_fn] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_PERCENT] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_GT] = ACTIONS(2261), + [anon_sym_EQ_EQ] = ACTIONS(2261), + [anon_sym_BANG_EQ] = ACTIONS(2261), + [anon_sym_LT_EQ] = ACTIONS(2261), + [anon_sym_GT_EQ] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_struct] = ACTIONS(2261), + [anon_sym_union] = ACTIONS(2261), + [anon_sym_pub] = ACTIONS(2261), + [anon_sym_mut] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2261), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_QMARK] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2261), + [anon_sym_go] = ACTIONS(2261), + [anon_sym_spawn] = ACTIONS(2261), + [anon_sym_json_DOTdecode] = ACTIONS(2261), + [anon_sym_LBRACK2] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2261), + [anon_sym_CARET] = ACTIONS(2261), + [anon_sym_AMP] = ACTIONS(2261), + [anon_sym_LT_DASH] = ACTIONS(2261), + [anon_sym_LT_LT] = ACTIONS(2261), + [anon_sym_GT_GT] = ACTIONS(2261), + [anon_sym_GT_GT_GT] = ACTIONS(2261), + [anon_sym_AMP_CARET] = ACTIONS(2261), + [anon_sym_AMP_AMP] = ACTIONS(2261), + [anon_sym_PIPE_PIPE] = ACTIONS(2261), + [anon_sym_or] = ACTIONS(2261), + [sym_none] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_nil] = ACTIONS(2261), + [anon_sym_QMARK_DOT] = ACTIONS(2261), + [anon_sym_POUND_LBRACK] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_DOLLARif] = ACTIONS(2261), + [anon_sym_is] = ACTIONS(2261), + [anon_sym_BANGis] = ACTIONS(2261), + [anon_sym_in] = ACTIONS(2261), + [anon_sym_BANGin] = ACTIONS(2261), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_select] = ACTIONS(2261), + [anon_sym_STAR_EQ] = ACTIONS(2261), + [anon_sym_SLASH_EQ] = ACTIONS(2261), + [anon_sym_PERCENT_EQ] = ACTIONS(2261), + [anon_sym_LT_LT_EQ] = ACTIONS(2261), + [anon_sym_GT_GT_EQ] = ACTIONS(2261), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2261), + [anon_sym_AMP_EQ] = ACTIONS(2261), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2261), + [anon_sym_PLUS_EQ] = ACTIONS(2261), + [anon_sym_DASH_EQ] = ACTIONS(2261), + [anon_sym_PIPE_EQ] = ACTIONS(2261), + [anon_sym_CARET_EQ] = ACTIONS(2261), + [anon_sym_COLON_EQ] = ACTIONS(2261), + [anon_sym_lock] = ACTIONS(2261), + [anon_sym_rlock] = ACTIONS(2261), + [anon_sym_unsafe] = ACTIONS(2261), + [anon_sym_sql] = ACTIONS(2261), + [sym_int_literal] = ACTIONS(2261), + [sym_float_literal] = ACTIONS(2261), + [sym_rune_literal] = ACTIONS(2261), + [anon_sym_SQUOTE] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2261), + [anon_sym_c_SQUOTE] = ACTIONS(2261), + [anon_sym_c_DQUOTE] = ACTIONS(2261), + [anon_sym_r_SQUOTE] = ACTIONS(2261), + [anon_sym_r_DQUOTE] = ACTIONS(2261), + [sym_pseudo_compile_time_identifier] = ACTIONS(2261), + [anon_sym_shared] = ACTIONS(2261), + [anon_sym_map_LBRACK] = ACTIONS(2261), + [anon_sym_chan] = ACTIONS(2261), + [anon_sym_thread] = ACTIONS(2261), + [anon_sym_atomic] = ACTIONS(2261), + [anon_sym_assert] = ACTIONS(2261), + [anon_sym_defer] = ACTIONS(2261), + [anon_sym_goto] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_DOLLARfor] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(2261), + [anon_sym_asm] = ACTIONS(2261), + [anon_sym_AT_LBRACK] = ACTIONS(2261), }, [350] = { [sym_line_comment] = STATE(350), [sym_block_comment] = STATE(350), + [ts_builtin_sym_end] = ACTIONS(2263), + [sym_identifier] = ACTIONS(2265), + [anon_sym_LF] = ACTIONS(2265), + [anon_sym_CR] = ACTIONS(2265), + [anon_sym_CR_LF] = ACTIONS(2265), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2265), + [anon_sym_as] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2265), + [anon_sym_COMMA] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2265), + [anon_sym_EQ] = ACTIONS(2265), + [anon_sym___global] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(2265), + [anon_sym_fn] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2265), + [anon_sym_SLASH] = ACTIONS(2265), + [anon_sym_PERCENT] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_GT] = ACTIONS(2265), + [anon_sym_EQ_EQ] = ACTIONS(2265), + [anon_sym_BANG_EQ] = ACTIONS(2265), + [anon_sym_LT_EQ] = ACTIONS(2265), + [anon_sym_GT_EQ] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_struct] = ACTIONS(2265), + [anon_sym_union] = ACTIONS(2265), + [anon_sym_pub] = ACTIONS(2265), + [anon_sym_mut] = ACTIONS(2265), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_interface] = ACTIONS(2265), + [anon_sym_PLUS_PLUS] = ACTIONS(2265), + [anon_sym_DASH_DASH] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(2265), + [anon_sym_go] = ACTIONS(2265), + [anon_sym_spawn] = ACTIONS(2265), + [anon_sym_json_DOTdecode] = ACTIONS(2265), + [anon_sym_LBRACK2] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_CARET] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_LT_DASH] = ACTIONS(2265), + [anon_sym_LT_LT] = ACTIONS(2265), + [anon_sym_GT_GT] = ACTIONS(2265), + [anon_sym_GT_GT_GT] = ACTIONS(2265), + [anon_sym_AMP_CARET] = ACTIONS(2265), + [anon_sym_AMP_AMP] = ACTIONS(2265), + [anon_sym_PIPE_PIPE] = ACTIONS(2265), + [anon_sym_or] = ACTIONS(2265), + [sym_none] = ACTIONS(2265), + [sym_true] = ACTIONS(2265), + [sym_false] = ACTIONS(2265), + [sym_nil] = ACTIONS(2265), + [anon_sym_QMARK_DOT] = ACTIONS(2265), + [anon_sym_POUND_LBRACK] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_DOLLARif] = ACTIONS(2265), + [anon_sym_is] = ACTIONS(2265), + [anon_sym_BANGis] = ACTIONS(2265), + [anon_sym_in] = ACTIONS(2265), + [anon_sym_BANGin] = ACTIONS(2265), + [anon_sym_match] = ACTIONS(2265), + [anon_sym_select] = ACTIONS(2265), + [anon_sym_STAR_EQ] = ACTIONS(2265), + [anon_sym_SLASH_EQ] = ACTIONS(2265), + [anon_sym_PERCENT_EQ] = ACTIONS(2265), + [anon_sym_LT_LT_EQ] = ACTIONS(2265), + [anon_sym_GT_GT_EQ] = ACTIONS(2265), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2265), + [anon_sym_AMP_EQ] = ACTIONS(2265), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2265), + [anon_sym_PLUS_EQ] = ACTIONS(2265), + [anon_sym_DASH_EQ] = ACTIONS(2265), + [anon_sym_PIPE_EQ] = ACTIONS(2265), + [anon_sym_CARET_EQ] = ACTIONS(2265), + [anon_sym_COLON_EQ] = ACTIONS(2265), + [anon_sym_lock] = ACTIONS(2265), + [anon_sym_rlock] = ACTIONS(2265), + [anon_sym_unsafe] = ACTIONS(2265), + [anon_sym_sql] = ACTIONS(2265), + [sym_int_literal] = ACTIONS(2265), + [sym_float_literal] = ACTIONS(2265), + [sym_rune_literal] = ACTIONS(2265), + [anon_sym_SQUOTE] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2265), + [anon_sym_c_SQUOTE] = ACTIONS(2265), + [anon_sym_c_DQUOTE] = ACTIONS(2265), + [anon_sym_r_SQUOTE] = ACTIONS(2265), + [anon_sym_r_DQUOTE] = ACTIONS(2265), + [sym_pseudo_compile_time_identifier] = ACTIONS(2265), + [anon_sym_shared] = ACTIONS(2265), + [anon_sym_map_LBRACK] = ACTIONS(2265), + [anon_sym_chan] = ACTIONS(2265), + [anon_sym_thread] = ACTIONS(2265), + [anon_sym_atomic] = ACTIONS(2265), + [anon_sym_assert] = ACTIONS(2265), + [anon_sym_defer] = ACTIONS(2265), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_DOLLARfor] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_POUND] = ACTIONS(2265), + [anon_sym_asm] = ACTIONS(2265), + [anon_sym_AT_LBRACK] = ACTIONS(2265), + }, + [351] = { + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), [ts_builtin_sym_end] = ACTIONS(2267), [sym_identifier] = ACTIONS(2269), [anon_sym_LF] = ACTIONS(2269), @@ -63510,6 +63602,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(2269), [sym_float_literal] = ACTIONS(2269), [sym_rune_literal] = ACTIONS(2269), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_DQUOTE] = ACTIONS(2269), + [anon_sym_c_SQUOTE] = ACTIONS(2269), + [anon_sym_c_DQUOTE] = ACTIONS(2269), + [anon_sym_r_SQUOTE] = ACTIONS(2269), + [anon_sym_r_DQUOTE] = ACTIONS(2269), [sym_pseudo_compile_time_identifier] = ACTIONS(2269), [anon_sym_shared] = ACTIONS(2269), [anon_sym_map_LBRACK] = ACTIONS(2269), @@ -63527,2868 +63625,2514 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2269), [anon_sym_asm] = ACTIONS(2269), [anon_sym_AT_LBRACK] = ACTIONS(2269), - [sym___double_quote] = ACTIONS(2269), - [sym___single_quote] = ACTIONS(2269), - [sym___c_double_quote] = ACTIONS(2269), - [sym___c_single_quote] = ACTIONS(2269), - [sym___r_double_quote] = ACTIONS(2269), - [sym___r_single_quote] = ACTIONS(2269), - }, - [351] = { - [sym_line_comment] = STATE(351), - [sym_block_comment] = STATE(351), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3558), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), }, [352] = { [sym_line_comment] = STATE(352), [sym_block_comment] = STATE(352), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1397), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1399), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2285), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(2271), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LF] = ACTIONS(2273), + [anon_sym_CR] = ACTIONS(2273), + [anon_sym_CR_LF] = ACTIONS(2273), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_as] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_COMMA] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_EQ] = ACTIONS(2273), + [anon_sym___global] = ACTIONS(2273), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_PIPE] = ACTIONS(2273), + [anon_sym_fn] = ACTIONS(2273), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_SLASH] = ACTIONS(2273), + [anon_sym_PERCENT] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_GT] = ACTIONS(2273), + [anon_sym_EQ_EQ] = ACTIONS(2273), + [anon_sym_BANG_EQ] = ACTIONS(2273), + [anon_sym_LT_EQ] = ACTIONS(2273), + [anon_sym_GT_EQ] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2271), + [anon_sym_struct] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_pub] = ACTIONS(2273), + [anon_sym_mut] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [anon_sym_interface] = ACTIONS(2273), + [anon_sym_PLUS_PLUS] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2273), + [anon_sym_QMARK] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2273), + [anon_sym_go] = ACTIONS(2273), + [anon_sym_spawn] = ACTIONS(2273), + [anon_sym_json_DOTdecode] = ACTIONS(2273), + [anon_sym_LBRACK2] = ACTIONS(2273), + [anon_sym_TILDE] = ACTIONS(2273), + [anon_sym_CARET] = ACTIONS(2273), + [anon_sym_AMP] = ACTIONS(2273), + [anon_sym_LT_DASH] = ACTIONS(2273), + [anon_sym_LT_LT] = ACTIONS(2273), + [anon_sym_GT_GT] = ACTIONS(2273), + [anon_sym_GT_GT_GT] = ACTIONS(2273), + [anon_sym_AMP_CARET] = ACTIONS(2273), + [anon_sym_AMP_AMP] = ACTIONS(2273), + [anon_sym_PIPE_PIPE] = ACTIONS(2273), + [anon_sym_or] = ACTIONS(2273), + [sym_none] = ACTIONS(2273), + [sym_true] = ACTIONS(2273), + [sym_false] = ACTIONS(2273), + [sym_nil] = ACTIONS(2273), + [anon_sym_QMARK_DOT] = ACTIONS(2273), + [anon_sym_POUND_LBRACK] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_DOLLARif] = ACTIONS(2273), + [anon_sym_is] = ACTIONS(2273), + [anon_sym_BANGis] = ACTIONS(2273), + [anon_sym_in] = ACTIONS(2273), + [anon_sym_BANGin] = ACTIONS(2273), + [anon_sym_match] = ACTIONS(2273), + [anon_sym_select] = ACTIONS(2273), + [anon_sym_STAR_EQ] = ACTIONS(2273), + [anon_sym_SLASH_EQ] = ACTIONS(2273), + [anon_sym_PERCENT_EQ] = ACTIONS(2273), + [anon_sym_LT_LT_EQ] = ACTIONS(2273), + [anon_sym_GT_GT_EQ] = ACTIONS(2273), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2273), + [anon_sym_AMP_EQ] = ACTIONS(2273), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2273), + [anon_sym_PLUS_EQ] = ACTIONS(2273), + [anon_sym_DASH_EQ] = ACTIONS(2273), + [anon_sym_PIPE_EQ] = ACTIONS(2273), + [anon_sym_CARET_EQ] = ACTIONS(2273), + [anon_sym_COLON_EQ] = ACTIONS(2273), + [anon_sym_lock] = ACTIONS(2273), + [anon_sym_rlock] = ACTIONS(2273), + [anon_sym_unsafe] = ACTIONS(2273), + [anon_sym_sql] = ACTIONS(2273), + [sym_int_literal] = ACTIONS(2273), + [sym_float_literal] = ACTIONS(2273), + [sym_rune_literal] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(2273), + [anon_sym_c_SQUOTE] = ACTIONS(2273), + [anon_sym_c_DQUOTE] = ACTIONS(2273), + [anon_sym_r_SQUOTE] = ACTIONS(2273), + [anon_sym_r_DQUOTE] = ACTIONS(2273), + [sym_pseudo_compile_time_identifier] = ACTIONS(2273), + [anon_sym_shared] = ACTIONS(2273), + [anon_sym_map_LBRACK] = ACTIONS(2273), + [anon_sym_chan] = ACTIONS(2273), + [anon_sym_thread] = ACTIONS(2273), + [anon_sym_atomic] = ACTIONS(2273), + [anon_sym_assert] = ACTIONS(2273), + [anon_sym_defer] = ACTIONS(2273), + [anon_sym_goto] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_DOLLARfor] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_POUND] = ACTIONS(2273), + [anon_sym_asm] = ACTIONS(2273), + [anon_sym_AT_LBRACK] = ACTIONS(2273), }, [353] = { [sym_line_comment] = STATE(353), [sym_block_comment] = STATE(353), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4332), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_short_element_list_repeat1] = STATE(353), + [sym_identifier] = ACTIONS(2275), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(2278), + [anon_sym_LBRACE] = ACTIONS(2281), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_fn] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(2298), + [anon_sym_mut] = ACTIONS(2301), + [anon_sym_QMARK] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_go] = ACTIONS(2310), + [anon_sym_spawn] = ACTIONS(2313), + [anon_sym_json_DOTdecode] = ACTIONS(2316), + [anon_sym_LBRACK2] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2292), + [anon_sym_CARET] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2322), + [anon_sym_LT_DASH] = ACTIONS(2325), + [sym_none] = ACTIONS(2328), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_nil] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2331), + [anon_sym_DOLLARif] = ACTIONS(2334), + [anon_sym_match] = ACTIONS(2337), + [anon_sym_select] = ACTIONS(2340), + [anon_sym_lock] = ACTIONS(2343), + [anon_sym_rlock] = ACTIONS(2343), + [anon_sym_unsafe] = ACTIONS(2346), + [anon_sym_sql] = ACTIONS(2349), + [sym_int_literal] = ACTIONS(2328), + [sym_float_literal] = ACTIONS(2352), + [sym_rune_literal] = ACTIONS(2352), + [anon_sym_SQUOTE] = ACTIONS(2355), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_c_SQUOTE] = ACTIONS(2361), + [anon_sym_c_DQUOTE] = ACTIONS(2364), + [anon_sym_r_SQUOTE] = ACTIONS(2367), + [anon_sym_r_DQUOTE] = ACTIONS(2370), + [sym_pseudo_compile_time_identifier] = ACTIONS(2373), + [anon_sym_shared] = ACTIONS(2376), + [anon_sym_map_LBRACK] = ACTIONS(2379), + [anon_sym_chan] = ACTIONS(2382), + [anon_sym_thread] = ACTIONS(2385), + [anon_sym_atomic] = ACTIONS(2388), }, [354] = { [sym_line_comment] = STATE(354), [sym_block_comment] = STATE(354), - [sym__expression] = STATE(2609), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3569), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4440), - [sym_identifier] = ACTIONS(2127), + [sym__expression] = STATE(2607), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3548), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4609), + [sym_identifier] = ACTIONS(2391), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [355] = { [sym_line_comment] = STATE(355), [sym_block_comment] = STATE(355), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1397), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1399), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2607), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4609), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2289), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [356] = { [sym_line_comment] = STATE(356), [sym_block_comment] = STATE(356), - [ts_builtin_sym_end] = ACTIONS(2291), - [sym_identifier] = ACTIONS(2293), - [anon_sym_LF] = ACTIONS(2293), - [anon_sym_CR] = ACTIONS(2293), - [anon_sym_CR_LF] = ACTIONS(2293), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2293), - [anon_sym_as] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2293), - [anon_sym_COMMA] = ACTIONS(2293), - [anon_sym_const] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_EQ] = ACTIONS(2293), - [anon_sym___global] = ACTIONS(2293), - [anon_sym_type] = ACTIONS(2293), - [anon_sym_PIPE] = ACTIONS(2293), - [anon_sym_fn] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2293), - [anon_sym_SLASH] = ACTIONS(2293), - [anon_sym_PERCENT] = ACTIONS(2293), - [anon_sym_LT] = ACTIONS(2293), - [anon_sym_GT] = ACTIONS(2293), - [anon_sym_EQ_EQ] = ACTIONS(2293), - [anon_sym_BANG_EQ] = ACTIONS(2293), - [anon_sym_LT_EQ] = ACTIONS(2293), - [anon_sym_GT_EQ] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_struct] = ACTIONS(2293), - [anon_sym_union] = ACTIONS(2293), - [anon_sym_pub] = ACTIONS(2293), - [anon_sym_mut] = ACTIONS(2293), - [anon_sym_enum] = ACTIONS(2293), - [anon_sym_interface] = ACTIONS(2293), - [anon_sym_PLUS_PLUS] = ACTIONS(2293), - [anon_sym_DASH_DASH] = ACTIONS(2293), - [anon_sym_QMARK] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_go] = ACTIONS(2293), - [anon_sym_spawn] = ACTIONS(2293), - [anon_sym_json_DOTdecode] = ACTIONS(2293), - [anon_sym_LBRACK2] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2293), - [anon_sym_CARET] = ACTIONS(2293), - [anon_sym_AMP] = ACTIONS(2293), - [anon_sym_LT_DASH] = ACTIONS(2293), - [anon_sym_LT_LT] = ACTIONS(2293), - [anon_sym_GT_GT] = ACTIONS(2293), - [anon_sym_GT_GT_GT] = ACTIONS(2293), - [anon_sym_AMP_CARET] = ACTIONS(2293), - [anon_sym_AMP_AMP] = ACTIONS(2293), - [anon_sym_PIPE_PIPE] = ACTIONS(2293), - [anon_sym_or] = ACTIONS(2293), - [sym_none] = ACTIONS(2293), - [sym_true] = ACTIONS(2293), - [sym_false] = ACTIONS(2293), - [sym_nil] = ACTIONS(2293), - [anon_sym_QMARK_DOT] = ACTIONS(2293), - [anon_sym_POUND_LBRACK] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_DOLLARif] = ACTIONS(2293), - [anon_sym_is] = ACTIONS(2293), - [anon_sym_BANGis] = ACTIONS(2293), - [anon_sym_in] = ACTIONS(2293), - [anon_sym_BANGin] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(2293), - [anon_sym_select] = ACTIONS(2293), - [anon_sym_STAR_EQ] = ACTIONS(2293), - [anon_sym_SLASH_EQ] = ACTIONS(2293), - [anon_sym_PERCENT_EQ] = ACTIONS(2293), - [anon_sym_LT_LT_EQ] = ACTIONS(2293), - [anon_sym_GT_GT_EQ] = ACTIONS(2293), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2293), - [anon_sym_AMP_EQ] = ACTIONS(2293), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2293), - [anon_sym_PLUS_EQ] = ACTIONS(2293), - [anon_sym_DASH_EQ] = ACTIONS(2293), - [anon_sym_PIPE_EQ] = ACTIONS(2293), - [anon_sym_CARET_EQ] = ACTIONS(2293), - [anon_sym_COLON_EQ] = ACTIONS(2293), - [anon_sym_lock] = ACTIONS(2293), - [anon_sym_rlock] = ACTIONS(2293), - [anon_sym_unsafe] = ACTIONS(2293), - [anon_sym_sql] = ACTIONS(2293), - [sym_int_literal] = ACTIONS(2293), - [sym_float_literal] = ACTIONS(2293), - [sym_rune_literal] = ACTIONS(2293), - [sym_pseudo_compile_time_identifier] = ACTIONS(2293), - [anon_sym_shared] = ACTIONS(2293), - [anon_sym_map_LBRACK] = ACTIONS(2293), - [anon_sym_chan] = ACTIONS(2293), - [anon_sym_thread] = ACTIONS(2293), - [anon_sym_atomic] = ACTIONS(2293), - [anon_sym_assert] = ACTIONS(2293), - [anon_sym_defer] = ACTIONS(2293), - [anon_sym_goto] = ACTIONS(2293), - [anon_sym_break] = ACTIONS(2293), - [anon_sym_continue] = ACTIONS(2293), - [anon_sym_return] = ACTIONS(2293), - [anon_sym_DOLLARfor] = ACTIONS(2293), - [anon_sym_for] = ACTIONS(2293), - [anon_sym_POUND] = ACTIONS(2293), - [anon_sym_asm] = ACTIONS(2293), - [anon_sym_AT_LBRACK] = ACTIONS(2293), - [sym___double_quote] = ACTIONS(2293), - [sym___single_quote] = ACTIONS(2293), - [sym___c_double_quote] = ACTIONS(2293), - [sym___c_single_quote] = ACTIONS(2293), - [sym___r_double_quote] = ACTIONS(2293), - [sym___r_single_quote] = ACTIONS(2293), + [sym__expression] = STATE(2575), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(870), + [sym_mutable_expression] = STATE(3805), + [sym_expression_list] = STATE(4274), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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(2295), - [sym_identifier] = ACTIONS(2297), - [anon_sym_LF] = ACTIONS(2297), - [anon_sym_CR] = ACTIONS(2297), - [anon_sym_CR_LF] = ACTIONS(2297), + [ts_builtin_sym_end] = ACTIONS(2421), + [sym_identifier] = ACTIONS(2423), + [anon_sym_LF] = ACTIONS(2423), + [anon_sym_CR] = ACTIONS(2423), + [anon_sym_CR_LF] = ACTIONS(2423), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2297), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_EQ] = ACTIONS(2297), - [anon_sym___global] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_fn] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2295), - [anon_sym_struct] = ACTIONS(2297), - [anon_sym_union] = ACTIONS(2297), - [anon_sym_pub] = ACTIONS(2297), - [anon_sym_mut] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [anon_sym_QMARK] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_go] = ACTIONS(2297), - [anon_sym_spawn] = ACTIONS(2297), - [anon_sym_json_DOTdecode] = ACTIONS(2297), - [anon_sym_LBRACK2] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_LT_DASH] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_AMP_CARET] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_or] = ACTIONS(2297), - [sym_none] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_nil] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_POUND_LBRACK] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_DOLLARif] = ACTIONS(2297), - [anon_sym_is] = ACTIONS(2297), - [anon_sym_BANGis] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_BANGin] = ACTIONS(2297), - [anon_sym_match] = ACTIONS(2297), - [anon_sym_select] = ACTIONS(2297), - [anon_sym_STAR_EQ] = ACTIONS(2297), - [anon_sym_SLASH_EQ] = ACTIONS(2297), - [anon_sym_PERCENT_EQ] = ACTIONS(2297), - [anon_sym_LT_LT_EQ] = ACTIONS(2297), - [anon_sym_GT_GT_EQ] = ACTIONS(2297), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2297), - [anon_sym_AMP_EQ] = ACTIONS(2297), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2297), - [anon_sym_PLUS_EQ] = ACTIONS(2297), - [anon_sym_DASH_EQ] = ACTIONS(2297), - [anon_sym_PIPE_EQ] = ACTIONS(2297), - [anon_sym_CARET_EQ] = ACTIONS(2297), - [anon_sym_COLON_EQ] = ACTIONS(2297), - [anon_sym_lock] = ACTIONS(2297), - [anon_sym_rlock] = ACTIONS(2297), - [anon_sym_unsafe] = ACTIONS(2297), - [anon_sym_sql] = ACTIONS(2297), - [sym_int_literal] = ACTIONS(2297), - [sym_float_literal] = ACTIONS(2297), - [sym_rune_literal] = ACTIONS(2297), - [sym_pseudo_compile_time_identifier] = ACTIONS(2297), - [anon_sym_shared] = ACTIONS(2297), - [anon_sym_map_LBRACK] = ACTIONS(2297), - [anon_sym_chan] = ACTIONS(2297), - [anon_sym_thread] = ACTIONS(2297), - [anon_sym_atomic] = ACTIONS(2297), - [anon_sym_assert] = ACTIONS(2297), - [anon_sym_defer] = ACTIONS(2297), - [anon_sym_goto] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_DOLLARfor] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_POUND] = ACTIONS(2297), - [anon_sym_asm] = ACTIONS(2297), - [anon_sym_AT_LBRACK] = ACTIONS(2297), - [sym___double_quote] = ACTIONS(2297), - [sym___single_quote] = ACTIONS(2297), - [sym___c_double_quote] = ACTIONS(2297), - [sym___c_single_quote] = ACTIONS(2297), - [sym___r_double_quote] = ACTIONS(2297), - [sym___r_single_quote] = ACTIONS(2297), + [anon_sym_DOT] = ACTIONS(2423), + [anon_sym_as] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_COMMA] = ACTIONS(2423), + [anon_sym_const] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_EQ] = ACTIONS(2423), + [anon_sym___global] = ACTIONS(2423), + [anon_sym_type] = ACTIONS(2423), + [anon_sym_PIPE] = ACTIONS(2423), + [anon_sym_fn] = ACTIONS(2423), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_LT] = ACTIONS(2423), + [anon_sym_GT] = ACTIONS(2423), + [anon_sym_EQ_EQ] = ACTIONS(2423), + [anon_sym_BANG_EQ] = ACTIONS(2423), + [anon_sym_LT_EQ] = ACTIONS(2423), + [anon_sym_GT_EQ] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(2423), + [anon_sym_union] = ACTIONS(2423), + [anon_sym_pub] = ACTIONS(2423), + [anon_sym_mut] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2423), + [anon_sym_interface] = ACTIONS(2423), + [anon_sym_PLUS_PLUS] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(2423), + [anon_sym_QMARK] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2423), + [anon_sym_spawn] = ACTIONS(2423), + [anon_sym_json_DOTdecode] = ACTIONS(2423), + [anon_sym_LBRACK2] = ACTIONS(2423), + [anon_sym_TILDE] = ACTIONS(2423), + [anon_sym_CARET] = ACTIONS(2423), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2423), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_GT_GT_GT] = ACTIONS(2423), + [anon_sym_AMP_CARET] = ACTIONS(2423), + [anon_sym_AMP_AMP] = ACTIONS(2423), + [anon_sym_PIPE_PIPE] = ACTIONS(2423), + [anon_sym_or] = ACTIONS(2423), + [sym_none] = ACTIONS(2423), + [sym_true] = ACTIONS(2423), + [sym_false] = ACTIONS(2423), + [sym_nil] = ACTIONS(2423), + [anon_sym_QMARK_DOT] = ACTIONS(2423), + [anon_sym_POUND_LBRACK] = ACTIONS(2423), + [anon_sym_if] = ACTIONS(2423), + [anon_sym_DOLLARif] = ACTIONS(2423), + [anon_sym_is] = ACTIONS(2423), + [anon_sym_BANGis] = ACTIONS(2423), + [anon_sym_in] = ACTIONS(2423), + [anon_sym_BANGin] = ACTIONS(2423), + [anon_sym_match] = ACTIONS(2423), + [anon_sym_select] = ACTIONS(2423), + [anon_sym_STAR_EQ] = ACTIONS(2423), + [anon_sym_SLASH_EQ] = ACTIONS(2423), + [anon_sym_PERCENT_EQ] = ACTIONS(2423), + [anon_sym_LT_LT_EQ] = ACTIONS(2423), + [anon_sym_GT_GT_EQ] = ACTIONS(2423), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2423), + [anon_sym_AMP_EQ] = ACTIONS(2423), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2423), + [anon_sym_PLUS_EQ] = ACTIONS(2423), + [anon_sym_DASH_EQ] = ACTIONS(2423), + [anon_sym_PIPE_EQ] = ACTIONS(2423), + [anon_sym_CARET_EQ] = ACTIONS(2423), + [anon_sym_COLON_EQ] = ACTIONS(2423), + [anon_sym_lock] = ACTIONS(2423), + [anon_sym_rlock] = ACTIONS(2423), + [anon_sym_unsafe] = ACTIONS(2423), + [anon_sym_sql] = ACTIONS(2423), + [sym_int_literal] = ACTIONS(2423), + [sym_float_literal] = ACTIONS(2423), + [sym_rune_literal] = ACTIONS(2423), + [anon_sym_SQUOTE] = ACTIONS(2423), + [anon_sym_DQUOTE] = ACTIONS(2423), + [anon_sym_c_SQUOTE] = ACTIONS(2423), + [anon_sym_c_DQUOTE] = ACTIONS(2423), + [anon_sym_r_SQUOTE] = ACTIONS(2423), + [anon_sym_r_DQUOTE] = ACTIONS(2423), + [sym_pseudo_compile_time_identifier] = ACTIONS(2423), + [anon_sym_shared] = ACTIONS(2423), + [anon_sym_map_LBRACK] = ACTIONS(2423), + [anon_sym_chan] = ACTIONS(2423), + [anon_sym_thread] = ACTIONS(2423), + [anon_sym_atomic] = ACTIONS(2423), + [anon_sym_assert] = ACTIONS(2423), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_goto] = ACTIONS(2423), + [anon_sym_break] = ACTIONS(2423), + [anon_sym_continue] = ACTIONS(2423), + [anon_sym_return] = ACTIONS(2423), + [anon_sym_DOLLARfor] = ACTIONS(2423), + [anon_sym_for] = ACTIONS(2423), + [anon_sym_POUND] = ACTIONS(2423), + [anon_sym_asm] = ACTIONS(2423), + [anon_sym_AT_LBRACK] = ACTIONS(2423), }, [358] = { [sym_line_comment] = STATE(358), [sym_block_comment] = STATE(358), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4437), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(1897), + [sym_identifier] = ACTIONS(1899), + [anon_sym_LF] = ACTIONS(1899), + [anon_sym_CR] = ACTIONS(1899), + [anon_sym_CR_LF] = ACTIONS(1899), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_as] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym___global] = ACTIONS(1899), + [anon_sym_type] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_PERCENT] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1899), + [anon_sym_GT_EQ] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_struct] = ACTIONS(1899), + [anon_sym_union] = ACTIONS(1899), + [anon_sym_pub] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_enum] = ACTIONS(1899), + [anon_sym_interface] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_QMARK] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_go] = ACTIONS(1899), + [anon_sym_spawn] = ACTIONS(1899), + [anon_sym_json_DOTdecode] = ACTIONS(1899), + [anon_sym_LBRACK2] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1899), + [anon_sym_LT_LT] = ACTIONS(1899), + [anon_sym_GT_GT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1899), + [anon_sym_AMP_CARET] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(1899), + [anon_sym_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_or] = ACTIONS(1899), + [sym_none] = ACTIONS(1899), + [sym_true] = ACTIONS(1899), + [sym_false] = ACTIONS(1899), + [sym_nil] = ACTIONS(1899), + [anon_sym_QMARK_DOT] = ACTIONS(1899), + [anon_sym_POUND_LBRACK] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_DOLLARif] = ACTIONS(1899), + [anon_sym_is] = ACTIONS(1899), + [anon_sym_BANGis] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_BANGin] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_select] = ACTIONS(1899), + [anon_sym_STAR_EQ] = ACTIONS(1899), + [anon_sym_SLASH_EQ] = ACTIONS(1899), + [anon_sym_PERCENT_EQ] = ACTIONS(1899), + [anon_sym_LT_LT_EQ] = ACTIONS(1899), + [anon_sym_GT_GT_EQ] = ACTIONS(1899), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1899), + [anon_sym_AMP_EQ] = ACTIONS(1899), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1899), + [anon_sym_PLUS_EQ] = ACTIONS(1899), + [anon_sym_DASH_EQ] = ACTIONS(1899), + [anon_sym_PIPE_EQ] = ACTIONS(1899), + [anon_sym_CARET_EQ] = ACTIONS(1899), + [anon_sym_COLON_EQ] = ACTIONS(1899), + [anon_sym_lock] = ACTIONS(1899), + [anon_sym_rlock] = ACTIONS(1899), + [anon_sym_unsafe] = ACTIONS(1899), + [anon_sym_sql] = ACTIONS(1899), + [sym_int_literal] = ACTIONS(1899), + [sym_float_literal] = ACTIONS(1899), + [sym_rune_literal] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_c_SQUOTE] = ACTIONS(1899), + [anon_sym_c_DQUOTE] = ACTIONS(1899), + [anon_sym_r_SQUOTE] = ACTIONS(1899), + [anon_sym_r_DQUOTE] = ACTIONS(1899), + [sym_pseudo_compile_time_identifier] = ACTIONS(1899), + [anon_sym_shared] = ACTIONS(1899), + [anon_sym_map_LBRACK] = ACTIONS(1899), + [anon_sym_chan] = ACTIONS(1899), + [anon_sym_thread] = ACTIONS(1899), + [anon_sym_atomic] = ACTIONS(1899), + [anon_sym_assert] = ACTIONS(1899), + [anon_sym_defer] = ACTIONS(1899), + [anon_sym_goto] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_DOLLARfor] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(1899), + [anon_sym_asm] = ACTIONS(1899), + [anon_sym_AT_LBRACK] = ACTIONS(1899), }, [359] = { [sym_line_comment] = STATE(359), [sym_block_comment] = STATE(359), - [ts_builtin_sym_end] = ACTIONS(2301), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LF] = ACTIONS(2303), - [anon_sym_CR] = ACTIONS(2303), - [anon_sym_CR_LF] = ACTIONS(2303), + [ts_builtin_sym_end] = ACTIONS(2425), + [sym_identifier] = ACTIONS(2427), + [anon_sym_LF] = ACTIONS(2427), + [anon_sym_CR] = ACTIONS(2427), + [anon_sym_CR_LF] = ACTIONS(2427), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2303), - [anon_sym_as] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2303), - [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_const] = ACTIONS(2303), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_EQ] = ACTIONS(2303), - [anon_sym___global] = ACTIONS(2303), - [anon_sym_type] = ACTIONS(2303), - [anon_sym_PIPE] = ACTIONS(2303), - [anon_sym_fn] = ACTIONS(2303), - [anon_sym_PLUS] = ACTIONS(2303), - [anon_sym_DASH] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2303), - [anon_sym_SLASH] = ACTIONS(2303), - [anon_sym_PERCENT] = ACTIONS(2303), - [anon_sym_LT] = ACTIONS(2303), - [anon_sym_GT] = ACTIONS(2303), - [anon_sym_EQ_EQ] = ACTIONS(2303), - [anon_sym_BANG_EQ] = ACTIONS(2303), - [anon_sym_LT_EQ] = ACTIONS(2303), - [anon_sym_GT_EQ] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2301), - [anon_sym_struct] = ACTIONS(2303), - [anon_sym_union] = ACTIONS(2303), - [anon_sym_pub] = ACTIONS(2303), - [anon_sym_mut] = ACTIONS(2303), - [anon_sym_enum] = ACTIONS(2303), - [anon_sym_interface] = ACTIONS(2303), - [anon_sym_PLUS_PLUS] = ACTIONS(2303), - [anon_sym_DASH_DASH] = ACTIONS(2303), - [anon_sym_QMARK] = ACTIONS(2303), - [anon_sym_BANG] = ACTIONS(2303), - [anon_sym_go] = ACTIONS(2303), - [anon_sym_spawn] = ACTIONS(2303), - [anon_sym_json_DOTdecode] = ACTIONS(2303), - [anon_sym_LBRACK2] = ACTIONS(2303), - [anon_sym_TILDE] = ACTIONS(2303), - [anon_sym_CARET] = ACTIONS(2303), - [anon_sym_AMP] = ACTIONS(2303), - [anon_sym_LT_DASH] = ACTIONS(2303), - [anon_sym_LT_LT] = ACTIONS(2303), - [anon_sym_GT_GT] = ACTIONS(2303), - [anon_sym_GT_GT_GT] = ACTIONS(2303), - [anon_sym_AMP_CARET] = ACTIONS(2303), - [anon_sym_AMP_AMP] = ACTIONS(2303), - [anon_sym_PIPE_PIPE] = ACTIONS(2303), - [anon_sym_or] = ACTIONS(2303), - [sym_none] = ACTIONS(2303), - [sym_true] = ACTIONS(2303), - [sym_false] = ACTIONS(2303), - [sym_nil] = ACTIONS(2303), - [anon_sym_QMARK_DOT] = ACTIONS(2303), - [anon_sym_POUND_LBRACK] = ACTIONS(2303), - [anon_sym_if] = ACTIONS(2303), - [anon_sym_DOLLARif] = ACTIONS(2303), - [anon_sym_is] = ACTIONS(2303), - [anon_sym_BANGis] = ACTIONS(2303), - [anon_sym_in] = ACTIONS(2303), - [anon_sym_BANGin] = ACTIONS(2303), - [anon_sym_match] = ACTIONS(2303), - [anon_sym_select] = ACTIONS(2303), - [anon_sym_STAR_EQ] = ACTIONS(2303), - [anon_sym_SLASH_EQ] = ACTIONS(2303), - [anon_sym_PERCENT_EQ] = ACTIONS(2303), - [anon_sym_LT_LT_EQ] = ACTIONS(2303), - [anon_sym_GT_GT_EQ] = ACTIONS(2303), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2303), - [anon_sym_AMP_EQ] = ACTIONS(2303), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2303), - [anon_sym_PLUS_EQ] = ACTIONS(2303), - [anon_sym_DASH_EQ] = ACTIONS(2303), - [anon_sym_PIPE_EQ] = ACTIONS(2303), - [anon_sym_CARET_EQ] = ACTIONS(2303), - [anon_sym_COLON_EQ] = ACTIONS(2303), - [anon_sym_lock] = ACTIONS(2303), - [anon_sym_rlock] = ACTIONS(2303), - [anon_sym_unsafe] = ACTIONS(2303), - [anon_sym_sql] = ACTIONS(2303), - [sym_int_literal] = ACTIONS(2303), - [sym_float_literal] = ACTIONS(2303), - [sym_rune_literal] = ACTIONS(2303), - [sym_pseudo_compile_time_identifier] = ACTIONS(2303), - [anon_sym_shared] = ACTIONS(2303), - [anon_sym_map_LBRACK] = ACTIONS(2303), - [anon_sym_chan] = ACTIONS(2303), - [anon_sym_thread] = ACTIONS(2303), - [anon_sym_atomic] = ACTIONS(2303), - [anon_sym_assert] = ACTIONS(2303), - [anon_sym_defer] = ACTIONS(2303), - [anon_sym_goto] = ACTIONS(2303), - [anon_sym_break] = ACTIONS(2303), - [anon_sym_continue] = ACTIONS(2303), - [anon_sym_return] = ACTIONS(2303), - [anon_sym_DOLLARfor] = ACTIONS(2303), - [anon_sym_for] = ACTIONS(2303), - [anon_sym_POUND] = ACTIONS(2303), - [anon_sym_asm] = ACTIONS(2303), - [anon_sym_AT_LBRACK] = ACTIONS(2303), - [sym___double_quote] = ACTIONS(2303), - [sym___single_quote] = ACTIONS(2303), - [sym___c_double_quote] = ACTIONS(2303), - [sym___c_single_quote] = ACTIONS(2303), - [sym___r_double_quote] = ACTIONS(2303), - [sym___r_single_quote] = ACTIONS(2303), + [anon_sym_DOT] = ACTIONS(2427), + [anon_sym_as] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_COMMA] = ACTIONS(2427), + [anon_sym_const] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_EQ] = ACTIONS(2427), + [anon_sym___global] = ACTIONS(2427), + [anon_sym_type] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2427), + [anon_sym_fn] = ACTIONS(2427), + [anon_sym_PLUS] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2427), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_SLASH] = ACTIONS(2427), + [anon_sym_PERCENT] = ACTIONS(2427), + [anon_sym_LT] = ACTIONS(2427), + [anon_sym_GT] = ACTIONS(2427), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_LT_EQ] = ACTIONS(2427), + [anon_sym_GT_EQ] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2427), + [anon_sym_union] = ACTIONS(2427), + [anon_sym_pub] = ACTIONS(2427), + [anon_sym_mut] = ACTIONS(2427), + [anon_sym_enum] = ACTIONS(2427), + [anon_sym_interface] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_go] = ACTIONS(2427), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(2427), + [anon_sym_LBRACK2] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_CARET] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2427), + [anon_sym_LT_DASH] = ACTIONS(2427), + [anon_sym_LT_LT] = ACTIONS(2427), + [anon_sym_GT_GT] = ACTIONS(2427), + [anon_sym_GT_GT_GT] = ACTIONS(2427), + [anon_sym_AMP_CARET] = ACTIONS(2427), + [anon_sym_AMP_AMP] = ACTIONS(2427), + [anon_sym_PIPE_PIPE] = ACTIONS(2427), + [anon_sym_or] = ACTIONS(2427), + [sym_none] = ACTIONS(2427), + [sym_true] = ACTIONS(2427), + [sym_false] = ACTIONS(2427), + [sym_nil] = ACTIONS(2427), + [anon_sym_QMARK_DOT] = ACTIONS(2427), + [anon_sym_POUND_LBRACK] = ACTIONS(2427), + [anon_sym_if] = ACTIONS(2427), + [anon_sym_DOLLARif] = ACTIONS(2427), + [anon_sym_is] = ACTIONS(2427), + [anon_sym_BANGis] = ACTIONS(2427), + [anon_sym_in] = ACTIONS(2427), + [anon_sym_BANGin] = ACTIONS(2427), + [anon_sym_match] = ACTIONS(2427), + [anon_sym_select] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2427), + [anon_sym_SLASH_EQ] = ACTIONS(2427), + [anon_sym_PERCENT_EQ] = ACTIONS(2427), + [anon_sym_LT_LT_EQ] = ACTIONS(2427), + [anon_sym_GT_GT_EQ] = ACTIONS(2427), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2427), + [anon_sym_AMP_EQ] = ACTIONS(2427), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2427), + [anon_sym_PLUS_EQ] = ACTIONS(2427), + [anon_sym_DASH_EQ] = ACTIONS(2427), + [anon_sym_PIPE_EQ] = ACTIONS(2427), + [anon_sym_CARET_EQ] = ACTIONS(2427), + [anon_sym_COLON_EQ] = ACTIONS(2427), + [anon_sym_lock] = ACTIONS(2427), + [anon_sym_rlock] = ACTIONS(2427), + [anon_sym_unsafe] = ACTIONS(2427), + [anon_sym_sql] = ACTIONS(2427), + [sym_int_literal] = ACTIONS(2427), + [sym_float_literal] = ACTIONS(2427), + [sym_rune_literal] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(2427), + [anon_sym_c_SQUOTE] = ACTIONS(2427), + [anon_sym_c_DQUOTE] = ACTIONS(2427), + [anon_sym_r_SQUOTE] = ACTIONS(2427), + [anon_sym_r_DQUOTE] = ACTIONS(2427), + [sym_pseudo_compile_time_identifier] = ACTIONS(2427), + [anon_sym_shared] = ACTIONS(2427), + [anon_sym_map_LBRACK] = ACTIONS(2427), + [anon_sym_chan] = ACTIONS(2427), + [anon_sym_thread] = ACTIONS(2427), + [anon_sym_atomic] = ACTIONS(2427), + [anon_sym_assert] = ACTIONS(2427), + [anon_sym_defer] = ACTIONS(2427), + [anon_sym_goto] = ACTIONS(2427), + [anon_sym_break] = ACTIONS(2427), + [anon_sym_continue] = ACTIONS(2427), + [anon_sym_return] = ACTIONS(2427), + [anon_sym_DOLLARfor] = ACTIONS(2427), + [anon_sym_for] = ACTIONS(2427), + [anon_sym_POUND] = ACTIONS(2427), + [anon_sym_asm] = ACTIONS(2427), + [anon_sym_AT_LBRACK] = ACTIONS(2427), }, [360] = { [sym_line_comment] = STATE(360), [sym_block_comment] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2305), - [sym_identifier] = ACTIONS(2307), - [anon_sym_LF] = ACTIONS(2307), - [anon_sym_CR] = ACTIONS(2307), - [anon_sym_CR_LF] = ACTIONS(2307), + [ts_builtin_sym_end] = ACTIONS(2429), + [sym_identifier] = ACTIONS(2431), + [anon_sym_LF] = ACTIONS(2431), + [anon_sym_CR] = ACTIONS(2431), + [anon_sym_CR_LF] = ACTIONS(2431), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_as] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_COMMA] = ACTIONS(2307), - [anon_sym_const] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(2307), - [anon_sym___global] = ACTIONS(2307), - [anon_sym_type] = ACTIONS(2307), - [anon_sym_PIPE] = ACTIONS(2307), - [anon_sym_fn] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_SLASH] = ACTIONS(2307), - [anon_sym_PERCENT] = ACTIONS(2307), - [anon_sym_LT] = ACTIONS(2307), - [anon_sym_GT] = ACTIONS(2307), - [anon_sym_EQ_EQ] = ACTIONS(2307), - [anon_sym_BANG_EQ] = ACTIONS(2307), - [anon_sym_LT_EQ] = ACTIONS(2307), - [anon_sym_GT_EQ] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_struct] = ACTIONS(2307), - [anon_sym_union] = ACTIONS(2307), - [anon_sym_pub] = ACTIONS(2307), - [anon_sym_mut] = ACTIONS(2307), - [anon_sym_enum] = ACTIONS(2307), - [anon_sym_interface] = ACTIONS(2307), - [anon_sym_PLUS_PLUS] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(2307), - [anon_sym_QMARK] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_go] = ACTIONS(2307), - [anon_sym_spawn] = ACTIONS(2307), - [anon_sym_json_DOTdecode] = ACTIONS(2307), - [anon_sym_LBRACK2] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_CARET] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_LT_DASH] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(2307), - [anon_sym_GT_GT] = ACTIONS(2307), - [anon_sym_GT_GT_GT] = ACTIONS(2307), - [anon_sym_AMP_CARET] = ACTIONS(2307), - [anon_sym_AMP_AMP] = ACTIONS(2307), - [anon_sym_PIPE_PIPE] = ACTIONS(2307), - [anon_sym_or] = ACTIONS(2307), - [sym_none] = ACTIONS(2307), - [sym_true] = ACTIONS(2307), - [sym_false] = ACTIONS(2307), - [sym_nil] = ACTIONS(2307), - [anon_sym_QMARK_DOT] = ACTIONS(2307), - [anon_sym_POUND_LBRACK] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_DOLLARif] = ACTIONS(2307), - [anon_sym_is] = ACTIONS(2307), - [anon_sym_BANGis] = ACTIONS(2307), - [anon_sym_in] = ACTIONS(2307), - [anon_sym_BANGin] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_select] = ACTIONS(2307), - [anon_sym_STAR_EQ] = ACTIONS(2307), - [anon_sym_SLASH_EQ] = ACTIONS(2307), - [anon_sym_PERCENT_EQ] = ACTIONS(2307), - [anon_sym_LT_LT_EQ] = ACTIONS(2307), - [anon_sym_GT_GT_EQ] = ACTIONS(2307), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2307), - [anon_sym_AMP_EQ] = ACTIONS(2307), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2307), - [anon_sym_PLUS_EQ] = ACTIONS(2307), - [anon_sym_DASH_EQ] = ACTIONS(2307), - [anon_sym_PIPE_EQ] = ACTIONS(2307), - [anon_sym_CARET_EQ] = ACTIONS(2307), - [anon_sym_COLON_EQ] = ACTIONS(2307), - [anon_sym_lock] = ACTIONS(2307), - [anon_sym_rlock] = ACTIONS(2307), - [anon_sym_unsafe] = ACTIONS(2307), - [anon_sym_sql] = ACTIONS(2307), - [sym_int_literal] = ACTIONS(2307), - [sym_float_literal] = ACTIONS(2307), - [sym_rune_literal] = ACTIONS(2307), - [sym_pseudo_compile_time_identifier] = ACTIONS(2307), - [anon_sym_shared] = ACTIONS(2307), - [anon_sym_map_LBRACK] = ACTIONS(2307), - [anon_sym_chan] = ACTIONS(2307), - [anon_sym_thread] = ACTIONS(2307), - [anon_sym_atomic] = ACTIONS(2307), - [anon_sym_assert] = ACTIONS(2307), - [anon_sym_defer] = ACTIONS(2307), - [anon_sym_goto] = ACTIONS(2307), - [anon_sym_break] = ACTIONS(2307), - [anon_sym_continue] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_DOLLARfor] = ACTIONS(2307), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_POUND] = ACTIONS(2307), - [anon_sym_asm] = ACTIONS(2307), - [anon_sym_AT_LBRACK] = ACTIONS(2307), - [sym___double_quote] = ACTIONS(2307), - [sym___single_quote] = ACTIONS(2307), - [sym___c_double_quote] = ACTIONS(2307), - [sym___c_single_quote] = ACTIONS(2307), - [sym___r_double_quote] = ACTIONS(2307), - [sym___r_single_quote] = ACTIONS(2307), + [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_as] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_COMMA] = ACTIONS(2431), + [anon_sym_const] = ACTIONS(2431), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_EQ] = ACTIONS(2431), + [anon_sym___global] = ACTIONS(2431), + [anon_sym_type] = ACTIONS(2431), + [anon_sym_PIPE] = ACTIONS(2431), + [anon_sym_fn] = ACTIONS(2431), + [anon_sym_PLUS] = ACTIONS(2431), + [anon_sym_DASH] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2431), + [anon_sym_SLASH] = ACTIONS(2431), + [anon_sym_PERCENT] = ACTIONS(2431), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_GT] = ACTIONS(2431), + [anon_sym_EQ_EQ] = ACTIONS(2431), + [anon_sym_BANG_EQ] = ACTIONS(2431), + [anon_sym_LT_EQ] = ACTIONS(2431), + [anon_sym_GT_EQ] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2431), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_pub] = ACTIONS(2431), + [anon_sym_mut] = ACTIONS(2431), + [anon_sym_enum] = ACTIONS(2431), + [anon_sym_interface] = ACTIONS(2431), + [anon_sym_PLUS_PLUS] = ACTIONS(2431), + [anon_sym_DASH_DASH] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_go] = ACTIONS(2431), + [anon_sym_spawn] = ACTIONS(2431), + [anon_sym_json_DOTdecode] = ACTIONS(2431), + [anon_sym_LBRACK2] = ACTIONS(2431), + [anon_sym_TILDE] = ACTIONS(2431), + [anon_sym_CARET] = ACTIONS(2431), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2431), + [anon_sym_LT_LT] = ACTIONS(2431), + [anon_sym_GT_GT] = ACTIONS(2431), + [anon_sym_GT_GT_GT] = ACTIONS(2431), + [anon_sym_AMP_CARET] = ACTIONS(2431), + [anon_sym_AMP_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2431), + [anon_sym_or] = ACTIONS(2431), + [sym_none] = ACTIONS(2431), + [sym_true] = ACTIONS(2431), + [sym_false] = ACTIONS(2431), + [sym_nil] = ACTIONS(2431), + [anon_sym_QMARK_DOT] = ACTIONS(2431), + [anon_sym_POUND_LBRACK] = ACTIONS(2431), + [anon_sym_if] = ACTIONS(2431), + [anon_sym_DOLLARif] = ACTIONS(2431), + [anon_sym_is] = ACTIONS(2431), + [anon_sym_BANGis] = ACTIONS(2431), + [anon_sym_in] = ACTIONS(2431), + [anon_sym_BANGin] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_select] = ACTIONS(2431), + [anon_sym_STAR_EQ] = ACTIONS(2431), + [anon_sym_SLASH_EQ] = ACTIONS(2431), + [anon_sym_PERCENT_EQ] = ACTIONS(2431), + [anon_sym_LT_LT_EQ] = ACTIONS(2431), + [anon_sym_GT_GT_EQ] = ACTIONS(2431), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2431), + [anon_sym_AMP_EQ] = ACTIONS(2431), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2431), + [anon_sym_PLUS_EQ] = ACTIONS(2431), + [anon_sym_DASH_EQ] = ACTIONS(2431), + [anon_sym_PIPE_EQ] = ACTIONS(2431), + [anon_sym_CARET_EQ] = ACTIONS(2431), + [anon_sym_COLON_EQ] = ACTIONS(2431), + [anon_sym_lock] = ACTIONS(2431), + [anon_sym_rlock] = ACTIONS(2431), + [anon_sym_unsafe] = ACTIONS(2431), + [anon_sym_sql] = ACTIONS(2431), + [sym_int_literal] = ACTIONS(2431), + [sym_float_literal] = ACTIONS(2431), + [sym_rune_literal] = ACTIONS(2431), + [anon_sym_SQUOTE] = ACTIONS(2431), + [anon_sym_DQUOTE] = ACTIONS(2431), + [anon_sym_c_SQUOTE] = ACTIONS(2431), + [anon_sym_c_DQUOTE] = ACTIONS(2431), + [anon_sym_r_SQUOTE] = ACTIONS(2431), + [anon_sym_r_DQUOTE] = ACTIONS(2431), + [sym_pseudo_compile_time_identifier] = ACTIONS(2431), + [anon_sym_shared] = ACTIONS(2431), + [anon_sym_map_LBRACK] = ACTIONS(2431), + [anon_sym_chan] = ACTIONS(2431), + [anon_sym_thread] = ACTIONS(2431), + [anon_sym_atomic] = ACTIONS(2431), + [anon_sym_assert] = ACTIONS(2431), + [anon_sym_defer] = ACTIONS(2431), + [anon_sym_goto] = ACTIONS(2431), + [anon_sym_break] = ACTIONS(2431), + [anon_sym_continue] = ACTIONS(2431), + [anon_sym_return] = ACTIONS(2431), + [anon_sym_DOLLARfor] = ACTIONS(2431), + [anon_sym_for] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(2431), + [anon_sym_asm] = ACTIONS(2431), + [anon_sym_AT_LBRACK] = ACTIONS(2431), }, [361] = { [sym_line_comment] = STATE(361), [sym_block_comment] = STATE(361), - [ts_builtin_sym_end] = ACTIONS(2309), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LF] = ACTIONS(2311), - [anon_sym_CR] = ACTIONS(2311), - [anon_sym_CR_LF] = ACTIONS(2311), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2311), - [anon_sym_as] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2311), - [anon_sym_COMMA] = ACTIONS(2311), - [anon_sym_const] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_EQ] = ACTIONS(2311), - [anon_sym___global] = ACTIONS(2311), - [anon_sym_type] = ACTIONS(2311), - [anon_sym_PIPE] = ACTIONS(2311), - [anon_sym_fn] = ACTIONS(2311), - [anon_sym_PLUS] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2311), - [anon_sym_STAR] = ACTIONS(2311), - [anon_sym_SLASH] = ACTIONS(2311), - [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_GT] = ACTIONS(2311), - [anon_sym_EQ_EQ] = ACTIONS(2311), - [anon_sym_BANG_EQ] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(2311), - [anon_sym_GT_EQ] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2309), - [anon_sym_struct] = ACTIONS(2311), - [anon_sym_union] = ACTIONS(2311), - [anon_sym_pub] = ACTIONS(2311), - [anon_sym_mut] = ACTIONS(2311), - [anon_sym_enum] = ACTIONS(2311), - [anon_sym_interface] = ACTIONS(2311), - [anon_sym_PLUS_PLUS] = ACTIONS(2311), - [anon_sym_DASH_DASH] = ACTIONS(2311), - [anon_sym_QMARK] = ACTIONS(2311), - [anon_sym_BANG] = ACTIONS(2311), - [anon_sym_go] = ACTIONS(2311), - [anon_sym_spawn] = ACTIONS(2311), - [anon_sym_json_DOTdecode] = ACTIONS(2311), - [anon_sym_LBRACK2] = ACTIONS(2311), - [anon_sym_TILDE] = ACTIONS(2311), - [anon_sym_CARET] = ACTIONS(2311), - [anon_sym_AMP] = ACTIONS(2311), - [anon_sym_LT_DASH] = ACTIONS(2311), - [anon_sym_LT_LT] = ACTIONS(2311), - [anon_sym_GT_GT] = ACTIONS(2311), - [anon_sym_GT_GT_GT] = ACTIONS(2311), - [anon_sym_AMP_CARET] = ACTIONS(2311), - [anon_sym_AMP_AMP] = ACTIONS(2311), - [anon_sym_PIPE_PIPE] = ACTIONS(2311), - [anon_sym_or] = ACTIONS(2311), - [sym_none] = ACTIONS(2311), - [sym_true] = ACTIONS(2311), - [sym_false] = ACTIONS(2311), - [sym_nil] = ACTIONS(2311), - [anon_sym_QMARK_DOT] = ACTIONS(2311), - [anon_sym_POUND_LBRACK] = ACTIONS(2311), - [anon_sym_if] = ACTIONS(2311), - [anon_sym_DOLLARif] = ACTIONS(2311), - [anon_sym_is] = ACTIONS(2311), - [anon_sym_BANGis] = ACTIONS(2311), - [anon_sym_in] = ACTIONS(2311), - [anon_sym_BANGin] = ACTIONS(2311), - [anon_sym_match] = ACTIONS(2311), - [anon_sym_select] = ACTIONS(2311), - [anon_sym_STAR_EQ] = ACTIONS(2311), - [anon_sym_SLASH_EQ] = ACTIONS(2311), - [anon_sym_PERCENT_EQ] = ACTIONS(2311), - [anon_sym_LT_LT_EQ] = ACTIONS(2311), - [anon_sym_GT_GT_EQ] = ACTIONS(2311), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2311), - [anon_sym_AMP_EQ] = ACTIONS(2311), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2311), - [anon_sym_PLUS_EQ] = ACTIONS(2311), - [anon_sym_DASH_EQ] = ACTIONS(2311), - [anon_sym_PIPE_EQ] = ACTIONS(2311), - [anon_sym_CARET_EQ] = ACTIONS(2311), - [anon_sym_COLON_EQ] = ACTIONS(2311), - [anon_sym_lock] = ACTIONS(2311), - [anon_sym_rlock] = ACTIONS(2311), - [anon_sym_unsafe] = ACTIONS(2311), - [anon_sym_sql] = ACTIONS(2311), - [sym_int_literal] = ACTIONS(2311), - [sym_float_literal] = ACTIONS(2311), - [sym_rune_literal] = ACTIONS(2311), - [sym_pseudo_compile_time_identifier] = ACTIONS(2311), - [anon_sym_shared] = ACTIONS(2311), - [anon_sym_map_LBRACK] = ACTIONS(2311), - [anon_sym_chan] = ACTIONS(2311), - [anon_sym_thread] = ACTIONS(2311), - [anon_sym_atomic] = ACTIONS(2311), - [anon_sym_assert] = ACTIONS(2311), - [anon_sym_defer] = ACTIONS(2311), - [anon_sym_goto] = ACTIONS(2311), - [anon_sym_break] = ACTIONS(2311), - [anon_sym_continue] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2311), - [anon_sym_DOLLARfor] = ACTIONS(2311), - [anon_sym_for] = ACTIONS(2311), - [anon_sym_POUND] = ACTIONS(2311), - [anon_sym_asm] = ACTIONS(2311), - [anon_sym_AT_LBRACK] = ACTIONS(2311), - [sym___double_quote] = ACTIONS(2311), - [sym___single_quote] = ACTIONS(2311), - [sym___c_double_quote] = ACTIONS(2311), - [sym___c_single_quote] = ACTIONS(2311), - [sym___r_double_quote] = ACTIONS(2311), - [sym___r_single_quote] = ACTIONS(2311), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1398), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1396), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [362] = { [sym_line_comment] = STATE(362), [sym_block_comment] = STATE(362), - [ts_builtin_sym_end] = ACTIONS(1989), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LF] = ACTIONS(1987), - [anon_sym_CR] = ACTIONS(1987), - [anon_sym_CR_LF] = ACTIONS(1987), + [ts_builtin_sym_end] = ACTIONS(2157), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LF] = ACTIONS(2159), + [anon_sym_CR] = ACTIONS(2159), + [anon_sym_CR_LF] = ACTIONS(2159), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1987), - [anon_sym_as] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_COMMA] = ACTIONS(1987), - [anon_sym_const] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_EQ] = ACTIONS(1987), - [anon_sym___global] = ACTIONS(1987), - [anon_sym_type] = ACTIONS(1987), - [anon_sym_PIPE] = ACTIONS(1987), - [anon_sym_fn] = ACTIONS(1987), - [anon_sym_PLUS] = ACTIONS(1987), - [anon_sym_DASH] = ACTIONS(1987), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_SLASH] = ACTIONS(1987), - [anon_sym_PERCENT] = ACTIONS(1987), - [anon_sym_LT] = ACTIONS(1987), - [anon_sym_GT] = ACTIONS(1987), - [anon_sym_EQ_EQ] = ACTIONS(1987), - [anon_sym_BANG_EQ] = ACTIONS(1987), - [anon_sym_LT_EQ] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_struct] = ACTIONS(1987), - [anon_sym_union] = ACTIONS(1987), - [anon_sym_pub] = ACTIONS(1987), - [anon_sym_mut] = ACTIONS(1987), - [anon_sym_enum] = ACTIONS(1987), - [anon_sym_interface] = ACTIONS(1987), - [anon_sym_PLUS_PLUS] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1987), - [anon_sym_QMARK] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1987), - [anon_sym_go] = ACTIONS(1987), - [anon_sym_spawn] = ACTIONS(1987), - [anon_sym_json_DOTdecode] = ACTIONS(1987), - [anon_sym_LBRACK2] = ACTIONS(1987), - [anon_sym_TILDE] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1987), - [anon_sym_AMP] = ACTIONS(1987), - [anon_sym_LT_DASH] = ACTIONS(1987), - [anon_sym_LT_LT] = ACTIONS(1987), - [anon_sym_GT_GT] = ACTIONS(1987), - [anon_sym_GT_GT_GT] = ACTIONS(1987), - [anon_sym_AMP_CARET] = ACTIONS(1987), - [anon_sym_AMP_AMP] = ACTIONS(1987), - [anon_sym_PIPE_PIPE] = ACTIONS(1987), - [anon_sym_or] = ACTIONS(1987), - [sym_none] = ACTIONS(1987), - [sym_true] = ACTIONS(1987), - [sym_false] = ACTIONS(1987), - [sym_nil] = ACTIONS(1987), - [anon_sym_QMARK_DOT] = ACTIONS(1987), - [anon_sym_POUND_LBRACK] = ACTIONS(1987), - [anon_sym_if] = ACTIONS(1987), - [anon_sym_DOLLARif] = ACTIONS(1987), - [anon_sym_is] = ACTIONS(1987), - [anon_sym_BANGis] = ACTIONS(1987), - [anon_sym_in] = ACTIONS(1987), - [anon_sym_BANGin] = ACTIONS(1987), - [anon_sym_match] = ACTIONS(1987), - [anon_sym_select] = ACTIONS(1987), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_COLON_EQ] = ACTIONS(1987), - [anon_sym_lock] = ACTIONS(1987), - [anon_sym_rlock] = ACTIONS(1987), - [anon_sym_unsafe] = ACTIONS(1987), - [anon_sym_sql] = ACTIONS(1987), - [sym_int_literal] = ACTIONS(1987), - [sym_float_literal] = ACTIONS(1987), - [sym_rune_literal] = ACTIONS(1987), - [sym_pseudo_compile_time_identifier] = ACTIONS(1987), - [anon_sym_shared] = ACTIONS(1987), - [anon_sym_map_LBRACK] = ACTIONS(1987), - [anon_sym_chan] = ACTIONS(1987), - [anon_sym_thread] = ACTIONS(1987), - [anon_sym_atomic] = ACTIONS(1987), - [anon_sym_assert] = ACTIONS(1987), - [anon_sym_defer] = ACTIONS(1987), - [anon_sym_goto] = ACTIONS(1987), - [anon_sym_break] = ACTIONS(1987), - [anon_sym_continue] = ACTIONS(1987), - [anon_sym_return] = ACTIONS(1987), - [anon_sym_DOLLARfor] = ACTIONS(1987), - [anon_sym_for] = ACTIONS(1987), - [anon_sym_POUND] = ACTIONS(1987), - [anon_sym_asm] = ACTIONS(1987), - [anon_sym_AT_LBRACK] = ACTIONS(1987), - [sym___double_quote] = ACTIONS(1987), - [sym___single_quote] = ACTIONS(1987), - [sym___c_double_quote] = ACTIONS(1987), - [sym___c_single_quote] = ACTIONS(1987), - [sym___r_double_quote] = ACTIONS(1987), - [sym___r_single_quote] = ACTIONS(1987), + [anon_sym_DOT] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_EQ] = ACTIONS(2159), + [anon_sym___global] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_PIPE] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(2159), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2159), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_PERCENT] = ACTIONS(2159), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_GT] = ACTIONS(2159), + [anon_sym_EQ_EQ] = ACTIONS(2159), + [anon_sym_BANG_EQ] = ACTIONS(2159), + [anon_sym_LT_EQ] = ACTIONS(2159), + [anon_sym_GT_EQ] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(2159), + [anon_sym_union] = ACTIONS(2159), + [anon_sym_pub] = ACTIONS(2159), + [anon_sym_mut] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [anon_sym_interface] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [anon_sym_QMARK] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(2159), + [anon_sym_spawn] = ACTIONS(2159), + [anon_sym_json_DOTdecode] = ACTIONS(2159), + [anon_sym_LBRACK2] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_CARET] = ACTIONS(2159), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_LT_DASH] = ACTIONS(2159), + [anon_sym_LT_LT] = ACTIONS(2159), + [anon_sym_GT_GT] = ACTIONS(2159), + [anon_sym_GT_GT_GT] = ACTIONS(2159), + [anon_sym_AMP_CARET] = ACTIONS(2159), + [anon_sym_AMP_AMP] = ACTIONS(2159), + [anon_sym_PIPE_PIPE] = ACTIONS(2159), + [anon_sym_or] = ACTIONS(2159), + [sym_none] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_nil] = ACTIONS(2159), + [anon_sym_QMARK_DOT] = ACTIONS(2159), + [anon_sym_POUND_LBRACK] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_DOLLARif] = ACTIONS(2159), + [anon_sym_is] = ACTIONS(2159), + [anon_sym_BANGis] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2159), + [anon_sym_BANGin] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_select] = ACTIONS(2159), + [anon_sym_STAR_EQ] = ACTIONS(2159), + [anon_sym_SLASH_EQ] = ACTIONS(2159), + [anon_sym_PERCENT_EQ] = ACTIONS(2159), + [anon_sym_LT_LT_EQ] = ACTIONS(2159), + [anon_sym_GT_GT_EQ] = ACTIONS(2159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2159), + [anon_sym_AMP_EQ] = ACTIONS(2159), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2159), + [anon_sym_PLUS_EQ] = ACTIONS(2159), + [anon_sym_DASH_EQ] = ACTIONS(2159), + [anon_sym_PIPE_EQ] = ACTIONS(2159), + [anon_sym_CARET_EQ] = ACTIONS(2159), + [anon_sym_COLON_EQ] = ACTIONS(2159), + [anon_sym_lock] = ACTIONS(2159), + [anon_sym_rlock] = ACTIONS(2159), + [anon_sym_unsafe] = ACTIONS(2159), + [anon_sym_sql] = ACTIONS(2159), + [sym_int_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_rune_literal] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_c_SQUOTE] = ACTIONS(2159), + [anon_sym_c_DQUOTE] = ACTIONS(2159), + [anon_sym_r_SQUOTE] = ACTIONS(2159), + [anon_sym_r_DQUOTE] = ACTIONS(2159), + [sym_pseudo_compile_time_identifier] = ACTIONS(2159), + [anon_sym_shared] = ACTIONS(2159), + [anon_sym_map_LBRACK] = ACTIONS(2159), + [anon_sym_chan] = ACTIONS(2159), + [anon_sym_thread] = ACTIONS(2159), + [anon_sym_atomic] = ACTIONS(2159), + [anon_sym_assert] = ACTIONS(2159), + [anon_sym_defer] = ACTIONS(2159), + [anon_sym_goto] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_DOLLARfor] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_POUND] = ACTIONS(2159), + [anon_sym_asm] = ACTIONS(2159), + [anon_sym_AT_LBRACK] = ACTIONS(2159), }, [363] = { [sym_line_comment] = STATE(363), [sym_block_comment] = STATE(363), - [sym__expression] = STATE(2609), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4440), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4276), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [364] = { [sym_line_comment] = STATE(364), [sym_block_comment] = STATE(364), - [ts_builtin_sym_end] = ACTIONS(2313), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LF] = ACTIONS(2315), - [anon_sym_CR] = ACTIONS(2315), - [anon_sym_CR_LF] = ACTIONS(2315), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2315), - [anon_sym_as] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2315), - [anon_sym_COMMA] = ACTIONS(2315), - [anon_sym_const] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_EQ] = ACTIONS(2315), - [anon_sym___global] = ACTIONS(2315), - [anon_sym_type] = ACTIONS(2315), - [anon_sym_PIPE] = ACTIONS(2315), - [anon_sym_fn] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2315), - [anon_sym_STAR] = ACTIONS(2315), - [anon_sym_SLASH] = ACTIONS(2315), - [anon_sym_PERCENT] = ACTIONS(2315), - [anon_sym_LT] = ACTIONS(2315), - [anon_sym_GT] = ACTIONS(2315), - [anon_sym_EQ_EQ] = ACTIONS(2315), - [anon_sym_BANG_EQ] = ACTIONS(2315), - [anon_sym_LT_EQ] = ACTIONS(2315), - [anon_sym_GT_EQ] = ACTIONS(2315), - [anon_sym_LBRACK] = ACTIONS(2313), - [anon_sym_struct] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(2315), - [anon_sym_pub] = ACTIONS(2315), - [anon_sym_mut] = ACTIONS(2315), - [anon_sym_enum] = ACTIONS(2315), - [anon_sym_interface] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_QMARK] = ACTIONS(2315), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_go] = ACTIONS(2315), - [anon_sym_spawn] = ACTIONS(2315), - [anon_sym_json_DOTdecode] = ACTIONS(2315), - [anon_sym_LBRACK2] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_LT_DASH] = ACTIONS(2315), - [anon_sym_LT_LT] = ACTIONS(2315), - [anon_sym_GT_GT] = ACTIONS(2315), - [anon_sym_GT_GT_GT] = ACTIONS(2315), - [anon_sym_AMP_CARET] = ACTIONS(2315), - [anon_sym_AMP_AMP] = ACTIONS(2315), - [anon_sym_PIPE_PIPE] = ACTIONS(2315), - [anon_sym_or] = ACTIONS(2315), - [sym_none] = ACTIONS(2315), - [sym_true] = ACTIONS(2315), - [sym_false] = ACTIONS(2315), - [sym_nil] = ACTIONS(2315), - [anon_sym_QMARK_DOT] = ACTIONS(2315), - [anon_sym_POUND_LBRACK] = ACTIONS(2315), - [anon_sym_if] = ACTIONS(2315), - [anon_sym_DOLLARif] = ACTIONS(2315), - [anon_sym_is] = ACTIONS(2315), - [anon_sym_BANGis] = ACTIONS(2315), - [anon_sym_in] = ACTIONS(2315), - [anon_sym_BANGin] = ACTIONS(2315), - [anon_sym_match] = ACTIONS(2315), - [anon_sym_select] = ACTIONS(2315), - [anon_sym_STAR_EQ] = ACTIONS(2315), - [anon_sym_SLASH_EQ] = ACTIONS(2315), - [anon_sym_PERCENT_EQ] = ACTIONS(2315), - [anon_sym_LT_LT_EQ] = ACTIONS(2315), - [anon_sym_GT_GT_EQ] = ACTIONS(2315), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2315), - [anon_sym_AMP_EQ] = ACTIONS(2315), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2315), - [anon_sym_PLUS_EQ] = ACTIONS(2315), - [anon_sym_DASH_EQ] = ACTIONS(2315), - [anon_sym_PIPE_EQ] = ACTIONS(2315), - [anon_sym_CARET_EQ] = ACTIONS(2315), - [anon_sym_COLON_EQ] = ACTIONS(2315), - [anon_sym_lock] = ACTIONS(2315), - [anon_sym_rlock] = ACTIONS(2315), - [anon_sym_unsafe] = ACTIONS(2315), - [anon_sym_sql] = ACTIONS(2315), - [sym_int_literal] = ACTIONS(2315), - [sym_float_literal] = ACTIONS(2315), - [sym_rune_literal] = ACTIONS(2315), - [sym_pseudo_compile_time_identifier] = ACTIONS(2315), - [anon_sym_shared] = ACTIONS(2315), - [anon_sym_map_LBRACK] = ACTIONS(2315), - [anon_sym_chan] = ACTIONS(2315), - [anon_sym_thread] = ACTIONS(2315), - [anon_sym_atomic] = ACTIONS(2315), - [anon_sym_assert] = ACTIONS(2315), - [anon_sym_defer] = ACTIONS(2315), - [anon_sym_goto] = ACTIONS(2315), - [anon_sym_break] = ACTIONS(2315), - [anon_sym_continue] = ACTIONS(2315), - [anon_sym_return] = ACTIONS(2315), - [anon_sym_DOLLARfor] = ACTIONS(2315), - [anon_sym_for] = ACTIONS(2315), - [anon_sym_POUND] = ACTIONS(2315), - [anon_sym_asm] = ACTIONS(2315), - [anon_sym_AT_LBRACK] = ACTIONS(2315), - [sym___double_quote] = ACTIONS(2315), - [sym___single_quote] = ACTIONS(2315), - [sym___c_double_quote] = ACTIONS(2315), - [sym___c_single_quote] = ACTIONS(2315), - [sym___r_double_quote] = ACTIONS(2315), - [sym___r_single_quote] = ACTIONS(2315), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4383), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [365] = { [sym_line_comment] = STATE(365), [sym_block_comment] = STATE(365), - [sym__expression] = STATE(1340), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_string_interpolation_repeat1] = STATE(365), - [sym_identifier] = ACTIONS(2317), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2320), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_fn] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2340), - [anon_sym_mut] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2346), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_go] = ACTIONS(2352), - [anon_sym_spawn] = ACTIONS(2355), - [anon_sym_json_DOTdecode] = ACTIONS(2358), - [anon_sym_LBRACK2] = ACTIONS(2361), - [anon_sym_TILDE] = ACTIONS(2334), - [anon_sym_CARET] = ACTIONS(2334), - [anon_sym_AMP] = ACTIONS(2364), - [anon_sym_LT_DASH] = ACTIONS(2367), - [sym_none] = ACTIONS(2370), - [sym_true] = ACTIONS(2370), - [sym_false] = ACTIONS(2370), - [sym_nil] = ACTIONS(2370), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_DOLLARif] = ACTIONS(2376), - [anon_sym_match] = ACTIONS(2379), - [anon_sym_select] = ACTIONS(2382), - [anon_sym_lock] = ACTIONS(2385), - [anon_sym_rlock] = ACTIONS(2385), - [anon_sym_unsafe] = ACTIONS(2388), - [anon_sym_sql] = ACTIONS(2391), - [sym_int_literal] = ACTIONS(2370), - [sym_float_literal] = ACTIONS(2394), - [sym_rune_literal] = ACTIONS(2394), - [sym_pseudo_compile_time_identifier] = ACTIONS(2397), - [anon_sym_shared] = ACTIONS(2400), - [anon_sym_map_LBRACK] = ACTIONS(2403), - [anon_sym_chan] = ACTIONS(2406), - [anon_sym_thread] = ACTIONS(2409), - [anon_sym_atomic] = ACTIONS(2412), - [sym___double_quote] = ACTIONS(2415), - [sym___single_quote] = ACTIONS(2418), - [sym___c_double_quote] = ACTIONS(2421), - [sym___c_single_quote] = ACTIONS(2424), - [sym___r_double_quote] = ACTIONS(2427), - [sym___r_single_quote] = ACTIONS(2430), + [ts_builtin_sym_end] = ACTIONS(2437), + [sym_identifier] = ACTIONS(2439), + [anon_sym_LF] = ACTIONS(2439), + [anon_sym_CR] = ACTIONS(2439), + [anon_sym_CR_LF] = ACTIONS(2439), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2439), + [anon_sym_as] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_COMMA] = ACTIONS(2439), + [anon_sym_const] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_EQ] = ACTIONS(2439), + [anon_sym___global] = ACTIONS(2439), + [anon_sym_type] = ACTIONS(2439), + [anon_sym_PIPE] = ACTIONS(2439), + [anon_sym_fn] = ACTIONS(2439), + [anon_sym_PLUS] = ACTIONS(2439), + [anon_sym_DASH] = ACTIONS(2439), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_SLASH] = ACTIONS(2439), + [anon_sym_PERCENT] = ACTIONS(2439), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_GT] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2439), + [anon_sym_BANG_EQ] = ACTIONS(2439), + [anon_sym_LT_EQ] = ACTIONS(2439), + [anon_sym_GT_EQ] = ACTIONS(2439), + [anon_sym_LBRACK] = ACTIONS(2437), + [anon_sym_struct] = ACTIONS(2439), + [anon_sym_union] = ACTIONS(2439), + [anon_sym_pub] = ACTIONS(2439), + [anon_sym_mut] = ACTIONS(2439), + [anon_sym_enum] = ACTIONS(2439), + [anon_sym_interface] = ACTIONS(2439), + [anon_sym_PLUS_PLUS] = ACTIONS(2439), + [anon_sym_DASH_DASH] = ACTIONS(2439), + [anon_sym_QMARK] = ACTIONS(2439), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2439), + [anon_sym_json_DOTdecode] = ACTIONS(2439), + [anon_sym_LBRACK2] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2439), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2439), + [anon_sym_LT_DASH] = ACTIONS(2439), + [anon_sym_LT_LT] = ACTIONS(2439), + [anon_sym_GT_GT] = ACTIONS(2439), + [anon_sym_GT_GT_GT] = ACTIONS(2439), + [anon_sym_AMP_CARET] = ACTIONS(2439), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_PIPE_PIPE] = ACTIONS(2439), + [anon_sym_or] = ACTIONS(2439), + [sym_none] = ACTIONS(2439), + [sym_true] = ACTIONS(2439), + [sym_false] = ACTIONS(2439), + [sym_nil] = ACTIONS(2439), + [anon_sym_QMARK_DOT] = ACTIONS(2439), + [anon_sym_POUND_LBRACK] = ACTIONS(2439), + [anon_sym_if] = ACTIONS(2439), + [anon_sym_DOLLARif] = ACTIONS(2439), + [anon_sym_is] = ACTIONS(2439), + [anon_sym_BANGis] = ACTIONS(2439), + [anon_sym_in] = ACTIONS(2439), + [anon_sym_BANGin] = ACTIONS(2439), + [anon_sym_match] = ACTIONS(2439), + [anon_sym_select] = ACTIONS(2439), + [anon_sym_STAR_EQ] = ACTIONS(2439), + [anon_sym_SLASH_EQ] = ACTIONS(2439), + [anon_sym_PERCENT_EQ] = ACTIONS(2439), + [anon_sym_LT_LT_EQ] = ACTIONS(2439), + [anon_sym_GT_GT_EQ] = ACTIONS(2439), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2439), + [anon_sym_AMP_EQ] = ACTIONS(2439), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2439), + [anon_sym_PLUS_EQ] = ACTIONS(2439), + [anon_sym_DASH_EQ] = ACTIONS(2439), + [anon_sym_PIPE_EQ] = ACTIONS(2439), + [anon_sym_CARET_EQ] = ACTIONS(2439), + [anon_sym_COLON_EQ] = ACTIONS(2439), + [anon_sym_lock] = ACTIONS(2439), + [anon_sym_rlock] = ACTIONS(2439), + [anon_sym_unsafe] = ACTIONS(2439), + [anon_sym_sql] = ACTIONS(2439), + [sym_int_literal] = ACTIONS(2439), + [sym_float_literal] = ACTIONS(2439), + [sym_rune_literal] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(2439), + [anon_sym_c_SQUOTE] = ACTIONS(2439), + [anon_sym_c_DQUOTE] = ACTIONS(2439), + [anon_sym_r_SQUOTE] = ACTIONS(2439), + [anon_sym_r_DQUOTE] = ACTIONS(2439), + [sym_pseudo_compile_time_identifier] = ACTIONS(2439), + [anon_sym_shared] = ACTIONS(2439), + [anon_sym_map_LBRACK] = ACTIONS(2439), + [anon_sym_chan] = ACTIONS(2439), + [anon_sym_thread] = ACTIONS(2439), + [anon_sym_atomic] = ACTIONS(2439), + [anon_sym_assert] = ACTIONS(2439), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_goto] = ACTIONS(2439), + [anon_sym_break] = ACTIONS(2439), + [anon_sym_continue] = ACTIONS(2439), + [anon_sym_return] = ACTIONS(2439), + [anon_sym_DOLLARfor] = ACTIONS(2439), + [anon_sym_for] = ACTIONS(2439), + [anon_sym_POUND] = ACTIONS(2439), + [anon_sym_asm] = ACTIONS(2439), + [anon_sym_AT_LBRACK] = ACTIONS(2439), }, [366] = { [sym_line_comment] = STATE(366), [sym_block_comment] = STATE(366), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(2142), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LF] = ACTIONS(2139), + [anon_sym_CR] = ACTIONS(2139), + [anon_sym_CR_LF] = ACTIONS(2139), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_EQ] = ACTIONS(2139), + [anon_sym___global] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_mut] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_QMARK] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(2139), + [anon_sym_spawn] = ACTIONS(2139), + [anon_sym_json_DOTdecode] = ACTIONS(2139), + [anon_sym_LBRACK2] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_LT_DASH] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_AMP_CARET] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_or] = ACTIONS(2139), + [sym_none] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_nil] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_POUND_LBRACK] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_DOLLARif] = ACTIONS(2139), + [anon_sym_is] = ACTIONS(2139), + [anon_sym_BANGis] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_BANGin] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_select] = ACTIONS(2139), + [anon_sym_STAR_EQ] = ACTIONS(2139), + [anon_sym_SLASH_EQ] = ACTIONS(2139), + [anon_sym_PERCENT_EQ] = ACTIONS(2139), + [anon_sym_LT_LT_EQ] = ACTIONS(2139), + [anon_sym_GT_GT_EQ] = ACTIONS(2139), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2139), + [anon_sym_AMP_EQ] = ACTIONS(2139), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2139), + [anon_sym_PLUS_EQ] = ACTIONS(2139), + [anon_sym_DASH_EQ] = ACTIONS(2139), + [anon_sym_PIPE_EQ] = ACTIONS(2139), + [anon_sym_CARET_EQ] = ACTIONS(2139), + [anon_sym_COLON_EQ] = ACTIONS(2139), + [anon_sym_lock] = ACTIONS(2139), + [anon_sym_rlock] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_sql] = ACTIONS(2139), + [sym_int_literal] = ACTIONS(2139), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_c_SQUOTE] = ACTIONS(2139), + [anon_sym_c_DQUOTE] = ACTIONS(2139), + [anon_sym_r_SQUOTE] = ACTIONS(2139), + [anon_sym_r_DQUOTE] = ACTIONS(2139), + [sym_pseudo_compile_time_identifier] = ACTIONS(2139), + [anon_sym_shared] = ACTIONS(2139), + [anon_sym_map_LBRACK] = ACTIONS(2139), + [anon_sym_chan] = ACTIONS(2139), + [anon_sym_thread] = ACTIONS(2139), + [anon_sym_atomic] = ACTIONS(2139), + [anon_sym_assert] = ACTIONS(2139), + [anon_sym_defer] = ACTIONS(2139), + [anon_sym_goto] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_DOLLARfor] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_POUND] = ACTIONS(2139), + [anon_sym_asm] = ACTIONS(2139), + [anon_sym_AT_LBRACK] = ACTIONS(2139), }, [367] = { [sym_line_comment] = STATE(367), [sym_block_comment] = STATE(367), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1397), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1399), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(311), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2435), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2441), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [368] = { [sym_line_comment] = STATE(368), [sym_block_comment] = STATE(368), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1397), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1399), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2580), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3548), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4502), + [sym_identifier] = ACTIONS(2391), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2437), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [369] = { [sym_line_comment] = STATE(369), [sym_block_comment] = STATE(369), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1397), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1399), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(474), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2443), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [370] = { [sym_line_comment] = STATE(370), [sym_block_comment] = STATE(370), - [sym__expression] = STATE(2610), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4531), - [sym_identifier] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(2031), + [sym_identifier] = ACTIONS(2029), + [anon_sym_LF] = ACTIONS(2029), + [anon_sym_CR] = ACTIONS(2029), + [anon_sym_CR_LF] = ACTIONS(2029), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_as] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(2029), + [anon_sym_COMMA] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_EQ] = ACTIONS(2029), + [anon_sym___global] = ACTIONS(2029), + [anon_sym_type] = ACTIONS(2029), + [anon_sym_PIPE] = ACTIONS(2029), + [anon_sym_fn] = ACTIONS(2029), + [anon_sym_PLUS] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2029), + [anon_sym_SLASH] = ACTIONS(2029), + [anon_sym_PERCENT] = ACTIONS(2029), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2029), + [anon_sym_EQ_EQ] = ACTIONS(2029), + [anon_sym_BANG_EQ] = ACTIONS(2029), + [anon_sym_LT_EQ] = ACTIONS(2029), + [anon_sym_GT_EQ] = ACTIONS(2029), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_struct] = ACTIONS(2029), + [anon_sym_union] = ACTIONS(2029), + [anon_sym_pub] = ACTIONS(2029), + [anon_sym_mut] = ACTIONS(2029), + [anon_sym_enum] = ACTIONS(2029), + [anon_sym_interface] = ACTIONS(2029), + [anon_sym_PLUS_PLUS] = ACTIONS(2029), + [anon_sym_DASH_DASH] = ACTIONS(2029), + [anon_sym_QMARK] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(2029), + [anon_sym_go] = ACTIONS(2029), + [anon_sym_spawn] = ACTIONS(2029), + [anon_sym_json_DOTdecode] = ACTIONS(2029), + [anon_sym_LBRACK2] = ACTIONS(2029), + [anon_sym_TILDE] = ACTIONS(2029), + [anon_sym_CARET] = ACTIONS(2029), + [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_LT_DASH] = ACTIONS(2029), + [anon_sym_LT_LT] = ACTIONS(2029), + [anon_sym_GT_GT] = ACTIONS(2029), + [anon_sym_GT_GT_GT] = ACTIONS(2029), + [anon_sym_AMP_CARET] = ACTIONS(2029), + [anon_sym_AMP_AMP] = ACTIONS(2029), + [anon_sym_PIPE_PIPE] = ACTIONS(2029), + [anon_sym_or] = ACTIONS(2029), + [sym_none] = ACTIONS(2029), + [sym_true] = ACTIONS(2029), + [sym_false] = ACTIONS(2029), + [sym_nil] = ACTIONS(2029), + [anon_sym_QMARK_DOT] = ACTIONS(2029), + [anon_sym_POUND_LBRACK] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_DOLLARif] = ACTIONS(2029), + [anon_sym_is] = ACTIONS(2029), + [anon_sym_BANGis] = ACTIONS(2029), + [anon_sym_in] = ACTIONS(2029), + [anon_sym_BANGin] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_select] = ACTIONS(2029), + [anon_sym_STAR_EQ] = ACTIONS(2029), + [anon_sym_SLASH_EQ] = ACTIONS(2029), + [anon_sym_PERCENT_EQ] = ACTIONS(2029), + [anon_sym_LT_LT_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2029), + [anon_sym_AMP_EQ] = ACTIONS(2029), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2029), + [anon_sym_PLUS_EQ] = ACTIONS(2029), + [anon_sym_DASH_EQ] = ACTIONS(2029), + [anon_sym_PIPE_EQ] = ACTIONS(2029), + [anon_sym_CARET_EQ] = ACTIONS(2029), + [anon_sym_COLON_EQ] = ACTIONS(2029), + [anon_sym_lock] = ACTIONS(2029), + [anon_sym_rlock] = ACTIONS(2029), + [anon_sym_unsafe] = ACTIONS(2029), + [anon_sym_sql] = ACTIONS(2029), + [sym_int_literal] = ACTIONS(2029), + [sym_float_literal] = ACTIONS(2029), + [sym_rune_literal] = ACTIONS(2029), + [anon_sym_SQUOTE] = ACTIONS(2029), + [anon_sym_DQUOTE] = ACTIONS(2029), + [anon_sym_c_SQUOTE] = ACTIONS(2029), + [anon_sym_c_DQUOTE] = ACTIONS(2029), + [anon_sym_r_SQUOTE] = ACTIONS(2029), + [anon_sym_r_DQUOTE] = ACTIONS(2029), + [sym_pseudo_compile_time_identifier] = ACTIONS(2029), + [anon_sym_shared] = ACTIONS(2029), + [anon_sym_map_LBRACK] = ACTIONS(2029), + [anon_sym_chan] = ACTIONS(2029), + [anon_sym_thread] = ACTIONS(2029), + [anon_sym_atomic] = ACTIONS(2029), + [anon_sym_assert] = ACTIONS(2029), + [anon_sym_defer] = ACTIONS(2029), + [anon_sym_goto] = ACTIONS(2029), + [anon_sym_break] = ACTIONS(2029), + [anon_sym_continue] = ACTIONS(2029), + [anon_sym_return] = ACTIONS(2029), + [anon_sym_DOLLARfor] = ACTIONS(2029), + [anon_sym_for] = ACTIONS(2029), + [anon_sym_POUND] = ACTIONS(2029), + [anon_sym_asm] = ACTIONS(2029), + [anon_sym_AT_LBRACK] = ACTIONS(2029), + }, + [371] = { + [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2445), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [371] = { - [sym_line_comment] = STATE(371), - [sym_block_comment] = STATE(371), - [ts_builtin_sym_end] = ACTIONS(2441), - [sym_identifier] = ACTIONS(2443), - [anon_sym_LF] = ACTIONS(2443), - [anon_sym_CR] = ACTIONS(2443), - [anon_sym_CR_LF] = ACTIONS(2443), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2443), - [anon_sym_as] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_COMMA] = ACTIONS(2443), - [anon_sym_const] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_EQ] = ACTIONS(2443), - [anon_sym___global] = ACTIONS(2443), - [anon_sym_type] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_fn] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2443), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_LT] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2441), - [anon_sym_struct] = ACTIONS(2443), - [anon_sym_union] = ACTIONS(2443), - [anon_sym_pub] = ACTIONS(2443), - [anon_sym_mut] = ACTIONS(2443), - [anon_sym_enum] = ACTIONS(2443), - [anon_sym_interface] = ACTIONS(2443), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_QMARK] = ACTIONS(2443), - [anon_sym_BANG] = ACTIONS(2443), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2443), - [anon_sym_json_DOTdecode] = ACTIONS(2443), - [anon_sym_LBRACK2] = ACTIONS(2443), - [anon_sym_TILDE] = ACTIONS(2443), - [anon_sym_CARET] = ACTIONS(2443), - [anon_sym_AMP] = ACTIONS(2443), - [anon_sym_LT_DASH] = ACTIONS(2443), - [anon_sym_LT_LT] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(2443), - [anon_sym_GT_GT_GT] = ACTIONS(2443), - [anon_sym_AMP_CARET] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_or] = ACTIONS(2443), - [sym_none] = ACTIONS(2443), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_nil] = ACTIONS(2443), - [anon_sym_QMARK_DOT] = ACTIONS(2443), - [anon_sym_POUND_LBRACK] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_DOLLARif] = ACTIONS(2443), - [anon_sym_is] = ACTIONS(2443), - [anon_sym_BANGis] = ACTIONS(2443), - [anon_sym_in] = ACTIONS(2443), - [anon_sym_BANGin] = ACTIONS(2443), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_select] = ACTIONS(2443), - [anon_sym_STAR_EQ] = ACTIONS(2443), - [anon_sym_SLASH_EQ] = ACTIONS(2443), - [anon_sym_PERCENT_EQ] = ACTIONS(2443), - [anon_sym_LT_LT_EQ] = ACTIONS(2443), - [anon_sym_GT_GT_EQ] = ACTIONS(2443), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2443), - [anon_sym_AMP_EQ] = ACTIONS(2443), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2443), - [anon_sym_PLUS_EQ] = ACTIONS(2443), - [anon_sym_DASH_EQ] = ACTIONS(2443), - [anon_sym_PIPE_EQ] = ACTIONS(2443), - [anon_sym_CARET_EQ] = ACTIONS(2443), - [anon_sym_COLON_EQ] = ACTIONS(2443), - [anon_sym_lock] = ACTIONS(2443), - [anon_sym_rlock] = ACTIONS(2443), - [anon_sym_unsafe] = ACTIONS(2443), - [anon_sym_sql] = ACTIONS(2443), - [sym_int_literal] = ACTIONS(2443), - [sym_float_literal] = ACTIONS(2443), - [sym_rune_literal] = ACTIONS(2443), - [sym_pseudo_compile_time_identifier] = ACTIONS(2443), - [anon_sym_shared] = ACTIONS(2443), - [anon_sym_map_LBRACK] = ACTIONS(2443), - [anon_sym_chan] = ACTIONS(2443), - [anon_sym_thread] = ACTIONS(2443), - [anon_sym_atomic] = ACTIONS(2443), - [anon_sym_assert] = ACTIONS(2443), - [anon_sym_defer] = ACTIONS(2443), - [anon_sym_goto] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_DOLLARfor] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_POUND] = ACTIONS(2443), - [anon_sym_asm] = ACTIONS(2443), - [anon_sym_AT_LBRACK] = ACTIONS(2443), - [sym___double_quote] = ACTIONS(2443), - [sym___single_quote] = ACTIONS(2443), - [sym___c_double_quote] = ACTIONS(2443), - [sym___c_single_quote] = ACTIONS(2443), - [sym___r_double_quote] = ACTIONS(2443), - [sym___r_single_quote] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [372] = { [sym_line_comment] = STATE(372), [sym_block_comment] = STATE(372), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4005), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2580), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4502), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [373] = { [sym_line_comment] = STATE(373), [sym_block_comment] = STATE(373), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2445), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), - }, - [374] = { - [sym_line_comment] = STATE(374), - [sym_block_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(2447), - [sym_identifier] = ACTIONS(2449), - [anon_sym_LF] = ACTIONS(2449), - [anon_sym_CR] = ACTIONS(2449), - [anon_sym_CR_LF] = ACTIONS(2449), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2449), - [anon_sym_as] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_COMMA] = ACTIONS(2449), - [anon_sym_const] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2449), - [anon_sym_EQ] = ACTIONS(2449), - [anon_sym___global] = ACTIONS(2449), - [anon_sym_type] = ACTIONS(2449), - [anon_sym_PIPE] = ACTIONS(2449), - [anon_sym_fn] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_struct] = ACTIONS(2449), - [anon_sym_union] = ACTIONS(2449), - [anon_sym_pub] = ACTIONS(2449), - [anon_sym_mut] = ACTIONS(2449), - [anon_sym_enum] = ACTIONS(2449), - [anon_sym_interface] = ACTIONS(2449), - [anon_sym_PLUS_PLUS] = ACTIONS(2449), - [anon_sym_DASH_DASH] = ACTIONS(2449), - [anon_sym_QMARK] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2449), - [anon_sym_go] = ACTIONS(2449), - [anon_sym_spawn] = ACTIONS(2449), - [anon_sym_json_DOTdecode] = ACTIONS(2449), - [anon_sym_LBRACK2] = ACTIONS(2449), - [anon_sym_TILDE] = ACTIONS(2449), - [anon_sym_CARET] = ACTIONS(2449), - [anon_sym_AMP] = ACTIONS(2449), - [anon_sym_LT_DASH] = ACTIONS(2449), - [anon_sym_LT_LT] = ACTIONS(2449), - [anon_sym_GT_GT] = ACTIONS(2449), - [anon_sym_GT_GT_GT] = ACTIONS(2449), - [anon_sym_AMP_CARET] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_or] = ACTIONS(2449), - [sym_none] = ACTIONS(2449), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_nil] = ACTIONS(2449), - [anon_sym_QMARK_DOT] = ACTIONS(2449), - [anon_sym_POUND_LBRACK] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_DOLLARif] = ACTIONS(2449), - [anon_sym_is] = ACTIONS(2449), - [anon_sym_BANGis] = ACTIONS(2449), - [anon_sym_in] = ACTIONS(2449), - [anon_sym_BANGin] = ACTIONS(2449), - [anon_sym_match] = ACTIONS(2449), - [anon_sym_select] = ACTIONS(2449), - [anon_sym_STAR_EQ] = ACTIONS(2449), - [anon_sym_SLASH_EQ] = ACTIONS(2449), - [anon_sym_PERCENT_EQ] = ACTIONS(2449), - [anon_sym_LT_LT_EQ] = ACTIONS(2449), - [anon_sym_GT_GT_EQ] = ACTIONS(2449), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2449), - [anon_sym_AMP_EQ] = ACTIONS(2449), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2449), - [anon_sym_PLUS_EQ] = ACTIONS(2449), - [anon_sym_DASH_EQ] = ACTIONS(2449), - [anon_sym_PIPE_EQ] = ACTIONS(2449), - [anon_sym_CARET_EQ] = ACTIONS(2449), - [anon_sym_COLON_EQ] = ACTIONS(2449), - [anon_sym_lock] = ACTIONS(2449), - [anon_sym_rlock] = ACTIONS(2449), - [anon_sym_unsafe] = ACTIONS(2449), - [anon_sym_sql] = ACTIONS(2449), - [sym_int_literal] = ACTIONS(2449), - [sym_float_literal] = ACTIONS(2449), - [sym_rune_literal] = ACTIONS(2449), - [sym_pseudo_compile_time_identifier] = ACTIONS(2449), - [anon_sym_shared] = ACTIONS(2449), - [anon_sym_map_LBRACK] = ACTIONS(2449), - [anon_sym_chan] = ACTIONS(2449), - [anon_sym_thread] = ACTIONS(2449), - [anon_sym_atomic] = ACTIONS(2449), - [anon_sym_assert] = ACTIONS(2449), - [anon_sym_defer] = ACTIONS(2449), - [anon_sym_goto] = ACTIONS(2449), - [anon_sym_break] = ACTIONS(2449), - [anon_sym_continue] = ACTIONS(2449), - [anon_sym_return] = ACTIONS(2449), - [anon_sym_DOLLARfor] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_POUND] = ACTIONS(2449), - [anon_sym_asm] = ACTIONS(2449), - [anon_sym_AT_LBRACK] = ACTIONS(2449), - [sym___double_quote] = ACTIONS(2449), - [sym___single_quote] = ACTIONS(2449), - [sym___c_double_quote] = ACTIONS(2449), - [sym___c_single_quote] = ACTIONS(2449), - [sym___r_double_quote] = ACTIONS(2449), - [sym___r_single_quote] = ACTIONS(2449), - }, - [375] = { - [sym_line_comment] = STATE(375), - [sym_block_comment] = STATE(375), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_short_element_list_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_short_element_list_repeat1] = STATE(353), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_RBRACE] = ACTIONS(2447), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -66421,482 +66165,714 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [374] = { + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1398), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1396), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(448), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [375] = { + [sym_line_comment] = STATE(375), + [sym_block_comment] = STATE(375), + [ts_builtin_sym_end] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LF] = ACTIONS(2453), + [anon_sym_CR] = ACTIONS(2453), + [anon_sym_CR_LF] = ACTIONS(2453), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2453), + [anon_sym_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_PIPE] = ACTIONS(2453), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2453), + [anon_sym_PERCENT] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_GT] = ACTIONS(2453), + [anon_sym_EQ_EQ] = ACTIONS(2453), + [anon_sym_BANG_EQ] = ACTIONS(2453), + [anon_sym_LT_EQ] = ACTIONS(2453), + [anon_sym_GT_EQ] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2451), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_pub] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_interface] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(2453), + [anon_sym_DASH_DASH] = ACTIONS(2453), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_go] = ACTIONS(2453), + [anon_sym_spawn] = ACTIONS(2453), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_LT_DASH] = ACTIONS(2453), + [anon_sym_LT_LT] = ACTIONS(2453), + [anon_sym_GT_GT] = ACTIONS(2453), + [anon_sym_GT_GT_GT] = ACTIONS(2453), + [anon_sym_AMP_CARET] = ACTIONS(2453), + [anon_sym_AMP_AMP] = ACTIONS(2453), + [anon_sym_PIPE_PIPE] = ACTIONS(2453), + [anon_sym_or] = ACTIONS(2453), + [sym_none] = ACTIONS(2453), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nil] = ACTIONS(2453), + [anon_sym_QMARK_DOT] = ACTIONS(2453), + [anon_sym_POUND_LBRACK] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_DOLLARif] = ACTIONS(2453), + [anon_sym_is] = ACTIONS(2453), + [anon_sym_BANGis] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(2453), + [anon_sym_BANGin] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_select] = ACTIONS(2453), + [anon_sym_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), }, [376] = { [sym_line_comment] = STATE(376), [sym_block_comment] = STATE(376), - [ts_builtin_sym_end] = ACTIONS(2453), - [sym_identifier] = ACTIONS(2455), - [anon_sym_LF] = ACTIONS(2455), - [anon_sym_CR] = ACTIONS(2455), - [anon_sym_CR_LF] = ACTIONS(2455), + [ts_builtin_sym_end] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LF] = ACTIONS(2457), + [anon_sym_CR] = ACTIONS(2457), + [anon_sym_CR_LF] = ACTIONS(2457), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2455), - [anon_sym_as] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_COMMA] = ACTIONS(2455), - [anon_sym_const] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_EQ] = ACTIONS(2455), - [anon_sym___global] = ACTIONS(2455), - [anon_sym_type] = ACTIONS(2455), - [anon_sym_PIPE] = ACTIONS(2455), - [anon_sym_fn] = ACTIONS(2455), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(2455), - [anon_sym_SLASH] = ACTIONS(2455), - [anon_sym_PERCENT] = ACTIONS(2455), - [anon_sym_LT] = ACTIONS(2455), - [anon_sym_GT] = ACTIONS(2455), - [anon_sym_EQ_EQ] = ACTIONS(2455), - [anon_sym_BANG_EQ] = ACTIONS(2455), - [anon_sym_LT_EQ] = ACTIONS(2455), - [anon_sym_GT_EQ] = ACTIONS(2455), - [anon_sym_LBRACK] = ACTIONS(2453), - [anon_sym_struct] = ACTIONS(2455), - [anon_sym_union] = ACTIONS(2455), - [anon_sym_pub] = ACTIONS(2455), - [anon_sym_mut] = ACTIONS(2455), - [anon_sym_enum] = ACTIONS(2455), - [anon_sym_interface] = ACTIONS(2455), - [anon_sym_PLUS_PLUS] = ACTIONS(2455), - [anon_sym_DASH_DASH] = ACTIONS(2455), - [anon_sym_QMARK] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2455), - [anon_sym_go] = ACTIONS(2455), - [anon_sym_spawn] = ACTIONS(2455), - [anon_sym_json_DOTdecode] = ACTIONS(2455), - [anon_sym_LBRACK2] = ACTIONS(2455), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_CARET] = ACTIONS(2455), - [anon_sym_AMP] = ACTIONS(2455), - [anon_sym_LT_DASH] = ACTIONS(2455), - [anon_sym_LT_LT] = ACTIONS(2455), - [anon_sym_GT_GT] = ACTIONS(2455), - [anon_sym_GT_GT_GT] = ACTIONS(2455), - [anon_sym_AMP_CARET] = ACTIONS(2455), - [anon_sym_AMP_AMP] = ACTIONS(2455), - [anon_sym_PIPE_PIPE] = ACTIONS(2455), - [anon_sym_or] = ACTIONS(2455), - [sym_none] = ACTIONS(2455), - [sym_true] = ACTIONS(2455), - [sym_false] = ACTIONS(2455), - [sym_nil] = ACTIONS(2455), - [anon_sym_QMARK_DOT] = ACTIONS(2455), - [anon_sym_POUND_LBRACK] = ACTIONS(2455), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_DOLLARif] = ACTIONS(2455), - [anon_sym_is] = ACTIONS(2455), - [anon_sym_BANGis] = ACTIONS(2455), - [anon_sym_in] = ACTIONS(2455), - [anon_sym_BANGin] = ACTIONS(2455), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_select] = ACTIONS(2455), - [anon_sym_STAR_EQ] = ACTIONS(2455), - [anon_sym_SLASH_EQ] = ACTIONS(2455), - [anon_sym_PERCENT_EQ] = ACTIONS(2455), - [anon_sym_LT_LT_EQ] = ACTIONS(2455), - [anon_sym_GT_GT_EQ] = ACTIONS(2455), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2455), - [anon_sym_AMP_EQ] = ACTIONS(2455), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2455), - [anon_sym_PLUS_EQ] = ACTIONS(2455), - [anon_sym_DASH_EQ] = ACTIONS(2455), - [anon_sym_PIPE_EQ] = ACTIONS(2455), - [anon_sym_CARET_EQ] = ACTIONS(2455), - [anon_sym_COLON_EQ] = ACTIONS(2455), - [anon_sym_lock] = ACTIONS(2455), - [anon_sym_rlock] = ACTIONS(2455), - [anon_sym_unsafe] = ACTIONS(2455), - [anon_sym_sql] = ACTIONS(2455), - [sym_int_literal] = ACTIONS(2455), - [sym_float_literal] = ACTIONS(2455), - [sym_rune_literal] = ACTIONS(2455), - [sym_pseudo_compile_time_identifier] = ACTIONS(2455), - [anon_sym_shared] = ACTIONS(2455), - [anon_sym_map_LBRACK] = ACTIONS(2455), - [anon_sym_chan] = ACTIONS(2455), - [anon_sym_thread] = ACTIONS(2455), - [anon_sym_atomic] = ACTIONS(2455), - [anon_sym_assert] = ACTIONS(2455), - [anon_sym_defer] = ACTIONS(2455), - [anon_sym_goto] = ACTIONS(2455), - [anon_sym_break] = ACTIONS(2455), - [anon_sym_continue] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2455), - [anon_sym_DOLLARfor] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_POUND] = ACTIONS(2455), - [anon_sym_asm] = ACTIONS(2455), - [anon_sym_AT_LBRACK] = ACTIONS(2455), - [sym___double_quote] = ACTIONS(2455), - [sym___single_quote] = ACTIONS(2455), - [sym___c_double_quote] = ACTIONS(2455), - [sym___c_single_quote] = ACTIONS(2455), - [sym___r_double_quote] = ACTIONS(2455), - [sym___r_single_quote] = ACTIONS(2455), + [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_PIPE] = ACTIONS(2457), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_SLASH] = ACTIONS(2457), + [anon_sym_PERCENT] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_GT] = ACTIONS(2457), + [anon_sym_EQ_EQ] = ACTIONS(2457), + [anon_sym_BANG_EQ] = ACTIONS(2457), + [anon_sym_LT_EQ] = ACTIONS(2457), + [anon_sym_GT_EQ] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_union] = ACTIONS(2457), + [anon_sym_pub] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_interface] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_QMARK] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_go] = ACTIONS(2457), + [anon_sym_spawn] = ACTIONS(2457), + [anon_sym_json_DOTdecode] = ACTIONS(2457), + [anon_sym_LBRACK2] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2457), + [anon_sym_LT_LT] = ACTIONS(2457), + [anon_sym_GT_GT] = ACTIONS(2457), + [anon_sym_GT_GT_GT] = ACTIONS(2457), + [anon_sym_AMP_CARET] = ACTIONS(2457), + [anon_sym_AMP_AMP] = ACTIONS(2457), + [anon_sym_PIPE_PIPE] = ACTIONS(2457), + [anon_sym_or] = ACTIONS(2457), + [sym_none] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_nil] = ACTIONS(2457), + [anon_sym_QMARK_DOT] = ACTIONS(2457), + [anon_sym_POUND_LBRACK] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_DOLLARif] = ACTIONS(2457), + [anon_sym_is] = ACTIONS(2457), + [anon_sym_BANGis] = ACTIONS(2457), + [anon_sym_in] = ACTIONS(2457), + [anon_sym_BANGin] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_select] = ACTIONS(2457), + [anon_sym_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), }, [377] = { [sym_line_comment] = STATE(377), [sym_block_comment] = STATE(377), - [ts_builtin_sym_end] = ACTIONS(2457), - [sym_identifier] = ACTIONS(2459), - [anon_sym_LF] = ACTIONS(2459), - [anon_sym_CR] = ACTIONS(2459), - [anon_sym_CR_LF] = ACTIONS(2459), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2459), - [anon_sym_as] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [anon_sym_COMMA] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_EQ] = ACTIONS(2459), - [anon_sym___global] = ACTIONS(2459), - [anon_sym_type] = ACTIONS(2459), - [anon_sym_PIPE] = ACTIONS(2459), - [anon_sym_fn] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2459), - [anon_sym_SLASH] = ACTIONS(2459), - [anon_sym_PERCENT] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2459), - [anon_sym_GT] = ACTIONS(2459), - [anon_sym_EQ_EQ] = ACTIONS(2459), - [anon_sym_BANG_EQ] = ACTIONS(2459), - [anon_sym_LT_EQ] = ACTIONS(2459), - [anon_sym_GT_EQ] = ACTIONS(2459), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_pub] = ACTIONS(2459), - [anon_sym_mut] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_interface] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_QMARK] = ACTIONS(2459), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_go] = ACTIONS(2459), - [anon_sym_spawn] = ACTIONS(2459), - [anon_sym_json_DOTdecode] = ACTIONS(2459), - [anon_sym_LBRACK2] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_LT_DASH] = ACTIONS(2459), - [anon_sym_LT_LT] = ACTIONS(2459), - [anon_sym_GT_GT] = ACTIONS(2459), - [anon_sym_GT_GT_GT] = ACTIONS(2459), - [anon_sym_AMP_CARET] = ACTIONS(2459), - [anon_sym_AMP_AMP] = ACTIONS(2459), - [anon_sym_PIPE_PIPE] = ACTIONS(2459), - [anon_sym_or] = ACTIONS(2459), - [sym_none] = ACTIONS(2459), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_nil] = ACTIONS(2459), - [anon_sym_QMARK_DOT] = ACTIONS(2459), - [anon_sym_POUND_LBRACK] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_DOLLARif] = ACTIONS(2459), - [anon_sym_is] = ACTIONS(2459), - [anon_sym_BANGis] = ACTIONS(2459), - [anon_sym_in] = ACTIONS(2459), - [anon_sym_BANGin] = ACTIONS(2459), - [anon_sym_match] = ACTIONS(2459), - [anon_sym_select] = ACTIONS(2459), - [anon_sym_STAR_EQ] = ACTIONS(2459), - [anon_sym_SLASH_EQ] = ACTIONS(2459), - [anon_sym_PERCENT_EQ] = ACTIONS(2459), - [anon_sym_LT_LT_EQ] = ACTIONS(2459), - [anon_sym_GT_GT_EQ] = ACTIONS(2459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2459), - [anon_sym_AMP_EQ] = ACTIONS(2459), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2459), - [anon_sym_PLUS_EQ] = ACTIONS(2459), - [anon_sym_DASH_EQ] = ACTIONS(2459), - [anon_sym_PIPE_EQ] = ACTIONS(2459), - [anon_sym_CARET_EQ] = ACTIONS(2459), - [anon_sym_COLON_EQ] = ACTIONS(2459), - [anon_sym_lock] = ACTIONS(2459), - [anon_sym_rlock] = ACTIONS(2459), - [anon_sym_unsafe] = ACTIONS(2459), - [anon_sym_sql] = ACTIONS(2459), - [sym_int_literal] = ACTIONS(2459), - [sym_float_literal] = ACTIONS(2459), - [sym_rune_literal] = ACTIONS(2459), - [sym_pseudo_compile_time_identifier] = ACTIONS(2459), - [anon_sym_shared] = ACTIONS(2459), - [anon_sym_map_LBRACK] = ACTIONS(2459), - [anon_sym_chan] = ACTIONS(2459), - [anon_sym_thread] = ACTIONS(2459), - [anon_sym_atomic] = ACTIONS(2459), - [anon_sym_assert] = ACTIONS(2459), - [anon_sym_defer] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_DOLLARfor] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_POUND] = ACTIONS(2459), - [anon_sym_asm] = ACTIONS(2459), - [anon_sym_AT_LBRACK] = ACTIONS(2459), - [sym___double_quote] = ACTIONS(2459), - [sym___single_quote] = ACTIONS(2459), - [sym___c_double_quote] = ACTIONS(2459), - [sym___c_single_quote] = ACTIONS(2459), - [sym___r_double_quote] = ACTIONS(2459), - [sym___r_single_quote] = ACTIONS(2459), + [sym__expression] = STATE(2604), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3548), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4566), + [sym_identifier] = ACTIONS(2391), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [378] = { [sym_line_comment] = STATE(378), [sym_block_comment] = STATE(378), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2219), - [anon_sym_LF] = ACTIONS(2219), - [anon_sym_CR] = ACTIONS(2219), - [anon_sym_CR_LF] = ACTIONS(2219), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2219), - [anon_sym_as] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_COMMA] = ACTIONS(2219), - [anon_sym_const] = ACTIONS(2219), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_EQ] = ACTIONS(2219), - [anon_sym___global] = ACTIONS(2219), - [anon_sym_type] = ACTIONS(2219), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_fn] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2219), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_GT] = ACTIONS(2219), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2219), - [anon_sym_GT_EQ] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2219), - [anon_sym_union] = ACTIONS(2219), - [anon_sym_pub] = ACTIONS(2219), - [anon_sym_mut] = ACTIONS(2219), - [anon_sym_enum] = ACTIONS(2219), - [anon_sym_interface] = ACTIONS(2219), - [anon_sym_PLUS_PLUS] = ACTIONS(2219), - [anon_sym_DASH_DASH] = ACTIONS(2219), - [anon_sym_QMARK] = ACTIONS(2219), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_go] = ACTIONS(2219), - [anon_sym_spawn] = ACTIONS(2219), - [anon_sym_json_DOTdecode] = ACTIONS(2219), - [anon_sym_LBRACK2] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2219), - [anon_sym_LT_LT] = ACTIONS(2219), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2219), - [anon_sym_AMP_CARET] = ACTIONS(2219), - [anon_sym_AMP_AMP] = ACTIONS(2219), - [anon_sym_PIPE_PIPE] = ACTIONS(2219), - [anon_sym_or] = ACTIONS(2219), - [sym_none] = ACTIONS(2219), - [sym_true] = ACTIONS(2219), - [sym_false] = ACTIONS(2219), - [sym_nil] = ACTIONS(2219), - [anon_sym_QMARK_DOT] = ACTIONS(2219), - [anon_sym_POUND_LBRACK] = ACTIONS(2219), - [anon_sym_if] = ACTIONS(2219), - [anon_sym_DOLLARif] = ACTIONS(2219), - [anon_sym_is] = ACTIONS(2219), - [anon_sym_BANGis] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_BANGin] = ACTIONS(2219), - [anon_sym_match] = ACTIONS(2219), - [anon_sym_select] = ACTIONS(2219), - [anon_sym_STAR_EQ] = ACTIONS(2219), - [anon_sym_SLASH_EQ] = ACTIONS(2219), - [anon_sym_PERCENT_EQ] = ACTIONS(2219), - [anon_sym_LT_LT_EQ] = ACTIONS(2219), - [anon_sym_GT_GT_EQ] = ACTIONS(2219), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2219), - [anon_sym_AMP_EQ] = ACTIONS(2219), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2219), - [anon_sym_PLUS_EQ] = ACTIONS(2219), - [anon_sym_DASH_EQ] = ACTIONS(2219), - [anon_sym_PIPE_EQ] = ACTIONS(2219), - [anon_sym_CARET_EQ] = ACTIONS(2219), - [anon_sym_COLON_EQ] = ACTIONS(2219), - [anon_sym_lock] = ACTIONS(2219), - [anon_sym_rlock] = ACTIONS(2219), - [anon_sym_unsafe] = ACTIONS(2219), - [anon_sym_sql] = ACTIONS(2219), - [sym_int_literal] = ACTIONS(2219), - [sym_float_literal] = ACTIONS(2219), - [sym_rune_literal] = ACTIONS(2219), - [sym_pseudo_compile_time_identifier] = ACTIONS(2219), - [anon_sym_shared] = ACTIONS(2219), - [anon_sym_map_LBRACK] = ACTIONS(2219), - [anon_sym_chan] = ACTIONS(2219), - [anon_sym_thread] = ACTIONS(2219), - [anon_sym_atomic] = ACTIONS(2219), - [anon_sym_assert] = ACTIONS(2219), - [anon_sym_defer] = ACTIONS(2219), - [anon_sym_goto] = ACTIONS(2219), - [anon_sym_break] = ACTIONS(2219), - [anon_sym_continue] = ACTIONS(2219), - [anon_sym_return] = ACTIONS(2219), - [anon_sym_DOLLARfor] = ACTIONS(2219), - [anon_sym_for] = ACTIONS(2219), - [anon_sym_POUND] = ACTIONS(2219), - [anon_sym_asm] = ACTIONS(2219), - [anon_sym_AT_LBRACK] = ACTIONS(2219), - [sym___double_quote] = ACTIONS(2219), - [sym___single_quote] = ACTIONS(2219), - [sym___c_double_quote] = ACTIONS(2219), - [sym___c_single_quote] = ACTIONS(2219), - [sym___r_double_quote] = ACTIONS(2219), - [sym___r_single_quote] = ACTIONS(2219), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4383), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [379] = { [sym_line_comment] = STATE(379), [sym_block_comment] = STATE(379), - [sym__expression] = STATE(2610), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3569), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4531), - [sym_identifier] = ACTIONS(2127), + [sym__expression] = STATE(2583), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4525), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [380] = { [sym_line_comment] = STATE(380), @@ -66990,6 +66966,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(2463), [sym_float_literal] = ACTIONS(2463), [sym_rune_literal] = ACTIONS(2463), + [anon_sym_SQUOTE] = ACTIONS(2463), + [anon_sym_DQUOTE] = ACTIONS(2463), + [anon_sym_c_SQUOTE] = ACTIONS(2463), + [anon_sym_c_DQUOTE] = ACTIONS(2463), + [anon_sym_r_SQUOTE] = ACTIONS(2463), + [anon_sym_r_DQUOTE] = ACTIONS(2463), [sym_pseudo_compile_time_identifier] = ACTIONS(2463), [anon_sym_shared] = ACTIONS(2463), [anon_sym_map_LBRACK] = ACTIONS(2463), @@ -67007,132 +66989,358 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2463), [anon_sym_asm] = ACTIONS(2463), [anon_sym_AT_LBRACK] = ACTIONS(2463), - [sym___double_quote] = ACTIONS(2463), - [sym___single_quote] = ACTIONS(2463), - [sym___c_double_quote] = ACTIONS(2463), - [sym___c_single_quote] = ACTIONS(2463), - [sym___r_double_quote] = ACTIONS(2463), - [sym___r_single_quote] = ACTIONS(2463), }, [381] = { [sym_line_comment] = STATE(381), [sym_block_comment] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(2465), - [sym_identifier] = ACTIONS(2467), - [anon_sym_LF] = ACTIONS(2467), - [anon_sym_CR] = ACTIONS(2467), - [anon_sym_CR_LF] = ACTIONS(2467), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2467), - [anon_sym_as] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_COMMA] = ACTIONS(2467), - [anon_sym_const] = ACTIONS(2467), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_EQ] = ACTIONS(2467), - [anon_sym___global] = ACTIONS(2467), - [anon_sym_type] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(2467), - [anon_sym_fn] = ACTIONS(2467), - [anon_sym_PLUS] = ACTIONS(2467), - [anon_sym_DASH] = ACTIONS(2467), - [anon_sym_STAR] = ACTIONS(2467), - [anon_sym_SLASH] = ACTIONS(2467), - [anon_sym_PERCENT] = ACTIONS(2467), - [anon_sym_LT] = ACTIONS(2467), - [anon_sym_GT] = ACTIONS(2467), - [anon_sym_EQ_EQ] = ACTIONS(2467), - [anon_sym_BANG_EQ] = ACTIONS(2467), - [anon_sym_LT_EQ] = ACTIONS(2467), - [anon_sym_GT_EQ] = ACTIONS(2467), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_struct] = ACTIONS(2467), - [anon_sym_union] = ACTIONS(2467), - [anon_sym_pub] = ACTIONS(2467), - [anon_sym_mut] = ACTIONS(2467), - [anon_sym_enum] = ACTIONS(2467), - [anon_sym_interface] = ACTIONS(2467), - [anon_sym_PLUS_PLUS] = ACTIONS(2467), - [anon_sym_DASH_DASH] = ACTIONS(2467), - [anon_sym_QMARK] = ACTIONS(2467), - [anon_sym_BANG] = ACTIONS(2467), - [anon_sym_go] = ACTIONS(2467), - [anon_sym_spawn] = ACTIONS(2467), - [anon_sym_json_DOTdecode] = ACTIONS(2467), - [anon_sym_LBRACK2] = ACTIONS(2467), - [anon_sym_TILDE] = ACTIONS(2467), - [anon_sym_CARET] = ACTIONS(2467), - [anon_sym_AMP] = ACTIONS(2467), - [anon_sym_LT_DASH] = ACTIONS(2467), - [anon_sym_LT_LT] = ACTIONS(2467), - [anon_sym_GT_GT] = ACTIONS(2467), - [anon_sym_GT_GT_GT] = ACTIONS(2467), - [anon_sym_AMP_CARET] = ACTIONS(2467), - [anon_sym_AMP_AMP] = ACTIONS(2467), - [anon_sym_PIPE_PIPE] = ACTIONS(2467), - [anon_sym_or] = ACTIONS(2467), - [sym_none] = ACTIONS(2467), - [sym_true] = ACTIONS(2467), - [sym_false] = ACTIONS(2467), - [sym_nil] = ACTIONS(2467), - [anon_sym_QMARK_DOT] = ACTIONS(2467), - [anon_sym_POUND_LBRACK] = ACTIONS(2467), - [anon_sym_if] = ACTIONS(2467), - [anon_sym_DOLLARif] = ACTIONS(2467), - [anon_sym_is] = ACTIONS(2467), - [anon_sym_BANGis] = ACTIONS(2467), - [anon_sym_in] = ACTIONS(2467), - [anon_sym_BANGin] = ACTIONS(2467), - [anon_sym_match] = ACTIONS(2467), - [anon_sym_select] = ACTIONS(2467), - [anon_sym_STAR_EQ] = ACTIONS(2467), - [anon_sym_SLASH_EQ] = ACTIONS(2467), - [anon_sym_PERCENT_EQ] = ACTIONS(2467), - [anon_sym_LT_LT_EQ] = ACTIONS(2467), - [anon_sym_GT_GT_EQ] = ACTIONS(2467), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2467), - [anon_sym_AMP_EQ] = ACTIONS(2467), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2467), - [anon_sym_PLUS_EQ] = ACTIONS(2467), - [anon_sym_DASH_EQ] = ACTIONS(2467), - [anon_sym_PIPE_EQ] = ACTIONS(2467), - [anon_sym_CARET_EQ] = ACTIONS(2467), - [anon_sym_COLON_EQ] = ACTIONS(2467), - [anon_sym_lock] = ACTIONS(2467), - [anon_sym_rlock] = ACTIONS(2467), - [anon_sym_unsafe] = ACTIONS(2467), - [anon_sym_sql] = ACTIONS(2467), - [sym_int_literal] = ACTIONS(2467), - [sym_float_literal] = ACTIONS(2467), - [sym_rune_literal] = ACTIONS(2467), - [sym_pseudo_compile_time_identifier] = ACTIONS(2467), - [anon_sym_shared] = ACTIONS(2467), - [anon_sym_map_LBRACK] = ACTIONS(2467), - [anon_sym_chan] = ACTIONS(2467), - [anon_sym_thread] = ACTIONS(2467), - [anon_sym_atomic] = ACTIONS(2467), - [anon_sym_assert] = ACTIONS(2467), - [anon_sym_defer] = ACTIONS(2467), - [anon_sym_goto] = ACTIONS(2467), - [anon_sym_break] = ACTIONS(2467), - [anon_sym_continue] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2467), - [anon_sym_DOLLARfor] = ACTIONS(2467), - [anon_sym_for] = ACTIONS(2467), - [anon_sym_POUND] = ACTIONS(2467), - [anon_sym_asm] = ACTIONS(2467), - [anon_sym_AT_LBRACK] = ACTIONS(2467), - [sym___double_quote] = ACTIONS(2467), - [sym___single_quote] = ACTIONS(2467), - [sym___c_double_quote] = ACTIONS(2467), - [sym___c_single_quote] = ACTIONS(2467), - [sym___r_double_quote] = ACTIONS(2467), - [sym___r_single_quote] = ACTIONS(2467), + [sym__expression] = STATE(2583), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3548), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4525), + [sym_identifier] = ACTIONS(2391), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [382] = { [sym_line_comment] = STATE(382), [sym_block_comment] = STATE(382), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1398), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1396), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(456), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2465), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [383] = { + [sym_line_comment] = STATE(383), + [sym_block_comment] = STATE(383), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4383), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [384] = { + [sym_line_comment] = STATE(384), + [sym_block_comment] = STATE(384), [ts_builtin_sym_end] = ACTIONS(2469), [sym_identifier] = ACTIONS(2471), [anon_sym_LF] = ACTIONS(2471), @@ -67222,6 +67430,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -67239,16 +67453,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2471), [anon_sym_asm] = ACTIONS(2471), [anon_sym_AT_LBRACK] = ACTIONS(2471), - [sym___double_quote] = ACTIONS(2471), - [sym___single_quote] = ACTIONS(2471), - [sym___c_double_quote] = ACTIONS(2471), - [sym___c_single_quote] = ACTIONS(2471), - [sym___r_double_quote] = ACTIONS(2471), - [sym___r_single_quote] = ACTIONS(2471), }, - [383] = { - [sym_line_comment] = STATE(383), - [sym_block_comment] = STATE(383), + [385] = { + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), [ts_builtin_sym_end] = ACTIONS(2473), [sym_identifier] = ACTIONS(2475), [anon_sym_LF] = ACTIONS(2475), @@ -67256,7 +67464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(2475), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1891), + [anon_sym_DOT] = ACTIONS(2475), [anon_sym_as] = ACTIONS(2475), [anon_sym_LBRACE] = ACTIONS(2475), [anon_sym_COMMA] = ACTIONS(2475), @@ -67338,6 +67546,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(2475), [sym_float_literal] = ACTIONS(2475), [sym_rune_literal] = ACTIONS(2475), + [anon_sym_SQUOTE] = ACTIONS(2475), + [anon_sym_DQUOTE] = ACTIONS(2475), + [anon_sym_c_SQUOTE] = ACTIONS(2475), + [anon_sym_c_DQUOTE] = ACTIONS(2475), + [anon_sym_r_SQUOTE] = ACTIONS(2475), + [anon_sym_r_DQUOTE] = ACTIONS(2475), [sym_pseudo_compile_time_identifier] = ACTIONS(2475), [anon_sym_shared] = ACTIONS(2475), [anon_sym_map_LBRACK] = ACTIONS(2475), @@ -67355,21227 +67569,21217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2475), [anon_sym_asm] = ACTIONS(2475), [anon_sym_AT_LBRACK] = ACTIONS(2475), - [sym___double_quote] = ACTIONS(2475), - [sym___single_quote] = ACTIONS(2475), - [sym___c_double_quote] = ACTIONS(2475), - [sym___c_single_quote] = ACTIONS(2475), - [sym___r_double_quote] = ACTIONS(2475), - [sym___r_single_quote] = ACTIONS(2475), }, - [384] = { - [sym_line_comment] = STATE(384), - [sym_block_comment] = STATE(384), - [sym__expression] = STATE(2459), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(655), - [sym_mutable_expression] = STATE(3778), - [sym_expression_list] = STATE(4004), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [386] = { + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [385] = { - [sym_line_comment] = STATE(385), - [sym_block_comment] = STATE(385), - [ts_builtin_sym_end] = ACTIONS(2499), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LF] = ACTIONS(2501), - [anon_sym_CR] = ACTIONS(2501), - [anon_sym_CR_LF] = ACTIONS(2501), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2501), - [anon_sym_as] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_COMMA] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2501), - [anon_sym_EQ] = ACTIONS(2501), - [anon_sym___global] = ACTIONS(2501), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_fn] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_SLASH] = ACTIONS(2501), - [anon_sym_PERCENT] = ACTIONS(2501), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_GT] = ACTIONS(2501), - [anon_sym_EQ_EQ] = ACTIONS(2501), - [anon_sym_BANG_EQ] = ACTIONS(2501), - [anon_sym_LT_EQ] = ACTIONS(2501), - [anon_sym_GT_EQ] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_struct] = ACTIONS(2501), - [anon_sym_union] = ACTIONS(2501), - [anon_sym_pub] = ACTIONS(2501), - [anon_sym_mut] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2501), - [anon_sym_DASH_DASH] = ACTIONS(2501), - [anon_sym_QMARK] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2501), - [anon_sym_go] = ACTIONS(2501), - [anon_sym_spawn] = ACTIONS(2501), - [anon_sym_json_DOTdecode] = ACTIONS(2501), - [anon_sym_LBRACK2] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2501), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2501), - [anon_sym_LT_LT] = ACTIONS(2501), - [anon_sym_GT_GT] = ACTIONS(2501), - [anon_sym_GT_GT_GT] = ACTIONS(2501), - [anon_sym_AMP_CARET] = ACTIONS(2501), - [anon_sym_AMP_AMP] = ACTIONS(2501), - [anon_sym_PIPE_PIPE] = ACTIONS(2501), - [anon_sym_or] = ACTIONS(2501), - [sym_none] = ACTIONS(2501), - [sym_true] = ACTIONS(2501), - [sym_false] = ACTIONS(2501), - [sym_nil] = ACTIONS(2501), - [anon_sym_QMARK_DOT] = ACTIONS(2501), - [anon_sym_POUND_LBRACK] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_DOLLARif] = ACTIONS(2501), - [anon_sym_is] = ACTIONS(2501), - [anon_sym_BANGis] = ACTIONS(2501), - [anon_sym_in] = ACTIONS(2501), - [anon_sym_BANGin] = ACTIONS(2501), - [anon_sym_match] = ACTIONS(2501), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_STAR_EQ] = ACTIONS(2501), - [anon_sym_SLASH_EQ] = ACTIONS(2501), - [anon_sym_PERCENT_EQ] = ACTIONS(2501), - [anon_sym_LT_LT_EQ] = ACTIONS(2501), - [anon_sym_GT_GT_EQ] = ACTIONS(2501), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2501), - [anon_sym_AMP_EQ] = ACTIONS(2501), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2501), - [anon_sym_PLUS_EQ] = ACTIONS(2501), - [anon_sym_DASH_EQ] = ACTIONS(2501), - [anon_sym_PIPE_EQ] = ACTIONS(2501), - [anon_sym_CARET_EQ] = ACTIONS(2501), - [anon_sym_COLON_EQ] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2501), - [anon_sym_rlock] = ACTIONS(2501), - [anon_sym_unsafe] = ACTIONS(2501), - [anon_sym_sql] = ACTIONS(2501), - [sym_int_literal] = ACTIONS(2501), - [sym_float_literal] = ACTIONS(2501), - [sym_rune_literal] = ACTIONS(2501), - [sym_pseudo_compile_time_identifier] = ACTIONS(2501), - [anon_sym_shared] = ACTIONS(2501), - [anon_sym_map_LBRACK] = ACTIONS(2501), - [anon_sym_chan] = ACTIONS(2501), - [anon_sym_thread] = ACTIONS(2501), - [anon_sym_atomic] = ACTIONS(2501), - [anon_sym_assert] = ACTIONS(2501), - [anon_sym_defer] = ACTIONS(2501), - [anon_sym_goto] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_DOLLARfor] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(2501), - [anon_sym_asm] = ACTIONS(2501), - [anon_sym_AT_LBRACK] = ACTIONS(2501), - [sym___double_quote] = ACTIONS(2501), - [sym___single_quote] = ACTIONS(2501), - [sym___c_double_quote] = ACTIONS(2501), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2501), - [sym___r_single_quote] = ACTIONS(2501), - }, - [386] = { - [sym_line_comment] = STATE(386), - [sym_block_comment] = STATE(386), - [ts_builtin_sym_end] = ACTIONS(2503), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LF] = ACTIONS(2505), - [anon_sym_CR] = ACTIONS(2505), - [anon_sym_CR_LF] = ACTIONS(2505), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_COMMA] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_EQ] = ACTIONS(2505), - [anon_sym___global] = ACTIONS(2505), - [anon_sym_type] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2505), - [anon_sym_fn] = ACTIONS(2505), - [anon_sym_PLUS] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_GT] = ACTIONS(2505), - [anon_sym_EQ_EQ] = ACTIONS(2505), - [anon_sym_BANG_EQ] = ACTIONS(2505), - [anon_sym_LT_EQ] = ACTIONS(2505), - [anon_sym_GT_EQ] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2505), - [anon_sym_union] = ACTIONS(2505), - [anon_sym_pub] = ACTIONS(2505), - [anon_sym_mut] = ACTIONS(2505), - [anon_sym_enum] = ACTIONS(2505), - [anon_sym_interface] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2505), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_QMARK] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_go] = ACTIONS(2505), - [anon_sym_spawn] = ACTIONS(2505), - [anon_sym_json_DOTdecode] = ACTIONS(2505), - [anon_sym_LBRACK2] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_CARET] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2505), - [anon_sym_LT_DASH] = ACTIONS(2505), - [anon_sym_LT_LT] = ACTIONS(2505), - [anon_sym_GT_GT] = ACTIONS(2505), - [anon_sym_GT_GT_GT] = ACTIONS(2505), - [anon_sym_AMP_CARET] = ACTIONS(2505), - [anon_sym_AMP_AMP] = ACTIONS(2505), - [anon_sym_PIPE_PIPE] = ACTIONS(2505), - [anon_sym_or] = ACTIONS(2505), - [sym_none] = ACTIONS(2505), - [sym_true] = ACTIONS(2505), - [sym_false] = ACTIONS(2505), - [sym_nil] = ACTIONS(2505), - [anon_sym_QMARK_DOT] = ACTIONS(2505), - [anon_sym_POUND_LBRACK] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_DOLLARif] = ACTIONS(2505), - [anon_sym_is] = ACTIONS(2505), - [anon_sym_BANGis] = ACTIONS(2505), - [anon_sym_in] = ACTIONS(2505), - [anon_sym_BANGin] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2505), - [anon_sym_select] = ACTIONS(2505), - [anon_sym_STAR_EQ] = ACTIONS(2505), - [anon_sym_SLASH_EQ] = ACTIONS(2505), - [anon_sym_PERCENT_EQ] = ACTIONS(2505), - [anon_sym_LT_LT_EQ] = ACTIONS(2505), - [anon_sym_GT_GT_EQ] = ACTIONS(2505), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2505), - [anon_sym_AMP_EQ] = ACTIONS(2505), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2505), - [anon_sym_PLUS_EQ] = ACTIONS(2505), - [anon_sym_DASH_EQ] = ACTIONS(2505), - [anon_sym_PIPE_EQ] = ACTIONS(2505), - [anon_sym_CARET_EQ] = ACTIONS(2505), - [anon_sym_COLON_EQ] = ACTIONS(2505), - [anon_sym_lock] = ACTIONS(2505), - [anon_sym_rlock] = ACTIONS(2505), - [anon_sym_unsafe] = ACTIONS(2505), - [anon_sym_sql] = ACTIONS(2505), - [sym_int_literal] = ACTIONS(2505), - [sym_float_literal] = ACTIONS(2505), - [sym_rune_literal] = ACTIONS(2505), - [sym_pseudo_compile_time_identifier] = ACTIONS(2505), - [anon_sym_shared] = ACTIONS(2505), - [anon_sym_map_LBRACK] = ACTIONS(2505), - [anon_sym_chan] = ACTIONS(2505), - [anon_sym_thread] = ACTIONS(2505), - [anon_sym_atomic] = ACTIONS(2505), - [anon_sym_assert] = ACTIONS(2505), - [anon_sym_defer] = ACTIONS(2505), - [anon_sym_goto] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_DOLLARfor] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2505), - [anon_sym_AT_LBRACK] = ACTIONS(2505), - [sym___double_quote] = ACTIONS(2505), - [sym___single_quote] = ACTIONS(2505), - [sym___c_double_quote] = ACTIONS(2505), - [sym___c_single_quote] = ACTIONS(2505), - [sym___r_double_quote] = ACTIONS(2505), - [sym___r_single_quote] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [387] = { [sym_line_comment] = STATE(387), [sym_block_comment] = STATE(387), - [ts_builtin_sym_end] = ACTIONS(2507), - [sym_identifier] = ACTIONS(2509), - [anon_sym_LF] = ACTIONS(2509), - [anon_sym_CR] = ACTIONS(2509), - [anon_sym_CR_LF] = ACTIONS(2509), + [ts_builtin_sym_end] = ACTIONS(2053), + [sym_identifier] = ACTIONS(2055), + [anon_sym_LF] = ACTIONS(2055), + [anon_sym_CR] = ACTIONS(2055), + [anon_sym_CR_LF] = ACTIONS(2055), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2509), - [anon_sym_as] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_COMMA] = ACTIONS(2509), - [anon_sym_const] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2509), - [anon_sym_EQ] = ACTIONS(2509), - [anon_sym___global] = ACTIONS(2509), - [anon_sym_type] = ACTIONS(2509), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_fn] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_SLASH] = ACTIONS(2509), - [anon_sym_PERCENT] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_GT] = ACTIONS(2509), - [anon_sym_EQ_EQ] = ACTIONS(2509), - [anon_sym_BANG_EQ] = ACTIONS(2509), - [anon_sym_LT_EQ] = ACTIONS(2509), - [anon_sym_GT_EQ] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2509), - [anon_sym_union] = ACTIONS(2509), - [anon_sym_pub] = ACTIONS(2509), - [anon_sym_mut] = ACTIONS(2509), - [anon_sym_enum] = ACTIONS(2509), - [anon_sym_interface] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2509), - [anon_sym_DASH_DASH] = ACTIONS(2509), - [anon_sym_QMARK] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_go] = ACTIONS(2509), - [anon_sym_spawn] = ACTIONS(2509), - [anon_sym_json_DOTdecode] = ACTIONS(2509), - [anon_sym_LBRACK2] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2509), - [anon_sym_CARET] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2509), - [anon_sym_LT_DASH] = ACTIONS(2509), - [anon_sym_LT_LT] = ACTIONS(2509), - [anon_sym_GT_GT] = ACTIONS(2509), - [anon_sym_GT_GT_GT] = ACTIONS(2509), - [anon_sym_AMP_CARET] = ACTIONS(2509), - [anon_sym_AMP_AMP] = ACTIONS(2509), - [anon_sym_PIPE_PIPE] = ACTIONS(2509), - [anon_sym_or] = ACTIONS(2509), - [sym_none] = ACTIONS(2509), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_nil] = ACTIONS(2509), - [anon_sym_QMARK_DOT] = ACTIONS(2509), - [anon_sym_POUND_LBRACK] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_DOLLARif] = ACTIONS(2509), - [anon_sym_is] = ACTIONS(2509), - [anon_sym_BANGis] = ACTIONS(2509), - [anon_sym_in] = ACTIONS(2509), - [anon_sym_BANGin] = ACTIONS(2509), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_select] = ACTIONS(2509), - [anon_sym_STAR_EQ] = ACTIONS(2509), - [anon_sym_SLASH_EQ] = ACTIONS(2509), - [anon_sym_PERCENT_EQ] = ACTIONS(2509), - [anon_sym_LT_LT_EQ] = ACTIONS(2509), - [anon_sym_GT_GT_EQ] = ACTIONS(2509), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2509), - [anon_sym_AMP_EQ] = ACTIONS(2509), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2509), - [anon_sym_PLUS_EQ] = ACTIONS(2509), - [anon_sym_DASH_EQ] = ACTIONS(2509), - [anon_sym_PIPE_EQ] = ACTIONS(2509), - [anon_sym_CARET_EQ] = ACTIONS(2509), - [anon_sym_COLON_EQ] = ACTIONS(2509), - [anon_sym_lock] = ACTIONS(2509), - [anon_sym_rlock] = ACTIONS(2509), - [anon_sym_unsafe] = ACTIONS(2509), - [anon_sym_sql] = ACTIONS(2509), - [sym_int_literal] = ACTIONS(2509), - [sym_float_literal] = ACTIONS(2509), - [sym_rune_literal] = ACTIONS(2509), - [sym_pseudo_compile_time_identifier] = ACTIONS(2509), - [anon_sym_shared] = ACTIONS(2509), - [anon_sym_map_LBRACK] = ACTIONS(2509), - [anon_sym_chan] = ACTIONS(2509), - [anon_sym_thread] = ACTIONS(2509), - [anon_sym_atomic] = ACTIONS(2509), - [anon_sym_assert] = ACTIONS(2509), - [anon_sym_defer] = ACTIONS(2509), - [anon_sym_goto] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_DOLLARfor] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2509), - [anon_sym_AT_LBRACK] = ACTIONS(2509), - [sym___double_quote] = ACTIONS(2509), - [sym___single_quote] = ACTIONS(2509), - [sym___c_double_quote] = ACTIONS(2509), - [sym___c_single_quote] = ACTIONS(2509), - [sym___r_double_quote] = ACTIONS(2509), - [sym___r_single_quote] = ACTIONS(2509), + [anon_sym_DOT] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_EQ] = ACTIONS(2055), + [anon_sym___global] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(2055), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_PERCENT] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_EQ_EQ] = ACTIONS(2055), + [anon_sym_BANG_EQ] = ACTIONS(2055), + [anon_sym_LT_EQ] = ACTIONS(2055), + [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(2055), + [anon_sym_union] = ACTIONS(2055), + [anon_sym_pub] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), + [anon_sym_enum] = ACTIONS(2055), + [anon_sym_interface] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_QMARK] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2055), + [anon_sym_spawn] = ACTIONS(2055), + [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_LBRACK2] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_LT] = ACTIONS(2055), + [anon_sym_GT_GT] = ACTIONS(2055), + [anon_sym_GT_GT_GT] = ACTIONS(2055), + [anon_sym_AMP_CARET] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2055), + [anon_sym_PIPE_PIPE] = ACTIONS(2055), + [anon_sym_or] = ACTIONS(2055), + [sym_none] = ACTIONS(2055), + [sym_true] = ACTIONS(2055), + [sym_false] = ACTIONS(2055), + [sym_nil] = ACTIONS(2055), + [anon_sym_QMARK_DOT] = ACTIONS(2055), + [anon_sym_POUND_LBRACK] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_DOLLARif] = ACTIONS(2055), + [anon_sym_is] = ACTIONS(2055), + [anon_sym_BANGis] = ACTIONS(2055), + [anon_sym_in] = ACTIONS(2055), + [anon_sym_BANGin] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_select] = ACTIONS(2055), + [anon_sym_STAR_EQ] = ACTIONS(2055), + [anon_sym_SLASH_EQ] = ACTIONS(2055), + [anon_sym_PERCENT_EQ] = ACTIONS(2055), + [anon_sym_LT_LT_EQ] = ACTIONS(2055), + [anon_sym_GT_GT_EQ] = ACTIONS(2055), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), + [anon_sym_AMP_EQ] = ACTIONS(2055), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), + [anon_sym_PLUS_EQ] = ACTIONS(2055), + [anon_sym_DASH_EQ] = ACTIONS(2055), + [anon_sym_PIPE_EQ] = ACTIONS(2055), + [anon_sym_CARET_EQ] = ACTIONS(2055), + [anon_sym_COLON_EQ] = ACTIONS(2055), + [anon_sym_lock] = ACTIONS(2055), + [anon_sym_rlock] = ACTIONS(2055), + [anon_sym_unsafe] = ACTIONS(2055), + [anon_sym_sql] = ACTIONS(2055), + [sym_int_literal] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), + [sym_rune_literal] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2055), + [anon_sym_c_SQUOTE] = ACTIONS(2055), + [anon_sym_c_DQUOTE] = ACTIONS(2055), + [anon_sym_r_SQUOTE] = ACTIONS(2055), + [anon_sym_r_DQUOTE] = ACTIONS(2055), + [sym_pseudo_compile_time_identifier] = ACTIONS(2055), + [anon_sym_shared] = ACTIONS(2055), + [anon_sym_map_LBRACK] = ACTIONS(2055), + [anon_sym_chan] = ACTIONS(2055), + [anon_sym_thread] = ACTIONS(2055), + [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_assert] = ACTIONS(2055), + [anon_sym_defer] = ACTIONS(2055), + [anon_sym_goto] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_DOLLARfor] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(2055), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym_AT_LBRACK] = ACTIONS(2055), }, [388] = { [sym_line_comment] = STATE(388), [sym_block_comment] = STATE(388), - [ts_builtin_sym_end] = ACTIONS(1879), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1881), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_union] = ACTIONS(1881), - [anon_sym_pub] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_enum] = ACTIONS(1881), - [anon_sym_interface] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_QMARK] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_GT_GT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_AMP_CARET] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_or] = ACTIONS(1881), - [sym_none] = ACTIONS(1881), - [sym_true] = ACTIONS(1881), - [sym_false] = ACTIONS(1881), - [sym_nil] = ACTIONS(1881), - [anon_sym_QMARK_DOT] = ACTIONS(1881), - [anon_sym_POUND_LBRACK] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_BANGin] = ACTIONS(1881), - [anon_sym_match] = ACTIONS(1881), - [anon_sym_select] = ACTIONS(1881), - [anon_sym_STAR_EQ] = ACTIONS(1881), - [anon_sym_SLASH_EQ] = ACTIONS(1881), - [anon_sym_PERCENT_EQ] = ACTIONS(1881), - [anon_sym_LT_LT_EQ] = ACTIONS(1881), - [anon_sym_GT_GT_EQ] = ACTIONS(1881), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1881), - [anon_sym_AMP_EQ] = ACTIONS(1881), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1881), - [anon_sym_PLUS_EQ] = ACTIONS(1881), - [anon_sym_DASH_EQ] = ACTIONS(1881), - [anon_sym_PIPE_EQ] = ACTIONS(1881), - [anon_sym_CARET_EQ] = ACTIONS(1881), - [anon_sym_COLON_EQ] = ACTIONS(1881), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1881), - [anon_sym_sql] = ACTIONS(1881), - [sym_int_literal] = ACTIONS(1881), - [sym_float_literal] = ACTIONS(1881), - [sym_rune_literal] = ACTIONS(1881), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1881), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [anon_sym_assert] = ACTIONS(1881), - [anon_sym_defer] = ACTIONS(1881), - [anon_sym_goto] = ACTIONS(1881), - [anon_sym_break] = ACTIONS(1881), - [anon_sym_continue] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1881), - [anon_sym_DOLLARfor] = ACTIONS(1881), - [anon_sym_for] = ACTIONS(1881), - [anon_sym_POUND] = ACTIONS(1881), - [anon_sym_asm] = ACTIONS(1881), - [anon_sym_AT_LBRACK] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1881), - [sym___single_quote] = ACTIONS(1881), - [sym___c_double_quote] = ACTIONS(1881), - [sym___c_single_quote] = ACTIONS(1881), - [sym___r_double_quote] = ACTIONS(1881), - [sym___r_single_quote] = ACTIONS(1881), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1398), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1396), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(449), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [389] = { [sym_line_comment] = STATE(389), [sym_block_comment] = STATE(389), - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2696), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_match_arm_type] = STATE(4212), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3848), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__definite_range] = STATE(4215), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [390] = { [sym_line_comment] = STATE(390), [sym_block_comment] = STATE(390), - [sym__expression] = STATE(2583), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4429), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1398), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1396), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(312), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2483), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [391] = { [sym_line_comment] = STATE(391), [sym_block_comment] = STATE(391), - [sym__expression] = STATE(2583), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3569), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4429), - [sym_identifier] = ACTIONS(2127), + [sym__expression] = STATE(1259), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_string_interpolation_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2493), + [anon_sym_spawn] = ACTIONS(2495), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_LT_DASH] = ACTIONS(2499), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2503), + [anon_sym_rlock] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [392] = { [sym_line_comment] = STATE(392), [sym_block_comment] = STATE(392), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1397), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1399), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(2505), + [sym_identifier] = ACTIONS(2507), + [anon_sym_LF] = ACTIONS(2507), + [anon_sym_CR] = ACTIONS(2507), + [anon_sym_CR_LF] = ACTIONS(2507), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2507), + [anon_sym_as] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_COMMA] = ACTIONS(2507), + [anon_sym_const] = ACTIONS(2507), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_EQ] = ACTIONS(2507), + [anon_sym___global] = ACTIONS(2507), + [anon_sym_type] = ACTIONS(2507), + [anon_sym_PIPE] = ACTIONS(2507), + [anon_sym_fn] = ACTIONS(2507), + [anon_sym_PLUS] = ACTIONS(2507), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_GT] = ACTIONS(2507), + [anon_sym_EQ_EQ] = ACTIONS(2507), + [anon_sym_BANG_EQ] = ACTIONS(2507), + [anon_sym_LT_EQ] = ACTIONS(2507), + [anon_sym_GT_EQ] = ACTIONS(2507), + [anon_sym_LBRACK] = ACTIONS(2505), + [anon_sym_struct] = ACTIONS(2507), + [anon_sym_union] = ACTIONS(2507), + [anon_sym_pub] = ACTIONS(2507), + [anon_sym_mut] = ACTIONS(2507), + [anon_sym_enum] = ACTIONS(2507), + [anon_sym_interface] = ACTIONS(2507), + [anon_sym_PLUS_PLUS] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2507), + [anon_sym_QMARK] = ACTIONS(2507), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_go] = ACTIONS(2507), + [anon_sym_spawn] = ACTIONS(2507), + [anon_sym_json_DOTdecode] = ACTIONS(2507), + [anon_sym_LBRACK2] = ACTIONS(2507), + [anon_sym_TILDE] = ACTIONS(2507), + [anon_sym_CARET] = ACTIONS(2507), + [anon_sym_AMP] = ACTIONS(2507), + [anon_sym_LT_DASH] = ACTIONS(2507), + [anon_sym_LT_LT] = ACTIONS(2507), + [anon_sym_GT_GT] = ACTIONS(2507), + [anon_sym_GT_GT_GT] = ACTIONS(2507), + [anon_sym_AMP_CARET] = ACTIONS(2507), + [anon_sym_AMP_AMP] = ACTIONS(2507), + [anon_sym_PIPE_PIPE] = ACTIONS(2507), + [anon_sym_or] = ACTIONS(2507), + [sym_none] = ACTIONS(2507), + [sym_true] = ACTIONS(2507), + [sym_false] = ACTIONS(2507), + [sym_nil] = ACTIONS(2507), + [anon_sym_QMARK_DOT] = ACTIONS(2507), + [anon_sym_POUND_LBRACK] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_DOLLARif] = ACTIONS(2507), + [anon_sym_is] = ACTIONS(2507), + [anon_sym_BANGis] = ACTIONS(2507), + [anon_sym_in] = ACTIONS(2507), + [anon_sym_BANGin] = ACTIONS(2507), + [anon_sym_match] = ACTIONS(2507), + [anon_sym_select] = ACTIONS(2507), + [anon_sym_STAR_EQ] = ACTIONS(2507), + [anon_sym_SLASH_EQ] = ACTIONS(2507), + [anon_sym_PERCENT_EQ] = ACTIONS(2507), + [anon_sym_LT_LT_EQ] = ACTIONS(2507), + [anon_sym_GT_GT_EQ] = ACTIONS(2507), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2507), + [anon_sym_AMP_EQ] = ACTIONS(2507), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2507), + [anon_sym_PLUS_EQ] = ACTIONS(2507), + [anon_sym_DASH_EQ] = ACTIONS(2507), + [anon_sym_PIPE_EQ] = ACTIONS(2507), + [anon_sym_CARET_EQ] = ACTIONS(2507), + [anon_sym_COLON_EQ] = ACTIONS(2507), + [anon_sym_lock] = ACTIONS(2507), + [anon_sym_rlock] = ACTIONS(2507), + [anon_sym_unsafe] = ACTIONS(2507), + [anon_sym_sql] = ACTIONS(2507), + [sym_int_literal] = ACTIONS(2507), + [sym_float_literal] = ACTIONS(2507), + [sym_rune_literal] = ACTIONS(2507), + [anon_sym_SQUOTE] = ACTIONS(2507), + [anon_sym_DQUOTE] = ACTIONS(2507), + [anon_sym_c_SQUOTE] = ACTIONS(2507), + [anon_sym_c_DQUOTE] = ACTIONS(2507), + [anon_sym_r_SQUOTE] = ACTIONS(2507), + [anon_sym_r_DQUOTE] = ACTIONS(2507), + [sym_pseudo_compile_time_identifier] = ACTIONS(2507), + [anon_sym_shared] = ACTIONS(2507), + [anon_sym_map_LBRACK] = ACTIONS(2507), + [anon_sym_chan] = ACTIONS(2507), + [anon_sym_thread] = ACTIONS(2507), + [anon_sym_atomic] = ACTIONS(2507), + [anon_sym_assert] = ACTIONS(2507), + [anon_sym_defer] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2507), + [anon_sym_break] = ACTIONS(2507), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2507), + [anon_sym_DOLLARfor] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_POUND] = ACTIONS(2507), + [anon_sym_asm] = ACTIONS(2507), + [anon_sym_AT_LBRACK] = ACTIONS(2507), }, [393] = { [sym_line_comment] = STATE(393), [sym_block_comment] = STATE(393), - [ts_builtin_sym_end] = ACTIONS(2511), - [sym_identifier] = ACTIONS(2513), - [anon_sym_LF] = ACTIONS(2513), - [anon_sym_CR] = ACTIONS(2513), - [anon_sym_CR_LF] = ACTIONS(2513), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_COMMA] = ACTIONS(2513), - [anon_sym_const] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_EQ] = ACTIONS(2513), - [anon_sym___global] = ACTIONS(2513), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_fn] = ACTIONS(2513), + [sym__expression] = STATE(2287), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(624), + [sym_mutable_expression] = STATE(3538), + [sym_expression_list] = STATE(3680), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), [anon_sym_PLUS] = ACTIONS(2513), [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2513), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_GT] = ACTIONS(2513), - [anon_sym_EQ_EQ] = ACTIONS(2513), - [anon_sym_BANG_EQ] = ACTIONS(2513), - [anon_sym_LT_EQ] = ACTIONS(2513), - [anon_sym_GT_EQ] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_union] = ACTIONS(2513), - [anon_sym_pub] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_enum] = ACTIONS(2513), - [anon_sym_interface] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_QMARK] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_go] = ACTIONS(2513), - [anon_sym_spawn] = ACTIONS(2513), - [anon_sym_json_DOTdecode] = ACTIONS(2513), - [anon_sym_LBRACK2] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), [anon_sym_TILDE] = ACTIONS(2513), [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_LT_DASH] = ACTIONS(2513), - [anon_sym_LT_LT] = ACTIONS(2513), - [anon_sym_GT_GT] = ACTIONS(2513), - [anon_sym_GT_GT_GT] = ACTIONS(2513), - [anon_sym_AMP_CARET] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2513), - [anon_sym_or] = ACTIONS(2513), - [sym_none] = ACTIONS(2513), - [sym_true] = ACTIONS(2513), - [sym_false] = ACTIONS(2513), - [sym_nil] = ACTIONS(2513), - [anon_sym_QMARK_DOT] = ACTIONS(2513), - [anon_sym_POUND_LBRACK] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_DOLLARif] = ACTIONS(2513), - [anon_sym_is] = ACTIONS(2513), - [anon_sym_BANGis] = ACTIONS(2513), - [anon_sym_in] = ACTIONS(2513), - [anon_sym_BANGin] = ACTIONS(2513), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_select] = ACTIONS(2513), - [anon_sym_STAR_EQ] = ACTIONS(2513), - [anon_sym_SLASH_EQ] = ACTIONS(2513), - [anon_sym_PERCENT_EQ] = ACTIONS(2513), - [anon_sym_LT_LT_EQ] = ACTIONS(2513), - [anon_sym_GT_GT_EQ] = ACTIONS(2513), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2513), - [anon_sym_AMP_EQ] = ACTIONS(2513), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2513), - [anon_sym_PLUS_EQ] = ACTIONS(2513), - [anon_sym_DASH_EQ] = ACTIONS(2513), - [anon_sym_PIPE_EQ] = ACTIONS(2513), - [anon_sym_CARET_EQ] = ACTIONS(2513), - [anon_sym_COLON_EQ] = ACTIONS(2513), - [anon_sym_lock] = ACTIONS(2513), - [anon_sym_rlock] = ACTIONS(2513), - [anon_sym_unsafe] = ACTIONS(2513), - [anon_sym_sql] = ACTIONS(2513), - [sym_int_literal] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2513), - [sym_rune_literal] = ACTIONS(2513), - [sym_pseudo_compile_time_identifier] = ACTIONS(2513), - [anon_sym_shared] = ACTIONS(2513), - [anon_sym_map_LBRACK] = ACTIONS(2513), - [anon_sym_chan] = ACTIONS(2513), - [anon_sym_thread] = ACTIONS(2513), - [anon_sym_atomic] = ACTIONS(2513), - [anon_sym_assert] = ACTIONS(2513), - [anon_sym_defer] = ACTIONS(2513), - [anon_sym_goto] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_DOLLARfor] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_POUND] = ACTIONS(2513), - [anon_sym_asm] = ACTIONS(2513), - [anon_sym_AT_LBRACK] = ACTIONS(2513), - [sym___double_quote] = ACTIONS(2513), - [sym___single_quote] = ACTIONS(2513), - [sym___c_double_quote] = ACTIONS(2513), - [sym___c_single_quote] = ACTIONS(2513), - [sym___r_double_quote] = ACTIONS(2513), - [sym___r_single_quote] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_LT_DASH] = ACTIONS(2525), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_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(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4492), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2287), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(624), + [sym_mutable_expression] = STATE(3538), + [sym_expression_list] = STATE(3685), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_LT_DASH] = ACTIONS(2525), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_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(2520), - [sym_identifier] = ACTIONS(2522), - [anon_sym_LF] = ACTIONS(2522), - [anon_sym_CR] = ACTIONS(2522), - [anon_sym_CR_LF] = ACTIONS(2522), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2522), - [anon_sym_as] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_COMMA] = ACTIONS(2522), - [anon_sym_const] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym_EQ] = ACTIONS(2522), - [anon_sym___global] = ACTIONS(2522), - [anon_sym_type] = ACTIONS(2522), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_fn] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_SLASH] = ACTIONS(2522), - [anon_sym_PERCENT] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_GT] = ACTIONS(2522), - [anon_sym_EQ_EQ] = ACTIONS(2522), - [anon_sym_BANG_EQ] = ACTIONS(2522), - [anon_sym_LT_EQ] = ACTIONS(2522), - [anon_sym_GT_EQ] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(2522), - [anon_sym_union] = ACTIONS(2522), - [anon_sym_pub] = ACTIONS(2522), - [anon_sym_mut] = ACTIONS(2522), - [anon_sym_enum] = ACTIONS(2522), - [anon_sym_interface] = ACTIONS(2522), - [anon_sym_PLUS_PLUS] = ACTIONS(2522), - [anon_sym_DASH_DASH] = ACTIONS(2522), - [anon_sym_QMARK] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_go] = ACTIONS(2522), - [anon_sym_spawn] = ACTIONS(2522), - [anon_sym_json_DOTdecode] = ACTIONS(2522), - [anon_sym_LBRACK2] = ACTIONS(2522), - [anon_sym_TILDE] = ACTIONS(2522), - [anon_sym_CARET] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_LT_DASH] = ACTIONS(2522), - [anon_sym_LT_LT] = ACTIONS(2522), - [anon_sym_GT_GT] = ACTIONS(2522), - [anon_sym_GT_GT_GT] = ACTIONS(2522), - [anon_sym_AMP_CARET] = ACTIONS(2522), - [anon_sym_AMP_AMP] = ACTIONS(2522), - [anon_sym_PIPE_PIPE] = ACTIONS(2522), - [anon_sym_or] = ACTIONS(2522), - [sym_none] = ACTIONS(2522), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_nil] = ACTIONS(2522), - [anon_sym_QMARK_DOT] = ACTIONS(2522), - [anon_sym_POUND_LBRACK] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_DOLLARif] = ACTIONS(2522), - [anon_sym_is] = ACTIONS(2522), - [anon_sym_BANGis] = ACTIONS(2522), - [anon_sym_in] = ACTIONS(2522), - [anon_sym_BANGin] = ACTIONS(2522), - [anon_sym_match] = ACTIONS(2522), - [anon_sym_select] = ACTIONS(2522), - [anon_sym_STAR_EQ] = ACTIONS(2522), - [anon_sym_SLASH_EQ] = ACTIONS(2522), - [anon_sym_PERCENT_EQ] = ACTIONS(2522), - [anon_sym_LT_LT_EQ] = ACTIONS(2522), - [anon_sym_GT_GT_EQ] = ACTIONS(2522), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2522), - [anon_sym_AMP_EQ] = ACTIONS(2522), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2522), - [anon_sym_PLUS_EQ] = ACTIONS(2522), - [anon_sym_DASH_EQ] = ACTIONS(2522), - [anon_sym_PIPE_EQ] = ACTIONS(2522), - [anon_sym_CARET_EQ] = ACTIONS(2522), - [anon_sym_COLON_EQ] = ACTIONS(2522), - [anon_sym_lock] = ACTIONS(2522), - [anon_sym_rlock] = ACTIONS(2522), - [anon_sym_unsafe] = ACTIONS(2522), - [anon_sym_sql] = ACTIONS(2522), - [sym_int_literal] = ACTIONS(2522), - [sym_float_literal] = ACTIONS(2522), - [sym_rune_literal] = ACTIONS(2522), - [sym_pseudo_compile_time_identifier] = ACTIONS(2522), - [anon_sym_shared] = ACTIONS(2522), - [anon_sym_map_LBRACK] = ACTIONS(2522), - [anon_sym_chan] = ACTIONS(2522), - [anon_sym_thread] = ACTIONS(2522), - [anon_sym_atomic] = ACTIONS(2522), - [anon_sym_assert] = ACTIONS(2522), - [anon_sym_defer] = ACTIONS(2522), - [anon_sym_goto] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_DOLLARfor] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2522), - [anon_sym_POUND] = ACTIONS(2522), - [anon_sym_asm] = ACTIONS(2522), - [anon_sym_AT_LBRACK] = ACTIONS(2522), - [sym___double_quote] = ACTIONS(2522), - [sym___single_quote] = ACTIONS(2522), - [sym___c_double_quote] = ACTIONS(2522), - [sym___c_single_quote] = ACTIONS(2522), - [sym___r_double_quote] = ACTIONS(2522), - [sym___r_single_quote] = ACTIONS(2522), + [sym__expression] = STATE(2618), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3548), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4318), + [sym_identifier] = ACTIONS(2391), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [396] = { [sym_line_comment] = STATE(396), [sym_block_comment] = STATE(396), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2618), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4318), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2524), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [397] = { [sym_line_comment] = STATE(397), [sym_block_comment] = STATE(397), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4458), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1398), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1396), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(456), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2541), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [398] = { [sym_line_comment] = STATE(398), [sym_block_comment] = STATE(398), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4458), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4341), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [399] = { [sym_line_comment] = STATE(399), [sym_block_comment] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(2511), - [sym_identifier] = ACTIONS(2513), - [anon_sym_LF] = ACTIONS(2513), - [anon_sym_CR] = ACTIONS(2513), - [anon_sym_CR_LF] = ACTIONS(2513), + [ts_builtin_sym_end] = ACTIONS(2545), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LF] = ACTIONS(2547), + [anon_sym_CR] = ACTIONS(2547), + [anon_sym_CR_LF] = ACTIONS(2547), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2513), - [anon_sym_as] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_COMMA] = ACTIONS(2513), - [anon_sym_const] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_EQ] = ACTIONS(2513), - [anon_sym___global] = ACTIONS(2513), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_fn] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2513), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_GT] = ACTIONS(2513), - [anon_sym_EQ_EQ] = ACTIONS(2513), - [anon_sym_BANG_EQ] = ACTIONS(2513), - [anon_sym_LT_EQ] = ACTIONS(2513), - [anon_sym_GT_EQ] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_union] = ACTIONS(2513), - [anon_sym_pub] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_enum] = ACTIONS(2513), - [anon_sym_interface] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_QMARK] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_go] = ACTIONS(2513), - [anon_sym_spawn] = ACTIONS(2513), - [anon_sym_json_DOTdecode] = ACTIONS(2513), - [anon_sym_LBRACK2] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_LT_DASH] = ACTIONS(2513), - [anon_sym_LT_LT] = ACTIONS(2513), - [anon_sym_GT_GT] = ACTIONS(2513), - [anon_sym_GT_GT_GT] = ACTIONS(2513), - [anon_sym_AMP_CARET] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2513), - [anon_sym_or] = ACTIONS(2513), - [sym_none] = ACTIONS(2513), - [sym_true] = ACTIONS(2513), - [sym_false] = ACTIONS(2513), - [sym_nil] = ACTIONS(2513), - [anon_sym_QMARK_DOT] = ACTIONS(2513), - [anon_sym_POUND_LBRACK] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_DOLLARif] = ACTIONS(2513), - [anon_sym_is] = ACTIONS(2513), - [anon_sym_BANGis] = ACTIONS(2513), - [anon_sym_in] = ACTIONS(2513), - [anon_sym_BANGin] = ACTIONS(2513), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_select] = ACTIONS(2513), - [anon_sym_STAR_EQ] = ACTIONS(2513), - [anon_sym_SLASH_EQ] = ACTIONS(2513), - [anon_sym_PERCENT_EQ] = ACTIONS(2513), - [anon_sym_LT_LT_EQ] = ACTIONS(2513), - [anon_sym_GT_GT_EQ] = ACTIONS(2513), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2513), - [anon_sym_AMP_EQ] = ACTIONS(2513), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2513), - [anon_sym_PLUS_EQ] = ACTIONS(2513), - [anon_sym_DASH_EQ] = ACTIONS(2513), - [anon_sym_PIPE_EQ] = ACTIONS(2513), - [anon_sym_CARET_EQ] = ACTIONS(2513), - [anon_sym_COLON_EQ] = ACTIONS(2513), - [anon_sym_lock] = ACTIONS(2513), - [anon_sym_rlock] = ACTIONS(2513), - [anon_sym_unsafe] = ACTIONS(2513), - [anon_sym_sql] = ACTIONS(2513), - [sym_int_literal] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2513), - [sym_rune_literal] = ACTIONS(2513), - [sym_pseudo_compile_time_identifier] = ACTIONS(2513), - [anon_sym_shared] = ACTIONS(2513), - [anon_sym_map_LBRACK] = ACTIONS(2513), - [anon_sym_chan] = ACTIONS(2513), - [anon_sym_thread] = ACTIONS(2513), - [anon_sym_atomic] = ACTIONS(2513), - [anon_sym_assert] = ACTIONS(2513), - [anon_sym_defer] = ACTIONS(2513), - [anon_sym_goto] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_DOLLARfor] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_POUND] = ACTIONS(2513), - [anon_sym_asm] = ACTIONS(2513), - [anon_sym_AT_LBRACK] = ACTIONS(2513), - [sym___double_quote] = ACTIONS(2513), - [sym___single_quote] = ACTIONS(2513), - [sym___c_double_quote] = ACTIONS(2513), - [sym___c_single_quote] = ACTIONS(2513), - [sym___r_double_quote] = ACTIONS(2513), - [sym___r_single_quote] = ACTIONS(2513), + [anon_sym_DOT] = ACTIONS(2547), + [anon_sym_as] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_COMMA] = ACTIONS(2547), + [anon_sym_const] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2547), + [anon_sym_EQ] = ACTIONS(2547), + [anon_sym___global] = ACTIONS(2547), + [anon_sym_type] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_fn] = ACTIONS(2547), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_SLASH] = ACTIONS(2547), + [anon_sym_PERCENT] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), + [anon_sym_EQ_EQ] = ACTIONS(2547), + [anon_sym_BANG_EQ] = ACTIONS(2547), + [anon_sym_LT_EQ] = ACTIONS(2547), + [anon_sym_GT_EQ] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_struct] = ACTIONS(2547), + [anon_sym_union] = ACTIONS(2547), + [anon_sym_pub] = ACTIONS(2547), + [anon_sym_mut] = ACTIONS(2547), + [anon_sym_enum] = ACTIONS(2547), + [anon_sym_interface] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_QMARK] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_go] = ACTIONS(2547), + [anon_sym_spawn] = ACTIONS(2547), + [anon_sym_json_DOTdecode] = ACTIONS(2547), + [anon_sym_LBRACK2] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(2547), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_LT_DASH] = ACTIONS(2547), + [anon_sym_LT_LT] = ACTIONS(2547), + [anon_sym_GT_GT] = ACTIONS(2547), + [anon_sym_GT_GT_GT] = ACTIONS(2547), + [anon_sym_AMP_CARET] = ACTIONS(2547), + [anon_sym_AMP_AMP] = ACTIONS(2547), + [anon_sym_PIPE_PIPE] = ACTIONS(2547), + [anon_sym_or] = ACTIONS(2547), + [sym_none] = ACTIONS(2547), + [sym_true] = ACTIONS(2547), + [sym_false] = ACTIONS(2547), + [sym_nil] = ACTIONS(2547), + [anon_sym_QMARK_DOT] = ACTIONS(2547), + [anon_sym_POUND_LBRACK] = ACTIONS(2547), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_DOLLARif] = ACTIONS(2547), + [anon_sym_is] = ACTIONS(2547), + [anon_sym_BANGis] = ACTIONS(2547), + [anon_sym_in] = ACTIONS(2547), + [anon_sym_BANGin] = ACTIONS(2547), + [anon_sym_match] = ACTIONS(2547), + [anon_sym_select] = ACTIONS(2547), + [anon_sym_STAR_EQ] = ACTIONS(2547), + [anon_sym_SLASH_EQ] = ACTIONS(2547), + [anon_sym_PERCENT_EQ] = ACTIONS(2547), + [anon_sym_LT_LT_EQ] = ACTIONS(2547), + [anon_sym_GT_GT_EQ] = ACTIONS(2547), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2547), + [anon_sym_AMP_EQ] = ACTIONS(2547), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2547), + [anon_sym_PLUS_EQ] = ACTIONS(2547), + [anon_sym_DASH_EQ] = ACTIONS(2547), + [anon_sym_PIPE_EQ] = ACTIONS(2547), + [anon_sym_CARET_EQ] = ACTIONS(2547), + [anon_sym_COLON_EQ] = ACTIONS(2547), + [anon_sym_lock] = ACTIONS(2547), + [anon_sym_rlock] = ACTIONS(2547), + [anon_sym_unsafe] = ACTIONS(2547), + [anon_sym_sql] = ACTIONS(2547), + [sym_int_literal] = ACTIONS(2547), + [sym_float_literal] = ACTIONS(2547), + [sym_rune_literal] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2547), + [anon_sym_c_SQUOTE] = ACTIONS(2547), + [anon_sym_c_DQUOTE] = ACTIONS(2547), + [anon_sym_r_SQUOTE] = ACTIONS(2547), + [anon_sym_r_DQUOTE] = ACTIONS(2547), + [sym_pseudo_compile_time_identifier] = ACTIONS(2547), + [anon_sym_shared] = ACTIONS(2547), + [anon_sym_map_LBRACK] = ACTIONS(2547), + [anon_sym_chan] = ACTIONS(2547), + [anon_sym_thread] = ACTIONS(2547), + [anon_sym_atomic] = ACTIONS(2547), + [anon_sym_assert] = ACTIONS(2547), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_goto] = ACTIONS(2547), + [anon_sym_break] = ACTIONS(2547), + [anon_sym_continue] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2547), + [anon_sym_DOLLARfor] = ACTIONS(2547), + [anon_sym_for] = ACTIONS(2547), + [anon_sym_POUND] = ACTIONS(2547), + [anon_sym_asm] = ACTIONS(2547), + [anon_sym_AT_LBRACK] = ACTIONS(2547), }, [400] = { [sym_line_comment] = STATE(400), [sym_block_comment] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_CR] = ACTIONS(1809), - [anon_sym_CR_LF] = ACTIONS(1809), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_EQ] = ACTIONS(1809), - [anon_sym___global] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_pub] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1809), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1809), - [anon_sym_AMP_CARET] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_PIPE_PIPE] = ACTIONS(1809), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1809), - [anon_sym_POUND_LBRACK] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1809), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_STAR_EQ] = ACTIONS(1809), - [anon_sym_SLASH_EQ] = ACTIONS(1809), - [anon_sym_PERCENT_EQ] = ACTIONS(1809), - [anon_sym_LT_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_GT_EQ] = ACTIONS(1809), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1809), - [anon_sym_AMP_EQ] = ACTIONS(1809), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1809), - [anon_sym_PLUS_EQ] = ACTIONS(1809), - [anon_sym_DASH_EQ] = ACTIONS(1809), - [anon_sym_PIPE_EQ] = ACTIONS(1809), - [anon_sym_CARET_EQ] = ACTIONS(1809), - [anon_sym_COLON_EQ] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), - [sym_rune_literal] = ACTIONS(1809), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1809), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), - [anon_sym_assert] = ACTIONS(1809), - [anon_sym_defer] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_DOLLARfor] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_POUND] = ACTIONS(1809), - [anon_sym_asm] = ACTIONS(1809), - [anon_sym_AT_LBRACK] = ACTIONS(1809), - [sym___double_quote] = ACTIONS(1809), - [sym___single_quote] = ACTIONS(1809), - [sym___c_double_quote] = ACTIONS(1809), - [sym___c_single_quote] = ACTIONS(1809), - [sym___r_double_quote] = ACTIONS(1809), - [sym___r_single_quote] = ACTIONS(1809), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4346), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(2549), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [401] = { [sym_line_comment] = STATE(401), [sym_block_comment] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(2530), - [sym_identifier] = ACTIONS(2532), - [anon_sym_LF] = ACTIONS(2532), - [anon_sym_CR] = ACTIONS(2532), - [anon_sym_CR_LF] = ACTIONS(2532), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2532), - [anon_sym_as] = ACTIONS(2532), - [anon_sym_LBRACE] = ACTIONS(2532), - [anon_sym_COMMA] = ACTIONS(2532), - [anon_sym_const] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_EQ] = ACTIONS(2532), - [anon_sym___global] = ACTIONS(2532), - [anon_sym_type] = ACTIONS(2532), - [anon_sym_PIPE] = ACTIONS(2532), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2532), - [anon_sym_DASH] = ACTIONS(2532), - [anon_sym_STAR] = ACTIONS(2532), - [anon_sym_SLASH] = ACTIONS(2532), - [anon_sym_PERCENT] = ACTIONS(2532), - [anon_sym_LT] = ACTIONS(2532), - [anon_sym_GT] = ACTIONS(2532), - [anon_sym_EQ_EQ] = ACTIONS(2532), - [anon_sym_BANG_EQ] = ACTIONS(2532), - [anon_sym_LT_EQ] = ACTIONS(2532), - [anon_sym_GT_EQ] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(2532), - [anon_sym_union] = ACTIONS(2532), - [anon_sym_pub] = ACTIONS(2532), - [anon_sym_mut] = ACTIONS(2532), - [anon_sym_enum] = ACTIONS(2532), - [anon_sym_interface] = ACTIONS(2532), - [anon_sym_PLUS_PLUS] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2532), - [anon_sym_QMARK] = ACTIONS(2532), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2532), - [anon_sym_spawn] = ACTIONS(2532), - [anon_sym_json_DOTdecode] = ACTIONS(2532), - [anon_sym_LBRACK2] = ACTIONS(2532), - [anon_sym_TILDE] = ACTIONS(2532), - [anon_sym_CARET] = ACTIONS(2532), - [anon_sym_AMP] = ACTIONS(2532), - [anon_sym_LT_DASH] = ACTIONS(2532), - [anon_sym_LT_LT] = ACTIONS(2532), - [anon_sym_GT_GT] = ACTIONS(2532), - [anon_sym_GT_GT_GT] = ACTIONS(2532), - [anon_sym_AMP_CARET] = ACTIONS(2532), - [anon_sym_AMP_AMP] = ACTIONS(2532), - [anon_sym_PIPE_PIPE] = ACTIONS(2532), - [anon_sym_or] = ACTIONS(2532), - [sym_none] = ACTIONS(2532), - [sym_true] = ACTIONS(2532), - [sym_false] = ACTIONS(2532), - [sym_nil] = ACTIONS(2532), - [anon_sym_QMARK_DOT] = ACTIONS(2532), - [anon_sym_POUND_LBRACK] = ACTIONS(2532), - [anon_sym_if] = ACTIONS(2532), - [anon_sym_DOLLARif] = ACTIONS(2532), - [anon_sym_is] = ACTIONS(2532), - [anon_sym_BANGis] = ACTIONS(2532), - [anon_sym_in] = ACTIONS(2532), - [anon_sym_BANGin] = ACTIONS(2532), - [anon_sym_match] = ACTIONS(2532), - [anon_sym_select] = ACTIONS(2532), - [anon_sym_STAR_EQ] = ACTIONS(2532), - [anon_sym_SLASH_EQ] = ACTIONS(2532), - [anon_sym_PERCENT_EQ] = ACTIONS(2532), - [anon_sym_LT_LT_EQ] = ACTIONS(2532), - [anon_sym_GT_GT_EQ] = ACTIONS(2532), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2532), - [anon_sym_AMP_EQ] = ACTIONS(2532), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2532), - [anon_sym_PLUS_EQ] = ACTIONS(2532), - [anon_sym_DASH_EQ] = ACTIONS(2532), - [anon_sym_PIPE_EQ] = ACTIONS(2532), - [anon_sym_CARET_EQ] = ACTIONS(2532), - [anon_sym_COLON_EQ] = ACTIONS(2532), - [anon_sym_lock] = ACTIONS(2532), - [anon_sym_rlock] = ACTIONS(2532), - [anon_sym_unsafe] = ACTIONS(2532), - [anon_sym_sql] = ACTIONS(2532), - [sym_int_literal] = ACTIONS(2532), - [sym_float_literal] = ACTIONS(2532), - [sym_rune_literal] = ACTIONS(2532), - [sym_pseudo_compile_time_identifier] = ACTIONS(2532), - [anon_sym_shared] = ACTIONS(2532), - [anon_sym_map_LBRACK] = ACTIONS(2532), - [anon_sym_chan] = ACTIONS(2532), - [anon_sym_thread] = ACTIONS(2532), - [anon_sym_atomic] = ACTIONS(2532), - [anon_sym_assert] = ACTIONS(2532), - [anon_sym_defer] = ACTIONS(2532), - [anon_sym_goto] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_return] = ACTIONS(2532), - [anon_sym_DOLLARfor] = ACTIONS(2532), - [anon_sym_for] = ACTIONS(2532), - [anon_sym_POUND] = ACTIONS(2532), - [anon_sym_asm] = ACTIONS(2532), - [anon_sym_AT_LBRACK] = ACTIONS(2532), - [sym___double_quote] = ACTIONS(2532), - [sym___single_quote] = ACTIONS(2532), - [sym___c_double_quote] = ACTIONS(2532), - [sym___c_single_quote] = ACTIONS(2532), - [sym___r_double_quote] = ACTIONS(2532), - [sym___r_single_quote] = ACTIONS(2532), - }, - [402] = { - [sym_line_comment] = STATE(402), - [sym_block_comment] = STATE(402), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4332), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(953), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(653), + [sym_mutable_expression] = STATE(1413), + [sym_expression_list] = STATE(1486), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2534), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_LT_DASH] = ACTIONS(2567), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [402] = { + [sym_line_comment] = STATE(402), + [sym_block_comment] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(2583), + [sym_identifier] = ACTIONS(2585), + [anon_sym_LF] = ACTIONS(2585), + [anon_sym_CR] = ACTIONS(2585), + [anon_sym_CR_LF] = ACTIONS(2585), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2585), + [anon_sym_as] = ACTIONS(2585), + [anon_sym_LBRACE] = ACTIONS(2585), + [anon_sym_COMMA] = ACTIONS(2585), + [anon_sym_const] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2585), + [anon_sym_EQ] = ACTIONS(2585), + [anon_sym___global] = ACTIONS(2585), + [anon_sym_type] = ACTIONS(2585), + [anon_sym_PIPE] = ACTIONS(2585), + [anon_sym_fn] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2585), + [anon_sym_SLASH] = ACTIONS(2585), + [anon_sym_PERCENT] = ACTIONS(2585), + [anon_sym_LT] = ACTIONS(2585), + [anon_sym_GT] = ACTIONS(2585), + [anon_sym_EQ_EQ] = ACTIONS(2585), + [anon_sym_BANG_EQ] = ACTIONS(2585), + [anon_sym_LT_EQ] = ACTIONS(2585), + [anon_sym_GT_EQ] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2585), + [anon_sym_pub] = ACTIONS(2585), + [anon_sym_mut] = ACTIONS(2585), + [anon_sym_enum] = ACTIONS(2585), + [anon_sym_interface] = ACTIONS(2585), + [anon_sym_PLUS_PLUS] = ACTIONS(2585), + [anon_sym_DASH_DASH] = ACTIONS(2585), + [anon_sym_QMARK] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(2587), + [anon_sym_go] = ACTIONS(2585), + [anon_sym_spawn] = ACTIONS(2585), + [anon_sym_json_DOTdecode] = ACTIONS(2585), + [anon_sym_LBRACK2] = ACTIONS(2585), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2585), + [anon_sym_LT_DASH] = ACTIONS(2585), + [anon_sym_LT_LT] = ACTIONS(2585), + [anon_sym_GT_GT] = ACTIONS(2585), + [anon_sym_GT_GT_GT] = ACTIONS(2585), + [anon_sym_AMP_CARET] = ACTIONS(2585), + [anon_sym_AMP_AMP] = ACTIONS(2585), + [anon_sym_PIPE_PIPE] = ACTIONS(2585), + [anon_sym_or] = ACTIONS(2585), + [sym_none] = ACTIONS(2585), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_nil] = ACTIONS(2585), + [anon_sym_QMARK_DOT] = ACTIONS(2585), + [anon_sym_POUND_LBRACK] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_DOLLARif] = ACTIONS(2585), + [anon_sym_is] = ACTIONS(2585), + [anon_sym_BANGis] = ACTIONS(2585), + [anon_sym_in] = ACTIONS(2585), + [anon_sym_BANGin] = ACTIONS(2585), + [anon_sym_match] = ACTIONS(2585), + [anon_sym_select] = ACTIONS(2585), + [anon_sym_STAR_EQ] = ACTIONS(2585), + [anon_sym_SLASH_EQ] = ACTIONS(2585), + [anon_sym_PERCENT_EQ] = ACTIONS(2585), + [anon_sym_LT_LT_EQ] = ACTIONS(2585), + [anon_sym_GT_GT_EQ] = ACTIONS(2585), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2585), + [anon_sym_AMP_EQ] = ACTIONS(2585), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2585), + [anon_sym_PLUS_EQ] = ACTIONS(2585), + [anon_sym_DASH_EQ] = ACTIONS(2585), + [anon_sym_PIPE_EQ] = ACTIONS(2585), + [anon_sym_CARET_EQ] = ACTIONS(2585), + [anon_sym_COLON_EQ] = ACTIONS(2585), + [anon_sym_lock] = ACTIONS(2585), + [anon_sym_rlock] = ACTIONS(2585), + [anon_sym_unsafe] = ACTIONS(2585), + [anon_sym_sql] = ACTIONS(2585), + [sym_int_literal] = ACTIONS(2585), + [sym_float_literal] = ACTIONS(2585), + [sym_rune_literal] = ACTIONS(2585), + [anon_sym_SQUOTE] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2585), + [anon_sym_c_SQUOTE] = ACTIONS(2585), + [anon_sym_c_DQUOTE] = ACTIONS(2585), + [anon_sym_r_SQUOTE] = ACTIONS(2585), + [anon_sym_r_DQUOTE] = ACTIONS(2585), + [sym_pseudo_compile_time_identifier] = ACTIONS(2585), + [anon_sym_shared] = ACTIONS(2585), + [anon_sym_map_LBRACK] = ACTIONS(2585), + [anon_sym_chan] = ACTIONS(2585), + [anon_sym_thread] = ACTIONS(2585), + [anon_sym_atomic] = ACTIONS(2585), + [anon_sym_assert] = ACTIONS(2585), + [anon_sym_defer] = ACTIONS(2585), + [anon_sym_goto] = ACTIONS(2585), + [anon_sym_break] = ACTIONS(2585), + [anon_sym_continue] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_DOLLARfor] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_POUND] = ACTIONS(2585), + [anon_sym_asm] = ACTIONS(2585), + [anon_sym_AT_LBRACK] = ACTIONS(2585), }, [403] = { [sym_line_comment] = STATE(403), [sym_block_comment] = STATE(403), - [ts_builtin_sym_end] = ACTIONS(2536), - [sym_identifier] = ACTIONS(2538), - [anon_sym_LF] = ACTIONS(2538), - [anon_sym_CR] = ACTIONS(2538), - [anon_sym_CR_LF] = ACTIONS(2538), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2538), - [anon_sym_as] = ACTIONS(2538), - [anon_sym_LBRACE] = ACTIONS(2538), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_const] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(2538), - [anon_sym_EQ] = ACTIONS(2538), - [anon_sym___global] = ACTIONS(2538), - [anon_sym_type] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_fn] = ACTIONS(2538), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(2538), - [anon_sym_PERCENT] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_GT] = ACTIONS(2538), - [anon_sym_EQ_EQ] = ACTIONS(2538), - [anon_sym_BANG_EQ] = ACTIONS(2538), - [anon_sym_LT_EQ] = ACTIONS(2538), - [anon_sym_GT_EQ] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), - [anon_sym_union] = ACTIONS(2538), - [anon_sym_pub] = ACTIONS(2538), - [anon_sym_mut] = ACTIONS(2538), - [anon_sym_enum] = ACTIONS(2538), - [anon_sym_interface] = ACTIONS(2538), - [anon_sym_PLUS_PLUS] = ACTIONS(2538), - [anon_sym_DASH_DASH] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(2538), - [anon_sym_BANG] = ACTIONS(2538), - [anon_sym_go] = ACTIONS(2538), - [anon_sym_spawn] = ACTIONS(2538), - [anon_sym_json_DOTdecode] = ACTIONS(2538), - [anon_sym_LBRACK2] = ACTIONS(2538), - [anon_sym_TILDE] = ACTIONS(2538), - [anon_sym_CARET] = ACTIONS(2538), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2538), - [anon_sym_LT_LT] = ACTIONS(2538), - [anon_sym_GT_GT] = ACTIONS(2538), - [anon_sym_GT_GT_GT] = ACTIONS(2538), - [anon_sym_AMP_CARET] = ACTIONS(2538), - [anon_sym_AMP_AMP] = ACTIONS(2538), - [anon_sym_PIPE_PIPE] = ACTIONS(2538), - [anon_sym_or] = ACTIONS(2538), - [sym_none] = ACTIONS(2538), - [sym_true] = ACTIONS(2538), - [sym_false] = ACTIONS(2538), - [sym_nil] = ACTIONS(2538), - [anon_sym_QMARK_DOT] = ACTIONS(2538), - [anon_sym_POUND_LBRACK] = ACTIONS(2538), - [anon_sym_if] = ACTIONS(2538), - [anon_sym_DOLLARif] = ACTIONS(2538), - [anon_sym_is] = ACTIONS(2538), - [anon_sym_BANGis] = ACTIONS(2538), - [anon_sym_in] = ACTIONS(2538), - [anon_sym_BANGin] = ACTIONS(2538), - [anon_sym_match] = ACTIONS(2538), - [anon_sym_select] = ACTIONS(2538), - [anon_sym_STAR_EQ] = ACTIONS(2538), - [anon_sym_SLASH_EQ] = ACTIONS(2538), - [anon_sym_PERCENT_EQ] = ACTIONS(2538), - [anon_sym_LT_LT_EQ] = ACTIONS(2538), - [anon_sym_GT_GT_EQ] = ACTIONS(2538), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2538), - [anon_sym_AMP_EQ] = ACTIONS(2538), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2538), - [anon_sym_PLUS_EQ] = ACTIONS(2538), - [anon_sym_DASH_EQ] = ACTIONS(2538), - [anon_sym_PIPE_EQ] = ACTIONS(2538), - [anon_sym_CARET_EQ] = ACTIONS(2538), - [anon_sym_COLON_EQ] = ACTIONS(2538), - [anon_sym_lock] = ACTIONS(2538), - [anon_sym_rlock] = ACTIONS(2538), - [anon_sym_unsafe] = ACTIONS(2538), - [anon_sym_sql] = ACTIONS(2538), - [sym_int_literal] = ACTIONS(2538), - [sym_float_literal] = ACTIONS(2538), - [sym_rune_literal] = ACTIONS(2538), - [sym_pseudo_compile_time_identifier] = ACTIONS(2538), - [anon_sym_shared] = ACTIONS(2538), - [anon_sym_map_LBRACK] = ACTIONS(2538), - [anon_sym_chan] = ACTIONS(2538), - [anon_sym_thread] = ACTIONS(2538), - [anon_sym_atomic] = ACTIONS(2538), - [anon_sym_assert] = ACTIONS(2538), - [anon_sym_defer] = ACTIONS(2538), - [anon_sym_goto] = ACTIONS(2538), - [anon_sym_break] = ACTIONS(2538), - [anon_sym_continue] = ACTIONS(2538), - [anon_sym_return] = ACTIONS(2538), - [anon_sym_DOLLARfor] = ACTIONS(2538), - [anon_sym_for] = ACTIONS(2538), - [anon_sym_POUND] = ACTIONS(2538), - [anon_sym_asm] = ACTIONS(2538), - [anon_sym_AT_LBRACK] = ACTIONS(2538), - [sym___double_quote] = ACTIONS(2538), - [sym___single_quote] = ACTIONS(2538), - [sym___c_double_quote] = ACTIONS(2538), - [sym___c_single_quote] = ACTIONS(2538), - [sym___r_double_quote] = ACTIONS(2538), - [sym___r_single_quote] = ACTIONS(2538), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(2589), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2595), + [anon_sym_LPAREN] = ACTIONS(2598), + [anon_sym_fn] = ACTIONS(2601), + [anon_sym_PLUS] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2604), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_RBRACK] = ACTIONS(2610), + [anon_sym_struct] = ACTIONS(2612), + [anon_sym_mut] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_go] = ACTIONS(2624), + [anon_sym_spawn] = ACTIONS(2627), + [anon_sym_json_DOTdecode] = ACTIONS(2630), + [anon_sym_LBRACK2] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2604), + [anon_sym_CARET] = ACTIONS(2604), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_LT_DASH] = ACTIONS(2639), + [sym_none] = ACTIONS(2642), + [sym_true] = ACTIONS(2642), + [sym_false] = ACTIONS(2642), + [sym_nil] = ACTIONS(2642), + [anon_sym_if] = ACTIONS(2645), + [anon_sym_DOLLARif] = ACTIONS(2648), + [anon_sym_match] = ACTIONS(2651), + [anon_sym_select] = ACTIONS(2654), + [anon_sym_lock] = ACTIONS(2657), + [anon_sym_rlock] = ACTIONS(2657), + [anon_sym_unsafe] = ACTIONS(2660), + [anon_sym_sql] = ACTIONS(2663), + [sym_int_literal] = ACTIONS(2642), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_SQUOTE] = ACTIONS(2669), + [anon_sym_DQUOTE] = ACTIONS(2672), + [anon_sym_c_SQUOTE] = ACTIONS(2675), + [anon_sym_c_DQUOTE] = ACTIONS(2678), + [anon_sym_r_SQUOTE] = ACTIONS(2681), + [anon_sym_r_DQUOTE] = ACTIONS(2684), + [sym_pseudo_compile_time_identifier] = ACTIONS(2687), + [anon_sym_shared] = ACTIONS(2690), + [anon_sym_map_LBRACK] = ACTIONS(2693), + [anon_sym_chan] = ACTIONS(2696), + [anon_sym_thread] = ACTIONS(2699), + [anon_sym_atomic] = ACTIONS(2702), }, [404] = { [sym_line_comment] = STATE(404), [sym_block_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(2540), - [sym_identifier] = ACTIONS(2542), - [anon_sym_LF] = ACTIONS(2542), - [anon_sym_CR] = ACTIONS(2542), - [anon_sym_CR_LF] = ACTIONS(2542), + [ts_builtin_sym_end] = ACTIONS(2705), + [sym_identifier] = ACTIONS(2707), + [anon_sym_LF] = ACTIONS(2707), + [anon_sym_CR] = ACTIONS(2707), + [anon_sym_CR_LF] = ACTIONS(2707), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2542), - [anon_sym_as] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2542), - [anon_sym_COMMA] = ACTIONS(2542), - [anon_sym_const] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_EQ] = ACTIONS(2542), - [anon_sym___global] = ACTIONS(2542), - [anon_sym_type] = ACTIONS(2542), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_fn] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_PERCENT] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_GT] = ACTIONS(2542), - [anon_sym_EQ_EQ] = ACTIONS(2542), - [anon_sym_BANG_EQ] = ACTIONS(2542), - [anon_sym_LT_EQ] = ACTIONS(2542), - [anon_sym_GT_EQ] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2540), - [anon_sym_struct] = ACTIONS(2542), - [anon_sym_union] = ACTIONS(2542), - [anon_sym_pub] = ACTIONS(2542), - [anon_sym_mut] = ACTIONS(2542), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_interface] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2542), - [anon_sym_DASH_DASH] = ACTIONS(2542), - [anon_sym_QMARK] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(2544), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2542), - [anon_sym_json_DOTdecode] = ACTIONS(2542), - [anon_sym_LBRACK2] = ACTIONS(2542), - [anon_sym_TILDE] = ACTIONS(2542), - [anon_sym_CARET] = ACTIONS(2542), - [anon_sym_AMP] = ACTIONS(2542), - [anon_sym_LT_DASH] = ACTIONS(2542), - [anon_sym_LT_LT] = ACTIONS(2542), - [anon_sym_GT_GT] = ACTIONS(2542), - [anon_sym_GT_GT_GT] = ACTIONS(2542), - [anon_sym_AMP_CARET] = ACTIONS(2542), - [anon_sym_AMP_AMP] = ACTIONS(2542), - [anon_sym_PIPE_PIPE] = ACTIONS(2542), - [anon_sym_or] = ACTIONS(2542), - [sym_none] = ACTIONS(2542), - [sym_true] = ACTIONS(2542), - [sym_false] = ACTIONS(2542), - [sym_nil] = ACTIONS(2542), - [anon_sym_QMARK_DOT] = ACTIONS(2542), - [anon_sym_POUND_LBRACK] = ACTIONS(2542), - [anon_sym_if] = ACTIONS(2542), - [anon_sym_DOLLARif] = ACTIONS(2542), - [anon_sym_is] = ACTIONS(2542), - [anon_sym_BANGis] = ACTIONS(2542), - [anon_sym_in] = ACTIONS(2542), - [anon_sym_BANGin] = ACTIONS(2542), - [anon_sym_match] = ACTIONS(2542), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_STAR_EQ] = ACTIONS(2542), - [anon_sym_SLASH_EQ] = ACTIONS(2542), - [anon_sym_PERCENT_EQ] = ACTIONS(2542), - [anon_sym_LT_LT_EQ] = ACTIONS(2542), - [anon_sym_GT_GT_EQ] = ACTIONS(2542), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2542), - [anon_sym_AMP_EQ] = ACTIONS(2542), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2542), - [anon_sym_PLUS_EQ] = ACTIONS(2542), - [anon_sym_DASH_EQ] = ACTIONS(2542), - [anon_sym_PIPE_EQ] = ACTIONS(2542), - [anon_sym_CARET_EQ] = ACTIONS(2542), - [anon_sym_COLON_EQ] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2542), - [anon_sym_rlock] = ACTIONS(2542), - [anon_sym_unsafe] = ACTIONS(2542), - [anon_sym_sql] = ACTIONS(2542), - [sym_int_literal] = ACTIONS(2542), - [sym_float_literal] = ACTIONS(2542), - [sym_rune_literal] = ACTIONS(2542), - [sym_pseudo_compile_time_identifier] = ACTIONS(2542), - [anon_sym_shared] = ACTIONS(2542), - [anon_sym_map_LBRACK] = ACTIONS(2542), - [anon_sym_chan] = ACTIONS(2542), - [anon_sym_thread] = ACTIONS(2542), - [anon_sym_atomic] = ACTIONS(2542), - [anon_sym_assert] = ACTIONS(2542), - [anon_sym_defer] = ACTIONS(2542), - [anon_sym_goto] = ACTIONS(2542), - [anon_sym_break] = ACTIONS(2542), - [anon_sym_continue] = ACTIONS(2542), - [anon_sym_return] = ACTIONS(2542), - [anon_sym_DOLLARfor] = ACTIONS(2542), - [anon_sym_for] = ACTIONS(2542), - [anon_sym_POUND] = ACTIONS(2542), - [anon_sym_asm] = ACTIONS(2542), - [anon_sym_AT_LBRACK] = ACTIONS(2542), - [sym___double_quote] = ACTIONS(2542), - [sym___single_quote] = ACTIONS(2542), - [sym___c_double_quote] = ACTIONS(2542), - [sym___c_single_quote] = ACTIONS(2542), - [sym___r_double_quote] = ACTIONS(2542), - [sym___r_single_quote] = ACTIONS(2542), + [anon_sym_DOT] = ACTIONS(2707), + [anon_sym_as] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_COMMA] = ACTIONS(2707), + [anon_sym_const] = ACTIONS(2707), + [anon_sym_LPAREN] = ACTIONS(2707), + [anon_sym_EQ] = ACTIONS(2707), + [anon_sym___global] = ACTIONS(2707), + [anon_sym_type] = ACTIONS(2707), + [anon_sym_PIPE] = ACTIONS(2707), + [anon_sym_fn] = ACTIONS(2707), + [anon_sym_PLUS] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2707), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_SLASH] = ACTIONS(2707), + [anon_sym_PERCENT] = ACTIONS(2707), + [anon_sym_LT] = ACTIONS(2707), + [anon_sym_GT] = ACTIONS(2707), + [anon_sym_EQ_EQ] = ACTIONS(2707), + [anon_sym_BANG_EQ] = ACTIONS(2707), + [anon_sym_LT_EQ] = ACTIONS(2707), + [anon_sym_GT_EQ] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2707), + [anon_sym_union] = ACTIONS(2707), + [anon_sym_pub] = ACTIONS(2707), + [anon_sym_mut] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2707), + [anon_sym_interface] = ACTIONS(2707), + [anon_sym_PLUS_PLUS] = ACTIONS(2707), + [anon_sym_DASH_DASH] = ACTIONS(2707), + [anon_sym_QMARK] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_go] = ACTIONS(2707), + [anon_sym_spawn] = ACTIONS(2707), + [anon_sym_json_DOTdecode] = ACTIONS(2707), + [anon_sym_LBRACK2] = ACTIONS(2707), + [anon_sym_TILDE] = ACTIONS(2707), + [anon_sym_CARET] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2707), + [anon_sym_LT_DASH] = ACTIONS(2707), + [anon_sym_LT_LT] = ACTIONS(2707), + [anon_sym_GT_GT] = ACTIONS(2707), + [anon_sym_GT_GT_GT] = ACTIONS(2707), + [anon_sym_AMP_CARET] = ACTIONS(2707), + [anon_sym_AMP_AMP] = ACTIONS(2707), + [anon_sym_PIPE_PIPE] = ACTIONS(2707), + [anon_sym_or] = ACTIONS(2707), + [sym_none] = ACTIONS(2707), + [sym_true] = ACTIONS(2707), + [sym_false] = ACTIONS(2707), + [sym_nil] = ACTIONS(2707), + [anon_sym_QMARK_DOT] = ACTIONS(2707), + [anon_sym_POUND_LBRACK] = ACTIONS(2707), + [anon_sym_if] = ACTIONS(2707), + [anon_sym_DOLLARif] = ACTIONS(2707), + [anon_sym_is] = ACTIONS(2707), + [anon_sym_BANGis] = ACTIONS(2707), + [anon_sym_in] = ACTIONS(2707), + [anon_sym_BANGin] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(2707), + [anon_sym_select] = ACTIONS(2707), + [anon_sym_STAR_EQ] = ACTIONS(2707), + [anon_sym_SLASH_EQ] = ACTIONS(2707), + [anon_sym_PERCENT_EQ] = ACTIONS(2707), + [anon_sym_LT_LT_EQ] = ACTIONS(2707), + [anon_sym_GT_GT_EQ] = ACTIONS(2707), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2707), + [anon_sym_AMP_EQ] = ACTIONS(2707), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2707), + [anon_sym_PLUS_EQ] = ACTIONS(2707), + [anon_sym_DASH_EQ] = ACTIONS(2707), + [anon_sym_PIPE_EQ] = ACTIONS(2707), + [anon_sym_CARET_EQ] = ACTIONS(2707), + [anon_sym_COLON_EQ] = ACTIONS(2707), + [anon_sym_lock] = ACTIONS(2707), + [anon_sym_rlock] = ACTIONS(2707), + [anon_sym_unsafe] = ACTIONS(2707), + [anon_sym_sql] = ACTIONS(2707), + [sym_int_literal] = ACTIONS(2707), + [sym_float_literal] = ACTIONS(2707), + [sym_rune_literal] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2707), + [anon_sym_c_SQUOTE] = ACTIONS(2707), + [anon_sym_c_DQUOTE] = ACTIONS(2707), + [anon_sym_r_SQUOTE] = ACTIONS(2707), + [anon_sym_r_DQUOTE] = ACTIONS(2707), + [sym_pseudo_compile_time_identifier] = ACTIONS(2707), + [anon_sym_shared] = ACTIONS(2707), + [anon_sym_map_LBRACK] = ACTIONS(2707), + [anon_sym_chan] = ACTIONS(2707), + [anon_sym_thread] = ACTIONS(2707), + [anon_sym_atomic] = ACTIONS(2707), + [anon_sym_assert] = ACTIONS(2707), + [anon_sym_defer] = ACTIONS(2707), + [anon_sym_goto] = ACTIONS(2707), + [anon_sym_break] = ACTIONS(2707), + [anon_sym_continue] = ACTIONS(2707), + [anon_sym_return] = ACTIONS(2707), + [anon_sym_DOLLARfor] = ACTIONS(2707), + [anon_sym_for] = ACTIONS(2707), + [anon_sym_POUND] = ACTIONS(2707), + [anon_sym_asm] = ACTIONS(2707), + [anon_sym_AT_LBRACK] = ACTIONS(2707), }, [405] = { [sym_line_comment] = STATE(405), [sym_block_comment] = STATE(405), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3553), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2391), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2552), - [anon_sym_LPAREN] = ACTIONS(2555), - [anon_sym_fn] = ACTIONS(2558), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2564), - [anon_sym_RBRACK] = ACTIONS(2567), - [anon_sym_struct] = ACTIONS(2569), - [anon_sym_mut] = ACTIONS(2572), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_BANG] = ACTIONS(2578), - [anon_sym_go] = ACTIONS(2581), - [anon_sym_spawn] = ACTIONS(2584), - [anon_sym_json_DOTdecode] = ACTIONS(2587), - [anon_sym_LBRACK2] = ACTIONS(2590), - [anon_sym_TILDE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(2593), - [anon_sym_LT_DASH] = ACTIONS(2596), - [sym_none] = ACTIONS(2599), - [sym_true] = ACTIONS(2599), - [sym_false] = ACTIONS(2599), - [sym_nil] = ACTIONS(2599), - [anon_sym_if] = ACTIONS(2602), - [anon_sym_DOLLARif] = ACTIONS(2605), - [anon_sym_match] = ACTIONS(2608), - [anon_sym_select] = ACTIONS(2611), - [anon_sym_lock] = ACTIONS(2614), - [anon_sym_rlock] = ACTIONS(2614), - [anon_sym_unsafe] = ACTIONS(2617), - [anon_sym_sql] = ACTIONS(2620), - [sym_int_literal] = ACTIONS(2599), - [sym_float_literal] = ACTIONS(2623), - [sym_rune_literal] = ACTIONS(2623), - [sym_pseudo_compile_time_identifier] = ACTIONS(2626), - [anon_sym_shared] = ACTIONS(2629), - [anon_sym_map_LBRACK] = ACTIONS(2632), - [anon_sym_chan] = ACTIONS(2635), - [anon_sym_thread] = ACTIONS(2638), - [anon_sym_atomic] = ACTIONS(2641), - [sym___double_quote] = ACTIONS(2644), - [sym___single_quote] = ACTIONS(2647), - [sym___c_double_quote] = ACTIONS(2650), - [sym___c_single_quote] = ACTIONS(2653), - [sym___r_double_quote] = ACTIONS(2656), - [sym___r_single_quote] = ACTIONS(2659), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_RBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [406] = { [sym_line_comment] = STATE(406), [sym_block_comment] = STATE(406), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4474), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2662), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [407] = { [sym_line_comment] = STATE(407), [sym_block_comment] = STATE(407), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2664), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [408] = { [sym_line_comment] = STATE(408), [sym_block_comment] = STATE(408), - [sym__expression] = STATE(2599), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3569), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4325), - [sym_identifier] = ACTIONS(2127), + [sym__expression] = STATE(2588), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3548), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4532), + [sym_identifier] = ACTIONS(2391), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [409] = { [sym_line_comment] = STATE(409), [sym_block_comment] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(2666), - [sym_identifier] = ACTIONS(2668), - [anon_sym_LF] = ACTIONS(2668), - [anon_sym_CR] = ACTIONS(2668), - [anon_sym_CR_LF] = ACTIONS(2668), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2668), - [anon_sym_as] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(2668), - [anon_sym_COMMA] = ACTIONS(2668), - [anon_sym_const] = ACTIONS(2668), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_EQ] = ACTIONS(2668), - [anon_sym___global] = ACTIONS(2668), - [anon_sym_type] = ACTIONS(2668), - [anon_sym_PIPE] = ACTIONS(2668), - [anon_sym_fn] = ACTIONS(2668), - [anon_sym_PLUS] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2668), - [anon_sym_STAR] = ACTIONS(2668), - [anon_sym_SLASH] = ACTIONS(2668), - [anon_sym_PERCENT] = ACTIONS(2668), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_EQ_EQ] = ACTIONS(2668), - [anon_sym_BANG_EQ] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2668), - [anon_sym_GT_EQ] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_struct] = ACTIONS(2668), - [anon_sym_union] = ACTIONS(2668), - [anon_sym_pub] = ACTIONS(2668), - [anon_sym_mut] = ACTIONS(2668), - [anon_sym_enum] = ACTIONS(2668), - [anon_sym_interface] = ACTIONS(2668), - [anon_sym_PLUS_PLUS] = ACTIONS(2668), - [anon_sym_DASH_DASH] = ACTIONS(2668), - [anon_sym_QMARK] = ACTIONS(2668), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_go] = ACTIONS(2668), - [anon_sym_spawn] = ACTIONS(2668), - [anon_sym_json_DOTdecode] = ACTIONS(2668), - [anon_sym_LBRACK2] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_CARET] = ACTIONS(2668), - [anon_sym_AMP] = ACTIONS(2668), - [anon_sym_LT_DASH] = ACTIONS(2668), - [anon_sym_LT_LT] = ACTIONS(2668), - [anon_sym_GT_GT] = ACTIONS(2668), - [anon_sym_GT_GT_GT] = ACTIONS(2668), - [anon_sym_AMP_CARET] = ACTIONS(2668), - [anon_sym_AMP_AMP] = ACTIONS(2668), - [anon_sym_PIPE_PIPE] = ACTIONS(2668), - [anon_sym_or] = ACTIONS(2668), - [sym_none] = ACTIONS(2668), - [sym_true] = ACTIONS(2668), - [sym_false] = ACTIONS(2668), - [sym_nil] = ACTIONS(2668), - [anon_sym_QMARK_DOT] = ACTIONS(2668), - [anon_sym_POUND_LBRACK] = ACTIONS(2668), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2668), - [anon_sym_is] = ACTIONS(2668), - [anon_sym_BANGis] = ACTIONS(2668), - [anon_sym_in] = ACTIONS(2668), - [anon_sym_BANGin] = ACTIONS(2668), - [anon_sym_match] = ACTIONS(2668), - [anon_sym_select] = ACTIONS(2668), - [anon_sym_STAR_EQ] = ACTIONS(2668), - [anon_sym_SLASH_EQ] = ACTIONS(2668), - [anon_sym_PERCENT_EQ] = ACTIONS(2668), - [anon_sym_LT_LT_EQ] = ACTIONS(2668), - [anon_sym_GT_GT_EQ] = ACTIONS(2668), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2668), - [anon_sym_AMP_EQ] = ACTIONS(2668), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2668), - [anon_sym_PLUS_EQ] = ACTIONS(2668), - [anon_sym_DASH_EQ] = ACTIONS(2668), - [anon_sym_PIPE_EQ] = ACTIONS(2668), - [anon_sym_CARET_EQ] = ACTIONS(2668), - [anon_sym_COLON_EQ] = ACTIONS(2668), - [anon_sym_lock] = ACTIONS(2668), - [anon_sym_rlock] = ACTIONS(2668), - [anon_sym_unsafe] = ACTIONS(2668), - [anon_sym_sql] = ACTIONS(2668), - [sym_int_literal] = ACTIONS(2668), - [sym_float_literal] = ACTIONS(2668), - [sym_rune_literal] = ACTIONS(2668), - [sym_pseudo_compile_time_identifier] = ACTIONS(2668), - [anon_sym_shared] = ACTIONS(2668), - [anon_sym_map_LBRACK] = ACTIONS(2668), - [anon_sym_chan] = ACTIONS(2668), - [anon_sym_thread] = ACTIONS(2668), - [anon_sym_atomic] = ACTIONS(2668), - [anon_sym_assert] = ACTIONS(2668), - [anon_sym_defer] = ACTIONS(2668), - [anon_sym_goto] = ACTIONS(2668), - [anon_sym_break] = ACTIONS(2668), - [anon_sym_continue] = ACTIONS(2668), - [anon_sym_return] = ACTIONS(2668), - [anon_sym_DOLLARfor] = ACTIONS(2668), - [anon_sym_for] = ACTIONS(2668), - [anon_sym_POUND] = ACTIONS(2668), - [anon_sym_asm] = ACTIONS(2668), - [anon_sym_AT_LBRACK] = ACTIONS(2668), - [sym___double_quote] = ACTIONS(2668), - [sym___single_quote] = ACTIONS(2668), - [sym___c_double_quote] = ACTIONS(2668), - [sym___c_single_quote] = ACTIONS(2668), - [sym___r_double_quote] = ACTIONS(2668), - [sym___r_single_quote] = ACTIONS(2668), + [sym__expression] = STATE(2588), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4532), + [sym_identifier] = ACTIONS(1219), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [410] = { [sym_line_comment] = STATE(410), [sym_block_comment] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(2670), - [sym_identifier] = ACTIONS(2672), - [anon_sym_LF] = ACTIONS(2672), - [anon_sym_CR] = ACTIONS(2672), - [anon_sym_CR_LF] = ACTIONS(2672), + [ts_builtin_sym_end] = ACTIONS(2713), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LF] = ACTIONS(2715), + [anon_sym_CR] = ACTIONS(2715), + [anon_sym_CR_LF] = ACTIONS(2715), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2672), - [anon_sym_as] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_COMMA] = ACTIONS(2672), - [anon_sym_const] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_EQ] = ACTIONS(2672), - [anon_sym___global] = ACTIONS(2672), - [anon_sym_type] = ACTIONS(2672), - [anon_sym_PIPE] = ACTIONS(2672), - [anon_sym_fn] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2672), - [anon_sym_STAR] = ACTIONS(2672), - [anon_sym_SLASH] = ACTIONS(2672), - [anon_sym_PERCENT] = ACTIONS(2672), - [anon_sym_LT] = ACTIONS(2672), - [anon_sym_GT] = ACTIONS(2672), - [anon_sym_EQ_EQ] = ACTIONS(2672), - [anon_sym_BANG_EQ] = ACTIONS(2672), - [anon_sym_LT_EQ] = ACTIONS(2672), - [anon_sym_GT_EQ] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_struct] = ACTIONS(2672), - [anon_sym_union] = ACTIONS(2672), - [anon_sym_pub] = ACTIONS(2672), - [anon_sym_mut] = ACTIONS(2672), - [anon_sym_enum] = ACTIONS(2672), - [anon_sym_interface] = ACTIONS(2672), - [anon_sym_PLUS_PLUS] = ACTIONS(2672), - [anon_sym_DASH_DASH] = ACTIONS(2672), - [anon_sym_QMARK] = ACTIONS(2672), - [anon_sym_BANG] = ACTIONS(2672), - [anon_sym_go] = ACTIONS(2672), - [anon_sym_spawn] = ACTIONS(2672), - [anon_sym_json_DOTdecode] = ACTIONS(2672), - [anon_sym_LBRACK2] = ACTIONS(2672), - [anon_sym_TILDE] = ACTIONS(2672), - [anon_sym_CARET] = ACTIONS(2672), - [anon_sym_AMP] = ACTIONS(2672), - [anon_sym_LT_DASH] = ACTIONS(2672), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_GT_GT_GT] = ACTIONS(2672), - [anon_sym_AMP_CARET] = ACTIONS(2672), - [anon_sym_AMP_AMP] = ACTIONS(2672), - [anon_sym_PIPE_PIPE] = ACTIONS(2672), - [anon_sym_or] = ACTIONS(2672), - [sym_none] = ACTIONS(2672), - [sym_true] = ACTIONS(2672), - [sym_false] = ACTIONS(2672), - [sym_nil] = ACTIONS(2672), - [anon_sym_QMARK_DOT] = ACTIONS(2672), - [anon_sym_POUND_LBRACK] = ACTIONS(2672), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_DOLLARif] = ACTIONS(2672), - [anon_sym_is] = ACTIONS(2672), - [anon_sym_BANGis] = ACTIONS(2672), - [anon_sym_in] = ACTIONS(2672), - [anon_sym_BANGin] = ACTIONS(2672), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2672), - [anon_sym_STAR_EQ] = ACTIONS(2672), - [anon_sym_SLASH_EQ] = ACTIONS(2672), - [anon_sym_PERCENT_EQ] = ACTIONS(2672), - [anon_sym_LT_LT_EQ] = ACTIONS(2672), - [anon_sym_GT_GT_EQ] = ACTIONS(2672), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2672), - [anon_sym_AMP_EQ] = ACTIONS(2672), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2672), - [anon_sym_PLUS_EQ] = ACTIONS(2672), - [anon_sym_DASH_EQ] = ACTIONS(2672), - [anon_sym_PIPE_EQ] = ACTIONS(2672), - [anon_sym_CARET_EQ] = ACTIONS(2672), - [anon_sym_COLON_EQ] = ACTIONS(2672), - [anon_sym_lock] = ACTIONS(2672), - [anon_sym_rlock] = ACTIONS(2672), - [anon_sym_unsafe] = ACTIONS(2672), - [anon_sym_sql] = ACTIONS(2672), - [sym_int_literal] = ACTIONS(2672), - [sym_float_literal] = ACTIONS(2672), - [sym_rune_literal] = ACTIONS(2672), - [sym_pseudo_compile_time_identifier] = ACTIONS(2672), - [anon_sym_shared] = ACTIONS(2672), - [anon_sym_map_LBRACK] = ACTIONS(2672), - [anon_sym_chan] = ACTIONS(2672), - [anon_sym_thread] = ACTIONS(2672), - [anon_sym_atomic] = ACTIONS(2672), - [anon_sym_assert] = ACTIONS(2672), - [anon_sym_defer] = ACTIONS(2672), - [anon_sym_goto] = ACTIONS(2672), - [anon_sym_break] = ACTIONS(2672), - [anon_sym_continue] = ACTIONS(2672), - [anon_sym_return] = ACTIONS(2672), - [anon_sym_DOLLARfor] = ACTIONS(2672), - [anon_sym_for] = ACTIONS(2672), - [anon_sym_POUND] = ACTIONS(2672), - [anon_sym_asm] = ACTIONS(2672), - [anon_sym_AT_LBRACK] = ACTIONS(2672), - [sym___double_quote] = ACTIONS(2672), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2672), - [sym___c_single_quote] = ACTIONS(2672), - [sym___r_double_quote] = ACTIONS(2672), - [sym___r_single_quote] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2715), + [anon_sym_as] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2715), + [anon_sym_const] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_EQ] = ACTIONS(2715), + [anon_sym___global] = ACTIONS(2715), + [anon_sym_type] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_PLUS] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_SLASH] = ACTIONS(2715), + [anon_sym_PERCENT] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_GT] = ACTIONS(2715), + [anon_sym_EQ_EQ] = ACTIONS(2715), + [anon_sym_BANG_EQ] = ACTIONS(2715), + [anon_sym_LT_EQ] = ACTIONS(2715), + [anon_sym_GT_EQ] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_union] = ACTIONS(2715), + [anon_sym_pub] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(2715), + [anon_sym_enum] = ACTIONS(2715), + [anon_sym_interface] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_QMARK] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_go] = ACTIONS(2715), + [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_json_DOTdecode] = ACTIONS(2715), + [anon_sym_LBRACK2] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_CARET] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_LT_DASH] = ACTIONS(2715), + [anon_sym_LT_LT] = ACTIONS(2715), + [anon_sym_GT_GT] = ACTIONS(2715), + [anon_sym_GT_GT_GT] = ACTIONS(2715), + [anon_sym_AMP_CARET] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_PIPE_PIPE] = ACTIONS(2715), + [anon_sym_or] = ACTIONS(2715), + [sym_none] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), + [sym_nil] = ACTIONS(2715), + [anon_sym_QMARK_DOT] = ACTIONS(2715), + [anon_sym_POUND_LBRACK] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_DOLLARif] = ACTIONS(2715), + [anon_sym_is] = ACTIONS(2715), + [anon_sym_BANGis] = ACTIONS(2715), + [anon_sym_in] = ACTIONS(2715), + [anon_sym_BANGin] = ACTIONS(2715), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_select] = ACTIONS(2715), + [anon_sym_STAR_EQ] = ACTIONS(2715), + [anon_sym_SLASH_EQ] = ACTIONS(2715), + [anon_sym_PERCENT_EQ] = ACTIONS(2715), + [anon_sym_LT_LT_EQ] = ACTIONS(2715), + [anon_sym_GT_GT_EQ] = ACTIONS(2715), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2715), + [anon_sym_AMP_EQ] = ACTIONS(2715), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2715), + [anon_sym_PLUS_EQ] = ACTIONS(2715), + [anon_sym_DASH_EQ] = ACTIONS(2715), + [anon_sym_PIPE_EQ] = ACTIONS(2715), + [anon_sym_CARET_EQ] = ACTIONS(2715), + [anon_sym_COLON_EQ] = ACTIONS(2715), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_sql] = ACTIONS(2715), + [sym_int_literal] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2715), + [sym_rune_literal] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [anon_sym_c_SQUOTE] = ACTIONS(2715), + [anon_sym_c_DQUOTE] = ACTIONS(2715), + [anon_sym_r_SQUOTE] = ACTIONS(2715), + [anon_sym_r_DQUOTE] = ACTIONS(2715), + [sym_pseudo_compile_time_identifier] = ACTIONS(2715), + [anon_sym_shared] = ACTIONS(2715), + [anon_sym_map_LBRACK] = ACTIONS(2715), + [anon_sym_chan] = ACTIONS(2715), + [anon_sym_thread] = ACTIONS(2715), + [anon_sym_atomic] = ACTIONS(2715), + [anon_sym_assert] = ACTIONS(2715), + [anon_sym_defer] = ACTIONS(2715), + [anon_sym_goto] = ACTIONS(2715), + [anon_sym_break] = ACTIONS(2715), + [anon_sym_continue] = ACTIONS(2715), + [anon_sym_return] = ACTIONS(2715), + [anon_sym_DOLLARfor] = ACTIONS(2715), + [anon_sym_for] = ACTIONS(2715), + [anon_sym_POUND] = ACTIONS(2715), + [anon_sym_asm] = ACTIONS(2715), + [anon_sym_AT_LBRACK] = ACTIONS(2715), }, [411] = { [sym_line_comment] = STATE(411), [sym_block_comment] = STATE(411), - [sym__expression] = STATE(2599), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4325), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(2053), + [sym_identifier] = ACTIONS(2055), + [anon_sym_LF] = ACTIONS(2055), + [anon_sym_CR] = ACTIONS(2055), + [anon_sym_CR_LF] = ACTIONS(2055), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_COMMA] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_EQ] = ACTIONS(2055), + [anon_sym___global] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(2055), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_PERCENT] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_EQ_EQ] = ACTIONS(2055), + [anon_sym_BANG_EQ] = ACTIONS(2055), + [anon_sym_LT_EQ] = ACTIONS(2055), + [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_struct] = ACTIONS(2055), + [anon_sym_union] = ACTIONS(2055), + [anon_sym_pub] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), + [anon_sym_enum] = ACTIONS(2055), + [anon_sym_interface] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_QMARK] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2055), + [anon_sym_spawn] = ACTIONS(2055), + [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_LBRACK2] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_LT] = ACTIONS(2055), + [anon_sym_GT_GT] = ACTIONS(2055), + [anon_sym_GT_GT_GT] = ACTIONS(2055), + [anon_sym_AMP_CARET] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2055), + [anon_sym_PIPE_PIPE] = ACTIONS(2055), + [anon_sym_or] = ACTIONS(2055), + [sym_none] = ACTIONS(2055), + [sym_true] = ACTIONS(2055), + [sym_false] = ACTIONS(2055), + [sym_nil] = ACTIONS(2055), + [anon_sym_QMARK_DOT] = ACTIONS(2055), + [anon_sym_POUND_LBRACK] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_DOLLARif] = ACTIONS(2055), + [anon_sym_is] = ACTIONS(2055), + [anon_sym_BANGis] = ACTIONS(2055), + [anon_sym_in] = ACTIONS(2055), + [anon_sym_BANGin] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_select] = ACTIONS(2055), + [anon_sym_STAR_EQ] = ACTIONS(2055), + [anon_sym_SLASH_EQ] = ACTIONS(2055), + [anon_sym_PERCENT_EQ] = ACTIONS(2055), + [anon_sym_LT_LT_EQ] = ACTIONS(2055), + [anon_sym_GT_GT_EQ] = ACTIONS(2055), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), + [anon_sym_AMP_EQ] = ACTIONS(2055), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), + [anon_sym_PLUS_EQ] = ACTIONS(2055), + [anon_sym_DASH_EQ] = ACTIONS(2055), + [anon_sym_PIPE_EQ] = ACTIONS(2055), + [anon_sym_CARET_EQ] = ACTIONS(2055), + [anon_sym_COLON_EQ] = ACTIONS(2055), + [anon_sym_lock] = ACTIONS(2055), + [anon_sym_rlock] = ACTIONS(2055), + [anon_sym_unsafe] = ACTIONS(2055), + [anon_sym_sql] = ACTIONS(2055), + [sym_int_literal] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), + [sym_rune_literal] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2055), + [anon_sym_c_SQUOTE] = ACTIONS(2055), + [anon_sym_c_DQUOTE] = ACTIONS(2055), + [anon_sym_r_SQUOTE] = ACTIONS(2055), + [anon_sym_r_DQUOTE] = ACTIONS(2055), + [sym_pseudo_compile_time_identifier] = ACTIONS(2055), + [anon_sym_shared] = ACTIONS(2055), + [anon_sym_map_LBRACK] = ACTIONS(2055), + [anon_sym_chan] = ACTIONS(2055), + [anon_sym_thread] = ACTIONS(2055), + [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_assert] = ACTIONS(2055), + [anon_sym_defer] = ACTIONS(2055), + [anon_sym_goto] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_DOLLARfor] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(2055), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym_AT_LBRACK] = ACTIONS(2055), }, [412] = { [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), - [ts_builtin_sym_end] = ACTIONS(2674), - [sym_identifier] = ACTIONS(2676), - [anon_sym_LF] = ACTIONS(2676), - [anon_sym_CR] = ACTIONS(2676), - [anon_sym_CR_LF] = ACTIONS(2676), + [ts_builtin_sym_end] = ACTIONS(2717), + [sym_identifier] = ACTIONS(2719), + [anon_sym_LF] = ACTIONS(2719), + [anon_sym_CR] = ACTIONS(2719), + [anon_sym_CR_LF] = ACTIONS(2719), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_COMMA] = ACTIONS(2676), - [anon_sym_const] = ACTIONS(2676), - [anon_sym_LPAREN] = ACTIONS(2676), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym___global] = ACTIONS(2676), - [anon_sym_type] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_fn] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(2676), - [anon_sym_SLASH] = ACTIONS(2676), - [anon_sym_PERCENT] = ACTIONS(2676), - [anon_sym_LT] = ACTIONS(2676), - [anon_sym_GT] = ACTIONS(2676), - [anon_sym_EQ_EQ] = ACTIONS(2676), - [anon_sym_BANG_EQ] = ACTIONS(2676), - [anon_sym_LT_EQ] = ACTIONS(2676), - [anon_sym_GT_EQ] = ACTIONS(2676), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_struct] = ACTIONS(2676), - [anon_sym_union] = ACTIONS(2676), - [anon_sym_pub] = ACTIONS(2676), - [anon_sym_mut] = ACTIONS(2676), - [anon_sym_enum] = ACTIONS(2676), - [anon_sym_interface] = ACTIONS(2676), - [anon_sym_PLUS_PLUS] = ACTIONS(2676), - [anon_sym_DASH_DASH] = ACTIONS(2676), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(2676), - [anon_sym_go] = ACTIONS(2676), - [anon_sym_spawn] = ACTIONS(2676), - [anon_sym_json_DOTdecode] = ACTIONS(2676), - [anon_sym_LBRACK2] = ACTIONS(2676), - [anon_sym_TILDE] = ACTIONS(2676), - [anon_sym_CARET] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2676), - [anon_sym_LT_DASH] = ACTIONS(2676), - [anon_sym_LT_LT] = ACTIONS(2676), - [anon_sym_GT_GT] = ACTIONS(2676), - [anon_sym_GT_GT_GT] = ACTIONS(2676), - [anon_sym_AMP_CARET] = ACTIONS(2676), - [anon_sym_AMP_AMP] = ACTIONS(2676), - [anon_sym_PIPE_PIPE] = ACTIONS(2676), - [anon_sym_or] = ACTIONS(2676), - [sym_none] = ACTIONS(2676), - [sym_true] = ACTIONS(2676), - [sym_false] = ACTIONS(2676), - [sym_nil] = ACTIONS(2676), - [anon_sym_QMARK_DOT] = ACTIONS(2676), - [anon_sym_POUND_LBRACK] = ACTIONS(2676), - [anon_sym_if] = ACTIONS(2676), - [anon_sym_DOLLARif] = ACTIONS(2676), - [anon_sym_is] = ACTIONS(2676), - [anon_sym_BANGis] = ACTIONS(2676), - [anon_sym_in] = ACTIONS(2676), - [anon_sym_BANGin] = ACTIONS(2676), - [anon_sym_match] = ACTIONS(2676), - [anon_sym_select] = ACTIONS(2676), - [anon_sym_STAR_EQ] = ACTIONS(2676), - [anon_sym_SLASH_EQ] = ACTIONS(2676), - [anon_sym_PERCENT_EQ] = ACTIONS(2676), - [anon_sym_LT_LT_EQ] = ACTIONS(2676), - [anon_sym_GT_GT_EQ] = ACTIONS(2676), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2676), - [anon_sym_AMP_EQ] = ACTIONS(2676), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2676), - [anon_sym_PLUS_EQ] = ACTIONS(2676), - [anon_sym_DASH_EQ] = ACTIONS(2676), - [anon_sym_PIPE_EQ] = ACTIONS(2676), - [anon_sym_CARET_EQ] = ACTIONS(2676), - [anon_sym_COLON_EQ] = ACTIONS(2676), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2676), - [anon_sym_sql] = ACTIONS(2676), - [sym_int_literal] = ACTIONS(2676), - [sym_float_literal] = ACTIONS(2676), - [sym_rune_literal] = ACTIONS(2676), - [sym_pseudo_compile_time_identifier] = ACTIONS(2676), - [anon_sym_shared] = ACTIONS(2676), - [anon_sym_map_LBRACK] = ACTIONS(2676), - [anon_sym_chan] = ACTIONS(2676), - [anon_sym_thread] = ACTIONS(2676), - [anon_sym_atomic] = ACTIONS(2676), - [anon_sym_assert] = ACTIONS(2676), - [anon_sym_defer] = ACTIONS(2676), - [anon_sym_goto] = ACTIONS(2676), - [anon_sym_break] = ACTIONS(2676), - [anon_sym_continue] = ACTIONS(2676), - [anon_sym_return] = ACTIONS(2676), - [anon_sym_DOLLARfor] = ACTIONS(2676), - [anon_sym_for] = ACTIONS(2676), - [anon_sym_POUND] = ACTIONS(2676), - [anon_sym_asm] = ACTIONS(2676), - [anon_sym_AT_LBRACK] = ACTIONS(2676), - [sym___double_quote] = ACTIONS(2676), - [sym___single_quote] = ACTIONS(2676), - [sym___c_double_quote] = ACTIONS(2676), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2676), - [sym___r_single_quote] = ACTIONS(2676), + [anon_sym_DOT] = ACTIONS(2719), + [anon_sym_as] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_COMMA] = ACTIONS(2719), + [anon_sym_const] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2719), + [anon_sym___global] = ACTIONS(2719), + [anon_sym_type] = ACTIONS(2719), + [anon_sym_PIPE] = ACTIONS(2719), + [anon_sym_fn] = ACTIONS(2719), + [anon_sym_PLUS] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2719), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_SLASH] = ACTIONS(2719), + [anon_sym_PERCENT] = ACTIONS(2719), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_GT] = ACTIONS(2719), + [anon_sym_EQ_EQ] = ACTIONS(2719), + [anon_sym_BANG_EQ] = ACTIONS(2719), + [anon_sym_LT_EQ] = ACTIONS(2719), + [anon_sym_GT_EQ] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2719), + [anon_sym_union] = ACTIONS(2719), + [anon_sym_pub] = ACTIONS(2719), + [anon_sym_mut] = ACTIONS(2719), + [anon_sym_enum] = ACTIONS(2719), + [anon_sym_interface] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_QMARK] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_go] = ACTIONS(2719), + [anon_sym_spawn] = ACTIONS(2719), + [anon_sym_json_DOTdecode] = ACTIONS(2719), + [anon_sym_LBRACK2] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_CARET] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2719), + [anon_sym_LT_DASH] = ACTIONS(2719), + [anon_sym_LT_LT] = ACTIONS(2719), + [anon_sym_GT_GT] = ACTIONS(2719), + [anon_sym_GT_GT_GT] = ACTIONS(2719), + [anon_sym_AMP_CARET] = ACTIONS(2719), + [anon_sym_AMP_AMP] = ACTIONS(2719), + [anon_sym_PIPE_PIPE] = ACTIONS(2719), + [anon_sym_or] = ACTIONS(2719), + [sym_none] = ACTIONS(2719), + [sym_true] = ACTIONS(2719), + [sym_false] = ACTIONS(2719), + [sym_nil] = ACTIONS(2719), + [anon_sym_QMARK_DOT] = ACTIONS(2719), + [anon_sym_POUND_LBRACK] = ACTIONS(2719), + [anon_sym_if] = ACTIONS(2719), + [anon_sym_DOLLARif] = ACTIONS(2719), + [anon_sym_is] = ACTIONS(2719), + [anon_sym_BANGis] = ACTIONS(2719), + [anon_sym_in] = ACTIONS(2719), + [anon_sym_BANGin] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_select] = ACTIONS(2719), + [anon_sym_STAR_EQ] = ACTIONS(2719), + [anon_sym_SLASH_EQ] = ACTIONS(2719), + [anon_sym_PERCENT_EQ] = ACTIONS(2719), + [anon_sym_LT_LT_EQ] = ACTIONS(2719), + [anon_sym_GT_GT_EQ] = ACTIONS(2719), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2719), + [anon_sym_AMP_EQ] = ACTIONS(2719), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2719), + [anon_sym_PLUS_EQ] = ACTIONS(2719), + [anon_sym_DASH_EQ] = ACTIONS(2719), + [anon_sym_PIPE_EQ] = ACTIONS(2719), + [anon_sym_CARET_EQ] = ACTIONS(2719), + [anon_sym_COLON_EQ] = ACTIONS(2719), + [anon_sym_lock] = ACTIONS(2719), + [anon_sym_rlock] = ACTIONS(2719), + [anon_sym_unsafe] = ACTIONS(2719), + [anon_sym_sql] = ACTIONS(2719), + [sym_int_literal] = ACTIONS(2719), + [sym_float_literal] = ACTIONS(2719), + [sym_rune_literal] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [anon_sym_c_SQUOTE] = ACTIONS(2719), + [anon_sym_c_DQUOTE] = ACTIONS(2719), + [anon_sym_r_SQUOTE] = ACTIONS(2719), + [anon_sym_r_DQUOTE] = ACTIONS(2719), + [sym_pseudo_compile_time_identifier] = ACTIONS(2719), + [anon_sym_shared] = ACTIONS(2719), + [anon_sym_map_LBRACK] = ACTIONS(2719), + [anon_sym_chan] = ACTIONS(2719), + [anon_sym_thread] = ACTIONS(2719), + [anon_sym_atomic] = ACTIONS(2719), + [anon_sym_assert] = ACTIONS(2719), + [anon_sym_defer] = ACTIONS(2719), + [anon_sym_goto] = ACTIONS(2719), + [anon_sym_break] = ACTIONS(2719), + [anon_sym_continue] = ACTIONS(2719), + [anon_sym_return] = ACTIONS(2719), + [anon_sym_DOLLARfor] = ACTIONS(2719), + [anon_sym_for] = ACTIONS(2719), + [anon_sym_POUND] = ACTIONS(2719), + [anon_sym_asm] = ACTIONS(2719), + [anon_sym_AT_LBRACK] = ACTIONS(2719), }, [413] = { [sym_line_comment] = STATE(413), [sym_block_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(2678), - [sym_identifier] = ACTIONS(2680), - [anon_sym_LF] = ACTIONS(2680), - [anon_sym_CR] = ACTIONS(2680), - [anon_sym_CR_LF] = ACTIONS(2680), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2680), - [anon_sym_as] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_COMMA] = ACTIONS(2680), - [anon_sym_const] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2680), - [anon_sym_EQ] = ACTIONS(2680), - [anon_sym___global] = ACTIONS(2680), - [anon_sym_type] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_fn] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_STAR] = ACTIONS(2680), - [anon_sym_SLASH] = ACTIONS(2680), - [anon_sym_PERCENT] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2680), - [anon_sym_GT] = ACTIONS(2680), - [anon_sym_EQ_EQ] = ACTIONS(2680), - [anon_sym_BANG_EQ] = ACTIONS(2680), - [anon_sym_LT_EQ] = ACTIONS(2680), - [anon_sym_GT_EQ] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_struct] = ACTIONS(2680), - [anon_sym_union] = ACTIONS(2680), - [anon_sym_pub] = ACTIONS(2680), - [anon_sym_mut] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2680), - [anon_sym_DASH_DASH] = ACTIONS(2680), - [anon_sym_QMARK] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2680), - [anon_sym_go] = ACTIONS(2680), - [anon_sym_spawn] = ACTIONS(2680), - [anon_sym_json_DOTdecode] = ACTIONS(2680), - [anon_sym_LBRACK2] = ACTIONS(2680), - [anon_sym_TILDE] = ACTIONS(2680), - [anon_sym_CARET] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2680), - [anon_sym_LT_DASH] = ACTIONS(2680), - [anon_sym_LT_LT] = ACTIONS(2680), - [anon_sym_GT_GT] = ACTIONS(2680), - [anon_sym_GT_GT_GT] = ACTIONS(2680), - [anon_sym_AMP_CARET] = ACTIONS(2680), - [anon_sym_AMP_AMP] = ACTIONS(2680), - [anon_sym_PIPE_PIPE] = ACTIONS(2680), - [anon_sym_or] = ACTIONS(2680), - [sym_none] = ACTIONS(2680), - [sym_true] = ACTIONS(2680), - [sym_false] = ACTIONS(2680), - [sym_nil] = ACTIONS(2680), - [anon_sym_QMARK_DOT] = ACTIONS(2680), - [anon_sym_POUND_LBRACK] = ACTIONS(2680), - [anon_sym_if] = ACTIONS(2680), - [anon_sym_DOLLARif] = ACTIONS(2680), - [anon_sym_is] = ACTIONS(2680), - [anon_sym_BANGis] = ACTIONS(2680), - [anon_sym_in] = ACTIONS(2680), - [anon_sym_BANGin] = ACTIONS(2680), - [anon_sym_match] = ACTIONS(2680), - [anon_sym_select] = ACTIONS(2680), - [anon_sym_STAR_EQ] = ACTIONS(2680), - [anon_sym_SLASH_EQ] = ACTIONS(2680), - [anon_sym_PERCENT_EQ] = ACTIONS(2680), - [anon_sym_LT_LT_EQ] = ACTIONS(2680), - [anon_sym_GT_GT_EQ] = ACTIONS(2680), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2680), - [anon_sym_AMP_EQ] = ACTIONS(2680), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2680), - [anon_sym_PLUS_EQ] = ACTIONS(2680), - [anon_sym_DASH_EQ] = ACTIONS(2680), - [anon_sym_PIPE_EQ] = ACTIONS(2680), - [anon_sym_CARET_EQ] = ACTIONS(2680), - [anon_sym_COLON_EQ] = ACTIONS(2680), - [anon_sym_lock] = ACTIONS(2680), - [anon_sym_rlock] = ACTIONS(2680), - [anon_sym_unsafe] = ACTIONS(2680), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2680), - [sym_float_literal] = ACTIONS(2680), - [sym_rune_literal] = ACTIONS(2680), - [sym_pseudo_compile_time_identifier] = ACTIONS(2680), - [anon_sym_shared] = ACTIONS(2680), - [anon_sym_map_LBRACK] = ACTIONS(2680), - [anon_sym_chan] = ACTIONS(2680), - [anon_sym_thread] = ACTIONS(2680), - [anon_sym_atomic] = ACTIONS(2680), - [anon_sym_assert] = ACTIONS(2680), - [anon_sym_defer] = ACTIONS(2680), - [anon_sym_goto] = ACTIONS(2680), - [anon_sym_break] = ACTIONS(2680), - [anon_sym_continue] = ACTIONS(2680), - [anon_sym_return] = ACTIONS(2680), - [anon_sym_DOLLARfor] = ACTIONS(2680), - [anon_sym_for] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(2680), - [anon_sym_asm] = ACTIONS(2680), - [anon_sym_AT_LBRACK] = ACTIONS(2680), - [sym___double_quote] = ACTIONS(2680), - [sym___single_quote] = ACTIONS(2680), - [sym___c_double_quote] = ACTIONS(2680), - [sym___c_single_quote] = ACTIONS(2680), - [sym___r_double_quote] = ACTIONS(2680), - [sym___r_single_quote] = ACTIONS(2680), + [sym__expression] = STATE(1370), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_string_interpolation_repeat1] = STATE(479), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2493), + [anon_sym_spawn] = ACTIONS(2495), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_LT_DASH] = ACTIONS(2499), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2503), + [anon_sym_rlock] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [414] = { [sym_line_comment] = STATE(414), [sym_block_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(2682), - [sym_identifier] = ACTIONS(2684), - [anon_sym_LF] = ACTIONS(2684), - [anon_sym_CR] = ACTIONS(2684), - [anon_sym_CR_LF] = ACTIONS(2684), + [ts_builtin_sym_end] = ACTIONS(2723), + [sym_identifier] = ACTIONS(2725), + [anon_sym_LF] = ACTIONS(2725), + [anon_sym_CR] = ACTIONS(2725), + [anon_sym_CR_LF] = ACTIONS(2725), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2684), - [anon_sym_as] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_COMMA] = ACTIONS(2684), - [anon_sym_const] = ACTIONS(2684), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_EQ] = ACTIONS(2684), - [anon_sym___global] = ACTIONS(2684), - [anon_sym_type] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_fn] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(2684), - [anon_sym_SLASH] = ACTIONS(2684), - [anon_sym_PERCENT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2684), - [anon_sym_GT] = ACTIONS(2684), - [anon_sym_EQ_EQ] = ACTIONS(2684), - [anon_sym_BANG_EQ] = ACTIONS(2684), - [anon_sym_LT_EQ] = ACTIONS(2684), - [anon_sym_GT_EQ] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(2684), - [anon_sym_union] = ACTIONS(2684), - [anon_sym_pub] = ACTIONS(2684), - [anon_sym_mut] = ACTIONS(2684), - [anon_sym_enum] = ACTIONS(2684), - [anon_sym_interface] = ACTIONS(2684), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_QMARK] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2684), - [anon_sym_spawn] = ACTIONS(2684), - [anon_sym_json_DOTdecode] = ACTIONS(2684), - [anon_sym_LBRACK2] = ACTIONS(2684), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_CARET] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2684), - [anon_sym_LT_DASH] = ACTIONS(2684), - [anon_sym_LT_LT] = ACTIONS(2684), - [anon_sym_GT_GT] = ACTIONS(2684), - [anon_sym_GT_GT_GT] = ACTIONS(2684), - [anon_sym_AMP_CARET] = ACTIONS(2684), - [anon_sym_AMP_AMP] = ACTIONS(2684), - [anon_sym_PIPE_PIPE] = ACTIONS(2684), - [anon_sym_or] = ACTIONS(2684), - [sym_none] = ACTIONS(2684), - [sym_true] = ACTIONS(2684), - [sym_false] = ACTIONS(2684), - [sym_nil] = ACTIONS(2684), - [anon_sym_QMARK_DOT] = ACTIONS(2684), - [anon_sym_POUND_LBRACK] = ACTIONS(2684), - [anon_sym_if] = ACTIONS(2684), - [anon_sym_DOLLARif] = ACTIONS(2684), - [anon_sym_is] = ACTIONS(2684), - [anon_sym_BANGis] = ACTIONS(2684), - [anon_sym_in] = ACTIONS(2684), - [anon_sym_BANGin] = ACTIONS(2684), - [anon_sym_match] = ACTIONS(2684), - [anon_sym_select] = ACTIONS(2684), - [anon_sym_STAR_EQ] = ACTIONS(2684), - [anon_sym_SLASH_EQ] = ACTIONS(2684), - [anon_sym_PERCENT_EQ] = ACTIONS(2684), - [anon_sym_LT_LT_EQ] = ACTIONS(2684), - [anon_sym_GT_GT_EQ] = ACTIONS(2684), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2684), - [anon_sym_AMP_EQ] = ACTIONS(2684), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2684), - [anon_sym_PLUS_EQ] = ACTIONS(2684), - [anon_sym_DASH_EQ] = ACTIONS(2684), - [anon_sym_PIPE_EQ] = ACTIONS(2684), - [anon_sym_CARET_EQ] = ACTIONS(2684), - [anon_sym_COLON_EQ] = ACTIONS(2684), - [anon_sym_lock] = ACTIONS(2684), - [anon_sym_rlock] = ACTIONS(2684), - [anon_sym_unsafe] = ACTIONS(2684), - [anon_sym_sql] = ACTIONS(2684), - [sym_int_literal] = ACTIONS(2684), - [sym_float_literal] = ACTIONS(2684), - [sym_rune_literal] = ACTIONS(2684), - [sym_pseudo_compile_time_identifier] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(2684), - [anon_sym_map_LBRACK] = ACTIONS(2684), - [anon_sym_chan] = ACTIONS(2684), - [anon_sym_thread] = ACTIONS(2684), - [anon_sym_atomic] = ACTIONS(2684), - [anon_sym_assert] = ACTIONS(2684), - [anon_sym_defer] = ACTIONS(2684), - [anon_sym_goto] = ACTIONS(2684), - [anon_sym_break] = ACTIONS(2684), - [anon_sym_continue] = ACTIONS(2684), - [anon_sym_return] = ACTIONS(2684), - [anon_sym_DOLLARfor] = ACTIONS(2684), - [anon_sym_for] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(2684), - [anon_sym_asm] = ACTIONS(2684), - [anon_sym_AT_LBRACK] = ACTIONS(2684), - [sym___double_quote] = ACTIONS(2684), - [sym___single_quote] = ACTIONS(2684), - [sym___c_double_quote] = ACTIONS(2684), - [sym___c_single_quote] = ACTIONS(2684), - [sym___r_double_quote] = ACTIONS(2684), - [sym___r_single_quote] = ACTIONS(2684), + [anon_sym_DOT] = ACTIONS(2725), + [anon_sym_as] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_COMMA] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_LPAREN] = ACTIONS(2725), + [anon_sym_EQ] = ACTIONS(2725), + [anon_sym___global] = ACTIONS(2725), + [anon_sym_type] = ACTIONS(2725), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_fn] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_SLASH] = ACTIONS(2725), + [anon_sym_PERCENT] = ACTIONS(2725), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_GT] = ACTIONS(2725), + [anon_sym_EQ_EQ] = ACTIONS(2725), + [anon_sym_BANG_EQ] = ACTIONS(2725), + [anon_sym_LT_EQ] = ACTIONS(2725), + [anon_sym_GT_EQ] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2723), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_pub] = ACTIONS(2725), + [anon_sym_mut] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_interface] = ACTIONS(2725), + [anon_sym_PLUS_PLUS] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2725), + [anon_sym_QMARK] = ACTIONS(2725), + [anon_sym_BANG] = ACTIONS(2725), + [anon_sym_go] = ACTIONS(2725), + [anon_sym_spawn] = ACTIONS(2725), + [anon_sym_json_DOTdecode] = ACTIONS(2725), + [anon_sym_LBRACK2] = ACTIONS(2725), + [anon_sym_TILDE] = ACTIONS(2725), + [anon_sym_CARET] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_LT_DASH] = ACTIONS(2725), + [anon_sym_LT_LT] = ACTIONS(2725), + [anon_sym_GT_GT] = ACTIONS(2725), + [anon_sym_GT_GT_GT] = ACTIONS(2725), + [anon_sym_AMP_CARET] = ACTIONS(2725), + [anon_sym_AMP_AMP] = ACTIONS(2725), + [anon_sym_PIPE_PIPE] = ACTIONS(2725), + [anon_sym_or] = ACTIONS(2725), + [sym_none] = ACTIONS(2725), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [sym_nil] = ACTIONS(2725), + [anon_sym_QMARK_DOT] = ACTIONS(2725), + [anon_sym_POUND_LBRACK] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_DOLLARif] = ACTIONS(2725), + [anon_sym_is] = ACTIONS(2725), + [anon_sym_BANGis] = ACTIONS(2725), + [anon_sym_in] = ACTIONS(2725), + [anon_sym_BANGin] = ACTIONS(2725), + [anon_sym_match] = ACTIONS(2725), + [anon_sym_select] = ACTIONS(2725), + [anon_sym_STAR_EQ] = ACTIONS(2725), + [anon_sym_SLASH_EQ] = ACTIONS(2725), + [anon_sym_PERCENT_EQ] = ACTIONS(2725), + [anon_sym_LT_LT_EQ] = ACTIONS(2725), + [anon_sym_GT_GT_EQ] = ACTIONS(2725), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2725), + [anon_sym_AMP_EQ] = ACTIONS(2725), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2725), + [anon_sym_PLUS_EQ] = ACTIONS(2725), + [anon_sym_DASH_EQ] = ACTIONS(2725), + [anon_sym_PIPE_EQ] = ACTIONS(2725), + [anon_sym_CARET_EQ] = ACTIONS(2725), + [anon_sym_COLON_EQ] = ACTIONS(2725), + [anon_sym_lock] = ACTIONS(2725), + [anon_sym_rlock] = ACTIONS(2725), + [anon_sym_unsafe] = ACTIONS(2725), + [anon_sym_sql] = ACTIONS(2725), + [sym_int_literal] = ACTIONS(2725), + [sym_float_literal] = ACTIONS(2725), + [sym_rune_literal] = ACTIONS(2725), + [anon_sym_SQUOTE] = ACTIONS(2725), + [anon_sym_DQUOTE] = ACTIONS(2725), + [anon_sym_c_SQUOTE] = ACTIONS(2725), + [anon_sym_c_DQUOTE] = ACTIONS(2725), + [anon_sym_r_SQUOTE] = ACTIONS(2725), + [anon_sym_r_DQUOTE] = ACTIONS(2725), + [sym_pseudo_compile_time_identifier] = ACTIONS(2725), + [anon_sym_shared] = ACTIONS(2725), + [anon_sym_map_LBRACK] = ACTIONS(2725), + [anon_sym_chan] = ACTIONS(2725), + [anon_sym_thread] = ACTIONS(2725), + [anon_sym_atomic] = ACTIONS(2725), + [anon_sym_assert] = ACTIONS(2725), + [anon_sym_defer] = ACTIONS(2725), + [anon_sym_goto] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_DOLLARfor] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_POUND] = ACTIONS(2725), + [anon_sym_asm] = ACTIONS(2725), + [anon_sym_AT_LBRACK] = ACTIONS(2725), }, [415] = { [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(2686), - [sym_identifier] = ACTIONS(2688), - [anon_sym_LF] = ACTIONS(2688), - [anon_sym_CR] = ACTIONS(2688), - [anon_sym_CR_LF] = ACTIONS(2688), + [ts_builtin_sym_end] = ACTIONS(2727), + [sym_identifier] = ACTIONS(2729), + [anon_sym_LF] = ACTIONS(2729), + [anon_sym_CR] = ACTIONS(2729), + [anon_sym_CR_LF] = ACTIONS(2729), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2688), - [anon_sym_as] = ACTIONS(2688), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_COMMA] = ACTIONS(2688), - [anon_sym_const] = ACTIONS(2688), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_EQ] = ACTIONS(2688), - [anon_sym___global] = ACTIONS(2688), - [anon_sym_type] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_fn] = ACTIONS(2688), - [anon_sym_PLUS] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2688), - [anon_sym_STAR] = ACTIONS(2688), - [anon_sym_SLASH] = ACTIONS(2688), - [anon_sym_PERCENT] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2688), - [anon_sym_GT] = ACTIONS(2688), - [anon_sym_EQ_EQ] = ACTIONS(2688), - [anon_sym_BANG_EQ] = ACTIONS(2688), - [anon_sym_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_EQ] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_struct] = ACTIONS(2688), - [anon_sym_union] = ACTIONS(2688), - [anon_sym_pub] = ACTIONS(2688), - [anon_sym_mut] = ACTIONS(2688), - [anon_sym_enum] = ACTIONS(2688), - [anon_sym_interface] = ACTIONS(2688), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_QMARK] = ACTIONS(2688), - [anon_sym_BANG] = ACTIONS(2688), - [anon_sym_go] = ACTIONS(2688), - [anon_sym_spawn] = ACTIONS(2688), - [anon_sym_json_DOTdecode] = ACTIONS(2688), - [anon_sym_LBRACK2] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2688), - [anon_sym_CARET] = ACTIONS(2688), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_LT_DASH] = ACTIONS(2688), - [anon_sym_LT_LT] = ACTIONS(2688), - [anon_sym_GT_GT] = ACTIONS(2688), - [anon_sym_GT_GT_GT] = ACTIONS(2688), - [anon_sym_AMP_CARET] = ACTIONS(2688), - [anon_sym_AMP_AMP] = ACTIONS(2688), - [anon_sym_PIPE_PIPE] = ACTIONS(2688), - [anon_sym_or] = ACTIONS(2688), - [sym_none] = ACTIONS(2688), - [sym_true] = ACTIONS(2688), - [sym_false] = ACTIONS(2688), - [sym_nil] = ACTIONS(2688), - [anon_sym_QMARK_DOT] = ACTIONS(2688), - [anon_sym_POUND_LBRACK] = ACTIONS(2688), - [anon_sym_if] = ACTIONS(2688), - [anon_sym_DOLLARif] = ACTIONS(2688), - [anon_sym_is] = ACTIONS(2688), - [anon_sym_BANGis] = ACTIONS(2688), - [anon_sym_in] = ACTIONS(2688), - [anon_sym_BANGin] = ACTIONS(2688), - [anon_sym_match] = ACTIONS(2688), - [anon_sym_select] = ACTIONS(2688), - [anon_sym_STAR_EQ] = ACTIONS(2688), - [anon_sym_SLASH_EQ] = ACTIONS(2688), - [anon_sym_PERCENT_EQ] = ACTIONS(2688), - [anon_sym_LT_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_GT_EQ] = ACTIONS(2688), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2688), - [anon_sym_AMP_EQ] = ACTIONS(2688), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2688), - [anon_sym_PLUS_EQ] = ACTIONS(2688), - [anon_sym_DASH_EQ] = ACTIONS(2688), - [anon_sym_PIPE_EQ] = ACTIONS(2688), - [anon_sym_CARET_EQ] = ACTIONS(2688), - [anon_sym_COLON_EQ] = ACTIONS(2688), - [anon_sym_lock] = ACTIONS(2688), - [anon_sym_rlock] = ACTIONS(2688), - [anon_sym_unsafe] = ACTIONS(2688), - [anon_sym_sql] = ACTIONS(2688), - [sym_int_literal] = ACTIONS(2688), - [sym_float_literal] = ACTIONS(2688), - [sym_rune_literal] = ACTIONS(2688), - [sym_pseudo_compile_time_identifier] = ACTIONS(2688), - [anon_sym_shared] = ACTIONS(2688), - [anon_sym_map_LBRACK] = ACTIONS(2688), - [anon_sym_chan] = ACTIONS(2688), - [anon_sym_thread] = ACTIONS(2688), - [anon_sym_atomic] = ACTIONS(2688), - [anon_sym_assert] = ACTIONS(2688), - [anon_sym_defer] = ACTIONS(2688), - [anon_sym_goto] = ACTIONS(2688), - [anon_sym_break] = ACTIONS(2688), - [anon_sym_continue] = ACTIONS(2688), - [anon_sym_return] = ACTIONS(2688), - [anon_sym_DOLLARfor] = ACTIONS(2688), - [anon_sym_for] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(2688), - [anon_sym_asm] = ACTIONS(2688), - [anon_sym_AT_LBRACK] = ACTIONS(2688), - [sym___double_quote] = ACTIONS(2688), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2688), - [sym___c_single_quote] = ACTIONS(2688), - [sym___r_double_quote] = ACTIONS(2688), - [sym___r_single_quote] = ACTIONS(2688), + [anon_sym_DOT] = ACTIONS(2729), + [anon_sym_as] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2729), + [anon_sym_COMMA] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_LPAREN] = ACTIONS(2729), + [anon_sym_EQ] = ACTIONS(2729), + [anon_sym___global] = ACTIONS(2729), + [anon_sym_type] = ACTIONS(2729), + [anon_sym_PIPE] = ACTIONS(2729), + [anon_sym_fn] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_SLASH] = ACTIONS(2729), + [anon_sym_PERCENT] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(2729), + [anon_sym_GT] = ACTIONS(2729), + [anon_sym_EQ_EQ] = ACTIONS(2729), + [anon_sym_BANG_EQ] = ACTIONS(2729), + [anon_sym_LT_EQ] = ACTIONS(2729), + [anon_sym_GT_EQ] = ACTIONS(2729), + [anon_sym_LBRACK] = ACTIONS(2727), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_pub] = ACTIONS(2729), + [anon_sym_mut] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_interface] = ACTIONS(2729), + [anon_sym_PLUS_PLUS] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2729), + [anon_sym_QMARK] = ACTIONS(2729), + [anon_sym_BANG] = ACTIONS(2729), + [anon_sym_go] = ACTIONS(2729), + [anon_sym_spawn] = ACTIONS(2729), + [anon_sym_json_DOTdecode] = ACTIONS(2729), + [anon_sym_LBRACK2] = ACTIONS(2729), + [anon_sym_TILDE] = ACTIONS(2729), + [anon_sym_CARET] = ACTIONS(2729), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_LT_DASH] = ACTIONS(2729), + [anon_sym_LT_LT] = ACTIONS(2729), + [anon_sym_GT_GT] = ACTIONS(2729), + [anon_sym_GT_GT_GT] = ACTIONS(2729), + [anon_sym_AMP_CARET] = ACTIONS(2729), + [anon_sym_AMP_AMP] = ACTIONS(2729), + [anon_sym_PIPE_PIPE] = ACTIONS(2729), + [anon_sym_or] = ACTIONS(2729), + [sym_none] = ACTIONS(2729), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_nil] = ACTIONS(2729), + [anon_sym_QMARK_DOT] = ACTIONS(2729), + [anon_sym_POUND_LBRACK] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_DOLLARif] = ACTIONS(2729), + [anon_sym_is] = ACTIONS(2729), + [anon_sym_BANGis] = ACTIONS(2729), + [anon_sym_in] = ACTIONS(2729), + [anon_sym_BANGin] = ACTIONS(2729), + [anon_sym_match] = ACTIONS(2729), + [anon_sym_select] = ACTIONS(2729), + [anon_sym_STAR_EQ] = ACTIONS(2729), + [anon_sym_SLASH_EQ] = ACTIONS(2729), + [anon_sym_PERCENT_EQ] = ACTIONS(2729), + [anon_sym_LT_LT_EQ] = ACTIONS(2729), + [anon_sym_GT_GT_EQ] = ACTIONS(2729), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2729), + [anon_sym_AMP_EQ] = ACTIONS(2729), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2729), + [anon_sym_PLUS_EQ] = ACTIONS(2729), + [anon_sym_DASH_EQ] = ACTIONS(2729), + [anon_sym_PIPE_EQ] = ACTIONS(2729), + [anon_sym_CARET_EQ] = ACTIONS(2729), + [anon_sym_COLON_EQ] = ACTIONS(2729), + [anon_sym_lock] = ACTIONS(2729), + [anon_sym_rlock] = ACTIONS(2729), + [anon_sym_unsafe] = ACTIONS(2729), + [anon_sym_sql] = ACTIONS(2729), + [sym_int_literal] = ACTIONS(2729), + [sym_float_literal] = ACTIONS(2729), + [sym_rune_literal] = ACTIONS(2729), + [anon_sym_SQUOTE] = ACTIONS(2729), + [anon_sym_DQUOTE] = ACTIONS(2729), + [anon_sym_c_SQUOTE] = ACTIONS(2729), + [anon_sym_c_DQUOTE] = ACTIONS(2729), + [anon_sym_r_SQUOTE] = ACTIONS(2729), + [anon_sym_r_DQUOTE] = ACTIONS(2729), + [sym_pseudo_compile_time_identifier] = ACTIONS(2729), + [anon_sym_shared] = ACTIONS(2729), + [anon_sym_map_LBRACK] = ACTIONS(2729), + [anon_sym_chan] = ACTIONS(2729), + [anon_sym_thread] = ACTIONS(2729), + [anon_sym_atomic] = ACTIONS(2729), + [anon_sym_assert] = ACTIONS(2729), + [anon_sym_defer] = ACTIONS(2729), + [anon_sym_goto] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_DOLLARfor] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_POUND] = ACTIONS(2729), + [anon_sym_asm] = ACTIONS(2729), + [anon_sym_AT_LBRACK] = ACTIONS(2729), }, [416] = { [sym_line_comment] = STATE(416), [sym_block_comment] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(2690), - [sym_identifier] = ACTIONS(2692), - [anon_sym_LF] = ACTIONS(2692), - [anon_sym_CR] = ACTIONS(2692), - [anon_sym_CR_LF] = ACTIONS(2692), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2692), - [anon_sym_as] = ACTIONS(2692), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_COMMA] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym_EQ] = ACTIONS(2692), - [anon_sym___global] = ACTIONS(2692), - [anon_sym_type] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_fn] = ACTIONS(2692), - [anon_sym_PLUS] = ACTIONS(2692), - [anon_sym_DASH] = ACTIONS(2692), - [anon_sym_STAR] = ACTIONS(2692), - [anon_sym_SLASH] = ACTIONS(2692), - [anon_sym_PERCENT] = ACTIONS(2692), - [anon_sym_LT] = ACTIONS(2692), - [anon_sym_GT] = ACTIONS(2692), - [anon_sym_EQ_EQ] = ACTIONS(2692), - [anon_sym_BANG_EQ] = ACTIONS(2692), - [anon_sym_LT_EQ] = ACTIONS(2692), - [anon_sym_GT_EQ] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_struct] = ACTIONS(2692), - [anon_sym_union] = ACTIONS(2692), - [anon_sym_pub] = ACTIONS(2692), - [anon_sym_mut] = ACTIONS(2692), - [anon_sym_enum] = ACTIONS(2692), - [anon_sym_interface] = ACTIONS(2692), - [anon_sym_PLUS_PLUS] = ACTIONS(2692), - [anon_sym_DASH_DASH] = ACTIONS(2692), - [anon_sym_QMARK] = ACTIONS(2692), - [anon_sym_BANG] = ACTIONS(2692), - [anon_sym_go] = ACTIONS(2692), - [anon_sym_spawn] = ACTIONS(2692), - [anon_sym_json_DOTdecode] = ACTIONS(2692), - [anon_sym_LBRACK2] = ACTIONS(2692), - [anon_sym_TILDE] = ACTIONS(2692), - [anon_sym_CARET] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2692), - [anon_sym_LT_DASH] = ACTIONS(2692), - [anon_sym_LT_LT] = ACTIONS(2692), - [anon_sym_GT_GT] = ACTIONS(2692), - [anon_sym_GT_GT_GT] = ACTIONS(2692), - [anon_sym_AMP_CARET] = ACTIONS(2692), - [anon_sym_AMP_AMP] = ACTIONS(2692), - [anon_sym_PIPE_PIPE] = ACTIONS(2692), - [anon_sym_or] = ACTIONS(2692), - [sym_none] = ACTIONS(2692), - [sym_true] = ACTIONS(2692), - [sym_false] = ACTIONS(2692), - [sym_nil] = ACTIONS(2692), - [anon_sym_QMARK_DOT] = ACTIONS(2692), - [anon_sym_POUND_LBRACK] = ACTIONS(2692), - [anon_sym_if] = ACTIONS(2692), - [anon_sym_DOLLARif] = ACTIONS(2692), - [anon_sym_is] = ACTIONS(2692), - [anon_sym_BANGis] = ACTIONS(2692), - [anon_sym_in] = ACTIONS(2692), - [anon_sym_BANGin] = ACTIONS(2692), - [anon_sym_match] = ACTIONS(2692), - [anon_sym_select] = ACTIONS(2692), - [anon_sym_STAR_EQ] = ACTIONS(2692), - [anon_sym_SLASH_EQ] = ACTIONS(2692), - [anon_sym_PERCENT_EQ] = ACTIONS(2692), - [anon_sym_LT_LT_EQ] = ACTIONS(2692), - [anon_sym_GT_GT_EQ] = ACTIONS(2692), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2692), - [anon_sym_AMP_EQ] = ACTIONS(2692), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2692), - [anon_sym_PLUS_EQ] = ACTIONS(2692), - [anon_sym_DASH_EQ] = ACTIONS(2692), - [anon_sym_PIPE_EQ] = ACTIONS(2692), - [anon_sym_CARET_EQ] = ACTIONS(2692), - [anon_sym_COLON_EQ] = ACTIONS(2692), - [anon_sym_lock] = ACTIONS(2692), - [anon_sym_rlock] = ACTIONS(2692), - [anon_sym_unsafe] = ACTIONS(2692), - [anon_sym_sql] = ACTIONS(2692), - [sym_int_literal] = ACTIONS(2692), - [sym_float_literal] = ACTIONS(2692), - [sym_rune_literal] = ACTIONS(2692), - [sym_pseudo_compile_time_identifier] = ACTIONS(2692), - [anon_sym_shared] = ACTIONS(2692), - [anon_sym_map_LBRACK] = ACTIONS(2692), - [anon_sym_chan] = ACTIONS(2692), - [anon_sym_thread] = ACTIONS(2692), - [anon_sym_atomic] = ACTIONS(2692), - [anon_sym_assert] = ACTIONS(2692), - [anon_sym_defer] = ACTIONS(2692), - [anon_sym_goto] = ACTIONS(2692), - [anon_sym_break] = ACTIONS(2692), - [anon_sym_continue] = ACTIONS(2692), - [anon_sym_return] = ACTIONS(2692), - [anon_sym_DOLLARfor] = ACTIONS(2692), - [anon_sym_for] = ACTIONS(2692), - [anon_sym_POUND] = ACTIONS(2692), - [anon_sym_asm] = ACTIONS(2692), - [anon_sym_AT_LBRACK] = ACTIONS(2692), - [sym___double_quote] = ACTIONS(2692), - [sym___single_quote] = ACTIONS(2692), - [sym___c_double_quote] = ACTIONS(2692), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2692), - [sym___r_single_quote] = ACTIONS(2692), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4327), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [417] = { [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(2694), - [sym_identifier] = ACTIONS(2696), - [anon_sym_LF] = ACTIONS(2696), - [anon_sym_CR] = ACTIONS(2696), - [anon_sym_CR_LF] = ACTIONS(2696), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2696), - [anon_sym_as] = ACTIONS(2696), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_COMMA] = ACTIONS(2696), - [anon_sym_const] = ACTIONS(2696), - [anon_sym_LPAREN] = ACTIONS(2696), - [anon_sym_EQ] = ACTIONS(2696), - [anon_sym___global] = ACTIONS(2696), - [anon_sym_type] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_fn] = ACTIONS(2696), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2696), - [anon_sym_SLASH] = ACTIONS(2696), - [anon_sym_PERCENT] = ACTIONS(2696), - [anon_sym_LT] = ACTIONS(2696), - [anon_sym_GT] = ACTIONS(2696), - [anon_sym_EQ_EQ] = ACTIONS(2696), - [anon_sym_BANG_EQ] = ACTIONS(2696), - [anon_sym_LT_EQ] = ACTIONS(2696), - [anon_sym_GT_EQ] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(2694), - [anon_sym_struct] = ACTIONS(2696), - [anon_sym_union] = ACTIONS(2696), - [anon_sym_pub] = ACTIONS(2696), - [anon_sym_mut] = ACTIONS(2696), - [anon_sym_enum] = ACTIONS(2696), - [anon_sym_interface] = ACTIONS(2696), - [anon_sym_PLUS_PLUS] = ACTIONS(2696), - [anon_sym_DASH_DASH] = ACTIONS(2696), - [anon_sym_QMARK] = ACTIONS(2696), - [anon_sym_BANG] = ACTIONS(2696), - [anon_sym_go] = ACTIONS(2696), - [anon_sym_spawn] = ACTIONS(2696), - [anon_sym_json_DOTdecode] = ACTIONS(2696), - [anon_sym_LBRACK2] = ACTIONS(2696), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2696), - [anon_sym_LT_DASH] = ACTIONS(2696), - [anon_sym_LT_LT] = ACTIONS(2696), - [anon_sym_GT_GT] = ACTIONS(2696), - [anon_sym_GT_GT_GT] = ACTIONS(2696), - [anon_sym_AMP_CARET] = ACTIONS(2696), - [anon_sym_AMP_AMP] = ACTIONS(2696), - [anon_sym_PIPE_PIPE] = ACTIONS(2696), - [anon_sym_or] = ACTIONS(2696), - [sym_none] = ACTIONS(2696), - [sym_true] = ACTIONS(2696), - [sym_false] = ACTIONS(2696), - [sym_nil] = ACTIONS(2696), - [anon_sym_QMARK_DOT] = ACTIONS(2696), - [anon_sym_POUND_LBRACK] = ACTIONS(2696), - [anon_sym_if] = ACTIONS(2696), - [anon_sym_DOLLARif] = ACTIONS(2696), - [anon_sym_is] = ACTIONS(2696), - [anon_sym_BANGis] = ACTIONS(2696), - [anon_sym_in] = ACTIONS(2696), - [anon_sym_BANGin] = ACTIONS(2696), - [anon_sym_match] = ACTIONS(2696), - [anon_sym_select] = ACTIONS(2696), - [anon_sym_STAR_EQ] = ACTIONS(2696), - [anon_sym_SLASH_EQ] = ACTIONS(2696), - [anon_sym_PERCENT_EQ] = ACTIONS(2696), - [anon_sym_LT_LT_EQ] = ACTIONS(2696), - [anon_sym_GT_GT_EQ] = ACTIONS(2696), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2696), - [anon_sym_AMP_EQ] = ACTIONS(2696), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2696), - [anon_sym_PLUS_EQ] = ACTIONS(2696), - [anon_sym_DASH_EQ] = ACTIONS(2696), - [anon_sym_PIPE_EQ] = ACTIONS(2696), - [anon_sym_CARET_EQ] = ACTIONS(2696), - [anon_sym_COLON_EQ] = ACTIONS(2696), - [anon_sym_lock] = ACTIONS(2696), - [anon_sym_rlock] = ACTIONS(2696), - [anon_sym_unsafe] = ACTIONS(2696), - [anon_sym_sql] = ACTIONS(2696), - [sym_int_literal] = ACTIONS(2696), - [sym_float_literal] = ACTIONS(2696), - [sym_rune_literal] = ACTIONS(2696), - [sym_pseudo_compile_time_identifier] = ACTIONS(2696), - [anon_sym_shared] = ACTIONS(2696), - [anon_sym_map_LBRACK] = ACTIONS(2696), - [anon_sym_chan] = ACTIONS(2696), - [anon_sym_thread] = ACTIONS(2696), - [anon_sym_atomic] = ACTIONS(2696), - [anon_sym_assert] = ACTIONS(2696), - [anon_sym_defer] = ACTIONS(2696), - [anon_sym_goto] = ACTIONS(2696), - [anon_sym_break] = ACTIONS(2696), - [anon_sym_continue] = ACTIONS(2696), - [anon_sym_return] = ACTIONS(2696), - [anon_sym_DOLLARfor] = ACTIONS(2696), - [anon_sym_for] = ACTIONS(2696), - [anon_sym_POUND] = ACTIONS(2696), - [anon_sym_asm] = ACTIONS(2696), - [anon_sym_AT_LBRACK] = ACTIONS(2696), - [sym___double_quote] = ACTIONS(2696), - [sym___single_quote] = ACTIONS(2696), - [sym___c_double_quote] = ACTIONS(2696), - [sym___c_single_quote] = ACTIONS(2696), - [sym___r_double_quote] = ACTIONS(2696), - [sym___r_single_quote] = ACTIONS(2696), + [sym__expression] = STATE(953), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(653), + [sym_mutable_expression] = STATE(1413), + [sym_expression_list] = STATE(1487), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_LT_DASH] = ACTIONS(2567), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [418] = { [sym_line_comment] = STATE(418), [sym_block_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_EQ] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2700), - [anon_sym_SLASH_EQ] = ACTIONS(2700), - [anon_sym_PERCENT_EQ] = ACTIONS(2700), - [anon_sym_LT_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_AMP_EQ] = ACTIONS(2700), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2700), - [anon_sym_PLUS_EQ] = ACTIONS(2700), - [anon_sym_DASH_EQ] = ACTIONS(2700), - [anon_sym_PIPE_EQ] = ACTIONS(2700), - [anon_sym_CARET_EQ] = ACTIONS(2700), - [anon_sym_COLON_EQ] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [sym_pseudo_compile_time_identifier] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), + [sym__expression] = STATE(2584), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3548), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4579), + [sym_identifier] = ACTIONS(2391), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [419] = { [sym_line_comment] = STATE(419), [sym_block_comment] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_const] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2704), - [anon_sym___global] = ACTIONS(2704), - [anon_sym_type] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_union] = ACTIONS(2704), - [anon_sym_pub] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_interface] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2704), - [anon_sym_POUND_LBRACK] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2704), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_STAR_EQ] = ACTIONS(2704), - [anon_sym_SLASH_EQ] = ACTIONS(2704), - [anon_sym_PERCENT_EQ] = ACTIONS(2704), - [anon_sym_LT_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_AMP_EQ] = ACTIONS(2704), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2704), - [anon_sym_PLUS_EQ] = ACTIONS(2704), - [anon_sym_DASH_EQ] = ACTIONS(2704), - [anon_sym_PIPE_EQ] = ACTIONS(2704), - [anon_sym_CARET_EQ] = ACTIONS(2704), - [anon_sym_COLON_EQ] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [sym_pseudo_compile_time_identifier] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [anon_sym_assert] = ACTIONS(2704), - [anon_sym_defer] = ACTIONS(2704), - [anon_sym_goto] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_DOLLARfor] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2704), - [anon_sym_AT_LBRACK] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), + [sym__expression] = STATE(2584), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4579), + [sym_identifier] = ACTIONS(1219), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [420] = { [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4458), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4327), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(2733), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [421] = { [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(2708), - [sym_identifier] = ACTIONS(2710), - [anon_sym_LF] = ACTIONS(2710), - [anon_sym_CR] = ACTIONS(2710), - [anon_sym_CR_LF] = ACTIONS(2710), + [ts_builtin_sym_end] = ACTIONS(2735), + [sym_identifier] = ACTIONS(2737), + [anon_sym_LF] = ACTIONS(2737), + [anon_sym_CR] = ACTIONS(2737), + [anon_sym_CR_LF] = ACTIONS(2737), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2710), - [anon_sym_as] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_COMMA] = ACTIONS(2710), - [anon_sym_const] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_EQ] = ACTIONS(2710), - [anon_sym___global] = ACTIONS(2710), - [anon_sym_type] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_fn] = ACTIONS(2710), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_STAR] = ACTIONS(2710), - [anon_sym_SLASH] = ACTIONS(2710), - [anon_sym_PERCENT] = ACTIONS(2710), - [anon_sym_LT] = ACTIONS(2710), - [anon_sym_GT] = ACTIONS(2710), - [anon_sym_EQ_EQ] = ACTIONS(2710), - [anon_sym_BANG_EQ] = ACTIONS(2710), - [anon_sym_LT_EQ] = ACTIONS(2710), - [anon_sym_GT_EQ] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_union] = ACTIONS(2710), - [anon_sym_pub] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(2710), - [anon_sym_enum] = ACTIONS(2710), - [anon_sym_interface] = ACTIONS(2710), - [anon_sym_PLUS_PLUS] = ACTIONS(2710), - [anon_sym_DASH_DASH] = ACTIONS(2710), - [anon_sym_QMARK] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(2710), - [anon_sym_go] = ACTIONS(2710), - [anon_sym_spawn] = ACTIONS(2710), - [anon_sym_json_DOTdecode] = ACTIONS(2710), - [anon_sym_LBRACK2] = ACTIONS(2710), - [anon_sym_TILDE] = ACTIONS(2710), - [anon_sym_CARET] = ACTIONS(2710), - [anon_sym_AMP] = ACTIONS(2710), - [anon_sym_LT_DASH] = ACTIONS(2710), - [anon_sym_LT_LT] = ACTIONS(2710), - [anon_sym_GT_GT] = ACTIONS(2710), - [anon_sym_GT_GT_GT] = ACTIONS(2710), - [anon_sym_AMP_CARET] = ACTIONS(2710), - [anon_sym_AMP_AMP] = ACTIONS(2710), - [anon_sym_PIPE_PIPE] = ACTIONS(2710), - [anon_sym_or] = ACTIONS(2710), - [sym_none] = ACTIONS(2710), - [sym_true] = ACTIONS(2710), - [sym_false] = ACTIONS(2710), - [sym_nil] = ACTIONS(2710), - [anon_sym_QMARK_DOT] = ACTIONS(2710), - [anon_sym_POUND_LBRACK] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_DOLLARif] = ACTIONS(2710), - [anon_sym_is] = ACTIONS(2710), - [anon_sym_BANGis] = ACTIONS(2710), - [anon_sym_in] = ACTIONS(2710), - [anon_sym_BANGin] = ACTIONS(2710), - [anon_sym_match] = ACTIONS(2710), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_STAR_EQ] = ACTIONS(2710), - [anon_sym_SLASH_EQ] = ACTIONS(2710), - [anon_sym_PERCENT_EQ] = ACTIONS(2710), - [anon_sym_LT_LT_EQ] = ACTIONS(2710), - [anon_sym_GT_GT_EQ] = ACTIONS(2710), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2710), - [anon_sym_AMP_EQ] = ACTIONS(2710), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2710), - [anon_sym_PLUS_EQ] = ACTIONS(2710), - [anon_sym_DASH_EQ] = ACTIONS(2710), - [anon_sym_PIPE_EQ] = ACTIONS(2710), - [anon_sym_CARET_EQ] = ACTIONS(2710), - [anon_sym_COLON_EQ] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2710), - [anon_sym_rlock] = ACTIONS(2710), - [anon_sym_unsafe] = ACTIONS(2710), - [anon_sym_sql] = ACTIONS(2710), - [sym_int_literal] = ACTIONS(2710), - [sym_float_literal] = ACTIONS(2710), - [sym_rune_literal] = ACTIONS(2710), - [sym_pseudo_compile_time_identifier] = ACTIONS(2710), - [anon_sym_shared] = ACTIONS(2710), - [anon_sym_map_LBRACK] = ACTIONS(2710), - [anon_sym_chan] = ACTIONS(2710), - [anon_sym_thread] = ACTIONS(2710), - [anon_sym_atomic] = ACTIONS(2710), - [anon_sym_assert] = ACTIONS(2710), - [anon_sym_defer] = ACTIONS(2710), - [anon_sym_goto] = ACTIONS(2710), - [anon_sym_break] = ACTIONS(2710), - [anon_sym_continue] = ACTIONS(2710), - [anon_sym_return] = ACTIONS(2710), - [anon_sym_DOLLARfor] = ACTIONS(2710), - [anon_sym_for] = ACTIONS(2710), - [anon_sym_POUND] = ACTIONS(2710), - [anon_sym_asm] = ACTIONS(2710), - [anon_sym_AT_LBRACK] = ACTIONS(2710), - [sym___double_quote] = ACTIONS(2710), - [sym___single_quote] = ACTIONS(2710), - [sym___c_double_quote] = ACTIONS(2710), - [sym___c_single_quote] = ACTIONS(2710), - [sym___r_double_quote] = ACTIONS(2710), - [sym___r_single_quote] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(2737), + [anon_sym_as] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_COMMA] = ACTIONS(2737), + [anon_sym_const] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(2737), + [anon_sym_EQ] = ACTIONS(2737), + [anon_sym___global] = ACTIONS(2737), + [anon_sym_type] = ACTIONS(2737), + [anon_sym_PIPE] = ACTIONS(2737), + [anon_sym_fn] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2737), + [anon_sym_SLASH] = ACTIONS(2737), + [anon_sym_PERCENT] = ACTIONS(2737), + [anon_sym_LT] = ACTIONS(2737), + [anon_sym_GT] = ACTIONS(2737), + [anon_sym_EQ_EQ] = ACTIONS(2737), + [anon_sym_BANG_EQ] = ACTIONS(2737), + [anon_sym_LT_EQ] = ACTIONS(2737), + [anon_sym_GT_EQ] = ACTIONS(2737), + [anon_sym_LBRACK] = ACTIONS(2735), + [anon_sym_struct] = ACTIONS(2737), + [anon_sym_union] = ACTIONS(2737), + [anon_sym_pub] = ACTIONS(2737), + [anon_sym_mut] = ACTIONS(2737), + [anon_sym_enum] = ACTIONS(2737), + [anon_sym_interface] = ACTIONS(2737), + [anon_sym_PLUS_PLUS] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2737), + [anon_sym_QMARK] = ACTIONS(2737), + [anon_sym_BANG] = ACTIONS(2737), + [anon_sym_go] = ACTIONS(2737), + [anon_sym_spawn] = ACTIONS(2737), + [anon_sym_json_DOTdecode] = ACTIONS(2737), + [anon_sym_LBRACK2] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(2737), + [anon_sym_CARET] = ACTIONS(2737), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_LT_DASH] = ACTIONS(2737), + [anon_sym_LT_LT] = ACTIONS(2737), + [anon_sym_GT_GT] = ACTIONS(2737), + [anon_sym_GT_GT_GT] = ACTIONS(2737), + [anon_sym_AMP_CARET] = ACTIONS(2737), + [anon_sym_AMP_AMP] = ACTIONS(2737), + [anon_sym_PIPE_PIPE] = ACTIONS(2737), + [anon_sym_or] = ACTIONS(2737), + [sym_none] = ACTIONS(2737), + [sym_true] = ACTIONS(2737), + [sym_false] = ACTIONS(2737), + [sym_nil] = ACTIONS(2737), + [anon_sym_QMARK_DOT] = ACTIONS(2737), + [anon_sym_POUND_LBRACK] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_DOLLARif] = ACTIONS(2737), + [anon_sym_is] = ACTIONS(2737), + [anon_sym_BANGis] = ACTIONS(2737), + [anon_sym_in] = ACTIONS(2737), + [anon_sym_BANGin] = ACTIONS(2737), + [anon_sym_match] = ACTIONS(2737), + [anon_sym_select] = ACTIONS(2737), + [anon_sym_STAR_EQ] = ACTIONS(2737), + [anon_sym_SLASH_EQ] = ACTIONS(2737), + [anon_sym_PERCENT_EQ] = ACTIONS(2737), + [anon_sym_LT_LT_EQ] = ACTIONS(2737), + [anon_sym_GT_GT_EQ] = ACTIONS(2737), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2737), + [anon_sym_AMP_EQ] = ACTIONS(2737), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2737), + [anon_sym_PLUS_EQ] = ACTIONS(2737), + [anon_sym_DASH_EQ] = ACTIONS(2737), + [anon_sym_PIPE_EQ] = ACTIONS(2737), + [anon_sym_CARET_EQ] = ACTIONS(2737), + [anon_sym_COLON_EQ] = ACTIONS(2737), + [anon_sym_lock] = ACTIONS(2737), + [anon_sym_rlock] = ACTIONS(2737), + [anon_sym_unsafe] = ACTIONS(2737), + [anon_sym_sql] = ACTIONS(2737), + [sym_int_literal] = ACTIONS(2737), + [sym_float_literal] = ACTIONS(2737), + [sym_rune_literal] = ACTIONS(2737), + [anon_sym_SQUOTE] = ACTIONS(2737), + [anon_sym_DQUOTE] = ACTIONS(2737), + [anon_sym_c_SQUOTE] = ACTIONS(2737), + [anon_sym_c_DQUOTE] = ACTIONS(2737), + [anon_sym_r_SQUOTE] = ACTIONS(2737), + [anon_sym_r_DQUOTE] = ACTIONS(2737), + [sym_pseudo_compile_time_identifier] = ACTIONS(2737), + [anon_sym_shared] = ACTIONS(2737), + [anon_sym_map_LBRACK] = ACTIONS(2737), + [anon_sym_chan] = ACTIONS(2737), + [anon_sym_thread] = ACTIONS(2737), + [anon_sym_atomic] = ACTIONS(2737), + [anon_sym_assert] = ACTIONS(2737), + [anon_sym_defer] = ACTIONS(2737), + [anon_sym_goto] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_DOLLARfor] = ACTIONS(2737), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_POUND] = ACTIONS(2737), + [anon_sym_asm] = ACTIONS(2737), + [anon_sym_AT_LBRACK] = ACTIONS(2737), }, [422] = { [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), - [ts_builtin_sym_end] = ACTIONS(2712), - [sym_identifier] = ACTIONS(2714), - [anon_sym_LF] = ACTIONS(2714), - [anon_sym_CR] = ACTIONS(2714), - [anon_sym_CR_LF] = ACTIONS(2714), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2714), - [anon_sym_as] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_COMMA] = ACTIONS(2714), - [anon_sym_const] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_EQ] = ACTIONS(2714), - [anon_sym___global] = ACTIONS(2714), - [anon_sym_type] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_fn] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_STAR] = ACTIONS(2714), - [anon_sym_SLASH] = ACTIONS(2714), - [anon_sym_PERCENT] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2714), - [anon_sym_GT] = ACTIONS(2714), - [anon_sym_EQ_EQ] = ACTIONS(2714), - [anon_sym_BANG_EQ] = ACTIONS(2714), - [anon_sym_LT_EQ] = ACTIONS(2714), - [anon_sym_GT_EQ] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_struct] = ACTIONS(2714), - [anon_sym_union] = ACTIONS(2714), - [anon_sym_pub] = ACTIONS(2714), - [anon_sym_mut] = ACTIONS(2714), - [anon_sym_enum] = ACTIONS(2714), - [anon_sym_interface] = ACTIONS(2714), - [anon_sym_PLUS_PLUS] = ACTIONS(2714), - [anon_sym_DASH_DASH] = ACTIONS(2714), - [anon_sym_QMARK] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(2714), - [anon_sym_go] = ACTIONS(2714), - [anon_sym_spawn] = ACTIONS(2714), - [anon_sym_json_DOTdecode] = ACTIONS(2714), - [anon_sym_LBRACK2] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2714), - [anon_sym_CARET] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_LT_DASH] = ACTIONS(2714), - [anon_sym_LT_LT] = ACTIONS(2714), - [anon_sym_GT_GT] = ACTIONS(2714), - [anon_sym_GT_GT_GT] = ACTIONS(2714), - [anon_sym_AMP_CARET] = ACTIONS(2714), - [anon_sym_AMP_AMP] = ACTIONS(2714), - [anon_sym_PIPE_PIPE] = ACTIONS(2714), - [anon_sym_or] = ACTIONS(2714), - [sym_none] = ACTIONS(2714), - [sym_true] = ACTIONS(2714), - [sym_false] = ACTIONS(2714), - [sym_nil] = ACTIONS(2714), - [anon_sym_QMARK_DOT] = ACTIONS(2714), - [anon_sym_POUND_LBRACK] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_is] = ACTIONS(2714), - [anon_sym_BANGis] = ACTIONS(2714), - [anon_sym_in] = ACTIONS(2714), - [anon_sym_BANGin] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2714), - [anon_sym_select] = ACTIONS(2714), - [anon_sym_STAR_EQ] = ACTIONS(2714), - [anon_sym_SLASH_EQ] = ACTIONS(2714), - [anon_sym_PERCENT_EQ] = ACTIONS(2714), - [anon_sym_LT_LT_EQ] = ACTIONS(2714), - [anon_sym_GT_GT_EQ] = ACTIONS(2714), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2714), - [anon_sym_AMP_EQ] = ACTIONS(2714), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2714), - [anon_sym_PLUS_EQ] = ACTIONS(2714), - [anon_sym_DASH_EQ] = ACTIONS(2714), - [anon_sym_PIPE_EQ] = ACTIONS(2714), - [anon_sym_CARET_EQ] = ACTIONS(2714), - [anon_sym_COLON_EQ] = ACTIONS(2714), - [anon_sym_lock] = ACTIONS(2714), - [anon_sym_rlock] = ACTIONS(2714), - [anon_sym_unsafe] = ACTIONS(2714), - [anon_sym_sql] = ACTIONS(2714), - [sym_int_literal] = ACTIONS(2714), - [sym_float_literal] = ACTIONS(2714), - [sym_rune_literal] = ACTIONS(2714), - [sym_pseudo_compile_time_identifier] = ACTIONS(2714), - [anon_sym_shared] = ACTIONS(2714), - [anon_sym_map_LBRACK] = ACTIONS(2714), - [anon_sym_chan] = ACTIONS(2714), - [anon_sym_thread] = ACTIONS(2714), - [anon_sym_atomic] = ACTIONS(2714), - [anon_sym_assert] = ACTIONS(2714), - [anon_sym_defer] = ACTIONS(2714), - [anon_sym_goto] = ACTIONS(2714), - [anon_sym_break] = ACTIONS(2714), - [anon_sym_continue] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_DOLLARfor] = ACTIONS(2714), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_POUND] = ACTIONS(2714), - [anon_sym_asm] = ACTIONS(2714), - [anon_sym_AT_LBRACK] = ACTIONS(2714), - [sym___double_quote] = ACTIONS(2714), - [sym___single_quote] = ACTIONS(2714), - [sym___c_double_quote] = ACTIONS(2714), - [sym___c_single_quote] = ACTIONS(2714), - [sym___r_double_quote] = ACTIONS(2714), - [sym___r_single_quote] = ACTIONS(2714), + [sym__expression] = STATE(2594), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4416), + [sym_identifier] = ACTIONS(1219), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [423] = { [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(2716), - [sym_identifier] = ACTIONS(2718), - [anon_sym_LF] = ACTIONS(2718), - [anon_sym_CR] = ACTIONS(2718), - [anon_sym_CR_LF] = ACTIONS(2718), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_as] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_COMMA] = ACTIONS(2718), - [anon_sym_const] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2718), - [anon_sym___global] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_fn] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(2718), - [anon_sym_STAR] = ACTIONS(2718), - [anon_sym_SLASH] = ACTIONS(2718), - [anon_sym_PERCENT] = ACTIONS(2718), - [anon_sym_LT] = ACTIONS(2718), - [anon_sym_GT] = ACTIONS(2718), - [anon_sym_EQ_EQ] = ACTIONS(2718), - [anon_sym_BANG_EQ] = ACTIONS(2718), - [anon_sym_LT_EQ] = ACTIONS(2718), - [anon_sym_GT_EQ] = ACTIONS(2718), - [anon_sym_LBRACK] = ACTIONS(2716), - [anon_sym_struct] = ACTIONS(2718), - [anon_sym_union] = ACTIONS(2718), - [anon_sym_pub] = ACTIONS(2718), - [anon_sym_mut] = ACTIONS(2718), - [anon_sym_enum] = ACTIONS(2718), - [anon_sym_interface] = ACTIONS(2718), - [anon_sym_PLUS_PLUS] = ACTIONS(2718), - [anon_sym_DASH_DASH] = ACTIONS(2718), - [anon_sym_QMARK] = ACTIONS(2718), - [anon_sym_BANG] = ACTIONS(2718), - [anon_sym_go] = ACTIONS(2718), - [anon_sym_spawn] = ACTIONS(2718), - [anon_sym_json_DOTdecode] = ACTIONS(2718), - [anon_sym_LBRACK2] = ACTIONS(2718), - [anon_sym_TILDE] = ACTIONS(2718), - [anon_sym_CARET] = ACTIONS(2718), - [anon_sym_AMP] = ACTIONS(2718), - [anon_sym_LT_DASH] = ACTIONS(2718), - [anon_sym_LT_LT] = ACTIONS(2718), - [anon_sym_GT_GT] = ACTIONS(2718), - [anon_sym_GT_GT_GT] = ACTIONS(2718), - [anon_sym_AMP_CARET] = ACTIONS(2718), - [anon_sym_AMP_AMP] = ACTIONS(2718), - [anon_sym_PIPE_PIPE] = ACTIONS(2718), - [anon_sym_or] = ACTIONS(2718), - [sym_none] = ACTIONS(2718), - [sym_true] = ACTIONS(2718), - [sym_false] = ACTIONS(2718), - [sym_nil] = ACTIONS(2718), - [anon_sym_QMARK_DOT] = ACTIONS(2718), - [anon_sym_POUND_LBRACK] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2718), - [anon_sym_DOLLARif] = ACTIONS(2718), - [anon_sym_is] = ACTIONS(2718), - [anon_sym_BANGis] = ACTIONS(2718), - [anon_sym_in] = ACTIONS(2718), - [anon_sym_BANGin] = ACTIONS(2718), - [anon_sym_match] = ACTIONS(2718), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_STAR_EQ] = ACTIONS(2718), - [anon_sym_SLASH_EQ] = ACTIONS(2718), - [anon_sym_PERCENT_EQ] = ACTIONS(2718), - [anon_sym_LT_LT_EQ] = ACTIONS(2718), - [anon_sym_GT_GT_EQ] = ACTIONS(2718), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2718), - [anon_sym_AMP_EQ] = ACTIONS(2718), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2718), - [anon_sym_PLUS_EQ] = ACTIONS(2718), - [anon_sym_DASH_EQ] = ACTIONS(2718), - [anon_sym_PIPE_EQ] = ACTIONS(2718), - [anon_sym_CARET_EQ] = ACTIONS(2718), - [anon_sym_COLON_EQ] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2718), - [anon_sym_rlock] = ACTIONS(2718), - [anon_sym_unsafe] = ACTIONS(2718), - [anon_sym_sql] = ACTIONS(2718), - [sym_int_literal] = ACTIONS(2718), - [sym_float_literal] = ACTIONS(2718), - [sym_rune_literal] = ACTIONS(2718), - [sym_pseudo_compile_time_identifier] = ACTIONS(2718), - [anon_sym_shared] = ACTIONS(2718), - [anon_sym_map_LBRACK] = ACTIONS(2718), - [anon_sym_chan] = ACTIONS(2718), - [anon_sym_thread] = ACTIONS(2718), - [anon_sym_atomic] = ACTIONS(2718), - [anon_sym_assert] = ACTIONS(2718), - [anon_sym_defer] = ACTIONS(2718), - [anon_sym_goto] = ACTIONS(2718), - [anon_sym_break] = ACTIONS(2718), - [anon_sym_continue] = ACTIONS(2718), - [anon_sym_return] = ACTIONS(2718), - [anon_sym_DOLLARfor] = ACTIONS(2718), - [anon_sym_for] = ACTIONS(2718), - [anon_sym_POUND] = ACTIONS(2718), - [anon_sym_asm] = ACTIONS(2718), - [anon_sym_AT_LBRACK] = ACTIONS(2718), - [sym___double_quote] = ACTIONS(2718), - [sym___single_quote] = ACTIONS(2718), - [sym___c_double_quote] = ACTIONS(2718), - [sym___c_single_quote] = ACTIONS(2718), - [sym___r_double_quote] = ACTIONS(2718), - [sym___r_single_quote] = ACTIONS(2718), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3548), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4379), + [sym_identifier] = ACTIONS(2391), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [424] = { [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4379), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2720), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [425] = { [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [ts_builtin_sym_end] = ACTIONS(2722), - [sym_identifier] = ACTIONS(2724), - [anon_sym_LF] = ACTIONS(2724), - [anon_sym_CR] = ACTIONS(2724), - [anon_sym_CR_LF] = ACTIONS(2724), + [ts_builtin_sym_end] = ACTIONS(2739), + [sym_identifier] = ACTIONS(2741), + [anon_sym_LF] = ACTIONS(2741), + [anon_sym_CR] = ACTIONS(2741), + [anon_sym_CR_LF] = ACTIONS(2741), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2724), - [anon_sym_as] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_COMMA] = ACTIONS(2724), - [anon_sym_const] = ACTIONS(2724), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_EQ] = ACTIONS(2724), - [anon_sym___global] = ACTIONS(2724), - [anon_sym_type] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_fn] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_STAR] = ACTIONS(2724), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_PERCENT] = ACTIONS(2724), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_GT] = ACTIONS(2724), - [anon_sym_EQ_EQ] = ACTIONS(2724), - [anon_sym_BANG_EQ] = ACTIONS(2724), - [anon_sym_LT_EQ] = ACTIONS(2724), - [anon_sym_GT_EQ] = ACTIONS(2724), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_struct] = ACTIONS(2724), - [anon_sym_union] = ACTIONS(2724), - [anon_sym_pub] = ACTIONS(2724), - [anon_sym_mut] = ACTIONS(2724), - [anon_sym_enum] = ACTIONS(2724), - [anon_sym_interface] = ACTIONS(2724), - [anon_sym_PLUS_PLUS] = ACTIONS(2724), - [anon_sym_DASH_DASH] = ACTIONS(2724), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_BANG] = ACTIONS(2724), - [anon_sym_go] = ACTIONS(2724), - [anon_sym_spawn] = ACTIONS(2724), - [anon_sym_json_DOTdecode] = ACTIONS(2724), - [anon_sym_LBRACK2] = ACTIONS(2724), - [anon_sym_TILDE] = ACTIONS(2724), - [anon_sym_CARET] = ACTIONS(2724), - [anon_sym_AMP] = ACTIONS(2724), - [anon_sym_LT_DASH] = ACTIONS(2724), - [anon_sym_LT_LT] = ACTIONS(2724), - [anon_sym_GT_GT] = ACTIONS(2724), - [anon_sym_GT_GT_GT] = ACTIONS(2724), - [anon_sym_AMP_CARET] = ACTIONS(2724), - [anon_sym_AMP_AMP] = ACTIONS(2724), - [anon_sym_PIPE_PIPE] = ACTIONS(2724), - [anon_sym_or] = ACTIONS(2724), - [sym_none] = ACTIONS(2724), - [sym_true] = ACTIONS(2724), - [sym_false] = ACTIONS(2724), - [sym_nil] = ACTIONS(2724), - [anon_sym_QMARK_DOT] = ACTIONS(2724), - [anon_sym_POUND_LBRACK] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_DOLLARif] = ACTIONS(2724), - [anon_sym_is] = ACTIONS(2724), - [anon_sym_BANGis] = ACTIONS(2724), - [anon_sym_in] = ACTIONS(2724), - [anon_sym_BANGin] = ACTIONS(2724), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2724), - [anon_sym_STAR_EQ] = ACTIONS(2724), - [anon_sym_SLASH_EQ] = ACTIONS(2724), - [anon_sym_PERCENT_EQ] = ACTIONS(2724), - [anon_sym_LT_LT_EQ] = ACTIONS(2724), - [anon_sym_GT_GT_EQ] = ACTIONS(2724), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2724), - [anon_sym_AMP_EQ] = ACTIONS(2724), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2724), - [anon_sym_PLUS_EQ] = ACTIONS(2724), - [anon_sym_DASH_EQ] = ACTIONS(2724), - [anon_sym_PIPE_EQ] = ACTIONS(2724), - [anon_sym_CARET_EQ] = ACTIONS(2724), - [anon_sym_COLON_EQ] = ACTIONS(2724), - [anon_sym_lock] = ACTIONS(2724), - [anon_sym_rlock] = ACTIONS(2724), - [anon_sym_unsafe] = ACTIONS(2724), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(2724), - [sym_float_literal] = ACTIONS(2724), - [sym_rune_literal] = ACTIONS(2724), - [sym_pseudo_compile_time_identifier] = ACTIONS(2724), - [anon_sym_shared] = ACTIONS(2724), - [anon_sym_map_LBRACK] = ACTIONS(2724), - [anon_sym_chan] = ACTIONS(2724), - [anon_sym_thread] = ACTIONS(2724), - [anon_sym_atomic] = ACTIONS(2724), - [anon_sym_assert] = ACTIONS(2724), - [anon_sym_defer] = ACTIONS(2724), - [anon_sym_goto] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_DOLLARfor] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(2724), - [anon_sym_asm] = ACTIONS(2724), - [anon_sym_AT_LBRACK] = ACTIONS(2724), - [sym___double_quote] = ACTIONS(2724), - [sym___single_quote] = ACTIONS(2724), - [sym___c_double_quote] = ACTIONS(2724), - [sym___c_single_quote] = ACTIONS(2724), - [sym___r_double_quote] = ACTIONS(2724), - [sym___r_single_quote] = ACTIONS(2724), + [anon_sym_DOT] = ACTIONS(2741), + [anon_sym_as] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_COMMA] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym_EQ] = ACTIONS(2741), + [anon_sym___global] = ACTIONS(2741), + [anon_sym_type] = ACTIONS(2741), + [anon_sym_PIPE] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_SLASH] = ACTIONS(2741), + [anon_sym_PERCENT] = ACTIONS(2741), + [anon_sym_LT] = ACTIONS(2741), + [anon_sym_GT] = ACTIONS(2741), + [anon_sym_EQ_EQ] = ACTIONS(2741), + [anon_sym_BANG_EQ] = ACTIONS(2741), + [anon_sym_LT_EQ] = ACTIONS(2741), + [anon_sym_GT_EQ] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_union] = ACTIONS(2741), + [anon_sym_pub] = ACTIONS(2741), + [anon_sym_mut] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_interface] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2741), + [anon_sym_DASH_DASH] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_go] = ACTIONS(2741), + [anon_sym_spawn] = ACTIONS(2741), + [anon_sym_json_DOTdecode] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2741), + [anon_sym_CARET] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LT_LT] = ACTIONS(2741), + [anon_sym_GT_GT] = ACTIONS(2741), + [anon_sym_GT_GT_GT] = ACTIONS(2741), + [anon_sym_AMP_CARET] = ACTIONS(2741), + [anon_sym_AMP_AMP] = ACTIONS(2741), + [anon_sym_PIPE_PIPE] = ACTIONS(2741), + [anon_sym_or] = ACTIONS(2741), + [sym_none] = ACTIONS(2741), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_nil] = ACTIONS(2741), + [anon_sym_QMARK_DOT] = ACTIONS(2741), + [anon_sym_POUND_LBRACK] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_DOLLARif] = ACTIONS(2741), + [anon_sym_is] = ACTIONS(2741), + [anon_sym_BANGis] = ACTIONS(2741), + [anon_sym_in] = ACTIONS(2741), + [anon_sym_BANGin] = ACTIONS(2741), + [anon_sym_match] = ACTIONS(2741), + [anon_sym_select] = ACTIONS(2741), + [anon_sym_STAR_EQ] = ACTIONS(2741), + [anon_sym_SLASH_EQ] = ACTIONS(2741), + [anon_sym_PERCENT_EQ] = ACTIONS(2741), + [anon_sym_LT_LT_EQ] = ACTIONS(2741), + [anon_sym_GT_GT_EQ] = ACTIONS(2741), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2741), + [anon_sym_AMP_EQ] = ACTIONS(2741), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2741), + [anon_sym_PLUS_EQ] = ACTIONS(2741), + [anon_sym_DASH_EQ] = ACTIONS(2741), + [anon_sym_PIPE_EQ] = ACTIONS(2741), + [anon_sym_CARET_EQ] = ACTIONS(2741), + [anon_sym_COLON_EQ] = ACTIONS(2741), + [anon_sym_lock] = ACTIONS(2741), + [anon_sym_rlock] = ACTIONS(2741), + [anon_sym_unsafe] = ACTIONS(2741), + [anon_sym_sql] = ACTIONS(2741), + [sym_int_literal] = ACTIONS(2741), + [sym_float_literal] = ACTIONS(2741), + [sym_rune_literal] = ACTIONS(2741), + [anon_sym_SQUOTE] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2741), + [anon_sym_c_SQUOTE] = ACTIONS(2741), + [anon_sym_c_DQUOTE] = ACTIONS(2741), + [anon_sym_r_SQUOTE] = ACTIONS(2741), + [anon_sym_r_DQUOTE] = ACTIONS(2741), + [sym_pseudo_compile_time_identifier] = ACTIONS(2741), + [anon_sym_shared] = ACTIONS(2741), + [anon_sym_map_LBRACK] = ACTIONS(2741), + [anon_sym_chan] = ACTIONS(2741), + [anon_sym_thread] = ACTIONS(2741), + [anon_sym_atomic] = ACTIONS(2741), + [anon_sym_assert] = ACTIONS(2741), + [anon_sym_defer] = ACTIONS(2741), + [anon_sym_goto] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_DOLLARfor] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_POUND] = ACTIONS(2741), + [anon_sym_asm] = ACTIONS(2741), + [anon_sym_AT_LBRACK] = ACTIONS(2741), }, [426] = { [sym_line_comment] = STATE(426), [sym_block_comment] = STATE(426), - [ts_builtin_sym_end] = ACTIONS(2726), - [sym_identifier] = ACTIONS(2728), - [anon_sym_LF] = ACTIONS(2728), - [anon_sym_CR] = ACTIONS(2728), - [anon_sym_CR_LF] = ACTIONS(2728), + [ts_builtin_sym_end] = ACTIONS(2743), + [sym_identifier] = ACTIONS(2745), + [anon_sym_LF] = ACTIONS(2745), + [anon_sym_CR] = ACTIONS(2745), + [anon_sym_CR_LF] = ACTIONS(2745), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2728), - [anon_sym_as] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_COMMA] = ACTIONS(2728), - [anon_sym_const] = ACTIONS(2728), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_EQ] = ACTIONS(2728), - [anon_sym___global] = ACTIONS(2728), - [anon_sym_type] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_fn] = ACTIONS(2728), - [anon_sym_PLUS] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2728), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2728), - [anon_sym_PERCENT] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2728), - [anon_sym_GT] = ACTIONS(2728), - [anon_sym_EQ_EQ] = ACTIONS(2728), - [anon_sym_BANG_EQ] = ACTIONS(2728), - [anon_sym_LT_EQ] = ACTIONS(2728), - [anon_sym_GT_EQ] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_struct] = ACTIONS(2728), - [anon_sym_union] = ACTIONS(2728), - [anon_sym_pub] = ACTIONS(2728), - [anon_sym_mut] = ACTIONS(2728), - [anon_sym_enum] = ACTIONS(2728), - [anon_sym_interface] = ACTIONS(2728), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_QMARK] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2728), - [anon_sym_go] = ACTIONS(2728), - [anon_sym_spawn] = ACTIONS(2728), - [anon_sym_json_DOTdecode] = ACTIONS(2728), - [anon_sym_LBRACK2] = ACTIONS(2728), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_CARET] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2728), - [anon_sym_LT_DASH] = ACTIONS(2728), - [anon_sym_LT_LT] = ACTIONS(2728), - [anon_sym_GT_GT] = ACTIONS(2728), - [anon_sym_GT_GT_GT] = ACTIONS(2728), - [anon_sym_AMP_CARET] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [anon_sym_or] = ACTIONS(2728), - [sym_none] = ACTIONS(2728), - [sym_true] = ACTIONS(2728), - [sym_false] = ACTIONS(2728), - [sym_nil] = ACTIONS(2728), - [anon_sym_QMARK_DOT] = ACTIONS(2728), - [anon_sym_POUND_LBRACK] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2728), - [anon_sym_DOLLARif] = ACTIONS(2728), - [anon_sym_is] = ACTIONS(2728), - [anon_sym_BANGis] = ACTIONS(2728), - [anon_sym_in] = ACTIONS(2728), - [anon_sym_BANGin] = ACTIONS(2728), - [anon_sym_match] = ACTIONS(2728), - [anon_sym_select] = ACTIONS(2728), - [anon_sym_STAR_EQ] = ACTIONS(2728), - [anon_sym_SLASH_EQ] = ACTIONS(2728), - [anon_sym_PERCENT_EQ] = ACTIONS(2728), - [anon_sym_LT_LT_EQ] = ACTIONS(2728), - [anon_sym_GT_GT_EQ] = ACTIONS(2728), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2728), - [anon_sym_AMP_EQ] = ACTIONS(2728), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2728), - [anon_sym_PLUS_EQ] = ACTIONS(2728), - [anon_sym_DASH_EQ] = ACTIONS(2728), - [anon_sym_PIPE_EQ] = ACTIONS(2728), - [anon_sym_CARET_EQ] = ACTIONS(2728), - [anon_sym_COLON_EQ] = ACTIONS(2728), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2728), - [anon_sym_sql] = ACTIONS(2728), - [sym_int_literal] = ACTIONS(2728), - [sym_float_literal] = ACTIONS(2728), - [sym_rune_literal] = ACTIONS(2728), - [sym_pseudo_compile_time_identifier] = ACTIONS(2728), - [anon_sym_shared] = ACTIONS(2728), - [anon_sym_map_LBRACK] = ACTIONS(2728), - [anon_sym_chan] = ACTIONS(2728), - [anon_sym_thread] = ACTIONS(2728), - [anon_sym_atomic] = ACTIONS(2728), - [anon_sym_assert] = ACTIONS(2728), - [anon_sym_defer] = ACTIONS(2728), - [anon_sym_goto] = ACTIONS(2728), - [anon_sym_break] = ACTIONS(2728), - [anon_sym_continue] = ACTIONS(2728), - [anon_sym_return] = ACTIONS(2728), - [anon_sym_DOLLARfor] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(2728), - [anon_sym_asm] = ACTIONS(2728), - [anon_sym_AT_LBRACK] = ACTIONS(2728), - [sym___double_quote] = ACTIONS(2728), - [sym___single_quote] = ACTIONS(2728), - [sym___c_double_quote] = ACTIONS(2728), - [sym___c_single_quote] = ACTIONS(2728), - [sym___r_double_quote] = ACTIONS(2728), - [sym___r_single_quote] = ACTIONS(2728), + [anon_sym_DOT] = ACTIONS(2745), + [anon_sym_as] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_COMMA] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2745), + [anon_sym_EQ] = ACTIONS(2745), + [anon_sym___global] = ACTIONS(2745), + [anon_sym_type] = ACTIONS(2745), + [anon_sym_PIPE] = ACTIONS(2745), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_SLASH] = ACTIONS(2745), + [anon_sym_PERCENT] = ACTIONS(2745), + [anon_sym_LT] = ACTIONS(2745), + [anon_sym_GT] = ACTIONS(2745), + [anon_sym_EQ_EQ] = ACTIONS(2745), + [anon_sym_BANG_EQ] = ACTIONS(2745), + [anon_sym_LT_EQ] = ACTIONS(2745), + [anon_sym_GT_EQ] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_union] = ACTIONS(2745), + [anon_sym_pub] = ACTIONS(2745), + [anon_sym_mut] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_interface] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_QMARK] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_go] = ACTIONS(2745), + [anon_sym_spawn] = ACTIONS(2745), + [anon_sym_json_DOTdecode] = ACTIONS(2745), + [anon_sym_LBRACK2] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_CARET] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_LT_DASH] = ACTIONS(2745), + [anon_sym_LT_LT] = ACTIONS(2745), + [anon_sym_GT_GT] = ACTIONS(2745), + [anon_sym_GT_GT_GT] = ACTIONS(2745), + [anon_sym_AMP_CARET] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_PIPE_PIPE] = ACTIONS(2745), + [anon_sym_or] = ACTIONS(2745), + [sym_none] = ACTIONS(2745), + [sym_true] = ACTIONS(2745), + [sym_false] = ACTIONS(2745), + [sym_nil] = ACTIONS(2745), + [anon_sym_QMARK_DOT] = ACTIONS(2745), + [anon_sym_POUND_LBRACK] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_DOLLARif] = ACTIONS(2745), + [anon_sym_is] = ACTIONS(2745), + [anon_sym_BANGis] = ACTIONS(2745), + [anon_sym_in] = ACTIONS(2745), + [anon_sym_BANGin] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(2745), + [anon_sym_STAR_EQ] = ACTIONS(2745), + [anon_sym_SLASH_EQ] = ACTIONS(2745), + [anon_sym_PERCENT_EQ] = ACTIONS(2745), + [anon_sym_LT_LT_EQ] = ACTIONS(2745), + [anon_sym_GT_GT_EQ] = ACTIONS(2745), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2745), + [anon_sym_AMP_EQ] = ACTIONS(2745), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2745), + [anon_sym_PLUS_EQ] = ACTIONS(2745), + [anon_sym_DASH_EQ] = ACTIONS(2745), + [anon_sym_PIPE_EQ] = ACTIONS(2745), + [anon_sym_CARET_EQ] = ACTIONS(2745), + [anon_sym_COLON_EQ] = ACTIONS(2745), + [anon_sym_lock] = ACTIONS(2745), + [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_unsafe] = ACTIONS(2745), + [anon_sym_sql] = ACTIONS(2745), + [sym_int_literal] = ACTIONS(2745), + [sym_float_literal] = ACTIONS(2745), + [sym_rune_literal] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [anon_sym_c_SQUOTE] = ACTIONS(2745), + [anon_sym_c_DQUOTE] = ACTIONS(2745), + [anon_sym_r_SQUOTE] = ACTIONS(2745), + [anon_sym_r_DQUOTE] = ACTIONS(2745), + [sym_pseudo_compile_time_identifier] = ACTIONS(2745), + [anon_sym_shared] = ACTIONS(2745), + [anon_sym_map_LBRACK] = ACTIONS(2745), + [anon_sym_chan] = ACTIONS(2745), + [anon_sym_thread] = ACTIONS(2745), + [anon_sym_atomic] = ACTIONS(2745), + [anon_sym_assert] = ACTIONS(2745), + [anon_sym_defer] = ACTIONS(2745), + [anon_sym_goto] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_DOLLARfor] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_POUND] = ACTIONS(2745), + [anon_sym_asm] = ACTIONS(2745), + [anon_sym_AT_LBRACK] = ACTIONS(2745), }, [427] = { [sym_line_comment] = STATE(427), [sym_block_comment] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(2730), - [sym_identifier] = ACTIONS(2732), - [anon_sym_LF] = ACTIONS(2732), - [anon_sym_CR] = ACTIONS(2732), - [anon_sym_CR_LF] = ACTIONS(2732), + [ts_builtin_sym_end] = ACTIONS(2747), + [sym_identifier] = ACTIONS(2749), + [anon_sym_LF] = ACTIONS(2749), + [anon_sym_CR] = ACTIONS(2749), + [anon_sym_CR_LF] = ACTIONS(2749), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2732), - [anon_sym_as] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_COMMA] = ACTIONS(2732), - [anon_sym_const] = ACTIONS(2732), - [anon_sym_LPAREN] = ACTIONS(2732), - [anon_sym_EQ] = ACTIONS(2732), - [anon_sym___global] = ACTIONS(2732), - [anon_sym_type] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_fn] = ACTIONS(2732), - [anon_sym_PLUS] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2732), - [anon_sym_STAR] = ACTIONS(2732), - [anon_sym_SLASH] = ACTIONS(2732), - [anon_sym_PERCENT] = ACTIONS(2732), - [anon_sym_LT] = ACTIONS(2732), - [anon_sym_GT] = ACTIONS(2732), - [anon_sym_EQ_EQ] = ACTIONS(2732), - [anon_sym_BANG_EQ] = ACTIONS(2732), - [anon_sym_LT_EQ] = ACTIONS(2732), - [anon_sym_GT_EQ] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_struct] = ACTIONS(2732), - [anon_sym_union] = ACTIONS(2732), - [anon_sym_pub] = ACTIONS(2732), - [anon_sym_mut] = ACTIONS(2732), - [anon_sym_enum] = ACTIONS(2732), - [anon_sym_interface] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2732), - [anon_sym_DASH_DASH] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2732), - [anon_sym_go] = ACTIONS(2732), - [anon_sym_spawn] = ACTIONS(2732), - [anon_sym_json_DOTdecode] = ACTIONS(2732), - [anon_sym_LBRACK2] = ACTIONS(2732), - [anon_sym_TILDE] = ACTIONS(2732), - [anon_sym_CARET] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2732), - [anon_sym_LT_DASH] = ACTIONS(2732), - [anon_sym_LT_LT] = ACTIONS(2732), - [anon_sym_GT_GT] = ACTIONS(2732), - [anon_sym_GT_GT_GT] = ACTIONS(2732), - [anon_sym_AMP_CARET] = ACTIONS(2732), - [anon_sym_AMP_AMP] = ACTIONS(2732), - [anon_sym_PIPE_PIPE] = ACTIONS(2732), - [anon_sym_or] = ACTIONS(2732), - [sym_none] = ACTIONS(2732), - [sym_true] = ACTIONS(2732), - [sym_false] = ACTIONS(2732), - [sym_nil] = ACTIONS(2732), - [anon_sym_QMARK_DOT] = ACTIONS(2732), - [anon_sym_POUND_LBRACK] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_DOLLARif] = ACTIONS(2732), - [anon_sym_is] = ACTIONS(2732), - [anon_sym_BANGis] = ACTIONS(2732), - [anon_sym_in] = ACTIONS(2732), - [anon_sym_BANGin] = ACTIONS(2732), - [anon_sym_match] = ACTIONS(2732), - [anon_sym_select] = ACTIONS(2732), - [anon_sym_STAR_EQ] = ACTIONS(2732), - [anon_sym_SLASH_EQ] = ACTIONS(2732), - [anon_sym_PERCENT_EQ] = ACTIONS(2732), - [anon_sym_LT_LT_EQ] = ACTIONS(2732), - [anon_sym_GT_GT_EQ] = ACTIONS(2732), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2732), - [anon_sym_AMP_EQ] = ACTIONS(2732), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2732), - [anon_sym_PLUS_EQ] = ACTIONS(2732), - [anon_sym_DASH_EQ] = ACTIONS(2732), - [anon_sym_PIPE_EQ] = ACTIONS(2732), - [anon_sym_CARET_EQ] = ACTIONS(2732), - [anon_sym_COLON_EQ] = ACTIONS(2732), - [anon_sym_lock] = ACTIONS(2732), - [anon_sym_rlock] = ACTIONS(2732), - [anon_sym_unsafe] = ACTIONS(2732), - [anon_sym_sql] = ACTIONS(2732), - [sym_int_literal] = ACTIONS(2732), - [sym_float_literal] = ACTIONS(2732), - [sym_rune_literal] = ACTIONS(2732), - [sym_pseudo_compile_time_identifier] = ACTIONS(2732), - [anon_sym_shared] = ACTIONS(2732), - [anon_sym_map_LBRACK] = ACTIONS(2732), - [anon_sym_chan] = ACTIONS(2732), - [anon_sym_thread] = ACTIONS(2732), - [anon_sym_atomic] = ACTIONS(2732), - [anon_sym_assert] = ACTIONS(2732), - [anon_sym_defer] = ACTIONS(2732), - [anon_sym_goto] = ACTIONS(2732), - [anon_sym_break] = ACTIONS(2732), - [anon_sym_continue] = ACTIONS(2732), - [anon_sym_return] = ACTIONS(2732), - [anon_sym_DOLLARfor] = ACTIONS(2732), - [anon_sym_for] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(2732), - [anon_sym_asm] = ACTIONS(2732), - [anon_sym_AT_LBRACK] = ACTIONS(2732), - [sym___double_quote] = ACTIONS(2732), - [sym___single_quote] = ACTIONS(2732), - [sym___c_double_quote] = ACTIONS(2732), - [sym___c_single_quote] = ACTIONS(2732), - [sym___r_double_quote] = ACTIONS(2732), - [sym___r_single_quote] = ACTIONS(2732), + [anon_sym_DOT] = ACTIONS(2749), + [anon_sym_as] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_COMMA] = ACTIONS(2749), + [anon_sym_const] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(2749), + [anon_sym_EQ] = ACTIONS(2749), + [anon_sym___global] = ACTIONS(2749), + [anon_sym_type] = ACTIONS(2749), + [anon_sym_PIPE] = ACTIONS(2749), + [anon_sym_fn] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_SLASH] = ACTIONS(2749), + [anon_sym_PERCENT] = ACTIONS(2749), + [anon_sym_LT] = ACTIONS(2749), + [anon_sym_GT] = ACTIONS(2749), + [anon_sym_EQ_EQ] = ACTIONS(2749), + [anon_sym_BANG_EQ] = ACTIONS(2749), + [anon_sym_LT_EQ] = ACTIONS(2749), + [anon_sym_GT_EQ] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2749), + [anon_sym_union] = ACTIONS(2749), + [anon_sym_pub] = ACTIONS(2749), + [anon_sym_mut] = ACTIONS(2749), + [anon_sym_enum] = ACTIONS(2749), + [anon_sym_interface] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_QMARK] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_go] = ACTIONS(2749), + [anon_sym_spawn] = ACTIONS(2749), + [anon_sym_json_DOTdecode] = ACTIONS(2749), + [anon_sym_LBRACK2] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_CARET] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_LT_DASH] = ACTIONS(2749), + [anon_sym_LT_LT] = ACTIONS(2749), + [anon_sym_GT_GT] = ACTIONS(2749), + [anon_sym_GT_GT_GT] = ACTIONS(2749), + [anon_sym_AMP_CARET] = ACTIONS(2749), + [anon_sym_AMP_AMP] = ACTIONS(2749), + [anon_sym_PIPE_PIPE] = ACTIONS(2749), + [anon_sym_or] = ACTIONS(2749), + [sym_none] = ACTIONS(2749), + [sym_true] = ACTIONS(2749), + [sym_false] = ACTIONS(2749), + [sym_nil] = ACTIONS(2749), + [anon_sym_QMARK_DOT] = ACTIONS(2749), + [anon_sym_POUND_LBRACK] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_DOLLARif] = ACTIONS(2749), + [anon_sym_is] = ACTIONS(2749), + [anon_sym_BANGis] = ACTIONS(2749), + [anon_sym_in] = ACTIONS(2749), + [anon_sym_BANGin] = ACTIONS(2749), + [anon_sym_match] = ACTIONS(2749), + [anon_sym_select] = ACTIONS(2749), + [anon_sym_STAR_EQ] = ACTIONS(2749), + [anon_sym_SLASH_EQ] = ACTIONS(2749), + [anon_sym_PERCENT_EQ] = ACTIONS(2749), + [anon_sym_LT_LT_EQ] = ACTIONS(2749), + [anon_sym_GT_GT_EQ] = ACTIONS(2749), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2749), + [anon_sym_AMP_EQ] = ACTIONS(2749), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2749), + [anon_sym_PLUS_EQ] = ACTIONS(2749), + [anon_sym_DASH_EQ] = ACTIONS(2749), + [anon_sym_PIPE_EQ] = ACTIONS(2749), + [anon_sym_CARET_EQ] = ACTIONS(2749), + [anon_sym_COLON_EQ] = ACTIONS(2749), + [anon_sym_lock] = ACTIONS(2749), + [anon_sym_rlock] = ACTIONS(2749), + [anon_sym_unsafe] = ACTIONS(2749), + [anon_sym_sql] = ACTIONS(2749), + [sym_int_literal] = ACTIONS(2749), + [sym_float_literal] = ACTIONS(2749), + [sym_rune_literal] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [anon_sym_c_SQUOTE] = ACTIONS(2749), + [anon_sym_c_DQUOTE] = ACTIONS(2749), + [anon_sym_r_SQUOTE] = ACTIONS(2749), + [anon_sym_r_DQUOTE] = ACTIONS(2749), + [sym_pseudo_compile_time_identifier] = ACTIONS(2749), + [anon_sym_shared] = ACTIONS(2749), + [anon_sym_map_LBRACK] = ACTIONS(2749), + [anon_sym_chan] = ACTIONS(2749), + [anon_sym_thread] = ACTIONS(2749), + [anon_sym_atomic] = ACTIONS(2749), + [anon_sym_assert] = ACTIONS(2749), + [anon_sym_defer] = ACTIONS(2749), + [anon_sym_goto] = ACTIONS(2749), + [anon_sym_break] = ACTIONS(2749), + [anon_sym_continue] = ACTIONS(2749), + [anon_sym_return] = ACTIONS(2749), + [anon_sym_DOLLARfor] = ACTIONS(2749), + [anon_sym_for] = ACTIONS(2749), + [anon_sym_POUND] = ACTIONS(2749), + [anon_sym_asm] = ACTIONS(2749), + [anon_sym_AT_LBRACK] = ACTIONS(2749), }, [428] = { [sym_line_comment] = STATE(428), [sym_block_comment] = STATE(428), - [ts_builtin_sym_end] = ACTIONS(2734), - [sym_identifier] = ACTIONS(2736), - [anon_sym_LF] = ACTIONS(2736), - [anon_sym_CR] = ACTIONS(2736), - [anon_sym_CR_LF] = ACTIONS(2736), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_as] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_COMMA] = ACTIONS(2736), - [anon_sym_const] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_EQ] = ACTIONS(2736), - [anon_sym___global] = ACTIONS(2736), - [anon_sym_type] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_fn] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_PERCENT] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2736), - [anon_sym_EQ_EQ] = ACTIONS(2736), - [anon_sym_BANG_EQ] = ACTIONS(2736), - [anon_sym_LT_EQ] = ACTIONS(2736), - [anon_sym_GT_EQ] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_union] = ACTIONS(2736), - [anon_sym_pub] = ACTIONS(2736), - [anon_sym_mut] = ACTIONS(2736), - [anon_sym_enum] = ACTIONS(2736), - [anon_sym_interface] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_go] = ACTIONS(2736), - [anon_sym_spawn] = ACTIONS(2736), - [anon_sym_json_DOTdecode] = ACTIONS(2736), - [anon_sym_LBRACK2] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_CARET] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_LT_DASH] = ACTIONS(2736), - [anon_sym_LT_LT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_GT_GT_GT] = ACTIONS(2736), - [anon_sym_AMP_CARET] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(2736), - [anon_sym_or] = ACTIONS(2736), - [sym_none] = ACTIONS(2736), - [sym_true] = ACTIONS(2736), - [sym_false] = ACTIONS(2736), - [sym_nil] = ACTIONS(2736), - [anon_sym_QMARK_DOT] = ACTIONS(2736), - [anon_sym_POUND_LBRACK] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_DOLLARif] = ACTIONS(2736), - [anon_sym_is] = ACTIONS(2736), - [anon_sym_BANGis] = ACTIONS(2736), - [anon_sym_in] = ACTIONS(2736), - [anon_sym_BANGin] = ACTIONS(2736), - [anon_sym_match] = ACTIONS(2736), - [anon_sym_select] = ACTIONS(2736), - [anon_sym_STAR_EQ] = ACTIONS(2736), - [anon_sym_SLASH_EQ] = ACTIONS(2736), - [anon_sym_PERCENT_EQ] = ACTIONS(2736), - [anon_sym_LT_LT_EQ] = ACTIONS(2736), - [anon_sym_GT_GT_EQ] = ACTIONS(2736), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2736), - [anon_sym_AMP_EQ] = ACTIONS(2736), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2736), - [anon_sym_PLUS_EQ] = ACTIONS(2736), - [anon_sym_DASH_EQ] = ACTIONS(2736), - [anon_sym_PIPE_EQ] = ACTIONS(2736), - [anon_sym_CARET_EQ] = ACTIONS(2736), - [anon_sym_COLON_EQ] = ACTIONS(2736), - [anon_sym_lock] = ACTIONS(2736), - [anon_sym_rlock] = ACTIONS(2736), - [anon_sym_unsafe] = ACTIONS(2736), - [anon_sym_sql] = ACTIONS(2736), - [sym_int_literal] = ACTIONS(2736), - [sym_float_literal] = ACTIONS(2736), - [sym_rune_literal] = ACTIONS(2736), - [sym_pseudo_compile_time_identifier] = ACTIONS(2736), - [anon_sym_shared] = ACTIONS(2736), - [anon_sym_map_LBRACK] = ACTIONS(2736), - [anon_sym_chan] = ACTIONS(2736), - [anon_sym_thread] = ACTIONS(2736), - [anon_sym_atomic] = ACTIONS(2736), - [anon_sym_assert] = ACTIONS(2736), - [anon_sym_defer] = ACTIONS(2736), - [anon_sym_goto] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_return] = ACTIONS(2736), - [anon_sym_DOLLARfor] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(2736), - [anon_sym_asm] = ACTIONS(2736), - [anon_sym_AT_LBRACK] = ACTIONS(2736), - [sym___double_quote] = ACTIONS(2736), - [sym___single_quote] = ACTIONS(2736), - [sym___c_double_quote] = ACTIONS(2736), - [sym___c_single_quote] = ACTIONS(2736), - [sym___r_double_quote] = ACTIONS(2736), - [sym___r_single_quote] = ACTIONS(2736), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1398), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1396), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(407), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2751), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [429] = { [sym_line_comment] = STATE(429), [sym_block_comment] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_CR] = ACTIONS(2740), - [anon_sym_CR_LF] = ACTIONS(2740), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_const] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym___global] = ACTIONS(2740), - [anon_sym_type] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2740), - [anon_sym_BANG_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(2740), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2740), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_CARET] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2740), - [anon_sym_POUND_LBRACK] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2740), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_STAR_EQ] = ACTIONS(2740), - [anon_sym_SLASH_EQ] = ACTIONS(2740), - [anon_sym_PERCENT_EQ] = ACTIONS(2740), - [anon_sym_LT_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_GT_EQ] = ACTIONS(2740), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2740), - [anon_sym_AMP_EQ] = ACTIONS(2740), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2740), - [anon_sym_PLUS_EQ] = ACTIONS(2740), - [anon_sym_DASH_EQ] = ACTIONS(2740), - [anon_sym_PIPE_EQ] = ACTIONS(2740), - [anon_sym_CARET_EQ] = ACTIONS(2740), - [anon_sym_COLON_EQ] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2740), - [sym_rune_literal] = ACTIONS(2740), - [sym_pseudo_compile_time_identifier] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2740), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [anon_sym_assert] = ACTIONS(2740), - [anon_sym_defer] = ACTIONS(2740), - [anon_sym_goto] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_DOLLARfor] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(2740), - [anon_sym_asm] = ACTIONS(2740), - [anon_sym_AT_LBRACK] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2740), - [sym___single_quote] = ACTIONS(2740), - [sym___c_double_quote] = ACTIONS(2740), - [sym___c_single_quote] = ACTIONS(2740), - [sym___r_double_quote] = ACTIONS(2740), - [sym___r_single_quote] = ACTIONS(2740), + [sym__expression] = STATE(2594), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3548), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4416), + [sym_identifier] = ACTIONS(2391), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [430] = { [sym_line_comment] = STATE(430), [sym_block_comment] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LF] = ACTIONS(2217), - [anon_sym_CR] = ACTIONS(2217), - [anon_sym_CR_LF] = ACTIONS(2217), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2219), - [anon_sym_as] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2217), - [anon_sym_COMMA] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_EQ] = ACTIONS(2217), - [anon_sym___global] = ACTIONS(2217), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2219), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_GT] = ACTIONS(2219), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2219), - [anon_sym_GT_EQ] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_union] = ACTIONS(2217), - [anon_sym_pub] = ACTIONS(2217), - [anon_sym_mut] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), - [anon_sym_interface] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2219), - [anon_sym_DASH_DASH] = ACTIONS(2219), - [anon_sym_QMARK] = ACTIONS(2219), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_go] = ACTIONS(2217), - [anon_sym_spawn] = ACTIONS(2217), - [anon_sym_json_DOTdecode] = ACTIONS(2217), - [anon_sym_LBRACK2] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2219), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2219), - [anon_sym_AMP_CARET] = ACTIONS(2219), - [anon_sym_AMP_AMP] = ACTIONS(2219), - [anon_sym_PIPE_PIPE] = ACTIONS(2219), - [anon_sym_or] = ACTIONS(2219), - [sym_none] = ACTIONS(2217), - [sym_true] = ACTIONS(2217), - [sym_false] = ACTIONS(2217), - [sym_nil] = ACTIONS(2217), - [anon_sym_QMARK_DOT] = ACTIONS(2219), - [anon_sym_POUND_LBRACK] = ACTIONS(2219), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_DOLLARif] = ACTIONS(2217), - [anon_sym_is] = ACTIONS(2219), - [anon_sym_BANGis] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_BANGin] = ACTIONS(2219), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_select] = ACTIONS(2217), - [anon_sym_STAR_EQ] = ACTIONS(2217), - [anon_sym_SLASH_EQ] = ACTIONS(2217), - [anon_sym_PERCENT_EQ] = ACTIONS(2217), - [anon_sym_LT_LT_EQ] = ACTIONS(2217), - [anon_sym_GT_GT_EQ] = ACTIONS(2217), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2217), - [anon_sym_AMP_EQ] = ACTIONS(2217), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2217), - [anon_sym_PLUS_EQ] = ACTIONS(2217), - [anon_sym_DASH_EQ] = ACTIONS(2217), - [anon_sym_PIPE_EQ] = ACTIONS(2217), - [anon_sym_CARET_EQ] = ACTIONS(2217), - [anon_sym_COLON_EQ] = ACTIONS(2217), - [anon_sym_lock] = ACTIONS(2217), - [anon_sym_rlock] = ACTIONS(2217), - [anon_sym_unsafe] = ACTIONS(2217), - [anon_sym_sql] = ACTIONS(2217), - [sym_int_literal] = ACTIONS(2217), - [sym_float_literal] = ACTIONS(2217), - [sym_rune_literal] = ACTIONS(2217), - [sym_pseudo_compile_time_identifier] = ACTIONS(2217), - [anon_sym_shared] = ACTIONS(2217), - [anon_sym_map_LBRACK] = ACTIONS(2217), - [anon_sym_chan] = ACTIONS(2217), - [anon_sym_thread] = ACTIONS(2217), - [anon_sym_atomic] = ACTIONS(2217), - [anon_sym_assert] = ACTIONS(2217), - [anon_sym_defer] = ACTIONS(2217), - [anon_sym_goto] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_DOLLARfor] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_POUND] = ACTIONS(2217), - [anon_sym_asm] = ACTIONS(2217), - [anon_sym_AT_LBRACK] = ACTIONS(2217), - [sym___double_quote] = ACTIONS(2217), - [sym___single_quote] = ACTIONS(2217), - [sym___c_double_quote] = ACTIONS(2217), - [sym___c_single_quote] = ACTIONS(2217), - [sym___r_double_quote] = ACTIONS(2217), - [sym___r_single_quote] = ACTIONS(2217), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2928), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2753), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(2755), + [anon_sym_volatile] = ACTIONS(2757), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [431] = { [sym_line_comment] = STATE(431), [sym_block_comment] = STATE(431), - [ts_builtin_sym_end] = ACTIONS(2742), - [sym_identifier] = ACTIONS(2744), - [anon_sym_LF] = ACTIONS(2744), - [anon_sym_CR] = ACTIONS(2744), - [anon_sym_CR_LF] = ACTIONS(2744), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2744), - [anon_sym_as] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_COMMA] = ACTIONS(2744), - [anon_sym_const] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_EQ] = ACTIONS(2744), - [anon_sym___global] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_fn] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2744), - [anon_sym_SLASH] = ACTIONS(2744), - [anon_sym_PERCENT] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2744), - [anon_sym_GT] = ACTIONS(2744), - [anon_sym_EQ_EQ] = ACTIONS(2744), - [anon_sym_BANG_EQ] = ACTIONS(2744), - [anon_sym_LT_EQ] = ACTIONS(2744), - [anon_sym_GT_EQ] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_struct] = ACTIONS(2744), - [anon_sym_union] = ACTIONS(2744), - [anon_sym_pub] = ACTIONS(2744), - [anon_sym_mut] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), - [anon_sym_interface] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2744), - [anon_sym_DASH_DASH] = ACTIONS(2744), - [anon_sym_QMARK] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2744), - [anon_sym_go] = ACTIONS(2744), - [anon_sym_spawn] = ACTIONS(2744), - [anon_sym_json_DOTdecode] = ACTIONS(2744), - [anon_sym_LBRACK2] = ACTIONS(2744), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2744), - [anon_sym_LT_DASH] = ACTIONS(2744), - [anon_sym_LT_LT] = ACTIONS(2744), - [anon_sym_GT_GT] = ACTIONS(2744), - [anon_sym_GT_GT_GT] = ACTIONS(2744), - [anon_sym_AMP_CARET] = ACTIONS(2744), - [anon_sym_AMP_AMP] = ACTIONS(2744), - [anon_sym_PIPE_PIPE] = ACTIONS(2744), - [anon_sym_or] = ACTIONS(2744), - [sym_none] = ACTIONS(2744), - [sym_true] = ACTIONS(2744), - [sym_false] = ACTIONS(2744), - [sym_nil] = ACTIONS(2744), - [anon_sym_QMARK_DOT] = ACTIONS(2744), - [anon_sym_POUND_LBRACK] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_DOLLARif] = ACTIONS(2744), - [anon_sym_is] = ACTIONS(2744), - [anon_sym_BANGis] = ACTIONS(2744), - [anon_sym_in] = ACTIONS(2744), - [anon_sym_BANGin] = ACTIONS(2744), - [anon_sym_match] = ACTIONS(2744), - [anon_sym_select] = ACTIONS(2744), - [anon_sym_STAR_EQ] = ACTIONS(2744), - [anon_sym_SLASH_EQ] = ACTIONS(2744), - [anon_sym_PERCENT_EQ] = ACTIONS(2744), - [anon_sym_LT_LT_EQ] = ACTIONS(2744), - [anon_sym_GT_GT_EQ] = ACTIONS(2744), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2744), - [anon_sym_AMP_EQ] = ACTIONS(2744), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2744), - [anon_sym_PLUS_EQ] = ACTIONS(2744), - [anon_sym_DASH_EQ] = ACTIONS(2744), - [anon_sym_PIPE_EQ] = ACTIONS(2744), - [anon_sym_CARET_EQ] = ACTIONS(2744), - [anon_sym_COLON_EQ] = ACTIONS(2744), - [anon_sym_lock] = ACTIONS(2744), - [anon_sym_rlock] = ACTIONS(2744), - [anon_sym_unsafe] = ACTIONS(2744), - [anon_sym_sql] = ACTIONS(2744), - [sym_int_literal] = ACTIONS(2744), - [sym_float_literal] = ACTIONS(2744), - [sym_rune_literal] = ACTIONS(2744), - [sym_pseudo_compile_time_identifier] = ACTIONS(2744), - [anon_sym_shared] = ACTIONS(2744), - [anon_sym_map_LBRACK] = ACTIONS(2744), - [anon_sym_chan] = ACTIONS(2744), - [anon_sym_thread] = ACTIONS(2744), - [anon_sym_atomic] = ACTIONS(2744), - [anon_sym_assert] = ACTIONS(2744), - [anon_sym_defer] = ACTIONS(2744), - [anon_sym_goto] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_DOLLARfor] = ACTIONS(2744), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(2744), - [anon_sym_asm] = ACTIONS(2744), - [anon_sym_AT_LBRACK] = ACTIONS(2744), - [sym___double_quote] = ACTIONS(2744), - [sym___single_quote] = ACTIONS(2744), - [sym___c_double_quote] = ACTIONS(2744), - [sym___c_single_quote] = ACTIONS(2744), - [sym___r_double_quote] = ACTIONS(2744), - [sym___r_single_quote] = ACTIONS(2744), - }, - [432] = { - [sym_line_comment] = STATE(432), - [sym_block_comment] = STATE(432), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4353), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1370), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_string_interpolation_repeat1] = STATE(479), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(2759), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2493), + [anon_sym_spawn] = ACTIONS(2495), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_LT_DASH] = ACTIONS(2499), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2503), + [anon_sym_rlock] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [432] = { + [sym_line_comment] = STATE(432), + [sym_block_comment] = STATE(432), + [ts_builtin_sym_end] = ACTIONS(2761), + [sym_identifier] = ACTIONS(2763), + [anon_sym_LF] = ACTIONS(2763), + [anon_sym_CR] = ACTIONS(2763), + [anon_sym_CR_LF] = ACTIONS(2763), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2763), + [anon_sym_as] = ACTIONS(2763), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_COMMA] = ACTIONS(2763), + [anon_sym_const] = ACTIONS(2763), + [anon_sym_LPAREN] = ACTIONS(2763), + [anon_sym_EQ] = ACTIONS(2763), + [anon_sym___global] = ACTIONS(2763), + [anon_sym_type] = ACTIONS(2763), + [anon_sym_PIPE] = ACTIONS(2763), + [anon_sym_fn] = ACTIONS(2763), + [anon_sym_PLUS] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_SLASH] = ACTIONS(2763), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(2763), + [anon_sym_GT] = ACTIONS(2763), + [anon_sym_EQ_EQ] = ACTIONS(2763), + [anon_sym_BANG_EQ] = ACTIONS(2763), + [anon_sym_LT_EQ] = ACTIONS(2763), + [anon_sym_GT_EQ] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2763), + [anon_sym_union] = ACTIONS(2763), + [anon_sym_pub] = ACTIONS(2763), + [anon_sym_mut] = ACTIONS(2763), + [anon_sym_enum] = ACTIONS(2763), + [anon_sym_interface] = ACTIONS(2763), + [anon_sym_PLUS_PLUS] = ACTIONS(2763), + [anon_sym_DASH_DASH] = ACTIONS(2763), + [anon_sym_QMARK] = ACTIONS(2763), + [anon_sym_BANG] = ACTIONS(2763), + [anon_sym_go] = ACTIONS(2763), + [anon_sym_spawn] = ACTIONS(2763), + [anon_sym_json_DOTdecode] = ACTIONS(2763), + [anon_sym_LBRACK2] = ACTIONS(2763), + [anon_sym_TILDE] = ACTIONS(2763), + [anon_sym_CARET] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2763), + [anon_sym_LT_LT] = ACTIONS(2763), + [anon_sym_GT_GT] = ACTIONS(2763), + [anon_sym_GT_GT_GT] = ACTIONS(2763), + [anon_sym_AMP_CARET] = ACTIONS(2763), + [anon_sym_AMP_AMP] = ACTIONS(2763), + [anon_sym_PIPE_PIPE] = ACTIONS(2763), + [anon_sym_or] = ACTIONS(2763), + [sym_none] = ACTIONS(2763), + [sym_true] = ACTIONS(2763), + [sym_false] = ACTIONS(2763), + [sym_nil] = ACTIONS(2763), + [anon_sym_QMARK_DOT] = ACTIONS(2763), + [anon_sym_POUND_LBRACK] = ACTIONS(2763), + [anon_sym_if] = ACTIONS(2763), + [anon_sym_DOLLARif] = ACTIONS(2763), + [anon_sym_is] = ACTIONS(2763), + [anon_sym_BANGis] = ACTIONS(2763), + [anon_sym_in] = ACTIONS(2763), + [anon_sym_BANGin] = ACTIONS(2763), + [anon_sym_match] = ACTIONS(2763), + [anon_sym_select] = ACTIONS(2763), + [anon_sym_STAR_EQ] = ACTIONS(2763), + [anon_sym_SLASH_EQ] = ACTIONS(2763), + [anon_sym_PERCENT_EQ] = ACTIONS(2763), + [anon_sym_LT_LT_EQ] = ACTIONS(2763), + [anon_sym_GT_GT_EQ] = ACTIONS(2763), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2763), + [anon_sym_AMP_EQ] = ACTIONS(2763), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2763), + [anon_sym_PLUS_EQ] = ACTIONS(2763), + [anon_sym_DASH_EQ] = ACTIONS(2763), + [anon_sym_PIPE_EQ] = ACTIONS(2763), + [anon_sym_CARET_EQ] = ACTIONS(2763), + [anon_sym_COLON_EQ] = ACTIONS(2763), + [anon_sym_lock] = ACTIONS(2763), + [anon_sym_rlock] = ACTIONS(2763), + [anon_sym_unsafe] = ACTIONS(2763), + [anon_sym_sql] = ACTIONS(2763), + [sym_int_literal] = ACTIONS(2763), + [sym_float_literal] = ACTIONS(2763), + [sym_rune_literal] = ACTIONS(2763), + [anon_sym_SQUOTE] = ACTIONS(2763), + [anon_sym_DQUOTE] = ACTIONS(2763), + [anon_sym_c_SQUOTE] = ACTIONS(2763), + [anon_sym_c_DQUOTE] = ACTIONS(2763), + [anon_sym_r_SQUOTE] = ACTIONS(2763), + [anon_sym_r_DQUOTE] = ACTIONS(2763), + [sym_pseudo_compile_time_identifier] = ACTIONS(2763), + [anon_sym_shared] = ACTIONS(2763), + [anon_sym_map_LBRACK] = ACTIONS(2763), + [anon_sym_chan] = ACTIONS(2763), + [anon_sym_thread] = ACTIONS(2763), + [anon_sym_atomic] = ACTIONS(2763), + [anon_sym_assert] = ACTIONS(2763), + [anon_sym_defer] = ACTIONS(2763), + [anon_sym_goto] = ACTIONS(2763), + [anon_sym_break] = ACTIONS(2763), + [anon_sym_continue] = ACTIONS(2763), + [anon_sym_return] = ACTIONS(2763), + [anon_sym_DOLLARfor] = ACTIONS(2763), + [anon_sym_for] = ACTIONS(2763), + [anon_sym_POUND] = ACTIONS(2763), + [anon_sym_asm] = ACTIONS(2763), + [anon_sym_AT_LBRACK] = ACTIONS(2763), }, [433] = { [sym_line_comment] = STATE(433), [sym_block_comment] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(2748), - [sym_identifier] = ACTIONS(2750), - [anon_sym_LF] = ACTIONS(2750), - [anon_sym_CR] = ACTIONS(2750), - [anon_sym_CR_LF] = ACTIONS(2750), + [ts_builtin_sym_end] = ACTIONS(2765), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LF] = ACTIONS(2767), + [anon_sym_CR] = ACTIONS(2767), + [anon_sym_CR_LF] = ACTIONS(2767), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2750), - [anon_sym_as] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2750), - [anon_sym_COMMA] = ACTIONS(2750), - [anon_sym_const] = ACTIONS(2750), - [anon_sym_LPAREN] = ACTIONS(2750), - [anon_sym_EQ] = ACTIONS(2750), - [anon_sym___global] = ACTIONS(2750), - [anon_sym_type] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_fn] = ACTIONS(2750), - [anon_sym_PLUS] = ACTIONS(2750), - [anon_sym_DASH] = ACTIONS(2750), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_SLASH] = ACTIONS(2750), - [anon_sym_PERCENT] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(2750), - [anon_sym_GT] = ACTIONS(2750), - [anon_sym_EQ_EQ] = ACTIONS(2750), - [anon_sym_BANG_EQ] = ACTIONS(2750), - [anon_sym_LT_EQ] = ACTIONS(2750), - [anon_sym_GT_EQ] = ACTIONS(2750), - [anon_sym_LBRACK] = ACTIONS(2748), - [anon_sym_struct] = ACTIONS(2750), - [anon_sym_union] = ACTIONS(2750), - [anon_sym_pub] = ACTIONS(2750), - [anon_sym_mut] = ACTIONS(2750), - [anon_sym_enum] = ACTIONS(2750), - [anon_sym_interface] = ACTIONS(2750), - [anon_sym_PLUS_PLUS] = ACTIONS(2750), - [anon_sym_DASH_DASH] = ACTIONS(2750), - [anon_sym_QMARK] = ACTIONS(2750), - [anon_sym_BANG] = ACTIONS(2750), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2750), - [anon_sym_json_DOTdecode] = ACTIONS(2750), - [anon_sym_LBRACK2] = ACTIONS(2750), - [anon_sym_TILDE] = ACTIONS(2750), - [anon_sym_CARET] = ACTIONS(2750), - [anon_sym_AMP] = ACTIONS(2750), - [anon_sym_LT_DASH] = ACTIONS(2750), - [anon_sym_LT_LT] = ACTIONS(2750), - [anon_sym_GT_GT] = ACTIONS(2750), - [anon_sym_GT_GT_GT] = ACTIONS(2750), - [anon_sym_AMP_CARET] = ACTIONS(2750), - [anon_sym_AMP_AMP] = ACTIONS(2750), - [anon_sym_PIPE_PIPE] = ACTIONS(2750), - [anon_sym_or] = ACTIONS(2750), - [sym_none] = ACTIONS(2750), - [sym_true] = ACTIONS(2750), - [sym_false] = ACTIONS(2750), - [sym_nil] = ACTIONS(2750), - [anon_sym_QMARK_DOT] = ACTIONS(2750), - [anon_sym_POUND_LBRACK] = ACTIONS(2750), - [anon_sym_if] = ACTIONS(2750), - [anon_sym_DOLLARif] = ACTIONS(2750), - [anon_sym_is] = ACTIONS(2750), - [anon_sym_BANGis] = ACTIONS(2750), - [anon_sym_in] = ACTIONS(2750), - [anon_sym_BANGin] = ACTIONS(2750), - [anon_sym_match] = ACTIONS(2750), - [anon_sym_select] = ACTIONS(2750), - [anon_sym_STAR_EQ] = ACTIONS(2750), - [anon_sym_SLASH_EQ] = ACTIONS(2750), - [anon_sym_PERCENT_EQ] = ACTIONS(2750), - [anon_sym_LT_LT_EQ] = ACTIONS(2750), - [anon_sym_GT_GT_EQ] = ACTIONS(2750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2750), - [anon_sym_AMP_EQ] = ACTIONS(2750), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2750), - [anon_sym_PLUS_EQ] = ACTIONS(2750), - [anon_sym_DASH_EQ] = ACTIONS(2750), - [anon_sym_PIPE_EQ] = ACTIONS(2750), - [anon_sym_CARET_EQ] = ACTIONS(2750), - [anon_sym_COLON_EQ] = ACTIONS(2750), - [anon_sym_lock] = ACTIONS(2750), - [anon_sym_rlock] = ACTIONS(2750), - [anon_sym_unsafe] = ACTIONS(2750), - [anon_sym_sql] = ACTIONS(2750), - [sym_int_literal] = ACTIONS(2750), - [sym_float_literal] = ACTIONS(2750), - [sym_rune_literal] = ACTIONS(2750), - [sym_pseudo_compile_time_identifier] = ACTIONS(2750), - [anon_sym_shared] = ACTIONS(2750), - [anon_sym_map_LBRACK] = ACTIONS(2750), - [anon_sym_chan] = ACTIONS(2750), - [anon_sym_thread] = ACTIONS(2750), - [anon_sym_atomic] = ACTIONS(2750), - [anon_sym_assert] = ACTIONS(2750), - [anon_sym_defer] = ACTIONS(2750), - [anon_sym_goto] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_return] = ACTIONS(2750), - [anon_sym_DOLLARfor] = ACTIONS(2750), - [anon_sym_for] = ACTIONS(2750), - [anon_sym_POUND] = ACTIONS(2750), - [anon_sym_asm] = ACTIONS(2750), - [anon_sym_AT_LBRACK] = ACTIONS(2750), - [sym___double_quote] = ACTIONS(2750), - [sym___single_quote] = ACTIONS(2750), - [sym___c_double_quote] = ACTIONS(2750), - [sym___c_single_quote] = ACTIONS(2750), - [sym___r_double_quote] = ACTIONS(2750), - [sym___r_single_quote] = ACTIONS(2750), + [anon_sym_DOT] = ACTIONS(2767), + [anon_sym_as] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_COMMA] = ACTIONS(2767), + [anon_sym_const] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2767), + [anon_sym_EQ] = ACTIONS(2767), + [anon_sym___global] = ACTIONS(2767), + [anon_sym_type] = ACTIONS(2767), + [anon_sym_PIPE] = ACTIONS(2767), + [anon_sym_fn] = ACTIONS(2767), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_SLASH] = ACTIONS(2767), + [anon_sym_PERCENT] = ACTIONS(2767), + [anon_sym_LT] = ACTIONS(2767), + [anon_sym_GT] = ACTIONS(2767), + [anon_sym_EQ_EQ] = ACTIONS(2767), + [anon_sym_BANG_EQ] = ACTIONS(2767), + [anon_sym_LT_EQ] = ACTIONS(2767), + [anon_sym_GT_EQ] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_struct] = ACTIONS(2767), + [anon_sym_union] = ACTIONS(2767), + [anon_sym_pub] = ACTIONS(2767), + [anon_sym_mut] = ACTIONS(2767), + [anon_sym_enum] = ACTIONS(2767), + [anon_sym_interface] = ACTIONS(2767), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_QMARK] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_go] = ACTIONS(2767), + [anon_sym_spawn] = ACTIONS(2767), + [anon_sym_json_DOTdecode] = ACTIONS(2767), + [anon_sym_LBRACK2] = ACTIONS(2767), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2767), + [anon_sym_LT_DASH] = ACTIONS(2767), + [anon_sym_LT_LT] = ACTIONS(2767), + [anon_sym_GT_GT] = ACTIONS(2767), + [anon_sym_GT_GT_GT] = ACTIONS(2767), + [anon_sym_AMP_CARET] = ACTIONS(2767), + [anon_sym_AMP_AMP] = ACTIONS(2767), + [anon_sym_PIPE_PIPE] = ACTIONS(2767), + [anon_sym_or] = ACTIONS(2767), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_QMARK_DOT] = ACTIONS(2767), + [anon_sym_POUND_LBRACK] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2767), + [anon_sym_DOLLARif] = ACTIONS(2767), + [anon_sym_is] = ACTIONS(2767), + [anon_sym_BANGis] = ACTIONS(2767), + [anon_sym_in] = ACTIONS(2767), + [anon_sym_BANGin] = ACTIONS(2767), + [anon_sym_match] = ACTIONS(2767), + [anon_sym_select] = ACTIONS(2767), + [anon_sym_STAR_EQ] = ACTIONS(2767), + [anon_sym_SLASH_EQ] = ACTIONS(2767), + [anon_sym_PERCENT_EQ] = ACTIONS(2767), + [anon_sym_LT_LT_EQ] = ACTIONS(2767), + [anon_sym_GT_GT_EQ] = ACTIONS(2767), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2767), + [anon_sym_AMP_EQ] = ACTIONS(2767), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2767), + [anon_sym_PLUS_EQ] = ACTIONS(2767), + [anon_sym_DASH_EQ] = ACTIONS(2767), + [anon_sym_PIPE_EQ] = ACTIONS(2767), + [anon_sym_CARET_EQ] = ACTIONS(2767), + [anon_sym_COLON_EQ] = ACTIONS(2767), + [anon_sym_lock] = ACTIONS(2767), + [anon_sym_rlock] = ACTIONS(2767), + [anon_sym_unsafe] = ACTIONS(2767), + [anon_sym_sql] = ACTIONS(2767), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2767), + [sym_rune_literal] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2767), + [anon_sym_c_SQUOTE] = ACTIONS(2767), + [anon_sym_c_DQUOTE] = ACTIONS(2767), + [anon_sym_r_SQUOTE] = ACTIONS(2767), + [anon_sym_r_DQUOTE] = ACTIONS(2767), + [sym_pseudo_compile_time_identifier] = ACTIONS(2767), + [anon_sym_shared] = ACTIONS(2767), + [anon_sym_map_LBRACK] = ACTIONS(2767), + [anon_sym_chan] = ACTIONS(2767), + [anon_sym_thread] = ACTIONS(2767), + [anon_sym_atomic] = ACTIONS(2767), + [anon_sym_assert] = ACTIONS(2767), + [anon_sym_defer] = ACTIONS(2767), + [anon_sym_goto] = ACTIONS(2767), + [anon_sym_break] = ACTIONS(2767), + [anon_sym_continue] = ACTIONS(2767), + [anon_sym_return] = ACTIONS(2767), + [anon_sym_DOLLARfor] = ACTIONS(2767), + [anon_sym_for] = ACTIONS(2767), + [anon_sym_POUND] = ACTIONS(2767), + [anon_sym_asm] = ACTIONS(2767), + [anon_sym_AT_LBRACK] = ACTIONS(2767), }, [434] = { [sym_line_comment] = STATE(434), [sym_block_comment] = STATE(434), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4437), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(2769), + [sym_identifier] = ACTIONS(2771), + [anon_sym_LF] = ACTIONS(2771), + [anon_sym_CR] = ACTIONS(2771), + [anon_sym_CR_LF] = ACTIONS(2771), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_as] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_COMMA] = ACTIONS(2771), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(2771), + [anon_sym_EQ] = ACTIONS(2771), + [anon_sym___global] = ACTIONS(2771), + [anon_sym_type] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2771), + [anon_sym_fn] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_PERCENT] = ACTIONS(2771), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_GT] = ACTIONS(2771), + [anon_sym_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ] = ACTIONS(2771), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2771), + [anon_sym_union] = ACTIONS(2771), + [anon_sym_pub] = ACTIONS(2771), + [anon_sym_mut] = ACTIONS(2771), + [anon_sym_enum] = ACTIONS(2771), + [anon_sym_interface] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_QMARK] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2771), + [anon_sym_spawn] = ACTIONS(2771), + [anon_sym_json_DOTdecode] = ACTIONS(2771), + [anon_sym_LBRACK2] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_CARET] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_LT_DASH] = ACTIONS(2771), + [anon_sym_LT_LT] = ACTIONS(2771), + [anon_sym_GT_GT] = ACTIONS(2771), + [anon_sym_GT_GT_GT] = ACTIONS(2771), + [anon_sym_AMP_CARET] = ACTIONS(2771), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_or] = ACTIONS(2771), + [sym_none] = ACTIONS(2771), + [sym_true] = ACTIONS(2771), + [sym_false] = ACTIONS(2771), + [sym_nil] = ACTIONS(2771), + [anon_sym_QMARK_DOT] = ACTIONS(2771), + [anon_sym_POUND_LBRACK] = ACTIONS(2771), + [anon_sym_if] = ACTIONS(2771), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_is] = ACTIONS(2771), + [anon_sym_BANGis] = ACTIONS(2771), + [anon_sym_in] = ACTIONS(2771), + [anon_sym_BANGin] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2771), + [anon_sym_select] = ACTIONS(2771), + [anon_sym_STAR_EQ] = ACTIONS(2771), + [anon_sym_SLASH_EQ] = ACTIONS(2771), + [anon_sym_PERCENT_EQ] = ACTIONS(2771), + [anon_sym_LT_LT_EQ] = ACTIONS(2771), + [anon_sym_GT_GT_EQ] = ACTIONS(2771), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2771), + [anon_sym_AMP_EQ] = ACTIONS(2771), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2771), + [anon_sym_PLUS_EQ] = ACTIONS(2771), + [anon_sym_DASH_EQ] = ACTIONS(2771), + [anon_sym_PIPE_EQ] = ACTIONS(2771), + [anon_sym_CARET_EQ] = ACTIONS(2771), + [anon_sym_COLON_EQ] = ACTIONS(2771), + [anon_sym_lock] = ACTIONS(2771), + [anon_sym_rlock] = ACTIONS(2771), + [anon_sym_unsafe] = ACTIONS(2771), + [anon_sym_sql] = ACTIONS(2771), + [sym_int_literal] = ACTIONS(2771), + [sym_float_literal] = ACTIONS(2771), + [sym_rune_literal] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [anon_sym_c_SQUOTE] = ACTIONS(2771), + [anon_sym_c_DQUOTE] = ACTIONS(2771), + [anon_sym_r_SQUOTE] = ACTIONS(2771), + [anon_sym_r_DQUOTE] = ACTIONS(2771), + [sym_pseudo_compile_time_identifier] = ACTIONS(2771), + [anon_sym_shared] = ACTIONS(2771), + [anon_sym_map_LBRACK] = ACTIONS(2771), + [anon_sym_chan] = ACTIONS(2771), + [anon_sym_thread] = ACTIONS(2771), + [anon_sym_atomic] = ACTIONS(2771), + [anon_sym_assert] = ACTIONS(2771), + [anon_sym_defer] = ACTIONS(2771), + [anon_sym_goto] = ACTIONS(2771), + [anon_sym_break] = ACTIONS(2771), + [anon_sym_continue] = ACTIONS(2771), + [anon_sym_return] = ACTIONS(2771), + [anon_sym_DOLLARfor] = ACTIONS(2771), + [anon_sym_for] = ACTIONS(2771), + [anon_sym_POUND] = ACTIONS(2771), + [anon_sym_asm] = ACTIONS(2771), + [anon_sym_AT_LBRACK] = ACTIONS(2771), }, [435] = { [sym_line_comment] = STATE(435), [sym_block_comment] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(2754), - [sym_identifier] = ACTIONS(2756), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_CR] = ACTIONS(2756), - [anon_sym_CR_LF] = ACTIONS(2756), + [ts_builtin_sym_end] = ACTIONS(2773), + [sym_identifier] = ACTIONS(2775), + [anon_sym_LF] = ACTIONS(2775), + [anon_sym_CR] = ACTIONS(2775), + [anon_sym_CR_LF] = ACTIONS(2775), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2756), - [anon_sym_as] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_const] = ACTIONS(2756), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_EQ] = ACTIONS(2756), - [anon_sym___global] = ACTIONS(2756), - [anon_sym_type] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_fn] = ACTIONS(2756), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_GT] = ACTIONS(2756), - [anon_sym_EQ_EQ] = ACTIONS(2756), - [anon_sym_BANG_EQ] = ACTIONS(2756), - [anon_sym_LT_EQ] = ACTIONS(2756), - [anon_sym_GT_EQ] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_struct] = ACTIONS(2756), - [anon_sym_union] = ACTIONS(2756), - [anon_sym_pub] = ACTIONS(2756), - [anon_sym_mut] = ACTIONS(2756), - [anon_sym_enum] = ACTIONS(2756), - [anon_sym_interface] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_QMARK] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_go] = ACTIONS(2756), - [anon_sym_spawn] = ACTIONS(2756), - [anon_sym_json_DOTdecode] = ACTIONS(2756), - [anon_sym_LBRACK2] = ACTIONS(2756), - [anon_sym_TILDE] = ACTIONS(2756), - [anon_sym_CARET] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2756), - [anon_sym_LT_DASH] = ACTIONS(2756), - [anon_sym_LT_LT] = ACTIONS(2756), - [anon_sym_GT_GT] = ACTIONS(2756), - [anon_sym_GT_GT_GT] = ACTIONS(2756), - [anon_sym_AMP_CARET] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_PIPE_PIPE] = ACTIONS(2756), - [anon_sym_or] = ACTIONS(2756), - [sym_none] = ACTIONS(2756), - [sym_true] = ACTIONS(2756), - [sym_false] = ACTIONS(2756), - [sym_nil] = ACTIONS(2756), - [anon_sym_QMARK_DOT] = ACTIONS(2756), - [anon_sym_POUND_LBRACK] = ACTIONS(2756), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_DOLLARif] = ACTIONS(2756), - [anon_sym_is] = ACTIONS(2756), - [anon_sym_BANGis] = ACTIONS(2756), - [anon_sym_in] = ACTIONS(2756), - [anon_sym_BANGin] = ACTIONS(2756), - [anon_sym_match] = ACTIONS(2756), - [anon_sym_select] = ACTIONS(2756), - [anon_sym_STAR_EQ] = ACTIONS(2756), - [anon_sym_SLASH_EQ] = ACTIONS(2756), - [anon_sym_PERCENT_EQ] = ACTIONS(2756), - [anon_sym_LT_LT_EQ] = ACTIONS(2756), - [anon_sym_GT_GT_EQ] = ACTIONS(2756), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2756), - [anon_sym_AMP_EQ] = ACTIONS(2756), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2756), - [anon_sym_PLUS_EQ] = ACTIONS(2756), - [anon_sym_DASH_EQ] = ACTIONS(2756), - [anon_sym_PIPE_EQ] = ACTIONS(2756), - [anon_sym_CARET_EQ] = ACTIONS(2756), - [anon_sym_COLON_EQ] = ACTIONS(2756), - [anon_sym_lock] = ACTIONS(2756), - [anon_sym_rlock] = ACTIONS(2756), - [anon_sym_unsafe] = ACTIONS(2756), - [anon_sym_sql] = ACTIONS(2756), - [sym_int_literal] = ACTIONS(2756), - [sym_float_literal] = ACTIONS(2756), - [sym_rune_literal] = ACTIONS(2756), - [sym_pseudo_compile_time_identifier] = ACTIONS(2756), - [anon_sym_shared] = ACTIONS(2756), - [anon_sym_map_LBRACK] = ACTIONS(2756), - [anon_sym_chan] = ACTIONS(2756), - [anon_sym_thread] = ACTIONS(2756), - [anon_sym_atomic] = ACTIONS(2756), - [anon_sym_assert] = ACTIONS(2756), - [anon_sym_defer] = ACTIONS(2756), - [anon_sym_goto] = ACTIONS(2756), - [anon_sym_break] = ACTIONS(2756), - [anon_sym_continue] = ACTIONS(2756), - [anon_sym_return] = ACTIONS(2756), - [anon_sym_DOLLARfor] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(2756), - [anon_sym_asm] = ACTIONS(2756), - [anon_sym_AT_LBRACK] = ACTIONS(2756), - [sym___double_quote] = ACTIONS(2756), - [sym___single_quote] = ACTIONS(2756), - [sym___c_double_quote] = ACTIONS(2756), - [sym___c_single_quote] = ACTIONS(2756), - [sym___r_double_quote] = ACTIONS(2756), - [sym___r_single_quote] = ACTIONS(2756), + [anon_sym_DOT] = ACTIONS(2775), + [anon_sym_as] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_COMMA] = ACTIONS(2775), + [anon_sym_const] = ACTIONS(2775), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym_EQ] = ACTIONS(2775), + [anon_sym___global] = ACTIONS(2775), + [anon_sym_type] = ACTIONS(2775), + [anon_sym_PIPE] = ACTIONS(2775), + [anon_sym_fn] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2775), + [anon_sym_PERCENT] = ACTIONS(2775), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_GT] = ACTIONS(2775), + [anon_sym_EQ_EQ] = ACTIONS(2775), + [anon_sym_BANG_EQ] = ACTIONS(2775), + [anon_sym_LT_EQ] = ACTIONS(2775), + [anon_sym_GT_EQ] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2775), + [anon_sym_union] = ACTIONS(2775), + [anon_sym_pub] = ACTIONS(2775), + [anon_sym_mut] = ACTIONS(2775), + [anon_sym_enum] = ACTIONS(2775), + [anon_sym_interface] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_QMARK] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_go] = ACTIONS(2775), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(2775), + [anon_sym_LBRACK2] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_CARET] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_LT_DASH] = ACTIONS(2775), + [anon_sym_LT_LT] = ACTIONS(2775), + [anon_sym_GT_GT] = ACTIONS(2775), + [anon_sym_GT_GT_GT] = ACTIONS(2775), + [anon_sym_AMP_CARET] = ACTIONS(2775), + [anon_sym_AMP_AMP] = ACTIONS(2775), + [anon_sym_PIPE_PIPE] = ACTIONS(2775), + [anon_sym_or] = ACTIONS(2775), + [sym_none] = ACTIONS(2775), + [sym_true] = ACTIONS(2775), + [sym_false] = ACTIONS(2775), + [sym_nil] = ACTIONS(2775), + [anon_sym_QMARK_DOT] = ACTIONS(2775), + [anon_sym_POUND_LBRACK] = ACTIONS(2775), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_DOLLARif] = ACTIONS(2775), + [anon_sym_is] = ACTIONS(2775), + [anon_sym_BANGis] = ACTIONS(2775), + [anon_sym_in] = ACTIONS(2775), + [anon_sym_BANGin] = ACTIONS(2775), + [anon_sym_match] = ACTIONS(2775), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_STAR_EQ] = ACTIONS(2775), + [anon_sym_SLASH_EQ] = ACTIONS(2775), + [anon_sym_PERCENT_EQ] = ACTIONS(2775), + [anon_sym_LT_LT_EQ] = ACTIONS(2775), + [anon_sym_GT_GT_EQ] = ACTIONS(2775), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2775), + [anon_sym_AMP_EQ] = ACTIONS(2775), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2775), + [anon_sym_PLUS_EQ] = ACTIONS(2775), + [anon_sym_DASH_EQ] = ACTIONS(2775), + [anon_sym_PIPE_EQ] = ACTIONS(2775), + [anon_sym_CARET_EQ] = ACTIONS(2775), + [anon_sym_COLON_EQ] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2775), + [anon_sym_rlock] = ACTIONS(2775), + [anon_sym_unsafe] = ACTIONS(2775), + [anon_sym_sql] = ACTIONS(2775), + [sym_int_literal] = ACTIONS(2775), + [sym_float_literal] = ACTIONS(2775), + [sym_rune_literal] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [anon_sym_c_SQUOTE] = ACTIONS(2775), + [anon_sym_c_DQUOTE] = ACTIONS(2775), + [anon_sym_r_SQUOTE] = ACTIONS(2775), + [anon_sym_r_DQUOTE] = ACTIONS(2775), + [sym_pseudo_compile_time_identifier] = ACTIONS(2775), + [anon_sym_shared] = ACTIONS(2775), + [anon_sym_map_LBRACK] = ACTIONS(2775), + [anon_sym_chan] = ACTIONS(2775), + [anon_sym_thread] = ACTIONS(2775), + [anon_sym_atomic] = ACTIONS(2775), + [anon_sym_assert] = ACTIONS(2775), + [anon_sym_defer] = ACTIONS(2775), + [anon_sym_goto] = ACTIONS(2775), + [anon_sym_break] = ACTIONS(2775), + [anon_sym_continue] = ACTIONS(2775), + [anon_sym_return] = ACTIONS(2775), + [anon_sym_DOLLARfor] = ACTIONS(2775), + [anon_sym_for] = ACTIONS(2775), + [anon_sym_POUND] = ACTIONS(2775), + [anon_sym_asm] = ACTIONS(2775), + [anon_sym_AT_LBRACK] = ACTIONS(2775), }, [436] = { [sym_line_comment] = STATE(436), [sym_block_comment] = STATE(436), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1397), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1399), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2758), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(2777), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LF] = ACTIONS(2779), + [anon_sym_CR] = ACTIONS(2779), + [anon_sym_CR_LF] = ACTIONS(2779), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2779), + [anon_sym_as] = ACTIONS(2779), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_COMMA] = ACTIONS(2779), + [anon_sym_const] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(2779), + [anon_sym_EQ] = ACTIONS(2779), + [anon_sym___global] = ACTIONS(2779), + [anon_sym_type] = ACTIONS(2779), + [anon_sym_PIPE] = ACTIONS(2779), + [anon_sym_fn] = ACTIONS(2779), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_SLASH] = ACTIONS(2779), + [anon_sym_PERCENT] = ACTIONS(2779), + [anon_sym_LT] = ACTIONS(2779), + [anon_sym_GT] = ACTIONS(2779), + [anon_sym_EQ_EQ] = ACTIONS(2779), + [anon_sym_BANG_EQ] = ACTIONS(2779), + [anon_sym_LT_EQ] = ACTIONS(2779), + [anon_sym_GT_EQ] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_union] = ACTIONS(2779), + [anon_sym_pub] = ACTIONS(2779), + [anon_sym_mut] = ACTIONS(2779), + [anon_sym_enum] = ACTIONS(2779), + [anon_sym_interface] = ACTIONS(2779), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_QMARK] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2779), + [anon_sym_json_DOTdecode] = ACTIONS(2779), + [anon_sym_LBRACK2] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_LT_DASH] = ACTIONS(2779), + [anon_sym_LT_LT] = ACTIONS(2779), + [anon_sym_GT_GT] = ACTIONS(2779), + [anon_sym_GT_GT_GT] = ACTIONS(2779), + [anon_sym_AMP_CARET] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2779), + [anon_sym_PIPE_PIPE] = ACTIONS(2779), + [anon_sym_or] = ACTIONS(2779), + [sym_none] = ACTIONS(2779), + [sym_true] = ACTIONS(2779), + [sym_false] = ACTIONS(2779), + [sym_nil] = ACTIONS(2779), + [anon_sym_QMARK_DOT] = ACTIONS(2779), + [anon_sym_POUND_LBRACK] = ACTIONS(2779), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_DOLLARif] = ACTIONS(2779), + [anon_sym_is] = ACTIONS(2779), + [anon_sym_BANGis] = ACTIONS(2779), + [anon_sym_in] = ACTIONS(2779), + [anon_sym_BANGin] = ACTIONS(2779), + [anon_sym_match] = ACTIONS(2779), + [anon_sym_select] = ACTIONS(2779), + [anon_sym_STAR_EQ] = ACTIONS(2779), + [anon_sym_SLASH_EQ] = ACTIONS(2779), + [anon_sym_PERCENT_EQ] = ACTIONS(2779), + [anon_sym_LT_LT_EQ] = ACTIONS(2779), + [anon_sym_GT_GT_EQ] = ACTIONS(2779), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2779), + [anon_sym_AMP_EQ] = ACTIONS(2779), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2779), + [anon_sym_PLUS_EQ] = ACTIONS(2779), + [anon_sym_DASH_EQ] = ACTIONS(2779), + [anon_sym_PIPE_EQ] = ACTIONS(2779), + [anon_sym_CARET_EQ] = ACTIONS(2779), + [anon_sym_COLON_EQ] = ACTIONS(2779), + [anon_sym_lock] = ACTIONS(2779), + [anon_sym_rlock] = ACTIONS(2779), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2779), + [sym_int_literal] = ACTIONS(2779), + [sym_float_literal] = ACTIONS(2779), + [sym_rune_literal] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2779), + [anon_sym_DQUOTE] = ACTIONS(2779), + [anon_sym_c_SQUOTE] = ACTIONS(2779), + [anon_sym_c_DQUOTE] = ACTIONS(2779), + [anon_sym_r_SQUOTE] = ACTIONS(2779), + [anon_sym_r_DQUOTE] = ACTIONS(2779), + [sym_pseudo_compile_time_identifier] = ACTIONS(2779), + [anon_sym_shared] = ACTIONS(2779), + [anon_sym_map_LBRACK] = ACTIONS(2779), + [anon_sym_chan] = ACTIONS(2779), + [anon_sym_thread] = ACTIONS(2779), + [anon_sym_atomic] = ACTIONS(2779), + [anon_sym_assert] = ACTIONS(2779), + [anon_sym_defer] = ACTIONS(2779), + [anon_sym_goto] = ACTIONS(2779), + [anon_sym_break] = ACTIONS(2779), + [anon_sym_continue] = ACTIONS(2779), + [anon_sym_return] = ACTIONS(2779), + [anon_sym_DOLLARfor] = ACTIONS(2779), + [anon_sym_for] = ACTIONS(2779), + [anon_sym_POUND] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(2779), + [anon_sym_AT_LBRACK] = ACTIONS(2779), }, [437] = { [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1397), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1399), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(444), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4348), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2760), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [438] = { [sym_line_comment] = STATE(438), [sym_block_comment] = STATE(438), - [sym__expression] = STATE(2598), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3569), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4439), - [sym_identifier] = ACTIONS(2127), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3553), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [439] = { [sym_line_comment] = STATE(439), [sym_block_comment] = STATE(439), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4353), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1398), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1396), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(456), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2762), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [440] = { [sym_line_comment] = STATE(440), [sym_block_comment] = STATE(440), - [sym__expression] = STATE(2598), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4439), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(2799), + [sym_identifier] = ACTIONS(2801), + [anon_sym_LF] = ACTIONS(2801), + [anon_sym_CR] = ACTIONS(2801), + [anon_sym_CR_LF] = ACTIONS(2801), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2801), + [anon_sym_as] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2801), + [anon_sym_const] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym_EQ] = ACTIONS(2801), + [anon_sym___global] = ACTIONS(2801), + [anon_sym_type] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2801), + [anon_sym_fn] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_PERCENT] = ACTIONS(2801), + [anon_sym_LT] = ACTIONS(2801), + [anon_sym_GT] = ACTIONS(2801), + [anon_sym_EQ_EQ] = ACTIONS(2801), + [anon_sym_BANG_EQ] = ACTIONS(2801), + [anon_sym_LT_EQ] = ACTIONS(2801), + [anon_sym_GT_EQ] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_struct] = ACTIONS(2801), + [anon_sym_union] = ACTIONS(2801), + [anon_sym_pub] = ACTIONS(2801), + [anon_sym_mut] = ACTIONS(2801), + [anon_sym_enum] = ACTIONS(2801), + [anon_sym_interface] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_QMARK] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2801), + [anon_sym_json_DOTdecode] = ACTIONS(2801), + [anon_sym_LBRACK2] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_CARET] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_LT_DASH] = ACTIONS(2801), + [anon_sym_LT_LT] = ACTIONS(2801), + [anon_sym_GT_GT] = ACTIONS(2801), + [anon_sym_GT_GT_GT] = ACTIONS(2801), + [anon_sym_AMP_CARET] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_or] = ACTIONS(2801), + [sym_none] = ACTIONS(2801), + [sym_true] = ACTIONS(2801), + [sym_false] = ACTIONS(2801), + [sym_nil] = ACTIONS(2801), + [anon_sym_QMARK_DOT] = ACTIONS(2801), + [anon_sym_POUND_LBRACK] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_DOLLARif] = ACTIONS(2801), + [anon_sym_is] = ACTIONS(2801), + [anon_sym_BANGis] = ACTIONS(2801), + [anon_sym_in] = ACTIONS(2801), + [anon_sym_BANGin] = ACTIONS(2801), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_select] = ACTIONS(2801), + [anon_sym_STAR_EQ] = ACTIONS(2801), + [anon_sym_SLASH_EQ] = ACTIONS(2801), + [anon_sym_PERCENT_EQ] = ACTIONS(2801), + [anon_sym_LT_LT_EQ] = ACTIONS(2801), + [anon_sym_GT_GT_EQ] = ACTIONS(2801), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2801), + [anon_sym_AMP_EQ] = ACTIONS(2801), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2801), + [anon_sym_PLUS_EQ] = ACTIONS(2801), + [anon_sym_DASH_EQ] = ACTIONS(2801), + [anon_sym_PIPE_EQ] = ACTIONS(2801), + [anon_sym_CARET_EQ] = ACTIONS(2801), + [anon_sym_COLON_EQ] = ACTIONS(2801), + [anon_sym_lock] = ACTIONS(2801), + [anon_sym_rlock] = ACTIONS(2801), + [anon_sym_unsafe] = ACTIONS(2801), + [anon_sym_sql] = ACTIONS(2801), + [sym_int_literal] = ACTIONS(2801), + [sym_float_literal] = ACTIONS(2801), + [sym_rune_literal] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_c_SQUOTE] = ACTIONS(2801), + [anon_sym_c_DQUOTE] = ACTIONS(2801), + [anon_sym_r_SQUOTE] = ACTIONS(2801), + [anon_sym_r_DQUOTE] = ACTIONS(2801), + [sym_pseudo_compile_time_identifier] = ACTIONS(2801), + [anon_sym_shared] = ACTIONS(2801), + [anon_sym_map_LBRACK] = ACTIONS(2801), + [anon_sym_chan] = ACTIONS(2801), + [anon_sym_thread] = ACTIONS(2801), + [anon_sym_atomic] = ACTIONS(2801), + [anon_sym_assert] = ACTIONS(2801), + [anon_sym_defer] = ACTIONS(2801), + [anon_sym_goto] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_DOLLARfor] = ACTIONS(2801), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_POUND] = ACTIONS(2801), + [anon_sym_asm] = ACTIONS(2801), + [anon_sym_AT_LBRACK] = ACTIONS(2801), }, [441] = { [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4416), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2780), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_match_arm_type] = STATE(4293), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3874), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__definite_range] = STATE(4295), + [sym_identifier] = ACTIONS(1083), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(1125), + [anon_sym_lock] = ACTIONS(1127), + [anon_sym_rlock] = ACTIONS(1127), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [442] = { [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(2766), - [sym_identifier] = ACTIONS(2768), - [anon_sym_LF] = ACTIONS(2768), - [anon_sym_CR] = ACTIONS(2768), - [anon_sym_CR_LF] = ACTIONS(2768), + [ts_builtin_sym_end] = ACTIONS(2803), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LF] = ACTIONS(2805), + [anon_sym_CR] = ACTIONS(2805), + [anon_sym_CR_LF] = ACTIONS(2805), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_as] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_COMMA] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_EQ] = ACTIONS(2768), - [anon_sym___global] = ACTIONS(2768), - [anon_sym_type] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_fn] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2768), - [anon_sym_BANG_EQ] = ACTIONS(2768), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_pub] = ACTIONS(2768), - [anon_sym_mut] = ACTIONS(2768), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_interface] = ACTIONS(2768), - [anon_sym_PLUS_PLUS] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2768), - [anon_sym_BANG] = ACTIONS(2768), - [anon_sym_go] = ACTIONS(2768), - [anon_sym_spawn] = ACTIONS(2768), - [anon_sym_json_DOTdecode] = ACTIONS(2768), - [anon_sym_LBRACK2] = ACTIONS(2768), - [anon_sym_TILDE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_LT_DASH] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym_GT_GT_GT] = ACTIONS(2768), - [anon_sym_AMP_CARET] = ACTIONS(2768), - [anon_sym_AMP_AMP] = ACTIONS(2768), - [anon_sym_PIPE_PIPE] = ACTIONS(2768), - [anon_sym_or] = ACTIONS(2768), - [sym_none] = ACTIONS(2768), - [sym_true] = ACTIONS(2768), - [sym_false] = ACTIONS(2768), - [sym_nil] = ACTIONS(2768), - [anon_sym_QMARK_DOT] = ACTIONS(2768), - [anon_sym_POUND_LBRACK] = ACTIONS(2768), - [anon_sym_if] = ACTIONS(2768), - [anon_sym_DOLLARif] = ACTIONS(2768), - [anon_sym_is] = ACTIONS(2768), - [anon_sym_BANGis] = ACTIONS(2768), - [anon_sym_in] = ACTIONS(2768), - [anon_sym_BANGin] = ACTIONS(2768), - [anon_sym_match] = ACTIONS(2768), - [anon_sym_select] = ACTIONS(2768), - [anon_sym_STAR_EQ] = ACTIONS(2768), - [anon_sym_SLASH_EQ] = ACTIONS(2768), - [anon_sym_PERCENT_EQ] = ACTIONS(2768), - [anon_sym_LT_LT_EQ] = ACTIONS(2768), - [anon_sym_GT_GT_EQ] = ACTIONS(2768), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2768), - [anon_sym_AMP_EQ] = ACTIONS(2768), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2768), - [anon_sym_PLUS_EQ] = ACTIONS(2768), - [anon_sym_DASH_EQ] = ACTIONS(2768), - [anon_sym_PIPE_EQ] = ACTIONS(2768), - [anon_sym_CARET_EQ] = ACTIONS(2768), - [anon_sym_COLON_EQ] = ACTIONS(2768), - [anon_sym_lock] = ACTIONS(2768), - [anon_sym_rlock] = ACTIONS(2768), - [anon_sym_unsafe] = ACTIONS(2768), - [anon_sym_sql] = ACTIONS(2768), - [sym_int_literal] = ACTIONS(2768), - [sym_float_literal] = ACTIONS(2768), - [sym_rune_literal] = ACTIONS(2768), - [sym_pseudo_compile_time_identifier] = ACTIONS(2768), - [anon_sym_shared] = ACTIONS(2768), - [anon_sym_map_LBRACK] = ACTIONS(2768), - [anon_sym_chan] = ACTIONS(2768), - [anon_sym_thread] = ACTIONS(2768), - [anon_sym_atomic] = ACTIONS(2768), - [anon_sym_assert] = ACTIONS(2768), - [anon_sym_defer] = ACTIONS(2768), - [anon_sym_goto] = ACTIONS(2768), - [anon_sym_break] = ACTIONS(2768), - [anon_sym_continue] = ACTIONS(2768), - [anon_sym_return] = ACTIONS(2768), - [anon_sym_DOLLARfor] = ACTIONS(2768), - [anon_sym_for] = ACTIONS(2768), - [anon_sym_POUND] = ACTIONS(2768), - [anon_sym_asm] = ACTIONS(2768), - [anon_sym_AT_LBRACK] = ACTIONS(2768), - [sym___double_quote] = ACTIONS(2768), - [sym___single_quote] = ACTIONS(2768), - [sym___c_double_quote] = ACTIONS(2768), - [sym___c_single_quote] = ACTIONS(2768), - [sym___r_double_quote] = ACTIONS(2768), - [sym___r_single_quote] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2805), + [anon_sym_as] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2805), + [anon_sym_COMMA] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2805), + [anon_sym_LPAREN] = ACTIONS(2805), + [anon_sym_EQ] = ACTIONS(2805), + [anon_sym___global] = ACTIONS(2805), + [anon_sym_type] = ACTIONS(2805), + [anon_sym_PIPE] = ACTIONS(2805), + [anon_sym_fn] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2805), + [anon_sym_SLASH] = ACTIONS(2805), + [anon_sym_PERCENT] = ACTIONS(2805), + [anon_sym_LT] = ACTIONS(2805), + [anon_sym_GT] = ACTIONS(2805), + [anon_sym_EQ_EQ] = ACTIONS(2805), + [anon_sym_BANG_EQ] = ACTIONS(2805), + [anon_sym_LT_EQ] = ACTIONS(2805), + [anon_sym_GT_EQ] = ACTIONS(2805), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2805), + [anon_sym_union] = ACTIONS(2805), + [anon_sym_pub] = ACTIONS(2805), + [anon_sym_mut] = ACTIONS(2805), + [anon_sym_enum] = ACTIONS(2805), + [anon_sym_interface] = ACTIONS(2805), + [anon_sym_PLUS_PLUS] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2805), + [anon_sym_QMARK] = ACTIONS(2805), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_go] = ACTIONS(2805), + [anon_sym_spawn] = ACTIONS(2805), + [anon_sym_json_DOTdecode] = ACTIONS(2805), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_CARET] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2805), + [anon_sym_LT_LT] = ACTIONS(2805), + [anon_sym_GT_GT] = ACTIONS(2805), + [anon_sym_GT_GT_GT] = ACTIONS(2805), + [anon_sym_AMP_CARET] = ACTIONS(2805), + [anon_sym_AMP_AMP] = ACTIONS(2805), + [anon_sym_PIPE_PIPE] = ACTIONS(2805), + [anon_sym_or] = ACTIONS(2805), + [sym_none] = ACTIONS(2805), + [sym_true] = ACTIONS(2805), + [sym_false] = ACTIONS(2805), + [sym_nil] = ACTIONS(2805), + [anon_sym_QMARK_DOT] = ACTIONS(2805), + [anon_sym_POUND_LBRACK] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_DOLLARif] = ACTIONS(2805), + [anon_sym_is] = ACTIONS(2805), + [anon_sym_BANGis] = ACTIONS(2805), + [anon_sym_in] = ACTIONS(2805), + [anon_sym_BANGin] = ACTIONS(2805), + [anon_sym_match] = ACTIONS(2805), + [anon_sym_select] = ACTIONS(2805), + [anon_sym_STAR_EQ] = ACTIONS(2805), + [anon_sym_SLASH_EQ] = ACTIONS(2805), + [anon_sym_PERCENT_EQ] = ACTIONS(2805), + [anon_sym_LT_LT_EQ] = ACTIONS(2805), + [anon_sym_GT_GT_EQ] = ACTIONS(2805), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2805), + [anon_sym_AMP_EQ] = ACTIONS(2805), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2805), + [anon_sym_PLUS_EQ] = ACTIONS(2805), + [anon_sym_DASH_EQ] = ACTIONS(2805), + [anon_sym_PIPE_EQ] = ACTIONS(2805), + [anon_sym_CARET_EQ] = ACTIONS(2805), + [anon_sym_COLON_EQ] = ACTIONS(2805), + [anon_sym_lock] = ACTIONS(2805), + [anon_sym_rlock] = ACTIONS(2805), + [anon_sym_unsafe] = ACTIONS(2805), + [anon_sym_sql] = ACTIONS(2805), + [sym_int_literal] = ACTIONS(2805), + [sym_float_literal] = ACTIONS(2805), + [sym_rune_literal] = ACTIONS(2805), + [anon_sym_SQUOTE] = ACTIONS(2805), + [anon_sym_DQUOTE] = ACTIONS(2805), + [anon_sym_c_SQUOTE] = ACTIONS(2805), + [anon_sym_c_DQUOTE] = ACTIONS(2805), + [anon_sym_r_SQUOTE] = ACTIONS(2805), + [anon_sym_r_DQUOTE] = ACTIONS(2805), + [sym_pseudo_compile_time_identifier] = ACTIONS(2805), + [anon_sym_shared] = ACTIONS(2805), + [anon_sym_map_LBRACK] = ACTIONS(2805), + [anon_sym_chan] = ACTIONS(2805), + [anon_sym_thread] = ACTIONS(2805), + [anon_sym_atomic] = ACTIONS(2805), + [anon_sym_assert] = ACTIONS(2805), + [anon_sym_defer] = ACTIONS(2805), + [anon_sym_goto] = ACTIONS(2805), + [anon_sym_break] = ACTIONS(2805), + [anon_sym_continue] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2805), + [anon_sym_DOLLARfor] = ACTIONS(2805), + [anon_sym_for] = ACTIONS(2805), + [anon_sym_POUND] = ACTIONS(2805), + [anon_sym_asm] = ACTIONS(2805), + [anon_sym_AT_LBRACK] = ACTIONS(2805), }, [443] = { [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), + [ts_builtin_sym_end] = ACTIONS(2807), + [sym_identifier] = ACTIONS(2809), + [anon_sym_LF] = ACTIONS(2809), + [anon_sym_CR] = ACTIONS(2809), + [anon_sym_CR_LF] = ACTIONS(2809), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_const] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_EQ] = ACTIONS(2772), - [anon_sym___global] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_union] = ACTIONS(2772), - [anon_sym_pub] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_interface] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_STAR_EQ] = ACTIONS(2772), - [anon_sym_SLASH_EQ] = ACTIONS(2772), - [anon_sym_PERCENT_EQ] = ACTIONS(2772), - [anon_sym_LT_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_GT_EQ] = ACTIONS(2772), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2772), - [anon_sym_AMP_EQ] = ACTIONS(2772), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2772), - [anon_sym_PLUS_EQ] = ACTIONS(2772), - [anon_sym_DASH_EQ] = ACTIONS(2772), - [anon_sym_PIPE_EQ] = ACTIONS(2772), - [anon_sym_CARET_EQ] = ACTIONS(2772), - [anon_sym_COLON_EQ] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [sym_pseudo_compile_time_identifier] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [anon_sym_assert] = ACTIONS(2772), - [anon_sym_defer] = ACTIONS(2772), - [anon_sym_goto] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_DOLLARfor] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2772), - [anon_sym_asm] = ACTIONS(2772), - [anon_sym_AT_LBRACK] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), + [anon_sym_DOT] = ACTIONS(2809), + [anon_sym_as] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_COMMA] = ACTIONS(2809), + [anon_sym_const] = ACTIONS(2809), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym_EQ] = ACTIONS(2809), + [anon_sym___global] = ACTIONS(2809), + [anon_sym_type] = ACTIONS(2809), + [anon_sym_PIPE] = ACTIONS(2809), + [anon_sym_fn] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_PERCENT] = ACTIONS(2809), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_GT] = ACTIONS(2809), + [anon_sym_EQ_EQ] = ACTIONS(2809), + [anon_sym_BANG_EQ] = ACTIONS(2809), + [anon_sym_LT_EQ] = ACTIONS(2809), + [anon_sym_GT_EQ] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_struct] = ACTIONS(2809), + [anon_sym_union] = ACTIONS(2809), + [anon_sym_pub] = ACTIONS(2809), + [anon_sym_mut] = ACTIONS(2809), + [anon_sym_enum] = ACTIONS(2809), + [anon_sym_interface] = ACTIONS(2809), + [anon_sym_PLUS_PLUS] = ACTIONS(2809), + [anon_sym_DASH_DASH] = ACTIONS(2809), + [anon_sym_QMARK] = ACTIONS(2809), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_go] = ACTIONS(2809), + [anon_sym_spawn] = ACTIONS(2809), + [anon_sym_json_DOTdecode] = ACTIONS(2809), + [anon_sym_LBRACK2] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_CARET] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_LT_DASH] = ACTIONS(2809), + [anon_sym_LT_LT] = ACTIONS(2809), + [anon_sym_GT_GT] = ACTIONS(2809), + [anon_sym_GT_GT_GT] = ACTIONS(2809), + [anon_sym_AMP_CARET] = ACTIONS(2809), + [anon_sym_AMP_AMP] = ACTIONS(2809), + [anon_sym_PIPE_PIPE] = ACTIONS(2809), + [anon_sym_or] = ACTIONS(2809), + [sym_none] = ACTIONS(2809), + [sym_true] = ACTIONS(2809), + [sym_false] = ACTIONS(2809), + [sym_nil] = ACTIONS(2809), + [anon_sym_QMARK_DOT] = ACTIONS(2809), + [anon_sym_POUND_LBRACK] = ACTIONS(2809), + [anon_sym_if] = ACTIONS(2809), + [anon_sym_DOLLARif] = ACTIONS(2809), + [anon_sym_is] = ACTIONS(2809), + [anon_sym_BANGis] = ACTIONS(2809), + [anon_sym_in] = ACTIONS(2809), + [anon_sym_BANGin] = ACTIONS(2809), + [anon_sym_match] = ACTIONS(2809), + [anon_sym_select] = ACTIONS(2809), + [anon_sym_STAR_EQ] = ACTIONS(2809), + [anon_sym_SLASH_EQ] = ACTIONS(2809), + [anon_sym_PERCENT_EQ] = ACTIONS(2809), + [anon_sym_LT_LT_EQ] = ACTIONS(2809), + [anon_sym_GT_GT_EQ] = ACTIONS(2809), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2809), + [anon_sym_AMP_EQ] = ACTIONS(2809), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2809), + [anon_sym_PLUS_EQ] = ACTIONS(2809), + [anon_sym_DASH_EQ] = ACTIONS(2809), + [anon_sym_PIPE_EQ] = ACTIONS(2809), + [anon_sym_CARET_EQ] = ACTIONS(2809), + [anon_sym_COLON_EQ] = ACTIONS(2809), + [anon_sym_lock] = ACTIONS(2809), + [anon_sym_rlock] = ACTIONS(2809), + [anon_sym_unsafe] = ACTIONS(2809), + [anon_sym_sql] = ACTIONS(2809), + [sym_int_literal] = ACTIONS(2809), + [sym_float_literal] = ACTIONS(2809), + [sym_rune_literal] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2809), + [anon_sym_c_SQUOTE] = ACTIONS(2809), + [anon_sym_c_DQUOTE] = ACTIONS(2809), + [anon_sym_r_SQUOTE] = ACTIONS(2809), + [anon_sym_r_DQUOTE] = ACTIONS(2809), + [sym_pseudo_compile_time_identifier] = ACTIONS(2809), + [anon_sym_shared] = ACTIONS(2809), + [anon_sym_map_LBRACK] = ACTIONS(2809), + [anon_sym_chan] = ACTIONS(2809), + [anon_sym_thread] = ACTIONS(2809), + [anon_sym_atomic] = ACTIONS(2809), + [anon_sym_assert] = ACTIONS(2809), + [anon_sym_defer] = ACTIONS(2809), + [anon_sym_goto] = ACTIONS(2809), + [anon_sym_break] = ACTIONS(2809), + [anon_sym_continue] = ACTIONS(2809), + [anon_sym_return] = ACTIONS(2809), + [anon_sym_DOLLARfor] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2809), + [anon_sym_POUND] = ACTIONS(2809), + [anon_sym_asm] = ACTIONS(2809), + [anon_sym_AT_LBRACK] = ACTIONS(2809), }, [444] = { [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(2811), + [sym_identifier] = ACTIONS(2813), + [anon_sym_LF] = ACTIONS(2813), + [anon_sym_CR] = ACTIONS(2813), + [anon_sym_CR_LF] = ACTIONS(2813), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2813), + [anon_sym_as] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_COMMA] = ACTIONS(2813), + [anon_sym_const] = ACTIONS(2813), + [anon_sym_LPAREN] = ACTIONS(2813), + [anon_sym_EQ] = ACTIONS(2813), + [anon_sym___global] = ACTIONS(2813), + [anon_sym_type] = ACTIONS(2813), + [anon_sym_PIPE] = ACTIONS(2813), + [anon_sym_fn] = ACTIONS(2813), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_SLASH] = ACTIONS(2813), + [anon_sym_PERCENT] = ACTIONS(2813), + [anon_sym_LT] = ACTIONS(2813), + [anon_sym_GT] = ACTIONS(2813), + [anon_sym_EQ_EQ] = ACTIONS(2813), + [anon_sym_BANG_EQ] = ACTIONS(2813), + [anon_sym_LT_EQ] = ACTIONS(2813), + [anon_sym_GT_EQ] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_struct] = ACTIONS(2813), + [anon_sym_union] = ACTIONS(2813), + [anon_sym_pub] = ACTIONS(2813), + [anon_sym_mut] = ACTIONS(2813), + [anon_sym_enum] = ACTIONS(2813), + [anon_sym_interface] = ACTIONS(2813), + [anon_sym_PLUS_PLUS] = ACTIONS(2813), + [anon_sym_DASH_DASH] = ACTIONS(2813), + [anon_sym_QMARK] = ACTIONS(2813), + [anon_sym_BANG] = ACTIONS(2813), + [anon_sym_go] = ACTIONS(2813), + [anon_sym_spawn] = ACTIONS(2813), + [anon_sym_json_DOTdecode] = ACTIONS(2813), + [anon_sym_LBRACK2] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_LT_DASH] = ACTIONS(2813), + [anon_sym_LT_LT] = ACTIONS(2813), + [anon_sym_GT_GT] = ACTIONS(2813), + [anon_sym_GT_GT_GT] = ACTIONS(2813), + [anon_sym_AMP_CARET] = ACTIONS(2813), + [anon_sym_AMP_AMP] = ACTIONS(2813), + [anon_sym_PIPE_PIPE] = ACTIONS(2813), + [anon_sym_or] = ACTIONS(2813), + [sym_none] = ACTIONS(2813), + [sym_true] = ACTIONS(2813), + [sym_false] = ACTIONS(2813), + [sym_nil] = ACTIONS(2813), + [anon_sym_QMARK_DOT] = ACTIONS(2813), + [anon_sym_POUND_LBRACK] = ACTIONS(2813), + [anon_sym_if] = ACTIONS(2813), + [anon_sym_DOLLARif] = ACTIONS(2813), + [anon_sym_is] = ACTIONS(2813), + [anon_sym_BANGis] = ACTIONS(2813), + [anon_sym_in] = ACTIONS(2813), + [anon_sym_BANGin] = ACTIONS(2813), + [anon_sym_match] = ACTIONS(2813), + [anon_sym_select] = ACTIONS(2813), + [anon_sym_STAR_EQ] = ACTIONS(2813), + [anon_sym_SLASH_EQ] = ACTIONS(2813), + [anon_sym_PERCENT_EQ] = ACTIONS(2813), + [anon_sym_LT_LT_EQ] = ACTIONS(2813), + [anon_sym_GT_GT_EQ] = ACTIONS(2813), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2813), + [anon_sym_AMP_EQ] = ACTIONS(2813), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2813), + [anon_sym_PLUS_EQ] = ACTIONS(2813), + [anon_sym_DASH_EQ] = ACTIONS(2813), + [anon_sym_PIPE_EQ] = ACTIONS(2813), + [anon_sym_CARET_EQ] = ACTIONS(2813), + [anon_sym_COLON_EQ] = ACTIONS(2813), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [anon_sym_unsafe] = ACTIONS(2813), + [anon_sym_sql] = ACTIONS(2813), + [sym_int_literal] = ACTIONS(2813), + [sym_float_literal] = ACTIONS(2813), + [sym_rune_literal] = ACTIONS(2813), + [anon_sym_SQUOTE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2813), + [anon_sym_c_SQUOTE] = ACTIONS(2813), + [anon_sym_c_DQUOTE] = ACTIONS(2813), + [anon_sym_r_SQUOTE] = ACTIONS(2813), + [anon_sym_r_DQUOTE] = ACTIONS(2813), + [sym_pseudo_compile_time_identifier] = ACTIONS(2813), + [anon_sym_shared] = ACTIONS(2813), + [anon_sym_map_LBRACK] = ACTIONS(2813), + [anon_sym_chan] = ACTIONS(2813), + [anon_sym_thread] = ACTIONS(2813), + [anon_sym_atomic] = ACTIONS(2813), + [anon_sym_assert] = ACTIONS(2813), + [anon_sym_defer] = ACTIONS(2813), + [anon_sym_goto] = ACTIONS(2813), + [anon_sym_break] = ACTIONS(2813), + [anon_sym_continue] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2813), + [anon_sym_DOLLARfor] = ACTIONS(2813), + [anon_sym_for] = ACTIONS(2813), + [anon_sym_POUND] = ACTIONS(2813), + [anon_sym_asm] = ACTIONS(2813), + [anon_sym_AT_LBRACK] = ACTIONS(2813), }, [445] = { [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), - [sym__expression] = STATE(2459), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(655), - [sym_mutable_expression] = STATE(3778), - [sym_expression_list] = STATE(4005), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(2815), + [sym_identifier] = ACTIONS(2817), + [anon_sym_LF] = ACTIONS(2817), + [anon_sym_CR] = ACTIONS(2817), + [anon_sym_CR_LF] = ACTIONS(2817), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2817), + [anon_sym_as] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_COMMA] = ACTIONS(2817), + [anon_sym_const] = ACTIONS(2817), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_EQ] = ACTIONS(2817), + [anon_sym___global] = ACTIONS(2817), + [anon_sym_type] = ACTIONS(2817), + [anon_sym_PIPE] = ACTIONS(2817), + [anon_sym_fn] = ACTIONS(2817), + [anon_sym_PLUS] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_SLASH] = ACTIONS(2817), + [anon_sym_PERCENT] = ACTIONS(2817), + [anon_sym_LT] = ACTIONS(2817), + [anon_sym_GT] = ACTIONS(2817), + [anon_sym_EQ_EQ] = ACTIONS(2817), + [anon_sym_BANG_EQ] = ACTIONS(2817), + [anon_sym_LT_EQ] = ACTIONS(2817), + [anon_sym_GT_EQ] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2817), + [anon_sym_union] = ACTIONS(2817), + [anon_sym_pub] = ACTIONS(2817), + [anon_sym_mut] = ACTIONS(2817), + [anon_sym_enum] = ACTIONS(2817), + [anon_sym_interface] = ACTIONS(2817), + [anon_sym_PLUS_PLUS] = ACTIONS(2817), + [anon_sym_DASH_DASH] = ACTIONS(2817), + [anon_sym_QMARK] = ACTIONS(2817), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2817), + [anon_sym_spawn] = ACTIONS(2817), + [anon_sym_json_DOTdecode] = ACTIONS(2817), + [anon_sym_LBRACK2] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_CARET] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_LT_DASH] = ACTIONS(2817), + [anon_sym_LT_LT] = ACTIONS(2817), + [anon_sym_GT_GT] = ACTIONS(2817), + [anon_sym_GT_GT_GT] = ACTIONS(2817), + [anon_sym_AMP_CARET] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_PIPE_PIPE] = ACTIONS(2817), + [anon_sym_or] = ACTIONS(2817), + [sym_none] = ACTIONS(2817), + [sym_true] = ACTIONS(2817), + [sym_false] = ACTIONS(2817), + [sym_nil] = ACTIONS(2817), + [anon_sym_QMARK_DOT] = ACTIONS(2817), + [anon_sym_POUND_LBRACK] = ACTIONS(2817), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_DOLLARif] = ACTIONS(2817), + [anon_sym_is] = ACTIONS(2817), + [anon_sym_BANGis] = ACTIONS(2817), + [anon_sym_in] = ACTIONS(2817), + [anon_sym_BANGin] = ACTIONS(2817), + [anon_sym_match] = ACTIONS(2817), + [anon_sym_select] = ACTIONS(2817), + [anon_sym_STAR_EQ] = ACTIONS(2817), + [anon_sym_SLASH_EQ] = ACTIONS(2817), + [anon_sym_PERCENT_EQ] = ACTIONS(2817), + [anon_sym_LT_LT_EQ] = ACTIONS(2817), + [anon_sym_GT_GT_EQ] = ACTIONS(2817), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2817), + [anon_sym_AMP_EQ] = ACTIONS(2817), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2817), + [anon_sym_PLUS_EQ] = ACTIONS(2817), + [anon_sym_DASH_EQ] = ACTIONS(2817), + [anon_sym_PIPE_EQ] = ACTIONS(2817), + [anon_sym_CARET_EQ] = ACTIONS(2817), + [anon_sym_COLON_EQ] = ACTIONS(2817), + [anon_sym_lock] = ACTIONS(2817), + [anon_sym_rlock] = ACTIONS(2817), + [anon_sym_unsafe] = ACTIONS(2817), + [anon_sym_sql] = ACTIONS(2817), + [sym_int_literal] = ACTIONS(2817), + [sym_float_literal] = ACTIONS(2817), + [sym_rune_literal] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [anon_sym_c_SQUOTE] = ACTIONS(2817), + [anon_sym_c_DQUOTE] = ACTIONS(2817), + [anon_sym_r_SQUOTE] = ACTIONS(2817), + [anon_sym_r_DQUOTE] = ACTIONS(2817), + [sym_pseudo_compile_time_identifier] = ACTIONS(2817), + [anon_sym_shared] = ACTIONS(2817), + [anon_sym_map_LBRACK] = ACTIONS(2817), + [anon_sym_chan] = ACTIONS(2817), + [anon_sym_thread] = ACTIONS(2817), + [anon_sym_atomic] = ACTIONS(2817), + [anon_sym_assert] = ACTIONS(2817), + [anon_sym_defer] = ACTIONS(2817), + [anon_sym_goto] = ACTIONS(2817), + [anon_sym_break] = ACTIONS(2817), + [anon_sym_continue] = ACTIONS(2817), + [anon_sym_return] = ACTIONS(2817), + [anon_sym_DOLLARfor] = ACTIONS(2817), + [anon_sym_for] = ACTIONS(2817), + [anon_sym_POUND] = ACTIONS(2817), + [anon_sym_asm] = ACTIONS(2817), + [anon_sym_AT_LBRACK] = ACTIONS(2817), }, [446] = { [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2778), - [anon_sym_LF] = ACTIONS(2778), - [anon_sym_CR] = ACTIONS(2778), - [anon_sym_CR_LF] = ACTIONS(2778), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2778), - [anon_sym_as] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_COMMA] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym_EQ] = ACTIONS(2778), - [anon_sym___global] = ACTIONS(2778), - [anon_sym_type] = ACTIONS(2778), - [anon_sym_PIPE] = ACTIONS(2778), - [anon_sym_fn] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2778), - [anon_sym_SLASH] = ACTIONS(2778), - [anon_sym_PERCENT] = ACTIONS(2778), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_GT] = ACTIONS(2778), - [anon_sym_EQ_EQ] = ACTIONS(2778), - [anon_sym_BANG_EQ] = ACTIONS(2778), - [anon_sym_LT_EQ] = ACTIONS(2778), - [anon_sym_GT_EQ] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_pub] = ACTIONS(2778), - [anon_sym_mut] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_interface] = ACTIONS(2778), - [anon_sym_PLUS_PLUS] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2778), - [anon_sym_QMARK] = ACTIONS(2778), - [anon_sym_BANG] = ACTIONS(2778), - [anon_sym_go] = ACTIONS(2778), - [anon_sym_spawn] = ACTIONS(2778), - [anon_sym_json_DOTdecode] = ACTIONS(2778), - [anon_sym_LBRACK2] = ACTIONS(2778), - [anon_sym_TILDE] = ACTIONS(2778), - [anon_sym_CARET] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_LT_DASH] = ACTIONS(2778), - [anon_sym_LT_LT] = ACTIONS(2778), - [anon_sym_GT_GT] = ACTIONS(2778), - [anon_sym_GT_GT_GT] = ACTIONS(2778), - [anon_sym_AMP_CARET] = ACTIONS(2778), - [anon_sym_AMP_AMP] = ACTIONS(2778), - [anon_sym_PIPE_PIPE] = ACTIONS(2778), - [anon_sym_or] = ACTIONS(2778), - [sym_none] = ACTIONS(2778), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [sym_nil] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(2778), - [anon_sym_POUND_LBRACK] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_DOLLARif] = ACTIONS(2778), - [anon_sym_is] = ACTIONS(2778), - [anon_sym_BANGis] = ACTIONS(2778), - [anon_sym_in] = ACTIONS(2778), - [anon_sym_BANGin] = ACTIONS(2778), - [anon_sym_match] = ACTIONS(2778), - [anon_sym_select] = ACTIONS(2778), - [anon_sym_STAR_EQ] = ACTIONS(2778), - [anon_sym_SLASH_EQ] = ACTIONS(2778), - [anon_sym_PERCENT_EQ] = ACTIONS(2778), - [anon_sym_LT_LT_EQ] = ACTIONS(2778), - [anon_sym_GT_GT_EQ] = ACTIONS(2778), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2778), - [anon_sym_AMP_EQ] = ACTIONS(2778), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2778), - [anon_sym_PLUS_EQ] = ACTIONS(2778), - [anon_sym_DASH_EQ] = ACTIONS(2778), - [anon_sym_PIPE_EQ] = ACTIONS(2778), - [anon_sym_CARET_EQ] = ACTIONS(2778), - [anon_sym_COLON_EQ] = ACTIONS(2778), - [anon_sym_lock] = ACTIONS(2778), - [anon_sym_rlock] = ACTIONS(2778), - [anon_sym_unsafe] = ACTIONS(2778), - [anon_sym_sql] = ACTIONS(2778), - [sym_int_literal] = ACTIONS(2778), - [sym_float_literal] = ACTIONS(2778), - [sym_rune_literal] = ACTIONS(2778), - [sym_pseudo_compile_time_identifier] = ACTIONS(2778), - [anon_sym_shared] = ACTIONS(2778), - [anon_sym_map_LBRACK] = ACTIONS(2778), - [anon_sym_chan] = ACTIONS(2778), - [anon_sym_thread] = ACTIONS(2778), - [anon_sym_atomic] = ACTIONS(2778), - [anon_sym_assert] = ACTIONS(2778), - [anon_sym_defer] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_DOLLARfor] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_POUND] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym_AT_LBRACK] = ACTIONS(2778), - [sym___double_quote] = ACTIONS(2778), - [sym___single_quote] = ACTIONS(2778), - [sym___c_double_quote] = ACTIONS(2778), - [sym___c_single_quote] = ACTIONS(2778), - [sym___r_double_quote] = ACTIONS(2778), - [sym___r_single_quote] = ACTIONS(2778), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1398), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1396), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(1313), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [447] = { [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2782), - [anon_sym_LF] = ACTIONS(2782), - [anon_sym_CR] = ACTIONS(2782), - [anon_sym_CR_LF] = ACTIONS(2782), + [ts_builtin_sym_end] = ACTIONS(2819), + [sym_identifier] = ACTIONS(2821), + [anon_sym_LF] = ACTIONS(2821), + [anon_sym_CR] = ACTIONS(2821), + [anon_sym_CR_LF] = ACTIONS(2821), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2782), - [anon_sym_as] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_COMMA] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_EQ] = ACTIONS(2782), - [anon_sym___global] = ACTIONS(2782), - [anon_sym_type] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2782), - [anon_sym_fn] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2782), - [anon_sym_PERCENT] = ACTIONS(2782), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_GT] = ACTIONS(2782), - [anon_sym_EQ_EQ] = ACTIONS(2782), - [anon_sym_BANG_EQ] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(2782), - [anon_sym_GT_EQ] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2780), - [anon_sym_struct] = ACTIONS(2782), - [anon_sym_union] = ACTIONS(2782), - [anon_sym_pub] = ACTIONS(2782), - [anon_sym_mut] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2782), - [anon_sym_interface] = ACTIONS(2782), - [anon_sym_PLUS_PLUS] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2782), - [anon_sym_QMARK] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2782), - [anon_sym_go] = ACTIONS(2782), - [anon_sym_spawn] = ACTIONS(2782), - [anon_sym_json_DOTdecode] = ACTIONS(2782), - [anon_sym_LBRACK2] = ACTIONS(2782), - [anon_sym_TILDE] = ACTIONS(2782), - [anon_sym_CARET] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_LT_DASH] = ACTIONS(2782), - [anon_sym_LT_LT] = ACTIONS(2782), - [anon_sym_GT_GT] = ACTIONS(2782), - [anon_sym_GT_GT_GT] = ACTIONS(2782), - [anon_sym_AMP_CARET] = ACTIONS(2782), - [anon_sym_AMP_AMP] = ACTIONS(2782), - [anon_sym_PIPE_PIPE] = ACTIONS(2782), - [anon_sym_or] = ACTIONS(2782), - [sym_none] = ACTIONS(2782), - [sym_true] = ACTIONS(2782), - [sym_false] = ACTIONS(2782), - [sym_nil] = ACTIONS(2782), - [anon_sym_QMARK_DOT] = ACTIONS(2782), - [anon_sym_POUND_LBRACK] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_DOLLARif] = ACTIONS(2782), - [anon_sym_is] = ACTIONS(2782), - [anon_sym_BANGis] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(2782), - [anon_sym_BANGin] = ACTIONS(2782), - [anon_sym_match] = ACTIONS(2782), - [anon_sym_select] = ACTIONS(2782), - [anon_sym_STAR_EQ] = ACTIONS(2782), - [anon_sym_SLASH_EQ] = ACTIONS(2782), - [anon_sym_PERCENT_EQ] = ACTIONS(2782), - [anon_sym_LT_LT_EQ] = ACTIONS(2782), - [anon_sym_GT_GT_EQ] = ACTIONS(2782), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2782), - [anon_sym_AMP_EQ] = ACTIONS(2782), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2782), - [anon_sym_PLUS_EQ] = ACTIONS(2782), - [anon_sym_DASH_EQ] = ACTIONS(2782), - [anon_sym_PIPE_EQ] = ACTIONS(2782), - [anon_sym_CARET_EQ] = ACTIONS(2782), - [anon_sym_COLON_EQ] = ACTIONS(2782), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2782), - [anon_sym_sql] = ACTIONS(2782), - [sym_int_literal] = ACTIONS(2782), - [sym_float_literal] = ACTIONS(2782), - [sym_rune_literal] = ACTIONS(2782), - [sym_pseudo_compile_time_identifier] = ACTIONS(2782), - [anon_sym_shared] = ACTIONS(2782), - [anon_sym_map_LBRACK] = ACTIONS(2782), - [anon_sym_chan] = ACTIONS(2782), - [anon_sym_thread] = ACTIONS(2782), - [anon_sym_atomic] = ACTIONS(2782), - [anon_sym_assert] = ACTIONS(2782), - [anon_sym_defer] = ACTIONS(2782), - [anon_sym_goto] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_DOLLARfor] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_POUND] = ACTIONS(2782), - [anon_sym_asm] = ACTIONS(2782), - [anon_sym_AT_LBRACK] = ACTIONS(2782), - [sym___double_quote] = ACTIONS(2782), - [sym___single_quote] = ACTIONS(2782), - [sym___c_double_quote] = ACTIONS(2782), - [sym___c_single_quote] = ACTIONS(2782), - [sym___r_double_quote] = ACTIONS(2782), - [sym___r_single_quote] = ACTIONS(2782), + [anon_sym_DOT] = ACTIONS(2821), + [anon_sym_as] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_COMMA] = ACTIONS(2821), + [anon_sym_const] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(2821), + [anon_sym_EQ] = ACTIONS(2821), + [anon_sym___global] = ACTIONS(2821), + [anon_sym_type] = ACTIONS(2821), + [anon_sym_PIPE] = ACTIONS(2821), + [anon_sym_fn] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_SLASH] = ACTIONS(2821), + [anon_sym_PERCENT] = ACTIONS(2821), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(2821), + [anon_sym_EQ_EQ] = ACTIONS(2821), + [anon_sym_BANG_EQ] = ACTIONS(2821), + [anon_sym_LT_EQ] = ACTIONS(2821), + [anon_sym_GT_EQ] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2821), + [anon_sym_union] = ACTIONS(2821), + [anon_sym_pub] = ACTIONS(2821), + [anon_sym_mut] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2821), + [anon_sym_interface] = ACTIONS(2821), + [anon_sym_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_DASH_DASH] = ACTIONS(2821), + [anon_sym_QMARK] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_go] = ACTIONS(2821), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(2821), + [anon_sym_LBRACK2] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_CARET] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_LT_DASH] = ACTIONS(2821), + [anon_sym_LT_LT] = ACTIONS(2821), + [anon_sym_GT_GT] = ACTIONS(2821), + [anon_sym_GT_GT_GT] = ACTIONS(2821), + [anon_sym_AMP_CARET] = ACTIONS(2821), + [anon_sym_AMP_AMP] = ACTIONS(2821), + [anon_sym_PIPE_PIPE] = ACTIONS(2821), + [anon_sym_or] = ACTIONS(2821), + [sym_none] = ACTIONS(2821), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_nil] = ACTIONS(2821), + [anon_sym_QMARK_DOT] = ACTIONS(2821), + [anon_sym_POUND_LBRACK] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_DOLLARif] = ACTIONS(2821), + [anon_sym_is] = ACTIONS(2821), + [anon_sym_BANGis] = ACTIONS(2821), + [anon_sym_in] = ACTIONS(2821), + [anon_sym_BANGin] = ACTIONS(2821), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2821), + [anon_sym_STAR_EQ] = ACTIONS(2821), + [anon_sym_SLASH_EQ] = ACTIONS(2821), + [anon_sym_PERCENT_EQ] = ACTIONS(2821), + [anon_sym_LT_LT_EQ] = ACTIONS(2821), + [anon_sym_GT_GT_EQ] = ACTIONS(2821), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2821), + [anon_sym_AMP_EQ] = ACTIONS(2821), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2821), + [anon_sym_PLUS_EQ] = ACTIONS(2821), + [anon_sym_DASH_EQ] = ACTIONS(2821), + [anon_sym_PIPE_EQ] = ACTIONS(2821), + [anon_sym_CARET_EQ] = ACTIONS(2821), + [anon_sym_COLON_EQ] = ACTIONS(2821), + [anon_sym_lock] = ACTIONS(2821), + [anon_sym_rlock] = ACTIONS(2821), + [anon_sym_unsafe] = ACTIONS(2821), + [anon_sym_sql] = ACTIONS(2821), + [sym_int_literal] = ACTIONS(2821), + [sym_float_literal] = ACTIONS(2821), + [sym_rune_literal] = ACTIONS(2821), + [anon_sym_SQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [anon_sym_c_SQUOTE] = ACTIONS(2821), + [anon_sym_c_DQUOTE] = ACTIONS(2821), + [anon_sym_r_SQUOTE] = ACTIONS(2821), + [anon_sym_r_DQUOTE] = ACTIONS(2821), + [sym_pseudo_compile_time_identifier] = ACTIONS(2821), + [anon_sym_shared] = ACTIONS(2821), + [anon_sym_map_LBRACK] = ACTIONS(2821), + [anon_sym_chan] = ACTIONS(2821), + [anon_sym_thread] = ACTIONS(2821), + [anon_sym_atomic] = ACTIONS(2821), + [anon_sym_assert] = ACTIONS(2821), + [anon_sym_defer] = ACTIONS(2821), + [anon_sym_goto] = ACTIONS(2821), + [anon_sym_break] = ACTIONS(2821), + [anon_sym_continue] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2821), + [anon_sym_DOLLARfor] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2821), + [anon_sym_POUND] = ACTIONS(2821), + [anon_sym_asm] = ACTIONS(2821), + [anon_sym_AT_LBRACK] = ACTIONS(2821), }, [448] = { [sym_line_comment] = STATE(448), [sym_block_comment] = STATE(448), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4004), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2823), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [449] = { [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4344), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [450] = { [sym_line_comment] = STATE(450), [sym_block_comment] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(2786), - [sym_identifier] = ACTIONS(2788), - [anon_sym_LF] = ACTIONS(2788), - [anon_sym_CR] = ACTIONS(2788), - [anon_sym_CR_LF] = ACTIONS(2788), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2788), - [anon_sym_as] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_COMMA] = ACTIONS(2788), - [anon_sym_const] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2788), - [anon_sym_EQ] = ACTIONS(2788), - [anon_sym___global] = ACTIONS(2788), - [anon_sym_type] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_fn] = ACTIONS(2788), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_SLASH] = ACTIONS(2788), - [anon_sym_PERCENT] = ACTIONS(2788), - [anon_sym_LT] = ACTIONS(2788), - [anon_sym_GT] = ACTIONS(2788), - [anon_sym_EQ_EQ] = ACTIONS(2788), - [anon_sym_BANG_EQ] = ACTIONS(2788), - [anon_sym_LT_EQ] = ACTIONS(2788), - [anon_sym_GT_EQ] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2788), - [anon_sym_union] = ACTIONS(2788), - [anon_sym_pub] = ACTIONS(2788), - [anon_sym_mut] = ACTIONS(2788), - [anon_sym_enum] = ACTIONS(2788), - [anon_sym_interface] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_QMARK] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_go] = ACTIONS(2788), - [anon_sym_spawn] = ACTIONS(2788), - [anon_sym_json_DOTdecode] = ACTIONS(2788), - [anon_sym_LBRACK2] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_CARET] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2788), - [anon_sym_LT_DASH] = ACTIONS(2788), - [anon_sym_LT_LT] = ACTIONS(2788), - [anon_sym_GT_GT] = ACTIONS(2788), - [anon_sym_GT_GT_GT] = ACTIONS(2788), - [anon_sym_AMP_CARET] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_PIPE_PIPE] = ACTIONS(2788), - [anon_sym_or] = ACTIONS(2788), - [sym_none] = ACTIONS(2788), - [sym_true] = ACTIONS(2788), - [sym_false] = ACTIONS(2788), - [sym_nil] = ACTIONS(2788), - [anon_sym_QMARK_DOT] = ACTIONS(2788), - [anon_sym_POUND_LBRACK] = ACTIONS(2788), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_DOLLARif] = ACTIONS(2788), - [anon_sym_is] = ACTIONS(2788), - [anon_sym_BANGis] = ACTIONS(2788), - [anon_sym_in] = ACTIONS(2788), - [anon_sym_BANGin] = ACTIONS(2788), - [anon_sym_match] = ACTIONS(2788), - [anon_sym_select] = ACTIONS(2788), - [anon_sym_STAR_EQ] = ACTIONS(2788), - [anon_sym_SLASH_EQ] = ACTIONS(2788), - [anon_sym_PERCENT_EQ] = ACTIONS(2788), - [anon_sym_LT_LT_EQ] = ACTIONS(2788), - [anon_sym_GT_GT_EQ] = ACTIONS(2788), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2788), - [anon_sym_AMP_EQ] = ACTIONS(2788), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2788), - [anon_sym_PLUS_EQ] = ACTIONS(2788), - [anon_sym_DASH_EQ] = ACTIONS(2788), - [anon_sym_PIPE_EQ] = ACTIONS(2788), - [anon_sym_CARET_EQ] = ACTIONS(2788), - [anon_sym_COLON_EQ] = ACTIONS(2788), - [anon_sym_lock] = ACTIONS(2788), - [anon_sym_rlock] = ACTIONS(2788), - [anon_sym_unsafe] = ACTIONS(2788), - [anon_sym_sql] = ACTIONS(2788), - [sym_int_literal] = ACTIONS(2788), - [sym_float_literal] = ACTIONS(2788), - [sym_rune_literal] = ACTIONS(2788), - [sym_pseudo_compile_time_identifier] = ACTIONS(2788), - [anon_sym_shared] = ACTIONS(2788), - [anon_sym_map_LBRACK] = ACTIONS(2788), - [anon_sym_chan] = ACTIONS(2788), - [anon_sym_thread] = ACTIONS(2788), - [anon_sym_atomic] = ACTIONS(2788), - [anon_sym_assert] = ACTIONS(2788), - [anon_sym_defer] = ACTIONS(2788), - [anon_sym_goto] = ACTIONS(2788), - [anon_sym_break] = ACTIONS(2788), - [anon_sym_continue] = ACTIONS(2788), - [anon_sym_return] = ACTIONS(2788), - [anon_sym_DOLLARfor] = ACTIONS(2788), - [anon_sym_for] = ACTIONS(2788), - [anon_sym_POUND] = ACTIONS(2788), - [anon_sym_asm] = ACTIONS(2788), - [anon_sym_AT_LBRACK] = ACTIONS(2788), - [sym___double_quote] = ACTIONS(2788), - [sym___single_quote] = ACTIONS(2788), - [sym___c_double_quote] = ACTIONS(2788), - [sym___c_single_quote] = ACTIONS(2788), - [sym___r_double_quote] = ACTIONS(2788), - [sym___r_single_quote] = ACTIONS(2788), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4459), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [451] = { [sym_line_comment] = STATE(451), [sym_block_comment] = STATE(451), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4374), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1398), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1396), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(389), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2829), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [452] = { [sym_line_comment] = STATE(452), [sym_block_comment] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(2792), - [sym_identifier] = ACTIONS(2794), - [anon_sym_LF] = ACTIONS(2794), - [anon_sym_CR] = ACTIONS(2794), - [anon_sym_CR_LF] = ACTIONS(2794), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2794), - [anon_sym_as] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2794), - [anon_sym_COMMA] = ACTIONS(2794), - [anon_sym_const] = ACTIONS(2794), - [anon_sym_LPAREN] = ACTIONS(2794), - [anon_sym_EQ] = ACTIONS(2794), - [anon_sym___global] = ACTIONS(2794), - [anon_sym_type] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_fn] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_SLASH] = ACTIONS(2794), - [anon_sym_PERCENT] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(2794), - [anon_sym_GT] = ACTIONS(2794), - [anon_sym_EQ_EQ] = ACTIONS(2794), - [anon_sym_BANG_EQ] = ACTIONS(2794), - [anon_sym_LT_EQ] = ACTIONS(2794), - [anon_sym_GT_EQ] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(2792), - [anon_sym_struct] = ACTIONS(2794), - [anon_sym_union] = ACTIONS(2794), - [anon_sym_pub] = ACTIONS(2794), - [anon_sym_mut] = ACTIONS(2794), - [anon_sym_enum] = ACTIONS(2794), - [anon_sym_interface] = ACTIONS(2794), - [anon_sym_PLUS_PLUS] = ACTIONS(2794), - [anon_sym_DASH_DASH] = ACTIONS(2794), - [anon_sym_QMARK] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2794), - [anon_sym_go] = ACTIONS(2794), - [anon_sym_spawn] = ACTIONS(2794), - [anon_sym_json_DOTdecode] = ACTIONS(2794), - [anon_sym_LBRACK2] = ACTIONS(2794), - [anon_sym_TILDE] = ACTIONS(2794), - [anon_sym_CARET] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_LT_DASH] = ACTIONS(2794), - [anon_sym_LT_LT] = ACTIONS(2794), - [anon_sym_GT_GT] = ACTIONS(2794), - [anon_sym_GT_GT_GT] = ACTIONS(2794), - [anon_sym_AMP_CARET] = ACTIONS(2794), - [anon_sym_AMP_AMP] = ACTIONS(2794), - [anon_sym_PIPE_PIPE] = ACTIONS(2794), - [anon_sym_or] = ACTIONS(2794), - [sym_none] = ACTIONS(2794), - [sym_true] = ACTIONS(2794), - [sym_false] = ACTIONS(2794), - [sym_nil] = ACTIONS(2794), - [anon_sym_QMARK_DOT] = ACTIONS(2794), - [anon_sym_POUND_LBRACK] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_DOLLARif] = ACTIONS(2794), - [anon_sym_is] = ACTIONS(2794), - [anon_sym_BANGis] = ACTIONS(2794), - [anon_sym_in] = ACTIONS(2794), - [anon_sym_BANGin] = ACTIONS(2794), - [anon_sym_match] = ACTIONS(2794), - [anon_sym_select] = ACTIONS(2794), - [anon_sym_STAR_EQ] = ACTIONS(2794), - [anon_sym_SLASH_EQ] = ACTIONS(2794), - [anon_sym_PERCENT_EQ] = ACTIONS(2794), - [anon_sym_LT_LT_EQ] = ACTIONS(2794), - [anon_sym_GT_GT_EQ] = ACTIONS(2794), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2794), - [anon_sym_AMP_EQ] = ACTIONS(2794), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2794), - [anon_sym_PLUS_EQ] = ACTIONS(2794), - [anon_sym_DASH_EQ] = ACTIONS(2794), - [anon_sym_PIPE_EQ] = ACTIONS(2794), - [anon_sym_CARET_EQ] = ACTIONS(2794), - [anon_sym_COLON_EQ] = ACTIONS(2794), - [anon_sym_lock] = ACTIONS(2794), - [anon_sym_rlock] = ACTIONS(2794), - [anon_sym_unsafe] = ACTIONS(2794), - [anon_sym_sql] = ACTIONS(2794), - [sym_int_literal] = ACTIONS(2794), - [sym_float_literal] = ACTIONS(2794), - [sym_rune_literal] = ACTIONS(2794), - [sym_pseudo_compile_time_identifier] = ACTIONS(2794), - [anon_sym_shared] = ACTIONS(2794), - [anon_sym_map_LBRACK] = ACTIONS(2794), - [anon_sym_chan] = ACTIONS(2794), - [anon_sym_thread] = ACTIONS(2794), - [anon_sym_atomic] = ACTIONS(2794), - [anon_sym_assert] = ACTIONS(2794), - [anon_sym_defer] = ACTIONS(2794), - [anon_sym_goto] = ACTIONS(2794), - [anon_sym_break] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2794), - [anon_sym_return] = ACTIONS(2794), - [anon_sym_DOLLARfor] = ACTIONS(2794), - [anon_sym_for] = ACTIONS(2794), - [anon_sym_POUND] = ACTIONS(2794), - [anon_sym_asm] = ACTIONS(2794), - [anon_sym_AT_LBRACK] = ACTIONS(2794), - [sym___double_quote] = ACTIONS(2794), - [sym___single_quote] = ACTIONS(2794), - [sym___c_double_quote] = ACTIONS(2794), - [sym___c_single_quote] = ACTIONS(2794), - [sym___r_double_quote] = ACTIONS(2794), - [sym___r_single_quote] = ACTIONS(2794), + [sym__expression] = STATE(2597), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3548), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4317), + [sym_identifier] = ACTIONS(2391), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [453] = { [sym_line_comment] = STATE(453), [sym_block_comment] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(2796), - [sym_identifier] = ACTIONS(2798), - [anon_sym_LF] = ACTIONS(2798), - [anon_sym_CR] = ACTIONS(2798), - [anon_sym_CR_LF] = ACTIONS(2798), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_as] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2798), - [anon_sym_const] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_EQ] = ACTIONS(2798), - [anon_sym___global] = ACTIONS(2798), - [anon_sym_type] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_fn] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2798), - [anon_sym_SLASH] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_GT] = ACTIONS(2798), - [anon_sym_EQ_EQ] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2798), - [anon_sym_LT_EQ] = ACTIONS(2798), - [anon_sym_GT_EQ] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2796), - [anon_sym_struct] = ACTIONS(2798), - [anon_sym_union] = ACTIONS(2798), - [anon_sym_pub] = ACTIONS(2798), - [anon_sym_mut] = ACTIONS(2798), - [anon_sym_enum] = ACTIONS(2798), - [anon_sym_interface] = ACTIONS(2798), - [anon_sym_PLUS_PLUS] = ACTIONS(2798), - [anon_sym_DASH_DASH] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2798), - [anon_sym_go] = ACTIONS(2798), - [anon_sym_spawn] = ACTIONS(2798), - [anon_sym_json_DOTdecode] = ACTIONS(2798), - [anon_sym_LBRACK2] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2798), - [anon_sym_CARET] = ACTIONS(2798), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_LT_LT] = ACTIONS(2798), - [anon_sym_GT_GT] = ACTIONS(2798), - [anon_sym_GT_GT_GT] = ACTIONS(2798), - [anon_sym_AMP_CARET] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_or] = ACTIONS(2798), - [sym_none] = ACTIONS(2798), - [sym_true] = ACTIONS(2798), - [sym_false] = ACTIONS(2798), - [sym_nil] = ACTIONS(2798), - [anon_sym_QMARK_DOT] = ACTIONS(2798), - [anon_sym_POUND_LBRACK] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_DOLLARif] = ACTIONS(2798), - [anon_sym_is] = ACTIONS(2798), - [anon_sym_BANGis] = ACTIONS(2798), - [anon_sym_in] = ACTIONS(2798), - [anon_sym_BANGin] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_select] = ACTIONS(2798), - [anon_sym_STAR_EQ] = ACTIONS(2798), - [anon_sym_SLASH_EQ] = ACTIONS(2798), - [anon_sym_PERCENT_EQ] = ACTIONS(2798), - [anon_sym_LT_LT_EQ] = ACTIONS(2798), - [anon_sym_GT_GT_EQ] = ACTIONS(2798), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2798), - [anon_sym_AMP_EQ] = ACTIONS(2798), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2798), - [anon_sym_PLUS_EQ] = ACTIONS(2798), - [anon_sym_DASH_EQ] = ACTIONS(2798), - [anon_sym_PIPE_EQ] = ACTIONS(2798), - [anon_sym_CARET_EQ] = ACTIONS(2798), - [anon_sym_COLON_EQ] = ACTIONS(2798), - [anon_sym_lock] = ACTIONS(2798), - [anon_sym_rlock] = ACTIONS(2798), - [anon_sym_unsafe] = ACTIONS(2798), - [anon_sym_sql] = ACTIONS(2798), - [sym_int_literal] = ACTIONS(2798), - [sym_float_literal] = ACTIONS(2798), - [sym_rune_literal] = ACTIONS(2798), - [sym_pseudo_compile_time_identifier] = ACTIONS(2798), - [anon_sym_shared] = ACTIONS(2798), - [anon_sym_map_LBRACK] = ACTIONS(2798), - [anon_sym_chan] = ACTIONS(2798), - [anon_sym_thread] = ACTIONS(2798), - [anon_sym_atomic] = ACTIONS(2798), - [anon_sym_assert] = ACTIONS(2798), - [anon_sym_defer] = ACTIONS(2798), - [anon_sym_goto] = ACTIONS(2798), - [anon_sym_break] = ACTIONS(2798), - [anon_sym_continue] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_DOLLARfor] = ACTIONS(2798), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_POUND] = ACTIONS(2798), - [anon_sym_asm] = ACTIONS(2798), - [anon_sym_AT_LBRACK] = ACTIONS(2798), - [sym___double_quote] = ACTIONS(2798), - [sym___single_quote] = ACTIONS(2798), - [sym___c_double_quote] = ACTIONS(2798), - [sym___c_single_quote] = ACTIONS(2798), - [sym___r_double_quote] = ACTIONS(2798), - [sym___r_single_quote] = ACTIONS(2798), + [sym__expression] = STATE(2597), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4317), + [sym_identifier] = ACTIONS(1219), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [454] = { [sym_line_comment] = STATE(454), [sym_block_comment] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(2800), - [sym_identifier] = ACTIONS(2802), - [anon_sym_LF] = ACTIONS(2802), - [anon_sym_CR] = ACTIONS(2802), - [anon_sym_CR_LF] = ACTIONS(2802), + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2833), + [anon_sym_CR] = ACTIONS(2833), + [anon_sym_CR_LF] = ACTIONS(2833), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_as] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2802), - [anon_sym___global] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_fn] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_SLASH] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2802), - [anon_sym_GT] = ACTIONS(2802), - [anon_sym_EQ_EQ] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2802), - [anon_sym_LT_EQ] = ACTIONS(2802), - [anon_sym_GT_EQ] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_struct] = ACTIONS(2802), - [anon_sym_union] = ACTIONS(2802), - [anon_sym_pub] = ACTIONS(2802), - [anon_sym_mut] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2802), - [anon_sym_interface] = ACTIONS(2802), - [anon_sym_PLUS_PLUS] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_go] = ACTIONS(2802), - [anon_sym_spawn] = ACTIONS(2802), - [anon_sym_json_DOTdecode] = ACTIONS(2802), - [anon_sym_LBRACK2] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2802), - [anon_sym_CARET] = ACTIONS(2802), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_LT_LT] = ACTIONS(2802), - [anon_sym_GT_GT] = ACTIONS(2802), - [anon_sym_GT_GT_GT] = ACTIONS(2802), - [anon_sym_AMP_CARET] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_or] = ACTIONS(2802), - [sym_none] = ACTIONS(2802), - [sym_true] = ACTIONS(2802), - [sym_false] = ACTIONS(2802), - [sym_nil] = ACTIONS(2802), - [anon_sym_QMARK_DOT] = ACTIONS(2802), - [anon_sym_POUND_LBRACK] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_DOLLARif] = ACTIONS(2802), - [anon_sym_is] = ACTIONS(2802), - [anon_sym_BANGis] = ACTIONS(2802), - [anon_sym_in] = ACTIONS(2802), - [anon_sym_BANGin] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_select] = ACTIONS(2802), - [anon_sym_STAR_EQ] = ACTIONS(2802), - [anon_sym_SLASH_EQ] = ACTIONS(2802), - [anon_sym_PERCENT_EQ] = ACTIONS(2802), - [anon_sym_LT_LT_EQ] = ACTIONS(2802), - [anon_sym_GT_GT_EQ] = ACTIONS(2802), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2802), - [anon_sym_AMP_EQ] = ACTIONS(2802), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2802), - [anon_sym_PLUS_EQ] = ACTIONS(2802), - [anon_sym_DASH_EQ] = ACTIONS(2802), - [anon_sym_PIPE_EQ] = ACTIONS(2802), - [anon_sym_CARET_EQ] = ACTIONS(2802), - [anon_sym_COLON_EQ] = ACTIONS(2802), - [anon_sym_lock] = ACTIONS(2802), - [anon_sym_rlock] = ACTIONS(2802), - [anon_sym_unsafe] = ACTIONS(2802), - [anon_sym_sql] = ACTIONS(2802), - [sym_int_literal] = ACTIONS(2802), - [sym_float_literal] = ACTIONS(2802), - [sym_rune_literal] = ACTIONS(2802), - [sym_pseudo_compile_time_identifier] = ACTIONS(2802), - [anon_sym_shared] = ACTIONS(2802), - [anon_sym_map_LBRACK] = ACTIONS(2802), - [anon_sym_chan] = ACTIONS(2802), - [anon_sym_thread] = ACTIONS(2802), - [anon_sym_atomic] = ACTIONS(2802), - [anon_sym_assert] = ACTIONS(2802), - [anon_sym_defer] = ACTIONS(2802), - [anon_sym_goto] = ACTIONS(2802), - [anon_sym_break] = ACTIONS(2802), - [anon_sym_continue] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_DOLLARfor] = ACTIONS(2802), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_POUND] = ACTIONS(2802), - [anon_sym_asm] = ACTIONS(2802), - [anon_sym_AT_LBRACK] = ACTIONS(2802), - [sym___double_quote] = ACTIONS(2802), - [sym___single_quote] = ACTIONS(2802), - [sym___c_double_quote] = ACTIONS(2802), - [sym___c_single_quote] = ACTIONS(2802), - [sym___r_double_quote] = ACTIONS(2802), - [sym___r_single_quote] = ACTIONS(2802), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_EQ] = ACTIONS(2833), + [anon_sym___global] = ACTIONS(2833), + [anon_sym_type] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_pub] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_interface] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2833), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_CARET] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2833), + [anon_sym_POUND_LBRACK] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2833), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_STAR_EQ] = ACTIONS(2833), + [anon_sym_SLASH_EQ] = ACTIONS(2833), + [anon_sym_PERCENT_EQ] = ACTIONS(2833), + [anon_sym_LT_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_GT_EQ] = ACTIONS(2833), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2833), + [anon_sym_AMP_EQ] = ACTIONS(2833), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2833), + [anon_sym_PLUS_EQ] = ACTIONS(2833), + [anon_sym_DASH_EQ] = ACTIONS(2833), + [anon_sym_PIPE_EQ] = ACTIONS(2833), + [anon_sym_CARET_EQ] = ACTIONS(2833), + [anon_sym_COLON_EQ] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), + [sym_rune_literal] = ACTIONS(2833), + [anon_sym_SQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_c_SQUOTE] = ACTIONS(2833), + [anon_sym_c_DQUOTE] = ACTIONS(2833), + [anon_sym_r_SQUOTE] = ACTIONS(2833), + [anon_sym_r_DQUOTE] = ACTIONS(2833), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2833), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_defer] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_DOLLARfor] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_POUND] = ACTIONS(2833), + [anon_sym_asm] = ACTIONS(2833), + [anon_sym_AT_LBRACK] = ACTIONS(2833), }, [455] = { [sym_line_comment] = STATE(455), [sym_block_comment] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(2804), - [sym_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2806), - [anon_sym_CR] = ACTIONS(2806), - [anon_sym_CR_LF] = ACTIONS(2806), + [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(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_as] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_EQ] = ACTIONS(2806), - [anon_sym___global] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_fn] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_SLASH] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2806), - [anon_sym_GT] = ACTIONS(2806), - [anon_sym_EQ_EQ] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_LT_EQ] = ACTIONS(2806), - [anon_sym_GT_EQ] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2804), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_union] = ACTIONS(2806), - [anon_sym_pub] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_interface] = ACTIONS(2806), - [anon_sym_PLUS_PLUS] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2806), - [anon_sym_go] = ACTIONS(2806), - [anon_sym_spawn] = ACTIONS(2806), - [anon_sym_json_DOTdecode] = ACTIONS(2806), - [anon_sym_LBRACK2] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_LT_LT] = ACTIONS(2806), - [anon_sym_GT_GT] = ACTIONS(2806), - [anon_sym_GT_GT_GT] = ACTIONS(2806), - [anon_sym_AMP_CARET] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_or] = ACTIONS(2806), - [sym_none] = ACTIONS(2806), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_nil] = ACTIONS(2806), - [anon_sym_QMARK_DOT] = ACTIONS(2806), - [anon_sym_POUND_LBRACK] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_DOLLARif] = ACTIONS(2806), - [anon_sym_is] = ACTIONS(2806), - [anon_sym_BANGis] = ACTIONS(2806), - [anon_sym_in] = ACTIONS(2806), - [anon_sym_BANGin] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_select] = ACTIONS(2806), - [anon_sym_STAR_EQ] = ACTIONS(2806), - [anon_sym_SLASH_EQ] = ACTIONS(2806), - [anon_sym_PERCENT_EQ] = ACTIONS(2806), - [anon_sym_LT_LT_EQ] = ACTIONS(2806), - [anon_sym_GT_GT_EQ] = ACTIONS(2806), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2806), - [anon_sym_AMP_EQ] = ACTIONS(2806), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2806), - [anon_sym_PLUS_EQ] = ACTIONS(2806), - [anon_sym_DASH_EQ] = ACTIONS(2806), - [anon_sym_PIPE_EQ] = ACTIONS(2806), - [anon_sym_CARET_EQ] = ACTIONS(2806), - [anon_sym_COLON_EQ] = ACTIONS(2806), - [anon_sym_lock] = ACTIONS(2806), - [anon_sym_rlock] = ACTIONS(2806), - [anon_sym_unsafe] = ACTIONS(2806), - [anon_sym_sql] = ACTIONS(2806), - [sym_int_literal] = ACTIONS(2806), - [sym_float_literal] = ACTIONS(2806), - [sym_rune_literal] = ACTIONS(2806), - [sym_pseudo_compile_time_identifier] = ACTIONS(2806), - [anon_sym_shared] = ACTIONS(2806), - [anon_sym_map_LBRACK] = ACTIONS(2806), - [anon_sym_chan] = ACTIONS(2806), - [anon_sym_thread] = ACTIONS(2806), - [anon_sym_atomic] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_defer] = ACTIONS(2806), - [anon_sym_goto] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_DOLLARfor] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_POUND] = ACTIONS(2806), - [anon_sym_asm] = ACTIONS(2806), - [anon_sym_AT_LBRACK] = ACTIONS(2806), - [sym___double_quote] = ACTIONS(2806), - [sym___single_quote] = ACTIONS(2806), - [sym___c_double_quote] = ACTIONS(2806), - [sym___c_single_quote] = ACTIONS(2806), - [sym___r_double_quote] = ACTIONS(2806), - [sym___r_single_quote] = ACTIONS(2806), + [anon_sym_DOT] = ACTIONS(2837), + [anon_sym_as] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym_const] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2837), + [anon_sym_EQ] = ACTIONS(2837), + [anon_sym___global] = ACTIONS(2837), + [anon_sym_type] = ACTIONS(2837), + [anon_sym_PIPE] = ACTIONS(2837), + [anon_sym_fn] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2837), + [anon_sym_LT] = ACTIONS(2837), + [anon_sym_GT] = ACTIONS(2837), + [anon_sym_EQ_EQ] = ACTIONS(2837), + [anon_sym_BANG_EQ] = ACTIONS(2837), + [anon_sym_LT_EQ] = ACTIONS(2837), + [anon_sym_GT_EQ] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_union] = ACTIONS(2837), + [anon_sym_pub] = ACTIONS(2837), + [anon_sym_mut] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(2837), + [anon_sym_interface] = ACTIONS(2837), + [anon_sym_PLUS_PLUS] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(2837), + [anon_sym_QMARK] = ACTIONS(2837), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_go] = ACTIONS(2837), + [anon_sym_spawn] = ACTIONS(2837), + [anon_sym_json_DOTdecode] = ACTIONS(2837), + [anon_sym_LBRACK2] = ACTIONS(2837), + [anon_sym_TILDE] = ACTIONS(2837), + [anon_sym_CARET] = ACTIONS(2837), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_LT_DASH] = ACTIONS(2837), + [anon_sym_LT_LT] = ACTIONS(2837), + [anon_sym_GT_GT] = ACTIONS(2837), + [anon_sym_GT_GT_GT] = ACTIONS(2837), + [anon_sym_AMP_CARET] = ACTIONS(2837), + [anon_sym_AMP_AMP] = ACTIONS(2837), + [anon_sym_PIPE_PIPE] = ACTIONS(2837), + [anon_sym_or] = ACTIONS(2837), + [sym_none] = ACTIONS(2837), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_nil] = ACTIONS(2837), + [anon_sym_QMARK_DOT] = ACTIONS(2837), + [anon_sym_POUND_LBRACK] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_DOLLARif] = ACTIONS(2837), + [anon_sym_is] = ACTIONS(2837), + [anon_sym_BANGis] = ACTIONS(2837), + [anon_sym_in] = ACTIONS(2837), + [anon_sym_BANGin] = ACTIONS(2837), + [anon_sym_match] = ACTIONS(2837), + [anon_sym_select] = ACTIONS(2837), + [anon_sym_STAR_EQ] = ACTIONS(2837), + [anon_sym_SLASH_EQ] = ACTIONS(2837), + [anon_sym_PERCENT_EQ] = ACTIONS(2837), + [anon_sym_LT_LT_EQ] = ACTIONS(2837), + [anon_sym_GT_GT_EQ] = ACTIONS(2837), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2837), + [anon_sym_AMP_EQ] = ACTIONS(2837), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2837), + [anon_sym_PLUS_EQ] = ACTIONS(2837), + [anon_sym_DASH_EQ] = ACTIONS(2837), + [anon_sym_PIPE_EQ] = ACTIONS(2837), + [anon_sym_CARET_EQ] = ACTIONS(2837), + [anon_sym_COLON_EQ] = ACTIONS(2837), + [anon_sym_lock] = ACTIONS(2837), + [anon_sym_rlock] = ACTIONS(2837), + [anon_sym_unsafe] = ACTIONS(2837), + [anon_sym_sql] = ACTIONS(2837), + [sym_int_literal] = ACTIONS(2837), + [sym_float_literal] = ACTIONS(2837), + [sym_rune_literal] = ACTIONS(2837), + [anon_sym_SQUOTE] = ACTIONS(2837), + [anon_sym_DQUOTE] = ACTIONS(2837), + [anon_sym_c_SQUOTE] = ACTIONS(2837), + [anon_sym_c_DQUOTE] = ACTIONS(2837), + [anon_sym_r_SQUOTE] = ACTIONS(2837), + [anon_sym_r_DQUOTE] = ACTIONS(2837), + [sym_pseudo_compile_time_identifier] = ACTIONS(2837), + [anon_sym_shared] = ACTIONS(2837), + [anon_sym_map_LBRACK] = ACTIONS(2837), + [anon_sym_chan] = ACTIONS(2837), + [anon_sym_thread] = ACTIONS(2837), + [anon_sym_atomic] = ACTIONS(2837), + [anon_sym_assert] = ACTIONS(2837), + [anon_sym_defer] = ACTIONS(2837), + [anon_sym_goto] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_DOLLARfor] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_POUND] = ACTIONS(2837), + [anon_sym_asm] = ACTIONS(2837), + [anon_sym_AT_LBRACK] = ACTIONS(2837), }, [456] = { [sym_line_comment] = STATE(456), [sym_block_comment] = STATE(456), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4372), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2839), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [457] = { [sym_line_comment] = STATE(457), [sym_block_comment] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(2810), - [sym_identifier] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_CR] = ACTIONS(2812), - [anon_sym_CR_LF] = ACTIONS(2812), + [ts_builtin_sym_end] = ACTIONS(2841), + [sym_identifier] = ACTIONS(2843), + [anon_sym_LF] = ACTIONS(2843), + [anon_sym_CR] = ACTIONS(2843), + [anon_sym_CR_LF] = ACTIONS(2843), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2812), - [anon_sym_as] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_const] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym___global] = ACTIONS(2812), - [anon_sym_type] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_SLASH] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_EQ_EQ] = ACTIONS(2812), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_EQ] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_union] = ACTIONS(2812), - [anon_sym_pub] = ACTIONS(2812), - [anon_sym_mut] = ACTIONS(2812), - [anon_sym_enum] = ACTIONS(2812), - [anon_sym_interface] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_QMARK] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_go] = ACTIONS(2812), - [anon_sym_spawn] = ACTIONS(2812), - [anon_sym_json_DOTdecode] = ACTIONS(2812), - [anon_sym_LBRACK2] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_LT_DASH] = ACTIONS(2812), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_GT_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_CARET] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_PIPE_PIPE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2812), - [sym_none] = ACTIONS(2812), - [sym_true] = ACTIONS(2812), - [sym_false] = ACTIONS(2812), - [sym_nil] = ACTIONS(2812), - [anon_sym_QMARK_DOT] = ACTIONS(2812), - [anon_sym_POUND_LBRACK] = ACTIONS(2812), - [anon_sym_if] = ACTIONS(2812), - [anon_sym_DOLLARif] = ACTIONS(2812), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_BANGis] = ACTIONS(2812), - [anon_sym_in] = ACTIONS(2812), - [anon_sym_BANGin] = ACTIONS(2812), - [anon_sym_match] = ACTIONS(2812), - [anon_sym_select] = ACTIONS(2812), - [anon_sym_STAR_EQ] = ACTIONS(2812), - [anon_sym_SLASH_EQ] = ACTIONS(2812), - [anon_sym_PERCENT_EQ] = ACTIONS(2812), - [anon_sym_LT_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_GT_EQ] = ACTIONS(2812), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2812), - [anon_sym_AMP_EQ] = ACTIONS(2812), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2812), - [anon_sym_PLUS_EQ] = ACTIONS(2812), - [anon_sym_DASH_EQ] = ACTIONS(2812), - [anon_sym_PIPE_EQ] = ACTIONS(2812), - [anon_sym_CARET_EQ] = ACTIONS(2812), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_lock] = ACTIONS(2812), - [anon_sym_rlock] = ACTIONS(2812), - [anon_sym_unsafe] = ACTIONS(2812), - [anon_sym_sql] = ACTIONS(2812), - [sym_int_literal] = ACTIONS(2812), - [sym_float_literal] = ACTIONS(2812), - [sym_rune_literal] = ACTIONS(2812), - [sym_pseudo_compile_time_identifier] = ACTIONS(2812), - [anon_sym_shared] = ACTIONS(2812), - [anon_sym_map_LBRACK] = ACTIONS(2812), - [anon_sym_chan] = ACTIONS(2812), - [anon_sym_thread] = ACTIONS(2812), - [anon_sym_atomic] = ACTIONS(2812), - [anon_sym_assert] = ACTIONS(2812), - [anon_sym_defer] = ACTIONS(2812), - [anon_sym_goto] = ACTIONS(2812), - [anon_sym_break] = ACTIONS(2812), - [anon_sym_continue] = ACTIONS(2812), - [anon_sym_return] = ACTIONS(2812), - [anon_sym_DOLLARfor] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2812), - [anon_sym_POUND] = ACTIONS(2812), - [anon_sym_asm] = ACTIONS(2812), - [anon_sym_AT_LBRACK] = ACTIONS(2812), - [sym___double_quote] = ACTIONS(2812), - [sym___single_quote] = ACTIONS(2812), - [sym___c_double_quote] = ACTIONS(2812), - [sym___c_single_quote] = ACTIONS(2812), - [sym___r_double_quote] = ACTIONS(2812), - [sym___r_single_quote] = ACTIONS(2812), + [anon_sym_DOT] = ACTIONS(2843), + [anon_sym_as] = ACTIONS(2843), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_COMMA] = ACTIONS(2843), + [anon_sym_const] = ACTIONS(2843), + [anon_sym_LPAREN] = ACTIONS(2843), + [anon_sym_EQ] = ACTIONS(2843), + [anon_sym___global] = ACTIONS(2843), + [anon_sym_type] = ACTIONS(2843), + [anon_sym_PIPE] = ACTIONS(2843), + [anon_sym_fn] = ACTIONS(2843), + [anon_sym_PLUS] = ACTIONS(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_SLASH] = ACTIONS(2843), + [anon_sym_PERCENT] = ACTIONS(2843), + [anon_sym_LT] = ACTIONS(2843), + [anon_sym_GT] = ACTIONS(2843), + [anon_sym_EQ_EQ] = ACTIONS(2843), + [anon_sym_BANG_EQ] = ACTIONS(2843), + [anon_sym_LT_EQ] = ACTIONS(2843), + [anon_sym_GT_EQ] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_struct] = ACTIONS(2843), + [anon_sym_union] = ACTIONS(2843), + [anon_sym_pub] = ACTIONS(2843), + [anon_sym_mut] = ACTIONS(2843), + [anon_sym_enum] = ACTIONS(2843), + [anon_sym_interface] = ACTIONS(2843), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_QMARK] = ACTIONS(2843), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_go] = ACTIONS(2843), + [anon_sym_spawn] = ACTIONS(2843), + [anon_sym_json_DOTdecode] = ACTIONS(2843), + [anon_sym_LBRACK2] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2843), + [anon_sym_LT_DASH] = ACTIONS(2843), + [anon_sym_LT_LT] = ACTIONS(2843), + [anon_sym_GT_GT] = ACTIONS(2843), + [anon_sym_GT_GT_GT] = ACTIONS(2843), + [anon_sym_AMP_CARET] = ACTIONS(2843), + [anon_sym_AMP_AMP] = ACTIONS(2843), + [anon_sym_PIPE_PIPE] = ACTIONS(2843), + [anon_sym_or] = ACTIONS(2843), + [sym_none] = ACTIONS(2843), + [sym_true] = ACTIONS(2843), + [sym_false] = ACTIONS(2843), + [sym_nil] = ACTIONS(2843), + [anon_sym_QMARK_DOT] = ACTIONS(2843), + [anon_sym_POUND_LBRACK] = ACTIONS(2843), + [anon_sym_if] = ACTIONS(2843), + [anon_sym_DOLLARif] = ACTIONS(2843), + [anon_sym_is] = ACTIONS(2843), + [anon_sym_BANGis] = ACTIONS(2843), + [anon_sym_in] = ACTIONS(2843), + [anon_sym_BANGin] = ACTIONS(2843), + [anon_sym_match] = ACTIONS(2843), + [anon_sym_select] = ACTIONS(2843), + [anon_sym_STAR_EQ] = ACTIONS(2843), + [anon_sym_SLASH_EQ] = ACTIONS(2843), + [anon_sym_PERCENT_EQ] = ACTIONS(2843), + [anon_sym_LT_LT_EQ] = ACTIONS(2843), + [anon_sym_GT_GT_EQ] = ACTIONS(2843), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2843), + [anon_sym_AMP_EQ] = ACTIONS(2843), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2843), + [anon_sym_PLUS_EQ] = ACTIONS(2843), + [anon_sym_DASH_EQ] = ACTIONS(2843), + [anon_sym_PIPE_EQ] = ACTIONS(2843), + [anon_sym_CARET_EQ] = ACTIONS(2843), + [anon_sym_COLON_EQ] = ACTIONS(2843), + [anon_sym_lock] = ACTIONS(2843), + [anon_sym_rlock] = ACTIONS(2843), + [anon_sym_unsafe] = ACTIONS(2843), + [anon_sym_sql] = ACTIONS(2843), + [sym_int_literal] = ACTIONS(2843), + [sym_float_literal] = ACTIONS(2843), + [sym_rune_literal] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2843), + [anon_sym_c_SQUOTE] = ACTIONS(2843), + [anon_sym_c_DQUOTE] = ACTIONS(2843), + [anon_sym_r_SQUOTE] = ACTIONS(2843), + [anon_sym_r_DQUOTE] = ACTIONS(2843), + [sym_pseudo_compile_time_identifier] = ACTIONS(2843), + [anon_sym_shared] = ACTIONS(2843), + [anon_sym_map_LBRACK] = ACTIONS(2843), + [anon_sym_chan] = ACTIONS(2843), + [anon_sym_thread] = ACTIONS(2843), + [anon_sym_atomic] = ACTIONS(2843), + [anon_sym_assert] = ACTIONS(2843), + [anon_sym_defer] = ACTIONS(2843), + [anon_sym_goto] = ACTIONS(2843), + [anon_sym_break] = ACTIONS(2843), + [anon_sym_continue] = ACTIONS(2843), + [anon_sym_return] = ACTIONS(2843), + [anon_sym_DOLLARfor] = ACTIONS(2843), + [anon_sym_for] = ACTIONS(2843), + [anon_sym_POUND] = ACTIONS(2843), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym_AT_LBRACK] = ACTIONS(2843), }, [458] = { [sym_line_comment] = STATE(458), [sym_block_comment] = STATE(458), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2925), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2814), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(2816), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(2845), + [sym_identifier] = ACTIONS(2847), + [anon_sym_LF] = ACTIONS(2847), + [anon_sym_CR] = ACTIONS(2847), + [anon_sym_CR_LF] = ACTIONS(2847), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2847), + [anon_sym_as] = ACTIONS(2847), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_COMMA] = ACTIONS(2847), + [anon_sym_const] = ACTIONS(2847), + [anon_sym_LPAREN] = ACTIONS(2847), + [anon_sym_EQ] = ACTIONS(2847), + [anon_sym___global] = ACTIONS(2847), + [anon_sym_type] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_fn] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2847), + [anon_sym_DASH] = ACTIONS(2847), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_SLASH] = ACTIONS(2847), + [anon_sym_PERCENT] = ACTIONS(2847), + [anon_sym_LT] = ACTIONS(2847), + [anon_sym_GT] = ACTIONS(2847), + [anon_sym_EQ_EQ] = ACTIONS(2847), + [anon_sym_BANG_EQ] = ACTIONS(2847), + [anon_sym_LT_EQ] = ACTIONS(2847), + [anon_sym_GT_EQ] = ACTIONS(2847), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(2847), + [anon_sym_union] = ACTIONS(2847), + [anon_sym_pub] = ACTIONS(2847), + [anon_sym_mut] = ACTIONS(2847), + [anon_sym_enum] = ACTIONS(2847), + [anon_sym_interface] = ACTIONS(2847), + [anon_sym_PLUS_PLUS] = ACTIONS(2847), + [anon_sym_DASH_DASH] = ACTIONS(2847), + [anon_sym_QMARK] = ACTIONS(2847), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2847), + [anon_sym_spawn] = ACTIONS(2847), + [anon_sym_json_DOTdecode] = ACTIONS(2847), + [anon_sym_LBRACK2] = ACTIONS(2847), + [anon_sym_TILDE] = ACTIONS(2847), + [anon_sym_CARET] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_LT_DASH] = ACTIONS(2847), + [anon_sym_LT_LT] = ACTIONS(2847), + [anon_sym_GT_GT] = ACTIONS(2847), + [anon_sym_GT_GT_GT] = ACTIONS(2847), + [anon_sym_AMP_CARET] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2847), + [anon_sym_PIPE_PIPE] = ACTIONS(2847), + [anon_sym_or] = ACTIONS(2847), + [sym_none] = ACTIONS(2847), + [sym_true] = ACTIONS(2847), + [sym_false] = ACTIONS(2847), + [sym_nil] = ACTIONS(2847), + [anon_sym_QMARK_DOT] = ACTIONS(2847), + [anon_sym_POUND_LBRACK] = ACTIONS(2847), + [anon_sym_if] = ACTIONS(2847), + [anon_sym_DOLLARif] = ACTIONS(2847), + [anon_sym_is] = ACTIONS(2847), + [anon_sym_BANGis] = ACTIONS(2847), + [anon_sym_in] = ACTIONS(2847), + [anon_sym_BANGin] = ACTIONS(2847), + [anon_sym_match] = ACTIONS(2847), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_STAR_EQ] = ACTIONS(2847), + [anon_sym_SLASH_EQ] = ACTIONS(2847), + [anon_sym_PERCENT_EQ] = ACTIONS(2847), + [anon_sym_LT_LT_EQ] = ACTIONS(2847), + [anon_sym_GT_GT_EQ] = ACTIONS(2847), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2847), + [anon_sym_AMP_EQ] = ACTIONS(2847), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2847), + [anon_sym_PLUS_EQ] = ACTIONS(2847), + [anon_sym_DASH_EQ] = ACTIONS(2847), + [anon_sym_PIPE_EQ] = ACTIONS(2847), + [anon_sym_CARET_EQ] = ACTIONS(2847), + [anon_sym_COLON_EQ] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2847), + [anon_sym_rlock] = ACTIONS(2847), + [anon_sym_unsafe] = ACTIONS(2847), + [anon_sym_sql] = ACTIONS(2847), + [sym_int_literal] = ACTIONS(2847), + [sym_float_literal] = ACTIONS(2847), + [sym_rune_literal] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2847), + [anon_sym_c_SQUOTE] = ACTIONS(2847), + [anon_sym_c_DQUOTE] = ACTIONS(2847), + [anon_sym_r_SQUOTE] = ACTIONS(2847), + [anon_sym_r_DQUOTE] = ACTIONS(2847), + [sym_pseudo_compile_time_identifier] = ACTIONS(2847), + [anon_sym_shared] = ACTIONS(2847), + [anon_sym_map_LBRACK] = ACTIONS(2847), + [anon_sym_chan] = ACTIONS(2847), + [anon_sym_thread] = ACTIONS(2847), + [anon_sym_atomic] = ACTIONS(2847), + [anon_sym_assert] = ACTIONS(2847), + [anon_sym_defer] = ACTIONS(2847), + [anon_sym_goto] = ACTIONS(2847), + [anon_sym_break] = ACTIONS(2847), + [anon_sym_continue] = ACTIONS(2847), + [anon_sym_return] = ACTIONS(2847), + [anon_sym_DOLLARfor] = ACTIONS(2847), + [anon_sym_for] = ACTIONS(2847), + [anon_sym_POUND] = ACTIONS(2847), + [anon_sym_asm] = ACTIONS(2847), + [anon_sym_AT_LBRACK] = ACTIONS(2847), }, [459] = { [sym_line_comment] = STATE(459), [sym_block_comment] = STATE(459), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4466), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(2849), + [sym_identifier] = ACTIONS(2851), + [anon_sym_LF] = ACTIONS(2851), + [anon_sym_CR] = ACTIONS(2851), + [anon_sym_CR_LF] = ACTIONS(2851), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2851), + [anon_sym_as] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_COMMA] = ACTIONS(2851), + [anon_sym_const] = ACTIONS(2851), + [anon_sym_LPAREN] = ACTIONS(2851), + [anon_sym_EQ] = ACTIONS(2851), + [anon_sym___global] = ACTIONS(2851), + [anon_sym_type] = ACTIONS(2851), + [anon_sym_PIPE] = ACTIONS(2851), + [anon_sym_fn] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2851), + [anon_sym_SLASH] = ACTIONS(2851), + [anon_sym_PERCENT] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(2851), + [anon_sym_GT] = ACTIONS(2851), + [anon_sym_EQ_EQ] = ACTIONS(2851), + [anon_sym_BANG_EQ] = ACTIONS(2851), + [anon_sym_LT_EQ] = ACTIONS(2851), + [anon_sym_GT_EQ] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_struct] = ACTIONS(2851), + [anon_sym_union] = ACTIONS(2851), + [anon_sym_pub] = ACTIONS(2851), + [anon_sym_mut] = ACTIONS(2851), + [anon_sym_enum] = ACTIONS(2851), + [anon_sym_interface] = ACTIONS(2851), + [anon_sym_PLUS_PLUS] = ACTIONS(2851), + [anon_sym_DASH_DASH] = ACTIONS(2851), + [anon_sym_QMARK] = ACTIONS(2851), + [anon_sym_BANG] = ACTIONS(2851), + [anon_sym_go] = ACTIONS(2851), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(2851), + [anon_sym_LBRACK2] = ACTIONS(2851), + [anon_sym_TILDE] = ACTIONS(2851), + [anon_sym_CARET] = ACTIONS(2851), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_LT_DASH] = ACTIONS(2851), + [anon_sym_LT_LT] = ACTIONS(2851), + [anon_sym_GT_GT] = ACTIONS(2851), + [anon_sym_GT_GT_GT] = ACTIONS(2851), + [anon_sym_AMP_CARET] = ACTIONS(2851), + [anon_sym_AMP_AMP] = ACTIONS(2851), + [anon_sym_PIPE_PIPE] = ACTIONS(2851), + [anon_sym_or] = ACTIONS(2851), + [sym_none] = ACTIONS(2851), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [sym_nil] = ACTIONS(2851), + [anon_sym_QMARK_DOT] = ACTIONS(2851), + [anon_sym_POUND_LBRACK] = ACTIONS(2851), + [anon_sym_if] = ACTIONS(2851), + [anon_sym_DOLLARif] = ACTIONS(2851), + [anon_sym_is] = ACTIONS(2851), + [anon_sym_BANGis] = ACTIONS(2851), + [anon_sym_in] = ACTIONS(2851), + [anon_sym_BANGin] = ACTIONS(2851), + [anon_sym_match] = ACTIONS(2851), + [anon_sym_select] = ACTIONS(2851), + [anon_sym_STAR_EQ] = ACTIONS(2851), + [anon_sym_SLASH_EQ] = ACTIONS(2851), + [anon_sym_PERCENT_EQ] = ACTIONS(2851), + [anon_sym_LT_LT_EQ] = ACTIONS(2851), + [anon_sym_GT_GT_EQ] = ACTIONS(2851), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2851), + [anon_sym_AMP_EQ] = ACTIONS(2851), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2851), + [anon_sym_PLUS_EQ] = ACTIONS(2851), + [anon_sym_DASH_EQ] = ACTIONS(2851), + [anon_sym_PIPE_EQ] = ACTIONS(2851), + [anon_sym_CARET_EQ] = ACTIONS(2851), + [anon_sym_COLON_EQ] = ACTIONS(2851), + [anon_sym_lock] = ACTIONS(2851), + [anon_sym_rlock] = ACTIONS(2851), + [anon_sym_unsafe] = ACTIONS(2851), + [anon_sym_sql] = ACTIONS(2851), + [sym_int_literal] = ACTIONS(2851), + [sym_float_literal] = ACTIONS(2851), + [sym_rune_literal] = ACTIONS(2851), + [anon_sym_SQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [anon_sym_c_SQUOTE] = ACTIONS(2851), + [anon_sym_c_DQUOTE] = ACTIONS(2851), + [anon_sym_r_SQUOTE] = ACTIONS(2851), + [anon_sym_r_DQUOTE] = ACTIONS(2851), + [sym_pseudo_compile_time_identifier] = ACTIONS(2851), + [anon_sym_shared] = ACTIONS(2851), + [anon_sym_map_LBRACK] = ACTIONS(2851), + [anon_sym_chan] = ACTIONS(2851), + [anon_sym_thread] = ACTIONS(2851), + [anon_sym_atomic] = ACTIONS(2851), + [anon_sym_assert] = ACTIONS(2851), + [anon_sym_defer] = ACTIONS(2851), + [anon_sym_goto] = ACTIONS(2851), + [anon_sym_break] = ACTIONS(2851), + [anon_sym_continue] = ACTIONS(2851), + [anon_sym_return] = ACTIONS(2851), + [anon_sym_DOLLARfor] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2851), + [anon_sym_POUND] = ACTIONS(2851), + [anon_sym_asm] = ACTIONS(2851), + [anon_sym_AT_LBRACK] = ACTIONS(2851), }, [460] = { [sym_line_comment] = STATE(460), [sym_block_comment] = STATE(460), - [ts_builtin_sym_end] = ACTIONS(2822), - [sym_identifier] = ACTIONS(2824), - [anon_sym_LF] = ACTIONS(2824), - [anon_sym_CR] = ACTIONS(2824), - [anon_sym_CR_LF] = ACTIONS(2824), + [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(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2824), - [anon_sym_as] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_const] = ACTIONS(2824), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym_EQ] = ACTIONS(2824), - [anon_sym___global] = ACTIONS(2824), - [anon_sym_type] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_fn] = ACTIONS(2824), - [anon_sym_PLUS] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_SLASH] = ACTIONS(2824), - [anon_sym_PERCENT] = ACTIONS(2824), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_GT] = ACTIONS(2824), - [anon_sym_EQ_EQ] = ACTIONS(2824), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_LT_EQ] = ACTIONS(2824), - [anon_sym_GT_EQ] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2824), - [anon_sym_union] = ACTIONS(2824), - [anon_sym_pub] = ACTIONS(2824), - [anon_sym_mut] = ACTIONS(2824), - [anon_sym_enum] = ACTIONS(2824), - [anon_sym_interface] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_go] = ACTIONS(2824), - [anon_sym_spawn] = ACTIONS(2824), - [anon_sym_json_DOTdecode] = ACTIONS(2824), - [anon_sym_LBRACK2] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_CARET] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2824), - [anon_sym_LT_DASH] = ACTIONS(2824), - [anon_sym_LT_LT] = ACTIONS(2824), - [anon_sym_GT_GT] = ACTIONS(2824), - [anon_sym_GT_GT_GT] = ACTIONS(2824), - [anon_sym_AMP_CARET] = ACTIONS(2824), - [anon_sym_AMP_AMP] = ACTIONS(2824), - [anon_sym_PIPE_PIPE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2824), - [sym_none] = ACTIONS(2824), - [sym_true] = ACTIONS(2824), - [sym_false] = ACTIONS(2824), - [sym_nil] = ACTIONS(2824), - [anon_sym_QMARK_DOT] = ACTIONS(2824), - [anon_sym_POUND_LBRACK] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_DOLLARif] = ACTIONS(2824), - [anon_sym_is] = ACTIONS(2824), - [anon_sym_BANGis] = ACTIONS(2824), - [anon_sym_in] = ACTIONS(2824), - [anon_sym_BANGin] = ACTIONS(2824), - [anon_sym_match] = ACTIONS(2824), - [anon_sym_select] = ACTIONS(2824), - [anon_sym_STAR_EQ] = ACTIONS(2824), - [anon_sym_SLASH_EQ] = ACTIONS(2824), - [anon_sym_PERCENT_EQ] = ACTIONS(2824), - [anon_sym_LT_LT_EQ] = ACTIONS(2824), - [anon_sym_GT_GT_EQ] = ACTIONS(2824), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2824), - [anon_sym_AMP_EQ] = ACTIONS(2824), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2824), - [anon_sym_PLUS_EQ] = ACTIONS(2824), - [anon_sym_DASH_EQ] = ACTIONS(2824), - [anon_sym_PIPE_EQ] = ACTIONS(2824), - [anon_sym_CARET_EQ] = ACTIONS(2824), - [anon_sym_COLON_EQ] = ACTIONS(2824), - [anon_sym_lock] = ACTIONS(2824), - [anon_sym_rlock] = ACTIONS(2824), - [anon_sym_unsafe] = ACTIONS(2824), - [anon_sym_sql] = ACTIONS(2824), - [sym_int_literal] = ACTIONS(2824), - [sym_float_literal] = ACTIONS(2824), - [sym_rune_literal] = ACTIONS(2824), - [sym_pseudo_compile_time_identifier] = ACTIONS(2824), - [anon_sym_shared] = ACTIONS(2824), - [anon_sym_map_LBRACK] = ACTIONS(2824), - [anon_sym_chan] = ACTIONS(2824), - [anon_sym_thread] = ACTIONS(2824), - [anon_sym_atomic] = ACTIONS(2824), - [anon_sym_assert] = ACTIONS(2824), - [anon_sym_defer] = ACTIONS(2824), - [anon_sym_goto] = ACTIONS(2824), - [anon_sym_break] = ACTIONS(2824), - [anon_sym_continue] = ACTIONS(2824), - [anon_sym_return] = ACTIONS(2824), - [anon_sym_DOLLARfor] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2824), - [anon_sym_POUND] = ACTIONS(2824), - [anon_sym_asm] = ACTIONS(2824), - [anon_sym_AT_LBRACK] = ACTIONS(2824), - [sym___double_quote] = ACTIONS(2824), - [sym___single_quote] = ACTIONS(2824), - [sym___c_double_quote] = ACTIONS(2824), - [sym___c_single_quote] = ACTIONS(2824), - [sym___r_double_quote] = ACTIONS(2824), - [sym___r_single_quote] = ACTIONS(2824), + [anon_sym_DOT] = ACTIONS(2855), + [anon_sym_as] = ACTIONS(2855), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_COMMA] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2855), + [anon_sym_EQ] = ACTIONS(2855), + [anon_sym___global] = ACTIONS(2855), + [anon_sym_type] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2855), + [anon_sym_fn] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(2855), + [anon_sym_SLASH] = ACTIONS(2855), + [anon_sym_PERCENT] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_GT] = ACTIONS(2855), + [anon_sym_EQ_EQ] = ACTIONS(2855), + [anon_sym_BANG_EQ] = ACTIONS(2855), + [anon_sym_LT_EQ] = ACTIONS(2855), + [anon_sym_GT_EQ] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_union] = ACTIONS(2855), + [anon_sym_pub] = ACTIONS(2855), + [anon_sym_mut] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), + [anon_sym_interface] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2855), + [anon_sym_QMARK] = ACTIONS(2855), + [anon_sym_BANG] = ACTIONS(2855), + [anon_sym_go] = ACTIONS(2855), + [anon_sym_spawn] = ACTIONS(2855), + [anon_sym_json_DOTdecode] = ACTIONS(2855), + [anon_sym_LBRACK2] = ACTIONS(2855), + [anon_sym_TILDE] = ACTIONS(2855), + [anon_sym_CARET] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_LT_DASH] = ACTIONS(2855), + [anon_sym_LT_LT] = ACTIONS(2855), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_GT_GT_GT] = ACTIONS(2855), + [anon_sym_AMP_CARET] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_or] = ACTIONS(2855), + [sym_none] = ACTIONS(2855), + [sym_true] = ACTIONS(2855), + [sym_false] = ACTIONS(2855), + [sym_nil] = ACTIONS(2855), + [anon_sym_QMARK_DOT] = ACTIONS(2855), + [anon_sym_POUND_LBRACK] = ACTIONS(2855), + [anon_sym_if] = ACTIONS(2855), + [anon_sym_DOLLARif] = ACTIONS(2855), + [anon_sym_is] = ACTIONS(2855), + [anon_sym_BANGis] = ACTIONS(2855), + [anon_sym_in] = ACTIONS(2855), + [anon_sym_BANGin] = ACTIONS(2855), + [anon_sym_match] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2855), + [anon_sym_STAR_EQ] = ACTIONS(2855), + [anon_sym_SLASH_EQ] = ACTIONS(2855), + [anon_sym_PERCENT_EQ] = ACTIONS(2855), + [anon_sym_LT_LT_EQ] = ACTIONS(2855), + [anon_sym_GT_GT_EQ] = ACTIONS(2855), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2855), + [anon_sym_AMP_EQ] = ACTIONS(2855), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2855), + [anon_sym_PLUS_EQ] = ACTIONS(2855), + [anon_sym_DASH_EQ] = ACTIONS(2855), + [anon_sym_PIPE_EQ] = ACTIONS(2855), + [anon_sym_CARET_EQ] = ACTIONS(2855), + [anon_sym_COLON_EQ] = ACTIONS(2855), + [anon_sym_lock] = ACTIONS(2855), + [anon_sym_rlock] = ACTIONS(2855), + [anon_sym_unsafe] = ACTIONS(2855), + [anon_sym_sql] = ACTIONS(2855), + [sym_int_literal] = ACTIONS(2855), + [sym_float_literal] = ACTIONS(2855), + [sym_rune_literal] = ACTIONS(2855), + [anon_sym_SQUOTE] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_c_SQUOTE] = ACTIONS(2855), + [anon_sym_c_DQUOTE] = ACTIONS(2855), + [anon_sym_r_SQUOTE] = ACTIONS(2855), + [anon_sym_r_DQUOTE] = ACTIONS(2855), + [sym_pseudo_compile_time_identifier] = ACTIONS(2855), + [anon_sym_shared] = ACTIONS(2855), + [anon_sym_map_LBRACK] = ACTIONS(2855), + [anon_sym_chan] = ACTIONS(2855), + [anon_sym_thread] = ACTIONS(2855), + [anon_sym_atomic] = ACTIONS(2855), + [anon_sym_assert] = ACTIONS(2855), + [anon_sym_defer] = ACTIONS(2855), + [anon_sym_goto] = ACTIONS(2855), + [anon_sym_break] = ACTIONS(2855), + [anon_sym_continue] = ACTIONS(2855), + [anon_sym_return] = ACTIONS(2855), + [anon_sym_DOLLARfor] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2855), + [anon_sym_POUND] = ACTIONS(2855), + [anon_sym_asm] = ACTIONS(2855), + [anon_sym_AT_LBRACK] = ACTIONS(2855), }, [461] = { [sym_line_comment] = STATE(461), [sym_block_comment] = STATE(461), - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_LF] = ACTIONS(2828), - [anon_sym_CR] = ACTIONS(2828), - [anon_sym_CR_LF] = ACTIONS(2828), + [ts_builtin_sym_end] = ACTIONS(2857), + [sym_identifier] = ACTIONS(2859), + [anon_sym_LF] = ACTIONS(2859), + [anon_sym_CR] = ACTIONS(2859), + [anon_sym_CR_LF] = ACTIONS(2859), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_as] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_const] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym_EQ] = ACTIONS(2828), - [anon_sym___global] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_EQ_EQ] = ACTIONS(2828), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_LT_EQ] = ACTIONS(2828), - [anon_sym_GT_EQ] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_union] = ACTIONS(2828), - [anon_sym_pub] = ACTIONS(2828), - [anon_sym_mut] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [anon_sym_interface] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_go] = ACTIONS(2828), - [anon_sym_spawn] = ACTIONS(2828), - [anon_sym_json_DOTdecode] = ACTIONS(2828), - [anon_sym_LBRACK2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_CARET] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_LT_DASH] = ACTIONS(2828), - [anon_sym_LT_LT] = ACTIONS(2828), - [anon_sym_GT_GT] = ACTIONS(2828), - [anon_sym_GT_GT_GT] = ACTIONS(2828), - [anon_sym_AMP_CARET] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_PIPE_PIPE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2828), - [sym_none] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_nil] = ACTIONS(2828), - [anon_sym_QMARK_DOT] = ACTIONS(2828), - [anon_sym_POUND_LBRACK] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_DOLLARif] = ACTIONS(2828), - [anon_sym_is] = ACTIONS(2828), - [anon_sym_BANGis] = ACTIONS(2828), - [anon_sym_in] = ACTIONS(2828), - [anon_sym_BANGin] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_select] = ACTIONS(2828), - [anon_sym_STAR_EQ] = ACTIONS(2828), - [anon_sym_SLASH_EQ] = ACTIONS(2828), - [anon_sym_PERCENT_EQ] = ACTIONS(2828), - [anon_sym_LT_LT_EQ] = ACTIONS(2828), - [anon_sym_GT_GT_EQ] = ACTIONS(2828), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2828), - [anon_sym_AMP_EQ] = ACTIONS(2828), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2828), - [anon_sym_PLUS_EQ] = ACTIONS(2828), - [anon_sym_DASH_EQ] = ACTIONS(2828), - [anon_sym_PIPE_EQ] = ACTIONS(2828), - [anon_sym_CARET_EQ] = ACTIONS(2828), - [anon_sym_COLON_EQ] = ACTIONS(2828), - [anon_sym_lock] = ACTIONS(2828), - [anon_sym_rlock] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_sql] = ACTIONS(2828), - [sym_int_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2828), - [sym_rune_literal] = ACTIONS(2828), - [sym_pseudo_compile_time_identifier] = ACTIONS(2828), - [anon_sym_shared] = ACTIONS(2828), - [anon_sym_map_LBRACK] = ACTIONS(2828), - [anon_sym_chan] = ACTIONS(2828), - [anon_sym_thread] = ACTIONS(2828), - [anon_sym_atomic] = ACTIONS(2828), - [anon_sym_assert] = ACTIONS(2828), - [anon_sym_defer] = ACTIONS(2828), - [anon_sym_goto] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_DOLLARfor] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_POUND] = ACTIONS(2828), - [anon_sym_asm] = ACTIONS(2828), - [anon_sym_AT_LBRACK] = ACTIONS(2828), - [sym___double_quote] = ACTIONS(2828), - [sym___single_quote] = ACTIONS(2828), - [sym___c_double_quote] = ACTIONS(2828), - [sym___c_single_quote] = ACTIONS(2828), - [sym___r_double_quote] = ACTIONS(2828), - [sym___r_single_quote] = ACTIONS(2828), + [anon_sym_DOT] = ACTIONS(2859), + [anon_sym_as] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_COMMA] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2859), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_EQ] = ACTIONS(2859), + [anon_sym___global] = ACTIONS(2859), + [anon_sym_type] = ACTIONS(2859), + [anon_sym_PIPE] = ACTIONS(2859), + [anon_sym_fn] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_SLASH] = ACTIONS(2859), + [anon_sym_PERCENT] = ACTIONS(2859), + [anon_sym_LT] = ACTIONS(2859), + [anon_sym_GT] = ACTIONS(2859), + [anon_sym_EQ_EQ] = ACTIONS(2859), + [anon_sym_BANG_EQ] = ACTIONS(2859), + [anon_sym_LT_EQ] = ACTIONS(2859), + [anon_sym_GT_EQ] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2859), + [anon_sym_union] = ACTIONS(2859), + [anon_sym_pub] = ACTIONS(2859), + [anon_sym_mut] = ACTIONS(2859), + [anon_sym_enum] = ACTIONS(2859), + [anon_sym_interface] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_QMARK] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_go] = ACTIONS(2859), + [anon_sym_spawn] = ACTIONS(2859), + [anon_sym_json_DOTdecode] = ACTIONS(2859), + [anon_sym_LBRACK2] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_CARET] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2859), + [anon_sym_LT_DASH] = ACTIONS(2859), + [anon_sym_LT_LT] = ACTIONS(2859), + [anon_sym_GT_GT] = ACTIONS(2859), + [anon_sym_GT_GT_GT] = ACTIONS(2859), + [anon_sym_AMP_CARET] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_PIPE_PIPE] = ACTIONS(2859), + [anon_sym_or] = ACTIONS(2859), + [sym_none] = ACTIONS(2859), + [sym_true] = ACTIONS(2859), + [sym_false] = ACTIONS(2859), + [sym_nil] = ACTIONS(2859), + [anon_sym_QMARK_DOT] = ACTIONS(2859), + [anon_sym_POUND_LBRACK] = ACTIONS(2859), + [anon_sym_if] = ACTIONS(2859), + [anon_sym_DOLLARif] = ACTIONS(2859), + [anon_sym_is] = ACTIONS(2859), + [anon_sym_BANGis] = ACTIONS(2859), + [anon_sym_in] = ACTIONS(2859), + [anon_sym_BANGin] = ACTIONS(2859), + [anon_sym_match] = ACTIONS(2859), + [anon_sym_select] = ACTIONS(2859), + [anon_sym_STAR_EQ] = ACTIONS(2859), + [anon_sym_SLASH_EQ] = ACTIONS(2859), + [anon_sym_PERCENT_EQ] = ACTIONS(2859), + [anon_sym_LT_LT_EQ] = ACTIONS(2859), + [anon_sym_GT_GT_EQ] = ACTIONS(2859), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2859), + [anon_sym_AMP_EQ] = ACTIONS(2859), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2859), + [anon_sym_PLUS_EQ] = ACTIONS(2859), + [anon_sym_DASH_EQ] = ACTIONS(2859), + [anon_sym_PIPE_EQ] = ACTIONS(2859), + [anon_sym_CARET_EQ] = ACTIONS(2859), + [anon_sym_COLON_EQ] = ACTIONS(2859), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [anon_sym_unsafe] = ACTIONS(2859), + [anon_sym_sql] = ACTIONS(2859), + [sym_int_literal] = ACTIONS(2859), + [sym_float_literal] = ACTIONS(2859), + [sym_rune_literal] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [anon_sym_c_SQUOTE] = ACTIONS(2859), + [anon_sym_c_DQUOTE] = ACTIONS(2859), + [anon_sym_r_SQUOTE] = ACTIONS(2859), + [anon_sym_r_DQUOTE] = ACTIONS(2859), + [sym_pseudo_compile_time_identifier] = ACTIONS(2859), + [anon_sym_shared] = ACTIONS(2859), + [anon_sym_map_LBRACK] = ACTIONS(2859), + [anon_sym_chan] = ACTIONS(2859), + [anon_sym_thread] = ACTIONS(2859), + [anon_sym_atomic] = ACTIONS(2859), + [anon_sym_assert] = ACTIONS(2859), + [anon_sym_defer] = ACTIONS(2859), + [anon_sym_goto] = ACTIONS(2859), + [anon_sym_break] = ACTIONS(2859), + [anon_sym_continue] = ACTIONS(2859), + [anon_sym_return] = ACTIONS(2859), + [anon_sym_DOLLARfor] = ACTIONS(2859), + [anon_sym_for] = ACTIONS(2859), + [anon_sym_POUND] = ACTIONS(2859), + [anon_sym_asm] = ACTIONS(2859), + [anon_sym_AT_LBRACK] = ACTIONS(2859), }, [462] = { [sym_line_comment] = STATE(462), [sym_block_comment] = STATE(462), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LF] = ACTIONS(2475), - [anon_sym_CR] = ACTIONS(2475), - [anon_sym_CR_LF] = ACTIONS(2475), + [ts_builtin_sym_end] = ACTIONS(2861), + [sym_identifier] = ACTIONS(2863), + [anon_sym_LF] = ACTIONS(2863), + [anon_sym_CR] = ACTIONS(2863), + [anon_sym_CR_LF] = ACTIONS(2863), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2475), - [anon_sym_as] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym___global] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2475), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_SLASH] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_EQ_EQ] = ACTIONS(2475), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_LT_EQ] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2475), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_pub] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_interface] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2475), - [anon_sym_QMARK] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_go] = ACTIONS(2475), - [anon_sym_spawn] = ACTIONS(2475), - [anon_sym_json_DOTdecode] = ACTIONS(2475), - [anon_sym_LBRACK2] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_LT_DASH] = ACTIONS(2475), - [anon_sym_LT_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2475), - [anon_sym_GT_GT_GT] = ACTIONS(2475), - [anon_sym_AMP_CARET] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_PIPE_PIPE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2475), - [sym_none] = ACTIONS(2475), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_nil] = ACTIONS(2475), - [anon_sym_QMARK_DOT] = ACTIONS(2475), - [anon_sym_POUND_LBRACK] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_DOLLARif] = ACTIONS(2475), - [anon_sym_is] = ACTIONS(2475), - [anon_sym_BANGis] = ACTIONS(2475), - [anon_sym_in] = ACTIONS(2475), - [anon_sym_BANGin] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_STAR_EQ] = ACTIONS(2475), - [anon_sym_SLASH_EQ] = ACTIONS(2475), - [anon_sym_PERCENT_EQ] = ACTIONS(2475), - [anon_sym_LT_LT_EQ] = ACTIONS(2475), - [anon_sym_GT_GT_EQ] = ACTIONS(2475), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2475), - [anon_sym_AMP_EQ] = ACTIONS(2475), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2475), - [anon_sym_PLUS_EQ] = ACTIONS(2475), - [anon_sym_DASH_EQ] = ACTIONS(2475), - [anon_sym_PIPE_EQ] = ACTIONS(2475), - [anon_sym_CARET_EQ] = ACTIONS(2475), - [anon_sym_COLON_EQ] = ACTIONS(2475), - [anon_sym_lock] = ACTIONS(2475), - [anon_sym_rlock] = ACTIONS(2475), - [anon_sym_unsafe] = ACTIONS(2475), - [anon_sym_sql] = ACTIONS(2475), - [sym_int_literal] = ACTIONS(2475), - [sym_float_literal] = ACTIONS(2475), - [sym_rune_literal] = ACTIONS(2475), - [sym_pseudo_compile_time_identifier] = ACTIONS(2475), - [anon_sym_shared] = ACTIONS(2475), - [anon_sym_map_LBRACK] = ACTIONS(2475), - [anon_sym_chan] = ACTIONS(2475), - [anon_sym_thread] = ACTIONS(2475), - [anon_sym_atomic] = ACTIONS(2475), - [anon_sym_assert] = ACTIONS(2475), - [anon_sym_defer] = ACTIONS(2475), - [anon_sym_goto] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_DOLLARfor] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_POUND] = ACTIONS(2475), - [anon_sym_asm] = ACTIONS(2475), - [anon_sym_AT_LBRACK] = ACTIONS(2475), - [sym___double_quote] = ACTIONS(2475), - [sym___single_quote] = ACTIONS(2475), - [sym___c_double_quote] = ACTIONS(2475), - [sym___c_single_quote] = ACTIONS(2475), - [sym___r_double_quote] = ACTIONS(2475), - [sym___r_single_quote] = ACTIONS(2475), + [anon_sym_DOT] = ACTIONS(2863), + [anon_sym_as] = ACTIONS(2863), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_COMMA] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_LPAREN] = ACTIONS(2863), + [anon_sym_EQ] = ACTIONS(2863), + [anon_sym___global] = ACTIONS(2863), + [anon_sym_type] = ACTIONS(2863), + [anon_sym_PIPE] = ACTIONS(2863), + [anon_sym_fn] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_SLASH] = ACTIONS(2863), + [anon_sym_PERCENT] = ACTIONS(2863), + [anon_sym_LT] = ACTIONS(2863), + [anon_sym_GT] = ACTIONS(2863), + [anon_sym_EQ_EQ] = ACTIONS(2863), + [anon_sym_BANG_EQ] = ACTIONS(2863), + [anon_sym_LT_EQ] = ACTIONS(2863), + [anon_sym_GT_EQ] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_union] = ACTIONS(2863), + [anon_sym_pub] = ACTIONS(2863), + [anon_sym_mut] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_interface] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_go] = ACTIONS(2863), + [anon_sym_spawn] = ACTIONS(2863), + [anon_sym_json_DOTdecode] = ACTIONS(2863), + [anon_sym_LBRACK2] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_CARET] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_LT_DASH] = ACTIONS(2863), + [anon_sym_LT_LT] = ACTIONS(2863), + [anon_sym_GT_GT] = ACTIONS(2863), + [anon_sym_GT_GT_GT] = ACTIONS(2863), + [anon_sym_AMP_CARET] = ACTIONS(2863), + [anon_sym_AMP_AMP] = ACTIONS(2863), + [anon_sym_PIPE_PIPE] = ACTIONS(2863), + [anon_sym_or] = ACTIONS(2863), + [sym_none] = ACTIONS(2863), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_nil] = ACTIONS(2863), + [anon_sym_QMARK_DOT] = ACTIONS(2863), + [anon_sym_POUND_LBRACK] = ACTIONS(2863), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_DOLLARif] = ACTIONS(2863), + [anon_sym_is] = ACTIONS(2863), + [anon_sym_BANGis] = ACTIONS(2863), + [anon_sym_in] = ACTIONS(2863), + [anon_sym_BANGin] = ACTIONS(2863), + [anon_sym_match] = ACTIONS(2863), + [anon_sym_select] = ACTIONS(2863), + [anon_sym_STAR_EQ] = ACTIONS(2863), + [anon_sym_SLASH_EQ] = ACTIONS(2863), + [anon_sym_PERCENT_EQ] = ACTIONS(2863), + [anon_sym_LT_LT_EQ] = ACTIONS(2863), + [anon_sym_GT_GT_EQ] = ACTIONS(2863), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2863), + [anon_sym_AMP_EQ] = ACTIONS(2863), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2863), + [anon_sym_PLUS_EQ] = ACTIONS(2863), + [anon_sym_DASH_EQ] = ACTIONS(2863), + [anon_sym_PIPE_EQ] = ACTIONS(2863), + [anon_sym_CARET_EQ] = ACTIONS(2863), + [anon_sym_COLON_EQ] = ACTIONS(2863), + [anon_sym_lock] = ACTIONS(2863), + [anon_sym_rlock] = ACTIONS(2863), + [anon_sym_unsafe] = ACTIONS(2863), + [anon_sym_sql] = ACTIONS(2863), + [sym_int_literal] = ACTIONS(2863), + [sym_float_literal] = ACTIONS(2863), + [sym_rune_literal] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2863), + [anon_sym_c_SQUOTE] = ACTIONS(2863), + [anon_sym_c_DQUOTE] = ACTIONS(2863), + [anon_sym_r_SQUOTE] = ACTIONS(2863), + [anon_sym_r_DQUOTE] = ACTIONS(2863), + [sym_pseudo_compile_time_identifier] = ACTIONS(2863), + [anon_sym_shared] = ACTIONS(2863), + [anon_sym_map_LBRACK] = ACTIONS(2863), + [anon_sym_chan] = ACTIONS(2863), + [anon_sym_thread] = ACTIONS(2863), + [anon_sym_atomic] = ACTIONS(2863), + [anon_sym_assert] = ACTIONS(2863), + [anon_sym_defer] = ACTIONS(2863), + [anon_sym_goto] = ACTIONS(2863), + [anon_sym_break] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2863), + [anon_sym_return] = ACTIONS(2863), + [anon_sym_DOLLARfor] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_POUND] = ACTIONS(2863), + [anon_sym_asm] = ACTIONS(2863), + [anon_sym_AT_LBRACK] = ACTIONS(2863), }, [463] = { [sym_line_comment] = STATE(463), [sym_block_comment] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(2830), - [sym_identifier] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2832), - [anon_sym_CR] = ACTIONS(2832), - [anon_sym_CR_LF] = ACTIONS(2832), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_as] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_const] = ACTIONS(2832), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym___global] = ACTIONS(2832), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_LT_EQ] = ACTIONS(2832), - [anon_sym_GT_EQ] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_union] = ACTIONS(2832), - [anon_sym_pub] = ACTIONS(2832), - [anon_sym_mut] = ACTIONS(2832), - [anon_sym_enum] = ACTIONS(2832), - [anon_sym_interface] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_go] = ACTIONS(2832), - [anon_sym_spawn] = ACTIONS(2832), - [anon_sym_json_DOTdecode] = ACTIONS(2832), - [anon_sym_LBRACK2] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_LT_DASH] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2832), - [anon_sym_AMP_CARET] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2832), - [sym_none] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_nil] = ACTIONS(2832), - [anon_sym_QMARK_DOT] = ACTIONS(2832), - [anon_sym_POUND_LBRACK] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_DOLLARif] = ACTIONS(2832), - [anon_sym_is] = ACTIONS(2832), - [anon_sym_BANGis] = ACTIONS(2832), - [anon_sym_in] = ACTIONS(2832), - [anon_sym_BANGin] = ACTIONS(2832), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_select] = ACTIONS(2832), - [anon_sym_STAR_EQ] = ACTIONS(2832), - [anon_sym_SLASH_EQ] = ACTIONS(2832), - [anon_sym_PERCENT_EQ] = ACTIONS(2832), - [anon_sym_LT_LT_EQ] = ACTIONS(2832), - [anon_sym_GT_GT_EQ] = ACTIONS(2832), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2832), - [anon_sym_AMP_EQ] = ACTIONS(2832), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2832), - [anon_sym_PLUS_EQ] = ACTIONS(2832), - [anon_sym_DASH_EQ] = ACTIONS(2832), - [anon_sym_PIPE_EQ] = ACTIONS(2832), - [anon_sym_CARET_EQ] = ACTIONS(2832), - [anon_sym_COLON_EQ] = ACTIONS(2832), - [anon_sym_lock] = ACTIONS(2832), - [anon_sym_rlock] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_sql] = ACTIONS(2832), - [sym_int_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2832), - [sym_rune_literal] = ACTIONS(2832), - [sym_pseudo_compile_time_identifier] = ACTIONS(2832), - [anon_sym_shared] = ACTIONS(2832), - [anon_sym_map_LBRACK] = ACTIONS(2832), - [anon_sym_chan] = ACTIONS(2832), - [anon_sym_thread] = ACTIONS(2832), - [anon_sym_atomic] = ACTIONS(2832), - [anon_sym_assert] = ACTIONS(2832), - [anon_sym_defer] = ACTIONS(2832), - [anon_sym_goto] = ACTIONS(2832), - [anon_sym_break] = ACTIONS(2832), - [anon_sym_continue] = ACTIONS(2832), - [anon_sym_return] = ACTIONS(2832), - [anon_sym_DOLLARfor] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2832), - [anon_sym_POUND] = ACTIONS(2832), - [anon_sym_asm] = ACTIONS(2832), - [anon_sym_AT_LBRACK] = ACTIONS(2832), - [sym___double_quote] = ACTIONS(2832), - [sym___single_quote] = ACTIONS(2832), - [sym___c_double_quote] = ACTIONS(2832), - [sym___c_single_quote] = ACTIONS(2832), - [sym___r_double_quote] = ACTIONS(2832), - [sym___r_single_quote] = ACTIONS(2832), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4369), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(2865), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [464] = { [sym_line_comment] = STATE(464), [sym_block_comment] = STATE(464), - [ts_builtin_sym_end] = ACTIONS(2834), - [sym_identifier] = ACTIONS(2836), - [anon_sym_LF] = ACTIONS(2836), - [anon_sym_CR] = ACTIONS(2836), - [anon_sym_CR_LF] = ACTIONS(2836), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2836), - [anon_sym_as] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2836), - [anon_sym_EQ] = ACTIONS(2836), - [anon_sym___global] = ACTIONS(2836), - [anon_sym_type] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_fn] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2836), - [anon_sym_SLASH] = ACTIONS(2836), - [anon_sym_PERCENT] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_GT] = ACTIONS(2836), - [anon_sym_EQ_EQ] = ACTIONS(2836), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_LT_EQ] = ACTIONS(2836), - [anon_sym_GT_EQ] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [anon_sym_pub] = ACTIONS(2836), - [anon_sym_mut] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_interface] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_QMARK] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_go] = ACTIONS(2836), - [anon_sym_spawn] = ACTIONS(2836), - [anon_sym_json_DOTdecode] = ACTIONS(2836), - [anon_sym_LBRACK2] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2836), - [anon_sym_CARET] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_LT_DASH] = ACTIONS(2836), - [anon_sym_LT_LT] = ACTIONS(2836), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_GT_GT_GT] = ACTIONS(2836), - [anon_sym_AMP_CARET] = ACTIONS(2836), - [anon_sym_AMP_AMP] = ACTIONS(2836), - [anon_sym_PIPE_PIPE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2836), - [sym_none] = ACTIONS(2836), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [sym_nil] = ACTIONS(2836), - [anon_sym_QMARK_DOT] = ACTIONS(2836), - [anon_sym_POUND_LBRACK] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_DOLLARif] = ACTIONS(2836), - [anon_sym_is] = ACTIONS(2836), - [anon_sym_BANGis] = ACTIONS(2836), - [anon_sym_in] = ACTIONS(2836), - [anon_sym_BANGin] = ACTIONS(2836), - [anon_sym_match] = ACTIONS(2836), - [anon_sym_select] = ACTIONS(2836), - [anon_sym_STAR_EQ] = ACTIONS(2836), - [anon_sym_SLASH_EQ] = ACTIONS(2836), - [anon_sym_PERCENT_EQ] = ACTIONS(2836), - [anon_sym_LT_LT_EQ] = ACTIONS(2836), - [anon_sym_GT_GT_EQ] = ACTIONS(2836), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2836), - [anon_sym_AMP_EQ] = ACTIONS(2836), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2836), - [anon_sym_PLUS_EQ] = ACTIONS(2836), - [anon_sym_DASH_EQ] = ACTIONS(2836), - [anon_sym_PIPE_EQ] = ACTIONS(2836), - [anon_sym_CARET_EQ] = ACTIONS(2836), - [anon_sym_COLON_EQ] = ACTIONS(2836), - [anon_sym_lock] = ACTIONS(2836), - [anon_sym_rlock] = ACTIONS(2836), - [anon_sym_unsafe] = ACTIONS(2836), - [anon_sym_sql] = ACTIONS(2836), - [sym_int_literal] = ACTIONS(2836), - [sym_float_literal] = ACTIONS(2836), - [sym_rune_literal] = ACTIONS(2836), - [sym_pseudo_compile_time_identifier] = ACTIONS(2836), - [anon_sym_shared] = ACTIONS(2836), - [anon_sym_map_LBRACK] = ACTIONS(2836), - [anon_sym_chan] = ACTIONS(2836), - [anon_sym_thread] = ACTIONS(2836), - [anon_sym_atomic] = ACTIONS(2836), - [anon_sym_assert] = ACTIONS(2836), - [anon_sym_defer] = ACTIONS(2836), - [anon_sym_goto] = ACTIONS(2836), - [anon_sym_break] = ACTIONS(2836), - [anon_sym_continue] = ACTIONS(2836), - [anon_sym_return] = ACTIONS(2836), - [anon_sym_DOLLARfor] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(2836), - [anon_sym_asm] = ACTIONS(2836), - [anon_sym_AT_LBRACK] = ACTIONS(2836), - [sym___double_quote] = ACTIONS(2836), - [sym___single_quote] = ACTIONS(2836), - [sym___c_double_quote] = ACTIONS(2836), - [sym___c_single_quote] = ACTIONS(2836), - [sym___r_double_quote] = ACTIONS(2836), - [sym___r_single_quote] = ACTIONS(2836), + [sym__expression] = STATE(2575), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(870), + [sym_mutable_expression] = STATE(3805), + [sym_expression_list] = STATE(4276), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [465] = { [sym_line_comment] = STATE(465), [sym_block_comment] = STATE(465), - [ts_builtin_sym_end] = ACTIONS(2838), - [sym_identifier] = ACTIONS(2840), - [anon_sym_LF] = ACTIONS(2840), - [anon_sym_CR] = ACTIONS(2840), - [anon_sym_CR_LF] = ACTIONS(2840), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2840), - [anon_sym_as] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym_EQ] = ACTIONS(2840), - [anon_sym___global] = ACTIONS(2840), - [anon_sym_type] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SLASH] = ACTIONS(2840), - [anon_sym_PERCENT] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_GT] = ACTIONS(2840), - [anon_sym_EQ_EQ] = ACTIONS(2840), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_LT_EQ] = ACTIONS(2840), - [anon_sym_GT_EQ] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_pub] = ACTIONS(2840), - [anon_sym_mut] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_interface] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_go] = ACTIONS(2840), - [anon_sym_spawn] = ACTIONS(2840), - [anon_sym_json_DOTdecode] = ACTIONS(2840), - [anon_sym_LBRACK2] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_LT_DASH] = ACTIONS(2840), - [anon_sym_LT_LT] = ACTIONS(2840), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_GT_GT_GT] = ACTIONS(2840), - [anon_sym_AMP_CARET] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_PIPE_PIPE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2840), - [sym_none] = ACTIONS(2840), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [sym_nil] = ACTIONS(2840), - [anon_sym_QMARK_DOT] = ACTIONS(2840), - [anon_sym_POUND_LBRACK] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_DOLLARif] = ACTIONS(2840), - [anon_sym_is] = ACTIONS(2840), - [anon_sym_BANGis] = ACTIONS(2840), - [anon_sym_in] = ACTIONS(2840), - [anon_sym_BANGin] = ACTIONS(2840), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_select] = ACTIONS(2840), - [anon_sym_STAR_EQ] = ACTIONS(2840), - [anon_sym_SLASH_EQ] = ACTIONS(2840), - [anon_sym_PERCENT_EQ] = ACTIONS(2840), - [anon_sym_LT_LT_EQ] = ACTIONS(2840), - [anon_sym_GT_GT_EQ] = ACTIONS(2840), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2840), - [anon_sym_AMP_EQ] = ACTIONS(2840), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2840), - [anon_sym_PLUS_EQ] = ACTIONS(2840), - [anon_sym_DASH_EQ] = ACTIONS(2840), - [anon_sym_PIPE_EQ] = ACTIONS(2840), - [anon_sym_CARET_EQ] = ACTIONS(2840), - [anon_sym_COLON_EQ] = ACTIONS(2840), - [anon_sym_lock] = ACTIONS(2840), - [anon_sym_rlock] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_sql] = ACTIONS(2840), - [sym_int_literal] = ACTIONS(2840), - [sym_float_literal] = ACTIONS(2840), - [sym_rune_literal] = ACTIONS(2840), - [sym_pseudo_compile_time_identifier] = ACTIONS(2840), - [anon_sym_shared] = ACTIONS(2840), - [anon_sym_map_LBRACK] = ACTIONS(2840), - [anon_sym_chan] = ACTIONS(2840), - [anon_sym_thread] = ACTIONS(2840), - [anon_sym_atomic] = ACTIONS(2840), - [anon_sym_assert] = ACTIONS(2840), - [anon_sym_defer] = ACTIONS(2840), - [anon_sym_goto] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_DOLLARfor] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_POUND] = ACTIONS(2840), - [anon_sym_asm] = ACTIONS(2840), - [anon_sym_AT_LBRACK] = ACTIONS(2840), - [sym___double_quote] = ACTIONS(2840), - [sym___single_quote] = ACTIONS(2840), - [sym___c_double_quote] = ACTIONS(2840), - [sym___c_single_quote] = ACTIONS(2840), - [sym___r_double_quote] = ACTIONS(2840), - [sym___r_single_quote] = ACTIONS(2840), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1398), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1396), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [466] = { [sym_line_comment] = STATE(466), [sym_block_comment] = STATE(466), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4395), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4274), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [467] = { [sym_line_comment] = STATE(467), [sym_block_comment] = STATE(467), - [ts_builtin_sym_end] = ACTIONS(2844), - [sym_identifier] = ACTIONS(2846), - [anon_sym_LF] = ACTIONS(2846), - [anon_sym_CR] = ACTIONS(2846), - [anon_sym_CR_LF] = ACTIONS(2846), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2846), - [anon_sym_const] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym___global] = ACTIONS(2846), - [anon_sym_type] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_fn] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_GT] = ACTIONS(2846), - [anon_sym_EQ_EQ] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2846), - [anon_sym_LT_EQ] = ACTIONS(2846), - [anon_sym_GT_EQ] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2846), - [anon_sym_union] = ACTIONS(2846), - [anon_sym_pub] = ACTIONS(2846), - [anon_sym_mut] = ACTIONS(2846), - [anon_sym_enum] = ACTIONS(2846), - [anon_sym_interface] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_go] = ACTIONS(2846), - [anon_sym_spawn] = ACTIONS(2846), - [anon_sym_json_DOTdecode] = ACTIONS(2846), - [anon_sym_LBRACK2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_CARET] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_LT_LT] = ACTIONS(2846), - [anon_sym_GT_GT] = ACTIONS(2846), - [anon_sym_GT_GT_GT] = ACTIONS(2846), - [anon_sym_AMP_CARET] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_or] = ACTIONS(2846), - [sym_none] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_nil] = ACTIONS(2846), - [anon_sym_QMARK_DOT] = ACTIONS(2846), - [anon_sym_POUND_LBRACK] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_DOLLARif] = ACTIONS(2846), - [anon_sym_is] = ACTIONS(2846), - [anon_sym_BANGis] = ACTIONS(2846), - [anon_sym_in] = ACTIONS(2846), - [anon_sym_BANGin] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_select] = ACTIONS(2846), - [anon_sym_STAR_EQ] = ACTIONS(2846), - [anon_sym_SLASH_EQ] = ACTIONS(2846), - [anon_sym_PERCENT_EQ] = ACTIONS(2846), - [anon_sym_LT_LT_EQ] = ACTIONS(2846), - [anon_sym_GT_GT_EQ] = ACTIONS(2846), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2846), - [anon_sym_AMP_EQ] = ACTIONS(2846), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2846), - [anon_sym_PLUS_EQ] = ACTIONS(2846), - [anon_sym_DASH_EQ] = ACTIONS(2846), - [anon_sym_PIPE_EQ] = ACTIONS(2846), - [anon_sym_CARET_EQ] = ACTIONS(2846), - [anon_sym_COLON_EQ] = ACTIONS(2846), - [anon_sym_lock] = ACTIONS(2846), - [anon_sym_rlock] = ACTIONS(2846), - [anon_sym_unsafe] = ACTIONS(2846), - [anon_sym_sql] = ACTIONS(2846), - [sym_int_literal] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2846), - [sym_rune_literal] = ACTIONS(2846), - [sym_pseudo_compile_time_identifier] = ACTIONS(2846), - [anon_sym_shared] = ACTIONS(2846), - [anon_sym_map_LBRACK] = ACTIONS(2846), - [anon_sym_chan] = ACTIONS(2846), - [anon_sym_thread] = ACTIONS(2846), - [anon_sym_atomic] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_defer] = ACTIONS(2846), - [anon_sym_goto] = ACTIONS(2846), - [anon_sym_break] = ACTIONS(2846), - [anon_sym_continue] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_DOLLARfor] = ACTIONS(2846), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_POUND] = ACTIONS(2846), - [anon_sym_asm] = ACTIONS(2846), - [anon_sym_AT_LBRACK] = ACTIONS(2846), - [sym___double_quote] = ACTIONS(2846), - [sym___single_quote] = ACTIONS(2846), - [sym___c_double_quote] = ACTIONS(2846), - [sym___c_single_quote] = ACTIONS(2846), - [sym___r_double_quote] = ACTIONS(2846), - [sym___r_single_quote] = ACTIONS(2846), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3548), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4437), + [sym_identifier] = ACTIONS(2391), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [468] = { [sym_line_comment] = STATE(468), [sym_block_comment] = STATE(468), - [sym__expression] = STATE(2602), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3569), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4542), - [sym_identifier] = ACTIONS(2127), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4437), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [469] = { [sym_line_comment] = STATE(469), [sym_block_comment] = STATE(469), - [ts_builtin_sym_end] = ACTIONS(2848), - [sym_identifier] = ACTIONS(2850), - [anon_sym_LF] = ACTIONS(2850), - [anon_sym_CR] = ACTIONS(2850), - [anon_sym_CR_LF] = ACTIONS(2850), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_as] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2850), - [anon_sym_const] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_EQ] = ACTIONS(2850), - [anon_sym___global] = ACTIONS(2850), - [anon_sym_type] = ACTIONS(2850), - [anon_sym_PIPE] = ACTIONS(2850), - [anon_sym_fn] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_SLASH] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_GT] = ACTIONS(2850), - [anon_sym_EQ_EQ] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_LT_EQ] = ACTIONS(2850), - [anon_sym_GT_EQ] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_struct] = ACTIONS(2850), - [anon_sym_union] = ACTIONS(2850), - [anon_sym_pub] = ACTIONS(2850), - [anon_sym_mut] = ACTIONS(2850), - [anon_sym_enum] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2850), - [anon_sym_PLUS_PLUS] = ACTIONS(2850), - [anon_sym_DASH_DASH] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2850), - [anon_sym_go] = ACTIONS(2850), - [anon_sym_spawn] = ACTIONS(2850), - [anon_sym_json_DOTdecode] = ACTIONS(2850), - [anon_sym_LBRACK2] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_CARET] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_LT_LT] = ACTIONS(2850), - [anon_sym_GT_GT] = ACTIONS(2850), - [anon_sym_GT_GT_GT] = ACTIONS(2850), - [anon_sym_AMP_CARET] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_or] = ACTIONS(2850), - [sym_none] = ACTIONS(2850), - [sym_true] = ACTIONS(2850), - [sym_false] = ACTIONS(2850), - [sym_nil] = ACTIONS(2850), - [anon_sym_QMARK_DOT] = ACTIONS(2850), - [anon_sym_POUND_LBRACK] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_DOLLARif] = ACTIONS(2850), - [anon_sym_is] = ACTIONS(2850), - [anon_sym_BANGis] = ACTIONS(2850), - [anon_sym_in] = ACTIONS(2850), - [anon_sym_BANGin] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_select] = ACTIONS(2850), - [anon_sym_STAR_EQ] = ACTIONS(2850), - [anon_sym_SLASH_EQ] = ACTIONS(2850), - [anon_sym_PERCENT_EQ] = ACTIONS(2850), - [anon_sym_LT_LT_EQ] = ACTIONS(2850), - [anon_sym_GT_GT_EQ] = ACTIONS(2850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2850), - [anon_sym_AMP_EQ] = ACTIONS(2850), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2850), - [anon_sym_PLUS_EQ] = ACTIONS(2850), - [anon_sym_DASH_EQ] = ACTIONS(2850), - [anon_sym_PIPE_EQ] = ACTIONS(2850), - [anon_sym_CARET_EQ] = ACTIONS(2850), - [anon_sym_COLON_EQ] = ACTIONS(2850), - [anon_sym_lock] = ACTIONS(2850), - [anon_sym_rlock] = ACTIONS(2850), - [anon_sym_unsafe] = ACTIONS(2850), - [anon_sym_sql] = ACTIONS(2850), - [sym_int_literal] = ACTIONS(2850), - [sym_float_literal] = ACTIONS(2850), - [sym_rune_literal] = ACTIONS(2850), - [sym_pseudo_compile_time_identifier] = ACTIONS(2850), - [anon_sym_shared] = ACTIONS(2850), - [anon_sym_map_LBRACK] = ACTIONS(2850), - [anon_sym_chan] = ACTIONS(2850), - [anon_sym_thread] = ACTIONS(2850), - [anon_sym_atomic] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_defer] = ACTIONS(2850), - [anon_sym_goto] = ACTIONS(2850), - [anon_sym_break] = ACTIONS(2850), - [anon_sym_continue] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_DOLLARfor] = ACTIONS(2850), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_POUND] = ACTIONS(2850), - [anon_sym_asm] = ACTIONS(2850), - [anon_sym_AT_LBRACK] = ACTIONS(2850), - [sym___double_quote] = ACTIONS(2850), - [sym___single_quote] = ACTIONS(2850), - [sym___c_double_quote] = ACTIONS(2850), - [sym___c_single_quote] = ACTIONS(2850), - [sym___r_double_quote] = ACTIONS(2850), - [sym___r_single_quote] = ACTIONS(2850), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2869), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [470] = { [sym_line_comment] = STATE(470), [sym_block_comment] = STATE(470), - [sym__expression] = STATE(2602), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4542), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1398), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1396), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(386), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [471] = { [sym_line_comment] = STATE(471), [sym_block_comment] = STATE(471), - [ts_builtin_sym_end] = ACTIONS(2852), - [sym_identifier] = ACTIONS(2854), - [anon_sym_LF] = ACTIONS(2854), - [anon_sym_CR] = ACTIONS(2854), - [anon_sym_CR_LF] = ACTIONS(2854), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_as] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2854), - [anon_sym_const] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(2854), - [anon_sym___global] = ACTIONS(2854), - [anon_sym_type] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_fn] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_SLASH] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_GT] = ACTIONS(2854), - [anon_sym_EQ_EQ] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2854), - [anon_sym_LT_EQ] = ACTIONS(2854), - [anon_sym_GT_EQ] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2852), - [anon_sym_struct] = ACTIONS(2854), - [anon_sym_union] = ACTIONS(2854), - [anon_sym_pub] = ACTIONS(2854), - [anon_sym_mut] = ACTIONS(2854), - [anon_sym_enum] = ACTIONS(2854), - [anon_sym_interface] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2854), - [anon_sym_go] = ACTIONS(2854), - [anon_sym_spawn] = ACTIONS(2854), - [anon_sym_json_DOTdecode] = ACTIONS(2854), - [anon_sym_LBRACK2] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2854), - [anon_sym_CARET] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_LT_LT] = ACTIONS(2854), - [anon_sym_GT_GT] = ACTIONS(2854), - [anon_sym_GT_GT_GT] = ACTIONS(2854), - [anon_sym_AMP_CARET] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_or] = ACTIONS(2854), - [sym_none] = ACTIONS(2854), - [sym_true] = ACTIONS(2854), - [sym_false] = ACTIONS(2854), - [sym_nil] = ACTIONS(2854), - [anon_sym_QMARK_DOT] = ACTIONS(2854), - [anon_sym_POUND_LBRACK] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_DOLLARif] = ACTIONS(2854), - [anon_sym_is] = ACTIONS(2854), - [anon_sym_BANGis] = ACTIONS(2854), - [anon_sym_in] = ACTIONS(2854), - [anon_sym_BANGin] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_select] = ACTIONS(2854), - [anon_sym_STAR_EQ] = ACTIONS(2854), - [anon_sym_SLASH_EQ] = ACTIONS(2854), - [anon_sym_PERCENT_EQ] = ACTIONS(2854), - [anon_sym_LT_LT_EQ] = ACTIONS(2854), - [anon_sym_GT_GT_EQ] = ACTIONS(2854), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2854), - [anon_sym_AMP_EQ] = ACTIONS(2854), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2854), - [anon_sym_PLUS_EQ] = ACTIONS(2854), - [anon_sym_DASH_EQ] = ACTIONS(2854), - [anon_sym_PIPE_EQ] = ACTIONS(2854), - [anon_sym_CARET_EQ] = ACTIONS(2854), - [anon_sym_COLON_EQ] = ACTIONS(2854), - [anon_sym_lock] = ACTIONS(2854), - [anon_sym_rlock] = ACTIONS(2854), - [anon_sym_unsafe] = ACTIONS(2854), - [anon_sym_sql] = ACTIONS(2854), - [sym_int_literal] = ACTIONS(2854), - [sym_float_literal] = ACTIONS(2854), - [sym_rune_literal] = ACTIONS(2854), - [sym_pseudo_compile_time_identifier] = ACTIONS(2854), - [anon_sym_shared] = ACTIONS(2854), - [anon_sym_map_LBRACK] = ACTIONS(2854), - [anon_sym_chan] = ACTIONS(2854), - [anon_sym_thread] = ACTIONS(2854), - [anon_sym_atomic] = ACTIONS(2854), - [anon_sym_assert] = ACTIONS(2854), - [anon_sym_defer] = ACTIONS(2854), - [anon_sym_goto] = ACTIONS(2854), - [anon_sym_break] = ACTIONS(2854), - [anon_sym_continue] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_DOLLARfor] = ACTIONS(2854), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_POUND] = ACTIONS(2854), - [anon_sym_asm] = ACTIONS(2854), - [anon_sym_AT_LBRACK] = ACTIONS(2854), - [sym___double_quote] = ACTIONS(2854), - [sym___single_quote] = ACTIONS(2854), - [sym___c_double_quote] = ACTIONS(2854), - [sym___c_single_quote] = ACTIONS(2854), - [sym___r_double_quote] = ACTIONS(2854), - [sym___r_single_quote] = ACTIONS(2854), - }, - [472] = { - [sym_line_comment] = STATE(472), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1398), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1396), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(367), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(2873), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [472] = { + [sym_line_comment] = STATE(472), [sym_block_comment] = STATE(472), - [ts_builtin_sym_end] = ACTIONS(2856), - [sym_identifier] = ACTIONS(2858), - [anon_sym_LF] = ACTIONS(2858), - [anon_sym_CR] = ACTIONS(2858), - [anon_sym_CR_LF] = ACTIONS(2858), + [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(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2858), - [anon_sym_const] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_EQ] = ACTIONS(2858), - [anon_sym___global] = ACTIONS(2858), - [anon_sym_type] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(2858), - [anon_sym_fn] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2858), - [anon_sym_GT] = ACTIONS(2858), - [anon_sym_EQ_EQ] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2858), - [anon_sym_LT_EQ] = ACTIONS(2858), - [anon_sym_GT_EQ] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2856), - [anon_sym_struct] = ACTIONS(2858), - [anon_sym_union] = ACTIONS(2858), - [anon_sym_pub] = ACTIONS(2858), - [anon_sym_mut] = ACTIONS(2858), - [anon_sym_enum] = ACTIONS(2858), - [anon_sym_interface] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_go] = ACTIONS(2858), - [anon_sym_spawn] = ACTIONS(2858), - [anon_sym_json_DOTdecode] = ACTIONS(2858), - [anon_sym_LBRACK2] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_CARET] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_LT_LT] = ACTIONS(2858), - [anon_sym_GT_GT] = ACTIONS(2858), - [anon_sym_GT_GT_GT] = ACTIONS(2858), - [anon_sym_AMP_CARET] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_or] = ACTIONS(2858), - [sym_none] = ACTIONS(2858), - [sym_true] = ACTIONS(2858), - [sym_false] = ACTIONS(2858), - [sym_nil] = ACTIONS(2858), - [anon_sym_QMARK_DOT] = ACTIONS(2858), - [anon_sym_POUND_LBRACK] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_DOLLARif] = ACTIONS(2858), - [anon_sym_is] = ACTIONS(2858), - [anon_sym_BANGis] = ACTIONS(2858), - [anon_sym_in] = ACTIONS(2858), - [anon_sym_BANGin] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_select] = ACTIONS(2858), - [anon_sym_STAR_EQ] = ACTIONS(2858), - [anon_sym_SLASH_EQ] = ACTIONS(2858), - [anon_sym_PERCENT_EQ] = ACTIONS(2858), - [anon_sym_LT_LT_EQ] = ACTIONS(2858), - [anon_sym_GT_GT_EQ] = ACTIONS(2858), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2858), - [anon_sym_AMP_EQ] = ACTIONS(2858), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2858), - [anon_sym_PLUS_EQ] = ACTIONS(2858), - [anon_sym_DASH_EQ] = ACTIONS(2858), - [anon_sym_PIPE_EQ] = ACTIONS(2858), - [anon_sym_CARET_EQ] = ACTIONS(2858), - [anon_sym_COLON_EQ] = ACTIONS(2858), - [anon_sym_lock] = ACTIONS(2858), - [anon_sym_rlock] = ACTIONS(2858), - [anon_sym_unsafe] = ACTIONS(2858), - [anon_sym_sql] = ACTIONS(2858), - [sym_int_literal] = ACTIONS(2858), - [sym_float_literal] = ACTIONS(2858), - [sym_rune_literal] = ACTIONS(2858), - [sym_pseudo_compile_time_identifier] = ACTIONS(2858), - [anon_sym_shared] = ACTIONS(2858), - [anon_sym_map_LBRACK] = ACTIONS(2858), - [anon_sym_chan] = ACTIONS(2858), - [anon_sym_thread] = ACTIONS(2858), - [anon_sym_atomic] = ACTIONS(2858), - [anon_sym_assert] = ACTIONS(2858), - [anon_sym_defer] = ACTIONS(2858), - [anon_sym_goto] = ACTIONS(2858), - [anon_sym_break] = ACTIONS(2858), - [anon_sym_continue] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_DOLLARfor] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_POUND] = ACTIONS(2858), - [anon_sym_asm] = ACTIONS(2858), - [anon_sym_AT_LBRACK] = ACTIONS(2858), - [sym___double_quote] = ACTIONS(2858), - [sym___single_quote] = ACTIONS(2858), - [sym___c_double_quote] = ACTIONS(2858), - [sym___c_single_quote] = ACTIONS(2858), - [sym___r_double_quote] = ACTIONS(2858), - [sym___r_single_quote] = ACTIONS(2858), + [anon_sym_DOT] = ACTIONS(2877), + [anon_sym_as] = ACTIONS(2877), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_COMMA] = ACTIONS(2877), + [anon_sym_const] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(2877), + [anon_sym_EQ] = ACTIONS(2877), + [anon_sym___global] = ACTIONS(2877), + [anon_sym_type] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2877), + [anon_sym_fn] = ACTIONS(2877), + [anon_sym_PLUS] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_SLASH] = ACTIONS(2877), + [anon_sym_PERCENT] = ACTIONS(2877), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_EQ_EQ] = ACTIONS(2877), + [anon_sym_BANG_EQ] = ACTIONS(2877), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2877), + [anon_sym_union] = ACTIONS(2877), + [anon_sym_pub] = ACTIONS(2877), + [anon_sym_mut] = ACTIONS(2877), + [anon_sym_enum] = ACTIONS(2877), + [anon_sym_interface] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_QMARK] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_go] = ACTIONS(2877), + [anon_sym_spawn] = ACTIONS(2877), + [anon_sym_json_DOTdecode] = ACTIONS(2877), + [anon_sym_LBRACK2] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_CARET] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2877), + [anon_sym_LT_DASH] = ACTIONS(2877), + [anon_sym_LT_LT] = ACTIONS(2877), + [anon_sym_GT_GT] = ACTIONS(2877), + [anon_sym_GT_GT_GT] = ACTIONS(2877), + [anon_sym_AMP_CARET] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_PIPE_PIPE] = ACTIONS(2877), + [anon_sym_or] = ACTIONS(2877), + [sym_none] = ACTIONS(2877), + [sym_true] = ACTIONS(2877), + [sym_false] = ACTIONS(2877), + [sym_nil] = ACTIONS(2877), + [anon_sym_QMARK_DOT] = ACTIONS(2877), + [anon_sym_POUND_LBRACK] = ACTIONS(2877), + [anon_sym_if] = ACTIONS(2877), + [anon_sym_DOLLARif] = ACTIONS(2877), + [anon_sym_is] = ACTIONS(2877), + [anon_sym_BANGis] = ACTIONS(2877), + [anon_sym_in] = ACTIONS(2877), + [anon_sym_BANGin] = ACTIONS(2877), + [anon_sym_match] = ACTIONS(2877), + [anon_sym_select] = ACTIONS(2877), + [anon_sym_STAR_EQ] = ACTIONS(2877), + [anon_sym_SLASH_EQ] = ACTIONS(2877), + [anon_sym_PERCENT_EQ] = ACTIONS(2877), + [anon_sym_LT_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_GT_EQ] = ACTIONS(2877), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2877), + [anon_sym_AMP_EQ] = ACTIONS(2877), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2877), + [anon_sym_PLUS_EQ] = ACTIONS(2877), + [anon_sym_DASH_EQ] = ACTIONS(2877), + [anon_sym_PIPE_EQ] = ACTIONS(2877), + [anon_sym_CARET_EQ] = ACTIONS(2877), + [anon_sym_COLON_EQ] = ACTIONS(2877), + [anon_sym_lock] = ACTIONS(2877), + [anon_sym_rlock] = ACTIONS(2877), + [anon_sym_unsafe] = ACTIONS(2877), + [anon_sym_sql] = ACTIONS(2877), + [sym_int_literal] = ACTIONS(2877), + [sym_float_literal] = ACTIONS(2877), + [sym_rune_literal] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [anon_sym_c_SQUOTE] = ACTIONS(2877), + [anon_sym_c_DQUOTE] = ACTIONS(2877), + [anon_sym_r_SQUOTE] = ACTIONS(2877), + [anon_sym_r_DQUOTE] = ACTIONS(2877), + [sym_pseudo_compile_time_identifier] = ACTIONS(2877), + [anon_sym_shared] = ACTIONS(2877), + [anon_sym_map_LBRACK] = ACTIONS(2877), + [anon_sym_chan] = ACTIONS(2877), + [anon_sym_thread] = ACTIONS(2877), + [anon_sym_atomic] = ACTIONS(2877), + [anon_sym_assert] = ACTIONS(2877), + [anon_sym_defer] = ACTIONS(2877), + [anon_sym_goto] = ACTIONS(2877), + [anon_sym_break] = ACTIONS(2877), + [anon_sym_continue] = ACTIONS(2877), + [anon_sym_return] = ACTIONS(2877), + [anon_sym_DOLLARfor] = ACTIONS(2877), + [anon_sym_for] = ACTIONS(2877), + [anon_sym_POUND] = ACTIONS(2877), + [anon_sym_asm] = ACTIONS(2877), + [anon_sym_AT_LBRACK] = ACTIONS(2877), }, [473] = { [sym_line_comment] = STATE(473), [sym_block_comment] = STATE(473), - [ts_builtin_sym_end] = ACTIONS(2860), - [sym_identifier] = ACTIONS(2862), - [anon_sym_LF] = ACTIONS(2862), - [anon_sym_CR] = ACTIONS(2862), - [anon_sym_CR_LF] = ACTIONS(2862), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_as] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_COMMA] = ACTIONS(2862), - [anon_sym_const] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_EQ] = ACTIONS(2862), - [anon_sym___global] = ACTIONS(2862), - [anon_sym_type] = ACTIONS(2862), - [anon_sym_PIPE] = ACTIONS(2862), - [anon_sym_fn] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2862), - [anon_sym_GT] = ACTIONS(2862), - [anon_sym_EQ_EQ] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_LT_EQ] = ACTIONS(2862), - [anon_sym_GT_EQ] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_struct] = ACTIONS(2862), - [anon_sym_union] = ACTIONS(2862), - [anon_sym_pub] = ACTIONS(2862), - [anon_sym_mut] = ACTIONS(2862), - [anon_sym_enum] = ACTIONS(2862), - [anon_sym_interface] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2862), - [anon_sym_DASH_DASH] = ACTIONS(2862), - [anon_sym_QMARK] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2862), - [anon_sym_go] = ACTIONS(2862), - [anon_sym_spawn] = ACTIONS(2862), - [anon_sym_json_DOTdecode] = ACTIONS(2862), - [anon_sym_LBRACK2] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2862), - [anon_sym_CARET] = ACTIONS(2862), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_LT_DASH] = ACTIONS(2862), - [anon_sym_LT_LT] = ACTIONS(2862), - [anon_sym_GT_GT] = ACTIONS(2862), - [anon_sym_GT_GT_GT] = ACTIONS(2862), - [anon_sym_AMP_CARET] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_or] = ACTIONS(2862), - [sym_none] = ACTIONS(2862), - [sym_true] = ACTIONS(2862), - [sym_false] = ACTIONS(2862), - [sym_nil] = ACTIONS(2862), - [anon_sym_QMARK_DOT] = ACTIONS(2862), - [anon_sym_POUND_LBRACK] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_DOLLARif] = ACTIONS(2862), - [anon_sym_is] = ACTIONS(2862), - [anon_sym_BANGis] = ACTIONS(2862), - [anon_sym_in] = ACTIONS(2862), - [anon_sym_BANGin] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_select] = ACTIONS(2862), - [anon_sym_STAR_EQ] = ACTIONS(2862), - [anon_sym_SLASH_EQ] = ACTIONS(2862), - [anon_sym_PERCENT_EQ] = ACTIONS(2862), - [anon_sym_LT_LT_EQ] = ACTIONS(2862), - [anon_sym_GT_GT_EQ] = ACTIONS(2862), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2862), - [anon_sym_AMP_EQ] = ACTIONS(2862), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2862), - [anon_sym_PLUS_EQ] = ACTIONS(2862), - [anon_sym_DASH_EQ] = ACTIONS(2862), - [anon_sym_PIPE_EQ] = ACTIONS(2862), - [anon_sym_CARET_EQ] = ACTIONS(2862), - [anon_sym_COLON_EQ] = ACTIONS(2862), - [anon_sym_lock] = ACTIONS(2862), - [anon_sym_rlock] = ACTIONS(2862), - [anon_sym_unsafe] = ACTIONS(2862), - [anon_sym_sql] = ACTIONS(2862), - [sym_int_literal] = ACTIONS(2862), - [sym_float_literal] = ACTIONS(2862), - [sym_rune_literal] = ACTIONS(2862), - [sym_pseudo_compile_time_identifier] = ACTIONS(2862), - [anon_sym_shared] = ACTIONS(2862), - [anon_sym_map_LBRACK] = ACTIONS(2862), - [anon_sym_chan] = ACTIONS(2862), - [anon_sym_thread] = ACTIONS(2862), - [anon_sym_atomic] = ACTIONS(2862), - [anon_sym_assert] = ACTIONS(2862), - [anon_sym_defer] = ACTIONS(2862), - [anon_sym_goto] = ACTIONS(2862), - [anon_sym_break] = ACTIONS(2862), - [anon_sym_continue] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_DOLLARfor] = ACTIONS(2862), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_POUND] = ACTIONS(2862), - [anon_sym_asm] = ACTIONS(2862), - [anon_sym_AT_LBRACK] = ACTIONS(2862), - [sym___double_quote] = ACTIONS(2862), - [sym___single_quote] = ACTIONS(2862), - [sym___c_double_quote] = ACTIONS(2862), - [sym___c_single_quote] = ACTIONS(2862), - [sym___r_double_quote] = ACTIONS(2862), - [sym___r_single_quote] = ACTIONS(2862), - }, - [474] = { - [sym_line_comment] = STATE(474), - [sym_block_comment] = STATE(474), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4383), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2864), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(2879), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [474] = { + [sym_line_comment] = STATE(474), + [sym_block_comment] = STATE(474), + [ts_builtin_sym_end] = ACTIONS(2881), + [sym_identifier] = ACTIONS(2883), + [anon_sym_LF] = ACTIONS(2883), + [anon_sym_CR] = ACTIONS(2883), + [anon_sym_CR_LF] = ACTIONS(2883), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2883), + [anon_sym_as] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_const] = ACTIONS(2883), + [anon_sym_LPAREN] = ACTIONS(2883), + [anon_sym_EQ] = ACTIONS(2883), + [anon_sym___global] = ACTIONS(2883), + [anon_sym_type] = ACTIONS(2883), + [anon_sym_PIPE] = ACTIONS(2883), + [anon_sym_fn] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_PERCENT] = ACTIONS(2883), + [anon_sym_LT] = ACTIONS(2883), + [anon_sym_GT] = ACTIONS(2883), + [anon_sym_EQ_EQ] = ACTIONS(2883), + [anon_sym_BANG_EQ] = ACTIONS(2883), + [anon_sym_LT_EQ] = ACTIONS(2883), + [anon_sym_GT_EQ] = ACTIONS(2883), + [anon_sym_LBRACK] = ACTIONS(2881), + [anon_sym_struct] = ACTIONS(2883), + [anon_sym_union] = ACTIONS(2883), + [anon_sym_pub] = ACTIONS(2883), + [anon_sym_mut] = ACTIONS(2883), + [anon_sym_enum] = ACTIONS(2883), + [anon_sym_interface] = ACTIONS(2883), + [anon_sym_PLUS_PLUS] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2883), + [anon_sym_QMARK] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2883), + [anon_sym_go] = ACTIONS(2883), + [anon_sym_spawn] = ACTIONS(2883), + [anon_sym_json_DOTdecode] = ACTIONS(2883), + [anon_sym_LBRACK2] = ACTIONS(2883), + [anon_sym_TILDE] = ACTIONS(2883), + [anon_sym_CARET] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_LT_DASH] = ACTIONS(2883), + [anon_sym_LT_LT] = ACTIONS(2883), + [anon_sym_GT_GT] = ACTIONS(2883), + [anon_sym_GT_GT_GT] = ACTIONS(2883), + [anon_sym_AMP_CARET] = ACTIONS(2883), + [anon_sym_AMP_AMP] = ACTIONS(2883), + [anon_sym_PIPE_PIPE] = ACTIONS(2883), + [anon_sym_or] = ACTIONS(2883), + [sym_none] = ACTIONS(2883), + [sym_true] = ACTIONS(2883), + [sym_false] = ACTIONS(2883), + [sym_nil] = ACTIONS(2883), + [anon_sym_QMARK_DOT] = ACTIONS(2883), + [anon_sym_POUND_LBRACK] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_DOLLARif] = ACTIONS(2883), + [anon_sym_is] = ACTIONS(2883), + [anon_sym_BANGis] = ACTIONS(2883), + [anon_sym_in] = ACTIONS(2883), + [anon_sym_BANGin] = ACTIONS(2883), + [anon_sym_match] = ACTIONS(2883), + [anon_sym_select] = ACTIONS(2883), + [anon_sym_STAR_EQ] = ACTIONS(2883), + [anon_sym_SLASH_EQ] = ACTIONS(2883), + [anon_sym_PERCENT_EQ] = ACTIONS(2883), + [anon_sym_LT_LT_EQ] = ACTIONS(2883), + [anon_sym_GT_GT_EQ] = ACTIONS(2883), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2883), + [anon_sym_AMP_EQ] = ACTIONS(2883), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2883), + [anon_sym_PLUS_EQ] = ACTIONS(2883), + [anon_sym_DASH_EQ] = ACTIONS(2883), + [anon_sym_PIPE_EQ] = ACTIONS(2883), + [anon_sym_CARET_EQ] = ACTIONS(2883), + [anon_sym_COLON_EQ] = ACTIONS(2883), + [anon_sym_lock] = ACTIONS(2883), + [anon_sym_rlock] = ACTIONS(2883), + [anon_sym_unsafe] = ACTIONS(2883), + [anon_sym_sql] = ACTIONS(2883), + [sym_int_literal] = ACTIONS(2883), + [sym_float_literal] = ACTIONS(2883), + [sym_rune_literal] = ACTIONS(2883), + [anon_sym_SQUOTE] = ACTIONS(2883), + [anon_sym_DQUOTE] = ACTIONS(2883), + [anon_sym_c_SQUOTE] = ACTIONS(2883), + [anon_sym_c_DQUOTE] = ACTIONS(2883), + [anon_sym_r_SQUOTE] = ACTIONS(2883), + [anon_sym_r_DQUOTE] = ACTIONS(2883), + [sym_pseudo_compile_time_identifier] = ACTIONS(2883), + [anon_sym_shared] = ACTIONS(2883), + [anon_sym_map_LBRACK] = ACTIONS(2883), + [anon_sym_chan] = ACTIONS(2883), + [anon_sym_thread] = ACTIONS(2883), + [anon_sym_atomic] = ACTIONS(2883), + [anon_sym_assert] = ACTIONS(2883), + [anon_sym_defer] = ACTIONS(2883), + [anon_sym_goto] = ACTIONS(2883), + [anon_sym_break] = ACTIONS(2883), + [anon_sym_continue] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2883), + [anon_sym_DOLLARfor] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2883), + [anon_sym_POUND] = ACTIONS(2883), + [anon_sym_asm] = ACTIONS(2883), + [anon_sym_AT_LBRACK] = ACTIONS(2883), }, [475] = { [sym_line_comment] = STATE(475), [sym_block_comment] = STATE(475), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1397), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1399), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(502), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2866), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(2885), + [sym_identifier] = ACTIONS(2887), + [anon_sym_LF] = ACTIONS(2887), + [anon_sym_CR] = ACTIONS(2887), + [anon_sym_CR_LF] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2887), + [anon_sym_as] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_COMMA] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_EQ] = ACTIONS(2887), + [anon_sym___global] = ACTIONS(2887), + [anon_sym_type] = ACTIONS(2887), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_fn] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2887), + [anon_sym_BANG_EQ] = ACTIONS(2887), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_pub] = ACTIONS(2887), + [anon_sym_mut] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_interface] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2887), + [anon_sym_QMARK] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2887), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2887), + [anon_sym_json_DOTdecode] = ACTIONS(2887), + [anon_sym_LBRACK2] = ACTIONS(2887), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_CARET] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_GT_GT_GT] = ACTIONS(2887), + [anon_sym_AMP_CARET] = ACTIONS(2887), + [anon_sym_AMP_AMP] = ACTIONS(2887), + [anon_sym_PIPE_PIPE] = ACTIONS(2887), + [anon_sym_or] = ACTIONS(2887), + [sym_none] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_nil] = ACTIONS(2887), + [anon_sym_QMARK_DOT] = ACTIONS(2887), + [anon_sym_POUND_LBRACK] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_DOLLARif] = ACTIONS(2887), + [anon_sym_is] = ACTIONS(2887), + [anon_sym_BANGis] = ACTIONS(2887), + [anon_sym_in] = ACTIONS(2887), + [anon_sym_BANGin] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2887), + [anon_sym_select] = ACTIONS(2887), + [anon_sym_STAR_EQ] = ACTIONS(2887), + [anon_sym_SLASH_EQ] = ACTIONS(2887), + [anon_sym_PERCENT_EQ] = ACTIONS(2887), + [anon_sym_LT_LT_EQ] = ACTIONS(2887), + [anon_sym_GT_GT_EQ] = ACTIONS(2887), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2887), + [anon_sym_AMP_EQ] = ACTIONS(2887), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2887), + [anon_sym_PLUS_EQ] = ACTIONS(2887), + [anon_sym_DASH_EQ] = ACTIONS(2887), + [anon_sym_PIPE_EQ] = ACTIONS(2887), + [anon_sym_CARET_EQ] = ACTIONS(2887), + [anon_sym_COLON_EQ] = ACTIONS(2887), + [anon_sym_lock] = ACTIONS(2887), + [anon_sym_rlock] = ACTIONS(2887), + [anon_sym_unsafe] = ACTIONS(2887), + [anon_sym_sql] = ACTIONS(2887), + [sym_int_literal] = ACTIONS(2887), + [sym_float_literal] = ACTIONS(2887), + [sym_rune_literal] = ACTIONS(2887), + [anon_sym_SQUOTE] = ACTIONS(2887), + [anon_sym_DQUOTE] = ACTIONS(2887), + [anon_sym_c_SQUOTE] = ACTIONS(2887), + [anon_sym_c_DQUOTE] = ACTIONS(2887), + [anon_sym_r_SQUOTE] = ACTIONS(2887), + [anon_sym_r_DQUOTE] = ACTIONS(2887), + [sym_pseudo_compile_time_identifier] = ACTIONS(2887), + [anon_sym_shared] = ACTIONS(2887), + [anon_sym_map_LBRACK] = ACTIONS(2887), + [anon_sym_chan] = ACTIONS(2887), + [anon_sym_thread] = ACTIONS(2887), + [anon_sym_atomic] = ACTIONS(2887), + [anon_sym_assert] = ACTIONS(2887), + [anon_sym_defer] = ACTIONS(2887), + [anon_sym_goto] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_DOLLARfor] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_POUND] = ACTIONS(2887), + [anon_sym_asm] = ACTIONS(2887), + [anon_sym_AT_LBRACK] = ACTIONS(2887), }, [476] = { [sym_line_comment] = STATE(476), [sym_block_comment] = STATE(476), - [ts_builtin_sym_end] = ACTIONS(2868), - [sym_identifier] = ACTIONS(2870), - [anon_sym_LF] = ACTIONS(2870), - [anon_sym_CR] = ACTIONS(2870), - [anon_sym_CR_LF] = ACTIONS(2870), + [ts_builtin_sym_end] = ACTIONS(2889), + [sym_identifier] = ACTIONS(2891), + [anon_sym_LF] = ACTIONS(2891), + [anon_sym_CR] = ACTIONS(2891), + [anon_sym_CR_LF] = ACTIONS(2891), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_as] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2870), - [anon_sym_const] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_EQ] = ACTIONS(2870), - [anon_sym___global] = ACTIONS(2870), - [anon_sym_type] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_fn] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_EQ_EQ] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2870), - [anon_sym_LT_EQ] = ACTIONS(2870), - [anon_sym_GT_EQ] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2870), - [anon_sym_union] = ACTIONS(2870), - [anon_sym_pub] = ACTIONS(2870), - [anon_sym_mut] = ACTIONS(2870), - [anon_sym_enum] = ACTIONS(2870), - [anon_sym_interface] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_go] = ACTIONS(2870), - [anon_sym_spawn] = ACTIONS(2870), - [anon_sym_json_DOTdecode] = ACTIONS(2870), - [anon_sym_LBRACK2] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_LT_LT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2870), - [anon_sym_GT_GT_GT] = ACTIONS(2870), - [anon_sym_AMP_CARET] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_or] = ACTIONS(2870), - [sym_none] = ACTIONS(2870), - [sym_true] = ACTIONS(2870), - [sym_false] = ACTIONS(2870), - [sym_nil] = ACTIONS(2870), - [anon_sym_QMARK_DOT] = ACTIONS(2870), - [anon_sym_POUND_LBRACK] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_DOLLARif] = ACTIONS(2870), - [anon_sym_is] = ACTIONS(2870), - [anon_sym_BANGis] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(2870), - [anon_sym_BANGin] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_select] = ACTIONS(2870), - [anon_sym_STAR_EQ] = ACTIONS(2870), - [anon_sym_SLASH_EQ] = ACTIONS(2870), - [anon_sym_PERCENT_EQ] = ACTIONS(2870), - [anon_sym_LT_LT_EQ] = ACTIONS(2870), - [anon_sym_GT_GT_EQ] = ACTIONS(2870), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2870), - [anon_sym_AMP_EQ] = ACTIONS(2870), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2870), - [anon_sym_PLUS_EQ] = ACTIONS(2870), - [anon_sym_DASH_EQ] = ACTIONS(2870), - [anon_sym_PIPE_EQ] = ACTIONS(2870), - [anon_sym_CARET_EQ] = ACTIONS(2870), - [anon_sym_COLON_EQ] = ACTIONS(2870), - [anon_sym_lock] = ACTIONS(2870), - [anon_sym_rlock] = ACTIONS(2870), - [anon_sym_unsafe] = ACTIONS(2870), - [anon_sym_sql] = ACTIONS(2870), - [sym_int_literal] = ACTIONS(2870), - [sym_float_literal] = ACTIONS(2870), - [sym_rune_literal] = ACTIONS(2870), - [sym_pseudo_compile_time_identifier] = ACTIONS(2870), - [anon_sym_shared] = ACTIONS(2870), - [anon_sym_map_LBRACK] = ACTIONS(2870), - [anon_sym_chan] = ACTIONS(2870), - [anon_sym_thread] = ACTIONS(2870), - [anon_sym_atomic] = ACTIONS(2870), - [anon_sym_assert] = ACTIONS(2870), - [anon_sym_defer] = ACTIONS(2870), - [anon_sym_goto] = ACTIONS(2870), - [anon_sym_break] = ACTIONS(2870), - [anon_sym_continue] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_DOLLARfor] = ACTIONS(2870), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_POUND] = ACTIONS(2870), - [anon_sym_asm] = ACTIONS(2870), - [anon_sym_AT_LBRACK] = ACTIONS(2870), - [sym___double_quote] = ACTIONS(2870), - [sym___single_quote] = ACTIONS(2870), - [sym___c_double_quote] = ACTIONS(2870), - [sym___c_single_quote] = ACTIONS(2870), - [sym___r_double_quote] = ACTIONS(2870), - [sym___r_single_quote] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(2891), + [anon_sym_as] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2891), + [anon_sym_COMMA] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_LPAREN] = ACTIONS(2891), + [anon_sym_EQ] = ACTIONS(2891), + [anon_sym___global] = ACTIONS(2891), + [anon_sym_type] = ACTIONS(2891), + [anon_sym_PIPE] = ACTIONS(2891), + [anon_sym_fn] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2891), + [anon_sym_SLASH] = ACTIONS(2891), + [anon_sym_PERCENT] = ACTIONS(2891), + [anon_sym_LT] = ACTIONS(2891), + [anon_sym_GT] = ACTIONS(2891), + [anon_sym_EQ_EQ] = ACTIONS(2891), + [anon_sym_BANG_EQ] = ACTIONS(2891), + [anon_sym_LT_EQ] = ACTIONS(2891), + [anon_sym_GT_EQ] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2889), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_union] = ACTIONS(2891), + [anon_sym_pub] = ACTIONS(2891), + [anon_sym_mut] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), + [anon_sym_interface] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_QMARK] = ACTIONS(2891), + [anon_sym_BANG] = ACTIONS(2891), + [anon_sym_go] = ACTIONS(2891), + [anon_sym_spawn] = ACTIONS(2891), + [anon_sym_json_DOTdecode] = ACTIONS(2891), + [anon_sym_LBRACK2] = ACTIONS(2891), + [anon_sym_TILDE] = ACTIONS(2891), + [anon_sym_CARET] = ACTIONS(2891), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2891), + [anon_sym_LT_LT] = ACTIONS(2891), + [anon_sym_GT_GT] = ACTIONS(2891), + [anon_sym_GT_GT_GT] = ACTIONS(2891), + [anon_sym_AMP_CARET] = ACTIONS(2891), + [anon_sym_AMP_AMP] = ACTIONS(2891), + [anon_sym_PIPE_PIPE] = ACTIONS(2891), + [anon_sym_or] = ACTIONS(2891), + [sym_none] = ACTIONS(2891), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [sym_nil] = ACTIONS(2891), + [anon_sym_QMARK_DOT] = ACTIONS(2891), + [anon_sym_POUND_LBRACK] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_DOLLARif] = ACTIONS(2891), + [anon_sym_is] = ACTIONS(2891), + [anon_sym_BANGis] = ACTIONS(2891), + [anon_sym_in] = ACTIONS(2891), + [anon_sym_BANGin] = ACTIONS(2891), + [anon_sym_match] = ACTIONS(2891), + [anon_sym_select] = ACTIONS(2891), + [anon_sym_STAR_EQ] = ACTIONS(2891), + [anon_sym_SLASH_EQ] = ACTIONS(2891), + [anon_sym_PERCENT_EQ] = ACTIONS(2891), + [anon_sym_LT_LT_EQ] = ACTIONS(2891), + [anon_sym_GT_GT_EQ] = ACTIONS(2891), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2891), + [anon_sym_AMP_EQ] = ACTIONS(2891), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2891), + [anon_sym_PLUS_EQ] = ACTIONS(2891), + [anon_sym_DASH_EQ] = ACTIONS(2891), + [anon_sym_PIPE_EQ] = ACTIONS(2891), + [anon_sym_CARET_EQ] = ACTIONS(2891), + [anon_sym_COLON_EQ] = ACTIONS(2891), + [anon_sym_lock] = ACTIONS(2891), + [anon_sym_rlock] = ACTIONS(2891), + [anon_sym_unsafe] = ACTIONS(2891), + [anon_sym_sql] = ACTIONS(2891), + [sym_int_literal] = ACTIONS(2891), + [sym_float_literal] = ACTIONS(2891), + [sym_rune_literal] = ACTIONS(2891), + [anon_sym_SQUOTE] = ACTIONS(2891), + [anon_sym_DQUOTE] = ACTIONS(2891), + [anon_sym_c_SQUOTE] = ACTIONS(2891), + [anon_sym_c_DQUOTE] = ACTIONS(2891), + [anon_sym_r_SQUOTE] = ACTIONS(2891), + [anon_sym_r_DQUOTE] = ACTIONS(2891), + [sym_pseudo_compile_time_identifier] = ACTIONS(2891), + [anon_sym_shared] = ACTIONS(2891), + [anon_sym_map_LBRACK] = ACTIONS(2891), + [anon_sym_chan] = ACTIONS(2891), + [anon_sym_thread] = ACTIONS(2891), + [anon_sym_atomic] = ACTIONS(2891), + [anon_sym_assert] = ACTIONS(2891), + [anon_sym_defer] = ACTIONS(2891), + [anon_sym_goto] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_DOLLARfor] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_POUND] = ACTIONS(2891), + [anon_sym_asm] = ACTIONS(2891), + [anon_sym_AT_LBRACK] = ACTIONS(2891), }, [477] = { [sym_line_comment] = STATE(477), [sym_block_comment] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(2872), - [sym_identifier] = ACTIONS(2874), - [anon_sym_LF] = ACTIONS(2874), - [anon_sym_CR] = ACTIONS(2874), - [anon_sym_CR_LF] = ACTIONS(2874), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_as] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_COMMA] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_EQ] = ACTIONS(2874), - [anon_sym___global] = ACTIONS(2874), - [anon_sym_type] = ACTIONS(2874), - [anon_sym_PIPE] = ACTIONS(2874), - [anon_sym_fn] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_STAR] = ACTIONS(2874), - [anon_sym_SLASH] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2874), - [anon_sym_GT] = ACTIONS(2874), - [anon_sym_EQ_EQ] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2874), - [anon_sym_LT_EQ] = ACTIONS(2874), - [anon_sym_GT_EQ] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2872), - [anon_sym_struct] = ACTIONS(2874), - [anon_sym_union] = ACTIONS(2874), - [anon_sym_pub] = ACTIONS(2874), - [anon_sym_mut] = ACTIONS(2874), - [anon_sym_enum] = ACTIONS(2874), - [anon_sym_interface] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2874), - [anon_sym_DASH_DASH] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2874), - [anon_sym_go] = ACTIONS(2874), - [anon_sym_spawn] = ACTIONS(2874), - [anon_sym_json_DOTdecode] = ACTIONS(2874), - [anon_sym_LBRACK2] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2874), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2874), - [anon_sym_LT_LT] = ACTIONS(2874), - [anon_sym_GT_GT] = ACTIONS(2874), - [anon_sym_GT_GT_GT] = ACTIONS(2874), - [anon_sym_AMP_CARET] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_or] = ACTIONS(2874), - [sym_none] = ACTIONS(2874), - [sym_true] = ACTIONS(2874), - [sym_false] = ACTIONS(2874), - [sym_nil] = ACTIONS(2874), - [anon_sym_QMARK_DOT] = ACTIONS(2874), - [anon_sym_POUND_LBRACK] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_DOLLARif] = ACTIONS(2874), - [anon_sym_is] = ACTIONS(2874), - [anon_sym_BANGis] = ACTIONS(2874), - [anon_sym_in] = ACTIONS(2874), - [anon_sym_BANGin] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_select] = ACTIONS(2874), - [anon_sym_STAR_EQ] = ACTIONS(2874), - [anon_sym_SLASH_EQ] = ACTIONS(2874), - [anon_sym_PERCENT_EQ] = ACTIONS(2874), - [anon_sym_LT_LT_EQ] = ACTIONS(2874), - [anon_sym_GT_GT_EQ] = ACTIONS(2874), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2874), - [anon_sym_AMP_EQ] = ACTIONS(2874), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2874), - [anon_sym_PLUS_EQ] = ACTIONS(2874), - [anon_sym_DASH_EQ] = ACTIONS(2874), - [anon_sym_PIPE_EQ] = ACTIONS(2874), - [anon_sym_CARET_EQ] = ACTIONS(2874), - [anon_sym_COLON_EQ] = ACTIONS(2874), - [anon_sym_lock] = ACTIONS(2874), - [anon_sym_rlock] = ACTIONS(2874), - [anon_sym_unsafe] = ACTIONS(2874), - [anon_sym_sql] = ACTIONS(2874), - [sym_int_literal] = ACTIONS(2874), - [sym_float_literal] = ACTIONS(2874), - [sym_rune_literal] = ACTIONS(2874), - [sym_pseudo_compile_time_identifier] = ACTIONS(2874), - [anon_sym_shared] = ACTIONS(2874), - [anon_sym_map_LBRACK] = ACTIONS(2874), - [anon_sym_chan] = ACTIONS(2874), - [anon_sym_thread] = ACTIONS(2874), - [anon_sym_atomic] = ACTIONS(2874), - [anon_sym_assert] = ACTIONS(2874), - [anon_sym_defer] = ACTIONS(2874), - [anon_sym_goto] = ACTIONS(2874), - [anon_sym_break] = ACTIONS(2874), - [anon_sym_continue] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_DOLLARfor] = ACTIONS(2874), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_POUND] = ACTIONS(2874), - [anon_sym_asm] = ACTIONS(2874), - [anon_sym_AT_LBRACK] = ACTIONS(2874), - [sym___double_quote] = ACTIONS(2874), - [sym___single_quote] = ACTIONS(2874), - [sym___c_double_quote] = ACTIONS(2874), - [sym___c_single_quote] = ACTIONS(2874), - [sym___r_double_quote] = ACTIONS(2874), - [sym___r_single_quote] = ACTIONS(2874), + [sym__expression] = STATE(2589), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3548), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4617), + [sym_identifier] = ACTIONS(2391), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [478] = { [sym_line_comment] = STATE(478), [sym_block_comment] = STATE(478), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1397), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1399), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2589), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_range] = STATE(4617), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(1281), }, [479] = { [sym_line_comment] = STATE(479), [sym_block_comment] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(2878), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LF] = ACTIONS(2880), - [anon_sym_CR] = ACTIONS(2880), - [anon_sym_CR_LF] = ACTIONS(2880), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2880), - [anon_sym_as] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_EQ] = ACTIONS(2880), - [anon_sym___global] = ACTIONS(2880), - [anon_sym_type] = ACTIONS(2880), - [anon_sym_PIPE] = ACTIONS(2880), - [anon_sym_fn] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2880), - [anon_sym_SLASH] = ACTIONS(2880), - [anon_sym_PERCENT] = ACTIONS(2880), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_GT] = ACTIONS(2880), - [anon_sym_EQ_EQ] = ACTIONS(2880), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_LT_EQ] = ACTIONS(2880), - [anon_sym_GT_EQ] = ACTIONS(2880), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_union] = ACTIONS(2880), - [anon_sym_pub] = ACTIONS(2880), - [anon_sym_mut] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_interface] = ACTIONS(2880), - [anon_sym_PLUS_PLUS] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2880), - [anon_sym_QMARK] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_go] = ACTIONS(2880), - [anon_sym_spawn] = ACTIONS(2880), - [anon_sym_json_DOTdecode] = ACTIONS(2880), - [anon_sym_LBRACK2] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2880), - [anon_sym_CARET] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_LT_DASH] = ACTIONS(2880), - [anon_sym_LT_LT] = ACTIONS(2880), - [anon_sym_GT_GT] = ACTIONS(2880), - [anon_sym_GT_GT_GT] = ACTIONS(2880), - [anon_sym_AMP_CARET] = ACTIONS(2880), - [anon_sym_AMP_AMP] = ACTIONS(2880), - [anon_sym_PIPE_PIPE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2880), - [sym_none] = ACTIONS(2880), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_nil] = ACTIONS(2880), - [anon_sym_QMARK_DOT] = ACTIONS(2880), - [anon_sym_POUND_LBRACK] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_DOLLARif] = ACTIONS(2880), - [anon_sym_is] = ACTIONS(2880), - [anon_sym_BANGis] = ACTIONS(2880), - [anon_sym_in] = ACTIONS(2880), - [anon_sym_BANGin] = ACTIONS(2880), - [anon_sym_match] = ACTIONS(2880), - [anon_sym_select] = ACTIONS(2880), - [anon_sym_STAR_EQ] = ACTIONS(2880), - [anon_sym_SLASH_EQ] = ACTIONS(2880), - [anon_sym_PERCENT_EQ] = ACTIONS(2880), - [anon_sym_LT_LT_EQ] = ACTIONS(2880), - [anon_sym_GT_GT_EQ] = ACTIONS(2880), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2880), - [anon_sym_AMP_EQ] = ACTIONS(2880), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2880), - [anon_sym_PLUS_EQ] = ACTIONS(2880), - [anon_sym_DASH_EQ] = ACTIONS(2880), - [anon_sym_PIPE_EQ] = ACTIONS(2880), - [anon_sym_CARET_EQ] = ACTIONS(2880), - [anon_sym_COLON_EQ] = ACTIONS(2880), - [anon_sym_lock] = ACTIONS(2880), - [anon_sym_rlock] = ACTIONS(2880), - [anon_sym_unsafe] = ACTIONS(2880), - [anon_sym_sql] = ACTIONS(2880), - [sym_int_literal] = ACTIONS(2880), - [sym_float_literal] = ACTIONS(2880), - [sym_rune_literal] = ACTIONS(2880), - [sym_pseudo_compile_time_identifier] = ACTIONS(2880), - [anon_sym_shared] = ACTIONS(2880), - [anon_sym_map_LBRACK] = ACTIONS(2880), - [anon_sym_chan] = ACTIONS(2880), - [anon_sym_thread] = ACTIONS(2880), - [anon_sym_atomic] = ACTIONS(2880), - [anon_sym_assert] = ACTIONS(2880), - [anon_sym_defer] = ACTIONS(2880), - [anon_sym_goto] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_DOLLARfor] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_POUND] = ACTIONS(2880), - [anon_sym_asm] = ACTIONS(2880), - [anon_sym_AT_LBRACK] = ACTIONS(2880), - [sym___double_quote] = ACTIONS(2880), - [sym___single_quote] = ACTIONS(2880), - [sym___c_double_quote] = ACTIONS(2880), - [sym___c_single_quote] = ACTIONS(2880), - [sym___r_double_quote] = ACTIONS(2880), - [sym___r_single_quote] = ACTIONS(2880), + [sym__expression] = STATE(1370), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_string_interpolation_repeat1] = STATE(479), + [sym_identifier] = ACTIONS(2893), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2896), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_RBRACE] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_fn] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2913), + [anon_sym_struct] = ACTIONS(2916), + [anon_sym_mut] = ACTIONS(2919), + [anon_sym_QMARK] = ACTIONS(2922), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_go] = ACTIONS(2928), + [anon_sym_spawn] = ACTIONS(2931), + [anon_sym_json_DOTdecode] = ACTIONS(2934), + [anon_sym_LBRACK2] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_CARET] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2940), + [anon_sym_LT_DASH] = ACTIONS(2943), + [sym_none] = ACTIONS(2946), + [sym_true] = ACTIONS(2946), + [sym_false] = ACTIONS(2946), + [sym_nil] = ACTIONS(2946), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2952), + [anon_sym_match] = ACTIONS(2955), + [anon_sym_select] = ACTIONS(2958), + [anon_sym_lock] = ACTIONS(2961), + [anon_sym_rlock] = ACTIONS(2961), + [anon_sym_unsafe] = ACTIONS(2964), + [anon_sym_sql] = ACTIONS(2967), + [sym_int_literal] = ACTIONS(2946), + [sym_float_literal] = ACTIONS(2970), + [sym_rune_literal] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2976), + [anon_sym_c_SQUOTE] = ACTIONS(2979), + [anon_sym_c_DQUOTE] = ACTIONS(2982), + [anon_sym_r_SQUOTE] = ACTIONS(2985), + [anon_sym_r_DQUOTE] = ACTIONS(2988), + [sym_pseudo_compile_time_identifier] = ACTIONS(2991), + [anon_sym_shared] = ACTIONS(2994), + [anon_sym_map_LBRACK] = ACTIONS(2997), + [anon_sym_chan] = ACTIONS(3000), + [anon_sym_thread] = ACTIONS(3003), + [anon_sym_atomic] = ACTIONS(3006), }, [480] = { [sym_line_comment] = STATE(480), [sym_block_comment] = STATE(480), - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3813), - [sym_expression_list] = STATE(4399), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(3009), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LF] = ACTIONS(3011), + [anon_sym_CR] = ACTIONS(3011), + [anon_sym_CR_LF] = ACTIONS(3011), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3011), + [anon_sym_as] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(3011), + [anon_sym___global] = ACTIONS(3011), + [anon_sym_type] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_fn] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3011), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_SLASH] = ACTIONS(3011), + [anon_sym_PERCENT] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(3011), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_struct] = ACTIONS(3011), + [anon_sym_union] = ACTIONS(3011), + [anon_sym_pub] = ACTIONS(3011), + [anon_sym_mut] = ACTIONS(3011), + [anon_sym_enum] = ACTIONS(3011), + [anon_sym_interface] = ACTIONS(3011), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [anon_sym_QMARK] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(3011), + [anon_sym_go] = ACTIONS(3011), + [anon_sym_spawn] = ACTIONS(3011), + [anon_sym_json_DOTdecode] = ACTIONS(3011), + [anon_sym_LBRACK2] = ACTIONS(3011), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_CARET] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_LT_DASH] = ACTIONS(3011), + [anon_sym_LT_LT] = ACTIONS(3011), + [anon_sym_GT_GT] = ACTIONS(3011), + [anon_sym_GT_GT_GT] = ACTIONS(3011), + [anon_sym_AMP_CARET] = ACTIONS(3011), + [anon_sym_AMP_AMP] = ACTIONS(3011), + [anon_sym_PIPE_PIPE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3011), + [sym_none] = ACTIONS(3011), + [sym_true] = ACTIONS(3011), + [sym_false] = ACTIONS(3011), + [sym_nil] = ACTIONS(3011), + [anon_sym_QMARK_DOT] = ACTIONS(3011), + [anon_sym_POUND_LBRACK] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_DOLLARif] = ACTIONS(3011), + [anon_sym_is] = ACTIONS(3011), + [anon_sym_BANGis] = ACTIONS(3011), + [anon_sym_in] = ACTIONS(3011), + [anon_sym_BANGin] = ACTIONS(3011), + [anon_sym_match] = ACTIONS(3011), + [anon_sym_select] = ACTIONS(3011), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_COLON_EQ] = ACTIONS(3011), + [anon_sym_lock] = ACTIONS(3011), + [anon_sym_rlock] = ACTIONS(3011), + [anon_sym_unsafe] = ACTIONS(3011), + [anon_sym_sql] = ACTIONS(3011), + [sym_int_literal] = ACTIONS(3011), + [sym_float_literal] = ACTIONS(3011), + [sym_rune_literal] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_DQUOTE] = ACTIONS(3011), + [anon_sym_c_SQUOTE] = ACTIONS(3011), + [anon_sym_c_DQUOTE] = ACTIONS(3011), + [anon_sym_r_SQUOTE] = ACTIONS(3011), + [anon_sym_r_DQUOTE] = ACTIONS(3011), + [sym_pseudo_compile_time_identifier] = ACTIONS(3011), + [anon_sym_shared] = ACTIONS(3011), + [anon_sym_map_LBRACK] = ACTIONS(3011), + [anon_sym_chan] = ACTIONS(3011), + [anon_sym_thread] = ACTIONS(3011), + [anon_sym_atomic] = ACTIONS(3011), + [anon_sym_assert] = ACTIONS(3011), + [anon_sym_defer] = ACTIONS(3011), + [anon_sym_goto] = ACTIONS(3011), + [anon_sym_break] = ACTIONS(3011), + [anon_sym_continue] = ACTIONS(3011), + [anon_sym_return] = ACTIONS(3011), + [anon_sym_DOLLARfor] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3011), + [anon_sym_POUND] = ACTIONS(3011), + [anon_sym_asm] = ACTIONS(3011), + [anon_sym_AT_LBRACK] = ACTIONS(3011), }, [481] = { [sym_line_comment] = STATE(481), [sym_block_comment] = STATE(481), - [ts_builtin_sym_end] = ACTIONS(2884), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LF] = ACTIONS(2886), - [anon_sym_CR] = ACTIONS(2886), - [anon_sym_CR_LF] = ACTIONS(2886), + [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(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2886), - [anon_sym_const] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_EQ] = ACTIONS(2886), - [anon_sym___global] = ACTIONS(2886), - [anon_sym_type] = ACTIONS(2886), - [anon_sym_PIPE] = ACTIONS(2886), - [anon_sym_fn] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_SLASH] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2886), - [anon_sym_GT] = ACTIONS(2886), - [anon_sym_EQ_EQ] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2886), - [anon_sym_LT_EQ] = ACTIONS(2886), - [anon_sym_GT_EQ] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_struct] = ACTIONS(2886), - [anon_sym_union] = ACTIONS(2886), - [anon_sym_pub] = ACTIONS(2886), - [anon_sym_mut] = ACTIONS(2886), - [anon_sym_enum] = ACTIONS(2886), - [anon_sym_interface] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2886), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_go] = ACTIONS(2886), - [anon_sym_spawn] = ACTIONS(2886), - [anon_sym_json_DOTdecode] = ACTIONS(2886), - [anon_sym_LBRACK2] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2886), - [anon_sym_CARET] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_LT_LT] = ACTIONS(2886), - [anon_sym_GT_GT] = ACTIONS(2886), - [anon_sym_GT_GT_GT] = ACTIONS(2886), - [anon_sym_AMP_CARET] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_or] = ACTIONS(2886), - [sym_none] = ACTIONS(2886), - [sym_true] = ACTIONS(2886), - [sym_false] = ACTIONS(2886), - [sym_nil] = ACTIONS(2886), - [anon_sym_QMARK_DOT] = ACTIONS(2886), - [anon_sym_POUND_LBRACK] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_DOLLARif] = ACTIONS(2886), - [anon_sym_is] = ACTIONS(2886), - [anon_sym_BANGis] = ACTIONS(2886), - [anon_sym_in] = ACTIONS(2886), - [anon_sym_BANGin] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_select] = ACTIONS(2886), - [anon_sym_STAR_EQ] = ACTIONS(2886), - [anon_sym_SLASH_EQ] = ACTIONS(2886), - [anon_sym_PERCENT_EQ] = ACTIONS(2886), - [anon_sym_LT_LT_EQ] = ACTIONS(2886), - [anon_sym_GT_GT_EQ] = ACTIONS(2886), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2886), - [anon_sym_AMP_EQ] = ACTIONS(2886), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2886), - [anon_sym_PLUS_EQ] = ACTIONS(2886), - [anon_sym_DASH_EQ] = ACTIONS(2886), - [anon_sym_PIPE_EQ] = ACTIONS(2886), - [anon_sym_CARET_EQ] = ACTIONS(2886), - [anon_sym_COLON_EQ] = ACTIONS(2886), - [anon_sym_lock] = ACTIONS(2886), - [anon_sym_rlock] = ACTIONS(2886), - [anon_sym_unsafe] = ACTIONS(2886), - [anon_sym_sql] = ACTIONS(2886), - [sym_int_literal] = ACTIONS(2886), - [sym_float_literal] = ACTIONS(2886), - [sym_rune_literal] = ACTIONS(2886), - [sym_pseudo_compile_time_identifier] = ACTIONS(2886), - [anon_sym_shared] = ACTIONS(2886), - [anon_sym_map_LBRACK] = ACTIONS(2886), - [anon_sym_chan] = ACTIONS(2886), - [anon_sym_thread] = ACTIONS(2886), - [anon_sym_atomic] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_defer] = ACTIONS(2886), - [anon_sym_goto] = ACTIONS(2886), - [anon_sym_break] = ACTIONS(2886), - [anon_sym_continue] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_DOLLARfor] = ACTIONS(2886), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_POUND] = ACTIONS(2886), - [anon_sym_asm] = ACTIONS(2886), - [anon_sym_AT_LBRACK] = ACTIONS(2886), - [sym___double_quote] = ACTIONS(2886), - [sym___single_quote] = ACTIONS(2886), - [sym___c_double_quote] = ACTIONS(2886), - [sym___c_single_quote] = ACTIONS(2886), - [sym___r_double_quote] = ACTIONS(2886), - [sym___r_single_quote] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(3015), + [anon_sym_LBRACE] = ACTIONS(3015), + [anon_sym_COMMA] = ACTIONS(3015), + [anon_sym_const] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(3015), + [anon_sym_EQ] = ACTIONS(3015), + [anon_sym___global] = ACTIONS(3015), + [anon_sym_type] = ACTIONS(3015), + [anon_sym_PIPE] = ACTIONS(3015), + [anon_sym_fn] = ACTIONS(3015), + [anon_sym_PLUS] = ACTIONS(3015), + [anon_sym_DASH] = ACTIONS(3015), + [anon_sym_STAR] = ACTIONS(3015), + [anon_sym_SLASH] = ACTIONS(3015), + [anon_sym_PERCENT] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_struct] = ACTIONS(3015), + [anon_sym_union] = ACTIONS(3015), + [anon_sym_pub] = ACTIONS(3015), + [anon_sym_mut] = ACTIONS(3015), + [anon_sym_enum] = ACTIONS(3015), + [anon_sym_interface] = ACTIONS(3015), + [anon_sym_PLUS_PLUS] = ACTIONS(3015), + [anon_sym_DASH_DASH] = ACTIONS(3015), + [anon_sym_QMARK] = ACTIONS(3015), + [anon_sym_BANG] = ACTIONS(3015), + [anon_sym_go] = ACTIONS(3015), + [anon_sym_spawn] = ACTIONS(3015), + [anon_sym_json_DOTdecode] = ACTIONS(3015), + [anon_sym_LBRACK2] = ACTIONS(3015), + [anon_sym_TILDE] = ACTIONS(3015), + [anon_sym_CARET] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3015), + [anon_sym_LT_DASH] = ACTIONS(3015), + [anon_sym_LT_LT] = ACTIONS(3015), + [anon_sym_GT_GT] = ACTIONS(3015), + [anon_sym_GT_GT_GT] = ACTIONS(3015), + [anon_sym_AMP_CARET] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_or] = ACTIONS(3015), + [sym_none] = ACTIONS(3015), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_nil] = ACTIONS(3015), + [anon_sym_QMARK_DOT] = ACTIONS(3015), + [anon_sym_POUND_LBRACK] = ACTIONS(3015), + [anon_sym_if] = ACTIONS(3015), + [anon_sym_DOLLARif] = ACTIONS(3015), + [anon_sym_is] = ACTIONS(3015), + [anon_sym_BANGis] = ACTIONS(3015), + [anon_sym_in] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(3015), + [anon_sym_match] = ACTIONS(3015), + [anon_sym_select] = ACTIONS(3015), + [anon_sym_STAR_EQ] = ACTIONS(3015), + [anon_sym_SLASH_EQ] = ACTIONS(3015), + [anon_sym_PERCENT_EQ] = ACTIONS(3015), + [anon_sym_LT_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_GT_EQ] = ACTIONS(3015), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3015), + [anon_sym_AMP_EQ] = ACTIONS(3015), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3015), + [anon_sym_PLUS_EQ] = ACTIONS(3015), + [anon_sym_DASH_EQ] = ACTIONS(3015), + [anon_sym_PIPE_EQ] = ACTIONS(3015), + [anon_sym_CARET_EQ] = ACTIONS(3015), + [anon_sym_COLON_EQ] = ACTIONS(3015), + [anon_sym_lock] = ACTIONS(3015), + [anon_sym_rlock] = ACTIONS(3015), + [anon_sym_unsafe] = ACTIONS(3015), + [anon_sym_sql] = ACTIONS(3015), + [sym_int_literal] = ACTIONS(3015), + [sym_float_literal] = ACTIONS(3015), + [sym_rune_literal] = ACTIONS(3015), + [anon_sym_SQUOTE] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3015), + [anon_sym_c_SQUOTE] = ACTIONS(3015), + [anon_sym_c_DQUOTE] = ACTIONS(3015), + [anon_sym_r_SQUOTE] = ACTIONS(3015), + [anon_sym_r_DQUOTE] = ACTIONS(3015), + [sym_pseudo_compile_time_identifier] = ACTIONS(3015), + [anon_sym_shared] = ACTIONS(3015), + [anon_sym_map_LBRACK] = ACTIONS(3015), + [anon_sym_chan] = ACTIONS(3015), + [anon_sym_thread] = ACTIONS(3015), + [anon_sym_atomic] = ACTIONS(3015), + [anon_sym_assert] = ACTIONS(3015), + [anon_sym_defer] = ACTIONS(3015), + [anon_sym_goto] = ACTIONS(3015), + [anon_sym_break] = ACTIONS(3015), + [anon_sym_continue] = ACTIONS(3015), + [anon_sym_return] = ACTIONS(3015), + [anon_sym_DOLLARfor] = ACTIONS(3015), + [anon_sym_for] = ACTIONS(3015), + [anon_sym_POUND] = ACTIONS(3015), + [anon_sym_asm] = ACTIONS(3015), + [anon_sym_AT_LBRACK] = ACTIONS(3015), }, [482] = { [sym_line_comment] = STATE(482), [sym_block_comment] = STATE(482), - [sym__expression] = STATE(2604), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3569), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4622), - [sym_identifier] = ACTIONS(2127), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4390), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [483] = { [sym_line_comment] = STATE(483), [sym_block_comment] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(2888), - [sym_identifier] = ACTIONS(2890), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_CR] = ACTIONS(2890), - [anon_sym_CR_LF] = ACTIONS(2890), + [ts_builtin_sym_end] = ACTIONS(3019), + [sym_identifier] = ACTIONS(3021), + [anon_sym_LF] = ACTIONS(3021), + [anon_sym_CR] = ACTIONS(3021), + [anon_sym_CR_LF] = ACTIONS(3021), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2890), - [anon_sym_as] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(2890), - [anon_sym_const] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2890), - [anon_sym___global] = ACTIONS(2890), - [anon_sym_type] = ACTIONS(2890), - [anon_sym_PIPE] = ACTIONS(2890), - [anon_sym_fn] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_SLASH] = ACTIONS(2890), - [anon_sym_PERCENT] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_GT] = ACTIONS(2890), - [anon_sym_EQ_EQ] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2890), - [anon_sym_LT_EQ] = ACTIONS(2890), - [anon_sym_GT_EQ] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_struct] = ACTIONS(2890), - [anon_sym_union] = ACTIONS(2890), - [anon_sym_pub] = ACTIONS(2890), - [anon_sym_mut] = ACTIONS(2890), - [anon_sym_enum] = ACTIONS(2890), - [anon_sym_interface] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2890), - [anon_sym_DASH_DASH] = ACTIONS(2890), - [anon_sym_QMARK] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2890), - [anon_sym_go] = ACTIONS(2890), - [anon_sym_spawn] = ACTIONS(2890), - [anon_sym_json_DOTdecode] = ACTIONS(2890), - [anon_sym_LBRACK2] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2890), - [anon_sym_CARET] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_LT_DASH] = ACTIONS(2890), - [anon_sym_LT_LT] = ACTIONS(2890), - [anon_sym_GT_GT] = ACTIONS(2890), - [anon_sym_GT_GT_GT] = ACTIONS(2890), - [anon_sym_AMP_CARET] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_or] = ACTIONS(2890), - [sym_none] = ACTIONS(2890), - [sym_true] = ACTIONS(2890), - [sym_false] = ACTIONS(2890), - [sym_nil] = ACTIONS(2890), - [anon_sym_QMARK_DOT] = ACTIONS(2890), - [anon_sym_POUND_LBRACK] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_DOLLARif] = ACTIONS(2890), - [anon_sym_is] = ACTIONS(2890), - [anon_sym_BANGis] = ACTIONS(2890), - [anon_sym_in] = ACTIONS(2890), - [anon_sym_BANGin] = ACTIONS(2890), - [anon_sym_match] = ACTIONS(2890), - [anon_sym_select] = ACTIONS(2890), - [anon_sym_STAR_EQ] = ACTIONS(2890), - [anon_sym_SLASH_EQ] = ACTIONS(2890), - [anon_sym_PERCENT_EQ] = ACTIONS(2890), - [anon_sym_LT_LT_EQ] = ACTIONS(2890), - [anon_sym_GT_GT_EQ] = ACTIONS(2890), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2890), - [anon_sym_AMP_EQ] = ACTIONS(2890), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2890), - [anon_sym_PLUS_EQ] = ACTIONS(2890), - [anon_sym_DASH_EQ] = ACTIONS(2890), - [anon_sym_PIPE_EQ] = ACTIONS(2890), - [anon_sym_CARET_EQ] = ACTIONS(2890), - [anon_sym_COLON_EQ] = ACTIONS(2890), - [anon_sym_lock] = ACTIONS(2890), - [anon_sym_rlock] = ACTIONS(2890), - [anon_sym_unsafe] = ACTIONS(2890), - [anon_sym_sql] = ACTIONS(2890), - [sym_int_literal] = ACTIONS(2890), - [sym_float_literal] = ACTIONS(2890), - [sym_rune_literal] = ACTIONS(2890), - [sym_pseudo_compile_time_identifier] = ACTIONS(2890), - [anon_sym_shared] = ACTIONS(2890), - [anon_sym_map_LBRACK] = ACTIONS(2890), - [anon_sym_chan] = ACTIONS(2890), - [anon_sym_thread] = ACTIONS(2890), - [anon_sym_atomic] = ACTIONS(2890), - [anon_sym_assert] = ACTIONS(2890), - [anon_sym_defer] = ACTIONS(2890), - [anon_sym_goto] = ACTIONS(2890), - [anon_sym_break] = ACTIONS(2890), - [anon_sym_continue] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_DOLLARfor] = ACTIONS(2890), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_POUND] = ACTIONS(2890), - [anon_sym_asm] = ACTIONS(2890), - [anon_sym_AT_LBRACK] = ACTIONS(2890), - [sym___double_quote] = ACTIONS(2890), - [sym___single_quote] = ACTIONS(2890), - [sym___c_double_quote] = ACTIONS(2890), - [sym___c_single_quote] = ACTIONS(2890), - [sym___r_double_quote] = ACTIONS(2890), - [sym___r_single_quote] = ACTIONS(2890), + [anon_sym_DOT] = ACTIONS(3021), + [anon_sym_as] = ACTIONS(3021), + [anon_sym_LBRACE] = ACTIONS(3021), + [anon_sym_COMMA] = ACTIONS(3021), + [anon_sym_const] = ACTIONS(3021), + [anon_sym_LPAREN] = ACTIONS(3021), + [anon_sym_EQ] = ACTIONS(3021), + [anon_sym___global] = ACTIONS(3021), + [anon_sym_type] = ACTIONS(3021), + [anon_sym_PIPE] = ACTIONS(3021), + [anon_sym_fn] = ACTIONS(3021), + [anon_sym_PLUS] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3021), + [anon_sym_STAR] = ACTIONS(3021), + [anon_sym_SLASH] = ACTIONS(3021), + [anon_sym_PERCENT] = ACTIONS(3021), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3021), + [anon_sym_BANG_EQ] = ACTIONS(3021), + [anon_sym_LT_EQ] = ACTIONS(3021), + [anon_sym_GT_EQ] = ACTIONS(3021), + [anon_sym_LBRACK] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(3021), + [anon_sym_union] = ACTIONS(3021), + [anon_sym_pub] = ACTIONS(3021), + [anon_sym_mut] = ACTIONS(3021), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_interface] = ACTIONS(3021), + [anon_sym_PLUS_PLUS] = ACTIONS(3021), + [anon_sym_DASH_DASH] = ACTIONS(3021), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_go] = ACTIONS(3021), + [anon_sym_spawn] = ACTIONS(3021), + [anon_sym_json_DOTdecode] = ACTIONS(3021), + [anon_sym_LBRACK2] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_AMP] = ACTIONS(3021), + [anon_sym_LT_DASH] = ACTIONS(3021), + [anon_sym_LT_LT] = ACTIONS(3021), + [anon_sym_GT_GT] = ACTIONS(3021), + [anon_sym_GT_GT_GT] = ACTIONS(3021), + [anon_sym_AMP_CARET] = ACTIONS(3021), + [anon_sym_AMP_AMP] = ACTIONS(3021), + [anon_sym_PIPE_PIPE] = ACTIONS(3021), + [anon_sym_or] = ACTIONS(3021), + [sym_none] = ACTIONS(3021), + [sym_true] = ACTIONS(3021), + [sym_false] = ACTIONS(3021), + [sym_nil] = ACTIONS(3021), + [anon_sym_QMARK_DOT] = ACTIONS(3021), + [anon_sym_POUND_LBRACK] = ACTIONS(3021), + [anon_sym_if] = ACTIONS(3021), + [anon_sym_DOLLARif] = ACTIONS(3021), + [anon_sym_is] = ACTIONS(3021), + [anon_sym_BANGis] = ACTIONS(3021), + [anon_sym_in] = ACTIONS(3021), + [anon_sym_BANGin] = ACTIONS(3021), + [anon_sym_match] = ACTIONS(3021), + [anon_sym_select] = ACTIONS(3021), + [anon_sym_STAR_EQ] = ACTIONS(3021), + [anon_sym_SLASH_EQ] = ACTIONS(3021), + [anon_sym_PERCENT_EQ] = ACTIONS(3021), + [anon_sym_LT_LT_EQ] = ACTIONS(3021), + [anon_sym_GT_GT_EQ] = ACTIONS(3021), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3021), + [anon_sym_AMP_EQ] = ACTIONS(3021), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3021), + [anon_sym_PLUS_EQ] = ACTIONS(3021), + [anon_sym_DASH_EQ] = ACTIONS(3021), + [anon_sym_PIPE_EQ] = ACTIONS(3021), + [anon_sym_CARET_EQ] = ACTIONS(3021), + [anon_sym_COLON_EQ] = ACTIONS(3021), + [anon_sym_lock] = ACTIONS(3021), + [anon_sym_rlock] = ACTIONS(3021), + [anon_sym_unsafe] = ACTIONS(3021), + [anon_sym_sql] = ACTIONS(3021), + [sym_int_literal] = ACTIONS(3021), + [sym_float_literal] = ACTIONS(3021), + [sym_rune_literal] = ACTIONS(3021), + [anon_sym_SQUOTE] = ACTIONS(3021), + [anon_sym_DQUOTE] = ACTIONS(3021), + [anon_sym_c_SQUOTE] = ACTIONS(3021), + [anon_sym_c_DQUOTE] = ACTIONS(3021), + [anon_sym_r_SQUOTE] = ACTIONS(3021), + [anon_sym_r_DQUOTE] = ACTIONS(3021), + [sym_pseudo_compile_time_identifier] = ACTIONS(3021), + [anon_sym_shared] = ACTIONS(3021), + [anon_sym_map_LBRACK] = ACTIONS(3021), + [anon_sym_chan] = ACTIONS(3021), + [anon_sym_thread] = ACTIONS(3021), + [anon_sym_atomic] = ACTIONS(3021), + [anon_sym_assert] = ACTIONS(3021), + [anon_sym_defer] = ACTIONS(3021), + [anon_sym_goto] = ACTIONS(3021), + [anon_sym_break] = ACTIONS(3021), + [anon_sym_continue] = ACTIONS(3021), + [anon_sym_return] = ACTIONS(3021), + [anon_sym_DOLLARfor] = ACTIONS(3021), + [anon_sym_for] = ACTIONS(3021), + [anon_sym_POUND] = ACTIONS(3021), + [anon_sym_asm] = ACTIONS(3021), + [anon_sym_AT_LBRACK] = ACTIONS(3021), }, [484] = { [sym_line_comment] = STATE(484), [sym_block_comment] = STATE(484), - [ts_builtin_sym_end] = ACTIONS(2892), - [sym_identifier] = ACTIONS(2894), - [anon_sym_LF] = ACTIONS(2894), - [anon_sym_CR] = ACTIONS(2894), - [anon_sym_CR_LF] = ACTIONS(2894), + [ts_builtin_sym_end] = ACTIONS(3023), + [sym_identifier] = ACTIONS(3025), + [anon_sym_LF] = ACTIONS(3025), + [anon_sym_CR] = ACTIONS(3025), + [anon_sym_CR_LF] = ACTIONS(3025), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_as] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_COMMA] = ACTIONS(2894), - [anon_sym_const] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym_EQ] = ACTIONS(2894), - [anon_sym___global] = ACTIONS(2894), - [anon_sym_type] = ACTIONS(2894), - [anon_sym_PIPE] = ACTIONS(2894), - [anon_sym_fn] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_SLASH] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_GT] = ACTIONS(2894), - [anon_sym_EQ_EQ] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2894), - [anon_sym_LT_EQ] = ACTIONS(2894), - [anon_sym_GT_EQ] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_struct] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2894), - [anon_sym_pub] = ACTIONS(2894), - [anon_sym_mut] = ACTIONS(2894), - [anon_sym_enum] = ACTIONS(2894), - [anon_sym_interface] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2894), - [anon_sym_DASH_DASH] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_go] = ACTIONS(2894), - [anon_sym_spawn] = ACTIONS(2894), - [anon_sym_json_DOTdecode] = ACTIONS(2894), - [anon_sym_LBRACK2] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2894), - [anon_sym_CARET] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2894), - [anon_sym_LT_LT] = ACTIONS(2894), - [anon_sym_GT_GT] = ACTIONS(2894), - [anon_sym_GT_GT_GT] = ACTIONS(2894), - [anon_sym_AMP_CARET] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_PIPE_PIPE] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2894), - [sym_none] = ACTIONS(2894), - [sym_true] = ACTIONS(2894), - [sym_false] = ACTIONS(2894), - [sym_nil] = ACTIONS(2894), - [anon_sym_QMARK_DOT] = ACTIONS(2894), - [anon_sym_POUND_LBRACK] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_DOLLARif] = ACTIONS(2894), - [anon_sym_is] = ACTIONS(2894), - [anon_sym_BANGis] = ACTIONS(2894), - [anon_sym_in] = ACTIONS(2894), - [anon_sym_BANGin] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_select] = ACTIONS(2894), - [anon_sym_STAR_EQ] = ACTIONS(2894), - [anon_sym_SLASH_EQ] = ACTIONS(2894), - [anon_sym_PERCENT_EQ] = ACTIONS(2894), - [anon_sym_LT_LT_EQ] = ACTIONS(2894), - [anon_sym_GT_GT_EQ] = ACTIONS(2894), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2894), - [anon_sym_AMP_EQ] = ACTIONS(2894), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2894), - [anon_sym_PLUS_EQ] = ACTIONS(2894), - [anon_sym_DASH_EQ] = ACTIONS(2894), - [anon_sym_PIPE_EQ] = ACTIONS(2894), - [anon_sym_CARET_EQ] = ACTIONS(2894), - [anon_sym_COLON_EQ] = ACTIONS(2894), - [anon_sym_lock] = ACTIONS(2894), - [anon_sym_rlock] = ACTIONS(2894), - [anon_sym_unsafe] = ACTIONS(2894), - [anon_sym_sql] = ACTIONS(2894), - [sym_int_literal] = ACTIONS(2894), - [sym_float_literal] = ACTIONS(2894), - [sym_rune_literal] = ACTIONS(2894), - [sym_pseudo_compile_time_identifier] = ACTIONS(2894), - [anon_sym_shared] = ACTIONS(2894), - [anon_sym_map_LBRACK] = ACTIONS(2894), - [anon_sym_chan] = ACTIONS(2894), - [anon_sym_thread] = ACTIONS(2894), - [anon_sym_atomic] = ACTIONS(2894), - [anon_sym_assert] = ACTIONS(2894), - [anon_sym_defer] = ACTIONS(2894), - [anon_sym_goto] = ACTIONS(2894), - [anon_sym_break] = ACTIONS(2894), - [anon_sym_continue] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_DOLLARfor] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_POUND] = ACTIONS(2894), - [anon_sym_asm] = ACTIONS(2894), - [anon_sym_AT_LBRACK] = ACTIONS(2894), - [sym___double_quote] = ACTIONS(2894), - [sym___single_quote] = ACTIONS(2894), - [sym___c_double_quote] = ACTIONS(2894), - [sym___c_single_quote] = ACTIONS(2894), - [sym___r_double_quote] = ACTIONS(2894), - [sym___r_single_quote] = ACTIONS(2894), + [anon_sym_DOT] = ACTIONS(3025), + [anon_sym_as] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3025), + [anon_sym_COMMA] = ACTIONS(3025), + [anon_sym_const] = ACTIONS(3025), + [anon_sym_LPAREN] = ACTIONS(3025), + [anon_sym_EQ] = ACTIONS(3025), + [anon_sym___global] = ACTIONS(3025), + [anon_sym_type] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3025), + [anon_sym_fn] = ACTIONS(3025), + [anon_sym_PLUS] = ACTIONS(3025), + [anon_sym_DASH] = ACTIONS(3025), + [anon_sym_STAR] = ACTIONS(3025), + [anon_sym_SLASH] = ACTIONS(3025), + [anon_sym_PERCENT] = ACTIONS(3025), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_EQ_EQ] = ACTIONS(3025), + [anon_sym_BANG_EQ] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3025), + [anon_sym_GT_EQ] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3025), + [anon_sym_pub] = ACTIONS(3025), + [anon_sym_mut] = ACTIONS(3025), + [anon_sym_enum] = ACTIONS(3025), + [anon_sym_interface] = ACTIONS(3025), + [anon_sym_PLUS_PLUS] = ACTIONS(3025), + [anon_sym_DASH_DASH] = ACTIONS(3025), + [anon_sym_QMARK] = ACTIONS(3025), + [anon_sym_BANG] = ACTIONS(3025), + [anon_sym_go] = ACTIONS(3025), + [anon_sym_spawn] = ACTIONS(3025), + [anon_sym_json_DOTdecode] = ACTIONS(3025), + [anon_sym_LBRACK2] = ACTIONS(3025), + [anon_sym_TILDE] = ACTIONS(3025), + [anon_sym_CARET] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_LT_DASH] = ACTIONS(3025), + [anon_sym_LT_LT] = ACTIONS(3025), + [anon_sym_GT_GT] = ACTIONS(3025), + [anon_sym_GT_GT_GT] = ACTIONS(3025), + [anon_sym_AMP_CARET] = ACTIONS(3025), + [anon_sym_AMP_AMP] = ACTIONS(3025), + [anon_sym_PIPE_PIPE] = ACTIONS(3025), + [anon_sym_or] = ACTIONS(3025), + [sym_none] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [sym_nil] = ACTIONS(3025), + [anon_sym_QMARK_DOT] = ACTIONS(3025), + [anon_sym_POUND_LBRACK] = ACTIONS(3025), + [anon_sym_if] = ACTIONS(3025), + [anon_sym_DOLLARif] = ACTIONS(3025), + [anon_sym_is] = ACTIONS(3025), + [anon_sym_BANGis] = ACTIONS(3025), + [anon_sym_in] = ACTIONS(3025), + [anon_sym_BANGin] = ACTIONS(3025), + [anon_sym_match] = ACTIONS(3025), + [anon_sym_select] = ACTIONS(3025), + [anon_sym_STAR_EQ] = ACTIONS(3025), + [anon_sym_SLASH_EQ] = ACTIONS(3025), + [anon_sym_PERCENT_EQ] = ACTIONS(3025), + [anon_sym_LT_LT_EQ] = ACTIONS(3025), + [anon_sym_GT_GT_EQ] = ACTIONS(3025), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3025), + [anon_sym_AMP_EQ] = ACTIONS(3025), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3025), + [anon_sym_PLUS_EQ] = ACTIONS(3025), + [anon_sym_DASH_EQ] = ACTIONS(3025), + [anon_sym_PIPE_EQ] = ACTIONS(3025), + [anon_sym_CARET_EQ] = ACTIONS(3025), + [anon_sym_COLON_EQ] = ACTIONS(3025), + [anon_sym_lock] = ACTIONS(3025), + [anon_sym_rlock] = ACTIONS(3025), + [anon_sym_unsafe] = ACTIONS(3025), + [anon_sym_sql] = ACTIONS(3025), + [sym_int_literal] = ACTIONS(3025), + [sym_float_literal] = ACTIONS(3025), + [sym_rune_literal] = ACTIONS(3025), + [anon_sym_SQUOTE] = ACTIONS(3025), + [anon_sym_DQUOTE] = ACTIONS(3025), + [anon_sym_c_SQUOTE] = ACTIONS(3025), + [anon_sym_c_DQUOTE] = ACTIONS(3025), + [anon_sym_r_SQUOTE] = ACTIONS(3025), + [anon_sym_r_DQUOTE] = ACTIONS(3025), + [sym_pseudo_compile_time_identifier] = ACTIONS(3025), + [anon_sym_shared] = ACTIONS(3025), + [anon_sym_map_LBRACK] = ACTIONS(3025), + [anon_sym_chan] = ACTIONS(3025), + [anon_sym_thread] = ACTIONS(3025), + [anon_sym_atomic] = ACTIONS(3025), + [anon_sym_assert] = ACTIONS(3025), + [anon_sym_defer] = ACTIONS(3025), + [anon_sym_goto] = ACTIONS(3025), + [anon_sym_break] = ACTIONS(3025), + [anon_sym_continue] = ACTIONS(3025), + [anon_sym_return] = ACTIONS(3025), + [anon_sym_DOLLARfor] = ACTIONS(3025), + [anon_sym_for] = ACTIONS(3025), + [anon_sym_POUND] = ACTIONS(3025), + [anon_sym_asm] = ACTIONS(3025), + [anon_sym_AT_LBRACK] = ACTIONS(3025), }, [485] = { [sym_line_comment] = STATE(485), [sym_block_comment] = STATE(485), - [sym__expression] = STATE(2604), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_range] = STATE(4622), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(3027), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LF] = ACTIONS(3029), + [anon_sym_CR] = ACTIONS(3029), + [anon_sym_CR_LF] = ACTIONS(3029), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3029), + [anon_sym_as] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_const] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym_EQ] = ACTIONS(3029), + [anon_sym___global] = ACTIONS(3029), + [anon_sym_type] = ACTIONS(3029), + [anon_sym_PIPE] = ACTIONS(3029), + [anon_sym_fn] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_SLASH] = ACTIONS(3029), + [anon_sym_PERCENT] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_GT] = ACTIONS(3029), + [anon_sym_EQ_EQ] = ACTIONS(3029), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_LT_EQ] = ACTIONS(3029), + [anon_sym_GT_EQ] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3029), + [anon_sym_union] = ACTIONS(3029), + [anon_sym_pub] = ACTIONS(3029), + [anon_sym_mut] = ACTIONS(3029), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_interface] = ACTIONS(3029), + [anon_sym_PLUS_PLUS] = ACTIONS(3029), + [anon_sym_DASH_DASH] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_go] = ACTIONS(3029), + [anon_sym_spawn] = ACTIONS(3029), + [anon_sym_json_DOTdecode] = ACTIONS(3029), + [anon_sym_LBRACK2] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_LT_DASH] = ACTIONS(3029), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_GT_GT_GT] = ACTIONS(3029), + [anon_sym_AMP_CARET] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_PIPE_PIPE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3029), + [sym_none] = ACTIONS(3029), + [sym_true] = ACTIONS(3029), + [sym_false] = ACTIONS(3029), + [sym_nil] = ACTIONS(3029), + [anon_sym_QMARK_DOT] = ACTIONS(3029), + [anon_sym_POUND_LBRACK] = ACTIONS(3029), + [anon_sym_if] = ACTIONS(3029), + [anon_sym_DOLLARif] = ACTIONS(3029), + [anon_sym_is] = ACTIONS(3029), + [anon_sym_BANGis] = ACTIONS(3029), + [anon_sym_in] = ACTIONS(3029), + [anon_sym_BANGin] = ACTIONS(3029), + [anon_sym_match] = ACTIONS(3029), + [anon_sym_select] = ACTIONS(3029), + [anon_sym_STAR_EQ] = ACTIONS(3029), + [anon_sym_SLASH_EQ] = ACTIONS(3029), + [anon_sym_PERCENT_EQ] = ACTIONS(3029), + [anon_sym_LT_LT_EQ] = ACTIONS(3029), + [anon_sym_GT_GT_EQ] = ACTIONS(3029), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3029), + [anon_sym_AMP_EQ] = ACTIONS(3029), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3029), + [anon_sym_PLUS_EQ] = ACTIONS(3029), + [anon_sym_DASH_EQ] = ACTIONS(3029), + [anon_sym_PIPE_EQ] = ACTIONS(3029), + [anon_sym_CARET_EQ] = ACTIONS(3029), + [anon_sym_COLON_EQ] = ACTIONS(3029), + [anon_sym_lock] = ACTIONS(3029), + [anon_sym_rlock] = ACTIONS(3029), + [anon_sym_unsafe] = ACTIONS(3029), + [anon_sym_sql] = ACTIONS(3029), + [sym_int_literal] = ACTIONS(3029), + [sym_float_literal] = ACTIONS(3029), + [sym_rune_literal] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE] = ACTIONS(3029), + [anon_sym_c_SQUOTE] = ACTIONS(3029), + [anon_sym_c_DQUOTE] = ACTIONS(3029), + [anon_sym_r_SQUOTE] = ACTIONS(3029), + [anon_sym_r_DQUOTE] = ACTIONS(3029), + [sym_pseudo_compile_time_identifier] = ACTIONS(3029), + [anon_sym_shared] = ACTIONS(3029), + [anon_sym_map_LBRACK] = ACTIONS(3029), + [anon_sym_chan] = ACTIONS(3029), + [anon_sym_thread] = ACTIONS(3029), + [anon_sym_atomic] = ACTIONS(3029), + [anon_sym_assert] = ACTIONS(3029), + [anon_sym_defer] = ACTIONS(3029), + [anon_sym_goto] = ACTIONS(3029), + [anon_sym_break] = ACTIONS(3029), + [anon_sym_continue] = ACTIONS(3029), + [anon_sym_return] = ACTIONS(3029), + [anon_sym_DOLLARfor] = ACTIONS(3029), + [anon_sym_for] = ACTIONS(3029), + [anon_sym_POUND] = ACTIONS(3029), + [anon_sym_asm] = ACTIONS(3029), + [anon_sym_AT_LBRACK] = ACTIONS(3029), }, [486] = { [sym_line_comment] = STATE(486), [sym_block_comment] = STATE(486), - [ts_builtin_sym_end] = ACTIONS(2896), - [sym_identifier] = ACTIONS(2898), - [anon_sym_LF] = ACTIONS(2898), - [anon_sym_CR] = ACTIONS(2898), - [anon_sym_CR_LF] = ACTIONS(2898), + [ts_builtin_sym_end] = ACTIONS(2135), + [sym_identifier] = ACTIONS(2137), + [anon_sym_LF] = ACTIONS(2137), + [anon_sym_CR] = ACTIONS(2137), + [anon_sym_CR_LF] = ACTIONS(2137), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_as] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_COMMA] = ACTIONS(2898), - [anon_sym_const] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym___global] = ACTIONS(2898), - [anon_sym_type] = ACTIONS(2898), - [anon_sym_PIPE] = ACTIONS(2898), - [anon_sym_fn] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_STAR] = ACTIONS(2898), - [anon_sym_SLASH] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2898), - [anon_sym_GT] = ACTIONS(2898), - [anon_sym_EQ_EQ] = ACTIONS(2898), - [anon_sym_BANG_EQ] = ACTIONS(2898), - [anon_sym_LT_EQ] = ACTIONS(2898), - [anon_sym_GT_EQ] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_struct] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_pub] = ACTIONS(2898), - [anon_sym_mut] = ACTIONS(2898), - [anon_sym_enum] = ACTIONS(2898), - [anon_sym_interface] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2898), - [anon_sym_DASH_DASH] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_go] = ACTIONS(2898), - [anon_sym_spawn] = ACTIONS(2898), - [anon_sym_json_DOTdecode] = ACTIONS(2898), - [anon_sym_LBRACK2] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2898), - [anon_sym_CARET] = ACTIONS(2898), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_LT_DASH] = ACTIONS(2898), - [anon_sym_LT_LT] = ACTIONS(2898), - [anon_sym_GT_GT] = ACTIONS(2898), - [anon_sym_GT_GT_GT] = ACTIONS(2898), - [anon_sym_AMP_CARET] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2898), - [anon_sym_or] = ACTIONS(2898), - [sym_none] = ACTIONS(2898), - [sym_true] = ACTIONS(2898), - [sym_false] = ACTIONS(2898), - [sym_nil] = ACTIONS(2898), - [anon_sym_QMARK_DOT] = ACTIONS(2898), - [anon_sym_POUND_LBRACK] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_DOLLARif] = ACTIONS(2898), - [anon_sym_is] = ACTIONS(2898), - [anon_sym_BANGis] = ACTIONS(2898), - [anon_sym_in] = ACTIONS(2898), - [anon_sym_BANGin] = ACTIONS(2898), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_select] = ACTIONS(2898), - [anon_sym_STAR_EQ] = ACTIONS(2898), - [anon_sym_SLASH_EQ] = ACTIONS(2898), - [anon_sym_PERCENT_EQ] = ACTIONS(2898), - [anon_sym_LT_LT_EQ] = ACTIONS(2898), - [anon_sym_GT_GT_EQ] = ACTIONS(2898), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2898), - [anon_sym_AMP_EQ] = ACTIONS(2898), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2898), - [anon_sym_PLUS_EQ] = ACTIONS(2898), - [anon_sym_DASH_EQ] = ACTIONS(2898), - [anon_sym_PIPE_EQ] = ACTIONS(2898), - [anon_sym_CARET_EQ] = ACTIONS(2898), - [anon_sym_COLON_EQ] = ACTIONS(2898), - [anon_sym_lock] = ACTIONS(2898), - [anon_sym_rlock] = ACTIONS(2898), - [anon_sym_unsafe] = ACTIONS(2898), - [anon_sym_sql] = ACTIONS(2898), - [sym_int_literal] = ACTIONS(2898), - [sym_float_literal] = ACTIONS(2898), - [sym_rune_literal] = ACTIONS(2898), - [sym_pseudo_compile_time_identifier] = ACTIONS(2898), - [anon_sym_shared] = ACTIONS(2898), - [anon_sym_map_LBRACK] = ACTIONS(2898), - [anon_sym_chan] = ACTIONS(2898), - [anon_sym_thread] = ACTIONS(2898), - [anon_sym_atomic] = ACTIONS(2898), - [anon_sym_assert] = ACTIONS(2898), - [anon_sym_defer] = ACTIONS(2898), - [anon_sym_goto] = ACTIONS(2898), - [anon_sym_break] = ACTIONS(2898), - [anon_sym_continue] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_DOLLARfor] = ACTIONS(2898), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_POUND] = ACTIONS(2898), - [anon_sym_asm] = ACTIONS(2898), - [anon_sym_AT_LBRACK] = ACTIONS(2898), - [sym___double_quote] = ACTIONS(2898), - [sym___single_quote] = ACTIONS(2898), - [sym___c_double_quote] = ACTIONS(2898), - [sym___c_single_quote] = ACTIONS(2898), - [sym___r_double_quote] = ACTIONS(2898), - [sym___r_single_quote] = ACTIONS(2898), + [anon_sym_DOT] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_EQ] = ACTIONS(2139), + [anon_sym___global] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_struct] = ACTIONS(2137), + [anon_sym_union] = ACTIONS(2137), + [anon_sym_pub] = ACTIONS(2137), + [anon_sym_mut] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [anon_sym_interface] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_QMARK] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(2137), + [anon_sym_spawn] = ACTIONS(2137), + [anon_sym_json_DOTdecode] = ACTIONS(2137), + [anon_sym_LBRACK2] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_LT_DASH] = ACTIONS(2137), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_AMP_CARET] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_or] = ACTIONS(2139), + [sym_none] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_nil] = ACTIONS(2137), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_POUND_LBRACK] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_DOLLARif] = ACTIONS(2137), + [anon_sym_is] = ACTIONS(2139), + [anon_sym_BANGis] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_BANGin] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2137), + [anon_sym_select] = ACTIONS(2137), + [anon_sym_STAR_EQ] = ACTIONS(2139), + [anon_sym_SLASH_EQ] = ACTIONS(2139), + [anon_sym_PERCENT_EQ] = ACTIONS(2139), + [anon_sym_LT_LT_EQ] = ACTIONS(2139), + [anon_sym_GT_GT_EQ] = ACTIONS(2139), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2139), + [anon_sym_AMP_EQ] = ACTIONS(2139), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2139), + [anon_sym_PLUS_EQ] = ACTIONS(2139), + [anon_sym_DASH_EQ] = ACTIONS(2139), + [anon_sym_PIPE_EQ] = ACTIONS(2139), + [anon_sym_CARET_EQ] = ACTIONS(2139), + [anon_sym_COLON_EQ] = ACTIONS(2139), + [anon_sym_lock] = ACTIONS(2137), + [anon_sym_rlock] = ACTIONS(2137), + [anon_sym_unsafe] = ACTIONS(2137), + [anon_sym_sql] = ACTIONS(2137), + [sym_int_literal] = ACTIONS(2137), + [sym_float_literal] = ACTIONS(2137), + [sym_rune_literal] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(2137), + [anon_sym_c_SQUOTE] = ACTIONS(2137), + [anon_sym_c_DQUOTE] = ACTIONS(2137), + [anon_sym_r_SQUOTE] = ACTIONS(2137), + [anon_sym_r_DQUOTE] = ACTIONS(2137), + [sym_pseudo_compile_time_identifier] = ACTIONS(2137), + [anon_sym_shared] = ACTIONS(2137), + [anon_sym_map_LBRACK] = ACTIONS(2137), + [anon_sym_chan] = ACTIONS(2137), + [anon_sym_thread] = ACTIONS(2137), + [anon_sym_atomic] = ACTIONS(2137), + [anon_sym_assert] = ACTIONS(2137), + [anon_sym_defer] = ACTIONS(2137), + [anon_sym_goto] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_DOLLARfor] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_POUND] = ACTIONS(2137), + [anon_sym_asm] = ACTIONS(2137), + [anon_sym_AT_LBRACK] = ACTIONS(2137), }, [487] = { [sym_line_comment] = STATE(487), [sym_block_comment] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(2900), - [sym_identifier] = ACTIONS(2902), - [anon_sym_LF] = ACTIONS(2902), - [anon_sym_CR] = ACTIONS(2902), - [anon_sym_CR_LF] = ACTIONS(2902), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2902), - [anon_sym_as] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2902), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_const] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2902), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym___global] = ACTIONS(2902), - [anon_sym_type] = ACTIONS(2902), - [anon_sym_PIPE] = ACTIONS(2902), - [anon_sym_fn] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_SLASH] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2902), - [anon_sym_BANG_EQ] = ACTIONS(2902), - [anon_sym_LT_EQ] = ACTIONS(2902), - [anon_sym_GT_EQ] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_struct] = ACTIONS(2902), - [anon_sym_union] = ACTIONS(2902), - [anon_sym_pub] = ACTIONS(2902), - [anon_sym_mut] = ACTIONS(2902), - [anon_sym_enum] = ACTIONS(2902), - [anon_sym_interface] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(2902), - [anon_sym_QMARK] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_go] = ACTIONS(2902), - [anon_sym_spawn] = ACTIONS(2902), - [anon_sym_json_DOTdecode] = ACTIONS(2902), - [anon_sym_LBRACK2] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [anon_sym_CARET] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_LT_DASH] = ACTIONS(2902), - [anon_sym_LT_LT] = ACTIONS(2902), - [anon_sym_GT_GT] = ACTIONS(2902), - [anon_sym_GT_GT_GT] = ACTIONS(2902), - [anon_sym_AMP_CARET] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_PIPE_PIPE] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2902), - [sym_none] = ACTIONS(2902), - [sym_true] = ACTIONS(2902), - [sym_false] = ACTIONS(2902), - [sym_nil] = ACTIONS(2902), - [anon_sym_QMARK_DOT] = ACTIONS(2902), - [anon_sym_POUND_LBRACK] = ACTIONS(2902), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_DOLLARif] = ACTIONS(2902), - [anon_sym_is] = ACTIONS(2902), - [anon_sym_BANGis] = ACTIONS(2902), - [anon_sym_in] = ACTIONS(2902), - [anon_sym_BANGin] = ACTIONS(2902), - [anon_sym_match] = ACTIONS(2902), - [anon_sym_select] = ACTIONS(2902), - [anon_sym_STAR_EQ] = ACTIONS(2902), - [anon_sym_SLASH_EQ] = ACTIONS(2902), - [anon_sym_PERCENT_EQ] = ACTIONS(2902), - [anon_sym_LT_LT_EQ] = ACTIONS(2902), - [anon_sym_GT_GT_EQ] = ACTIONS(2902), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2902), - [anon_sym_AMP_EQ] = ACTIONS(2902), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2902), - [anon_sym_PLUS_EQ] = ACTIONS(2902), - [anon_sym_DASH_EQ] = ACTIONS(2902), - [anon_sym_PIPE_EQ] = ACTIONS(2902), - [anon_sym_CARET_EQ] = ACTIONS(2902), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_lock] = ACTIONS(2902), - [anon_sym_rlock] = ACTIONS(2902), - [anon_sym_unsafe] = ACTIONS(2902), - [anon_sym_sql] = ACTIONS(2902), - [sym_int_literal] = ACTIONS(2902), - [sym_float_literal] = ACTIONS(2902), - [sym_rune_literal] = ACTIONS(2902), - [sym_pseudo_compile_time_identifier] = ACTIONS(2902), - [anon_sym_shared] = ACTIONS(2902), - [anon_sym_map_LBRACK] = ACTIONS(2902), - [anon_sym_chan] = ACTIONS(2902), - [anon_sym_thread] = ACTIONS(2902), - [anon_sym_atomic] = ACTIONS(2902), - [anon_sym_assert] = ACTIONS(2902), - [anon_sym_defer] = ACTIONS(2902), - [anon_sym_goto] = ACTIONS(2902), - [anon_sym_break] = ACTIONS(2902), - [anon_sym_continue] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2902), - [anon_sym_DOLLARfor] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2902), - [anon_sym_POUND] = ACTIONS(2902), - [anon_sym_asm] = ACTIONS(2902), - [anon_sym_AT_LBRACK] = ACTIONS(2902), - [sym___double_quote] = ACTIONS(2902), - [sym___single_quote] = ACTIONS(2902), - [sym___c_double_quote] = ACTIONS(2902), - [sym___c_single_quote] = ACTIONS(2902), - [sym___r_double_quote] = ACTIONS(2902), - [sym___r_single_quote] = ACTIONS(2902), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4372), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [488] = { [sym_line_comment] = STATE(488), [sym_block_comment] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(2904), - [sym_identifier] = ACTIONS(2906), - [anon_sym_LF] = ACTIONS(2906), - [anon_sym_CR] = ACTIONS(2906), - [anon_sym_CR_LF] = ACTIONS(2906), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_as] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2906), - [anon_sym_const] = ACTIONS(2906), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_EQ] = ACTIONS(2906), - [anon_sym___global] = ACTIONS(2906), - [anon_sym_type] = ACTIONS(2906), - [anon_sym_PIPE] = ACTIONS(2906), - [anon_sym_fn] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2906), - [anon_sym_SLASH] = ACTIONS(2906), - [anon_sym_PERCENT] = ACTIONS(2906), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_GT] = ACTIONS(2906), - [anon_sym_EQ_EQ] = ACTIONS(2906), - [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_LT_EQ] = ACTIONS(2906), - [anon_sym_GT_EQ] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_struct] = ACTIONS(2906), - [anon_sym_union] = ACTIONS(2906), - [anon_sym_pub] = ACTIONS(2906), - [anon_sym_mut] = ACTIONS(2906), - [anon_sym_enum] = ACTIONS(2906), - [anon_sym_interface] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2906), - [anon_sym_DASH_DASH] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2906), - [anon_sym_go] = ACTIONS(2906), - [anon_sym_spawn] = ACTIONS(2906), - [anon_sym_json_DOTdecode] = ACTIONS(2906), - [anon_sym_LBRACK2] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2906), - [anon_sym_CARET] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2906), - [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_AMP_CARET] = ACTIONS(2906), - [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_PIPE_PIPE] = ACTIONS(2906), - [anon_sym_or] = ACTIONS(2906), - [sym_none] = ACTIONS(2906), - [sym_true] = ACTIONS(2906), - [sym_false] = ACTIONS(2906), - [sym_nil] = ACTIONS(2906), - [anon_sym_QMARK_DOT] = ACTIONS(2906), - [anon_sym_POUND_LBRACK] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_DOLLARif] = ACTIONS(2906), - [anon_sym_is] = ACTIONS(2906), - [anon_sym_BANGis] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2906), - [anon_sym_BANGin] = ACTIONS(2906), - [anon_sym_match] = ACTIONS(2906), - [anon_sym_select] = ACTIONS(2906), - [anon_sym_STAR_EQ] = ACTIONS(2906), - [anon_sym_SLASH_EQ] = ACTIONS(2906), - [anon_sym_PERCENT_EQ] = ACTIONS(2906), - [anon_sym_LT_LT_EQ] = ACTIONS(2906), - [anon_sym_GT_GT_EQ] = ACTIONS(2906), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2906), - [anon_sym_AMP_EQ] = ACTIONS(2906), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2906), - [anon_sym_PLUS_EQ] = ACTIONS(2906), - [anon_sym_DASH_EQ] = ACTIONS(2906), - [anon_sym_PIPE_EQ] = ACTIONS(2906), - [anon_sym_CARET_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2906), - [anon_sym_lock] = ACTIONS(2906), - [anon_sym_rlock] = ACTIONS(2906), - [anon_sym_unsafe] = ACTIONS(2906), - [anon_sym_sql] = ACTIONS(2906), - [sym_int_literal] = ACTIONS(2906), - [sym_float_literal] = ACTIONS(2906), - [sym_rune_literal] = ACTIONS(2906), - [sym_pseudo_compile_time_identifier] = ACTIONS(2906), - [anon_sym_shared] = ACTIONS(2906), - [anon_sym_map_LBRACK] = ACTIONS(2906), - [anon_sym_chan] = ACTIONS(2906), - [anon_sym_thread] = ACTIONS(2906), - [anon_sym_atomic] = ACTIONS(2906), - [anon_sym_assert] = ACTIONS(2906), - [anon_sym_defer] = ACTIONS(2906), - [anon_sym_goto] = ACTIONS(2906), - [anon_sym_break] = ACTIONS(2906), - [anon_sym_continue] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_DOLLARfor] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_POUND] = ACTIONS(2906), - [anon_sym_asm] = ACTIONS(2906), - [anon_sym_AT_LBRACK] = ACTIONS(2906), - [sym___double_quote] = ACTIONS(2906), - [sym___single_quote] = ACTIONS(2906), - [sym___c_double_quote] = ACTIONS(2906), - [sym___c_single_quote] = ACTIONS(2906), - [sym___r_double_quote] = ACTIONS(2906), - [sym___r_single_quote] = ACTIONS(2906), + [sym__expression] = STATE(1262), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym_string_interpolation_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(3033), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2493), + [anon_sym_spawn] = ACTIONS(2495), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_LT_DASH] = ACTIONS(2499), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2503), + [anon_sym_rlock] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [489] = { [sym_line_comment] = STATE(489), [sym_block_comment] = STATE(489), - [ts_builtin_sym_end] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LF] = ACTIONS(2910), - [anon_sym_CR] = ACTIONS(2910), - [anon_sym_CR_LF] = ACTIONS(2910), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2910), - [anon_sym_as] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_const] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2910), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym___global] = ACTIONS(2910), - [anon_sym_type] = ACTIONS(2910), - [anon_sym_PIPE] = ACTIONS(2910), - [anon_sym_fn] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_PERCENT] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_GT] = ACTIONS(2910), - [anon_sym_EQ_EQ] = ACTIONS(2910), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_LT_EQ] = ACTIONS(2910), - [anon_sym_GT_EQ] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_struct] = ACTIONS(2910), - [anon_sym_union] = ACTIONS(2910), - [anon_sym_pub] = ACTIONS(2910), - [anon_sym_mut] = ACTIONS(2910), - [anon_sym_enum] = ACTIONS(2910), - [anon_sym_interface] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_QMARK] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_go] = ACTIONS(2910), - [anon_sym_spawn] = ACTIONS(2910), - [anon_sym_json_DOTdecode] = ACTIONS(2910), - [anon_sym_LBRACK2] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_CARET] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_LT_DASH] = ACTIONS(2910), - [anon_sym_LT_LT] = ACTIONS(2910), - [anon_sym_GT_GT] = ACTIONS(2910), - [anon_sym_GT_GT_GT] = ACTIONS(2910), - [anon_sym_AMP_CARET] = ACTIONS(2910), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_PIPE_PIPE] = ACTIONS(2910), - [anon_sym_or] = ACTIONS(2910), - [sym_none] = ACTIONS(2910), - [sym_true] = ACTIONS(2910), - [sym_false] = ACTIONS(2910), - [sym_nil] = ACTIONS(2910), - [anon_sym_QMARK_DOT] = ACTIONS(2910), - [anon_sym_POUND_LBRACK] = ACTIONS(2910), - [anon_sym_if] = ACTIONS(2910), - [anon_sym_DOLLARif] = ACTIONS(2910), - [anon_sym_is] = ACTIONS(2910), - [anon_sym_BANGis] = ACTIONS(2910), - [anon_sym_in] = ACTIONS(2910), - [anon_sym_BANGin] = ACTIONS(2910), - [anon_sym_match] = ACTIONS(2910), - [anon_sym_select] = ACTIONS(2910), - [anon_sym_STAR_EQ] = ACTIONS(2910), - [anon_sym_SLASH_EQ] = ACTIONS(2910), - [anon_sym_PERCENT_EQ] = ACTIONS(2910), - [anon_sym_LT_LT_EQ] = ACTIONS(2910), - [anon_sym_GT_GT_EQ] = ACTIONS(2910), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2910), - [anon_sym_AMP_EQ] = ACTIONS(2910), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2910), - [anon_sym_PLUS_EQ] = ACTIONS(2910), - [anon_sym_DASH_EQ] = ACTIONS(2910), - [anon_sym_PIPE_EQ] = ACTIONS(2910), - [anon_sym_CARET_EQ] = ACTIONS(2910), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_lock] = ACTIONS(2910), - [anon_sym_rlock] = ACTIONS(2910), - [anon_sym_unsafe] = ACTIONS(2910), - [anon_sym_sql] = ACTIONS(2910), - [sym_int_literal] = ACTIONS(2910), - [sym_float_literal] = ACTIONS(2910), - [sym_rune_literal] = ACTIONS(2910), - [sym_pseudo_compile_time_identifier] = ACTIONS(2910), - [anon_sym_shared] = ACTIONS(2910), - [anon_sym_map_LBRACK] = ACTIONS(2910), - [anon_sym_chan] = ACTIONS(2910), - [anon_sym_thread] = ACTIONS(2910), - [anon_sym_atomic] = ACTIONS(2910), - [anon_sym_assert] = ACTIONS(2910), - [anon_sym_defer] = ACTIONS(2910), - [anon_sym_goto] = ACTIONS(2910), - [anon_sym_break] = ACTIONS(2910), - [anon_sym_continue] = ACTIONS(2910), - [anon_sym_return] = ACTIONS(2910), - [anon_sym_DOLLARfor] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2910), - [anon_sym_POUND] = ACTIONS(2910), - [anon_sym_asm] = ACTIONS(2910), - [anon_sym_AT_LBRACK] = ACTIONS(2910), - [sym___double_quote] = ACTIONS(2910), - [sym___single_quote] = ACTIONS(2910), - [sym___c_double_quote] = ACTIONS(2910), - [sym___c_single_quote] = ACTIONS(2910), - [sym___r_double_quote] = ACTIONS(2910), - [sym___r_single_quote] = ACTIONS(2910), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4432), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [490] = { [sym_line_comment] = STATE(490), [sym_block_comment] = STATE(490), - [ts_builtin_sym_end] = ACTIONS(2912), - [sym_identifier] = ACTIONS(2914), - [anon_sym_LF] = ACTIONS(2914), - [anon_sym_CR] = ACTIONS(2914), - [anon_sym_CR_LF] = ACTIONS(2914), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2914), - [anon_sym_as] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym___global] = ACTIONS(2914), - [anon_sym_type] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2914), - [anon_sym_fn] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_SLASH] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_GT] = ACTIONS(2914), - [anon_sym_EQ_EQ] = ACTIONS(2914), - [anon_sym_BANG_EQ] = ACTIONS(2914), - [anon_sym_LT_EQ] = ACTIONS(2914), - [anon_sym_GT_EQ] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_union] = ACTIONS(2914), - [anon_sym_pub] = ACTIONS(2914), - [anon_sym_mut] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_QMARK] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_go] = ACTIONS(2914), - [anon_sym_spawn] = ACTIONS(2914), - [anon_sym_json_DOTdecode] = ACTIONS(2914), - [anon_sym_LBRACK2] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [anon_sym_CARET] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_LT_DASH] = ACTIONS(2914), - [anon_sym_LT_LT] = ACTIONS(2914), - [anon_sym_GT_GT] = ACTIONS(2914), - [anon_sym_GT_GT_GT] = ACTIONS(2914), - [anon_sym_AMP_CARET] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_PIPE_PIPE] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2914), - [sym_none] = ACTIONS(2914), - [sym_true] = ACTIONS(2914), - [sym_false] = ACTIONS(2914), - [sym_nil] = ACTIONS(2914), - [anon_sym_QMARK_DOT] = ACTIONS(2914), - [anon_sym_POUND_LBRACK] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_DOLLARif] = ACTIONS(2914), - [anon_sym_is] = ACTIONS(2914), - [anon_sym_BANGis] = ACTIONS(2914), - [anon_sym_in] = ACTIONS(2914), - [anon_sym_BANGin] = ACTIONS(2914), - [anon_sym_match] = ACTIONS(2914), - [anon_sym_select] = ACTIONS(2914), - [anon_sym_STAR_EQ] = ACTIONS(2914), - [anon_sym_SLASH_EQ] = ACTIONS(2914), - [anon_sym_PERCENT_EQ] = ACTIONS(2914), - [anon_sym_LT_LT_EQ] = ACTIONS(2914), - [anon_sym_GT_GT_EQ] = ACTIONS(2914), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2914), - [anon_sym_AMP_EQ] = ACTIONS(2914), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2914), - [anon_sym_PLUS_EQ] = ACTIONS(2914), - [anon_sym_DASH_EQ] = ACTIONS(2914), - [anon_sym_PIPE_EQ] = ACTIONS(2914), - [anon_sym_CARET_EQ] = ACTIONS(2914), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_lock] = ACTIONS(2914), - [anon_sym_rlock] = ACTIONS(2914), - [anon_sym_unsafe] = ACTIONS(2914), - [anon_sym_sql] = ACTIONS(2914), - [sym_int_literal] = ACTIONS(2914), - [sym_float_literal] = ACTIONS(2914), - [sym_rune_literal] = ACTIONS(2914), - [sym_pseudo_compile_time_identifier] = ACTIONS(2914), - [anon_sym_shared] = ACTIONS(2914), - [anon_sym_map_LBRACK] = ACTIONS(2914), - [anon_sym_chan] = ACTIONS(2914), - [anon_sym_thread] = ACTIONS(2914), - [anon_sym_atomic] = ACTIONS(2914), - [anon_sym_assert] = ACTIONS(2914), - [anon_sym_defer] = ACTIONS(2914), - [anon_sym_goto] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_DOLLARfor] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_POUND] = ACTIONS(2914), - [anon_sym_asm] = ACTIONS(2914), - [anon_sym_AT_LBRACK] = ACTIONS(2914), - [sym___double_quote] = ACTIONS(2914), - [sym___single_quote] = ACTIONS(2914), - [sym___c_double_quote] = ACTIONS(2914), - [sym___c_single_quote] = ACTIONS(2914), - [sym___r_double_quote] = ACTIONS(2914), - [sym___r_single_quote] = ACTIONS(2914), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4346), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [491] = { [sym_line_comment] = STATE(491), [sym_block_comment] = STATE(491), - [ts_builtin_sym_end] = ACTIONS(2916), - [sym_identifier] = ACTIONS(2918), - [anon_sym_LF] = ACTIONS(2918), - [anon_sym_CR] = ACTIONS(2918), - [anon_sym_CR_LF] = ACTIONS(2918), + [ts_builtin_sym_end] = ACTIONS(2885), + [sym_identifier] = ACTIONS(2887), + [anon_sym_LF] = ACTIONS(2887), + [anon_sym_CR] = ACTIONS(2887), + [anon_sym_CR_LF] = ACTIONS(2887), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_as] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2918), - [anon_sym_const] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_EQ] = ACTIONS(2918), - [anon_sym___global] = ACTIONS(2918), - [anon_sym_type] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_fn] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_GT] = ACTIONS(2918), - [anon_sym_EQ_EQ] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2918), - [anon_sym_LT_EQ] = ACTIONS(2918), - [anon_sym_GT_EQ] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_union] = ACTIONS(2918), - [anon_sym_pub] = ACTIONS(2918), - [anon_sym_mut] = ACTIONS(2918), - [anon_sym_enum] = ACTIONS(2918), - [anon_sym_interface] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2918), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_go] = ACTIONS(2918), - [anon_sym_spawn] = ACTIONS(2918), - [anon_sym_json_DOTdecode] = ACTIONS(2918), - [anon_sym_LBRACK2] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2918), - [anon_sym_CARET] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2918), - [anon_sym_LT_LT] = ACTIONS(2918), - [anon_sym_GT_GT] = ACTIONS(2918), - [anon_sym_GT_GT_GT] = ACTIONS(2918), - [anon_sym_AMP_CARET] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_or] = ACTIONS(2918), - [sym_none] = ACTIONS(2918), - [sym_true] = ACTIONS(2918), - [sym_false] = ACTIONS(2918), - [sym_nil] = ACTIONS(2918), - [anon_sym_QMARK_DOT] = ACTIONS(2918), - [anon_sym_POUND_LBRACK] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_DOLLARif] = ACTIONS(2918), - [anon_sym_is] = ACTIONS(2918), - [anon_sym_BANGis] = ACTIONS(2918), - [anon_sym_in] = ACTIONS(2918), - [anon_sym_BANGin] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_select] = ACTIONS(2918), - [anon_sym_STAR_EQ] = ACTIONS(2918), - [anon_sym_SLASH_EQ] = ACTIONS(2918), - [anon_sym_PERCENT_EQ] = ACTIONS(2918), - [anon_sym_LT_LT_EQ] = ACTIONS(2918), - [anon_sym_GT_GT_EQ] = ACTIONS(2918), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2918), - [anon_sym_AMP_EQ] = ACTIONS(2918), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2918), - [anon_sym_PLUS_EQ] = ACTIONS(2918), - [anon_sym_DASH_EQ] = ACTIONS(2918), - [anon_sym_PIPE_EQ] = ACTIONS(2918), - [anon_sym_CARET_EQ] = ACTIONS(2918), - [anon_sym_COLON_EQ] = ACTIONS(2918), - [anon_sym_lock] = ACTIONS(2918), - [anon_sym_rlock] = ACTIONS(2918), - [anon_sym_unsafe] = ACTIONS(2918), - [anon_sym_sql] = ACTIONS(2918), - [sym_int_literal] = ACTIONS(2918), - [sym_float_literal] = ACTIONS(2918), - [sym_rune_literal] = ACTIONS(2918), - [sym_pseudo_compile_time_identifier] = ACTIONS(2918), - [anon_sym_shared] = ACTIONS(2918), - [anon_sym_map_LBRACK] = ACTIONS(2918), - [anon_sym_chan] = ACTIONS(2918), - [anon_sym_thread] = ACTIONS(2918), - [anon_sym_atomic] = ACTIONS(2918), - [anon_sym_assert] = ACTIONS(2918), - [anon_sym_defer] = ACTIONS(2918), - [anon_sym_goto] = ACTIONS(2918), - [anon_sym_break] = ACTIONS(2918), - [anon_sym_continue] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_DOLLARfor] = ACTIONS(2918), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_asm] = ACTIONS(2918), - [anon_sym_AT_LBRACK] = ACTIONS(2918), - [sym___double_quote] = ACTIONS(2918), - [sym___single_quote] = ACTIONS(2918), - [sym___c_double_quote] = ACTIONS(2918), - [sym___c_single_quote] = ACTIONS(2918), - [sym___r_double_quote] = ACTIONS(2918), - [sym___r_single_quote] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_as] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_COMMA] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_EQ] = ACTIONS(2887), + [anon_sym___global] = ACTIONS(2887), + [anon_sym_type] = ACTIONS(2887), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_fn] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2887), + [anon_sym_BANG_EQ] = ACTIONS(2887), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_pub] = ACTIONS(2887), + [anon_sym_mut] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_interface] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2887), + [anon_sym_QMARK] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2887), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2887), + [anon_sym_json_DOTdecode] = ACTIONS(2887), + [anon_sym_LBRACK2] = ACTIONS(2887), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_CARET] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_GT_GT_GT] = ACTIONS(2887), + [anon_sym_AMP_CARET] = ACTIONS(2887), + [anon_sym_AMP_AMP] = ACTIONS(2887), + [anon_sym_PIPE_PIPE] = ACTIONS(2887), + [anon_sym_or] = ACTIONS(2887), + [sym_none] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_nil] = ACTIONS(2887), + [anon_sym_QMARK_DOT] = ACTIONS(2887), + [anon_sym_POUND_LBRACK] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_DOLLARif] = ACTIONS(2887), + [anon_sym_is] = ACTIONS(2887), + [anon_sym_BANGis] = ACTIONS(2887), + [anon_sym_in] = ACTIONS(2887), + [anon_sym_BANGin] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2887), + [anon_sym_select] = ACTIONS(2887), + [anon_sym_STAR_EQ] = ACTIONS(2887), + [anon_sym_SLASH_EQ] = ACTIONS(2887), + [anon_sym_PERCENT_EQ] = ACTIONS(2887), + [anon_sym_LT_LT_EQ] = ACTIONS(2887), + [anon_sym_GT_GT_EQ] = ACTIONS(2887), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2887), + [anon_sym_AMP_EQ] = ACTIONS(2887), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2887), + [anon_sym_PLUS_EQ] = ACTIONS(2887), + [anon_sym_DASH_EQ] = ACTIONS(2887), + [anon_sym_PIPE_EQ] = ACTIONS(2887), + [anon_sym_CARET_EQ] = ACTIONS(2887), + [anon_sym_COLON_EQ] = ACTIONS(2887), + [anon_sym_lock] = ACTIONS(2887), + [anon_sym_rlock] = ACTIONS(2887), + [anon_sym_unsafe] = ACTIONS(2887), + [anon_sym_sql] = ACTIONS(2887), + [sym_int_literal] = ACTIONS(2887), + [sym_float_literal] = ACTIONS(2887), + [sym_rune_literal] = ACTIONS(2887), + [anon_sym_SQUOTE] = ACTIONS(2887), + [anon_sym_DQUOTE] = ACTIONS(2887), + [anon_sym_c_SQUOTE] = ACTIONS(2887), + [anon_sym_c_DQUOTE] = ACTIONS(2887), + [anon_sym_r_SQUOTE] = ACTIONS(2887), + [anon_sym_r_DQUOTE] = ACTIONS(2887), + [sym_pseudo_compile_time_identifier] = ACTIONS(2887), + [anon_sym_shared] = ACTIONS(2887), + [anon_sym_map_LBRACK] = ACTIONS(2887), + [anon_sym_chan] = ACTIONS(2887), + [anon_sym_thread] = ACTIONS(2887), + [anon_sym_atomic] = ACTIONS(2887), + [anon_sym_assert] = ACTIONS(2887), + [anon_sym_defer] = ACTIONS(2887), + [anon_sym_goto] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_DOLLARfor] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_POUND] = ACTIONS(2887), + [anon_sym_asm] = ACTIONS(2887), + [anon_sym_AT_LBRACK] = ACTIONS(2887), }, [492] = { [sym_line_comment] = STATE(492), [sym_block_comment] = STATE(492), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1397), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1399), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(396), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4411), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(2920), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [493] = { [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), - [ts_builtin_sym_end] = ACTIONS(2922), - [sym_identifier] = ACTIONS(2924), - [anon_sym_LF] = ACTIONS(2924), - [anon_sym_CR] = ACTIONS(2924), - [anon_sym_CR_LF] = ACTIONS(2924), + [ts_builtin_sym_end] = ACTIONS(3044), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LF] = ACTIONS(3046), + [anon_sym_CR] = ACTIONS(3046), + [anon_sym_CR_LF] = ACTIONS(3046), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_as] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_const] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2924), - [anon_sym___global] = ACTIONS(2924), - [anon_sym_type] = ACTIONS(2924), - [anon_sym_PIPE] = ACTIONS(2924), - [anon_sym_fn] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_SLASH] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2924), - [anon_sym_GT] = ACTIONS(2924), - [anon_sym_EQ_EQ] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_LT_EQ] = ACTIONS(2924), - [anon_sym_GT_EQ] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_struct] = ACTIONS(2924), - [anon_sym_union] = ACTIONS(2924), - [anon_sym_pub] = ACTIONS(2924), - [anon_sym_mut] = ACTIONS(2924), - [anon_sym_enum] = ACTIONS(2924), - [anon_sym_interface] = ACTIONS(2924), - [anon_sym_PLUS_PLUS] = ACTIONS(2924), - [anon_sym_DASH_DASH] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_BANG] = ACTIONS(2924), - [anon_sym_go] = ACTIONS(2924), - [anon_sym_spawn] = ACTIONS(2924), - [anon_sym_json_DOTdecode] = ACTIONS(2924), - [anon_sym_LBRACK2] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2924), - [anon_sym_CARET] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_LT_LT] = ACTIONS(2924), - [anon_sym_GT_GT] = ACTIONS(2924), - [anon_sym_GT_GT_GT] = ACTIONS(2924), - [anon_sym_AMP_CARET] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_or] = ACTIONS(2924), - [sym_none] = ACTIONS(2924), - [sym_true] = ACTIONS(2924), - [sym_false] = ACTIONS(2924), - [sym_nil] = ACTIONS(2924), - [anon_sym_QMARK_DOT] = ACTIONS(2924), - [anon_sym_POUND_LBRACK] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_DOLLARif] = ACTIONS(2924), - [anon_sym_is] = ACTIONS(2924), - [anon_sym_BANGis] = ACTIONS(2924), - [anon_sym_in] = ACTIONS(2924), - [anon_sym_BANGin] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_select] = ACTIONS(2924), - [anon_sym_STAR_EQ] = ACTIONS(2924), - [anon_sym_SLASH_EQ] = ACTIONS(2924), - [anon_sym_PERCENT_EQ] = ACTIONS(2924), - [anon_sym_LT_LT_EQ] = ACTIONS(2924), - [anon_sym_GT_GT_EQ] = ACTIONS(2924), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2924), - [anon_sym_AMP_EQ] = ACTIONS(2924), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2924), - [anon_sym_PLUS_EQ] = ACTIONS(2924), - [anon_sym_DASH_EQ] = ACTIONS(2924), - [anon_sym_PIPE_EQ] = ACTIONS(2924), - [anon_sym_CARET_EQ] = ACTIONS(2924), - [anon_sym_COLON_EQ] = ACTIONS(2924), - [anon_sym_lock] = ACTIONS(2924), - [anon_sym_rlock] = ACTIONS(2924), - [anon_sym_unsafe] = ACTIONS(2924), - [anon_sym_sql] = ACTIONS(2924), - [sym_int_literal] = ACTIONS(2924), - [sym_float_literal] = ACTIONS(2924), - [sym_rune_literal] = ACTIONS(2924), - [sym_pseudo_compile_time_identifier] = ACTIONS(2924), - [anon_sym_shared] = ACTIONS(2924), - [anon_sym_map_LBRACK] = ACTIONS(2924), - [anon_sym_chan] = ACTIONS(2924), - [anon_sym_thread] = ACTIONS(2924), - [anon_sym_atomic] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_defer] = ACTIONS(2924), - [anon_sym_goto] = ACTIONS(2924), - [anon_sym_break] = ACTIONS(2924), - [anon_sym_continue] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_DOLLARfor] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_POUND] = ACTIONS(2924), - [anon_sym_asm] = ACTIONS(2924), - [anon_sym_AT_LBRACK] = ACTIONS(2924), - [sym___double_quote] = ACTIONS(2924), - [sym___single_quote] = ACTIONS(2924), - [sym___c_double_quote] = ACTIONS(2924), - [sym___c_single_quote] = ACTIONS(2924), - [sym___r_double_quote] = ACTIONS(2924), - [sym___r_single_quote] = ACTIONS(2924), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_as] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_EQ] = ACTIONS(3046), + [anon_sym___global] = ACTIONS(3046), + [anon_sym_type] = ACTIONS(3046), + [anon_sym_PIPE] = ACTIONS(3046), + [anon_sym_fn] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_SLASH] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(3046), + [anon_sym_GT] = ACTIONS(3046), + [anon_sym_EQ_EQ] = ACTIONS(3046), + [anon_sym_BANG_EQ] = ACTIONS(3046), + [anon_sym_LT_EQ] = ACTIONS(3046), + [anon_sym_GT_EQ] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_union] = ACTIONS(3046), + [anon_sym_pub] = ACTIONS(3046), + [anon_sym_mut] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [anon_sym_interface] = ACTIONS(3046), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_go] = ACTIONS(3046), + [anon_sym_spawn] = ACTIONS(3046), + [anon_sym_json_DOTdecode] = ACTIONS(3046), + [anon_sym_LBRACK2] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_CARET] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_LT_DASH] = ACTIONS(3046), + [anon_sym_LT_LT] = ACTIONS(3046), + [anon_sym_GT_GT] = ACTIONS(3046), + [anon_sym_GT_GT_GT] = ACTIONS(3046), + [anon_sym_AMP_CARET] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_PIPE_PIPE] = ACTIONS(3046), + [anon_sym_or] = ACTIONS(3046), + [sym_none] = ACTIONS(3046), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_nil] = ACTIONS(3046), + [anon_sym_QMARK_DOT] = ACTIONS(3046), + [anon_sym_POUND_LBRACK] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_DOLLARif] = ACTIONS(3046), + [anon_sym_is] = ACTIONS(3046), + [anon_sym_BANGis] = ACTIONS(3046), + [anon_sym_in] = ACTIONS(3046), + [anon_sym_BANGin] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_select] = ACTIONS(3046), + [anon_sym_STAR_EQ] = ACTIONS(3046), + [anon_sym_SLASH_EQ] = ACTIONS(3046), + [anon_sym_PERCENT_EQ] = ACTIONS(3046), + [anon_sym_LT_LT_EQ] = ACTIONS(3046), + [anon_sym_GT_GT_EQ] = ACTIONS(3046), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3046), + [anon_sym_AMP_EQ] = ACTIONS(3046), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3046), + [anon_sym_PLUS_EQ] = ACTIONS(3046), + [anon_sym_DASH_EQ] = ACTIONS(3046), + [anon_sym_PIPE_EQ] = ACTIONS(3046), + [anon_sym_CARET_EQ] = ACTIONS(3046), + [anon_sym_COLON_EQ] = ACTIONS(3046), + [anon_sym_lock] = ACTIONS(3046), + [anon_sym_rlock] = ACTIONS(3046), + [anon_sym_unsafe] = ACTIONS(3046), + [anon_sym_sql] = ACTIONS(3046), + [sym_int_literal] = ACTIONS(3046), + [sym_float_literal] = ACTIONS(3046), + [sym_rune_literal] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_c_SQUOTE] = ACTIONS(3046), + [anon_sym_c_DQUOTE] = ACTIONS(3046), + [anon_sym_r_SQUOTE] = ACTIONS(3046), + [anon_sym_r_DQUOTE] = ACTIONS(3046), + [sym_pseudo_compile_time_identifier] = ACTIONS(3046), + [anon_sym_shared] = ACTIONS(3046), + [anon_sym_map_LBRACK] = ACTIONS(3046), + [anon_sym_chan] = ACTIONS(3046), + [anon_sym_thread] = ACTIONS(3046), + [anon_sym_atomic] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_defer] = ACTIONS(3046), + [anon_sym_goto] = ACTIONS(3046), + [anon_sym_break] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_DOLLARfor] = ACTIONS(3046), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_POUND] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3046), + [anon_sym_AT_LBRACK] = ACTIONS(3046), }, [494] = { [sym_line_comment] = STATE(494), [sym_block_comment] = STATE(494), - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym_short_element_list_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(2926), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4453), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2932), - [anon_sym_RBRACE] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_fn] = ACTIONS(2940), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2946), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_mut] = ACTIONS(2952), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2958), - [anon_sym_go] = ACTIONS(2961), - [anon_sym_spawn] = ACTIONS(2964), - [anon_sym_json_DOTdecode] = ACTIONS(2967), - [anon_sym_LBRACK2] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_CARET] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2976), - [sym_none] = ACTIONS(2979), - [sym_true] = ACTIONS(2979), - [sym_false] = ACTIONS(2979), - [sym_nil] = ACTIONS(2979), - [anon_sym_if] = ACTIONS(2982), - [anon_sym_DOLLARif] = ACTIONS(2985), - [anon_sym_match] = ACTIONS(2988), - [anon_sym_select] = ACTIONS(2991), - [anon_sym_lock] = ACTIONS(2994), - [anon_sym_rlock] = ACTIONS(2994), - [anon_sym_unsafe] = ACTIONS(2997), - [anon_sym_sql] = ACTIONS(3000), - [sym_int_literal] = ACTIONS(2979), - [sym_float_literal] = ACTIONS(3003), - [sym_rune_literal] = ACTIONS(3003), - [sym_pseudo_compile_time_identifier] = ACTIONS(3006), - [anon_sym_shared] = ACTIONS(3009), - [anon_sym_map_LBRACK] = ACTIONS(3012), - [anon_sym_chan] = ACTIONS(3015), - [anon_sym_thread] = ACTIONS(3018), - [anon_sym_atomic] = ACTIONS(3021), - [sym___double_quote] = ACTIONS(3024), - [sym___single_quote] = ACTIONS(3027), - [sym___c_double_quote] = ACTIONS(3030), - [sym___c_single_quote] = ACTIONS(3033), - [sym___r_double_quote] = ACTIONS(3036), - [sym___r_single_quote] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [495] = { [sym_line_comment] = STATE(495), [sym_block_comment] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(3042), - [sym_identifier] = ACTIONS(3044), - [anon_sym_LF] = ACTIONS(3044), - [anon_sym_CR] = ACTIONS(3044), - [anon_sym_CR_LF] = ACTIONS(3044), + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LF] = ACTIONS(3052), + [anon_sym_CR] = ACTIONS(3052), + [anon_sym_CR_LF] = ACTIONS(3052), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_as] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3044), - [anon_sym_const] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3044), - [anon_sym___global] = ACTIONS(3044), - [anon_sym_type] = ACTIONS(3044), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_fn] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_SLASH] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3044), - [anon_sym_GT] = ACTIONS(3044), - [anon_sym_EQ_EQ] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_EQ] = ACTIONS(3044), - [anon_sym_LBRACK] = ACTIONS(3042), - [anon_sym_struct] = ACTIONS(3044), - [anon_sym_union] = ACTIONS(3044), - [anon_sym_pub] = ACTIONS(3044), - [anon_sym_mut] = ACTIONS(3044), - [anon_sym_enum] = ACTIONS(3044), - [anon_sym_interface] = ACTIONS(3044), - [anon_sym_PLUS_PLUS] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_BANG] = ACTIONS(3044), - [anon_sym_go] = ACTIONS(3044), - [anon_sym_spawn] = ACTIONS(3044), - [anon_sym_json_DOTdecode] = ACTIONS(3044), - [anon_sym_LBRACK2] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3044), - [anon_sym_CARET] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_LT_LT] = ACTIONS(3044), - [anon_sym_GT_GT] = ACTIONS(3044), - [anon_sym_GT_GT_GT] = ACTIONS(3044), - [anon_sym_AMP_CARET] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_or] = ACTIONS(3044), - [sym_none] = ACTIONS(3044), - [sym_true] = ACTIONS(3044), - [sym_false] = ACTIONS(3044), - [sym_nil] = ACTIONS(3044), - [anon_sym_QMARK_DOT] = ACTIONS(3044), - [anon_sym_POUND_LBRACK] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_DOLLARif] = ACTIONS(3044), - [anon_sym_is] = ACTIONS(3044), - [anon_sym_BANGis] = ACTIONS(3044), - [anon_sym_in] = ACTIONS(3044), - [anon_sym_BANGin] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_select] = ACTIONS(3044), - [anon_sym_STAR_EQ] = ACTIONS(3044), - [anon_sym_SLASH_EQ] = ACTIONS(3044), - [anon_sym_PERCENT_EQ] = ACTIONS(3044), - [anon_sym_LT_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_GT_EQ] = ACTIONS(3044), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3044), - [anon_sym_AMP_EQ] = ACTIONS(3044), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3044), - [anon_sym_PLUS_EQ] = ACTIONS(3044), - [anon_sym_DASH_EQ] = ACTIONS(3044), - [anon_sym_PIPE_EQ] = ACTIONS(3044), - [anon_sym_CARET_EQ] = ACTIONS(3044), - [anon_sym_COLON_EQ] = ACTIONS(3044), - [anon_sym_lock] = ACTIONS(3044), - [anon_sym_rlock] = ACTIONS(3044), - [anon_sym_unsafe] = ACTIONS(3044), - [anon_sym_sql] = ACTIONS(3044), - [sym_int_literal] = ACTIONS(3044), - [sym_float_literal] = ACTIONS(3044), - [sym_rune_literal] = ACTIONS(3044), - [sym_pseudo_compile_time_identifier] = ACTIONS(3044), - [anon_sym_shared] = ACTIONS(3044), - [anon_sym_map_LBRACK] = ACTIONS(3044), - [anon_sym_chan] = ACTIONS(3044), - [anon_sym_thread] = ACTIONS(3044), - [anon_sym_atomic] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_defer] = ACTIONS(3044), - [anon_sym_goto] = ACTIONS(3044), - [anon_sym_break] = ACTIONS(3044), - [anon_sym_continue] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_DOLLARfor] = ACTIONS(3044), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_POUND] = ACTIONS(3044), - [anon_sym_asm] = ACTIONS(3044), - [anon_sym_AT_LBRACK] = ACTIONS(3044), - [sym___double_quote] = ACTIONS(3044), - [sym___single_quote] = ACTIONS(3044), - [sym___c_double_quote] = ACTIONS(3044), - [sym___c_single_quote] = ACTIONS(3044), - [sym___r_double_quote] = ACTIONS(3044), - [sym___r_single_quote] = ACTIONS(3044), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_as] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3052), + [anon_sym___global] = ACTIONS(3052), + [anon_sym_type] = ACTIONS(3052), + [anon_sym_PIPE] = ACTIONS(3052), + [anon_sym_fn] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3052), + [anon_sym_SLASH] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3052), + [anon_sym_GT] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3050), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_union] = ACTIONS(3052), + [anon_sym_pub] = ACTIONS(3052), + [anon_sym_mut] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), + [anon_sym_interface] = ACTIONS(3052), + [anon_sym_PLUS_PLUS] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3052), + [anon_sym_go] = ACTIONS(3052), + [anon_sym_spawn] = ACTIONS(3052), + [anon_sym_json_DOTdecode] = ACTIONS(3052), + [anon_sym_LBRACK2] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3052), + [anon_sym_CARET] = ACTIONS(3052), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_LT_LT] = ACTIONS(3052), + [anon_sym_GT_GT] = ACTIONS(3052), + [anon_sym_GT_GT_GT] = ACTIONS(3052), + [anon_sym_AMP_CARET] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [sym_none] = ACTIONS(3052), + [sym_true] = ACTIONS(3052), + [sym_false] = ACTIONS(3052), + [sym_nil] = ACTIONS(3052), + [anon_sym_QMARK_DOT] = ACTIONS(3052), + [anon_sym_POUND_LBRACK] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_DOLLARif] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3052), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_in] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_select] = ACTIONS(3052), + [anon_sym_STAR_EQ] = ACTIONS(3052), + [anon_sym_SLASH_EQ] = ACTIONS(3052), + [anon_sym_PERCENT_EQ] = ACTIONS(3052), + [anon_sym_LT_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_GT_EQ] = ACTIONS(3052), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3052), + [anon_sym_AMP_EQ] = ACTIONS(3052), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3052), + [anon_sym_PLUS_EQ] = ACTIONS(3052), + [anon_sym_DASH_EQ] = ACTIONS(3052), + [anon_sym_PIPE_EQ] = ACTIONS(3052), + [anon_sym_CARET_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3052), + [anon_sym_lock] = ACTIONS(3052), + [anon_sym_rlock] = ACTIONS(3052), + [anon_sym_unsafe] = ACTIONS(3052), + [anon_sym_sql] = ACTIONS(3052), + [sym_int_literal] = ACTIONS(3052), + [sym_float_literal] = ACTIONS(3052), + [sym_rune_literal] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_c_SQUOTE] = ACTIONS(3052), + [anon_sym_c_DQUOTE] = ACTIONS(3052), + [anon_sym_r_SQUOTE] = ACTIONS(3052), + [anon_sym_r_DQUOTE] = ACTIONS(3052), + [sym_pseudo_compile_time_identifier] = ACTIONS(3052), + [anon_sym_shared] = ACTIONS(3052), + [anon_sym_map_LBRACK] = ACTIONS(3052), + [anon_sym_chan] = ACTIONS(3052), + [anon_sym_thread] = ACTIONS(3052), + [anon_sym_atomic] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_defer] = ACTIONS(3052), + [anon_sym_goto] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_DOLLARfor] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_POUND] = ACTIONS(3052), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym_AT_LBRACK] = ACTIONS(3052), }, [496] = { [sym_line_comment] = STATE(496), [sym_block_comment] = STATE(496), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1397), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1399), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(407), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(3046), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(3054), + [sym_identifier] = ACTIONS(3056), + [anon_sym_LF] = ACTIONS(3056), + [anon_sym_CR] = ACTIONS(3056), + [anon_sym_CR_LF] = ACTIONS(3056), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3056), + [anon_sym_as] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_const] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3056), + [anon_sym_EQ] = ACTIONS(3056), + [anon_sym___global] = ACTIONS(3056), + [anon_sym_type] = ACTIONS(3056), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_fn] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3056), + [anon_sym_SLASH] = ACTIONS(3056), + [anon_sym_PERCENT] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT_EQ] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_union] = ACTIONS(3056), + [anon_sym_pub] = ACTIONS(3056), + [anon_sym_mut] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3056), + [anon_sym_interface] = ACTIONS(3056), + [anon_sym_PLUS_PLUS] = ACTIONS(3056), + [anon_sym_DASH_DASH] = ACTIONS(3056), + [anon_sym_QMARK] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3056), + [anon_sym_go] = ACTIONS(3056), + [anon_sym_spawn] = ACTIONS(3056), + [anon_sym_json_DOTdecode] = ACTIONS(3056), + [anon_sym_LBRACK2] = ACTIONS(3056), + [anon_sym_TILDE] = ACTIONS(3056), + [anon_sym_CARET] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym_LT_DASH] = ACTIONS(3056), + [anon_sym_LT_LT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(3056), + [anon_sym_GT_GT_GT] = ACTIONS(3056), + [anon_sym_AMP_CARET] = ACTIONS(3056), + [anon_sym_AMP_AMP] = ACTIONS(3056), + [anon_sym_PIPE_PIPE] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3056), + [sym_none] = ACTIONS(3056), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [sym_nil] = ACTIONS(3056), + [anon_sym_QMARK_DOT] = ACTIONS(3056), + [anon_sym_POUND_LBRACK] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_DOLLARif] = ACTIONS(3056), + [anon_sym_is] = ACTIONS(3056), + [anon_sym_BANGis] = ACTIONS(3056), + [anon_sym_in] = ACTIONS(3056), + [anon_sym_BANGin] = ACTIONS(3056), + [anon_sym_match] = ACTIONS(3056), + [anon_sym_select] = ACTIONS(3056), + [anon_sym_STAR_EQ] = ACTIONS(3056), + [anon_sym_SLASH_EQ] = ACTIONS(3056), + [anon_sym_PERCENT_EQ] = ACTIONS(3056), + [anon_sym_LT_LT_EQ] = ACTIONS(3056), + [anon_sym_GT_GT_EQ] = ACTIONS(3056), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3056), + [anon_sym_AMP_EQ] = ACTIONS(3056), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3056), + [anon_sym_PLUS_EQ] = ACTIONS(3056), + [anon_sym_DASH_EQ] = ACTIONS(3056), + [anon_sym_PIPE_EQ] = ACTIONS(3056), + [anon_sym_CARET_EQ] = ACTIONS(3056), + [anon_sym_COLON_EQ] = ACTIONS(3056), + [anon_sym_lock] = ACTIONS(3056), + [anon_sym_rlock] = ACTIONS(3056), + [anon_sym_unsafe] = ACTIONS(3056), + [anon_sym_sql] = ACTIONS(3056), + [sym_int_literal] = ACTIONS(3056), + [sym_float_literal] = ACTIONS(3056), + [sym_rune_literal] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3056), + [anon_sym_c_SQUOTE] = ACTIONS(3056), + [anon_sym_c_DQUOTE] = ACTIONS(3056), + [anon_sym_r_SQUOTE] = ACTIONS(3056), + [anon_sym_r_DQUOTE] = ACTIONS(3056), + [sym_pseudo_compile_time_identifier] = ACTIONS(3056), + [anon_sym_shared] = ACTIONS(3056), + [anon_sym_map_LBRACK] = ACTIONS(3056), + [anon_sym_chan] = ACTIONS(3056), + [anon_sym_thread] = ACTIONS(3056), + [anon_sym_atomic] = ACTIONS(3056), + [anon_sym_assert] = ACTIONS(3056), + [anon_sym_defer] = ACTIONS(3056), + [anon_sym_goto] = ACTIONS(3056), + [anon_sym_break] = ACTIONS(3056), + [anon_sym_continue] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_DOLLARfor] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_POUND] = ACTIONS(3056), + [anon_sym_asm] = ACTIONS(3056), + [anon_sym_AT_LBRACK] = ACTIONS(3056), }, [497] = { [sym_line_comment] = STATE(497), [sym_block_comment] = STATE(497), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3558), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2127), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4348), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_RBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [498] = { [sym_line_comment] = STATE(498), [sym_block_comment] = STATE(498), - [ts_builtin_sym_end] = ACTIONS(3048), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LF] = ACTIONS(3050), - [anon_sym_CR] = ACTIONS(3050), - [anon_sym_CR_LF] = ACTIONS(3050), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3050), - [anon_sym_as] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3050), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_const] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3050), - [anon_sym_EQ] = ACTIONS(3050), - [anon_sym___global] = ACTIONS(3050), - [anon_sym_type] = ACTIONS(3050), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_fn] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_EQ_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_LT_EQ] = ACTIONS(3050), - [anon_sym_GT_EQ] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_struct] = ACTIONS(3050), - [anon_sym_union] = ACTIONS(3050), - [anon_sym_pub] = ACTIONS(3050), - [anon_sym_mut] = ACTIONS(3050), - [anon_sym_enum] = ACTIONS(3050), - [anon_sym_interface] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3050), - [anon_sym_DASH_DASH] = ACTIONS(3050), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3050), - [anon_sym_go] = ACTIONS(3050), - [anon_sym_spawn] = ACTIONS(3050), - [anon_sym_json_DOTdecode] = ACTIONS(3050), - [anon_sym_LBRACK2] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3050), - [anon_sym_CARET] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3050), - [anon_sym_LT_DASH] = ACTIONS(3050), - [anon_sym_LT_LT] = ACTIONS(3050), - [anon_sym_GT_GT] = ACTIONS(3050), - [anon_sym_GT_GT_GT] = ACTIONS(3050), - [anon_sym_AMP_CARET] = ACTIONS(3050), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3050), - [sym_none] = ACTIONS(3050), - [sym_true] = ACTIONS(3050), - [sym_false] = ACTIONS(3050), - [sym_nil] = ACTIONS(3050), - [anon_sym_QMARK_DOT] = ACTIONS(3050), - [anon_sym_POUND_LBRACK] = ACTIONS(3050), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_DOLLARif] = ACTIONS(3050), - [anon_sym_is] = ACTIONS(3050), - [anon_sym_BANGis] = ACTIONS(3050), - [anon_sym_in] = ACTIONS(3050), - [anon_sym_BANGin] = ACTIONS(3050), - [anon_sym_match] = ACTIONS(3050), - [anon_sym_select] = ACTIONS(3050), - [anon_sym_STAR_EQ] = ACTIONS(3050), - [anon_sym_SLASH_EQ] = ACTIONS(3050), - [anon_sym_PERCENT_EQ] = ACTIONS(3050), - [anon_sym_LT_LT_EQ] = ACTIONS(3050), - [anon_sym_GT_GT_EQ] = ACTIONS(3050), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3050), - [anon_sym_AMP_EQ] = ACTIONS(3050), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3050), - [anon_sym_PLUS_EQ] = ACTIONS(3050), - [anon_sym_DASH_EQ] = ACTIONS(3050), - [anon_sym_PIPE_EQ] = ACTIONS(3050), - [anon_sym_CARET_EQ] = ACTIONS(3050), - [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_lock] = ACTIONS(3050), - [anon_sym_rlock] = ACTIONS(3050), - [anon_sym_unsafe] = ACTIONS(3050), - [anon_sym_sql] = ACTIONS(3050), - [sym_int_literal] = ACTIONS(3050), - [sym_float_literal] = ACTIONS(3050), - [sym_rune_literal] = ACTIONS(3050), - [sym_pseudo_compile_time_identifier] = ACTIONS(3050), - [anon_sym_shared] = ACTIONS(3050), - [anon_sym_map_LBRACK] = ACTIONS(3050), - [anon_sym_chan] = ACTIONS(3050), - [anon_sym_thread] = ACTIONS(3050), - [anon_sym_atomic] = ACTIONS(3050), - [anon_sym_assert] = ACTIONS(3050), - [anon_sym_defer] = ACTIONS(3050), - [anon_sym_goto] = ACTIONS(3050), - [anon_sym_break] = ACTIONS(3050), - [anon_sym_continue] = ACTIONS(3050), - [anon_sym_return] = ACTIONS(3050), - [anon_sym_DOLLARfor] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3050), - [anon_sym_POUND] = ACTIONS(3050), - [anon_sym_asm] = ACTIONS(3050), - [anon_sym_AT_LBRACK] = ACTIONS(3050), - [sym___double_quote] = ACTIONS(3050), - [sym___single_quote] = ACTIONS(3050), - [sym___c_double_quote] = ACTIONS(3050), - [sym___c_single_quote] = ACTIONS(3050), - [sym___r_double_quote] = ACTIONS(3050), - [sym___r_single_quote] = ACTIONS(3050), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4453), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [499] = { [sym_line_comment] = STATE(499), [sym_block_comment] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(3052), - [sym_identifier] = ACTIONS(3054), - [anon_sym_LF] = ACTIONS(3054), - [anon_sym_CR] = ACTIONS(3054), - [anon_sym_CR_LF] = ACTIONS(3054), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_as] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_const] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_EQ] = ACTIONS(3054), - [anon_sym___global] = ACTIONS(3054), - [anon_sym_type] = ACTIONS(3054), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_fn] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_union] = ACTIONS(3054), - [anon_sym_pub] = ACTIONS(3054), - [anon_sym_mut] = ACTIONS(3054), - [anon_sym_enum] = ACTIONS(3054), - [anon_sym_interface] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3054), - [anon_sym_DASH_DASH] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_BANG] = ACTIONS(3054), - [anon_sym_go] = ACTIONS(3054), - [anon_sym_spawn] = ACTIONS(3054), - [anon_sym_json_DOTdecode] = ACTIONS(3054), - [anon_sym_LBRACK2] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3054), - [anon_sym_CARET] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_LT_LT] = ACTIONS(3054), - [anon_sym_GT_GT] = ACTIONS(3054), - [anon_sym_GT_GT_GT] = ACTIONS(3054), - [anon_sym_AMP_CARET] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3054), - [sym_none] = ACTIONS(3054), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [sym_nil] = ACTIONS(3054), - [anon_sym_QMARK_DOT] = ACTIONS(3054), - [anon_sym_POUND_LBRACK] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_DOLLARif] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3054), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_select] = ACTIONS(3054), - [anon_sym_STAR_EQ] = ACTIONS(3054), - [anon_sym_SLASH_EQ] = ACTIONS(3054), - [anon_sym_PERCENT_EQ] = ACTIONS(3054), - [anon_sym_LT_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_GT_EQ] = ACTIONS(3054), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3054), - [anon_sym_AMP_EQ] = ACTIONS(3054), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3054), - [anon_sym_PLUS_EQ] = ACTIONS(3054), - [anon_sym_DASH_EQ] = ACTIONS(3054), - [anon_sym_PIPE_EQ] = ACTIONS(3054), - [anon_sym_CARET_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3054), - [anon_sym_lock] = ACTIONS(3054), - [anon_sym_rlock] = ACTIONS(3054), - [anon_sym_unsafe] = ACTIONS(3054), - [anon_sym_sql] = ACTIONS(3054), - [sym_int_literal] = ACTIONS(3054), - [sym_float_literal] = ACTIONS(3054), - [sym_rune_literal] = ACTIONS(3054), - [sym_pseudo_compile_time_identifier] = ACTIONS(3054), - [anon_sym_shared] = ACTIONS(3054), - [anon_sym_map_LBRACK] = ACTIONS(3054), - [anon_sym_chan] = ACTIONS(3054), - [anon_sym_thread] = ACTIONS(3054), - [anon_sym_atomic] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_defer] = ACTIONS(3054), - [anon_sym_goto] = ACTIONS(3054), - [anon_sym_break] = ACTIONS(3054), - [anon_sym_continue] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_DOLLARfor] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_POUND] = ACTIONS(3054), - [anon_sym_asm] = ACTIONS(3054), - [anon_sym_AT_LBRACK] = ACTIONS(3054), - [sym___double_quote] = ACTIONS(3054), - [sym___single_quote] = ACTIONS(3054), - [sym___c_double_quote] = ACTIONS(3054), - [sym___c_single_quote] = ACTIONS(3054), - [sym___r_double_quote] = ACTIONS(3054), - [sym___r_single_quote] = ACTIONS(3054), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1398), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1396), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [aux_sym__array_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(3062), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1347), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [500] = { [sym_line_comment] = STATE(500), [sym_block_comment] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(3056), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LF] = ACTIONS(3058), - [anon_sym_CR] = ACTIONS(3058), - [anon_sym_CR_LF] = ACTIONS(3058), + [ts_builtin_sym_end] = ACTIONS(3064), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LF] = ACTIONS(3066), + [anon_sym_CR] = ACTIONS(3066), + [anon_sym_CR_LF] = ACTIONS(3066), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_as] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_const] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_EQ] = ACTIONS(3058), - [anon_sym___global] = ACTIONS(3058), - [anon_sym_type] = ACTIONS(3058), - [anon_sym_PIPE] = ACTIONS(3058), - [anon_sym_fn] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3058), - [anon_sym_EQ_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_LT_EQ] = ACTIONS(3058), - [anon_sym_GT_EQ] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_struct] = ACTIONS(3058), - [anon_sym_union] = ACTIONS(3058), - [anon_sym_pub] = ACTIONS(3058), - [anon_sym_mut] = ACTIONS(3058), - [anon_sym_enum] = ACTIONS(3058), - [anon_sym_interface] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3058), - [anon_sym_DASH_DASH] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_BANG] = ACTIONS(3058), - [anon_sym_go] = ACTIONS(3058), - [anon_sym_spawn] = ACTIONS(3058), - [anon_sym_json_DOTdecode] = ACTIONS(3058), - [anon_sym_LBRACK2] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3058), - [anon_sym_CARET] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3058), - [anon_sym_LT_LT] = ACTIONS(3058), - [anon_sym_GT_GT] = ACTIONS(3058), - [anon_sym_GT_GT_GT] = ACTIONS(3058), - [anon_sym_AMP_CARET] = ACTIONS(3058), - [anon_sym_AMP_AMP] = ACTIONS(3058), - [anon_sym_PIPE_PIPE] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3058), - [sym_none] = ACTIONS(3058), - [sym_true] = ACTIONS(3058), - [sym_false] = ACTIONS(3058), - [sym_nil] = ACTIONS(3058), - [anon_sym_QMARK_DOT] = ACTIONS(3058), - [anon_sym_POUND_LBRACK] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_DOLLARif] = ACTIONS(3058), - [anon_sym_is] = ACTIONS(3058), - [anon_sym_BANGis] = ACTIONS(3058), - [anon_sym_in] = ACTIONS(3058), - [anon_sym_BANGin] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_select] = ACTIONS(3058), - [anon_sym_STAR_EQ] = ACTIONS(3058), - [anon_sym_SLASH_EQ] = ACTIONS(3058), - [anon_sym_PERCENT_EQ] = ACTIONS(3058), - [anon_sym_LT_LT_EQ] = ACTIONS(3058), - [anon_sym_GT_GT_EQ] = ACTIONS(3058), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3058), - [anon_sym_AMP_EQ] = ACTIONS(3058), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3058), - [anon_sym_PLUS_EQ] = ACTIONS(3058), - [anon_sym_DASH_EQ] = ACTIONS(3058), - [anon_sym_PIPE_EQ] = ACTIONS(3058), - [anon_sym_CARET_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3058), - [anon_sym_lock] = ACTIONS(3058), - [anon_sym_rlock] = ACTIONS(3058), - [anon_sym_unsafe] = ACTIONS(3058), - [anon_sym_sql] = ACTIONS(3058), - [sym_int_literal] = ACTIONS(3058), - [sym_float_literal] = ACTIONS(3058), - [sym_rune_literal] = ACTIONS(3058), - [sym_pseudo_compile_time_identifier] = ACTIONS(3058), - [anon_sym_shared] = ACTIONS(3058), - [anon_sym_map_LBRACK] = ACTIONS(3058), - [anon_sym_chan] = ACTIONS(3058), - [anon_sym_thread] = ACTIONS(3058), - [anon_sym_atomic] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_defer] = ACTIONS(3058), - [anon_sym_goto] = ACTIONS(3058), - [anon_sym_break] = ACTIONS(3058), - [anon_sym_continue] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_DOLLARfor] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_asm] = ACTIONS(3058), - [anon_sym_AT_LBRACK] = ACTIONS(3058), - [sym___double_quote] = ACTIONS(3058), - [sym___single_quote] = ACTIONS(3058), - [sym___c_double_quote] = ACTIONS(3058), - [sym___c_single_quote] = ACTIONS(3058), - [sym___r_double_quote] = ACTIONS(3058), - [sym___r_single_quote] = ACTIONS(3058), + [anon_sym_DOT] = ACTIONS(3066), + [anon_sym_as] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_const] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_EQ] = ACTIONS(3066), + [anon_sym___global] = ACTIONS(3066), + [anon_sym_type] = ACTIONS(3066), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_SLASH] = ACTIONS(3066), + [anon_sym_PERCENT] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_EQ_EQ] = ACTIONS(3066), + [anon_sym_BANG_EQ] = ACTIONS(3066), + [anon_sym_LT_EQ] = ACTIONS(3066), + [anon_sym_GT_EQ] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3066), + [anon_sym_pub] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(3066), + [anon_sym_enum] = ACTIONS(3066), + [anon_sym_interface] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_go] = ACTIONS(3066), + [anon_sym_spawn] = ACTIONS(3066), + [anon_sym_json_DOTdecode] = ACTIONS(3066), + [anon_sym_LBRACK2] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [anon_sym_CARET] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3066), + [anon_sym_LT_DASH] = ACTIONS(3066), + [anon_sym_LT_LT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(3066), + [anon_sym_GT_GT_GT] = ACTIONS(3066), + [anon_sym_AMP_CARET] = ACTIONS(3066), + [anon_sym_AMP_AMP] = ACTIONS(3066), + [anon_sym_PIPE_PIPE] = ACTIONS(3066), + [anon_sym_or] = ACTIONS(3066), + [sym_none] = ACTIONS(3066), + [sym_true] = ACTIONS(3066), + [sym_false] = ACTIONS(3066), + [sym_nil] = ACTIONS(3066), + [anon_sym_QMARK_DOT] = ACTIONS(3066), + [anon_sym_POUND_LBRACK] = ACTIONS(3066), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_DOLLARif] = ACTIONS(3066), + [anon_sym_is] = ACTIONS(3066), + [anon_sym_BANGis] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(3066), + [anon_sym_BANGin] = ACTIONS(3066), + [anon_sym_match] = ACTIONS(3066), + [anon_sym_select] = ACTIONS(3066), + [anon_sym_STAR_EQ] = ACTIONS(3066), + [anon_sym_SLASH_EQ] = ACTIONS(3066), + [anon_sym_PERCENT_EQ] = ACTIONS(3066), + [anon_sym_LT_LT_EQ] = ACTIONS(3066), + [anon_sym_GT_GT_EQ] = ACTIONS(3066), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3066), + [anon_sym_AMP_EQ] = ACTIONS(3066), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3066), + [anon_sym_PLUS_EQ] = ACTIONS(3066), + [anon_sym_DASH_EQ] = ACTIONS(3066), + [anon_sym_PIPE_EQ] = ACTIONS(3066), + [anon_sym_CARET_EQ] = ACTIONS(3066), + [anon_sym_COLON_EQ] = ACTIONS(3066), + [anon_sym_lock] = ACTIONS(3066), + [anon_sym_rlock] = ACTIONS(3066), + [anon_sym_unsafe] = ACTIONS(3066), + [anon_sym_sql] = ACTIONS(3066), + [sym_int_literal] = ACTIONS(3066), + [sym_float_literal] = ACTIONS(3066), + [sym_rune_literal] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3066), + [anon_sym_c_SQUOTE] = ACTIONS(3066), + [anon_sym_c_DQUOTE] = ACTIONS(3066), + [anon_sym_r_SQUOTE] = ACTIONS(3066), + [anon_sym_r_DQUOTE] = ACTIONS(3066), + [sym_pseudo_compile_time_identifier] = ACTIONS(3066), + [anon_sym_shared] = ACTIONS(3066), + [anon_sym_map_LBRACK] = ACTIONS(3066), + [anon_sym_chan] = ACTIONS(3066), + [anon_sym_thread] = ACTIONS(3066), + [anon_sym_atomic] = ACTIONS(3066), + [anon_sym_assert] = ACTIONS(3066), + [anon_sym_defer] = ACTIONS(3066), + [anon_sym_goto] = ACTIONS(3066), + [anon_sym_break] = ACTIONS(3066), + [anon_sym_continue] = ACTIONS(3066), + [anon_sym_return] = ACTIONS(3066), + [anon_sym_DOLLARfor] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3066), + [anon_sym_POUND] = ACTIONS(3066), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym_AT_LBRACK] = ACTIONS(3066), }, [501] = { [sym_line_comment] = STATE(501), [sym_block_comment] = STATE(501), - [ts_builtin_sym_end] = ACTIONS(3060), - [sym_identifier] = ACTIONS(3062), - [anon_sym_LF] = ACTIONS(3062), - [anon_sym_CR] = ACTIONS(3062), - [anon_sym_CR_LF] = ACTIONS(3062), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3062), - [anon_sym_as] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3062), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_const] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3062), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym___global] = ACTIONS(3062), - [anon_sym_type] = ACTIONS(3062), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_fn] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_EQ_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_LT_EQ] = ACTIONS(3062), - [anon_sym_GT_EQ] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_struct] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(3062), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_mut] = ACTIONS(3062), - [anon_sym_enum] = ACTIONS(3062), - [anon_sym_interface] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3062), - [anon_sym_DASH_DASH] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_go] = ACTIONS(3062), - [anon_sym_spawn] = ACTIONS(3062), - [anon_sym_json_DOTdecode] = ACTIONS(3062), - [anon_sym_LBRACK2] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3062), - [anon_sym_LT_DASH] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3062), - [anon_sym_GT_GT] = ACTIONS(3062), - [anon_sym_GT_GT_GT] = ACTIONS(3062), - [anon_sym_AMP_CARET] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_PIPE_PIPE] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3062), - [sym_none] = ACTIONS(3062), - [sym_true] = ACTIONS(3062), - [sym_false] = ACTIONS(3062), - [sym_nil] = ACTIONS(3062), - [anon_sym_QMARK_DOT] = ACTIONS(3062), - [anon_sym_POUND_LBRACK] = ACTIONS(3062), - [anon_sym_if] = ACTIONS(3062), - [anon_sym_DOLLARif] = ACTIONS(3062), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_BANGis] = ACTIONS(3062), - [anon_sym_in] = ACTIONS(3062), - [anon_sym_BANGin] = ACTIONS(3062), - [anon_sym_match] = ACTIONS(3062), - [anon_sym_select] = ACTIONS(3062), - [anon_sym_STAR_EQ] = ACTIONS(3062), - [anon_sym_SLASH_EQ] = ACTIONS(3062), - [anon_sym_PERCENT_EQ] = ACTIONS(3062), - [anon_sym_LT_LT_EQ] = ACTIONS(3062), - [anon_sym_GT_GT_EQ] = ACTIONS(3062), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3062), - [anon_sym_AMP_EQ] = ACTIONS(3062), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3062), - [anon_sym_PLUS_EQ] = ACTIONS(3062), - [anon_sym_DASH_EQ] = ACTIONS(3062), - [anon_sym_PIPE_EQ] = ACTIONS(3062), - [anon_sym_CARET_EQ] = ACTIONS(3062), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_lock] = ACTIONS(3062), - [anon_sym_rlock] = ACTIONS(3062), - [anon_sym_unsafe] = ACTIONS(3062), - [anon_sym_sql] = ACTIONS(3062), - [sym_int_literal] = ACTIONS(3062), - [sym_float_literal] = ACTIONS(3062), - [sym_rune_literal] = ACTIONS(3062), - [sym_pseudo_compile_time_identifier] = ACTIONS(3062), - [anon_sym_shared] = ACTIONS(3062), - [anon_sym_map_LBRACK] = ACTIONS(3062), - [anon_sym_chan] = ACTIONS(3062), - [anon_sym_thread] = ACTIONS(3062), - [anon_sym_atomic] = ACTIONS(3062), - [anon_sym_assert] = ACTIONS(3062), - [anon_sym_defer] = ACTIONS(3062), - [anon_sym_goto] = ACTIONS(3062), - [anon_sym_break] = ACTIONS(3062), - [anon_sym_continue] = ACTIONS(3062), - [anon_sym_return] = ACTIONS(3062), - [anon_sym_DOLLARfor] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3062), - [anon_sym_POUND] = ACTIONS(3062), - [anon_sym_asm] = ACTIONS(3062), - [anon_sym_AT_LBRACK] = ACTIONS(3062), - [sym___double_quote] = ACTIONS(3062), - [sym___single_quote] = ACTIONS(3062), - [sym___c_double_quote] = ACTIONS(3062), - [sym___c_single_quote] = ACTIONS(3062), - [sym___r_double_quote] = ACTIONS(3062), - [sym___r_single_quote] = ACTIONS(3062), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4432), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [502] = { [sym_line_comment] = STATE(502), [sym_block_comment] = STATE(502), - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [aux_sym__array_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4453), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(3064), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [503] = { [sym_line_comment] = STATE(503), [sym_block_comment] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(3066), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LF] = ACTIONS(3068), - [anon_sym_CR] = ACTIONS(3068), - [anon_sym_CR_LF] = ACTIONS(3068), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_as] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_COMMA] = ACTIONS(3068), - [anon_sym_const] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_EQ] = ACTIONS(3068), - [anon_sym___global] = ACTIONS(3068), - [anon_sym_type] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_SLASH] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_GT] = ACTIONS(3068), - [anon_sym_EQ_EQ] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3068), - [anon_sym_LT_EQ] = ACTIONS(3068), - [anon_sym_GT_EQ] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(3068), - [anon_sym_union] = ACTIONS(3068), - [anon_sym_pub] = ACTIONS(3068), - [anon_sym_mut] = ACTIONS(3068), - [anon_sym_enum] = ACTIONS(3068), - [anon_sym_interface] = ACTIONS(3068), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3068), - [anon_sym_spawn] = ACTIONS(3068), - [anon_sym_json_DOTdecode] = ACTIONS(3068), - [anon_sym_LBRACK2] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_CARET] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_LT_DASH] = ACTIONS(3068), - [anon_sym_LT_LT] = ACTIONS(3068), - [anon_sym_GT_GT] = ACTIONS(3068), - [anon_sym_GT_GT_GT] = ACTIONS(3068), - [anon_sym_AMP_CARET] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3068), - [sym_none] = ACTIONS(3068), - [sym_true] = ACTIONS(3068), - [sym_false] = ACTIONS(3068), - [sym_nil] = ACTIONS(3068), - [anon_sym_QMARK_DOT] = ACTIONS(3068), - [anon_sym_POUND_LBRACK] = ACTIONS(3068), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_DOLLARif] = ACTIONS(3068), - [anon_sym_is] = ACTIONS(3068), - [anon_sym_BANGis] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_BANGin] = ACTIONS(3068), - [anon_sym_match] = ACTIONS(3068), - [anon_sym_select] = ACTIONS(3068), - [anon_sym_STAR_EQ] = ACTIONS(3068), - [anon_sym_SLASH_EQ] = ACTIONS(3068), - [anon_sym_PERCENT_EQ] = ACTIONS(3068), - [anon_sym_LT_LT_EQ] = ACTIONS(3068), - [anon_sym_GT_GT_EQ] = ACTIONS(3068), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3068), - [anon_sym_AMP_EQ] = ACTIONS(3068), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3068), - [anon_sym_PLUS_EQ] = ACTIONS(3068), - [anon_sym_DASH_EQ] = ACTIONS(3068), - [anon_sym_PIPE_EQ] = ACTIONS(3068), - [anon_sym_CARET_EQ] = ACTIONS(3068), - [anon_sym_COLON_EQ] = ACTIONS(3068), - [anon_sym_lock] = ACTIONS(3068), - [anon_sym_rlock] = ACTIONS(3068), - [anon_sym_unsafe] = ACTIONS(3068), - [anon_sym_sql] = ACTIONS(3068), - [sym_int_literal] = ACTIONS(3068), - [sym_float_literal] = ACTIONS(3068), - [sym_rune_literal] = ACTIONS(3068), - [sym_pseudo_compile_time_identifier] = ACTIONS(3068), - [anon_sym_shared] = ACTIONS(3068), - [anon_sym_map_LBRACK] = ACTIONS(3068), - [anon_sym_chan] = ACTIONS(3068), - [anon_sym_thread] = ACTIONS(3068), - [anon_sym_atomic] = ACTIONS(3068), - [anon_sym_assert] = ACTIONS(3068), - [anon_sym_defer] = ACTIONS(3068), - [anon_sym_goto] = ACTIONS(3068), - [anon_sym_break] = ACTIONS(3068), - [anon_sym_continue] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3068), - [anon_sym_DOLLARfor] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3068), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_asm] = ACTIONS(3068), - [anon_sym_AT_LBRACK] = ACTIONS(3068), - [sym___double_quote] = ACTIONS(3068), - [sym___single_quote] = ACTIONS(3068), - [sym___c_double_quote] = ACTIONS(3068), - [sym___c_single_quote] = ACTIONS(3068), - [sym___r_double_quote] = ACTIONS(3068), - [sym___r_single_quote] = ACTIONS(3068), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4469), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [504] = { [sym_line_comment] = STATE(504), [sym_block_comment] = STATE(504), - [sym__expression] = STATE(2526), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym__definite_range] = STATE(4367), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2905), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2908), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(3074), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3076), - [anon_sym_spawn] = ACTIONS(3078), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3082), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(3076), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [505] = { [sym_line_comment] = STATE(505), [sym_block_comment] = STATE(505), - [sym__expression] = STATE(2752), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2704), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3088), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(3078), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [506] = { [sym_line_comment] = STATE(506), [sym_block_comment] = STATE(506), - [sym__expression] = STATE(2640), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4352), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1776), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(850), + [sym_mutable_expression] = STATE(3265), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [507] = { [sym_line_comment] = STATE(507), [sym_block_comment] = STATE(507), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2943), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2945), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2639), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(773), + [sym_mutable_expression] = STATE(4460), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(3108), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(3110), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2955), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2888), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2948), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2951), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(3100), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(3114), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(3102), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [509] = { [sym_line_comment] = STATE(509), [sym_block_comment] = STATE(509), - [sym__expression] = STATE(2766), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2801), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(3116), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(3104), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [510] = { [sym_line_comment] = STATE(510), [sym_block_comment] = STATE(510), - [sym__expression] = STATE(954), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(855), - [sym_mutable_expression] = STATE(1450), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2450), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3928), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1083), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2251), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [511] = { [sym_line_comment] = STATE(511), [sym_block_comment] = STATE(511), - [sym__expression] = STATE(2733), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4373), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2305), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(624), + [sym_mutable_expression] = STATE(3562), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_LT_DASH] = ACTIONS(2525), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [512] = { [sym_line_comment] = STATE(512), [sym_block_comment] = STATE(512), - [sym__expression] = STATE(1765), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(707), - [sym_mutable_expression] = STATE(3264), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1681), + [sym__expression] = STATE(2787), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(3110), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [513] = { [sym_line_comment] = STATE(513), [sym_block_comment] = STATE(513), - [sym__expression] = STATE(2777), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4468), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2956), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2935), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(3112), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(3114), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [514] = { [sym_line_comment] = STATE(514), [sym_block_comment] = STATE(514), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2920), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2885), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(962), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(653), + [sym_mutable_expression] = STATE(1442), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(3120), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(3122), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_LT_DASH] = ACTIONS(2567), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [515] = { [sym_line_comment] = STATE(515), [sym_block_comment] = STATE(515), - [sym__expression] = STATE(2754), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4394), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2917), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2924), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(3118), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [516] = { [sym_line_comment] = STATE(516), [sym_block_comment] = STATE(516), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2922), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2924), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2890), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2901), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(3124), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(3120), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(3126), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(3122), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [517] = { [sym_line_comment] = STATE(517), [sym_block_comment] = STATE(517), - [sym__expression] = STATE(2757), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4415), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [518] = { [sym_line_comment] = STATE(518), [sym_block_comment] = STATE(518), - [sym__expression] = STATE(2624), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4331), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2546), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(870), + [sym_mutable_expression] = STATE(3268), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [519] = { [sym_line_comment] = STATE(519), [sym_block_comment] = STATE(519), - [sym__expression] = STATE(2359), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(805), - [sym_mutable_expression] = STATE(3560), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2906), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2899), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(3128), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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), - [sym__expression] = STATE(2767), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2571), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym__definite_range] = STATE(4488), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3128), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3138), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3142), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3144), + [anon_sym_lock] = ACTIONS(3146), + [anon_sym_rlock] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [521] = { [sym_line_comment] = STATE(521), [sym_block_comment] = STATE(521), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2949), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2947), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(1778), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(790), + [sym_mutable_expression] = STATE(3267), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(3130), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(3132), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_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), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2904), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2892), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2768), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(773), + [sym_mutable_expression] = STATE(4388), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(3134), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(3136), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [523] = { [sym_line_comment] = STATE(523), [sym_block_comment] = STATE(523), - [sym__expression] = STATE(2625), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4346), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2610), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(695), + [sym_mutable_expression] = STATE(3268), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [524] = { [sym_line_comment] = STATE(524), [sym_block_comment] = STATE(524), - [sym__expression] = STATE(2433), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3934), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1071), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2919), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2927), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(3170), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3138), - [anon_sym_lock] = ACTIONS(3140), - [anon_sym_rlock] = ACTIONS(3140), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(3172), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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), - [sym__expression] = STATE(2619), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(900), - [sym_mutable_expression] = STATE(3269), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2779), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(773), + [sym_mutable_expression] = STATE(4373), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [526] = { [sym_line_comment] = STATE(526), [sym_block_comment] = STATE(526), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2893), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2897), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2824), + [sym__expression_without_blocks] = STATE(2827), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_expression_without_blocks_list] = STATE(4398), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(3142), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(3144), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2907), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2932), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2824), + [sym__expression_without_blocks] = STATE(2827), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_expression_without_blocks_list] = STATE(4399), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(3146), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(3148), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [528] = { [sym_line_comment] = STATE(528), [sym_block_comment] = STATE(528), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2958), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2959), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2546), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(582), + [sym_mutable_expression] = STATE(3268), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(3152), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [529] = { [sym_line_comment] = STATE(529), [sym_block_comment] = STATE(529), - [sym__expression] = STATE(2654), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4376), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2942), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2940), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(3174), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(3176), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [530] = { [sym_line_comment] = STATE(530), [sym_block_comment] = STATE(530), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2927), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2936), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2766), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(773), + [sym_mutable_expression] = STATE(4315), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(3154), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(3156), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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), - [sym__expression] = STATE(2775), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4457), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2896), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2945), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(3178), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(3180), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [532] = { [sym_line_comment] = STATE(532), [sym_block_comment] = STATE(532), - [sym__expression] = STATE(2676), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4400), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(215), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_mutability_modifiers] = STATE(896), + [sym_mutable_expression] = STATE(1103), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3182), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [533] = { [sym_line_comment] = STATE(533), [sym_block_comment] = STATE(533), - [sym__expression] = STATE(2488), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(893), - [sym_mutable_expression] = STATE(3269), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2765), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(773), + [sym_mutable_expression] = STATE(4351), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [534] = { [sym_line_comment] = STATE(534), [sym_block_comment] = STATE(534), - [sym__expression] = STATE(2826), - [sym__expression_without_blocks] = STATE(2825), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_expression_without_blocks_list] = STATE(4489), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2946), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2900), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(3186), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(3188), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [535] = { [sym_line_comment] = STATE(535), [sym_block_comment] = STATE(535), - [sym__expression] = STATE(2769), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4436), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2805), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(773), + [sym_mutable_expression] = STATE(4326), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [536] = { [sym_line_comment] = STATE(536), [sym_block_comment] = STATE(536), - [sym__expression] = STATE(1906), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(652), - [sym_mutable_expression] = STATE(3269), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), + [sym__expression] = STATE(1622), + [sym__expression_without_blocks] = STATE(1814), + [sym__expression_with_blocks] = STATE(1814), + [sym_inc_expression] = STATE(1819), + [sym_dec_expression] = STATE(1819), + [sym_or_block_expression] = STATE(1819), + [sym_option_propagation_expression] = STATE(1819), + [sym_result_propagation_expression] = STATE(1819), + [sym_anon_struct_value_expression] = STATE(1823), + [sym_go_expression] = STATE(1819), + [sym_spawn_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_type_initializer] = STATE(1823), + [sym_function_literal] = STATE(1819), + [sym_reference_expression] = STATE(1833), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1819), + [sym_receive_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_as_type_cast_expression] = STATE(1819), + [sym__max_group] = STATE(1819), + [sym_literal] = STATE(1812), + [sym_map_init_expression] = STATE(1823), + [sym_array_creation] = STATE(1819), + [sym_fixed_array_creation] = STATE(1819), + [sym_selector_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_slice_expression] = STATE(1819), + [sym_if_expression] = STATE(1823), + [sym_compile_time_if_expression] = STATE(1823), + [sym_is_expression] = STATE(1819), + [sym_in_expression] = STATE(1819), + [sym_enum_fetch] = STATE(1819), + [sym_match_expression] = STATE(1823), + [sym_select_expression] = STATE(1823), + [sym_lock_expression] = STATE(1823), + [sym_unsafe_expression] = STATE(1823), + [sym_sql_expression] = STATE(1823), + [sym_interpreted_string_literal] = STATE(1811), + [sym_c_string_literal] = STATE(1811), + [sym_raw_string_literal] = STATE(1811), + [sym_mutability_modifiers] = STATE(833), + [sym_mutable_expression] = STATE(3254), + [sym_plain_type] = STATE(4219), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3190), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3204), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3208), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3212), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT_DASH] = ACTIONS(3218), + [sym_none] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_nil] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3228), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3232), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3220), + [sym_float_literal] = ACTIONS(3236), + [sym_rune_literal] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3242), + [anon_sym_c_DQUOTE] = ACTIONS(3244), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3248), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [537] = { [sym_line_comment] = STATE(537), [sym_block_comment] = STATE(537), - [sym__expression] = STATE(2778), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4473), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2958), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2959), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(3252), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(3254), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [538] = { [sym_line_comment] = STATE(538), [sym_block_comment] = STATE(538), - [sym__expression] = STATE(2826), - [sym__expression_without_blocks] = STATE(2825), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_expression_without_blocks_list] = STATE(4495), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2783), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(773), + [sym_mutable_expression] = STATE(4347), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [539] = { [sym_line_comment] = STATE(539), [sym_block_comment] = STATE(539), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2942), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2929), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2936), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2937), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(3180), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(3256), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(3182), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(3258), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [540] = { [sym_line_comment] = STATE(540), [sym_block_comment] = STATE(540), - [sym__expression] = STATE(210), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_mutability_modifiers] = STATE(933), - [sym_mutable_expression] = STATE(1102), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3184), + [sym__expression] = STATE(2756), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(773), + [sym_mutable_expression] = STATE(4368), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2939), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2950), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2893), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2885), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(3188), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(3260), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(3190), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(3262), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2903), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2898), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2658), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(773), + [sym_mutable_expression] = STATE(4389), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(3192), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(3194), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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(2787), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2672), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(773), + [sym_mutable_expression] = STATE(4410), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(3196), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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__expression] = STATE(1626), - [sym__expression_without_blocks] = STATE(1799), - [sym__expression_with_blocks] = STATE(1799), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1801), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1801), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1844), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1797), - [sym_map_init_expression] = STATE(1801), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1801), - [sym_compile_time_if_expression] = STATE(1801), - [sym_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1801), - [sym_select_expression] = STATE(1801), - [sym_lock_expression] = STATE(1801), - [sym_unsafe_expression] = STATE(1801), - [sym_sql_expression] = STATE(1801), - [sym_c_string_literal] = STATE(1792), - [sym_raw_string_literal] = STATE(1792), - [sym_interpreted_string_literal] = STATE(1792), - [sym_mutability_modifiers] = STATE(737), - [sym_mutable_expression] = STATE(3254), - [sym_plain_type] = STATE(4300), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3198), + [sym__expression] = STATE(1903), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(879), + [sym_mutable_expression] = STATE(3268), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_fn] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_STAR] = ACTIONS(3210), - [anon_sym_struct] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_go] = ACTIONS(3216), - [anon_sym_spawn] = ACTIONS(3218), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_CARET] = ACTIONS(3208), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), - [sym_none] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_nil] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_DOLLARif] = ACTIONS(3232), - [anon_sym_match] = ACTIONS(3234), - [anon_sym_select] = ACTIONS(3236), - [anon_sym_lock] = ACTIONS(3238), - [anon_sym_rlock] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(3240), - [anon_sym_sql] = ACTIONS(3242), - [sym_int_literal] = ACTIONS(3228), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3246), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3248), - [sym___single_quote] = ACTIONS(3250), - [sym___c_double_quote] = ACTIONS(3252), - [sym___c_single_quote] = ACTIONS(3254), - [sym___r_double_quote] = ACTIONS(3256), - [sym___r_single_quote] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [545] = { [sym_line_comment] = STATE(545), [sym_block_comment] = STATE(545), - [sym__expression] = STATE(2731), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4494), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2746), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(773), + [sym_mutable_expression] = STATE(4431), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2948), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2931), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2760), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(773), + [sym_mutable_expression] = STATE(4452), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(3260), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(3262), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2951), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2906), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2939), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2894), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), [anon_sym_RBRACK] = ACTIONS(3264), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), [sym_int_literal] = ACTIONS(3266), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [548] = { [sym_line_comment] = STATE(548), [sym_block_comment] = STATE(548), - [sym__expression] = STATE(2488), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(655), - [sym_mutable_expression] = STATE(3269), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2778), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(773), + [sym_mutable_expression] = STATE(4468), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [549] = { [sym_line_comment] = STATE(549), [sym_block_comment] = STATE(549), - [sym__expression] = STATE(1766), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(625), - [sym_mutable_expression] = STATE(3268), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2929), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2933), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(3268), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(3270), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [550] = { [sym_line_comment] = STATE(550), [sym_block_comment] = STATE(550), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2923), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2899), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2904), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2949), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(3268), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(3272), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(3270), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(3274), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [551] = { [sym_line_comment] = STATE(551), [sym_block_comment] = STATE(551), - [sym__expression] = STATE(1116), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(225), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_mutability_modifiers] = STATE(649), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3182), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [552] = { [sym_line_comment] = STATE(552), [sym_block_comment] = STATE(552), - [sym__expression] = STATE(2500), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2267), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3076), - [anon_sym_spawn] = ACTIONS(3078), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3082), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3304), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3316), + [anon_sym_rlock] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [553] = { [sym_line_comment] = STATE(553), [sym_block_comment] = STATE(553), - [sym__expression] = STATE(2832), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(3553), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [554] = { [sym_line_comment] = STATE(554), [sym_block_comment] = STATE(554), - [sym__expression] = STATE(1753), - [sym__expression_without_blocks] = STATE(1915), - [sym__expression_with_blocks] = STATE(1915), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(1939), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(1939), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(1939), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(1939), - [sym_compile_time_if_expression] = STATE(1939), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(1939), - [sym_select_expression] = STATE(1939), - [sym_lock_expression] = STATE(1939), - [sym_unsafe_expression] = STATE(1939), - [sym_sql_expression] = STATE(1939), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(555), - [sym_plain_type] = STATE(4014), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3272), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(3555), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3282), - [anon_sym_select] = ACTIONS(3284), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3288), - [anon_sym_sql] = ACTIONS(3290), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [555] = { [sym_line_comment] = STATE(555), [sym_block_comment] = STATE(555), - [sym__expression] = STATE(2827), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [556] = { [sym_line_comment] = STATE(556), [sym_block_comment] = STATE(556), - [sym__expression] = STATE(1754), - [sym__expression_without_blocks] = STATE(1915), - [sym__expression_with_blocks] = STATE(1915), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(1939), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(1939), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(1939), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(1939), - [sym_compile_time_if_expression] = STATE(1939), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(1939), - [sym_select_expression] = STATE(1939), - [sym_lock_expression] = STATE(1939), - [sym_unsafe_expression] = STATE(1939), - [sym_sql_expression] = STATE(1939), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(555), - [sym_plain_type] = STATE(4014), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3272), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(3553), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3282), - [anon_sym_select] = ACTIONS(3284), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3288), - [anon_sym_sql] = ACTIONS(3290), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [557] = { [sym_line_comment] = STATE(557), [sym_block_comment] = STATE(557), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(3558), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(1772), + [sym__expression_without_blocks] = STATE(1975), + [sym__expression_with_blocks] = STATE(1975), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(1976), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(1976), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(1976), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(1976), + [sym_compile_time_if_expression] = STATE(1976), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(1976), + [sym_select_expression] = STATE(1976), + [sym_lock_expression] = STATE(1976), + [sym_unsafe_expression] = STATE(1976), + [sym_sql_expression] = STATE(1976), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(616), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3338), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3342), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3352), + [anon_sym_rlock] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [558] = { [sym_line_comment] = STATE(558), [sym_block_comment] = STATE(558), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(1773), + [sym__expression_without_blocks] = STATE(1975), + [sym__expression_with_blocks] = STATE(1975), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(1976), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(1976), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(1976), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(1976), + [sym_compile_time_if_expression] = STATE(1976), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(1976), + [sym_select_expression] = STATE(1976), + [sym_lock_expression] = STATE(1976), + [sym_unsafe_expression] = STATE(1976), + [sym_sql_expression] = STATE(1976), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(616), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3338), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3342), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3352), + [anon_sym_rlock] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [559] = { [sym_line_comment] = STATE(559), [sym_block_comment] = STATE(559), - [sym__expression] = STATE(1755), - [sym__expression_without_blocks] = STATE(1915), - [sym__expression_with_blocks] = STATE(1915), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(1939), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(1939), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(1939), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(1939), - [sym_compile_time_if_expression] = STATE(1939), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(1939), - [sym_select_expression] = STATE(1939), - [sym_lock_expression] = STATE(1939), - [sym_unsafe_expression] = STATE(1939), - [sym_sql_expression] = STATE(1939), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(555), - [sym_plain_type] = STATE(4014), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3272), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(3552), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3282), - [anon_sym_select] = ACTIONS(3284), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3288), - [anon_sym_sql] = ACTIONS(3290), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [560] = { [sym_line_comment] = STATE(560), [sym_block_comment] = STATE(560), - [sym__expression] = STATE(1755), - [sym__expression_without_blocks] = STATE(1915), - [sym__expression_with_blocks] = STATE(1915), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(1939), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(1939), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(1939), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(1939), - [sym_compile_time_if_expression] = STATE(1939), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(1939), - [sym_select_expression] = STATE(1939), - [sym_lock_expression] = STATE(1939), - [sym_unsafe_expression] = STATE(1939), - [sym_sql_expression] = STATE(1939), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(555), - [sym_plain_type] = STATE(4272), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3272), + [sym__expression] = STATE(1774), + [sym__expression_without_blocks] = STATE(1975), + [sym__expression_with_blocks] = STATE(1975), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(1976), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(1976), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(1976), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(1976), + [sym_compile_time_if_expression] = STATE(1976), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(1976), + [sym_select_expression] = STATE(1976), + [sym_lock_expression] = STATE(1976), + [sym_unsafe_expression] = STATE(1976), + [sym_sql_expression] = STATE(1976), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(616), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3338), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3342), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3282), - [anon_sym_select] = ACTIONS(3284), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3288), - [anon_sym_sql] = ACTIONS(3290), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3352), + [anon_sym_rlock] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [561] = { [sym_line_comment] = STATE(561), [sym_block_comment] = STATE(561), - [sym__expression] = STATE(2823), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2310), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3364), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(3372), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [562] = { [sym_line_comment] = STATE(562), [sym_block_comment] = STATE(562), - [sym__expression] = STATE(2261), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2309), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3364), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(3372), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [563] = { [sym_line_comment] = STATE(563), [sym_block_comment] = STATE(563), - [sym__expression] = STATE(1109), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4170), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(2308), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3364), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(3372), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_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(2522), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2306), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3364), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(3372), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [565] = { [sym_line_comment] = STATE(565), [sym_block_comment] = STATE(565), - [sym__expression] = STATE(2550), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2282), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3364), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(3372), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [566] = { [sym_line_comment] = STATE(566), [sym_block_comment] = STATE(566), - [sym__expression] = STATE(1109), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1905), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_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__expression] = STATE(1109), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1751), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_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(2285), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_LT_DASH] = ACTIONS(2525), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [569] = { + [sym_line_comment] = STATE(569), + [sym_block_comment] = STATE(569), + [sym__expression] = STATE(1116), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -88612,3162 +88816,2478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), - }, - [568] = { - [sym_line_comment] = STATE(568), - [sym_block_comment] = STATE(568), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [569] = { - [sym_line_comment] = STATE(569), - [sym_block_comment] = STATE(569), - [sym__expression] = STATE(1280), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [570] = { [sym_line_comment] = STATE(570), [sym_block_comment] = STATE(570), - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2288), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3364), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(3372), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [571] = { [sym_line_comment] = STATE(571), [sym_block_comment] = STATE(571), - [sym__expression] = STATE(1272), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2491), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [572] = { [sym_line_comment] = STATE(572), [sym_block_comment] = STATE(572), - [sym__expression] = STATE(1271), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2186), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [573] = { [sym_line_comment] = STATE(573), [sym_block_comment] = STATE(573), - [sym__expression] = STATE(1254), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(958), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_LT_DASH] = ACTIONS(2567), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [574] = { [sym_line_comment] = STATE(574), [sym_block_comment] = STATE(574), - [sym__expression] = STATE(1278), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2122), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [575] = { [sym_line_comment] = STATE(575), [sym_block_comment] = STATE(575), - [sym__expression] = STATE(2820), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [sym__expression] = STATE(1128), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [576] = { [sym_line_comment] = STATE(576), [sym_block_comment] = STATE(576), - [sym__expression] = STATE(1659), - [sym__expression_without_blocks] = STATE(1799), - [sym__expression_with_blocks] = STATE(1799), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1801), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1801), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1844), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1797), - [sym_map_init_expression] = STATE(1801), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1801), - [sym_compile_time_if_expression] = STATE(1801), - [sym_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1801), - [sym_select_expression] = STATE(1801), - [sym_lock_expression] = STATE(1801), - [sym_unsafe_expression] = STATE(1801), - [sym_sql_expression] = STATE(1801), - [sym_c_string_literal] = STATE(1792), - [sym_raw_string_literal] = STATE(1792), - [sym_interpreted_string_literal] = STATE(1792), - [sym_mutability_modifiers] = STATE(868), - [sym_plain_type] = STATE(4300), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3198), + [sym__expression] = STATE(2358), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_fn] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_STAR] = ACTIONS(3210), - [anon_sym_struct] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_go] = ACTIONS(3216), - [anon_sym_spawn] = ACTIONS(3218), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_CARET] = ACTIONS(3208), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), - [sym_none] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_nil] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_DOLLARif] = ACTIONS(3232), - [anon_sym_match] = ACTIONS(3234), - [anon_sym_select] = ACTIONS(3236), - [anon_sym_lock] = ACTIONS(3238), - [anon_sym_rlock] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(3240), - [anon_sym_sql] = ACTIONS(3242), - [sym_int_literal] = ACTIONS(3228), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3246), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3248), - [sym___single_quote] = ACTIONS(3250), - [sym___c_double_quote] = ACTIONS(3252), - [sym___c_single_quote] = ACTIONS(3254), - [sym___r_double_quote] = ACTIONS(3256), - [sym___r_single_quote] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_LT_DASH] = ACTIONS(2525), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [577] = { [sym_line_comment] = STATE(577), [sym_block_comment] = STATE(577), - [sym__expression] = STATE(1658), - [sym__expression_without_blocks] = STATE(1799), - [sym__expression_with_blocks] = STATE(1799), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1801), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1801), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1844), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1797), - [sym_map_init_expression] = STATE(1801), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1801), - [sym_compile_time_if_expression] = STATE(1801), - [sym_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1801), - [sym_select_expression] = STATE(1801), - [sym_lock_expression] = STATE(1801), - [sym_unsafe_expression] = STATE(1801), - [sym_sql_expression] = STATE(1801), - [sym_c_string_literal] = STATE(1792), - [sym_raw_string_literal] = STATE(1792), - [sym_interpreted_string_literal] = STATE(1792), - [sym_mutability_modifiers] = STATE(868), - [sym_plain_type] = STATE(4300), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3198), + [sym__expression] = STATE(1109), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_fn] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_STAR] = ACTIONS(3210), - [anon_sym_struct] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_go] = ACTIONS(3216), - [anon_sym_spawn] = ACTIONS(3218), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_CARET] = ACTIONS(3208), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), - [sym_none] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_nil] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_DOLLARif] = ACTIONS(3232), - [anon_sym_match] = ACTIONS(3234), - [anon_sym_select] = ACTIONS(3236), - [anon_sym_lock] = ACTIONS(3238), - [anon_sym_rlock] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(3240), - [anon_sym_sql] = ACTIONS(3242), - [sym_int_literal] = ACTIONS(3228), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3246), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3248), - [sym___single_quote] = ACTIONS(3250), - [sym___c_double_quote] = ACTIONS(3252), - [sym___c_single_quote] = ACTIONS(3254), - [sym___r_double_quote] = ACTIONS(3256), - [sym___r_single_quote] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [578] = { [sym_line_comment] = STATE(578), [sym_block_comment] = STATE(578), - [sym__expression] = STATE(1755), - [sym__expression_without_blocks] = STATE(1915), - [sym__expression_with_blocks] = STATE(1915), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(1939), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(1939), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(1939), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(1939), - [sym_compile_time_if_expression] = STATE(1939), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(1939), - [sym_select_expression] = STATE(1939), - [sym_lock_expression] = STATE(1939), - [sym_unsafe_expression] = STATE(1939), - [sym_sql_expression] = STATE(1939), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(555), - [sym_plain_type] = STATE(4274), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3272), + [sym__expression] = STATE(221), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_mutability_modifiers] = STATE(649), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3182), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3282), - [anon_sym_select] = ACTIONS(3284), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3288), - [anon_sym_sql] = ACTIONS(3290), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [579] = { [sym_line_comment] = STATE(579), [sym_block_comment] = STATE(579), - [sym__expression] = STATE(1752), - [sym__expression_without_blocks] = STATE(1915), - [sym__expression_with_blocks] = STATE(1915), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(1939), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(1939), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(1939), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(1939), - [sym_compile_time_if_expression] = STATE(1939), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(1939), - [sym_select_expression] = STATE(1939), - [sym_lock_expression] = STATE(1939), - [sym_unsafe_expression] = STATE(1939), - [sym_sql_expression] = STATE(1939), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(555), - [sym_plain_type] = STATE(4014), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3272), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2918), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2921), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3282), - [anon_sym_select] = ACTIONS(3284), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3288), - [anon_sym_sql] = ACTIONS(3290), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [580] = { [sym_line_comment] = STATE(580), [sym_block_comment] = STATE(580), - [sym__expression] = STATE(2433), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3934), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(3555), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3076), - [anon_sym_spawn] = ACTIONS(3078), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3082), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [581] = { [sym_line_comment] = STATE(581), [sym_block_comment] = STATE(581), - [sym__expression] = STATE(1657), - [sym__expression_without_blocks] = STATE(1799), - [sym__expression_with_blocks] = STATE(1799), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1801), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1801), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1844), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1797), - [sym_map_init_expression] = STATE(1801), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1801), - [sym_compile_time_if_expression] = STATE(1801), - [sym_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1801), - [sym_select_expression] = STATE(1801), - [sym_lock_expression] = STATE(1801), - [sym_unsafe_expression] = STATE(1801), - [sym_sql_expression] = STATE(1801), - [sym_c_string_literal] = STATE(1792), - [sym_raw_string_literal] = STATE(1792), - [sym_interpreted_string_literal] = STATE(1792), - [sym_mutability_modifiers] = STATE(868), - [sym_plain_type] = STATE(4300), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3198), + [sym__expression] = STATE(2173), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_fn] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_STAR] = ACTIONS(3210), - [anon_sym_struct] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_go] = ACTIONS(3216), - [anon_sym_spawn] = ACTIONS(3218), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_CARET] = ACTIONS(3208), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), - [sym_none] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_nil] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_DOLLARif] = ACTIONS(3232), - [anon_sym_match] = ACTIONS(3234), - [anon_sym_select] = ACTIONS(3236), - [anon_sym_lock] = ACTIONS(3238), - [anon_sym_rlock] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(3240), - [anon_sym_sql] = ACTIONS(3242), - [sym_int_literal] = ACTIONS(3228), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3246), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3248), - [sym___single_quote] = ACTIONS(3250), - [sym___c_double_quote] = ACTIONS(3252), - [sym___c_single_quote] = ACTIONS(3254), - [sym___r_double_quote] = ACTIONS(3256), - [sym___r_single_quote] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [582] = { [sym_line_comment] = STATE(582), [sym_block_comment] = STATE(582), - [sym__expression] = STATE(1755), - [sym__expression_without_blocks] = STATE(1915), - [sym__expression_with_blocks] = STATE(1915), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(1939), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(1939), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(1939), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(1939), - [sym_compile_time_if_expression] = STATE(1939), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(1939), - [sym_select_expression] = STATE(1939), - [sym_lock_expression] = STATE(1939), - [sym_unsafe_expression] = STATE(1939), - [sym_sql_expression] = STATE(1939), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(555), - [sym_plain_type] = STATE(4281), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3272), + [sym__expression] = STATE(2602), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3282), - [anon_sym_select] = ACTIONS(3284), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3288), - [anon_sym_sql] = ACTIONS(3290), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [583] = { [sym_line_comment] = STATE(583), [sym_block_comment] = STATE(583), - [sym__expression] = STATE(1656), - [sym__expression_without_blocks] = STATE(1799), - [sym__expression_with_blocks] = STATE(1799), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1801), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1801), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1844), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1797), - [sym_map_init_expression] = STATE(1801), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1801), - [sym_compile_time_if_expression] = STATE(1801), - [sym_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1801), - [sym_select_expression] = STATE(1801), - [sym_lock_expression] = STATE(1801), - [sym_unsafe_expression] = STATE(1801), - [sym_sql_expression] = STATE(1801), - [sym_c_string_literal] = STATE(1792), - [sym_raw_string_literal] = STATE(1792), - [sym_interpreted_string_literal] = STATE(1792), - [sym_mutability_modifiers] = STATE(868), - [sym_plain_type] = STATE(4300), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3198), + [sym__expression] = STATE(2271), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_fn] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_STAR] = ACTIONS(3210), - [anon_sym_struct] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_go] = ACTIONS(3216), - [anon_sym_spawn] = ACTIONS(3218), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_CARET] = ACTIONS(3208), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), - [sym_none] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_nil] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_DOLLARif] = ACTIONS(3232), - [anon_sym_match] = ACTIONS(3234), - [anon_sym_select] = ACTIONS(3236), - [anon_sym_lock] = ACTIONS(3238), - [anon_sym_rlock] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(3240), - [anon_sym_sql] = ACTIONS(3242), - [sym_int_literal] = ACTIONS(3228), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3246), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3248), - [sym___single_quote] = ACTIONS(3250), - [sym___c_double_quote] = ACTIONS(3252), - [sym___c_single_quote] = ACTIONS(3254), - [sym___r_double_quote] = ACTIONS(3256), - [sym___r_single_quote] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3304), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3316), + [anon_sym_rlock] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [584] = { [sym_line_comment] = STATE(584), [sym_block_comment] = STATE(584), - [sym__expression] = STATE(218), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_mutability_modifiers] = STATE(845), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3184), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(3552), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [585] = { [sym_line_comment] = STATE(585), [sym_block_comment] = STATE(585), - [sym__expression] = STATE(218), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_mutability_modifiers] = STATE(845), - [sym_plain_type] = STATE(4181), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3184), + [sym__expression] = STATE(1668), + [sym__expression_without_blocks] = STATE(1814), + [sym__expression_with_blocks] = STATE(1814), + [sym_inc_expression] = STATE(1819), + [sym_dec_expression] = STATE(1819), + [sym_or_block_expression] = STATE(1819), + [sym_option_propagation_expression] = STATE(1819), + [sym_result_propagation_expression] = STATE(1819), + [sym_anon_struct_value_expression] = STATE(1823), + [sym_go_expression] = STATE(1819), + [sym_spawn_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_type_initializer] = STATE(1823), + [sym_function_literal] = STATE(1819), + [sym_reference_expression] = STATE(1833), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1819), + [sym_receive_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_as_type_cast_expression] = STATE(1819), + [sym__max_group] = STATE(1819), + [sym_literal] = STATE(1812), + [sym_map_init_expression] = STATE(1823), + [sym_array_creation] = STATE(1819), + [sym_fixed_array_creation] = STATE(1819), + [sym_selector_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_slice_expression] = STATE(1819), + [sym_if_expression] = STATE(1823), + [sym_compile_time_if_expression] = STATE(1823), + [sym_is_expression] = STATE(1819), + [sym_in_expression] = STATE(1819), + [sym_enum_fetch] = STATE(1819), + [sym_match_expression] = STATE(1823), + [sym_select_expression] = STATE(1823), + [sym_lock_expression] = STATE(1823), + [sym_unsafe_expression] = STATE(1823), + [sym_sql_expression] = STATE(1823), + [sym_interpreted_string_literal] = STATE(1811), + [sym_c_string_literal] = STATE(1811), + [sym_raw_string_literal] = STATE(1811), + [sym_mutability_modifiers] = STATE(614), + [sym_plain_type] = STATE(4219), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3190), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3204), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3208), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3212), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT_DASH] = ACTIONS(3218), + [sym_none] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_nil] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3228), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3232), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3220), + [sym_float_literal] = ACTIONS(3236), + [sym_rune_literal] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3242), + [anon_sym_c_DQUOTE] = ACTIONS(3244), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3248), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [586] = { [sym_line_comment] = STATE(586), [sym_block_comment] = STATE(586), - [sym__expression] = STATE(2260), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(1770), + [sym__expression_without_blocks] = STATE(1975), + [sym__expression_with_blocks] = STATE(1975), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(1976), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(1976), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(1976), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(1976), + [sym_compile_time_if_expression] = STATE(1976), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(1976), + [sym_select_expression] = STATE(1976), + [sym_lock_expression] = STATE(1976), + [sym_unsafe_expression] = STATE(1976), + [sym_sql_expression] = STATE(1976), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(616), + [sym_plain_type] = STATE(4110), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3338), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3342), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3310), - [anon_sym_spawn] = ACTIONS(3312), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_CARET] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3320), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3330), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3352), + [anon_sym_rlock] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [587] = { [sym_line_comment] = STATE(587), [sym_block_comment] = STATE(587), - [sym__expression] = STATE(221), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_mutability_modifiers] = STATE(845), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3184), + [sym__expression] = STATE(1770), + [sym__expression_without_blocks] = STATE(1975), + [sym__expression_with_blocks] = STATE(1975), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(1976), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(1976), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(1976), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(1976), + [sym_compile_time_if_expression] = STATE(1976), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(1976), + [sym_select_expression] = STATE(1976), + [sym_lock_expression] = STATE(1976), + [sym_unsafe_expression] = STATE(1976), + [sym_sql_expression] = STATE(1976), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(616), + [sym_plain_type] = STATE(4120), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3338), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3342), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3352), + [anon_sym_rlock] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [588] = { [sym_line_comment] = STATE(588), [sym_block_comment] = STATE(588), - [sym__expression] = STATE(228), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_mutability_modifiers] = STATE(845), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3184), + [sym__expression] = STATE(1669), + [sym__expression_without_blocks] = STATE(1814), + [sym__expression_with_blocks] = STATE(1814), + [sym_inc_expression] = STATE(1819), + [sym_dec_expression] = STATE(1819), + [sym_or_block_expression] = STATE(1819), + [sym_option_propagation_expression] = STATE(1819), + [sym_result_propagation_expression] = STATE(1819), + [sym_anon_struct_value_expression] = STATE(1823), + [sym_go_expression] = STATE(1819), + [sym_spawn_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_type_initializer] = STATE(1823), + [sym_function_literal] = STATE(1819), + [sym_reference_expression] = STATE(1833), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1819), + [sym_receive_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_as_type_cast_expression] = STATE(1819), + [sym__max_group] = STATE(1819), + [sym_literal] = STATE(1812), + [sym_map_init_expression] = STATE(1823), + [sym_array_creation] = STATE(1819), + [sym_fixed_array_creation] = STATE(1819), + [sym_selector_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_slice_expression] = STATE(1819), + [sym_if_expression] = STATE(1823), + [sym_compile_time_if_expression] = STATE(1823), + [sym_is_expression] = STATE(1819), + [sym_in_expression] = STATE(1819), + [sym_enum_fetch] = STATE(1819), + [sym_match_expression] = STATE(1823), + [sym_select_expression] = STATE(1823), + [sym_lock_expression] = STATE(1823), + [sym_unsafe_expression] = STATE(1823), + [sym_sql_expression] = STATE(1823), + [sym_interpreted_string_literal] = STATE(1811), + [sym_c_string_literal] = STATE(1811), + [sym_raw_string_literal] = STATE(1811), + [sym_mutability_modifiers] = STATE(614), + [sym_plain_type] = STATE(4219), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3190), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3204), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3208), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3212), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT_DASH] = ACTIONS(3218), + [sym_none] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_nil] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3228), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3232), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3220), + [sym_float_literal] = ACTIONS(3236), + [sym_rune_literal] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3242), + [anon_sym_c_DQUOTE] = ACTIONS(3244), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3248), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [589] = { [sym_line_comment] = STATE(589), [sym_block_comment] = STATE(589), - [sym__expression] = STATE(2807), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(1631), + [sym__expression_without_blocks] = STATE(1814), + [sym__expression_with_blocks] = STATE(1814), + [sym_inc_expression] = STATE(1819), + [sym_dec_expression] = STATE(1819), + [sym_or_block_expression] = STATE(1819), + [sym_option_propagation_expression] = STATE(1819), + [sym_result_propagation_expression] = STATE(1819), + [sym_anon_struct_value_expression] = STATE(1823), + [sym_go_expression] = STATE(1819), + [sym_spawn_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_type_initializer] = STATE(1823), + [sym_function_literal] = STATE(1819), + [sym_reference_expression] = STATE(1833), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1819), + [sym_receive_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_as_type_cast_expression] = STATE(1819), + [sym__max_group] = STATE(1819), + [sym_literal] = STATE(1812), + [sym_map_init_expression] = STATE(1823), + [sym_array_creation] = STATE(1819), + [sym_fixed_array_creation] = STATE(1819), + [sym_selector_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_slice_expression] = STATE(1819), + [sym_if_expression] = STATE(1823), + [sym_compile_time_if_expression] = STATE(1823), + [sym_is_expression] = STATE(1819), + [sym_in_expression] = STATE(1819), + [sym_enum_fetch] = STATE(1819), + [sym_match_expression] = STATE(1823), + [sym_select_expression] = STATE(1823), + [sym_lock_expression] = STATE(1823), + [sym_unsafe_expression] = STATE(1823), + [sym_sql_expression] = STATE(1823), + [sym_interpreted_string_literal] = STATE(1811), + [sym_c_string_literal] = STATE(1811), + [sym_raw_string_literal] = STATE(1811), + [sym_mutability_modifiers] = STATE(614), + [sym_plain_type] = STATE(4219), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3190), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3204), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3208), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3212), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT_DASH] = ACTIONS(3218), + [sym_none] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_nil] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3228), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3232), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3220), + [sym_float_literal] = ACTIONS(3236), + [sym_rune_literal] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3242), + [anon_sym_c_DQUOTE] = ACTIONS(3244), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3248), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [590] = { [sym_line_comment] = STATE(590), [sym_block_comment] = STATE(590), - [sym__expression] = STATE(2122), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(1110), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3310), - [anon_sym_spawn] = ACTIONS(3312), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_CARET] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3320), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3330), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [591] = { [sym_line_comment] = STATE(591), [sym_block_comment] = STATE(591), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2127), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [592] = { - [sym_line_comment] = STATE(592), - [sym_block_comment] = STATE(592), - [sym__expression] = STATE(2274), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3306), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3310), - [anon_sym_spawn] = ACTIONS(3312), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_CARET] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3320), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3330), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), - }, - [593] = { - [sym_line_comment] = STATE(593), - [sym_block_comment] = STATE(593), - [sym__expression] = STATE(2275), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3306), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3310), - [anon_sym_spawn] = ACTIONS(3312), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_CARET] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3320), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3330), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), - }, - [594] = { - [sym_line_comment] = STATE(594), - [sym_block_comment] = STATE(594), - [sym__expression] = STATE(226), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_mutability_modifiers] = STATE(845), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3184), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), - }, - [595] = { - [sym_line_comment] = STATE(595), - [sym_block_comment] = STATE(595), - [sym__expression] = STATE(1112), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1111), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -91804,312 +91324,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [596] = { - [sym_line_comment] = STATE(596), - [sym_block_comment] = STATE(596), - [sym__expression] = STATE(2581), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [597] = { - [sym_line_comment] = STATE(597), - [sym_block_comment] = STATE(597), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3559), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [592] = { + [sym_line_comment] = STATE(592), + [sym_block_comment] = STATE(592), + [sym__expression] = STATE(2811), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [598] = { - [sym_line_comment] = STATE(598), - [sym_block_comment] = STATE(598), + [593] = { + [sym_line_comment] = STATE(593), + [sym_block_comment] = STATE(593), [sym__expression] = STATE(1107), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1139), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -92146,84 +91552,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [599] = { - [sym_line_comment] = STATE(599), - [sym_block_comment] = STATE(599), - [sym__expression] = STATE(1111), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1139), + [594] = { + [sym_line_comment] = STATE(594), + [sym_block_comment] = STATE(594), + [sym__expression] = STATE(1112), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), @@ -92260,2824 +91666,2824 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(669), [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [595] = { + [sym_line_comment] = STATE(595), + [sym_block_comment] = STATE(595), + [sym__expression] = STATE(976), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3406), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [596] = { + [sym_line_comment] = STATE(596), + [sym_block_comment] = STATE(596), + [sym__expression] = STATE(971), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3406), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [597] = { + [sym_line_comment] = STATE(597), + [sym_block_comment] = STATE(597), + [sym__expression] = STATE(224), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_mutability_modifiers] = STATE(649), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3182), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [598] = { + [sym_line_comment] = STATE(598), + [sym_block_comment] = STATE(598), + [sym__expression] = STATE(2761), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3561), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [599] = { + [sym_line_comment] = STATE(599), + [sym_block_comment] = STATE(599), + [sym__expression] = STATE(2285), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4206), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(1659), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_LT_DASH] = ACTIONS(2525), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [600] = { [sym_line_comment] = STATE(600), [sym_block_comment] = STATE(600), - [sym__expression] = STATE(2808), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2689), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [601] = { [sym_line_comment] = STATE(601), [sym_block_comment] = STATE(601), - [sym__expression] = STATE(2809), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(1770), + [sym__expression_without_blocks] = STATE(1975), + [sym__expression_with_blocks] = STATE(1975), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(1976), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(1976), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(1976), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(1976), + [sym_compile_time_if_expression] = STATE(1976), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(1976), + [sym_select_expression] = STATE(1976), + [sym_lock_expression] = STATE(1976), + [sym_unsafe_expression] = STATE(1976), + [sym_sql_expression] = STATE(1976), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(616), + [sym_plain_type] = STATE(4121), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3338), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3342), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3352), + [anon_sym_rlock] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [602] = { [sym_line_comment] = STATE(602), [sym_block_comment] = STATE(602), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3558), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(1751), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4235), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [603] = { [sym_line_comment] = STATE(603), [sym_block_comment] = STATE(603), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2628), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [604] = { [sym_line_comment] = STATE(604), [sym_block_comment] = STATE(604), - [sym__expression] = STATE(1109), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(2169), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [605] = { [sym_line_comment] = STATE(605), [sym_block_comment] = STATE(605), - [sym__expression] = STATE(1108), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(970), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3406), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [606] = { [sym_line_comment] = STATE(606), [sym_block_comment] = STATE(606), - [sym__expression] = STATE(2774), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1814), + [sym__expression_with_blocks] = STATE(1814), + [sym_inc_expression] = STATE(1819), + [sym_dec_expression] = STATE(1819), + [sym_or_block_expression] = STATE(1819), + [sym_option_propagation_expression] = STATE(1819), + [sym_result_propagation_expression] = STATE(1819), + [sym_anon_struct_value_expression] = STATE(1823), + [sym_go_expression] = STATE(1819), + [sym_spawn_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_type_initializer] = STATE(1823), + [sym_function_literal] = STATE(1819), + [sym_reference_expression] = STATE(1833), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1819), + [sym_receive_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_as_type_cast_expression] = STATE(1819), + [sym__max_group] = STATE(1819), + [sym_literal] = STATE(1812), + [sym_map_init_expression] = STATE(1823), + [sym_array_creation] = STATE(1819), + [sym_fixed_array_creation] = STATE(1819), + [sym_selector_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_slice_expression] = STATE(1819), + [sym_if_expression] = STATE(1823), + [sym_compile_time_if_expression] = STATE(1823), + [sym_is_expression] = STATE(1819), + [sym_in_expression] = STATE(1819), + [sym_enum_fetch] = STATE(1819), + [sym_match_expression] = STATE(1823), + [sym_select_expression] = STATE(1823), + [sym_lock_expression] = STATE(1823), + [sym_unsafe_expression] = STATE(1823), + [sym_sql_expression] = STATE(1823), + [sym_interpreted_string_literal] = STATE(1811), + [sym_c_string_literal] = STATE(1811), + [sym_raw_string_literal] = STATE(1811), + [sym_mutability_modifiers] = STATE(614), + [sym_plain_type] = STATE(4219), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3190), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3204), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3208), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3212), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT_DASH] = ACTIONS(3218), + [sym_none] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_nil] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3228), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3232), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3220), + [sym_float_literal] = ACTIONS(3236), + [sym_rune_literal] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3242), + [anon_sym_c_DQUOTE] = ACTIONS(3244), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3248), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [607] = { [sym_line_comment] = STATE(607), [sym_block_comment] = STATE(607), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3559), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2127), + [sym__expression] = STATE(973), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3406), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [608] = { [sym_line_comment] = STATE(608), [sym_block_comment] = STATE(608), - [sym__expression] = STATE(2121), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(2285), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4198), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3310), - [anon_sym_spawn] = ACTIONS(3312), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_CARET] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3320), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3330), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_LT_DASH] = ACTIONS(2525), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [609] = { [sym_line_comment] = STATE(609), [sym_block_comment] = STATE(609), - [sym__expression] = STATE(2433), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(965), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3138), - [anon_sym_lock] = ACTIONS(3140), - [anon_sym_rlock] = ACTIONS(3140), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3406), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [610] = { [sym_line_comment] = STATE(610), [sym_block_comment] = STATE(610), - [sym__expression] = STATE(1113), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(974), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3406), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [611] = { [sym_line_comment] = STATE(611), [sym_block_comment] = STATE(611), - [sym__expression] = STATE(1659), - [sym__expression_without_blocks] = STATE(1799), - [sym__expression_with_blocks] = STATE(1799), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1801), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1801), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1844), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1797), - [sym_map_init_expression] = STATE(1801), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1801), - [sym_compile_time_if_expression] = STATE(1801), - [sym_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1801), - [sym_select_expression] = STATE(1801), - [sym_lock_expression] = STATE(1801), - [sym_unsafe_expression] = STATE(1801), - [sym_sql_expression] = STATE(1801), - [sym_c_string_literal] = STATE(1792), - [sym_raw_string_literal] = STATE(1792), - [sym_interpreted_string_literal] = STATE(1792), - [sym_mutability_modifiers] = STATE(868), - [sym_plain_type] = STATE(4294), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3198), + [sym__expression] = STATE(2256), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_fn] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_STAR] = ACTIONS(3210), - [anon_sym_struct] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_go] = ACTIONS(3216), - [anon_sym_spawn] = ACTIONS(3218), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_CARET] = ACTIONS(3208), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), - [sym_none] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_nil] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_DOLLARif] = ACTIONS(3232), - [anon_sym_match] = ACTIONS(3234), - [anon_sym_select] = ACTIONS(3236), - [anon_sym_lock] = ACTIONS(3238), - [anon_sym_rlock] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(3240), - [anon_sym_sql] = ACTIONS(3242), - [sym_int_literal] = ACTIONS(3228), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3246), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3248), - [sym___single_quote] = ACTIONS(3250), - [sym___c_double_quote] = ACTIONS(3252), - [sym___c_single_quote] = ACTIONS(3254), - [sym___r_double_quote] = ACTIONS(3256), - [sym___r_single_quote] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [612] = { [sym_line_comment] = STATE(612), [sym_block_comment] = STATE(612), - [sym__expression] = STATE(1659), - [sym__expression_without_blocks] = STATE(1799), - [sym__expression_with_blocks] = STATE(1799), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1801), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1801), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1844), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1797), - [sym_map_init_expression] = STATE(1801), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1801), - [sym_compile_time_if_expression] = STATE(1801), - [sym_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1801), - [sym_select_expression] = STATE(1801), - [sym_lock_expression] = STATE(1801), - [sym_unsafe_expression] = STATE(1801), - [sym_sql_expression] = STATE(1801), - [sym_c_string_literal] = STATE(1792), - [sym_raw_string_literal] = STATE(1792), - [sym_interpreted_string_literal] = STATE(1792), - [sym_mutability_modifiers] = STATE(868), - [sym_plain_type] = STATE(4290), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3198), + [sym__expression] = STATE(221), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_mutability_modifiers] = STATE(649), + [sym_plain_type] = STATE(4002), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3182), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_fn] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_STAR] = ACTIONS(3210), - [anon_sym_struct] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_go] = ACTIONS(3216), - [anon_sym_spawn] = ACTIONS(3218), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_CARET] = ACTIONS(3208), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), - [sym_none] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_nil] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_DOLLARif] = ACTIONS(3232), - [anon_sym_match] = ACTIONS(3234), - [anon_sym_select] = ACTIONS(3236), - [anon_sym_lock] = ACTIONS(3238), - [anon_sym_rlock] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(3240), - [anon_sym_sql] = ACTIONS(3242), - [sym_int_literal] = ACTIONS(3228), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3246), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3248), - [sym___single_quote] = ACTIONS(3250), - [sym___c_double_quote] = ACTIONS(3252), - [sym___c_single_quote] = ACTIONS(3254), - [sym___r_double_quote] = ACTIONS(3256), - [sym___r_single_quote] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [613] = { [sym_line_comment] = STATE(613), [sym_block_comment] = STATE(613), - [sym__expression] = STATE(2444), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2232), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3138), - [anon_sym_lock] = ACTIONS(3140), - [anon_sym_rlock] = ACTIONS(3140), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [614] = { [sym_line_comment] = STATE(614), [sym_block_comment] = STATE(614), - [sym__expression] = STATE(1117), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(2828), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [615] = { [sym_line_comment] = STATE(615), [sym_block_comment] = STATE(615), - [sym__expression] = STATE(2448), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2263), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3138), - [anon_sym_lock] = ACTIONS(3140), - [anon_sym_rlock] = ACTIONS(3140), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [616] = { [sym_line_comment] = STATE(616), [sym_block_comment] = STATE(616), - [sym__expression] = STATE(1659), - [sym__expression_without_blocks] = STATE(1799), - [sym__expression_with_blocks] = STATE(1799), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1801), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1801), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1844), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1797), - [sym_map_init_expression] = STATE(1801), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1801), - [sym_compile_time_if_expression] = STATE(1801), - [sym_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1801), - [sym_select_expression] = STATE(1801), - [sym_lock_expression] = STATE(1801), - [sym_unsafe_expression] = STATE(1801), - [sym_sql_expression] = STATE(1801), - [sym_c_string_literal] = STATE(1792), - [sym_raw_string_literal] = STATE(1792), - [sym_interpreted_string_literal] = STATE(1792), - [sym_mutability_modifiers] = STATE(868), - [sym_plain_type] = STATE(4285), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3198), + [sym__expression] = STATE(2807), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_fn] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_STAR] = ACTIONS(3210), - [anon_sym_struct] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_go] = ACTIONS(3216), - [anon_sym_spawn] = ACTIONS(3218), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_CARET] = ACTIONS(3208), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), - [sym_none] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_nil] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_DOLLARif] = ACTIONS(3232), - [anon_sym_match] = ACTIONS(3234), - [anon_sym_select] = ACTIONS(3236), - [anon_sym_lock] = ACTIONS(3238), - [anon_sym_rlock] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(3240), - [anon_sym_sql] = ACTIONS(3242), - [sym_int_literal] = ACTIONS(3228), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3246), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3248), - [sym___single_quote] = ACTIONS(3250), - [sym___c_double_quote] = ACTIONS(3252), - [sym___c_single_quote] = ACTIONS(3254), - [sym___r_double_quote] = ACTIONS(3256), - [sym___r_single_quote] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [617] = { [sym_line_comment] = STATE(617), [sym_block_comment] = STATE(617), - [sym__expression] = STATE(2451), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1770), + [sym__expression_without_blocks] = STATE(1975), + [sym__expression_with_blocks] = STATE(1975), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(1976), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(1976), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(1976), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(1976), + [sym_compile_time_if_expression] = STATE(1976), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(1976), + [sym_select_expression] = STATE(1976), + [sym_lock_expression] = STATE(1976), + [sym_unsafe_expression] = STATE(1976), + [sym_sql_expression] = STATE(1976), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(616), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3338), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3342), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3138), - [anon_sym_lock] = ACTIONS(3140), - [anon_sym_rlock] = ACTIONS(3140), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3352), + [anon_sym_rlock] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [618] = { [sym_line_comment] = STATE(618), [sym_block_comment] = STATE(618), - [sym__expression] = STATE(2811), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2621), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3561), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [619] = { [sym_line_comment] = STATE(619), [sym_block_comment] = STATE(619), - [sym__expression] = STATE(1115), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1139), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), - }, - [620] = { - [sym_line_comment] = STATE(620), - [sym_block_comment] = STATE(620), - [sym__expression] = STATE(2122), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4168), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3306), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3310), - [anon_sym_spawn] = ACTIONS(3312), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_CARET] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3320), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3330), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), - }, - [621] = { - [sym_line_comment] = STATE(621), - [sym_block_comment] = STATE(621), - [sym__expression] = STATE(2122), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4166), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3306), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3310), - [anon_sym_spawn] = ACTIONS(3312), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_CARET] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3320), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3330), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), - }, - [622] = { - [sym_line_comment] = STATE(622), - [sym_block_comment] = STATE(622), - [sym__expression] = STATE(2122), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3306), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3310), - [anon_sym_spawn] = ACTIONS(3312), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_CARET] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3320), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3330), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), - }, - [623] = { - [sym_line_comment] = STATE(623), - [sym_block_comment] = STATE(623), - [sym__expression] = STATE(1114), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1139), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), - }, - [624] = { - [sym_line_comment] = STATE(624), - [sym_block_comment] = STATE(624), - [sym__expression] = STATE(218), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_mutability_modifiers] = STATE(845), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3184), + [sym__expression] = STATE(223), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_mutability_modifiers] = STATE(649), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3182), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_fn] = ACTIONS(485), [anon_sym_PLUS] = ACTIONS(31), @@ -95110,333 +94516,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(63), [sym_float_literal] = ACTIONS(79), [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), - }, - [625] = { - [sym_line_comment] = STATE(625), - [sym_block_comment] = STATE(625), - [sym__expression] = STATE(1864), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [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), }, - [626] = { - [sym_line_comment] = STATE(626), - [sym_block_comment] = STATE(626), - [sym__expression] = STATE(2433), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3929), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1071), + [620] = { + [sym_line_comment] = STATE(620), + [sym_block_comment] = STATE(620), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3138), - [anon_sym_lock] = ACTIONS(3140), - [anon_sym_rlock] = ACTIONS(3140), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [627] = { - [sym_line_comment] = STATE(627), - [sym_block_comment] = STATE(627), - [sym__expression] = STATE(964), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), + [621] = { + [sym_line_comment] = STATE(621), + [sym_block_comment] = STATE(621), + [sym__expression] = STATE(972), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2251), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3406), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -95444,10943 +94736,11741 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(533), [anon_sym_DOLLARif] = ACTIONS(535), [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [628] = { - [sym_line_comment] = STATE(628), - [sym_block_comment] = STATE(628), - [sym__expression] = STATE(2433), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3936), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1071), + [622] = { + [sym_line_comment] = STATE(622), + [sym_block_comment] = STATE(622), + [sym__expression] = STATE(2439), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3138), - [anon_sym_lock] = ACTIONS(3140), - [anon_sym_rlock] = ACTIONS(3140), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [629] = { - [sym_line_comment] = STATE(629), - [sym_block_comment] = STATE(629), - [sym__expression] = STATE(2261), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [623] = { + [sym_line_comment] = STATE(623), + [sym_block_comment] = STATE(623), + [sym__expression] = STATE(2416), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_LT_DASH] = ACTIONS(2525), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [630] = { - [sym_line_comment] = STATE(630), - [sym_block_comment] = STATE(630), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3559), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [624] = { + [sym_line_comment] = STATE(624), + [sym_block_comment] = STATE(624), + [sym__expression] = STATE(2301), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_LT_DASH] = ACTIONS(2525), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [625] = { + [sym_line_comment] = STATE(625), + [sym_block_comment] = STATE(625), + [sym__expression] = STATE(1761), + [sym__expression_without_blocks] = STATE(1975), + [sym__expression_with_blocks] = STATE(1975), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(1976), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(1976), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(1976), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(1976), + [sym_compile_time_if_expression] = STATE(1976), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(1976), + [sym_select_expression] = STATE(1976), + [sym_lock_expression] = STATE(1976), + [sym_unsafe_expression] = STATE(1976), + [sym_sql_expression] = STATE(1976), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(616), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3338), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3342), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3352), + [anon_sym_rlock] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [626] = { + [sym_line_comment] = STATE(626), + [sym_block_comment] = STATE(626), + [sym__expression] = STATE(1287), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2493), + [anon_sym_spawn] = ACTIONS(2495), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_LT_DASH] = ACTIONS(2499), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2503), + [anon_sym_rlock] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [627] = { + [sym_line_comment] = STATE(627), + [sym_block_comment] = STATE(627), + [sym__expression] = STATE(1292), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2493), + [anon_sym_spawn] = ACTIONS(2495), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_LT_DASH] = ACTIONS(2499), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2503), + [anon_sym_rlock] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [628] = { + [sym_line_comment] = STATE(628), + [sym_block_comment] = STATE(628), + [sym__expression] = STATE(1284), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2493), + [anon_sym_spawn] = ACTIONS(2495), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_LT_DASH] = ACTIONS(2499), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2503), + [anon_sym_rlock] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [629] = { + [sym_line_comment] = STATE(629), + [sym_block_comment] = STATE(629), + [sym__expression] = STATE(1283), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2493), + [anon_sym_spawn] = ACTIONS(2495), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_LT_DASH] = ACTIONS(2499), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2503), + [anon_sym_rlock] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [630] = { + [sym_line_comment] = STATE(630), + [sym_block_comment] = STATE(630), + [sym__expression] = STATE(1255), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2493), + [anon_sym_spawn] = ACTIONS(2495), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_LT_DASH] = ACTIONS(2499), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2503), + [anon_sym_rlock] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, [631] = { [sym_line_comment] = STATE(631), [sym_block_comment] = STATE(631), - [sym__expression] = STATE(2434), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(1278), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2493), + [anon_sym_spawn] = ACTIONS(2495), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_LT_DASH] = ACTIONS(2499), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2503), + [anon_sym_rlock] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [632] = { [sym_line_comment] = STATE(632), [sym_block_comment] = STATE(632), - [sym__expression] = STATE(976), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(1763), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_go] = ACTIONS(3372), - [anon_sym_spawn] = ACTIONS(3374), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_CARET] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_LT_DASH] = ACTIONS(3378), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3380), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_rlock] = ACTIONS(3382), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [633] = { [sym_line_comment] = STATE(633), [sym_block_comment] = STATE(633), - [sym__expression] = STATE(2437), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2810), + [sym__expression_without_blocks] = STATE(2121), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [634] = { [sym_line_comment] = STATE(634), [sym_block_comment] = STATE(634), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3558), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2123), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3304), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3316), + [anon_sym_rlock] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [635] = { [sym_line_comment] = STATE(635), [sym_block_comment] = STATE(635), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3555), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2391), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [636] = { [sym_line_comment] = STATE(636), [sym_block_comment] = STATE(636), - [sym__expression] = STATE(2812), - [sym__expression_without_blocks] = STATE(2123), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1681), + [sym__expression] = STATE(1764), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [637] = { [sym_line_comment] = STATE(637), [sym_block_comment] = STATE(637), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(1765), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [638] = { [sym_line_comment] = STATE(638), [sym_block_comment] = STATE(638), - [sym__expression] = STATE(2433), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3929), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2586), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3076), - [anon_sym_spawn] = ACTIONS(3078), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3082), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [639] = { [sym_line_comment] = STATE(639), [sym_block_comment] = STATE(639), - [sym__expression] = STATE(2817), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2529), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3138), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3142), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3144), + [anon_sym_lock] = ACTIONS(3146), + [anon_sym_rlock] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [640] = { [sym_line_comment] = STATE(640), [sym_block_comment] = STATE(640), - [sym__expression] = STATE(2433), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3936), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2579), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3076), - [anon_sym_spawn] = ACTIONS(3078), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3082), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [641] = { [sym_line_comment] = STATE(641), [sym_block_comment] = STATE(641), - [sym__expression] = STATE(2827), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3384), + [sym__expression] = STATE(1777), + [sym__expression_without_blocks] = STATE(1975), + [sym__expression_with_blocks] = STATE(1975), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(1976), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(1976), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(1976), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(1976), + [sym_compile_time_if_expression] = STATE(1976), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(1976), + [sym_select_expression] = STATE(1976), + [sym_lock_expression] = STATE(1976), + [sym_unsafe_expression] = STATE(1976), + [sym_sql_expression] = STATE(1976), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(616), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3338), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3342), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3352), + [anon_sym_rlock] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [642] = { [sym_line_comment] = STATE(642), [sym_block_comment] = STATE(642), - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3564), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2791), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [643] = { [sym_line_comment] = STATE(643), [sym_block_comment] = STATE(643), - [sym__expression] = STATE(2593), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3553), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [644] = { [sym_line_comment] = STATE(644), [sym_block_comment] = STATE(644), - [sym__expression] = STATE(2734), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2443), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3138), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3142), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3144), + [anon_sym_lock] = ACTIONS(3146), + [anon_sym_rlock] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [645] = { [sym_line_comment] = STATE(645), [sym_block_comment] = STATE(645), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2933), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2934), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2528), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3138), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3142), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3144), + [anon_sym_lock] = ACTIONS(3146), + [anon_sym_rlock] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [646] = { [sym_line_comment] = STATE(646), [sym_block_comment] = STATE(646), - [sym__expression] = STATE(2496), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2522), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3138), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3142), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3144), + [anon_sym_lock] = ACTIONS(3146), + [anon_sym_rlock] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [647] = { [sym_line_comment] = STATE(647), [sym_block_comment] = STATE(647), - [sym__expression] = STATE(222), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_mutability_modifiers] = STATE(845), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3184), + [sym__expression] = STATE(2519), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3138), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3142), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3144), + [anon_sym_lock] = ACTIONS(3146), + [anon_sym_rlock] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [648] = { [sym_line_comment] = STATE(648), [sym_block_comment] = STATE(648), - [sym__expression] = STATE(2265), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2260), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3304), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3316), + [anon_sym_rlock] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [649] = { [sym_line_comment] = STATE(649), [sym_block_comment] = STATE(649), - [sym__expression] = STATE(2499), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2821), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [650] = { [sym_line_comment] = STATE(650), [sym_block_comment] = STATE(650), - [sym__expression] = STATE(1770), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1681), + [sym__expression] = STATE(1910), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [651] = { [sym_line_comment] = STATE(651), [sym_block_comment] = STATE(651), - [sym__expression] = STATE(2502), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2327), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_LT_DASH] = ACTIONS(2525), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_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(1902), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), + [sym__expression] = STATE(2516), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3138), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3142), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3144), + [anon_sym_lock] = ACTIONS(3146), + [anon_sym_rlock] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [653] = { [sym_line_comment] = STATE(653), [sym_block_comment] = STATE(653), - [sym__expression] = STATE(2505), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(959), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_LT_DASH] = ACTIONS(2567), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [654] = { [sym_line_comment] = STATE(654), [sym_block_comment] = STATE(654), - [sym__expression] = STATE(2495), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(218), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_mutability_modifiers] = STATE(649), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3182), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [655] = { [sym_line_comment] = STATE(655), [sym_block_comment] = STATE(655), - [sym__expression] = STATE(2591), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2261), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3304), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3316), + [anon_sym_rlock] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [656] = { [sym_line_comment] = STATE(656), [sym_block_comment] = STATE(656), - [sym__expression] = STATE(1771), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1681), + [sym__expression] = STATE(1767), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [657] = { [sym_line_comment] = STATE(657), [sym_block_comment] = STATE(657), - [sym__expression] = STATE(965), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(1768), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_go] = ACTIONS(3372), - [anon_sym_spawn] = ACTIONS(3374), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_CARET] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_LT_DASH] = ACTIONS(3378), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3380), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_rlock] = ACTIONS(3382), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [658] = { [sym_line_comment] = STATE(658), [sym_block_comment] = STATE(658), - [sym__expression] = STATE(965), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4114), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2637), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_go] = ACTIONS(3372), - [anon_sym_spawn] = ACTIONS(3374), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_CARET] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_LT_DASH] = ACTIONS(3378), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3380), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_rlock] = ACTIONS(3382), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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(965), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4119), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3552), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2391), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_go] = ACTIONS(3372), - [anon_sym_spawn] = ACTIONS(3374), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_CARET] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_LT_DASH] = ACTIONS(3378), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3380), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_rlock] = ACTIONS(3382), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [660] = { [sym_line_comment] = STATE(660), [sym_block_comment] = STATE(660), - [sym__expression] = STATE(2433), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3936), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1769), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3138), - [anon_sym_lock] = ACTIONS(3140), - [anon_sym_rlock] = ACTIONS(3140), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [661] = { [sym_line_comment] = STATE(661), [sym_block_comment] = STATE(661), - [sym__expression] = STATE(970), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2268), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_go] = ACTIONS(3372), - [anon_sym_spawn] = ACTIONS(3374), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_CARET] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_LT_DASH] = ACTIONS(3378), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3380), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_rlock] = ACTIONS(3382), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [662] = { [sym_line_comment] = STATE(662), [sym_block_comment] = STATE(662), - [sym__expression] = STATE(977), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(1759), + [sym__expression_without_blocks] = STATE(1975), + [sym__expression_with_blocks] = STATE(1975), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(1976), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(1976), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(1976), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(1976), + [sym_compile_time_if_expression] = STATE(1976), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(1976), + [sym_select_expression] = STATE(1976), + [sym_lock_expression] = STATE(1976), + [sym_unsafe_expression] = STATE(1976), + [sym_sql_expression] = STATE(1976), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(616), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3338), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3342), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_go] = ACTIONS(3372), - [anon_sym_spawn] = ACTIONS(3374), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_CARET] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_LT_DASH] = ACTIONS(3378), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3380), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_rlock] = ACTIONS(3382), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3352), + [anon_sym_rlock] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_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(965), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4129), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2124), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_go] = ACTIONS(3372), - [anon_sym_spawn] = ACTIONS(3374), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_CARET] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_LT_DASH] = ACTIONS(3378), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3380), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_rlock] = ACTIONS(3382), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3304), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3316), + [anon_sym_rlock] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [664] = { [sym_line_comment] = STATE(664), [sym_block_comment] = STATE(664), - [sym__expression] = STATE(2433), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3934), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2629), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3138), - [anon_sym_lock] = ACTIONS(3140), - [anon_sym_rlock] = ACTIONS(3140), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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(2285), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(2635), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [666] = { [sym_line_comment] = STATE(666), [sym_block_comment] = STATE(666), - [sym__expression] = STATE(2433), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(3929), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(227), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_mutability_modifiers] = STATE(649), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3182), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3138), - [anon_sym_lock] = ACTIONS(3140), - [anon_sym_rlock] = ACTIONS(3140), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [667] = { [sym_line_comment] = STATE(667), [sym_block_comment] = STATE(667), - [sym__expression] = STATE(961), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(1758), + [sym__expression_without_blocks] = STATE(1975), + [sym__expression_with_blocks] = STATE(1975), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(1976), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(1976), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(1976), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(1976), + [sym_compile_time_if_expression] = STATE(1976), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(1976), + [sym_select_expression] = STATE(1976), + [sym_lock_expression] = STATE(1976), + [sym_unsafe_expression] = STATE(1976), + [sym_sql_expression] = STATE(1976), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(616), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3338), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3342), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_go] = ACTIONS(3372), - [anon_sym_spawn] = ACTIONS(3374), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_CARET] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_LT_DASH] = ACTIONS(3378), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3380), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_rlock] = ACTIONS(3382), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3352), + [anon_sym_rlock] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [668] = { [sym_line_comment] = STATE(668), [sym_block_comment] = STATE(668), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2917), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2914), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2831), + [sym__expression_without_blocks] = STATE(2955), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [669] = { [sym_line_comment] = STATE(669), [sym_block_comment] = STATE(669), - [sym__expression] = STATE(2451), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1757), + [sym__expression_without_blocks] = STATE(1975), + [sym__expression_with_blocks] = STATE(1975), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(1976), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(1976), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(1976), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(1976), + [sym_compile_time_if_expression] = STATE(1976), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(1976), + [sym_select_expression] = STATE(1976), + [sym_lock_expression] = STATE(1976), + [sym_unsafe_expression] = STATE(1976), + [sym_sql_expression] = STATE(1976), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(616), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3338), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3342), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3076), - [anon_sym_spawn] = ACTIONS(3078), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3082), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3352), + [anon_sym_rlock] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [670] = { [sym_line_comment] = STATE(670), [sym_block_comment] = STATE(670), - [sym__expression] = STATE(2829), - [sym__expression_without_blocks] = STATE(2912), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2263), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [671] = { [sym_line_comment] = STATE(671), [sym_block_comment] = STATE(671), - [sym__expression] = STATE(2286), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4058), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(1257), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [672] = { [sym_line_comment] = STATE(672), [sym_block_comment] = STATE(672), - [sym__expression] = STATE(1758), - [sym__expression_without_blocks] = STATE(1915), - [sym__expression_with_blocks] = STATE(1915), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(1939), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(1939), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(1939), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(1939), - [sym_compile_time_if_expression] = STATE(1939), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(1939), - [sym_select_expression] = STATE(1939), - [sym_lock_expression] = STATE(1939), - [sym_unsafe_expression] = STATE(1939), - [sym_sql_expression] = STATE(1939), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(555), - [sym_plain_type] = STATE(4014), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3272), + [sym__expression] = STATE(1256), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4081), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3282), - [anon_sym_select] = ACTIONS(3284), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3288), - [anon_sym_sql] = ACTIONS(3290), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [673] = { [sym_line_comment] = STATE(673), [sym_block_comment] = STATE(673), - [sym__expression] = STATE(2318), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(1285), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [674] = { [sym_line_comment] = STATE(674), [sym_block_comment] = STATE(674), - [sym__expression] = STATE(2286), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(2699), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3394), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3398), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_rlock] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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), - [sym__expression] = STATE(2315), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(2720), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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(2286), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(1286), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3394), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3398), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_rlock] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [677] = { [sym_line_comment] = STATE(677), [sym_block_comment] = STATE(677), - [sym__expression] = STATE(2272), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(1256), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4082), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3310), - [anon_sym_spawn] = ACTIONS(3312), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_CARET] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3320), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3330), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [678] = { [sym_line_comment] = STATE(678), [sym_block_comment] = STATE(678), - [sym__expression] = STATE(2286), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4057), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(1256), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4088), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [679] = { [sym_line_comment] = STATE(679), [sym_block_comment] = STATE(679), - [sym__expression] = STATE(2286), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4055), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(1114), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [680] = { [sym_line_comment] = STATE(680), [sym_block_comment] = STATE(680), - [sym__expression] = STATE(2286), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(2556), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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(2286), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4057), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(1256), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3394), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3398), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_rlock] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [682] = { [sym_line_comment] = STATE(682), [sym_block_comment] = STATE(682), - [sym__expression] = STATE(2384), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3394), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3398), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_rlock] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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(2390), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(2282), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3394), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3398), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_rlock] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_LT_DASH] = ACTIONS(2525), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_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(2286), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4058), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(1114), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4011), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3394), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3398), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_rlock] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [685] = { [sym_line_comment] = STATE(685), [sym_block_comment] = STATE(685), - [sym__expression] = STATE(2285), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(1114), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4071), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3394), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3398), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_rlock] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [686] = { [sym_line_comment] = STATE(686), [sym_block_comment] = STATE(686), - [sym__expression] = STATE(2122), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(2336), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3410), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_LT_DASH] = ACTIONS(3416), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3418), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_LT_DASH] = ACTIONS(2525), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_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(1772), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1681), + [sym__expression] = STATE(2450), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_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(1768), - [sym__expression_without_blocks] = STATE(1915), - [sym__expression_with_blocks] = STATE(1915), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(1939), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(1939), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(1939), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(1939), - [sym_compile_time_if_expression] = STATE(1939), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(1939), - [sym_select_expression] = STATE(1939), - [sym_lock_expression] = STATE(1939), - [sym_unsafe_expression] = STATE(1939), - [sym_sql_expression] = STATE(1939), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(555), - [sym_plain_type] = STATE(4014), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3272), + [sym__expression] = STATE(1668), + [sym__expression_without_blocks] = STATE(1814), + [sym__expression_with_blocks] = STATE(1814), + [sym_inc_expression] = STATE(1819), + [sym_dec_expression] = STATE(1819), + [sym_or_block_expression] = STATE(1819), + [sym_option_propagation_expression] = STATE(1819), + [sym_result_propagation_expression] = STATE(1819), + [sym_anon_struct_value_expression] = STATE(1823), + [sym_go_expression] = STATE(1819), + [sym_spawn_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_type_initializer] = STATE(1823), + [sym_function_literal] = STATE(1819), + [sym_reference_expression] = STATE(1833), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1819), + [sym_receive_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_as_type_cast_expression] = STATE(1819), + [sym__max_group] = STATE(1819), + [sym_literal] = STATE(1812), + [sym_map_init_expression] = STATE(1823), + [sym_array_creation] = STATE(1819), + [sym_fixed_array_creation] = STATE(1819), + [sym_selector_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_slice_expression] = STATE(1819), + [sym_if_expression] = STATE(1823), + [sym_compile_time_if_expression] = STATE(1823), + [sym_is_expression] = STATE(1819), + [sym_in_expression] = STATE(1819), + [sym_enum_fetch] = STATE(1819), + [sym_match_expression] = STATE(1823), + [sym_select_expression] = STATE(1823), + [sym_lock_expression] = STATE(1823), + [sym_unsafe_expression] = STATE(1823), + [sym_sql_expression] = STATE(1823), + [sym_interpreted_string_literal] = STATE(1811), + [sym_c_string_literal] = STATE(1811), + [sym_raw_string_literal] = STATE(1811), + [sym_mutability_modifiers] = STATE(614), + [sym_plain_type] = STATE(4246), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3190), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3204), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3282), - [anon_sym_select] = ACTIONS(3284), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3288), - [anon_sym_sql] = ACTIONS(3290), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3208), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3212), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT_DASH] = ACTIONS(3218), + [sym_none] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_nil] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3228), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3232), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3220), + [sym_float_literal] = ACTIONS(3236), + [sym_rune_literal] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3242), + [anon_sym_c_DQUOTE] = ACTIONS(3244), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3248), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [689] = { [sym_line_comment] = STATE(689), [sym_block_comment] = STATE(689), - [sym__expression] = STATE(2244), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3410), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_LT_DASH] = ACTIONS(3416), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3418), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [690] = { [sym_line_comment] = STATE(690), [sym_block_comment] = STATE(690), - [sym__expression] = STATE(2168), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(2344), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3410), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_LT_DASH] = ACTIONS(3416), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3418), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_LT_DASH] = ACTIONS(2525), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [691] = { [sym_line_comment] = STATE(691), [sym_block_comment] = STATE(691), - [sym__expression] = STATE(2121), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(1668), + [sym__expression_without_blocks] = STATE(1814), + [sym__expression_with_blocks] = STATE(1814), + [sym_inc_expression] = STATE(1819), + [sym_dec_expression] = STATE(1819), + [sym_or_block_expression] = STATE(1819), + [sym_option_propagation_expression] = STATE(1819), + [sym_result_propagation_expression] = STATE(1819), + [sym_anon_struct_value_expression] = STATE(1823), + [sym_go_expression] = STATE(1819), + [sym_spawn_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_type_initializer] = STATE(1823), + [sym_function_literal] = STATE(1819), + [sym_reference_expression] = STATE(1833), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1819), + [sym_receive_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_as_type_cast_expression] = STATE(1819), + [sym__max_group] = STATE(1819), + [sym_literal] = STATE(1812), + [sym_map_init_expression] = STATE(1823), + [sym_array_creation] = STATE(1819), + [sym_fixed_array_creation] = STATE(1819), + [sym_selector_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_slice_expression] = STATE(1819), + [sym_if_expression] = STATE(1823), + [sym_compile_time_if_expression] = STATE(1823), + [sym_is_expression] = STATE(1819), + [sym_in_expression] = STATE(1819), + [sym_enum_fetch] = STATE(1819), + [sym_match_expression] = STATE(1823), + [sym_select_expression] = STATE(1823), + [sym_lock_expression] = STATE(1823), + [sym_unsafe_expression] = STATE(1823), + [sym_sql_expression] = STATE(1823), + [sym_interpreted_string_literal] = STATE(1811), + [sym_c_string_literal] = STATE(1811), + [sym_raw_string_literal] = STATE(1811), + [sym_mutability_modifiers] = STATE(614), + [sym_plain_type] = STATE(4255), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3190), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3204), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3410), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_LT_DASH] = ACTIONS(3416), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3418), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3208), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3212), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT_DASH] = ACTIONS(3218), + [sym_none] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_nil] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3228), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3232), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3220), + [sym_float_literal] = ACTIONS(3236), + [sym_rune_literal] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3242), + [anon_sym_c_DQUOTE] = ACTIONS(3244), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3248), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [692] = { [sym_line_comment] = STATE(692), [sym_block_comment] = STATE(692), - [sym__expression] = STATE(1759), - [sym__expression_without_blocks] = STATE(1915), - [sym__expression_with_blocks] = STATE(1915), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(1939), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(1939), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(1939), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(1939), - [sym_compile_time_if_expression] = STATE(1939), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(1939), - [sym_select_expression] = STATE(1939), - [sym_lock_expression] = STATE(1939), - [sym_unsafe_expression] = STATE(1939), - [sym_sql_expression] = STATE(1939), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(555), - [sym_plain_type] = STATE(4014), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3272), + [sym__expression] = STATE(2347), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3282), - [anon_sym_select] = ACTIONS(3284), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3288), - [anon_sym_sql] = ACTIONS(3290), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_LT_DASH] = ACTIONS(2525), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [693] = { [sym_line_comment] = STATE(693), [sym_block_comment] = STATE(693), - [sym__expression] = STATE(2122), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4168), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(2434), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3410), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_LT_DASH] = ACTIONS(3416), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3418), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [694] = { [sym_line_comment] = STATE(694), [sym_block_comment] = STATE(694), - [sym__expression] = STATE(1760), - [sym__expression_without_blocks] = STATE(1915), - [sym__expression_with_blocks] = STATE(1915), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(1939), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(1939), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(1939), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(1939), - [sym_compile_time_if_expression] = STATE(1939), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(1939), - [sym_select_expression] = STATE(1939), - [sym_lock_expression] = STATE(1939), - [sym_unsafe_expression] = STATE(1939), - [sym_sql_expression] = STATE(1939), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(555), - [sym_plain_type] = STATE(4014), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3272), + [sym__expression] = STATE(2354), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3282), - [anon_sym_select] = ACTIONS(3284), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3288), - [anon_sym_sql] = ACTIONS(3290), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_LT_DASH] = ACTIONS(2525), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_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(2122), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4166), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(2609), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3410), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_LT_DASH] = ACTIONS(3416), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3418), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [696] = { [sym_line_comment] = STATE(696), [sym_block_comment] = STATE(696), - [sym__expression] = STATE(1761), - [sym__expression_without_blocks] = STATE(1915), - [sym__expression_with_blocks] = STATE(1915), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(1939), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(1939), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(1939), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(1939), - [sym_compile_time_if_expression] = STATE(1939), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(1939), - [sym_select_expression] = STATE(1939), - [sym_lock_expression] = STATE(1939), - [sym_unsafe_expression] = STATE(1939), - [sym_sql_expression] = STATE(1939), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(555), - [sym_plain_type] = STATE(4014), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3272), + [sym__expression] = STATE(961), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3282), - [anon_sym_select] = ACTIONS(3284), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3288), - [anon_sym_sql] = ACTIONS(3290), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_LT_DASH] = ACTIONS(2567), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [697] = { [sym_line_comment] = STATE(697), [sym_block_comment] = STATE(697), - [sym__expression] = STATE(2122), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(961), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4039), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3410), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_LT_DASH] = ACTIONS(3416), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3418), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_LT_DASH] = ACTIONS(2567), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [698] = { [sym_line_comment] = STATE(698), [sym_block_comment] = STATE(698), - [sym__expression] = STATE(2636), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3564), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2818), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [699] = { [sym_line_comment] = STATE(699), [sym_block_comment] = STATE(699), - [sym__expression] = STATE(2590), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2423), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_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(1773), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1681), + [sym__expression] = STATE(220), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_mutability_modifiers] = STATE(649), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3182), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [701] = { [sym_line_comment] = STATE(701), [sym_block_comment] = STATE(701), - [sym__expression] = STATE(2697), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(961), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4052), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_LT_DASH] = ACTIONS(2567), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [702] = { [sym_line_comment] = STATE(702), [sym_block_comment] = STATE(702), - [sym__expression] = STATE(1774), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1681), + [sym__expression] = STATE(1668), + [sym__expression_without_blocks] = STATE(1814), + [sym__expression_with_blocks] = STATE(1814), + [sym_inc_expression] = STATE(1819), + [sym_dec_expression] = STATE(1819), + [sym_or_block_expression] = STATE(1819), + [sym_option_propagation_expression] = STATE(1819), + [sym_result_propagation_expression] = STATE(1819), + [sym_anon_struct_value_expression] = STATE(1823), + [sym_go_expression] = STATE(1819), + [sym_spawn_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_type_initializer] = STATE(1823), + [sym_function_literal] = STATE(1819), + [sym_reference_expression] = STATE(1833), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1819), + [sym_receive_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_as_type_cast_expression] = STATE(1819), + [sym__max_group] = STATE(1819), + [sym_literal] = STATE(1812), + [sym_map_init_expression] = STATE(1823), + [sym_array_creation] = STATE(1819), + [sym_fixed_array_creation] = STATE(1819), + [sym_selector_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_slice_expression] = STATE(1819), + [sym_if_expression] = STATE(1823), + [sym_compile_time_if_expression] = STATE(1823), + [sym_is_expression] = STATE(1819), + [sym_in_expression] = STATE(1819), + [sym_enum_fetch] = STATE(1819), + [sym_match_expression] = STATE(1823), + [sym_select_expression] = STATE(1823), + [sym_lock_expression] = STATE(1823), + [sym_unsafe_expression] = STATE(1823), + [sym_sql_expression] = STATE(1823), + [sym_interpreted_string_literal] = STATE(1811), + [sym_c_string_literal] = STATE(1811), + [sym_raw_string_literal] = STATE(1811), + [sym_mutability_modifiers] = STATE(614), + [sym_plain_type] = STATE(4268), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3190), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3204), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3208), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3212), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT_DASH] = ACTIONS(3218), + [sym_none] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_nil] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3228), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3232), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3220), + [sym_float_literal] = ACTIONS(3236), + [sym_rune_literal] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3242), + [anon_sym_c_DQUOTE] = ACTIONS(3244), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3248), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_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), + [sym__expression] = STATE(1755), + [sym__expression_without_blocks] = STATE(1975), + [sym__expression_with_blocks] = STATE(1975), + [sym_inc_expression] = STATE(2028), + [sym_dec_expression] = STATE(2028), + [sym_or_block_expression] = STATE(2028), + [sym_option_propagation_expression] = STATE(2028), + [sym_result_propagation_expression] = STATE(2028), + [sym_anon_struct_value_expression] = STATE(1976), + [sym_go_expression] = STATE(2028), + [sym_spawn_expression] = STATE(2028), + [sym_parenthesized_expression] = STATE(2028), + [sym_call_expression] = STATE(2028), + [sym_type_initializer] = STATE(1976), + [sym_function_literal] = STATE(2028), + [sym_reference_expression] = STATE(1960), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2028), + [sym_receive_expression] = STATE(2028), + [sym_binary_expression] = STATE(2028), + [sym_as_type_cast_expression] = STATE(2028), + [sym__max_group] = STATE(2028), + [sym_literal] = STATE(2023), + [sym_map_init_expression] = STATE(1976), + [sym_array_creation] = STATE(2028), + [sym_fixed_array_creation] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym_index_expression] = STATE(2028), + [sym_slice_expression] = STATE(2028), + [sym_if_expression] = STATE(1976), + [sym_compile_time_if_expression] = STATE(1976), + [sym_is_expression] = STATE(2028), + [sym_in_expression] = STATE(2028), + [sym_enum_fetch] = STATE(2028), + [sym_match_expression] = STATE(1976), + [sym_select_expression] = STATE(1976), + [sym_lock_expression] = STATE(1976), + [sym_unsafe_expression] = STATE(1976), + [sym_sql_expression] = STATE(1976), + [sym_interpreted_string_literal] = STATE(2022), + [sym_c_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_mutability_modifiers] = STATE(616), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3338), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3340), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_struct] = ACTIONS(3342), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), [anon_sym_TILDE] = ACTIONS(713), [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3352), + [anon_sym_rlock] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(733), [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [703] = { - [sym_line_comment] = STATE(703), - [sym_block_comment] = STATE(703), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2954), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2953), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(755), + [anon_sym_c_SQUOTE] = ACTIONS(757), + [anon_sym_c_DQUOTE] = ACTIONS(759), + [anon_sym_r_SQUOTE] = ACTIONS(761), + [anon_sym_r_DQUOTE] = ACTIONS(763), + [sym_pseudo_compile_time_identifier] = ACTIONS(765), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [704] = { [sym_line_comment] = STATE(704), [sym_block_comment] = STATE(704), - [sym__expression] = STATE(2750), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3564), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2581), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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(1775), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1681), + [sym__expression] = STATE(2444), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [706] = { [sym_line_comment] = STATE(706), [sym_block_comment] = STATE(706), - [sym__expression] = STATE(2694), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [707] = { [sym_line_comment] = STATE(707), [sym_block_comment] = STATE(707), - [sym__expression] = STATE(1857), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1681), + [sym__expression] = STATE(2451), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [708] = { [sym_line_comment] = STATE(708), [sym_block_comment] = STATE(708), - [sym__expression] = STATE(2709), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2909), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2907), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [709] = { [sym_line_comment] = STATE(709), [sym_block_comment] = STATE(709), - [sym__expression] = STATE(2711), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2777), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [710] = { [sym_line_comment] = STATE(710), [sym_block_comment] = STATE(710), - [sym__expression] = STATE(1777), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), + [sym__expression] = STATE(1256), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2493), + [anon_sym_spawn] = ACTIONS(2495), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_LT_DASH] = ACTIONS(2499), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2503), + [anon_sym_rlock] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [711] = { [sym_line_comment] = STATE(711), [sym_block_comment] = STATE(711), - [sym__expression] = STATE(1763), - [sym__expression_without_blocks] = STATE(1915), - [sym__expression_with_blocks] = STATE(1915), - [sym_inc_expression] = STATE(2035), - [sym_dec_expression] = STATE(2035), - [sym_or_block_expression] = STATE(2035), - [sym_option_propagation_expression] = STATE(2035), - [sym_result_propagation_expression] = STATE(2035), - [sym_anon_struct_value_expression] = STATE(1939), - [sym_go_expression] = STATE(2035), - [sym_spawn_expression] = STATE(2035), - [sym_parenthesized_expression] = STATE(2035), - [sym_call_expression] = STATE(2035), - [sym_type_initializer] = STATE(1939), - [sym_function_literal] = STATE(2035), - [sym_reference_expression] = STATE(1944), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2035), - [sym_receive_expression] = STATE(2035), - [sym_binary_expression] = STATE(2035), - [sym_as_type_cast_expression] = STATE(2035), - [sym__max_group] = STATE(2035), - [sym_literal] = STATE(2030), - [sym_map_init_expression] = STATE(1939), - [sym_array_creation] = STATE(2035), - [sym_fixed_array_creation] = STATE(2035), - [sym_selector_expression] = STATE(2035), - [sym_index_expression] = STATE(2035), - [sym_slice_expression] = STATE(2035), - [sym_if_expression] = STATE(1939), - [sym_compile_time_if_expression] = STATE(1939), - [sym_is_expression] = STATE(2035), - [sym_in_expression] = STATE(2035), - [sym_enum_fetch] = STATE(2035), - [sym_match_expression] = STATE(1939), - [sym_select_expression] = STATE(1939), - [sym_lock_expression] = STATE(1939), - [sym_unsafe_expression] = STATE(1939), - [sym_sql_expression] = STATE(1939), - [sym_c_string_literal] = STATE(2029), - [sym_raw_string_literal] = STATE(2029), - [sym_interpreted_string_literal] = STATE(2029), - [sym_mutability_modifiers] = STATE(555), - [sym_plain_type] = STATE(4014), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3272), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3552), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(3276), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_go] = ACTIONS(787), - [anon_sym_spawn] = ACTIONS(789), - [anon_sym_json_DOTdecode] = ACTIONS(791), - [anon_sym_LBRACK2] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_CARET] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_LT_DASH] = ACTIONS(797), - [sym_none] = ACTIONS(799), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_nil] = ACTIONS(799), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_DOLLARif] = ACTIONS(3280), - [anon_sym_match] = ACTIONS(3282), - [anon_sym_select] = ACTIONS(3284), - [anon_sym_lock] = ACTIONS(3286), - [anon_sym_rlock] = ACTIONS(3286), - [anon_sym_unsafe] = ACTIONS(3288), - [anon_sym_sql] = ACTIONS(3290), - [sym_int_literal] = ACTIONS(799), - [sym_float_literal] = ACTIONS(817), - [sym_rune_literal] = ACTIONS(817), - [sym_pseudo_compile_time_identifier] = ACTIONS(819), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(821), - [sym___single_quote] = ACTIONS(823), - [sym___c_double_quote] = ACTIONS(825), - [sym___c_single_quote] = ACTIONS(827), - [sym___r_double_quote] = ACTIONS(829), - [sym___r_single_quote] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [712] = { [sym_line_comment] = STATE(712), [sym_block_comment] = STATE(712), - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4106), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), + [sym__expression] = STATE(1256), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4088), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2493), + [anon_sym_spawn] = ACTIONS(2495), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_LT_DASH] = ACTIONS(2499), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2503), + [anon_sym_rlock] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [713] = { [sym_line_comment] = STATE(713), [sym_block_comment] = STATE(713), - [sym__expression] = STATE(2718), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(960), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_LT_DASH] = ACTIONS(2567), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [714] = { [sym_line_comment] = STATE(714), [sym_block_comment] = STATE(714), - [sym__expression] = STATE(1875), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), + [sym__expression] = STATE(954), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_LT_DASH] = ACTIONS(2567), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [715] = { [sym_line_comment] = STATE(715), [sym_block_comment] = STATE(715), - [sym__expression] = STATE(1877), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3561), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [716] = { [sym_line_comment] = STATE(716), [sym_block_comment] = STATE(716), - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), + [sym__expression] = STATE(2688), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [717] = { [sym_line_comment] = STATE(717), [sym_block_comment] = STATE(717), - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), + [sym__expression] = STATE(2123), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4272), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3304), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3316), + [anon_sym_rlock] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [718] = { [sym_line_comment] = STATE(718), [sym_block_comment] = STATE(718), - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), + [sym__expression] = STATE(2123), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4267), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3304), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3316), + [anon_sym_rlock] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [719] = { [sym_line_comment] = STATE(719), [sym_block_comment] = STATE(719), - [sym__expression] = STATE(971), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2123), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_go] = ACTIONS(3372), - [anon_sym_spawn] = ACTIONS(3374), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_CARET] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_LT_DASH] = ACTIONS(3378), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3380), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_rlock] = ACTIONS(3382), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3304), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3316), + [anon_sym_rlock] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [720] = { [sym_line_comment] = STATE(720), [sym_block_comment] = STATE(720), - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1256), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4082), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2493), + [anon_sym_spawn] = ACTIONS(2495), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_LT_DASH] = ACTIONS(2499), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2503), + [anon_sym_rlock] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [721] = { [sym_line_comment] = STATE(721), [sym_block_comment] = STATE(721), - [sym__expression] = STATE(2265), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2676), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [722] = { [sym_line_comment] = STATE(722), [sym_block_comment] = STATE(722), - [sym__expression] = STATE(2776), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(1779), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [723] = { [sym_line_comment] = STATE(723), [sym_block_comment] = STATE(723), - [sym__expression] = STATE(974), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), + [sym__expression] = STATE(2450), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3923), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1083), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1099), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [724] = { + [sym_line_comment] = STATE(724), + [sym_block_comment] = STATE(724), + [sym__expression] = STATE(961), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4059), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_go] = ACTIONS(3372), - [anon_sym_spawn] = ACTIONS(3374), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_CARET] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_LT_DASH] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_LT_DASH] = ACTIONS(2567), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -106388,5585 +106478,5471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(533), [anon_sym_DOLLARif] = ACTIONS(535), [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3380), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), - }, - [724] = { - [sym_line_comment] = STATE(724), - [sym_block_comment] = STATE(724), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2940), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2908), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [725] = { [sym_line_comment] = STATE(725), [sym_block_comment] = STATE(725), - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(957), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_LT_DASH] = ACTIONS(2567), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [726] = { [sym_line_comment] = STATE(726), [sym_block_comment] = STATE(726), - [sym__expression] = STATE(2783), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3564), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2601), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [727] = { [sym_line_comment] = STATE(727), [sym_block_comment] = STATE(727), - [sym__expression] = STATE(2458), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1267), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3076), - [anon_sym_spawn] = ACTIONS(3078), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3082), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2493), + [anon_sym_spawn] = ACTIONS(2495), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_LT_DASH] = ACTIONS(2499), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2503), + [anon_sym_rlock] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [728] = { [sym_line_comment] = STATE(728), [sym_block_comment] = STATE(728), - [sym__expression] = STATE(2580), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1616), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(698), + [sym_plain_type] = STATE(4239), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [729] = { [sym_line_comment] = STATE(729), [sym_block_comment] = STATE(729), - [sym__expression] = STATE(1137), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(2636), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [730] = { [sym_line_comment] = STATE(730), [sym_block_comment] = STATE(730), - [sym__expression] = STATE(2555), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2695), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3561), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3076), - [anon_sym_spawn] = ACTIONS(3078), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3082), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [731] = { [sym_line_comment] = STATE(731), [sym_block_comment] = STATE(731), - [sym__expression] = STATE(2368), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(2450), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3930), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1083), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [732] = { [sym_line_comment] = STATE(732), [sym_block_comment] = STATE(732), - [sym__expression] = STATE(2433), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1269), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3076), - [anon_sym_spawn] = ACTIONS(3078), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3082), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2493), + [anon_sym_spawn] = ACTIONS(2495), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_LT_DASH] = ACTIONS(2499), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2503), + [anon_sym_rlock] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [733] = { [sym_line_comment] = STATE(733), [sym_block_comment] = STATE(733), - [sym__expression] = STATE(2785), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [734] = { [sym_line_comment] = STATE(734), [sym_block_comment] = STATE(734), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2889), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2905), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2925), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2913), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [735] = { [sym_line_comment] = STATE(735), [sym_block_comment] = STATE(735), - [sym__expression] = STATE(2763), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3564), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2450), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3923), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3138), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3142), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3144), + [anon_sym_lock] = ACTIONS(3146), + [anon_sym_rlock] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [736] = { [sym_line_comment] = STATE(736), [sym_block_comment] = STATE(736), - [sym__expression] = STATE(2281), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(2450), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3928), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3138), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3142), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3144), + [anon_sym_lock] = ACTIONS(3146), + [anon_sym_rlock] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [737] = { [sym_line_comment] = STATE(737), [sym_block_comment] = STATE(737), - [sym__expression] = STATE(1632), - [sym__expression_without_blocks] = STATE(1799), - [sym__expression_with_blocks] = STATE(1799), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1801), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1801), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1844), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1797), - [sym_map_init_expression] = STATE(1801), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1801), - [sym_compile_time_if_expression] = STATE(1801), - [sym_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1801), - [sym_select_expression] = STATE(1801), - [sym_lock_expression] = STATE(1801), - [sym_unsafe_expression] = STATE(1801), - [sym_sql_expression] = STATE(1801), - [sym_c_string_literal] = STATE(1792), - [sym_raw_string_literal] = STATE(1792), - [sym_interpreted_string_literal] = STATE(1792), - [sym_mutability_modifiers] = STATE(868), - [sym_plain_type] = STATE(4300), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3198), + [sym__expression] = STATE(1256), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4081), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_fn] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_STAR] = ACTIONS(3210), - [anon_sym_struct] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_go] = ACTIONS(3216), - [anon_sym_spawn] = ACTIONS(3218), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_CARET] = ACTIONS(3208), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), - [sym_none] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_nil] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_DOLLARif] = ACTIONS(3232), - [anon_sym_match] = ACTIONS(3234), - [anon_sym_select] = ACTIONS(3236), - [anon_sym_lock] = ACTIONS(3238), - [anon_sym_rlock] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(3240), - [anon_sym_sql] = ACTIONS(3242), - [sym_int_literal] = ACTIONS(3228), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3246), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3248), - [sym___single_quote] = ACTIONS(3250), - [sym___c_double_quote] = ACTIONS(3252), - [sym___c_single_quote] = ACTIONS(3254), - [sym___r_double_quote] = ACTIONS(3256), - [sym___r_single_quote] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2493), + [anon_sym_spawn] = ACTIONS(2495), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_LT_DASH] = ACTIONS(2499), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2503), + [anon_sym_rlock] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [738] = { [sym_line_comment] = STATE(738), [sym_block_comment] = STATE(738), - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2450), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3930), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3138), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3142), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3144), + [anon_sym_lock] = ACTIONS(3146), + [anon_sym_rlock] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [739] = { [sym_line_comment] = STATE(739), [sym_block_comment] = STATE(739), - [sym__expression] = STATE(1777), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1681), + [sym__expression] = STATE(2268), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [740] = { [sym_line_comment] = STATE(740), [sym_block_comment] = STATE(740), - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4106), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1681), + [sym__expression] = STATE(2696), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [741] = { [sym_line_comment] = STATE(741), [sym_block_comment] = STATE(741), - [sym__expression] = STATE(1769), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1681), + [sym__expression] = STATE(1751), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4247), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [742] = { [sym_line_comment] = STATE(742), [sym_block_comment] = STATE(742), - [sym__expression] = STATE(1767), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1681), + [sym__expression] = STATE(1794), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [743] = { [sym_line_comment] = STATE(743), [sym_block_comment] = STATE(743), - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1681), + [sym__expression] = STATE(1126), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [744] = { [sym_line_comment] = STATE(744), [sym_block_comment] = STATE(744), - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1681), + [sym__expression] = STATE(955), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_LT_DASH] = ACTIONS(2567), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [745] = { [sym_line_comment] = STATE(745), [sym_block_comment] = STATE(745), - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1681), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_go] = ACTIONS(723), - [anon_sym_spawn] = ACTIONS(725), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_LT_DASH] = ACTIONS(733), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(743), - [anon_sym_lock] = ACTIONS(745), - [anon_sym_rlock] = ACTIONS(745), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [746] = { [sym_line_comment] = STATE(746), [sym_block_comment] = STATE(746), - [sym__expression] = STATE(2380), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(2411), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_LT_DASH] = ACTIONS(2525), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_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(2646), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(1257), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2493), + [anon_sym_spawn] = ACTIONS(2495), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_LT_DASH] = ACTIONS(2499), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(2501), + [anon_sym_lock] = ACTIONS(2503), + [anon_sym_rlock] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [748] = { [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2911), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2910), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2606), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [749] = { [sym_line_comment] = STATE(749), [sym_block_comment] = STATE(749), - [sym__expression] = STATE(2642), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3564), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2776), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3561), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [750] = { [sym_line_comment] = STATE(750), [sym_block_comment] = STATE(750), - [sym__expression] = STATE(2616), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2743), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [751] = { [sym_line_comment] = STATE(751), [sym_block_comment] = STATE(751), - [sym__expression] = STATE(2393), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(2825), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [752] = { [sym_line_comment] = STATE(752), [sym_block_comment] = STATE(752), - [sym__expression] = STATE(2683), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2944), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2943), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [753] = { [sym_line_comment] = STATE(753), [sym_block_comment] = STATE(753), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2957), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2956), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2123), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [754] = { [sym_line_comment] = STATE(754), [sym_block_comment] = STATE(754), - [sym__expression] = STATE(2708), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3564), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2263), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [755] = { [sym_line_comment] = STATE(755), [sym_block_comment] = STATE(755), - [sym__expression] = STATE(2261), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1814), + [sym__expression_with_blocks] = STATE(1814), + [sym_inc_expression] = STATE(1819), + [sym_dec_expression] = STATE(1819), + [sym_or_block_expression] = STATE(1819), + [sym_option_propagation_expression] = STATE(1819), + [sym_result_propagation_expression] = STATE(1819), + [sym_anon_struct_value_expression] = STATE(1823), + [sym_go_expression] = STATE(1819), + [sym_spawn_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_type_initializer] = STATE(1823), + [sym_function_literal] = STATE(1819), + [sym_reference_expression] = STATE(1833), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1819), + [sym_receive_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_as_type_cast_expression] = STATE(1819), + [sym__max_group] = STATE(1819), + [sym_literal] = STATE(1812), + [sym_map_init_expression] = STATE(1823), + [sym_array_creation] = STATE(1819), + [sym_fixed_array_creation] = STATE(1819), + [sym_selector_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_slice_expression] = STATE(1819), + [sym_if_expression] = STATE(1823), + [sym_compile_time_if_expression] = STATE(1823), + [sym_is_expression] = STATE(1819), + [sym_in_expression] = STATE(1819), + [sym_enum_fetch] = STATE(1819), + [sym_match_expression] = STATE(1823), + [sym_select_expression] = STATE(1823), + [sym_lock_expression] = STATE(1823), + [sym_unsafe_expression] = STATE(1823), + [sym_sql_expression] = STATE(1823), + [sym_interpreted_string_literal] = STATE(1811), + [sym_c_string_literal] = STATE(1811), + [sym_raw_string_literal] = STATE(1811), + [sym_mutability_modifiers] = STATE(614), + [sym_plain_type] = STATE(4219), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3190), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3204), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3208), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3212), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT_DASH] = ACTIONS(3218), + [sym_none] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_nil] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3228), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3232), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3220), + [sym_float_literal] = ACTIONS(3236), + [sym_rune_literal] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3242), + [anon_sym_c_DQUOTE] = ACTIONS(3244), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3248), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [756] = { [sym_line_comment] = STATE(756), [sym_block_comment] = STATE(756), - [sym__expression] = STATE(2613), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2123), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4267), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [757] = { [sym_line_comment] = STATE(757), [sym_block_comment] = STATE(757), - [sym__expression] = STATE(2413), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(1660), + [sym__expression_without_blocks] = STATE(1814), + [sym__expression_with_blocks] = STATE(1814), + [sym_inc_expression] = STATE(1819), + [sym_dec_expression] = STATE(1819), + [sym_or_block_expression] = STATE(1819), + [sym_option_propagation_expression] = STATE(1819), + [sym_result_propagation_expression] = STATE(1819), + [sym_anon_struct_value_expression] = STATE(1823), + [sym_go_expression] = STATE(1819), + [sym_spawn_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_type_initializer] = STATE(1823), + [sym_function_literal] = STATE(1819), + [sym_reference_expression] = STATE(1833), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1819), + [sym_receive_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_as_type_cast_expression] = STATE(1819), + [sym__max_group] = STATE(1819), + [sym_literal] = STATE(1812), + [sym_map_init_expression] = STATE(1823), + [sym_array_creation] = STATE(1819), + [sym_fixed_array_creation] = STATE(1819), + [sym_selector_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_slice_expression] = STATE(1819), + [sym_if_expression] = STATE(1823), + [sym_compile_time_if_expression] = STATE(1823), + [sym_is_expression] = STATE(1819), + [sym_in_expression] = STATE(1819), + [sym_enum_fetch] = STATE(1819), + [sym_match_expression] = STATE(1823), + [sym_select_expression] = STATE(1823), + [sym_lock_expression] = STATE(1823), + [sym_unsafe_expression] = STATE(1823), + [sym_sql_expression] = STATE(1823), + [sym_interpreted_string_literal] = STATE(1811), + [sym_c_string_literal] = STATE(1811), + [sym_raw_string_literal] = STATE(1811), + [sym_mutability_modifiers] = STATE(614), + [sym_plain_type] = STATE(4219), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3190), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3204), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3208), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3212), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT_DASH] = ACTIONS(3218), + [sym_none] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_nil] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3228), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3232), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3220), + [sym_float_literal] = ACTIONS(3236), + [sym_rune_literal] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3242), + [anon_sym_c_DQUOTE] = ACTIONS(3244), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3248), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [758] = { [sym_line_comment] = STATE(758), [sym_block_comment] = STATE(758), - [sym__expression] = STATE(2414), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [759] = { [sym_line_comment] = STATE(759), [sym_block_comment] = STATE(759), - [sym__expression] = STATE(1650), - [sym__expression_without_blocks] = STATE(1799), - [sym__expression_with_blocks] = STATE(1799), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1801), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1801), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1844), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1797), - [sym_map_init_expression] = STATE(1801), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1801), - [sym_compile_time_if_expression] = STATE(1801), - [sym_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1801), - [sym_select_expression] = STATE(1801), - [sym_lock_expression] = STATE(1801), - [sym_unsafe_expression] = STATE(1801), - [sym_sql_expression] = STATE(1801), - [sym_c_string_literal] = STATE(1792), - [sym_raw_string_literal] = STATE(1792), - [sym_interpreted_string_literal] = STATE(1792), - [sym_mutability_modifiers] = STATE(868), - [sym_plain_type] = STATE(4300), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3198), + [sym__expression] = STATE(2638), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3561), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_fn] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_STAR] = ACTIONS(3210), - [anon_sym_struct] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_go] = ACTIONS(3216), - [anon_sym_spawn] = ACTIONS(3218), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_CARET] = ACTIONS(3208), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), - [sym_none] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_nil] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_DOLLARif] = ACTIONS(3232), - [anon_sym_match] = ACTIONS(3234), - [anon_sym_select] = ACTIONS(3236), - [anon_sym_lock] = ACTIONS(3238), - [anon_sym_rlock] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(3240), - [anon_sym_sql] = ACTIONS(3242), - [sym_int_literal] = ACTIONS(3228), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3246), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3248), - [sym___single_quote] = ACTIONS(3250), - [sym___c_double_quote] = ACTIONS(3252), - [sym___c_single_quote] = ACTIONS(3254), - [sym___r_double_quote] = ACTIONS(3256), - [sym___r_single_quote] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [760] = { [sym_line_comment] = STATE(760), [sym_block_comment] = STATE(760), - [sym__expression] = STATE(225), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_mutability_modifiers] = STATE(845), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3184), + [sym__expression] = STATE(2137), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_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(2739), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(1650), + [sym__expression_without_blocks] = STATE(1814), + [sym__expression_with_blocks] = STATE(1814), + [sym_inc_expression] = STATE(1819), + [sym_dec_expression] = STATE(1819), + [sym_or_block_expression] = STATE(1819), + [sym_option_propagation_expression] = STATE(1819), + [sym_result_propagation_expression] = STATE(1819), + [sym_anon_struct_value_expression] = STATE(1823), + [sym_go_expression] = STATE(1819), + [sym_spawn_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_type_initializer] = STATE(1823), + [sym_function_literal] = STATE(1819), + [sym_reference_expression] = STATE(1833), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1819), + [sym_receive_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_as_type_cast_expression] = STATE(1819), + [sym__max_group] = STATE(1819), + [sym_literal] = STATE(1812), + [sym_map_init_expression] = STATE(1823), + [sym_array_creation] = STATE(1819), + [sym_fixed_array_creation] = STATE(1819), + [sym_selector_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_slice_expression] = STATE(1819), + [sym_if_expression] = STATE(1823), + [sym_compile_time_if_expression] = STATE(1823), + [sym_is_expression] = STATE(1819), + [sym_in_expression] = STATE(1819), + [sym_enum_fetch] = STATE(1819), + [sym_match_expression] = STATE(1823), + [sym_select_expression] = STATE(1823), + [sym_lock_expression] = STATE(1823), + [sym_unsafe_expression] = STATE(1823), + [sym_sql_expression] = STATE(1823), + [sym_interpreted_string_literal] = STATE(1811), + [sym_c_string_literal] = STATE(1811), + [sym_raw_string_literal] = STATE(1811), + [sym_mutability_modifiers] = STATE(614), + [sym_plain_type] = STATE(4219), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3190), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3204), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3208), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3212), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT_DASH] = ACTIONS(3218), + [sym_none] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_nil] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3228), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3232), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3220), + [sym_float_literal] = ACTIONS(3236), + [sym_rune_literal] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3242), + [anon_sym_c_DQUOTE] = ACTIONS(3244), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3248), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [762] = { [sym_line_comment] = STATE(762), [sym_block_comment] = STATE(762), - [sym__expression] = STATE(2137), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2887), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2889), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3410), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_LT_DASH] = ACTIONS(3416), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3418), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [763] = { [sym_line_comment] = STATE(763), [sym_block_comment] = STATE(763), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2919), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2913), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2278), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [764] = { [sym_line_comment] = STATE(764), [sym_block_comment] = STATE(764), - [sym__expression] = STATE(224), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_mutability_modifiers] = STATE(845), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3184), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [765] = { [sym_line_comment] = STATE(765), [sym_block_comment] = STATE(765), - [sym__expression] = STATE(2276), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3555), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3410), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_LT_DASH] = ACTIONS(3416), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3418), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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(223), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_mutability_modifiers] = STATE(845), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3184), + [sym__expression] = STATE(1649), + [sym__expression_without_blocks] = STATE(1814), + [sym__expression_with_blocks] = STATE(1814), + [sym_inc_expression] = STATE(1819), + [sym_dec_expression] = STATE(1819), + [sym_or_block_expression] = STATE(1819), + [sym_option_propagation_expression] = STATE(1819), + [sym_result_propagation_expression] = STATE(1819), + [sym_anon_struct_value_expression] = STATE(1823), + [sym_go_expression] = STATE(1819), + [sym_spawn_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_type_initializer] = STATE(1823), + [sym_function_literal] = STATE(1819), + [sym_reference_expression] = STATE(1833), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1819), + [sym_receive_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_as_type_cast_expression] = STATE(1819), + [sym__max_group] = STATE(1819), + [sym_literal] = STATE(1812), + [sym_map_init_expression] = STATE(1823), + [sym_array_creation] = STATE(1819), + [sym_fixed_array_creation] = STATE(1819), + [sym_selector_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_slice_expression] = STATE(1819), + [sym_if_expression] = STATE(1823), + [sym_compile_time_if_expression] = STATE(1823), + [sym_is_expression] = STATE(1819), + [sym_in_expression] = STATE(1819), + [sym_enum_fetch] = STATE(1819), + [sym_match_expression] = STATE(1823), + [sym_select_expression] = STATE(1823), + [sym_lock_expression] = STATE(1823), + [sym_unsafe_expression] = STATE(1823), + [sym_sql_expression] = STATE(1823), + [sym_interpreted_string_literal] = STATE(1811), + [sym_c_string_literal] = STATE(1811), + [sym_raw_string_literal] = STATE(1811), + [sym_mutability_modifiers] = STATE(614), + [sym_plain_type] = STATE(4219), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3190), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3204), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3208), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3212), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT_DASH] = ACTIONS(3218), + [sym_none] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_nil] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3228), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3232), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3220), + [sym_float_literal] = ACTIONS(3236), + [sym_rune_literal] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3242), + [anon_sym_c_DQUOTE] = ACTIONS(3244), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3248), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_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(978), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2593), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_go] = ACTIONS(3372), - [anon_sym_spawn] = ACTIONS(3374), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_CARET] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_LT_DASH] = ACTIONS(3378), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3380), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_rlock] = ACTIONS(3382), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [768] = { [sym_line_comment] = STATE(768), [sym_block_comment] = STATE(768), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3559), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1644), + [sym__expression_without_blocks] = STATE(1814), + [sym__expression_with_blocks] = STATE(1814), + [sym_inc_expression] = STATE(1819), + [sym_dec_expression] = STATE(1819), + [sym_or_block_expression] = STATE(1819), + [sym_option_propagation_expression] = STATE(1819), + [sym_result_propagation_expression] = STATE(1819), + [sym_anon_struct_value_expression] = STATE(1823), + [sym_go_expression] = STATE(1819), + [sym_spawn_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_type_initializer] = STATE(1823), + [sym_function_literal] = STATE(1819), + [sym_reference_expression] = STATE(1833), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1819), + [sym_receive_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_as_type_cast_expression] = STATE(1819), + [sym__max_group] = STATE(1819), + [sym_literal] = STATE(1812), + [sym_map_init_expression] = STATE(1823), + [sym_array_creation] = STATE(1819), + [sym_fixed_array_creation] = STATE(1819), + [sym_selector_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_slice_expression] = STATE(1819), + [sym_if_expression] = STATE(1823), + [sym_compile_time_if_expression] = STATE(1823), + [sym_is_expression] = STATE(1819), + [sym_in_expression] = STATE(1819), + [sym_enum_fetch] = STATE(1819), + [sym_match_expression] = STATE(1823), + [sym_select_expression] = STATE(1823), + [sym_lock_expression] = STATE(1823), + [sym_unsafe_expression] = STATE(1823), + [sym_sql_expression] = STATE(1823), + [sym_interpreted_string_literal] = STATE(1811), + [sym_c_string_literal] = STATE(1811), + [sym_raw_string_literal] = STATE(1811), + [sym_mutability_modifiers] = STATE(614), + [sym_plain_type] = STATE(4219), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3190), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3204), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3208), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3212), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT_DASH] = ACTIONS(3218), + [sym_none] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_nil] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3228), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3232), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3220), + [sym_float_literal] = ACTIONS(3236), + [sym_rune_literal] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3242), + [anon_sym_c_DQUOTE] = ACTIONS(3244), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3248), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [769] = { [sym_line_comment] = STATE(769), [sym_block_comment] = STATE(769), - [sym__expression] = STATE(1124), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1643), + [sym__expression_without_blocks] = STATE(1814), + [sym__expression_with_blocks] = STATE(1814), + [sym_inc_expression] = STATE(1819), + [sym_dec_expression] = STATE(1819), + [sym_or_block_expression] = STATE(1819), + [sym_option_propagation_expression] = STATE(1819), + [sym_result_propagation_expression] = STATE(1819), + [sym_anon_struct_value_expression] = STATE(1823), + [sym_go_expression] = STATE(1819), + [sym_spawn_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_type_initializer] = STATE(1823), + [sym_function_literal] = STATE(1819), + [sym_reference_expression] = STATE(1833), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1819), + [sym_receive_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_as_type_cast_expression] = STATE(1819), + [sym__max_group] = STATE(1819), + [sym_literal] = STATE(1812), + [sym_map_init_expression] = STATE(1823), + [sym_array_creation] = STATE(1819), + [sym_fixed_array_creation] = STATE(1819), + [sym_selector_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_slice_expression] = STATE(1819), + [sym_if_expression] = STATE(1823), + [sym_compile_time_if_expression] = STATE(1823), + [sym_is_expression] = STATE(1819), + [sym_in_expression] = STATE(1819), + [sym_enum_fetch] = STATE(1819), + [sym_match_expression] = STATE(1823), + [sym_select_expression] = STATE(1823), + [sym_lock_expression] = STATE(1823), + [sym_unsafe_expression] = STATE(1823), + [sym_sql_expression] = STATE(1823), + [sym_interpreted_string_literal] = STATE(1811), + [sym_c_string_literal] = STATE(1811), + [sym_raw_string_literal] = STATE(1811), + [sym_mutability_modifiers] = STATE(614), + [sym_plain_type] = STATE(4219), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3190), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3204), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3208), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3212), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT_DASH] = ACTIONS(3218), + [sym_none] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_nil] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3228), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3232), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3220), + [sym_float_literal] = ACTIONS(3236), + [sym_rune_literal] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3242), + [anon_sym_c_DQUOTE] = ACTIONS(3244), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3248), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [770] = { [sym_line_comment] = STATE(770), [sym_block_comment] = STATE(770), - [sym__expression] = STATE(1654), - [sym__expression_without_blocks] = STATE(1799), - [sym__expression_with_blocks] = STATE(1799), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1801), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1801), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1844), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1797), - [sym_map_init_expression] = STATE(1801), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1801), - [sym_compile_time_if_expression] = STATE(1801), - [sym_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1801), - [sym_select_expression] = STATE(1801), - [sym_lock_expression] = STATE(1801), - [sym_unsafe_expression] = STATE(1801), - [sym_sql_expression] = STATE(1801), - [sym_c_string_literal] = STATE(1792), - [sym_raw_string_literal] = STATE(1792), - [sym_interpreted_string_literal] = STATE(1792), - [sym_mutability_modifiers] = STATE(868), - [sym_plain_type] = STATE(4300), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3198), + [sym__expression] = STATE(2285), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4196), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_fn] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_STAR] = ACTIONS(3210), - [anon_sym_struct] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_go] = ACTIONS(3216), - [anon_sym_spawn] = ACTIONS(3218), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_CARET] = ACTIONS(3208), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), - [sym_none] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_nil] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_DOLLARif] = ACTIONS(3232), - [anon_sym_match] = ACTIONS(3234), - [anon_sym_select] = ACTIONS(3236), - [anon_sym_lock] = ACTIONS(3238), - [anon_sym_rlock] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(3240), - [anon_sym_sql] = ACTIONS(3242), - [sym_int_literal] = ACTIONS(3228), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3246), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3248), - [sym___single_quote] = ACTIONS(3250), - [sym___c_double_quote] = ACTIONS(3252), - [sym___c_single_quote] = ACTIONS(3254), - [sym___r_double_quote] = ACTIONS(3256), - [sym___r_single_quote] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_LT_DASH] = ACTIONS(2525), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [771] = { [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [sym__expression] = STATE(961), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2745), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3561), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2251), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [772] = { [sym_line_comment] = STATE(772), [sym_block_comment] = STATE(772), - [sym__expression] = STATE(965), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4129), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), + [sym__expression] = STATE(956), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_BANG] = ACTIONS(2559), [anon_sym_go] = ACTIONS(519), [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2251), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_LT_DASH] = ACTIONS(2567), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -111980,107 +111956,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [773] = { [sym_line_comment] = STATE(773), [sym_block_comment] = STATE(773), - [sym__expression] = STATE(966), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), + [sym__expression] = STATE(2770), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [774] = { + [sym_line_comment] = STATE(774), + [sym_block_comment] = STATE(774), + [sym__expression] = STATE(969), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2251), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3406), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -112088,438 +112178,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(533), [anon_sym_DOLLARif] = ACTIONS(535), [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), - }, - [774] = { - [sym_line_comment] = STATE(774), - [sym_block_comment] = STATE(774), - [sym__expression] = STATE(1649), - [sym__expression_without_blocks] = STATE(1799), - [sym__expression_with_blocks] = STATE(1799), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1801), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1801), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1844), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1797), - [sym_map_init_expression] = STATE(1801), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1801), - [sym_compile_time_if_expression] = STATE(1801), - [sym_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1801), - [sym_select_expression] = STATE(1801), - [sym_lock_expression] = STATE(1801), - [sym_unsafe_expression] = STATE(1801), - [sym_sql_expression] = STATE(1801), - [sym_c_string_literal] = STATE(1792), - [sym_raw_string_literal] = STATE(1792), - [sym_interpreted_string_literal] = STATE(1792), - [sym_mutability_modifiers] = STATE(868), - [sym_plain_type] = STATE(4300), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3198), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_fn] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_STAR] = ACTIONS(3210), - [anon_sym_struct] = ACTIONS(3212), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_go] = ACTIONS(3216), - [anon_sym_spawn] = ACTIONS(3218), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_CARET] = ACTIONS(3208), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), - [sym_none] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_nil] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_DOLLARif] = ACTIONS(3232), - [anon_sym_match] = ACTIONS(3234), - [anon_sym_select] = ACTIONS(3236), - [anon_sym_lock] = ACTIONS(3238), - [anon_sym_rlock] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(3240), - [anon_sym_sql] = ACTIONS(3242), - [sym_int_literal] = ACTIONS(3228), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3246), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3248), - [sym___single_quote] = ACTIONS(3250), - [sym___c_double_quote] = ACTIONS(3252), - [sym___c_single_quote] = ACTIONS(3254), - [sym___r_double_quote] = ACTIONS(3256), - [sym___r_single_quote] = ACTIONS(3258), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [775] = { [sym_line_comment] = STATE(775), [sym_block_comment] = STATE(775), - [sym__expression] = STATE(962), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2450), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2251), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3138), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3142), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3144), + [anon_sym_lock] = ACTIONS(3146), + [anon_sym_rlock] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [776] = { [sym_line_comment] = STATE(776), [sym_block_comment] = STATE(776), - [sym__expression] = STATE(965), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4119), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2251), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), - }, - [777] = { - [sym_line_comment] = STATE(777), - [sym_block_comment] = STATE(777), - [sym__expression] = STATE(219), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_mutability_modifiers] = STATE(845), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3184), + [sym__expression] = STATE(222), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_mutability_modifiers] = STATE(649), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3182), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_fn] = ACTIONS(485), [anon_sym_PLUS] = ACTIONS(31), @@ -112552,2824 +112414,2710 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(63), [sym_float_literal] = ACTIONS(79), [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [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), + }, + [777] = { + [sym_line_comment] = STATE(777), + [sym_block_comment] = STATE(777), + [sym__expression] = STATE(2263), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [778] = { [sym_line_comment] = STATE(778), [sym_block_comment] = STATE(778), - [sym__expression] = STATE(220), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_mutability_modifiers] = STATE(845), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3184), + [sym__expression] = STATE(2782), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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(965), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4114), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3552), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2251), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [780] = { [sym_line_comment] = STATE(780), [sym_block_comment] = STATE(780), - [sym__expression] = STATE(217), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_mutability_modifiers] = STATE(845), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3184), + [sym__expression] = STATE(2591), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [781] = { [sym_line_comment] = STATE(781), [sym_block_comment] = STATE(781), - [sym__expression] = STATE(965), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2772), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2251), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [782] = { [sym_line_comment] = STATE(782), [sym_block_comment] = STATE(782), - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2794), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [783] = { [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), - [sym__expression] = STATE(2768), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3564), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3552), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [784] = { [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [sym__expression] = STATE(1628), - [sym__expression_without_blocks] = STATE(1799), - [sym__expression_with_blocks] = STATE(1799), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1801), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1801), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1844), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1797), - [sym_map_init_expression] = STATE(1801), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1801), - [sym_compile_time_if_expression] = STATE(1801), - [sym_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1801), - [sym_select_expression] = STATE(1801), - [sym_lock_expression] = STATE(1801), - [sym_unsafe_expression] = STATE(1801), - [sym_sql_expression] = STATE(1801), - [sym_c_string_literal] = STATE(1792), - [sym_raw_string_literal] = STATE(1792), - [sym_interpreted_string_literal] = STATE(1792), - [sym_mutability_modifiers] = STATE(868), - [sym_plain_type] = STATE(4300), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3198), + [sym__expression] = STATE(2793), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_fn] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_STAR] = ACTIONS(3210), - [anon_sym_struct] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_go] = ACTIONS(3216), - [anon_sym_spawn] = ACTIONS(3218), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_CARET] = ACTIONS(3208), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), - [sym_none] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_nil] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_DOLLARif] = ACTIONS(3232), - [anon_sym_match] = ACTIONS(3234), - [anon_sym_select] = ACTIONS(3236), - [anon_sym_lock] = ACTIONS(3238), - [anon_sym_rlock] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(3240), - [anon_sym_sql] = ACTIONS(3242), - [sym_int_literal] = ACTIONS(3228), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3246), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3248), - [sym___single_quote] = ACTIONS(3250), - [sym___c_double_quote] = ACTIONS(3252), - [sym___c_single_quote] = ACTIONS(3254), - [sym___r_double_quote] = ACTIONS(3256), - [sym___r_single_quote] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [785] = { [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [sym__expression] = STATE(2595), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(977), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3406), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_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(2784), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3555), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [787] = { [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2909), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2915), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2263), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [788] = { [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3564), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2616), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [789] = { [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [sym__expression] = STATE(2587), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [790] = { [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [sym__expression] = STATE(2793), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(1784), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [791] = { [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2930), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2952), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2280), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2517), + [anon_sym_go] = ACTIONS(1663), + [anon_sym_spawn] = ACTIONS(1665), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(2513), + [anon_sym_CARET] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_LT_DASH] = ACTIONS(2525), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(1683), + [anon_sym_lock] = ACTIONS(1685), + [anon_sym_rlock] = ACTIONS(1685), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [792] = { [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [sym__expression] = STATE(1646), - [sym__expression_without_blocks] = STATE(1799), - [sym__expression_with_blocks] = STATE(1799), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1801), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1801), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1844), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1797), - [sym_map_init_expression] = STATE(1801), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1801), - [sym_compile_time_if_expression] = STATE(1801), - [sym_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1801), - [sym_select_expression] = STATE(1801), - [sym_lock_expression] = STATE(1801), - [sym_unsafe_expression] = STATE(1801), - [sym_sql_expression] = STATE(1801), - [sym_c_string_literal] = STATE(1792), - [sym_raw_string_literal] = STATE(1792), - [sym_interpreted_string_literal] = STATE(1792), - [sym_mutability_modifiers] = STATE(868), - [sym_plain_type] = STATE(4300), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3198), + [sym__expression] = STATE(2790), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3561), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_fn] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_STAR] = ACTIONS(3210), - [anon_sym_struct] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_go] = ACTIONS(3216), - [anon_sym_spawn] = ACTIONS(3218), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_CARET] = ACTIONS(3208), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), - [sym_none] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_nil] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_DOLLARif] = ACTIONS(3232), - [anon_sym_match] = ACTIONS(3234), - [anon_sym_select] = ACTIONS(3236), - [anon_sym_lock] = ACTIONS(3238), - [anon_sym_rlock] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(3240), - [anon_sym_sql] = ACTIONS(3242), - [sym_int_literal] = ACTIONS(3228), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3246), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3248), - [sym___single_quote] = ACTIONS(3250), - [sym___c_double_quote] = ACTIONS(3252), - [sym___c_single_quote] = ACTIONS(3254), - [sym___r_double_quote] = ACTIONS(3256), - [sym___r_single_quote] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [793] = { [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [sym__expression] = STATE(2805), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3564), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2711), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [794] = { [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1799), - [sym__expression_with_blocks] = STATE(1799), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1801), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1801), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1844), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1797), - [sym_map_init_expression] = STATE(1801), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1801), - [sym_compile_time_if_expression] = STATE(1801), - [sym_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1801), - [sym_select_expression] = STATE(1801), - [sym_lock_expression] = STATE(1801), - [sym_unsafe_expression] = STATE(1801), - [sym_sql_expression] = STATE(1801), - [sym_c_string_literal] = STATE(1792), - [sym_raw_string_literal] = STATE(1792), - [sym_interpreted_string_literal] = STATE(1792), - [sym_mutability_modifiers] = STATE(868), - [sym_plain_type] = STATE(4300), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3198), + [sym__expression] = STATE(2474), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_fn] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_STAR] = ACTIONS(3210), - [anon_sym_struct] = ACTIONS(3212), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_go] = ACTIONS(3216), - [anon_sym_spawn] = ACTIONS(3218), - [anon_sym_json_DOTdecode] = ACTIONS(3220), - [anon_sym_LBRACK2] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_CARET] = ACTIONS(3208), - [anon_sym_AMP] = ACTIONS(3224), - [anon_sym_LT_DASH] = ACTIONS(3226), - [sym_none] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_nil] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_DOLLARif] = ACTIONS(3232), - [anon_sym_match] = ACTIONS(3234), - [anon_sym_select] = ACTIONS(3236), - [anon_sym_lock] = ACTIONS(3238), - [anon_sym_rlock] = ACTIONS(3238), - [anon_sym_unsafe] = ACTIONS(3240), - [anon_sym_sql] = ACTIONS(3242), - [sym_int_literal] = ACTIONS(3228), - [sym_float_literal] = ACTIONS(3244), - [sym_rune_literal] = ACTIONS(3244), - [sym_pseudo_compile_time_identifier] = ACTIONS(3246), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3248), - [sym___single_quote] = ACTIONS(3250), - [sym___c_double_quote] = ACTIONS(3252), - [sym___c_single_quote] = ACTIONS(3254), - [sym___r_double_quote] = ACTIONS(3256), - [sym___r_single_quote] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3138), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3142), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3144), + [anon_sym_lock] = ACTIONS(3146), + [anon_sym_rlock] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [795] = { [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [sym__expression] = STATE(2579), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2459), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3138), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3142), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3144), + [anon_sym_lock] = ACTIONS(3146), + [anon_sym_rlock] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [796] = { [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [sym__expression] = STATE(2788), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2953), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2954), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [797] = { [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [sym__expression] = STATE(2790), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2440), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [798] = { [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2935), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2918), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2444), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3138), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3142), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3144), + [anon_sym_lock] = ACTIONS(3146), + [anon_sym_rlock] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [799] = { [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym__expression] = STATE(2786), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2449), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [800] = { [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), - [sym__expression] = STATE(1908), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [801] = { - [sym_line_comment] = STATE(801), - [sym_block_comment] = STATE(801), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3558), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [802] = { - [sym_line_comment] = STATE(802), - [sym_block_comment] = STATE(802), - [sym__expression] = STATE(218), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_mutability_modifiers] = STATE(845), - [sym_plain_type] = STATE(4195), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3184), + [sym__expression] = STATE(228), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_mutability_modifiers] = STATE(649), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3182), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), [anon_sym_LPAREN] = ACTIONS(23), [anon_sym_fn] = ACTIONS(485), [anon_sym_PLUS] = ACTIONS(31), @@ -115402,8541 +115150,8769 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(63), [sym_float_literal] = ACTIONS(79), [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [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), + }, + [801] = { + [sym_line_comment] = STATE(801), + [sym_block_comment] = STATE(801), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2915), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2886), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [802] = { + [sym_line_comment] = STATE(802), + [sym_block_comment] = STATE(802), + [sym__expression] = STATE(1289), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [803] = { [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2450), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3923), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [804] = { [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym__expression] = STATE(2266), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(1808), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3310), - [anon_sym_spawn] = ACTIONS(3312), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_CARET] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3320), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3330), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [805] = { [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym__expression] = STATE(2374), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(1117), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [806] = { [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [sym__expression] = STATE(2124), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(1807), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3310), - [anon_sym_spawn] = ACTIONS(3312), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_CARET] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3320), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3330), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [807] = { [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym__expression] = STATE(2261), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1806), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [808] = { [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(3559), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2831), + [sym__expression_without_blocks] = STATE(2902), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [809] = { [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym__expression] = STATE(2536), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2450), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3928), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [810] = { [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym__expression] = STATE(2454), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1799), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [811] = { [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym__expression] = STATE(2829), - [sym__expression_without_blocks] = STATE(2921), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(1768), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [812] = { [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(3558), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1255), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [813] = { [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1265), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [814] = { [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1797), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [815] = { [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym__expression] = STATE(2268), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(2582), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3310), - [anon_sym_spawn] = ACTIONS(3312), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_CARET] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3320), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3330), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [816] = { [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym__expression] = STATE(2270), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), + [sym__expression] = STATE(1268), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3310), - [anon_sym_spawn] = ACTIONS(3312), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_CARET] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3320), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3330), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [817] = { [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3564), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2494), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [818] = { [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2802), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [819] = { [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym__expression] = STATE(2271), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), + [sym__expression] = STATE(1273), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3310), - [anon_sym_spawn] = ACTIONS(3312), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_CARET] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3320), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3330), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [820] = { [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym__expression] = STATE(2770), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(1275), + [sym__expression_without_blocks] = STATE(1313), + [sym__expression_with_blocks] = STATE(1313), + [sym_inc_expression] = STATE(1314), + [sym_dec_expression] = STATE(1314), + [sym_or_block_expression] = STATE(1314), + [sym_option_propagation_expression] = STATE(1314), + [sym_result_propagation_expression] = STATE(1314), + [sym_anon_struct_value_expression] = STATE(1315), + [sym_go_expression] = STATE(1314), + [sym_spawn_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_type_initializer] = STATE(1315), + [sym_function_literal] = STATE(1314), + [sym_reference_expression] = STATE(1340), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1314), + [sym_receive_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_as_type_cast_expression] = STATE(1314), + [sym__max_group] = STATE(1314), + [sym_literal] = STATE(1309), + [sym_map_init_expression] = STATE(1315), + [sym_array_creation] = STATE(1314), + [sym_fixed_array_creation] = STATE(1314), + [sym_selector_expression] = STATE(1314), + [sym_index_expression] = STATE(1314), + [sym_slice_expression] = STATE(1314), + [sym_if_expression] = STATE(1315), + [sym_compile_time_if_expression] = STATE(1315), + [sym_is_expression] = STATE(1314), + [sym_in_expression] = STATE(1314), + [sym_enum_fetch] = STATE(1314), + [sym_match_expression] = STATE(1315), + [sym_select_expression] = STATE(1315), + [sym_lock_expression] = STATE(1315), + [sym_unsafe_expression] = STATE(1315), + [sym_sql_expression] = STATE(1315), + [sym_interpreted_string_literal] = STATE(1290), + [sym_c_string_literal] = STATE(1290), + [sym_raw_string_literal] = STATE(1290), + [sym_mutability_modifiers] = STATE(893), + [sym_plain_type] = STATE(4173), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_fn] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1315), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_go] = ACTIONS(1319), + [anon_sym_spawn] = ACTIONS(1321), + [anon_sym_json_DOTdecode] = ACTIONS(1323), + [anon_sym_LBRACK2] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_LT_DASH] = ACTIONS(1329), + [sym_none] = ACTIONS(1331), + [sym_true] = ACTIONS(1331), + [sym_false] = ACTIONS(1331), + [sym_nil] = ACTIONS(1331), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_DOLLARif] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1337), + [anon_sym_select] = ACTIONS(1339), + [anon_sym_lock] = ACTIONS(1341), + [anon_sym_rlock] = ACTIONS(1341), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_sql] = ACTIONS(1345), + [sym_int_literal] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1349), + [sym_rune_literal] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_c_SQUOTE] = ACTIONS(1355), + [anon_sym_c_DQUOTE] = ACTIONS(1357), + [anon_sym_r_SQUOTE] = ACTIONS(1359), + [anon_sym_r_DQUOTE] = ACTIONS(1361), + [sym_pseudo_compile_time_identifier] = ACTIONS(1363), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [821] = { [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym__expression] = STATE(2259), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(2537), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3302), - [anon_sym_DASH] = ACTIONS(3302), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_go] = ACTIONS(3310), - [anon_sym_spawn] = ACTIONS(3312), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_CARET] = ACTIONS(3302), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_LT_DASH] = ACTIONS(3320), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3330), - [anon_sym_lock] = ACTIONS(3332), - [anon_sym_rlock] = ACTIONS(3332), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [822] = { [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym__expression] = STATE(2818), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2592), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [823] = { [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym__expression] = STATE(1256), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(1618), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(698), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_go] = ACTIONS(1857), - [anon_sym_spawn] = ACTIONS(1859), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1863), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [824] = { [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2894), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2896), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2775), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [825] = { [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym__expression] = STATE(2417), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2273), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3304), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3316), + [anon_sym_rlock] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [826] = { [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym__expression] = STATE(2418), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2122), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3304), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3316), + [anon_sym_rlock] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [827] = { [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym__expression] = STATE(2419), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2457), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [828] = { [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym__expression] = STATE(2442), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2269), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3138), - [anon_sym_lock] = ACTIONS(3140), - [anon_sym_rlock] = ACTIONS(3140), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3304), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3316), + [anon_sym_rlock] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [829] = { [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [sym__expression] = STATE(2431), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2274), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3138), - [anon_sym_lock] = ACTIONS(3140), - [anon_sym_rlock] = ACTIONS(3140), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3304), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3316), + [anon_sym_rlock] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [830] = { [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [sym__expression] = STATE(2607), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2264), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3304), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3316), + [anon_sym_rlock] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [831] = { [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [sym__expression] = STATE(2441), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2714), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3561), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3138), - [anon_sym_lock] = ACTIONS(3140), - [anon_sym_rlock] = ACTIONS(3140), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [832] = { [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(3559), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2265), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3296), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3286), + [anon_sym_CARET] = ACTIONS(3286), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3304), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3316), + [anon_sym_rlock] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [833] = { [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [sym__expression] = STATE(2440), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1636), + [sym__expression_without_blocks] = STATE(1814), + [sym__expression_with_blocks] = STATE(1814), + [sym_inc_expression] = STATE(1819), + [sym_dec_expression] = STATE(1819), + [sym_or_block_expression] = STATE(1819), + [sym_option_propagation_expression] = STATE(1819), + [sym_result_propagation_expression] = STATE(1819), + [sym_anon_struct_value_expression] = STATE(1823), + [sym_go_expression] = STATE(1819), + [sym_spawn_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_type_initializer] = STATE(1823), + [sym_function_literal] = STATE(1819), + [sym_reference_expression] = STATE(1833), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1819), + [sym_receive_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_as_type_cast_expression] = STATE(1819), + [sym__max_group] = STATE(1819), + [sym_literal] = STATE(1812), + [sym_map_init_expression] = STATE(1823), + [sym_array_creation] = STATE(1819), + [sym_fixed_array_creation] = STATE(1819), + [sym_selector_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_slice_expression] = STATE(1819), + [sym_if_expression] = STATE(1823), + [sym_compile_time_if_expression] = STATE(1823), + [sym_is_expression] = STATE(1819), + [sym_in_expression] = STATE(1819), + [sym_enum_fetch] = STATE(1819), + [sym_match_expression] = STATE(1823), + [sym_select_expression] = STATE(1823), + [sym_lock_expression] = STATE(1823), + [sym_unsafe_expression] = STATE(1823), + [sym_sql_expression] = STATE(1823), + [sym_interpreted_string_literal] = STATE(1811), + [sym_c_string_literal] = STATE(1811), + [sym_raw_string_literal] = STATE(1811), + [sym_mutability_modifiers] = STATE(614), + [sym_plain_type] = STATE(4219), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3190), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3200), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3204), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3138), - [anon_sym_lock] = ACTIONS(3140), - [anon_sym_rlock] = ACTIONS(3140), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3208), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3212), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT_DASH] = ACTIONS(3218), + [sym_none] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_nil] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3228), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3232), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3220), + [sym_float_literal] = ACTIONS(3236), + [sym_rune_literal] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_c_SQUOTE] = ACTIONS(3242), + [anon_sym_c_DQUOTE] = ACTIONS(3244), + [anon_sym_r_SQUOTE] = ACTIONS(3246), + [anon_sym_r_DQUOTE] = ACTIONS(3248), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [834] = { [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [sym__expression] = STATE(2439), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2123), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4272), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3138), - [anon_sym_lock] = ACTIONS(3140), - [anon_sym_rlock] = ACTIONS(3140), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [835] = { [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [sym__expression] = STATE(2432), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2796), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3138), - [anon_sym_lock] = ACTIONS(3140), - [anon_sym_rlock] = ACTIONS(3140), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [836] = { [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2456), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2251), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [837] = { [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [sym__expression] = STATE(957), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2488), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2251), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [838] = { [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [sym__expression] = STATE(956), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2920), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2898), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2251), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [839] = { [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [sym__expression] = STATE(959), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2268), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2251), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [840] = { [sym_line_comment] = STATE(840), [sym_block_comment] = STATE(840), - [sym__expression] = STATE(958), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2460), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2251), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1831), + [anon_sym_lock] = ACTIONS(1833), + [anon_sym_rlock] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [841] = { [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [sym__expression] = STATE(960), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(1779), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2251), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [842] = { [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [sym__expression] = STATE(1258), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4142), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2450), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(3930), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_go] = ACTIONS(1857), - [anon_sym_spawn] = ACTIONS(1859), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1863), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [843] = { [sym_line_comment] = STATE(843), [sym_block_comment] = STATE(843), - [sym__expression] = STATE(1900), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), + [sym__expression] = STATE(1809), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [844] = { [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), - [sym__expression] = STATE(2800), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3564), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2807), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3428), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [845] = { [sym_line_comment] = STATE(845), [sym_block_comment] = STATE(845), - [sym__expression] = STATE(2828), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2124), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [846] = { [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), - [sym__expression] = STATE(2420), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(1751), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4257), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [847] = { [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), - [sym__expression] = STATE(2639), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3552), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [848] = { [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), - [sym__expression] = STATE(2265), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(978), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3406), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [849] = { [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [sym__expression] = STATE(1285), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2922), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2923), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_go] = ACTIONS(1857), - [anon_sym_spawn] = ACTIONS(1859), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1863), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [850] = { [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [sym__expression] = STATE(1254), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(1881), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_go] = ACTIONS(1857), - [anon_sym_spawn] = ACTIONS(1859), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1863), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [851] = { [sym_line_comment] = STATE(851), [sym_block_comment] = STATE(851), - [sym__expression] = STATE(1287), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3561), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_go] = ACTIONS(1857), - [anon_sym_spawn] = ACTIONS(1859), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1863), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [852] = { [sym_line_comment] = STATE(852), [sym_block_comment] = STATE(852), - [sym__expression] = STATE(1286), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2762), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_go] = ACTIONS(1857), - [anon_sym_spawn] = ACTIONS(1859), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1863), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [853] = { [sym_line_comment] = STATE(853), [sym_block_comment] = STATE(853), - [sym__expression] = STATE(2421), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(221), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_mutability_modifiers] = STATE(649), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3182), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [854] = { [sym_line_comment] = STATE(854), [sym_block_comment] = STATE(854), - [sym__expression] = STATE(1267), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2499), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_go] = ACTIONS(1857), - [anon_sym_spawn] = ACTIONS(1859), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1863), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_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(955), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2824), + [sym__expression_without_blocks] = STATE(2866), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_DASH] = ACTIONS(2251), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_go] = ACTIONS(1819), + [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_LT_DASH] = ACTIONS(1827), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [856] = { [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [sym__expression] = STATE(1289), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2268), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_go] = ACTIONS(1857), - [anon_sym_spawn] = ACTIONS(1859), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1863), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [857] = { [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [sym__expression] = STATE(1256), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2510), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [858] = { [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [sym__expression] = STATE(1258), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4142), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2532), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [859] = { [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2598), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [860] = { [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [sym__expression] = STATE(1282), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2426), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [861] = { [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), - [sym__expression] = STATE(1258), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4151), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2443), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [862] = { [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [sym__expression] = STATE(1616), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(600), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3422), + [sym__expression] = STATE(1124), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [863] = { [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2515), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [864] = { [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [sym__expression] = STATE(1616), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(600), - [sym_plain_type] = STATE(4112), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3422), + [sym__expression] = STATE(1108), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [865] = { [sym_line_comment] = STATE(865), [sym_block_comment] = STATE(865), - [sym__expression] = STATE(1258), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4155), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2577), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [866] = { [sym_line_comment] = STATE(866), [sym_block_comment] = STATE(866), - [sym__expression] = STATE(1258), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2427), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_go] = ACTIONS(1380), - [anon_sym_spawn] = ACTIONS(1382), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_LT_DASH] = ACTIONS(1390), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1400), - [anon_sym_lock] = ACTIONS(1402), - [anon_sym_rlock] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3364), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(3372), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [867] = { [sym_line_comment] = STATE(867), [sym_block_comment] = STATE(867), - [sym__expression] = STATE(1284), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(1115), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_go] = ACTIONS(1857), - [anon_sym_spawn] = ACTIONS(1859), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1863), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [868] = { [sym_line_comment] = STATE(868), [sym_block_comment] = STATE(868), - [sym__expression] = STATE(2819), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3553), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [869] = { [sym_line_comment] = STATE(869), [sym_block_comment] = STATE(869), - [sym__expression] = STATE(1616), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(600), - [sym_plain_type] = STATE(4259), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3422), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3555), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [870] = { [sym_line_comment] = STATE(870), [sym_block_comment] = STATE(870), - [sym__expression] = STATE(1613), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(600), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3422), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(764), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_go] = ACTIONS(2407), + [anon_sym_spawn] = ACTIONS(2409), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(2411), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_CARET] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_LT_DASH] = ACTIONS(2415), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(2417), + [anon_sym_lock] = ACTIONS(2419), + [anon_sym_rlock] = ACTIONS(2419), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [871] = { [sym_line_comment] = STATE(871), [sym_block_comment] = STATE(871), - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(600), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3422), + [sym__expression] = STATE(2613), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [872] = { [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [sym__expression] = STATE(1616), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(600), - [sym_plain_type] = STATE(4127), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3422), + [sym__expression] = STATE(221), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_mutability_modifiers] = STATE(649), + [sym_plain_type] = STATE(4168), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3182), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [873] = { [sym_line_comment] = STATE(873), [sym_block_comment] = STATE(873), - [sym__expression] = STATE(1620), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(600), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3422), + [sym__expression] = STATE(2752), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3561), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [874] = { [sym_line_comment] = STATE(874), [sym_block_comment] = STATE(874), - [sym__expression] = STATE(972), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2773), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_go] = ACTIONS(3372), - [anon_sym_spawn] = ACTIONS(3374), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_CARET] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_LT_DASH] = ACTIONS(3378), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3380), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_rlock] = ACTIONS(3382), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [875] = { [sym_line_comment] = STATE(875), [sym_block_comment] = STATE(875), - [sym__expression] = STATE(957), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(1114), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1071), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_go] = ACTIONS(3372), - [anon_sym_spawn] = ACTIONS(3374), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_CARET] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_LT_DASH] = ACTIONS(3378), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3380), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_rlock] = ACTIONS(3382), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [876] = { [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [sym__expression] = STATE(973), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2916), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2914), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_go] = ACTIONS(3372), - [anon_sym_spawn] = ACTIONS(3374), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_CARET] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_LT_DASH] = ACTIONS(3378), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3380), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_rlock] = ACTIONS(3382), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [877] = { [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [sym__expression] = STATE(975), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), + [sym__expression] = STATE(961), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_go] = ACTIONS(3372), - [anon_sym_spawn] = ACTIONS(3374), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_CARET] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_LT_DASH] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3406), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -123944,227 +123920,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(533), [anon_sym_DOLLARif] = ACTIONS(535), [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3380), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [878] = { [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [sym__expression] = STATE(968), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(493), + [sym__expression] = STATE(2430), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(513), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_go] = ACTIONS(3372), - [anon_sym_spawn] = ACTIONS(3374), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_CARET] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_LT_DASH] = ACTIONS(3378), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3380), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_rlock] = ACTIONS(3382), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [879] = { [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [sym__expression] = STATE(969), - [sym__expression_without_blocks] = STATE(1086), - [sym__expression_with_blocks] = STATE(1086), - [sym_inc_expression] = STATE(1088), - [sym_dec_expression] = STATE(1088), - [sym_or_block_expression] = STATE(1088), - [sym_option_propagation_expression] = STATE(1088), - [sym_result_propagation_expression] = STATE(1088), - [sym_anon_struct_value_expression] = STATE(1025), - [sym_go_expression] = STATE(1088), - [sym_spawn_expression] = STATE(1088), - [sym_parenthesized_expression] = STATE(1088), - [sym_call_expression] = STATE(1088), - [sym_type_initializer] = STATE(1025), - [sym_function_literal] = STATE(1088), - [sym_reference_expression] = STATE(1024), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1088), - [sym_receive_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_as_type_cast_expression] = STATE(1088), - [sym__max_group] = STATE(1088), - [sym_literal] = STATE(1078), - [sym_map_init_expression] = STATE(1025), - [sym_array_creation] = STATE(1088), - [sym_fixed_array_creation] = STATE(1088), - [sym_selector_expression] = STATE(1088), - [sym_index_expression] = STATE(1088), - [sym_slice_expression] = STATE(1088), - [sym_if_expression] = STATE(1025), - [sym_compile_time_if_expression] = STATE(1025), - [sym_is_expression] = STATE(1088), - [sym_in_expression] = STATE(1088), - [sym_enum_fetch] = STATE(1088), - [sym_match_expression] = STATE(1025), - [sym_select_expression] = STATE(1025), - [sym_lock_expression] = STATE(1025), - [sym_unsafe_expression] = STATE(1025), - [sym_sql_expression] = STATE(1025), - [sym_c_string_literal] = STATE(993), - [sym_raw_string_literal] = STATE(993), - [sym_interpreted_string_literal] = STATE(993), - [sym_mutability_modifiers] = STATE(618), - [sym_plain_type] = STATE(4090), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), + [sym__expression] = STATE(1906), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3148), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(785), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3164), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3168), + [anon_sym_rlock] = ACTIONS(3168), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [880] = { + [sym_line_comment] = STATE(880), + [sym_block_comment] = STATE(880), + [sym__expression] = STATE(961), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4039), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_go] = ACTIONS(3372), - [anon_sym_spawn] = ACTIONS(3374), - [anon_sym_json_DOTdecode] = ACTIONS(2245), - [anon_sym_LBRACK2] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_CARET] = ACTIONS(3366), - [anon_sym_AMP] = ACTIONS(3376), - [anon_sym_LT_DASH] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3406), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -124172,1920 +124262,2376 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(533), [anon_sym_DOLLARif] = ACTIONS(535), [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3380), - [anon_sym_lock] = ACTIONS(3382), - [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2253), - [sym_rune_literal] = ACTIONS(2253), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2255), - [sym___single_quote] = ACTIONS(2257), - [sym___c_double_quote] = ACTIONS(2259), - [sym___c_single_quote] = ACTIONS(2261), - [sym___r_double_quote] = ACTIONS(2263), - [sym___r_single_quote] = ACTIONS(2265), - }, - [880] = { - [sym_line_comment] = STATE(880), - [sym_block_comment] = STATE(880), - [sym__expression] = STATE(1618), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(600), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3422), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [881] = { [sym_line_comment] = STATE(881), [sym_block_comment] = STATE(881), - [sym__expression] = STATE(1617), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(600), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3422), + [sym__expression] = STATE(2829), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [882] = { [sym_line_comment] = STATE(882), [sym_block_comment] = STATE(882), - [sym__expression] = STATE(2712), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(961), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4052), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3406), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_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(1611), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(600), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3422), + [sym__expression] = STATE(2831), + [sym__expression_without_blocks] = STATE(2891), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [884] = { [sym_line_comment] = STATE(884), [sym_block_comment] = STATE(884), - [sym__expression] = STATE(2308), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(2432), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3394), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3398), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_rlock] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [885] = { [sym_line_comment] = STATE(885), [sym_block_comment] = STATE(885), - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(600), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3422), + [sym__expression] = STATE(2418), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [886] = { [sym_line_comment] = STATE(886), [sym_block_comment] = STATE(886), - [sym__expression] = STATE(2311), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(975), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3394), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3398), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_rlock] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3406), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [887] = { [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [sym__expression] = STATE(2829), - [sym__expression_without_blocks] = STATE(2902), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2435), + [sym__expression_without_blocks] = STATE(2640), + [sym__expression_with_blocks] = STATE(2640), + [sym_inc_expression] = STATE(2767), + [sym_dec_expression] = STATE(2767), + [sym_or_block_expression] = STATE(2767), + [sym_option_propagation_expression] = STATE(2767), + [sym_result_propagation_expression] = STATE(2767), + [sym_anon_struct_value_expression] = STATE(2642), + [sym_go_expression] = STATE(2767), + [sym_spawn_expression] = STATE(2767), + [sym_parenthesized_expression] = STATE(2767), + [sym_call_expression] = STATE(2767), + [sym_type_initializer] = STATE(2642), + [sym_function_literal] = STATE(2767), + [sym_reference_expression] = STATE(2764), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2767), + [sym_receive_expression] = STATE(2767), + [sym_binary_expression] = STATE(2767), + [sym_as_type_cast_expression] = STATE(2767), + [sym__max_group] = STATE(2767), + [sym_literal] = STATE(2771), + [sym_map_init_expression] = STATE(2642), + [sym_array_creation] = STATE(2767), + [sym_fixed_array_creation] = STATE(2767), + [sym_selector_expression] = STATE(2767), + [sym_index_expression] = STATE(2767), + [sym_slice_expression] = STATE(2767), + [sym_if_expression] = STATE(2642), + [sym_compile_time_if_expression] = STATE(2642), + [sym_is_expression] = STATE(2767), + [sym_in_expression] = STATE(2767), + [sym_enum_fetch] = STATE(2767), + [sym_match_expression] = STATE(2642), + [sym_select_expression] = STATE(2642), + [sym_lock_expression] = STATE(2642), + [sym_unsafe_expression] = STATE(2642), + [sym_sql_expression] = STATE(2642), + [sym_interpreted_string_literal] = STATE(2650), + [sym_c_string_literal] = STATE(2650), + [sym_raw_string_literal] = STATE(2650), + [sym_mutability_modifiers] = STATE(620), + [sym_plain_type] = STATE(4005), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_fn] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_struct] = ACTIONS(1099), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_go] = ACTIONS(1103), + [anon_sym_spawn] = ACTIONS(1105), + [anon_sym_json_DOTdecode] = ACTIONS(1107), + [anon_sym_LBRACK2] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(1113), + [sym_none] = ACTIONS(1115), + [sym_true] = ACTIONS(1115), + [sym_false] = ACTIONS(1115), + [sym_nil] = ACTIONS(1115), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_DOLLARif] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(1129), + [anon_sym_sql] = ACTIONS(1131), + [sym_int_literal] = ACTIONS(1115), + [sym_float_literal] = ACTIONS(1133), + [sym_rune_literal] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [anon_sym_c_SQUOTE] = ACTIONS(1139), + [anon_sym_c_DQUOTE] = ACTIONS(1141), + [anon_sym_r_SQUOTE] = ACTIONS(1143), + [anon_sym_r_DQUOTE] = ACTIONS(1145), + [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [888] = { [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [sym__expression] = STATE(2281), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(979), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3394), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3398), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_rlock] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3406), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [889] = { [sym_line_comment] = STATE(889), [sym_block_comment] = STATE(889), - [sym__expression] = STATE(2334), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(2816), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_go] = ACTIONS(1709), - [anon_sym_spawn] = ACTIONS(1711), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_LT_DASH] = ACTIONS(2167), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(1729), - [anon_sym_lock] = ACTIONS(1731), - [anon_sym_rlock] = ACTIONS(1731), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [890] = { [sym_line_comment] = STATE(890), [sym_block_comment] = STATE(890), - [sym__expression] = STATE(2310), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3290), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3394), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3398), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_rlock] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [891] = { [sym_line_comment] = STATE(891), [sym_block_comment] = STATE(891), - [sym__expression] = STATE(1258), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4151), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2820), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_go] = ACTIONS(1857), - [anon_sym_spawn] = ACTIONS(1859), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1863), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [892] = { [sym_line_comment] = STATE(892), [sym_block_comment] = STATE(892), - [sym__expression] = STATE(2309), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(964), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3394), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3398), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_rlock] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_LT_DASH] = ACTIONS(2567), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [893] = { [sym_line_comment] = STATE(893), [sym_block_comment] = STATE(893), - [sym__expression] = STATE(2592), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2808), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(2485), - [anon_sym_spawn] = ACTIONS(2487), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_LT_DASH] = ACTIONS(2493), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(2495), - [anon_sym_lock] = ACTIONS(2497), - [anon_sym_rlock] = ACTIONS(2497), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [894] = { [sym_line_comment] = STATE(894), [sym_block_comment] = STATE(894), - [sym__expression] = STATE(1258), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4155), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [sym__expression] = STATE(2448), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_go] = ACTIONS(1857), - [anon_sym_spawn] = ACTIONS(1859), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1863), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [895] = { [sym_line_comment] = STATE(895), [sym_block_comment] = STATE(895), - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(600), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3422), + [sym__expression] = STATE(226), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_mutability_modifiers] = STATE(649), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3182), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [896] = { [sym_line_comment] = STATE(896), [sym_block_comment] = STATE(896), - [sym__expression] = STATE(1615), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(600), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3422), + [sym__expression] = STATE(219), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_mutability_modifiers] = STATE(649), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3182), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [897] = { + [sym_line_comment] = STATE(897), + [sym_block_comment] = STATE(897), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3553), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [898] = { + [sym_line_comment] = STATE(898), + [sym_block_comment] = STATE(898), + [sym__expression] = STATE(1122), + [sym__expression_without_blocks] = STATE(1185), + [sym__expression_with_blocks] = STATE(1185), + [sym_inc_expression] = STATE(1184), + [sym_dec_expression] = STATE(1184), + [sym_or_block_expression] = STATE(1184), + [sym_option_propagation_expression] = STATE(1184), + [sym_result_propagation_expression] = STATE(1184), + [sym_anon_struct_value_expression] = STATE(1179), + [sym_go_expression] = STATE(1184), + [sym_spawn_expression] = STATE(1184), + [sym_parenthesized_expression] = STATE(1184), + [sym_call_expression] = STATE(1184), + [sym_type_initializer] = STATE(1179), + [sym_function_literal] = STATE(1184), + [sym_reference_expression] = STATE(1228), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1184), + [sym_receive_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_as_type_cast_expression] = STATE(1184), + [sym__max_group] = STATE(1184), + [sym_literal] = STATE(1187), + [sym_map_init_expression] = STATE(1179), + [sym_array_creation] = STATE(1184), + [sym_fixed_array_creation] = STATE(1184), + [sym_selector_expression] = STATE(1184), + [sym_index_expression] = STATE(1184), + [sym_slice_expression] = STATE(1184), + [sym_if_expression] = STATE(1179), + [sym_compile_time_if_expression] = STATE(1179), + [sym_is_expression] = STATE(1184), + [sym_in_expression] = STATE(1184), + [sym_enum_fetch] = STATE(1184), + [sym_match_expression] = STATE(1179), + [sym_select_expression] = STATE(1179), + [sym_lock_expression] = STATE(1179), + [sym_unsafe_expression] = STATE(1179), + [sym_sql_expression] = STATE(1179), + [sym_interpreted_string_literal] = STATE(1193), + [sym_c_string_literal] = STATE(1193), + [sym_raw_string_literal] = STATE(1193), + [sym_mutability_modifiers] = STATE(906), + [sym_plain_type] = STATE(4007), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_c_SQUOTE] = ACTIONS(691), + [anon_sym_c_DQUOTE] = ACTIONS(693), + [anon_sym_r_SQUOTE] = ACTIONS(695), + [anon_sym_r_DQUOTE] = ACTIONS(697), + [sym_pseudo_compile_time_identifier] = ACTIONS(699), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [899] = { + [sym_line_comment] = STATE(899), + [sym_block_comment] = STATE(899), + [sym__expression] = STATE(2206), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3290), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [900] = { + [sym_line_comment] = STATE(900), + [sym_block_comment] = STATE(900), + [sym__expression] = STATE(2123), + [sym__expression_without_blocks] = STATE(2184), + [sym__expression_with_blocks] = STATE(2184), + [sym_inc_expression] = STATE(2182), + [sym_dec_expression] = STATE(2182), + [sym_or_block_expression] = STATE(2182), + [sym_option_propagation_expression] = STATE(2182), + [sym_result_propagation_expression] = STATE(2182), + [sym_anon_struct_value_expression] = STATE(2180), + [sym_go_expression] = STATE(2182), + [sym_spawn_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_type_initializer] = STATE(2180), + [sym_function_literal] = STATE(2182), + [sym_reference_expression] = STATE(2218), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2182), + [sym_receive_expression] = STATE(2182), + [sym_binary_expression] = STATE(2182), + [sym_as_type_cast_expression] = STATE(2182), + [sym__max_group] = STATE(2182), + [sym_literal] = STATE(2237), + [sym_map_init_expression] = STATE(2180), + [sym_array_creation] = STATE(2182), + [sym_fixed_array_creation] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym_index_expression] = STATE(2182), + [sym_slice_expression] = STATE(2182), + [sym_if_expression] = STATE(2180), + [sym_compile_time_if_expression] = STATE(2180), + [sym_is_expression] = STATE(2182), + [sym_in_expression] = STATE(2182), + [sym_enum_fetch] = STATE(2182), + [sym_match_expression] = STATE(2180), + [sym_select_expression] = STATE(2180), + [sym_lock_expression] = STATE(2180), + [sym_unsafe_expression] = STATE(2180), + [sym_sql_expression] = STATE(2180), + [sym_interpreted_string_literal] = STATE(2241), + [sym_c_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(3997), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3276), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3282), + [anon_sym_fn] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3290), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3384), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3388), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3312), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3320), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_c_SQUOTE] = ACTIONS(3328), + [anon_sym_c_DQUOTE] = ACTIONS(3330), + [anon_sym_r_SQUOTE] = ACTIONS(3332), + [anon_sym_r_DQUOTE] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [901] = { + [sym_line_comment] = STATE(901), + [sym_block_comment] = STATE(901), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(698), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3426), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -126118,202 +126664,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [897] = { - [sym_line_comment] = STATE(897), - [sym_block_comment] = STATE(897), - [sym__expression] = STATE(1290), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), + [902] = { + [sym_line_comment] = STATE(902), + [sym_block_comment] = STATE(902), + [sym__expression] = STATE(2599), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_go] = ACTIONS(1857), - [anon_sym_spawn] = ACTIONS(1859), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1863), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, - [898] = { - [sym_line_comment] = STATE(898), - [sym_block_comment] = STATE(898), - [sym__expression] = STATE(1614), - [sym__expression_without_blocks] = STATE(1747), - [sym__expression_with_blocks] = STATE(1747), - [sym_inc_expression] = STATE(1749), - [sym_dec_expression] = STATE(1749), - [sym_or_block_expression] = STATE(1749), - [sym_option_propagation_expression] = STATE(1749), - [sym_result_propagation_expression] = STATE(1749), - [sym_anon_struct_value_expression] = STATE(1746), - [sym_go_expression] = STATE(1749), - [sym_spawn_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_type_initializer] = STATE(1746), - [sym_function_literal] = STATE(1749), - [sym_reference_expression] = STATE(1745), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1749), - [sym_receive_expression] = STATE(1749), - [sym_binary_expression] = STATE(1749), - [sym_as_type_cast_expression] = STATE(1749), - [sym__max_group] = STATE(1749), - [sym_literal] = STATE(1738), - [sym_map_init_expression] = STATE(1746), - [sym_array_creation] = STATE(1749), - [sym_fixed_array_creation] = STATE(1749), - [sym_selector_expression] = STATE(1749), - [sym_index_expression] = STATE(1749), - [sym_slice_expression] = STATE(1749), - [sym_if_expression] = STATE(1746), - [sym_compile_time_if_expression] = STATE(1746), - [sym_is_expression] = STATE(1749), - [sym_in_expression] = STATE(1749), - [sym_enum_fetch] = STATE(1749), - [sym_match_expression] = STATE(1746), - [sym_select_expression] = STATE(1746), - [sym_lock_expression] = STATE(1746), - [sym_unsafe_expression] = STATE(1746), - [sym_sql_expression] = STATE(1746), - [sym_c_string_literal] = STATE(1733), - [sym_raw_string_literal] = STATE(1733), - [sym_interpreted_string_literal] = STATE(1733), - [sym_mutability_modifiers] = STATE(600), - [sym_plain_type] = STATE(4121), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3422), + [903] = { + [sym_line_comment] = STATE(903), + [sym_block_comment] = STATE(903), + [sym__expression] = STATE(2615), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_mut] = ACTIONS(41), + [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3094), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [904] = { + [sym_line_comment] = STATE(904), + [sym_block_comment] = STATE(904), + [sym__expression] = STATE(1611), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(698), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3426), [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_fn] = ACTIONS(317), [anon_sym_PLUS] = ACTIONS(319), @@ -126346,5730 +127006,5046 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(339), [sym_float_literal] = ACTIONS(355), [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), - }, - [899] = { - [sym_line_comment] = STATE(899), - [sym_block_comment] = STATE(899), - [sym__expression] = STATE(1258), - [sym__expression_without_blocks] = STATE(1318), - [sym__expression_with_blocks] = STATE(1318), - [sym_inc_expression] = STATE(1319), - [sym_dec_expression] = STATE(1319), - [sym_or_block_expression] = STATE(1319), - [sym_option_propagation_expression] = STATE(1319), - [sym_result_propagation_expression] = STATE(1319), - [sym_anon_struct_value_expression] = STATE(1320), - [sym_go_expression] = STATE(1319), - [sym_spawn_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_type_initializer] = STATE(1320), - [sym_function_literal] = STATE(1319), - [sym_reference_expression] = STATE(1298), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1319), - [sym_receive_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_as_type_cast_expression] = STATE(1319), - [sym__max_group] = STATE(1319), - [sym_literal] = STATE(1314), - [sym_map_init_expression] = STATE(1320), - [sym_array_creation] = STATE(1319), - [sym_fixed_array_creation] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym_index_expression] = STATE(1319), - [sym_slice_expression] = STATE(1319), - [sym_if_expression] = STATE(1320), - [sym_compile_time_if_expression] = STATE(1320), - [sym_is_expression] = STATE(1319), - [sym_in_expression] = STATE(1319), - [sym_enum_fetch] = STATE(1319), - [sym_match_expression] = STATE(1320), - [sym_select_expression] = STATE(1320), - [sym_lock_expression] = STATE(1320), - [sym_unsafe_expression] = STATE(1320), - [sym_sql_expression] = STATE(1320), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_mutability_modifiers] = STATE(639), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_go] = ACTIONS(1857), - [anon_sym_spawn] = ACTIONS(1859), - [anon_sym_json_DOTdecode] = ACTIONS(1384), - [anon_sym_LBRACK2] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1863), - [sym_none] = ACTIONS(1392), - [sym_true] = ACTIONS(1392), - [sym_false] = ACTIONS(1392), - [sym_nil] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_DOLLARif] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_select] = ACTIONS(1867), - [anon_sym_lock] = ACTIONS(1869), - [anon_sym_rlock] = ACTIONS(1869), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1406), - [sym_int_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1410), - [sym_rune_literal] = ACTIONS(1410), - [sym_pseudo_compile_time_identifier] = ACTIONS(1412), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1414), - [sym___single_quote] = ACTIONS(1416), - [sym___c_double_quote] = ACTIONS(1418), - [sym___c_single_quote] = ACTIONS(1420), - [sym___r_double_quote] = ACTIONS(1422), - [sym___r_single_quote] = ACTIONS(1424), - }, - [900] = { - [sym_line_comment] = STATE(900), - [sym_block_comment] = STATE(900), - [sym__expression] = STATE(2589), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [901] = { - [sym_line_comment] = STATE(901), - [sym_block_comment] = STATE(901), - [sym__expression] = STATE(2630), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [902] = { - [sym_line_comment] = STATE(902), - [sym_block_comment] = STATE(902), - [sym__expression] = STATE(2304), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(1705), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3394), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3398), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_rlock] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), - }, - [903] = { - [sym_line_comment] = STATE(903), - [sym_block_comment] = STATE(903), - [sym__expression] = STATE(2703), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [904] = { - [sym_line_comment] = STATE(904), - [sym_block_comment] = STATE(904), - [sym__expression] = STATE(2704), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [905] = { [sym_line_comment] = STATE(905), [sym_block_comment] = STATE(905), - [sym__expression] = STATE(2707), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [906] = { [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), - [sym__expression] = STATE(2695), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2822), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [907] = { [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [sym__expression] = STATE(2265), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(963), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_LT_DASH] = ACTIONS(2567), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [908] = { [sym_line_comment] = STATE(908), [sym_block_comment] = STATE(908), - [sym__expression] = STATE(2443), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(2270), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3555), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3394), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3398), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_rlock] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [909] = { [sym_line_comment] = STATE(909), [sym_block_comment] = STATE(909), - [sym__expression] = STATE(2732), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(961), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4059), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3096), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3100), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(3104), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3406), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [910] = { [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [sym__expression] = STATE(2571), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2757), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(3561), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3076), - [anon_sym_spawn] = ACTIONS(3078), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3082), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [911] = { [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [sym__expression] = STATE(2450), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(957), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3394), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3398), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_rlock] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3406), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [912] = { [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [sym__expression] = STATE(2449), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(2722), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3394), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3398), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_rlock] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(2789), + [anon_sym_spawn] = ACTIONS(2791), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(2795), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [913] = { [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [sym__expression] = STATE(2192), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2931), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2930), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3410), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_LT_DASH] = ACTIONS(3416), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3418), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [914] = { [sym_line_comment] = STATE(914), [sym_block_comment] = STATE(914), - [sym__expression] = STATE(2261), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(1751), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [915] = { [sym_line_comment] = STATE(915), [sym_block_comment] = STATE(915), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3559), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(1751), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4235), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [916] = { [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), - [sym__expression] = STATE(2797), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(965), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_LT_DASH] = ACTIONS(2567), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [917] = { [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [sym__expression] = STATE(2796), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(966), + [sym__expression_without_blocks] = STATE(1081), + [sym__expression_with_blocks] = STATE(1081), + [sym_inc_expression] = STATE(1079), + [sym_dec_expression] = STATE(1079), + [sym_or_block_expression] = STATE(1079), + [sym_option_propagation_expression] = STATE(1079), + [sym_result_propagation_expression] = STATE(1079), + [sym_anon_struct_value_expression] = STATE(1076), + [sym_go_expression] = STATE(1079), + [sym_spawn_expression] = STATE(1079), + [sym_parenthesized_expression] = STATE(1079), + [sym_call_expression] = STATE(1079), + [sym_type_initializer] = STATE(1076), + [sym_function_literal] = STATE(1079), + [sym_reference_expression] = STATE(1063), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1079), + [sym_receive_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_as_type_cast_expression] = STATE(1079), + [sym__max_group] = STATE(1079), + [sym_literal] = STATE(1084), + [sym_map_init_expression] = STATE(1076), + [sym_array_creation] = STATE(1079), + [sym_fixed_array_creation] = STATE(1079), + [sym_selector_expression] = STATE(1079), + [sym_index_expression] = STATE(1079), + [sym_slice_expression] = STATE(1079), + [sym_if_expression] = STATE(1076), + [sym_compile_time_if_expression] = STATE(1076), + [sym_is_expression] = STATE(1079), + [sym_in_expression] = STATE(1079), + [sym_enum_fetch] = STATE(1079), + [sym_match_expression] = STATE(1076), + [sym_select_expression] = STATE(1076), + [sym_lock_expression] = STATE(1076), + [sym_unsafe_expression] = STATE(1076), + [sym_sql_expression] = STATE(1076), + [sym_interpreted_string_literal] = STATE(1085), + [sym_c_string_literal] = STATE(1085), + [sym_raw_string_literal] = STATE(1085), + [sym_mutability_modifiers] = STATE(891), + [sym_plain_type] = STATE(4008), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(493), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(513), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_LT_DASH] = ACTIONS(2567), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2569), + [sym_rune_literal] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_c_SQUOTE] = ACTIONS(2575), + [anon_sym_c_DQUOTE] = ACTIONS(2577), + [anon_sym_r_SQUOTE] = ACTIONS(2579), + [anon_sym_r_DQUOTE] = ACTIONS(2581), + [sym_pseudo_compile_time_identifier] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [918] = { [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [sym__expression] = STATE(2124), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(2813), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2884), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2912), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(2399), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3410), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_LT_DASH] = ACTIONS(3416), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3418), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [919] = { [sym_line_comment] = STATE(919), [sym_block_comment] = STATE(919), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(3557), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(1616), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(698), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [920] = { [sym_line_comment] = STATE(920), [sym_block_comment] = STATE(920), - [sym__expression] = STATE(1118), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1620), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(698), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [921] = { [sym_line_comment] = STATE(921), [sym_block_comment] = STATE(921), - [sym__expression] = STATE(2460), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1615), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(698), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3076), - [anon_sym_spawn] = ACTIONS(3078), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3082), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [922] = { [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [sym__expression] = STATE(2462), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1612), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(698), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3076), - [anon_sym_spawn] = ACTIONS(3078), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3082), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [923] = { [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [sym__expression] = STATE(2431), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1751), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4247), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3076), - [anon_sym_spawn] = ACTIONS(3078), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3082), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [924] = { [sym_line_comment] = STATE(924), [sym_block_comment] = STATE(924), - [sym__expression] = STATE(2424), - [sym__expression_without_blocks] = STATE(2468), - [sym__expression_with_blocks] = STATE(2468), - [sym_inc_expression] = STATE(2469), - [sym_dec_expression] = STATE(2469), - [sym_or_block_expression] = STATE(2469), - [sym_option_propagation_expression] = STATE(2469), - [sym_result_propagation_expression] = STATE(2469), - [sym_anon_struct_value_expression] = STATE(2470), - [sym_go_expression] = STATE(2469), - [sym_spawn_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_type_initializer] = STATE(2470), - [sym_function_literal] = STATE(2469), - [sym_reference_expression] = STATE(2487), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2469), - [sym_receive_expression] = STATE(2469), - [sym_binary_expression] = STATE(2469), - [sym_as_type_cast_expression] = STATE(2469), - [sym__max_group] = STATE(2469), - [sym_literal] = STATE(2465), - [sym_map_init_expression] = STATE(2470), - [sym_array_creation] = STATE(2469), - [sym_fixed_array_creation] = STATE(2469), - [sym_selector_expression] = STATE(2469), - [sym_index_expression] = STATE(2469), - [sym_slice_expression] = STATE(2469), - [sym_if_expression] = STATE(2470), - [sym_compile_time_if_expression] = STATE(2470), - [sym_is_expression] = STATE(2469), - [sym_in_expression] = STATE(2469), - [sym_enum_fetch] = STATE(2469), - [sym_match_expression] = STATE(2470), - [sym_select_expression] = STATE(2470), - [sym_lock_expression] = STATE(2470), - [sym_unsafe_expression] = STATE(2470), - [sym_sql_expression] = STATE(2470), - [sym_c_string_literal] = STATE(2464), - [sym_raw_string_literal] = STATE(2464), - [sym_interpreted_string_literal] = STATE(2464), - [sym_mutability_modifiers] = STATE(561), - [sym_plain_type] = STATE(4038), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1691), + [sym__expression] = STATE(2280), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(3386), - [anon_sym_DASH] = ACTIONS(3386), - [anon_sym_STAR] = ACTIONS(3388), - [anon_sym_struct] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_go] = ACTIONS(3392), - [anon_sym_spawn] = ACTIONS(3394), - [anon_sym_json_DOTdecode] = ACTIONS(2161), - [anon_sym_LBRACK2] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_CARET] = ACTIONS(3386), - [anon_sym_AMP] = ACTIONS(3396), - [anon_sym_LT_DASH] = ACTIONS(3398), - [sym_none] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_nil] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_DOLLARif] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_select] = ACTIONS(3400), - [anon_sym_lock] = ACTIONS(3402), - [anon_sym_rlock] = ACTIONS(3402), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_sql] = ACTIONS(1735), - [sym_int_literal] = ACTIONS(1721), - [sym_float_literal] = ACTIONS(2169), - [sym_rune_literal] = ACTIONS(2169), - [sym_pseudo_compile_time_identifier] = ACTIONS(1737), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2171), - [sym___single_quote] = ACTIONS(2173), - [sym___c_double_quote] = ACTIONS(2175), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3364), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(3372), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [925] = { [sym_line_comment] = STATE(925), [sym_block_comment] = STATE(925), - [sym__expression] = STATE(2463), - [sym__expression_without_blocks] = STATE(2638), - [sym__expression_with_blocks] = STATE(2638), - [sym_inc_expression] = STATE(2765), - [sym_dec_expression] = STATE(2765), - [sym_or_block_expression] = STATE(2765), - [sym_option_propagation_expression] = STATE(2765), - [sym_result_propagation_expression] = STATE(2765), - [sym_anon_struct_value_expression] = STATE(2637), - [sym_go_expression] = STATE(2765), - [sym_spawn_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2765), - [sym_call_expression] = STATE(2765), - [sym_type_initializer] = STATE(2637), - [sym_function_literal] = STATE(2765), - [sym_reference_expression] = STATE(2764), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2765), - [sym_receive_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_as_type_cast_expression] = STATE(2765), - [sym__max_group] = STATE(2765), - [sym_literal] = STATE(2771), - [sym_map_init_expression] = STATE(2637), - [sym_array_creation] = STATE(2765), - [sym_fixed_array_creation] = STATE(2765), - [sym_selector_expression] = STATE(2765), - [sym_index_expression] = STATE(2765), - [sym_slice_expression] = STATE(2765), - [sym_if_expression] = STATE(2637), - [sym_compile_time_if_expression] = STATE(2637), - [sym_is_expression] = STATE(2765), - [sym_in_expression] = STATE(2765), - [sym_enum_fetch] = STATE(2765), - [sym_match_expression] = STATE(2637), - [sym_select_expression] = STATE(2637), - [sym_lock_expression] = STATE(2637), - [sym_unsafe_expression] = STATE(2637), - [sym_sql_expression] = STATE(2637), - [sym_c_string_literal] = STATE(2762), - [sym_raw_string_literal] = STATE(2762), - [sym_interpreted_string_literal] = STATE(2762), - [sym_mutability_modifiers] = STATE(822), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2285), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4196), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3076), - [anon_sym_spawn] = ACTIONS(3078), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3080), - [anon_sym_LT_DASH] = ACTIONS(3082), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(3084), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3364), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(3372), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [926] = { [sym_line_comment] = STATE(926), [sym_block_comment] = STATE(926), - [sym__expression] = STATE(1125), - [sym__expression_without_blocks] = STATE(1210), - [sym__expression_with_blocks] = STATE(1210), - [sym_inc_expression] = STATE(1211), - [sym_dec_expression] = STATE(1211), - [sym_or_block_expression] = STATE(1211), - [sym_option_propagation_expression] = STATE(1211), - [sym_result_propagation_expression] = STATE(1211), - [sym_anon_struct_value_expression] = STATE(1212), - [sym_go_expression] = STATE(1211), - [sym_spawn_expression] = STATE(1211), - [sym_parenthesized_expression] = STATE(1211), - [sym_call_expression] = STATE(1211), - [sym_type_initializer] = STATE(1212), - [sym_function_literal] = STATE(1211), - [sym_reference_expression] = STATE(1233), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1211), - [sym_receive_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_as_type_cast_expression] = STATE(1211), - [sym__max_group] = STATE(1211), - [sym_literal] = STATE(1209), - [sym_map_init_expression] = STATE(1212), - [sym_array_creation] = STATE(1211), - [sym_fixed_array_creation] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym_index_expression] = STATE(1211), - [sym_slice_expression] = STATE(1211), - [sym_if_expression] = STATE(1212), - [sym_compile_time_if_expression] = STATE(1212), - [sym_is_expression] = STATE(1211), - [sym_in_expression] = STATE(1211), - [sym_enum_fetch] = STATE(1211), - [sym_match_expression] = STATE(1212), - [sym_select_expression] = STATE(1212), - [sym_lock_expression] = STATE(1212), - [sym_unsafe_expression] = STATE(1212), - [sym_sql_expression] = STATE(1212), - [sym_c_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_interpreted_string_literal] = STATE(1201), - [sym_mutability_modifiers] = STATE(589), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1139), + [sym__expression] = STATE(1614), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(698), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [927] = { [sym_line_comment] = STATE(927), [sym_block_comment] = STATE(927), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(2477), + [sym__expression] = STATE(2424), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_go] = ACTIONS(2277), - [anon_sym_spawn] = ACTIONS(2279), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(3358), - [anon_sym_LT_DASH] = ACTIONS(2283), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3364), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(3372), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [928] = { [sym_line_comment] = STATE(928), [sym_block_comment] = STATE(928), - [sym__expression] = STATE(2211), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(1766), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3410), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_LT_DASH] = ACTIONS(3416), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3418), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [929] = { [sym_line_comment] = STATE(929), [sym_block_comment] = STATE(929), - [sym__expression] = STATE(2826), - [sym__expression_without_blocks] = STATE(2879), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2285), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3364), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(3372), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [930] = { [sym_line_comment] = STATE(930), [sym_block_comment] = STATE(930), - [sym__expression] = STATE(2199), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(1613), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(698), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3410), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_LT_DASH] = ACTIONS(3416), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3418), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [931] = { [sym_line_comment] = STATE(931), [sym_block_comment] = STATE(931), - [sym__expression] = STATE(2146), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(1616), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(698), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3410), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_LT_DASH] = ACTIONS(3416), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3418), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [932] = { [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), - [sym__expression] = STATE(2195), - [sym__expression_without_blocks] = STATE(2162), - [sym__expression_with_blocks] = STATE(2162), - [sym_inc_expression] = STATE(2161), - [sym_dec_expression] = STATE(2161), - [sym_or_block_expression] = STATE(2161), - [sym_option_propagation_expression] = STATE(2161), - [sym_result_propagation_expression] = STATE(2161), - [sym_anon_struct_value_expression] = STATE(2160), - [sym_go_expression] = STATE(2161), - [sym_spawn_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_type_initializer] = STATE(2160), - [sym_function_literal] = STATE(2161), - [sym_reference_expression] = STATE(2159), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2161), - [sym_receive_expression] = STATE(2161), - [sym_binary_expression] = STATE(2161), - [sym_as_type_cast_expression] = STATE(2161), - [sym__max_group] = STATE(2161), - [sym_literal] = STATE(2164), - [sym_map_init_expression] = STATE(2160), - [sym_array_creation] = STATE(2161), - [sym_fixed_array_creation] = STATE(2161), - [sym_selector_expression] = STATE(2161), - [sym_index_expression] = STATE(2161), - [sym_slice_expression] = STATE(2161), - [sym_if_expression] = STATE(2160), - [sym_compile_time_if_expression] = STATE(2160), - [sym_is_expression] = STATE(2161), - [sym_in_expression] = STATE(2161), - [sym_enum_fetch] = STATE(2161), - [sym_match_expression] = STATE(2160), - [sym_select_expression] = STATE(2160), - [sym_lock_expression] = STATE(2160), - [sym_unsafe_expression] = STATE(2160), - [sym_sql_expression] = STATE(2160), - [sym_c_string_literal] = STATE(2166), - [sym_raw_string_literal] = STATE(2166), - [sym_interpreted_string_literal] = STATE(2166), - [sym_mutability_modifiers] = STATE(575), - [sym_plain_type] = STATE(4173), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3292), + [sym__expression] = STATE(1616), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(698), + [sym_plain_type] = STATE(4241), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_fn] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_STAR] = ACTIONS(3406), - [anon_sym_struct] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3408), - [anon_sym_go] = ACTIONS(3410), - [anon_sym_spawn] = ACTIONS(3412), - [anon_sym_json_DOTdecode] = ACTIONS(3314), - [anon_sym_LBRACK2] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3404), - [anon_sym_CARET] = ACTIONS(3404), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_LT_DASH] = ACTIONS(3416), - [sym_none] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_nil] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_DOLLARif] = ACTIONS(3326), - [anon_sym_match] = ACTIONS(3328), - [anon_sym_select] = ACTIONS(3418), - [anon_sym_lock] = ACTIONS(3420), - [anon_sym_rlock] = ACTIONS(3420), - [anon_sym_unsafe] = ACTIONS(3334), - [anon_sym_sql] = ACTIONS(3336), - [sym_int_literal] = ACTIONS(3322), - [sym_float_literal] = ACTIONS(3338), - [sym_rune_literal] = ACTIONS(3338), - [sym_pseudo_compile_time_identifier] = ACTIONS(3340), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(3342), - [sym___single_quote] = ACTIONS(3344), - [sym___c_double_quote] = ACTIONS(3346), - [sym___c_single_quote] = ACTIONS(3348), - [sym___r_double_quote] = ACTIONS(3350), - [sym___r_single_quote] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [933] = { [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [sym__expression] = STATE(227), - [sym__expression_without_blocks] = STATE(401), - [sym__expression_with_blocks] = STATE(401), - [sym_inc_expression] = STATE(399), - [sym_dec_expression] = STATE(399), - [sym_or_block_expression] = STATE(399), - [sym_option_propagation_expression] = STATE(399), - [sym_result_propagation_expression] = STATE(399), - [sym_anon_struct_value_expression] = STATE(395), - [sym_go_expression] = STATE(399), - [sym_spawn_expression] = STATE(399), - [sym_parenthesized_expression] = STATE(399), - [sym_call_expression] = STATE(399), - [sym_type_initializer] = STATE(395), - [sym_function_literal] = STATE(399), - [sym_reference_expression] = STATE(393), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(399), - [sym_receive_expression] = STATE(399), - [sym_binary_expression] = STATE(399), - [sym_as_type_cast_expression] = STATE(399), - [sym__max_group] = STATE(399), - [sym_literal] = STATE(455), - [sym_map_init_expression] = STATE(395), - [sym_array_creation] = STATE(399), - [sym_fixed_array_creation] = STATE(399), - [sym_selector_expression] = STATE(399), - [sym_index_expression] = STATE(399), - [sym_slice_expression] = STATE(399), - [sym_if_expression] = STATE(395), - [sym_compile_time_if_expression] = STATE(395), - [sym_is_expression] = STATE(399), - [sym_in_expression] = STATE(399), - [sym_enum_fetch] = STATE(399), - [sym_match_expression] = STATE(395), - [sym_select_expression] = STATE(395), - [sym_lock_expression] = STATE(395), - [sym_unsafe_expression] = STATE(395), - [sym_sql_expression] = STATE(395), - [sym_c_string_literal] = STATE(479), - [sym_raw_string_literal] = STATE(479), - [sym_interpreted_string_literal] = STATE(479), - [sym_mutability_modifiers] = STATE(845), - [sym_plain_type] = STATE(4069), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3184), + [sym__expression] = STATE(2445), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [934] = { [sym_line_comment] = STATE(934), [sym_block_comment] = STATE(934), - [sym__expression] = STATE(2547), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2268), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [935] = { [sym_line_comment] = STATE(935), [sym_block_comment] = STATE(935), - [sym__expression] = STATE(2265), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2425), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3364), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(3372), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [936] = { [sym_line_comment] = STATE(936), [sym_block_comment] = STATE(936), - [sym__expression] = STATE(2543), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(2446), + [sym__expression_without_blocks] = STATE(2383), + [sym__expression_with_blocks] = STATE(2383), + [sym_inc_expression] = STATE(2376), + [sym_dec_expression] = STATE(2376), + [sym_or_block_expression] = STATE(2376), + [sym_option_propagation_expression] = STATE(2376), + [sym_result_propagation_expression] = STATE(2376), + [sym_anon_struct_value_expression] = STATE(2375), + [sym_go_expression] = STATE(2376), + [sym_spawn_expression] = STATE(2376), + [sym_parenthesized_expression] = STATE(2376), + [sym_call_expression] = STATE(2376), + [sym_type_initializer] = STATE(2375), + [sym_function_literal] = STATE(2376), + [sym_reference_expression] = STATE(2373), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2376), + [sym_receive_expression] = STATE(2376), + [sym_binary_expression] = STATE(2376), + [sym_as_type_cast_expression] = STATE(2376), + [sym__max_group] = STATE(2376), + [sym_literal] = STATE(2397), + [sym_map_init_expression] = STATE(2375), + [sym_array_creation] = STATE(2376), + [sym_fixed_array_creation] = STATE(2376), + [sym_selector_expression] = STATE(2376), + [sym_index_expression] = STATE(2376), + [sym_slice_expression] = STATE(2376), + [sym_if_expression] = STATE(2375), + [sym_compile_time_if_expression] = STATE(2375), + [sym_is_expression] = STATE(2376), + [sym_in_expression] = STATE(2376), + [sym_enum_fetch] = STATE(2376), + [sym_match_expression] = STATE(2375), + [sym_select_expression] = STATE(2375), + [sym_lock_expression] = STATE(2375), + [sym_unsafe_expression] = STATE(2375), + [sym_sql_expression] = STATE(2375), + [sym_interpreted_string_literal] = STATE(2398), + [sym_c_string_literal] = STATE(2398), + [sym_raw_string_literal] = STATE(2398), + [sym_mutability_modifiers] = STATE(881), + [sym_plain_type] = STATE(4091), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1219), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1233), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_go] = ACTIONS(1237), + [anon_sym_spawn] = ACTIONS(1239), + [anon_sym_json_DOTdecode] = ACTIONS(1241), + [anon_sym_LBRACK2] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_LT_DASH] = ACTIONS(1247), + [sym_none] = ACTIONS(1249), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_DOLLARif] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_select] = ACTIONS(1257), + [anon_sym_lock] = ACTIONS(1259), + [anon_sym_rlock] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_sql] = ACTIONS(1263), + [sym_int_literal] = ACTIONS(1249), + [sym_float_literal] = ACTIONS(1265), + [sym_rune_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [anon_sym_c_SQUOTE] = ACTIONS(1271), + [anon_sym_c_DQUOTE] = ACTIONS(1273), + [anon_sym_r_SQUOTE] = ACTIONS(1275), + [anon_sym_r_DQUOTE] = ACTIONS(1277), + [sym_pseudo_compile_time_identifier] = ACTIONS(1279), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [937] = { [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [sym__expression] = STATE(2542), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1617), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(698), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [938] = { [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [sym__expression] = STATE(2541), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1674), + [sym__expression_with_blocks] = STATE(1674), + [sym_inc_expression] = STATE(1675), + [sym_dec_expression] = STATE(1675), + [sym_or_block_expression] = STATE(1675), + [sym_option_propagation_expression] = STATE(1675), + [sym_result_propagation_expression] = STATE(1675), + [sym_anon_struct_value_expression] = STATE(1683), + [sym_go_expression] = STATE(1675), + [sym_spawn_expression] = STATE(1675), + [sym_parenthesized_expression] = STATE(1675), + [sym_call_expression] = STATE(1675), + [sym_type_initializer] = STATE(1683), + [sym_function_literal] = STATE(1675), + [sym_reference_expression] = STATE(1684), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1675), + [sym_receive_expression] = STATE(1675), + [sym_binary_expression] = STATE(1675), + [sym_as_type_cast_expression] = STATE(1675), + [sym__max_group] = STATE(1675), + [sym_literal] = STATE(1673), + [sym_map_init_expression] = STATE(1683), + [sym_array_creation] = STATE(1675), + [sym_fixed_array_creation] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym_index_expression] = STATE(1675), + [sym_slice_expression] = STATE(1675), + [sym_if_expression] = STATE(1683), + [sym_compile_time_if_expression] = STATE(1683), + [sym_is_expression] = STATE(1675), + [sym_in_expression] = STATE(1675), + [sym_enum_fetch] = STATE(1675), + [sym_match_expression] = STATE(1683), + [sym_select_expression] = STATE(1683), + [sym_lock_expression] = STATE(1683), + [sym_unsafe_expression] = STATE(1683), + [sym_sql_expression] = STATE(1683), + [sym_interpreted_string_literal] = STATE(1672), + [sym_c_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_mutability_modifiers] = STATE(698), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3424), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_struct] = ACTIONS(323), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(325), + [anon_sym_go] = ACTIONS(327), + [anon_sym_spawn] = ACTIONS(329), + [anon_sym_json_DOTdecode] = ACTIONS(331), + [anon_sym_LBRACK2] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(319), + [anon_sym_CARET] = ACTIONS(319), + [anon_sym_AMP] = ACTIONS(335), + [anon_sym_LT_DASH] = ACTIONS(337), + [sym_none] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_nil] = ACTIONS(339), + [anon_sym_if] = ACTIONS(341), + [anon_sym_DOLLARif] = ACTIONS(343), + [anon_sym_match] = ACTIONS(345), + [anon_sym_select] = ACTIONS(347), + [anon_sym_lock] = ACTIONS(349), + [anon_sym_rlock] = ACTIONS(349), + [anon_sym_unsafe] = ACTIONS(351), + [anon_sym_sql] = ACTIONS(353), + [sym_int_literal] = ACTIONS(339), + [sym_float_literal] = ACTIONS(355), + [sym_rune_literal] = ACTIONS(355), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_c_SQUOTE] = ACTIONS(361), + [anon_sym_c_DQUOTE] = ACTIONS(363), + [anon_sym_r_SQUOTE] = ACTIONS(365), + [anon_sym_r_DQUOTE] = ACTIONS(367), + [sym_pseudo_compile_time_identifier] = ACTIONS(369), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [939] = { [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [sym__expression] = STATE(2810), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(939), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1428), + [sym__expression] = STATE(1775), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_go] = ACTIONS(1446), - [anon_sym_spawn] = ACTIONS(1448), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_LT_DASH] = ACTIONS(1456), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1466), - [anon_sym_lock] = ACTIONS(1468), - [anon_sym_rlock] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [940] = { [sym_line_comment] = STATE(940), [sym_block_comment] = STATE(940), - [sym__expression] = STATE(2467), - [sym__expression_without_blocks] = STATE(2347), - [sym__expression_with_blocks] = STATE(2347), - [sym_inc_expression] = STATE(2379), - [sym_dec_expression] = STATE(2379), - [sym_or_block_expression] = STATE(2379), - [sym_option_propagation_expression] = STATE(2379), - [sym_result_propagation_expression] = STATE(2379), - [sym_anon_struct_value_expression] = STATE(2378), - [sym_go_expression] = STATE(2379), - [sym_spawn_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_type_initializer] = STATE(2378), - [sym_function_literal] = STATE(2379), - [sym_reference_expression] = STATE(2377), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(2379), - [sym_receive_expression] = STATE(2379), - [sym_binary_expression] = STATE(2379), - [sym_as_type_cast_expression] = STATE(2379), - [sym__max_group] = STATE(2379), - [sym_literal] = STATE(2392), - [sym_map_init_expression] = STATE(2378), - [sym_array_creation] = STATE(2379), - [sym_fixed_array_creation] = STATE(2379), - [sym_selector_expression] = STATE(2379), - [sym_index_expression] = STATE(2379), - [sym_slice_expression] = STATE(2379), - [sym_if_expression] = STATE(2378), - [sym_compile_time_if_expression] = STATE(2378), - [sym_is_expression] = STATE(2379), - [sym_in_expression] = STATE(2379), - [sym_enum_fetch] = STATE(2379), - [sym_match_expression] = STATE(2378), - [sym_select_expression] = STATE(2378), - [sym_lock_expression] = STATE(2378), - [sym_unsafe_expression] = STATE(2378), - [sym_sql_expression] = STATE(2378), - [sym_c_string_literal] = STATE(2401), - [sym_raw_string_literal] = STATE(2401), - [sym_interpreted_string_literal] = STATE(2401), - [sym_mutability_modifiers] = STATE(553), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(1815), + [sym__expression] = STATE(1751), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(1958), + [sym_inc_expression] = STATE(1959), + [sym_dec_expression] = STATE(1959), + [sym_or_block_expression] = STATE(1959), + [sym_option_propagation_expression] = STATE(1959), + [sym_result_propagation_expression] = STATE(1959), + [sym_anon_struct_value_expression] = STATE(1962), + [sym_go_expression] = STATE(1959), + [sym_spawn_expression] = STATE(1959), + [sym_parenthesized_expression] = STATE(1959), + [sym_call_expression] = STATE(1959), + [sym_type_initializer] = STATE(1962), + [sym_function_literal] = STATE(1959), + [sym_reference_expression] = STATE(1954), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(1959), + [sym_receive_expression] = STATE(1959), + [sym_binary_expression] = STATE(1959), + [sym_as_type_cast_expression] = STATE(1959), + [sym__max_group] = STATE(1959), + [sym_literal] = STATE(1952), + [sym_map_init_expression] = STATE(1962), + [sym_array_creation] = STATE(1959), + [sym_fixed_array_creation] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym_index_expression] = STATE(1959), + [sym_slice_expression] = STATE(1959), + [sym_if_expression] = STATE(1962), + [sym_compile_time_if_expression] = STATE(1962), + [sym_is_expression] = STATE(1959), + [sym_in_expression] = STATE(1959), + [sym_enum_fetch] = STATE(1959), + [sym_match_expression] = STATE(1962), + [sym_select_expression] = STATE(1962), + [sym_lock_expression] = STATE(1962), + [sym_unsafe_expression] = STATE(1962), + [sym_sql_expression] = STATE(1962), + [sym_interpreted_string_literal] = STATE(1951), + [sym_c_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_mutability_modifiers] = STATE(592), + [sym_plain_type] = STATE(4257), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1641), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(785), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_go] = ACTIONS(1823), - [anon_sym_spawn] = ACTIONS(1825), - [anon_sym_json_DOTdecode] = ACTIONS(1450), - [anon_sym_LBRACK2] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_LT_DASH] = ACTIONS(1831), - [sym_none] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [sym_nil] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_DOLLARif] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1472), - [sym_int_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1474), - [sym_rune_literal] = ACTIONS(1474), - [sym_pseudo_compile_time_identifier] = ACTIONS(1476), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(789), + [anon_sym_go] = ACTIONS(791), + [anon_sym_spawn] = ACTIONS(793), + [anon_sym_json_DOTdecode] = ACTIONS(795), + [anon_sym_LBRACK2] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(799), + [anon_sym_LT_DASH] = ACTIONS(801), + [sym_none] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_nil] = ACTIONS(803), + [anon_sym_if] = ACTIONS(805), + [anon_sym_DOLLARif] = ACTIONS(807), + [anon_sym_match] = ACTIONS(809), + [anon_sym_select] = ACTIONS(811), + [anon_sym_lock] = ACTIONS(813), + [anon_sym_rlock] = ACTIONS(813), + [anon_sym_unsafe] = ACTIONS(815), + [anon_sym_sql] = ACTIONS(817), + [sym_int_literal] = ACTIONS(803), + [sym_float_literal] = ACTIONS(819), + [sym_rune_literal] = ACTIONS(819), + [anon_sym_SQUOTE] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_c_SQUOTE] = ACTIONS(825), + [anon_sym_c_DQUOTE] = ACTIONS(827), + [anon_sym_r_SQUOTE] = ACTIONS(829), + [anon_sym_r_DQUOTE] = ACTIONS(831), + [sym_pseudo_compile_time_identifier] = ACTIONS(833), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [941] = { [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [sym__expression] = STATE(1847), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), + [sym__expression] = STATE(217), + [sym__expression_without_blocks] = STATE(474), + [sym__expression_with_blocks] = STATE(474), + [sym_inc_expression] = STATE(475), + [sym_dec_expression] = STATE(475), + [sym_or_block_expression] = STATE(475), + [sym_option_propagation_expression] = STATE(475), + [sym_result_propagation_expression] = STATE(475), + [sym_anon_struct_value_expression] = STATE(476), + [sym_go_expression] = STATE(475), + [sym_spawn_expression] = STATE(475), + [sym_parenthesized_expression] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_type_initializer] = STATE(476), + [sym_function_literal] = STATE(475), + [sym_reference_expression] = STATE(491), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(475), + [sym_receive_expression] = STATE(475), + [sym_binary_expression] = STATE(475), + [sym_as_type_cast_expression] = STATE(475), + [sym__max_group] = STATE(475), + [sym_literal] = STATE(462), + [sym_map_init_expression] = STATE(476), + [sym_array_creation] = STATE(475), + [sym_fixed_array_creation] = STATE(475), + [sym_selector_expression] = STATE(475), + [sym_index_expression] = STATE(475), + [sym_slice_expression] = STATE(475), + [sym_if_expression] = STATE(476), + [sym_compile_time_if_expression] = STATE(476), + [sym_is_expression] = STATE(475), + [sym_in_expression] = STATE(475), + [sym_enum_fetch] = STATE(475), + [sym_match_expression] = STATE(476), + [sym_select_expression] = STATE(476), + [sym_lock_expression] = STATE(476), + [sym_unsafe_expression] = STATE(476), + [sym_sql_expression] = STATE(476), + [sym_interpreted_string_literal] = STATE(392), + [sym_c_string_literal] = STATE(392), + [sym_raw_string_literal] = STATE(392), + [sym_mutability_modifiers] = STATE(649), + [sym_plain_type] = STATE(4055), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3182), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(485), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(33), + [anon_sym_struct] = ACTIONS(487), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_go] = ACTIONS(51), + [anon_sym_spawn] = ACTIONS(53), + [anon_sym_json_DOTdecode] = ACTIONS(55), + [anon_sym_LBRACK2] = ACTIONS(489), + [anon_sym_TILDE] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_LT_DASH] = ACTIONS(61), + [sym_none] = ACTIONS(63), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_nil] = ACTIONS(63), + [anon_sym_if] = ACTIONS(65), + [anon_sym_DOLLARif] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_select] = ACTIONS(71), + [anon_sym_lock] = ACTIONS(73), + [anon_sym_rlock] = ACTIONS(73), + [anon_sym_unsafe] = ACTIONS(75), + [anon_sym_sql] = ACTIONS(77), + [sym_int_literal] = ACTIONS(63), + [sym_float_literal] = ACTIONS(79), + [sym_rune_literal] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_c_SQUOTE] = ACTIONS(85), + [anon_sym_c_DQUOTE] = ACTIONS(87), + [anon_sym_r_SQUOTE] = ACTIONS(89), + [anon_sym_r_DQUOTE] = ACTIONS(91), + [sym_pseudo_compile_time_identifier] = ACTIONS(93), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [942] = { [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [sym__expression] = STATE(1774), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), + [sym__expression] = STATE(2285), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4206), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3364), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(3372), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [943] = { [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [sym__expression] = STATE(1853), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), + [sym__expression] = STATE(2285), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4198), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3364), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(3372), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [944] = { [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [sym__expression] = STATE(1851), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), + [sym__expression] = STATE(2395), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3364), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(3372), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [945] = { [sym_line_comment] = STATE(945), [sym_block_comment] = STATE(945), - [sym__expression] = STATE(1848), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), + [sym__expression] = STATE(2437), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3364), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(3372), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [946] = { [sym_line_comment] = STATE(946), [sym_block_comment] = STATE(946), - [sym__expression] = STATE(1850), - [sym__expression_without_blocks] = STATE(1953), - [sym__expression_with_blocks] = STATE(1953), - [sym_inc_expression] = STATE(1955), - [sym_dec_expression] = STATE(1955), - [sym_or_block_expression] = STATE(1955), - [sym_option_propagation_expression] = STATE(1955), - [sym_result_propagation_expression] = STATE(1955), - [sym_anon_struct_value_expression] = STATE(1958), - [sym_go_expression] = STATE(1955), - [sym_spawn_expression] = STATE(1955), - [sym_parenthesized_expression] = STATE(1955), - [sym_call_expression] = STATE(1955), - [sym_type_initializer] = STATE(1958), - [sym_function_literal] = STATE(1955), - [sym_reference_expression] = STATE(1956), - [sym_type_reference_expression] = STATE(3460), - [sym_unary_expression] = STATE(1955), - [sym_receive_expression] = STATE(1955), - [sym_binary_expression] = STATE(1955), - [sym_as_type_cast_expression] = STATE(1955), - [sym__max_group] = STATE(1955), - [sym_literal] = STATE(1943), - [sym_map_init_expression] = STATE(1958), - [sym_array_creation] = STATE(1955), - [sym_fixed_array_creation] = STATE(1955), - [sym_selector_expression] = STATE(1955), - [sym_index_expression] = STATE(1955), - [sym_slice_expression] = STATE(1955), - [sym_if_expression] = STATE(1958), - [sym_compile_time_if_expression] = STATE(1958), - [sym_is_expression] = STATE(1955), - [sym_in_expression] = STATE(1955), - [sym_enum_fetch] = STATE(1955), - [sym_match_expression] = STATE(1958), - [sym_select_expression] = STATE(1958), - [sym_lock_expression] = STATE(1958), - [sym_unsafe_expression] = STATE(1958), - [sym_sql_expression] = STATE(1958), - [sym_c_string_literal] = STATE(1942), - [sym_raw_string_literal] = STATE(1942), - [sym_interpreted_string_literal] = STATE(1942), - [sym_mutability_modifiers] = STATE(601), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3158), + [sym__expression] = STATE(2377), + [sym__expression_without_blocks] = STATE(2453), + [sym__expression_with_blocks] = STATE(2453), + [sym_inc_expression] = STATE(2517), + [sym_dec_expression] = STATE(2517), + [sym_or_block_expression] = STATE(2517), + [sym_option_propagation_expression] = STATE(2517), + [sym_result_propagation_expression] = STATE(2517), + [sym_anon_struct_value_expression] = STATE(2530), + [sym_go_expression] = STATE(2517), + [sym_spawn_expression] = STATE(2517), + [sym_parenthesized_expression] = STATE(2517), + [sym_call_expression] = STATE(2517), + [sym_type_initializer] = STATE(2530), + [sym_function_literal] = STATE(2517), + [sym_reference_expression] = STATE(2458), + [sym_type_reference_expression] = STATE(3543), + [sym_unary_expression] = STATE(2517), + [sym_receive_expression] = STATE(2517), + [sym_binary_expression] = STATE(2517), + [sym_as_type_cast_expression] = STATE(2517), + [sym__max_group] = STATE(2517), + [sym_literal] = STATE(2490), + [sym_map_init_expression] = STATE(2530), + [sym_array_creation] = STATE(2517), + [sym_fixed_array_creation] = STATE(2517), + [sym_selector_expression] = STATE(2517), + [sym_index_expression] = STATE(2517), + [sym_slice_expression] = STATE(2517), + [sym_if_expression] = STATE(2530), + [sym_compile_time_if_expression] = STATE(2530), + [sym_is_expression] = STATE(2517), + [sym_in_expression] = STATE(2517), + [sym_enum_fetch] = STATE(2517), + [sym_match_expression] = STATE(2530), + [sym_select_expression] = STATE(2530), + [sym_lock_expression] = STATE(2530), + [sym_unsafe_expression] = STATE(2530), + [sym_sql_expression] = STATE(2530), + [sym_interpreted_string_literal] = STATE(2489), + [sym_c_string_literal] = STATE(2489), + [sym_raw_string_literal] = STATE(2489), + [sym_mutability_modifiers] = STATE(889), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(1645), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_struct] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(1659), [anon_sym_mut] = ACTIONS(41), [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_go] = ACTIONS(3166), - [anon_sym_spawn] = ACTIONS(3168), - [anon_sym_json_DOTdecode] = ACTIONS(727), - [anon_sym_LBRACK2] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_CARET] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3172), - [anon_sym_LT_DASH] = ACTIONS(3174), - [sym_none] = ACTIONS(735), - [sym_true] = ACTIONS(735), - [sym_false] = ACTIONS(735), - [sym_nil] = ACTIONS(735), - [anon_sym_if] = ACTIONS(737), - [anon_sym_DOLLARif] = ACTIONS(739), - [anon_sym_match] = ACTIONS(741), - [anon_sym_select] = ACTIONS(3176), - [anon_sym_lock] = ACTIONS(3178), - [anon_sym_rlock] = ACTIONS(3178), - [anon_sym_unsafe] = ACTIONS(747), - [anon_sym_sql] = ACTIONS(749), - [sym_int_literal] = ACTIONS(735), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3364), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(2519), + [anon_sym_LBRACK2] = ACTIONS(2521), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_nil] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_select] = ACTIONS(3372), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(1687), + [anon_sym_sql] = ACTIONS(1689), + [sym_int_literal] = ACTIONS(1675), + [sym_float_literal] = ACTIONS(2527), + [sym_rune_literal] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2531), + [anon_sym_c_SQUOTE] = ACTIONS(2533), + [anon_sym_c_DQUOTE] = ACTIONS(2535), + [anon_sym_r_SQUOTE] = ACTIONS(2537), + [anon_sym_r_DQUOTE] = ACTIONS(2539), + [sym_pseudo_compile_time_identifier] = ACTIONS(1703), + [anon_sym_shared] = ACTIONS(95), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [947] = { [sym_line_comment] = STATE(947), [sym_block_comment] = STATE(947), - [sym_reference_expression] = STATE(4351), - [sym_type_reference_expression] = STATE(3305), + [sym_reference_expression] = STATE(4356), + [sym_type_reference_expression] = STATE(3302), [sym_plain_type] = STATE(3337), - [sym__plain_type_without_special] = STATE(3362), - [sym_anon_struct_type] = STATE(3340), - [sym_multi_return_type] = STATE(3362), - [sym_result_type] = STATE(3362), - [sym_option_type] = STATE(3362), - [sym_qualified_type] = STATE(3305), - [sym_fixed_array_type] = STATE(3340), - [sym_array_type] = STATE(3340), - [sym_pointer_type] = STATE(3340), - [sym_wrong_pointer_type] = STATE(3340), - [sym_map_type] = STATE(3340), - [sym_channel_type] = STATE(3340), - [sym_shared_type] = STATE(3340), - [sym_thread_type] = STATE(3340), - [sym_atomic_type] = STATE(3340), - [sym_generic_type] = STATE(3340), - [sym_function_type] = STATE(3340), - [sym_identifier] = ACTIONS(3426), - [anon_sym_LF] = ACTIONS(1891), - [anon_sym_CR] = ACTIONS(1891), - [anon_sym_CR_LF] = ACTIONS(1891), + [sym__plain_type_without_special] = STATE(3360), + [sym_anon_struct_type] = STATE(3354), + [sym_multi_return_type] = STATE(3360), + [sym_result_type] = STATE(3360), + [sym_option_type] = STATE(3360), + [sym_qualified_type] = STATE(3302), + [sym_fixed_array_type] = STATE(3354), + [sym_array_type] = STATE(3354), + [sym_pointer_type] = STATE(3354), + [sym_wrong_pointer_type] = STATE(3354), + [sym_map_type] = STATE(3354), + [sym_channel_type] = STATE(3354), + [sym_shared_type] = STATE(3354), + [sym_thread_type] = STATE(3354), + [sym_atomic_type] = STATE(3354), + [sym_generic_type] = STATE(3354), + [sym_function_type] = STATE(3354), + [sym_identifier] = ACTIONS(3430), + [anon_sym_LF] = ACTIONS(2057), + [anon_sym_CR] = ACTIONS(2057), + [anon_sym_CR_LF] = ACTIONS(2057), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym___global] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(3430), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(3432), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_struct] = ACTIONS(3434), - [anon_sym_pub] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(1891), - [anon_sym_COLON] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(3436), - [anon_sym_BANG] = ACTIONS(3438), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(3440), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(3442), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1889), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1889), - [anon_sym_AMP_CARET] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1889), - [anon_sym_POUND_LBRACK] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(3444), - [anon_sym_map_LBRACK] = ACTIONS(3446), - [anon_sym_chan] = ACTIONS(3448), - [anon_sym_thread] = ACTIONS(3450), - [anon_sym_atomic] = ACTIONS(3452), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(3432), + [anon_sym___global] = ACTIONS(2159), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(3436), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_PERCENT] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_EQ_EQ] = ACTIONS(2055), + [anon_sym_BANG_EQ] = ACTIONS(2055), + [anon_sym_LT_EQ] = ACTIONS(2055), + [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(3438), + [anon_sym_pub] = ACTIONS(2159), + [anon_sym_mut] = ACTIONS(2057), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_QMARK] = ACTIONS(3440), + [anon_sym_BANG] = ACTIONS(3442), + [anon_sym_go] = ACTIONS(2055), + [anon_sym_spawn] = ACTIONS(2055), + [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_LBRACK2] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_LT] = ACTIONS(2055), + [anon_sym_GT_GT] = ACTIONS(2055), + [anon_sym_GT_GT_GT] = ACTIONS(2055), + [anon_sym_AMP_CARET] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2055), + [anon_sym_PIPE_PIPE] = ACTIONS(2055), + [anon_sym_or] = ACTIONS(2055), + [sym_none] = ACTIONS(2055), + [sym_true] = ACTIONS(2055), + [sym_false] = ACTIONS(2055), + [sym_nil] = ACTIONS(2055), + [anon_sym_QMARK_DOT] = ACTIONS(2055), + [anon_sym_POUND_LBRACK] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_DOLLARif] = ACTIONS(2055), + [anon_sym_is] = ACTIONS(2055), + [anon_sym_BANGis] = ACTIONS(2055), + [anon_sym_in] = ACTIONS(2055), + [anon_sym_BANGin] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_select] = ACTIONS(2055), + [anon_sym_lock] = ACTIONS(2055), + [anon_sym_rlock] = ACTIONS(2055), + [anon_sym_unsafe] = ACTIONS(2055), + [anon_sym_sql] = ACTIONS(2055), + [sym_int_literal] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), + [sym_rune_literal] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2055), + [anon_sym_c_SQUOTE] = ACTIONS(2055), + [anon_sym_c_DQUOTE] = ACTIONS(2055), + [anon_sym_r_SQUOTE] = ACTIONS(2055), + [anon_sym_r_DQUOTE] = ACTIONS(2055), + [sym_pseudo_compile_time_identifier] = ACTIONS(2055), + [anon_sym_shared] = ACTIONS(3448), + [anon_sym_map_LBRACK] = ACTIONS(3450), + [anon_sym_chan] = ACTIONS(3452), + [anon_sym_thread] = ACTIONS(3454), + [anon_sym_atomic] = ACTIONS(3456), }, [948] = { [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [sym_reference_expression] = STATE(4412), - [sym_type_reference_expression] = STATE(1132), - [sym_plain_type] = STATE(1166), - [sym__plain_type_without_special] = STATE(1214), - [sym_anon_struct_type] = STATE(1225), - [sym_multi_return_type] = STATE(1214), - [sym_result_type] = STATE(1214), - [sym_option_type] = STATE(1214), - [sym_qualified_type] = STATE(1132), - [sym_fixed_array_type] = STATE(1225), - [sym_array_type] = STATE(1225), - [sym_pointer_type] = STATE(1225), - [sym_wrong_pointer_type] = STATE(1225), - [sym_map_type] = STATE(1225), - [sym_channel_type] = STATE(1225), - [sym_shared_type] = STATE(1225), - [sym_thread_type] = STATE(1225), - [sym_atomic_type] = STATE(1225), - [sym_generic_type] = STATE(1225), - [sym_function_type] = STATE(1225), - [sym_identifier] = ACTIONS(3454), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2386), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), + [anon_sym_LF] = ACTIONS(607), + [anon_sym_CR] = ACTIONS(607), + [anon_sym_CR_LF] = ACTIONS(607), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3456), - [anon_sym_RPAREN] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3460), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(3462), - [anon_sym_mut] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3464), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(619), - [anon_sym_spawn] = ACTIONS(619), - [anon_sym_json_DOTdecode] = ACTIONS(619), - [anon_sym_LBRACK2] = ACTIONS(3468), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3470), - [anon_sym_LT_DASH] = ACTIONS(619), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(619), - [sym_none] = ACTIONS(619), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [sym_nil] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_if] = ACTIONS(619), - [anon_sym_DOLLARif] = ACTIONS(619), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_match] = ACTIONS(619), - [anon_sym_select] = ACTIONS(619), - [anon_sym_lock] = ACTIONS(619), - [anon_sym_rlock] = ACTIONS(619), - [anon_sym_unsafe] = ACTIONS(619), - [anon_sym_sql] = ACTIONS(619), - [sym_int_literal] = ACTIONS(619), - [sym_float_literal] = ACTIONS(619), - [sym_rune_literal] = ACTIONS(619), - [sym_pseudo_compile_time_identifier] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(3472), - [anon_sym_map_LBRACK] = ACTIONS(3474), - [anon_sym_chan] = ACTIONS(3476), - [anon_sym_thread] = ACTIONS(3478), - [anon_sym_atomic] = ACTIONS(3480), - [sym___double_quote] = ACTIONS(619), - [sym___single_quote] = ACTIONS(619), - [sym___c_double_quote] = ACTIONS(619), - [sym___c_single_quote] = ACTIONS(619), - [sym___r_double_quote] = ACTIONS(619), - [sym___r_single_quote] = ACTIONS(619), + [anon_sym_SEMI] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_RPAREN] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_mut] = ACTIONS(607), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3458), + [anon_sym_go] = ACTIONS(607), + [anon_sym_spawn] = ACTIONS(607), + [anon_sym_json_DOTdecode] = ACTIONS(607), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(607), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_LT_DASH] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(607), + [sym_none] = ACTIONS(607), + [sym_true] = ACTIONS(607), + [sym_false] = ACTIONS(607), + [sym_nil] = ACTIONS(607), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_DOLLARif] = ACTIONS(607), + [anon_sym_is] = ACTIONS(607), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(607), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_select] = ACTIONS(607), + [anon_sym_lock] = ACTIONS(607), + [anon_sym_rlock] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_sql] = ACTIONS(607), + [sym_int_literal] = ACTIONS(607), + [sym_float_literal] = ACTIONS(607), + [sym_rune_literal] = ACTIONS(607), + [anon_sym_SQUOTE] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [anon_sym_c_SQUOTE] = ACTIONS(607), + [anon_sym_c_DQUOTE] = ACTIONS(607), + [anon_sym_r_SQUOTE] = ACTIONS(607), + [anon_sym_r_DQUOTE] = ACTIONS(607), + [sym_pseudo_compile_time_identifier] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [949] = { [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2345), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2311), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), [sym_identifier] = ACTIONS(627), [anon_sym_LF] = ACTIONS(627), [anon_sym_CR] = ACTIONS(627), @@ -132141,43 +132117,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(627), [sym_float_literal] = ACTIONS(627), [sym_rune_literal] = ACTIONS(627), + [anon_sym_SQUOTE] = ACTIONS(627), + [anon_sym_DQUOTE] = ACTIONS(627), + [anon_sym_c_SQUOTE] = ACTIONS(627), + [anon_sym_c_DQUOTE] = ACTIONS(627), + [anon_sym_r_SQUOTE] = ACTIONS(627), + [anon_sym_r_DQUOTE] = ACTIONS(627), [sym_pseudo_compile_time_identifier] = ACTIONS(627), [anon_sym_shared] = ACTIONS(627), [anon_sym_map_LBRACK] = ACTIONS(627), [anon_sym_chan] = ACTIONS(627), [anon_sym_thread] = ACTIONS(627), [anon_sym_atomic] = ACTIONS(627), - [sym___double_quote] = ACTIONS(627), - [sym___single_quote] = ACTIONS(627), - [sym___c_double_quote] = ACTIONS(627), - [sym___c_single_quote] = ACTIONS(627), - [sym___r_double_quote] = ACTIONS(627), - [sym___r_single_quote] = ACTIONS(627), }, [950] = { [sym_line_comment] = STATE(950), [sym_block_comment] = STATE(950), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2320), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), + [sym_reference_expression] = STATE(4407), + [sym_type_reference_expression] = STATE(1136), + [sym_plain_type] = STATE(1140), + [sym__plain_type_without_special] = STATE(1171), + [sym_anon_struct_type] = STATE(1169), + [sym_multi_return_type] = STATE(1171), + [sym_result_type] = STATE(1171), + [sym_option_type] = STATE(1171), + [sym_qualified_type] = STATE(1136), + [sym_fixed_array_type] = STATE(1169), + [sym_array_type] = STATE(1169), + [sym_pointer_type] = STATE(1169), + [sym_wrong_pointer_type] = STATE(1169), + [sym_map_type] = STATE(1169), + [sym_channel_type] = STATE(1169), + [sym_shared_type] = STATE(1169), + [sym_thread_type] = STATE(1169), + [sym_atomic_type] = STATE(1169), + [sym_generic_type] = STATE(1169), + [sym_function_type] = STATE(1169), + [sym_identifier] = ACTIONS(3460), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(601), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_RPAREN] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3464), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3466), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(3468), + [anon_sym_mut] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3472), + [anon_sym_go] = ACTIONS(601), + [anon_sym_spawn] = ACTIONS(601), + [anon_sym_json_DOTdecode] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(3474), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(3476), + [anon_sym_LT_DASH] = ACTIONS(601), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_or] = ACTIONS(601), + [sym_none] = ACTIONS(601), + [sym_true] = ACTIONS(601), + [sym_false] = ACTIONS(601), + [sym_nil] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_POUND_LBRACK] = ACTIONS(601), + [anon_sym_if] = ACTIONS(601), + [anon_sym_DOLLARif] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(601), + [anon_sym_match] = ACTIONS(601), + [anon_sym_select] = ACTIONS(601), + [anon_sym_lock] = ACTIONS(601), + [anon_sym_rlock] = ACTIONS(601), + [anon_sym_unsafe] = ACTIONS(601), + [anon_sym_sql] = ACTIONS(601), + [sym_int_literal] = ACTIONS(601), + [sym_float_literal] = ACTIONS(601), + [sym_rune_literal] = ACTIONS(601), + [anon_sym_SQUOTE] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(601), + [anon_sym_c_SQUOTE] = ACTIONS(601), + [anon_sym_c_DQUOTE] = ACTIONS(601), + [anon_sym_r_SQUOTE] = ACTIONS(601), + [anon_sym_r_DQUOTE] = ACTIONS(601), + [sym_pseudo_compile_time_identifier] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(3478), + [anon_sym_map_LBRACK] = ACTIONS(3480), + [anon_sym_chan] = ACTIONS(3482), + [anon_sym_thread] = ACTIONS(3484), + [anon_sym_atomic] = ACTIONS(3486), + }, + [951] = { + [sym_line_comment] = STATE(951), + [sym_block_comment] = STATE(951), + [sym_reference_expression] = STATE(4407), + [sym_type_reference_expression] = STATE(1136), + [sym_plain_type] = STATE(1213), + [sym__plain_type_without_special] = STATE(1171), + [sym_anon_struct_type] = STATE(1169), + [sym_multi_return_type] = STATE(1171), + [sym_result_type] = STATE(1171), + [sym_option_type] = STATE(1171), + [sym_qualified_type] = STATE(1136), + [sym_fixed_array_type] = STATE(1169), + [sym_array_type] = STATE(1169), + [sym_pointer_type] = STATE(1169), + [sym_wrong_pointer_type] = STATE(1169), + [sym_map_type] = STATE(1169), + [sym_channel_type] = STATE(1169), + [sym_shared_type] = STATE(1169), + [sym_thread_type] = STATE(1169), + [sym_atomic_type] = STATE(1169), + [sym_generic_type] = STATE(1169), + [sym_function_type] = STATE(1169), + [sym_identifier] = ACTIONS(3460), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_CR] = ACTIONS(597), + [anon_sym_CR_LF] = ACTIONS(597), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(597), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(3464), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(3466), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(3468), + [anon_sym_mut] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3472), + [anon_sym_go] = ACTIONS(597), + [anon_sym_spawn] = ACTIONS(597), + [anon_sym_json_DOTdecode] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(3474), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(3476), + [anon_sym_LT_DASH] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_or] = ACTIONS(597), + [sym_none] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_nil] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(597), + [anon_sym_POUND_LBRACK] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(597), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(597), + [anon_sym_match] = ACTIONS(597), + [anon_sym_select] = ACTIONS(597), + [anon_sym_lock] = ACTIONS(597), + [anon_sym_rlock] = ACTIONS(597), + [anon_sym_unsafe] = ACTIONS(597), + [anon_sym_sql] = ACTIONS(597), + [sym_int_literal] = ACTIONS(597), + [sym_float_literal] = ACTIONS(597), + [sym_rune_literal] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(597), + [anon_sym_c_SQUOTE] = ACTIONS(597), + [anon_sym_c_DQUOTE] = ACTIONS(597), + [anon_sym_r_SQUOTE] = ACTIONS(597), + [anon_sym_r_DQUOTE] = ACTIONS(597), + [sym_pseudo_compile_time_identifier] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(3478), + [anon_sym_map_LBRACK] = ACTIONS(3480), + [anon_sym_chan] = ACTIONS(3482), + [anon_sym_thread] = ACTIONS(3484), + [anon_sym_atomic] = ACTIONS(3486), + }, + [952] = { + [sym_line_comment] = STATE(952), + [sym_block_comment] = STATE(952), + [sym_reference_expression] = STATE(4407), + [sym_type_reference_expression] = STATE(1136), + [sym_plain_type] = STATE(1205), + [sym__plain_type_without_special] = STATE(1171), + [sym_anon_struct_type] = STATE(1169), + [sym_multi_return_type] = STATE(1171), + [sym_result_type] = STATE(1171), + [sym_option_type] = STATE(1171), + [sym_qualified_type] = STATE(1136), + [sym_fixed_array_type] = STATE(1169), + [sym_array_type] = STATE(1169), + [sym_pointer_type] = STATE(1169), + [sym_wrong_pointer_type] = STATE(1169), + [sym_map_type] = STATE(1169), + [sym_channel_type] = STATE(1169), + [sym_shared_type] = STATE(1169), + [sym_thread_type] = STATE(1169), + [sym_atomic_type] = STATE(1169), + [sym_generic_type] = STATE(1169), + [sym_function_type] = STATE(1169), + [sym_identifier] = ACTIONS(3460), [anon_sym_LF] = ACTIONS(567), [anon_sym_CR] = ACTIONS(567), [anon_sym_CR_LF] = ACTIONS(567), @@ -132189,13 +132379,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(3462), [anon_sym_RPAREN] = ACTIONS(567), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(3464), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(3466), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(567), [anon_sym_LT] = ACTIONS(567), @@ -132206,19 +132396,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(567), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(3468), [anon_sym_mut] = ACTIONS(567), [anon_sym_PLUS_PLUS] = ACTIONS(567), [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3482), + [anon_sym_QMARK] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3472), [anon_sym_go] = ACTIONS(567), [anon_sym_spawn] = ACTIONS(567), [anon_sym_json_DOTdecode] = ACTIONS(567), - [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_LBRACK2] = ACTIONS(3474), [anon_sym_TILDE] = ACTIONS(567), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(3476), [anon_sym_LT_DASH] = ACTIONS(567), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), @@ -132248,555 +132438,761 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(567), [sym_float_literal] = ACTIONS(567), [sym_rune_literal] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(567), + [anon_sym_c_SQUOTE] = ACTIONS(567), + [anon_sym_c_DQUOTE] = ACTIONS(567), + [anon_sym_r_SQUOTE] = ACTIONS(567), + [anon_sym_r_DQUOTE] = ACTIONS(567), [sym_pseudo_compile_time_identifier] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(567), - [sym___single_quote] = ACTIONS(567), - [sym___c_double_quote] = ACTIONS(567), - [sym___c_single_quote] = ACTIONS(567), - [sym___r_double_quote] = ACTIONS(567), - [sym___r_single_quote] = ACTIONS(567), - }, - [951] = { - [sym_line_comment] = STATE(951), - [sym_block_comment] = STATE(951), - [sym_reference_expression] = STATE(4412), - [sym_type_reference_expression] = STATE(1132), - [sym_plain_type] = STATE(1182), - [sym__plain_type_without_special] = STATE(1214), - [sym_anon_struct_type] = STATE(1225), - [sym_multi_return_type] = STATE(1214), - [sym_result_type] = STATE(1214), - [sym_option_type] = STATE(1214), - [sym_qualified_type] = STATE(1132), - [sym_fixed_array_type] = STATE(1225), - [sym_array_type] = STATE(1225), - [sym_pointer_type] = STATE(1225), - [sym_wrong_pointer_type] = STATE(1225), - [sym_map_type] = STATE(1225), - [sym_channel_type] = STATE(1225), - [sym_shared_type] = STATE(1225), - [sym_thread_type] = STATE(1225), - [sym_atomic_type] = STATE(1225), - [sym_generic_type] = STATE(1225), - [sym_function_type] = STATE(1225), - [sym_identifier] = ACTIONS(3454), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(623), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(623), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(3456), - [anon_sym_RPAREN] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(3460), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_DOT_DOT_DOT] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(3462), - [anon_sym_mut] = ACTIONS(623), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(3464), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(623), - [anon_sym_spawn] = ACTIONS(623), - [anon_sym_json_DOTdecode] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(3468), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(3470), - [anon_sym_LT_DASH] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [sym_none] = ACTIONS(623), - [sym_true] = ACTIONS(623), - [sym_false] = ACTIONS(623), - [sym_nil] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(623), - [anon_sym_POUND_LBRACK] = ACTIONS(623), - [anon_sym_if] = ACTIONS(623), - [anon_sym_DOLLARif] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(623), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_match] = ACTIONS(623), - [anon_sym_select] = ACTIONS(623), - [anon_sym_lock] = ACTIONS(623), - [anon_sym_rlock] = ACTIONS(623), - [anon_sym_unsafe] = ACTIONS(623), - [anon_sym_sql] = ACTIONS(623), - [sym_int_literal] = ACTIONS(623), - [sym_float_literal] = ACTIONS(623), - [sym_rune_literal] = ACTIONS(623), - [sym_pseudo_compile_time_identifier] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(3472), - [anon_sym_map_LBRACK] = ACTIONS(3474), - [anon_sym_chan] = ACTIONS(3476), - [anon_sym_thread] = ACTIONS(3478), - [anon_sym_atomic] = ACTIONS(3480), - [sym___double_quote] = ACTIONS(623), - [sym___single_quote] = ACTIONS(623), - [sym___c_double_quote] = ACTIONS(623), - [sym___c_single_quote] = ACTIONS(623), - [sym___r_double_quote] = ACTIONS(623), - [sym___r_single_quote] = ACTIONS(623), - }, - [952] = { - [sym_line_comment] = STATE(952), - [sym_block_comment] = STATE(952), - [sym_reference_expression] = STATE(4412), - [sym_type_reference_expression] = STATE(1132), - [sym_plain_type] = STATE(1155), - [sym__plain_type_without_special] = STATE(1214), - [sym_anon_struct_type] = STATE(1225), - [sym_multi_return_type] = STATE(1214), - [sym_result_type] = STATE(1214), - [sym_option_type] = STATE(1214), - [sym_qualified_type] = STATE(1132), - [sym_fixed_array_type] = STATE(1225), - [sym_array_type] = STATE(1225), - [sym_pointer_type] = STATE(1225), - [sym_wrong_pointer_type] = STATE(1225), - [sym_map_type] = STATE(1225), - [sym_channel_type] = STATE(1225), - [sym_shared_type] = STATE(1225), - [sym_thread_type] = STATE(1225), - [sym_atomic_type] = STATE(1225), - [sym_generic_type] = STATE(1225), - [sym_function_type] = STATE(1225), - [sym_identifier] = ACTIONS(3454), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3456), - [anon_sym_RPAREN] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3460), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_DOT_DOT_DOT] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(3462), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3464), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(589), - [anon_sym_LBRACK2] = ACTIONS(3468), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3470), - [anon_sym_LT_DASH] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(589), - [sym_rune_literal] = ACTIONS(589), - [sym_pseudo_compile_time_identifier] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3472), - [anon_sym_map_LBRACK] = ACTIONS(3474), - [anon_sym_chan] = ACTIONS(3476), - [anon_sym_thread] = ACTIONS(3478), - [anon_sym_atomic] = ACTIONS(3480), - [sym___double_quote] = ACTIONS(589), - [sym___single_quote] = ACTIONS(589), - [sym___c_double_quote] = ACTIONS(589), - [sym___c_single_quote] = ACTIONS(589), - [sym___r_double_quote] = ACTIONS(589), - [sym___r_single_quote] = ACTIONS(589), + [anon_sym_shared] = ACTIONS(3478), + [anon_sym_map_LBRACK] = ACTIONS(3480), + [anon_sym_chan] = ACTIONS(3482), + [anon_sym_thread] = ACTIONS(3484), + [anon_sym_atomic] = ACTIONS(3486), }, [953] = { [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [aux_sym_strictly_expression_list_repeat1] = STATE(1410), - [ts_builtin_sym_end] = ACTIONS(3484), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1757), - [anon_sym_CR] = ACTIONS(1757), - [anon_sym_CR_LF] = ACTIONS(1757), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [aux_sym_strictly_expression_list_repeat1] = STATE(1408), + [ts_builtin_sym_end] = ACTIONS(3488), + [sym_identifier] = ACTIONS(1721), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_CR] = ACTIONS(1721), + [anon_sym_CR_LF] = ACTIONS(1721), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(3488), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_COMMA] = ACTIONS(3490), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(3494), - [anon_sym_fn] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(3494), - [anon_sym_DASH] = ACTIONS(3494), - [anon_sym_STAR] = ACTIONS(3496), - [anon_sym_SLASH] = ACTIONS(3496), - [anon_sym_PERCENT] = ACTIONS(3496), - [anon_sym_LT] = ACTIONS(3498), - [anon_sym_GT] = ACTIONS(3498), - [anon_sym_EQ_EQ] = ACTIONS(3498), - [anon_sym_BANG_EQ] = ACTIONS(3498), - [anon_sym_LT_EQ] = ACTIONS(3498), - [anon_sym_GT_EQ] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_pub] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [anon_sym_interface] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(1757), - [anon_sym_spawn] = ACTIONS(1757), - [anon_sym_json_DOTdecode] = ACTIONS(1757), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3496), - [anon_sym_LT_DASH] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(3496), - [anon_sym_GT_GT] = ACTIONS(3496), - [anon_sym_GT_GT_GT] = ACTIONS(3496), - [anon_sym_AMP_CARET] = ACTIONS(3496), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3514), - [anon_sym_or] = ACTIONS(3516), - [sym_none] = ACTIONS(1757), - [sym_true] = ACTIONS(1757), - [sym_false] = ACTIONS(1757), - [sym_nil] = ACTIONS(1757), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_DOLLARif] = ACTIONS(1757), - [anon_sym_is] = ACTIONS(3518), - [anon_sym_BANGis] = ACTIONS(3518), - [anon_sym_in] = ACTIONS(3520), - [anon_sym_BANGin] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_select] = ACTIONS(1757), - [anon_sym_lock] = ACTIONS(1757), - [anon_sym_rlock] = ACTIONS(1757), - [anon_sym_unsafe] = ACTIONS(1757), - [anon_sym_sql] = ACTIONS(1757), - [sym_int_literal] = ACTIONS(1757), - [sym_float_literal] = ACTIONS(1757), - [sym_rune_literal] = ACTIONS(1757), - [sym_pseudo_compile_time_identifier] = ACTIONS(1757), - [anon_sym_shared] = ACTIONS(1757), - [anon_sym_map_LBRACK] = ACTIONS(1757), - [anon_sym_chan] = ACTIONS(1757), - [anon_sym_thread] = ACTIONS(1757), - [anon_sym_atomic] = ACTIONS(1757), - [anon_sym_assert] = ACTIONS(1757), - [anon_sym_defer] = ACTIONS(1757), - [anon_sym_goto] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_DOLLARfor] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(1757), - [anon_sym_asm] = ACTIONS(1757), - [anon_sym_AT_LBRACK] = ACTIONS(1757), - [sym___double_quote] = ACTIONS(1757), - [sym___single_quote] = ACTIONS(1757), - [sym___c_double_quote] = ACTIONS(1757), - [sym___c_single_quote] = ACTIONS(1757), - [sym___r_double_quote] = ACTIONS(1757), - [sym___r_single_quote] = ACTIONS(1757), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(1721), + [anon_sym_COMMA] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(1721), + [anon_sym_type] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(3498), + [anon_sym_fn] = ACTIONS(1721), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_STAR] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_PERCENT] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(3502), + [anon_sym_GT] = ACTIONS(3502), + [anon_sym_EQ_EQ] = ACTIONS(3502), + [anon_sym_BANG_EQ] = ACTIONS(3502), + [anon_sym_LT_EQ] = ACTIONS(3502), + [anon_sym_GT_EQ] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_pub] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_enum] = ACTIONS(1721), + [anon_sym_interface] = ACTIONS(1721), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1721), + [anon_sym_json_DOTdecode] = ACTIONS(1721), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(1721), + [anon_sym_CARET] = ACTIONS(3498), + [anon_sym_AMP] = ACTIONS(3500), + [anon_sym_LT_DASH] = ACTIONS(1721), + [anon_sym_LT_LT] = ACTIONS(3500), + [anon_sym_GT_GT] = ACTIONS(3500), + [anon_sym_GT_GT_GT] = ACTIONS(3500), + [anon_sym_AMP_CARET] = ACTIONS(3500), + [anon_sym_AMP_AMP] = ACTIONS(3516), + [anon_sym_PIPE_PIPE] = ACTIONS(3518), + [anon_sym_or] = ACTIONS(3520), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_DOLLARif] = ACTIONS(1721), + [anon_sym_is] = ACTIONS(3522), + [anon_sym_BANGis] = ACTIONS(3522), + [anon_sym_in] = ACTIONS(3524), + [anon_sym_BANGin] = ACTIONS(3524), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_select] = ACTIONS(1721), + [anon_sym_lock] = ACTIONS(1721), + [anon_sym_rlock] = ACTIONS(1721), + [anon_sym_unsafe] = ACTIONS(1721), + [anon_sym_sql] = ACTIONS(1721), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(1721), + [sym_rune_literal] = ACTIONS(1721), + [anon_sym_SQUOTE] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [anon_sym_c_SQUOTE] = ACTIONS(1721), + [anon_sym_c_DQUOTE] = ACTIONS(1721), + [anon_sym_r_SQUOTE] = ACTIONS(1721), + [anon_sym_r_DQUOTE] = ACTIONS(1721), + [sym_pseudo_compile_time_identifier] = ACTIONS(1721), + [anon_sym_shared] = ACTIONS(1721), + [anon_sym_map_LBRACK] = ACTIONS(1721), + [anon_sym_chan] = ACTIONS(1721), + [anon_sym_thread] = ACTIONS(1721), + [anon_sym_atomic] = ACTIONS(1721), + [anon_sym_assert] = ACTIONS(1721), + [anon_sym_defer] = ACTIONS(1721), + [anon_sym_goto] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_DOLLARfor] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(1721), + [anon_sym_asm] = ACTIONS(1721), + [anon_sym_AT_LBRACK] = ACTIONS(1721), }, [954] = { [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(1649), - [anon_sym_LF] = ACTIONS(1649), - [anon_sym_CR] = ACTIONS(1649), - [anon_sym_CR_LF] = ACTIONS(1649), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(1777), + [sym_identifier] = ACTIONS(1779), + [anon_sym_LF] = ACTIONS(1779), + [anon_sym_CR] = ACTIONS(1779), + [anon_sym_CR_LF] = ACTIONS(1779), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(3488), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_COMMA] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(1649), - [anon_sym_type] = ACTIONS(1649), - [anon_sym_PIPE] = ACTIONS(3494), - [anon_sym_fn] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(3494), - [anon_sym_DASH] = ACTIONS(3494), - [anon_sym_STAR] = ACTIONS(3496), - [anon_sym_SLASH] = ACTIONS(3496), - [anon_sym_PERCENT] = ACTIONS(3496), - [anon_sym_LT] = ACTIONS(3498), - [anon_sym_GT] = ACTIONS(3498), - [anon_sym_EQ_EQ] = ACTIONS(3498), - [anon_sym_BANG_EQ] = ACTIONS(3498), - [anon_sym_LT_EQ] = ACTIONS(3498), - [anon_sym_GT_EQ] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_union] = ACTIONS(1649), - [anon_sym_pub] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(1649), - [anon_sym_enum] = ACTIONS(1649), - [anon_sym_interface] = ACTIONS(1649), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(1649), - [anon_sym_spawn] = ACTIONS(1649), - [anon_sym_json_DOTdecode] = ACTIONS(1649), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(1649), - [anon_sym_CARET] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3496), - [anon_sym_LT_DASH] = ACTIONS(1649), - [anon_sym_LT_LT] = ACTIONS(3496), - [anon_sym_GT_GT] = ACTIONS(3496), - [anon_sym_GT_GT_GT] = ACTIONS(3496), - [anon_sym_AMP_CARET] = ACTIONS(3496), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3514), - [anon_sym_or] = ACTIONS(3516), - [sym_none] = ACTIONS(1649), - [sym_true] = ACTIONS(1649), - [sym_false] = ACTIONS(1649), - [sym_nil] = ACTIONS(1649), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_DOLLARif] = ACTIONS(1649), - [anon_sym_is] = ACTIONS(3518), - [anon_sym_BANGis] = ACTIONS(3518), - [anon_sym_in] = ACTIONS(3520), - [anon_sym_BANGin] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(1649), - [anon_sym_select] = ACTIONS(1649), - [anon_sym_lock] = ACTIONS(1649), - [anon_sym_rlock] = ACTIONS(1649), - [anon_sym_unsafe] = ACTIONS(1649), - [anon_sym_sql] = ACTIONS(1649), - [sym_int_literal] = ACTIONS(1649), - [sym_float_literal] = ACTIONS(1649), - [sym_rune_literal] = ACTIONS(1649), - [sym_pseudo_compile_time_identifier] = ACTIONS(1649), - [anon_sym_shared] = ACTIONS(1649), - [anon_sym_map_LBRACK] = ACTIONS(1649), - [anon_sym_chan] = ACTIONS(1649), - [anon_sym_thread] = ACTIONS(1649), - [anon_sym_atomic] = ACTIONS(1649), - [anon_sym_assert] = ACTIONS(1649), - [anon_sym_defer] = ACTIONS(1649), - [anon_sym_goto] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_DOLLARfor] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_POUND] = ACTIONS(1649), - [anon_sym_asm] = ACTIONS(1649), - [anon_sym_AT_LBRACK] = ACTIONS(1649), - [sym___double_quote] = ACTIONS(1649), - [sym___single_quote] = ACTIONS(1649), - [sym___c_double_quote] = ACTIONS(1649), - [sym___c_single_quote] = ACTIONS(1649), - [sym___r_double_quote] = ACTIONS(1649), - [sym___r_single_quote] = ACTIONS(1649), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(1779), + [anon_sym_type] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(3498), + [anon_sym_fn] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_STAR] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_PERCENT] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(3502), + [anon_sym_GT] = ACTIONS(3502), + [anon_sym_EQ_EQ] = ACTIONS(3502), + [anon_sym_BANG_EQ] = ACTIONS(3502), + [anon_sym_LT_EQ] = ACTIONS(3502), + [anon_sym_GT_EQ] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1779), + [anon_sym_union] = ACTIONS(1779), + [anon_sym_pub] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_enum] = ACTIONS(1779), + [anon_sym_interface] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(1779), + [anon_sym_spawn] = ACTIONS(1779), + [anon_sym_json_DOTdecode] = ACTIONS(1779), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_CARET] = ACTIONS(3498), + [anon_sym_AMP] = ACTIONS(3500), + [anon_sym_LT_DASH] = ACTIONS(1779), + [anon_sym_LT_LT] = ACTIONS(3500), + [anon_sym_GT_GT] = ACTIONS(3500), + [anon_sym_GT_GT_GT] = ACTIONS(3500), + [anon_sym_AMP_CARET] = ACTIONS(3500), + [anon_sym_AMP_AMP] = ACTIONS(3516), + [anon_sym_PIPE_PIPE] = ACTIONS(3518), + [anon_sym_or] = ACTIONS(3520), + [sym_none] = ACTIONS(1779), + [sym_true] = ACTIONS(1779), + [sym_false] = ACTIONS(1779), + [sym_nil] = ACTIONS(1779), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1779), + [anon_sym_is] = ACTIONS(3522), + [anon_sym_BANGis] = ACTIONS(3522), + [anon_sym_in] = ACTIONS(3524), + [anon_sym_BANGin] = ACTIONS(3524), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_select] = ACTIONS(1779), + [anon_sym_lock] = ACTIONS(1779), + [anon_sym_rlock] = ACTIONS(1779), + [anon_sym_unsafe] = ACTIONS(1779), + [anon_sym_sql] = ACTIONS(1779), + [sym_int_literal] = ACTIONS(1779), + [sym_float_literal] = ACTIONS(1779), + [sym_rune_literal] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_c_SQUOTE] = ACTIONS(1779), + [anon_sym_c_DQUOTE] = ACTIONS(1779), + [anon_sym_r_SQUOTE] = ACTIONS(1779), + [anon_sym_r_DQUOTE] = ACTIONS(1779), + [sym_pseudo_compile_time_identifier] = ACTIONS(1779), + [anon_sym_shared] = ACTIONS(1779), + [anon_sym_map_LBRACK] = ACTIONS(1779), + [anon_sym_chan] = ACTIONS(1779), + [anon_sym_thread] = ACTIONS(1779), + [anon_sym_atomic] = ACTIONS(1779), + [anon_sym_assert] = ACTIONS(1779), + [anon_sym_defer] = ACTIONS(1779), + [anon_sym_goto] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_DOLLARfor] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1779), + [anon_sym_AT_LBRACK] = ACTIONS(1779), }, [955] = { [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym_identifier] = ACTIONS(1789), - [anon_sym_LF] = ACTIONS(1789), - [anon_sym_CR] = ACTIONS(1789), - [anon_sym_CR_LF] = ACTIONS(1789), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3528), + [anon_sym_LF] = ACTIONS(3528), + [anon_sym_CR] = ACTIONS(3528), + [anon_sym_CR_LF] = ACTIONS(3528), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(3488), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_const] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(1789), - [anon_sym_type] = ACTIONS(1789), - [anon_sym_PIPE] = ACTIONS(3494), - [anon_sym_fn] = ACTIONS(1789), - [anon_sym_PLUS] = ACTIONS(3494), - [anon_sym_DASH] = ACTIONS(3494), - [anon_sym_STAR] = ACTIONS(3496), - [anon_sym_SLASH] = ACTIONS(3496), - [anon_sym_PERCENT] = ACTIONS(3496), - [anon_sym_LT] = ACTIONS(3498), - [anon_sym_GT] = ACTIONS(3498), - [anon_sym_EQ_EQ] = ACTIONS(3498), - [anon_sym_BANG_EQ] = ACTIONS(3498), - [anon_sym_LT_EQ] = ACTIONS(3498), - [anon_sym_GT_EQ] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(1789), - [anon_sym_union] = ACTIONS(1789), - [anon_sym_pub] = ACTIONS(1789), - [anon_sym_mut] = ACTIONS(1789), - [anon_sym_enum] = ACTIONS(1789), - [anon_sym_interface] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(1789), - [anon_sym_spawn] = ACTIONS(1789), - [anon_sym_json_DOTdecode] = ACTIONS(1789), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_CARET] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3496), - [anon_sym_LT_DASH] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(3496), - [anon_sym_GT_GT] = ACTIONS(3496), - [anon_sym_GT_GT_GT] = ACTIONS(3496), - [anon_sym_AMP_CARET] = ACTIONS(3496), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3514), - [anon_sym_or] = ACTIONS(3516), - [sym_none] = ACTIONS(1789), - [sym_true] = ACTIONS(1789), - [sym_false] = ACTIONS(1789), - [sym_nil] = ACTIONS(1789), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1789), - [anon_sym_is] = ACTIONS(3524), - [anon_sym_BANGis] = ACTIONS(3524), - [anon_sym_in] = ACTIONS(3520), - [anon_sym_BANGin] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(1789), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1789), - [anon_sym_rlock] = ACTIONS(1789), - [anon_sym_unsafe] = ACTIONS(1789), - [anon_sym_sql] = ACTIONS(1789), - [sym_int_literal] = ACTIONS(1789), - [sym_float_literal] = ACTIONS(1789), - [sym_rune_literal] = ACTIONS(1789), - [sym_pseudo_compile_time_identifier] = ACTIONS(1789), - [anon_sym_shared] = ACTIONS(1789), - [anon_sym_map_LBRACK] = ACTIONS(1789), - [anon_sym_chan] = ACTIONS(1789), - [anon_sym_thread] = ACTIONS(1789), - [anon_sym_atomic] = ACTIONS(1789), - [anon_sym_assert] = ACTIONS(1789), - [anon_sym_defer] = ACTIONS(1789), - [anon_sym_goto] = ACTIONS(1789), - [anon_sym_break] = ACTIONS(1789), - [anon_sym_continue] = ACTIONS(1789), - [anon_sym_return] = ACTIONS(1789), - [anon_sym_DOLLARfor] = ACTIONS(1789), - [anon_sym_for] = ACTIONS(1789), - [anon_sym_POUND] = ACTIONS(1789), - [anon_sym_asm] = ACTIONS(1789), - [anon_sym_AT_LBRACK] = ACTIONS(1789), - [sym___double_quote] = ACTIONS(1789), - [sym___single_quote] = ACTIONS(1789), - [sym___c_double_quote] = ACTIONS(1789), - [sym___c_single_quote] = ACTIONS(1789), - [sym___r_double_quote] = ACTIONS(1789), - [sym___r_single_quote] = ACTIONS(1789), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(3528), + [anon_sym_COMMA] = ACTIONS(3530), + [anon_sym_const] = ACTIONS(3528), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(3528), + [anon_sym_type] = ACTIONS(3528), + [anon_sym_PIPE] = ACTIONS(3498), + [anon_sym_fn] = ACTIONS(3528), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_STAR] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_PERCENT] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(3502), + [anon_sym_GT] = ACTIONS(3502), + [anon_sym_EQ_EQ] = ACTIONS(3502), + [anon_sym_BANG_EQ] = ACTIONS(3502), + [anon_sym_LT_EQ] = ACTIONS(3502), + [anon_sym_GT_EQ] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(3528), + [anon_sym_union] = ACTIONS(3528), + [anon_sym_pub] = ACTIONS(3528), + [anon_sym_mut] = ACTIONS(3528), + [anon_sym_enum] = ACTIONS(3528), + [anon_sym_interface] = ACTIONS(3528), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(3528), + [anon_sym_spawn] = ACTIONS(3528), + [anon_sym_json_DOTdecode] = ACTIONS(3528), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(3528), + [anon_sym_CARET] = ACTIONS(3498), + [anon_sym_AMP] = ACTIONS(3500), + [anon_sym_LT_DASH] = ACTIONS(3528), + [anon_sym_LT_LT] = ACTIONS(3500), + [anon_sym_GT_GT] = ACTIONS(3500), + [anon_sym_GT_GT_GT] = ACTIONS(3500), + [anon_sym_AMP_CARET] = ACTIONS(3500), + [anon_sym_AMP_AMP] = ACTIONS(3516), + [anon_sym_PIPE_PIPE] = ACTIONS(3518), + [anon_sym_or] = ACTIONS(3520), + [sym_none] = ACTIONS(3528), + [sym_true] = ACTIONS(3528), + [sym_false] = ACTIONS(3528), + [sym_nil] = ACTIONS(3528), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(3528), + [anon_sym_DOLLARif] = ACTIONS(3528), + [anon_sym_is] = ACTIONS(3522), + [anon_sym_BANGis] = ACTIONS(3522), + [anon_sym_in] = ACTIONS(3524), + [anon_sym_BANGin] = ACTIONS(3524), + [anon_sym_match] = ACTIONS(3528), + [anon_sym_select] = ACTIONS(3528), + [anon_sym_lock] = ACTIONS(3528), + [anon_sym_rlock] = ACTIONS(3528), + [anon_sym_unsafe] = ACTIONS(3528), + [anon_sym_sql] = ACTIONS(3528), + [sym_int_literal] = ACTIONS(3528), + [sym_float_literal] = ACTIONS(3528), + [sym_rune_literal] = ACTIONS(3528), + [anon_sym_SQUOTE] = ACTIONS(3528), + [anon_sym_DQUOTE] = ACTIONS(3528), + [anon_sym_c_SQUOTE] = ACTIONS(3528), + [anon_sym_c_DQUOTE] = ACTIONS(3528), + [anon_sym_r_SQUOTE] = ACTIONS(3528), + [anon_sym_r_DQUOTE] = ACTIONS(3528), + [sym_pseudo_compile_time_identifier] = ACTIONS(3528), + [anon_sym_shared] = ACTIONS(3528), + [anon_sym_map_LBRACK] = ACTIONS(3528), + [anon_sym_chan] = ACTIONS(3528), + [anon_sym_thread] = ACTIONS(3528), + [anon_sym_atomic] = ACTIONS(3528), + [anon_sym_assert] = ACTIONS(3528), + [anon_sym_defer] = ACTIONS(3528), + [anon_sym_goto] = ACTIONS(3528), + [anon_sym_break] = ACTIONS(3528), + [anon_sym_continue] = ACTIONS(3528), + [anon_sym_return] = ACTIONS(3528), + [anon_sym_DOLLARfor] = ACTIONS(3528), + [anon_sym_for] = ACTIONS(3528), + [anon_sym_POUND] = ACTIONS(3528), + [anon_sym_asm] = ACTIONS(3528), + [anon_sym_AT_LBRACK] = ACTIONS(3528), }, [956] = { [sym_line_comment] = STATE(956), [sym_block_comment] = STATE(956), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(3498), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_STAR] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_PERCENT] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(3502), + [anon_sym_GT] = ACTIONS(3502), + [anon_sym_EQ_EQ] = ACTIONS(3502), + [anon_sym_BANG_EQ] = ACTIONS(3502), + [anon_sym_LT_EQ] = ACTIONS(3502), + [anon_sym_GT_EQ] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_pub] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(3498), + [anon_sym_AMP] = ACTIONS(3500), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(3500), + [anon_sym_GT_GT] = ACTIONS(3500), + [anon_sym_GT_GT_GT] = ACTIONS(3500), + [anon_sym_AMP_CARET] = ACTIONS(3500), + [anon_sym_AMP_AMP] = ACTIONS(3516), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(3524), + [anon_sym_BANGin] = ACTIONS(3524), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_assert] = ACTIONS(1791), + [anon_sym_defer] = ACTIONS(1791), + [anon_sym_goto] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_DOLLARfor] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_POUND] = ACTIONS(1791), + [anon_sym_asm] = ACTIONS(1791), + [anon_sym_AT_LBRACK] = ACTIONS(1791), + }, + [957] = { + [sym_line_comment] = STATE(957), + [sym_block_comment] = STATE(957), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(1767), + [sym_identifier] = ACTIONS(1769), + [anon_sym_LF] = ACTIONS(1769), + [anon_sym_CR] = ACTIONS(1769), + [anon_sym_CR_LF] = ACTIONS(1769), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_COMMA] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(1769), + [anon_sym_type] = ACTIONS(1769), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_fn] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_PERCENT] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_GT_EQ] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_pub] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_enum] = ACTIONS(1769), + [anon_sym_interface] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(1769), + [anon_sym_spawn] = ACTIONS(1769), + [anon_sym_json_DOTdecode] = ACTIONS(1769), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_LT_DASH] = ACTIONS(1769), + [anon_sym_LT_LT] = ACTIONS(1769), + [anon_sym_GT_GT] = ACTIONS(1769), + [anon_sym_GT_GT_GT] = ACTIONS(1769), + [anon_sym_AMP_CARET] = ACTIONS(1769), + [anon_sym_AMP_AMP] = ACTIONS(1769), + [anon_sym_PIPE_PIPE] = ACTIONS(1769), + [anon_sym_or] = ACTIONS(1769), + [sym_none] = ACTIONS(1769), + [sym_true] = ACTIONS(1769), + [sym_false] = ACTIONS(1769), + [sym_nil] = ACTIONS(1769), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1769), + [anon_sym_is] = ACTIONS(1769), + [anon_sym_BANGis] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_BANGin] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_select] = ACTIONS(1769), + [anon_sym_lock] = ACTIONS(1769), + [anon_sym_rlock] = ACTIONS(1769), + [anon_sym_unsafe] = ACTIONS(1769), + [anon_sym_sql] = ACTIONS(1769), + [sym_int_literal] = ACTIONS(1769), + [sym_float_literal] = ACTIONS(1769), + [sym_rune_literal] = ACTIONS(1769), + [anon_sym_SQUOTE] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [anon_sym_c_SQUOTE] = ACTIONS(1769), + [anon_sym_c_DQUOTE] = ACTIONS(1769), + [anon_sym_r_SQUOTE] = ACTIONS(1769), + [anon_sym_r_DQUOTE] = ACTIONS(1769), + [sym_pseudo_compile_time_identifier] = ACTIONS(1769), + [anon_sym_shared] = ACTIONS(1769), + [anon_sym_map_LBRACK] = ACTIONS(1769), + [anon_sym_chan] = ACTIONS(1769), + [anon_sym_thread] = ACTIONS(1769), + [anon_sym_atomic] = ACTIONS(1769), + [anon_sym_assert] = ACTIONS(1769), + [anon_sym_defer] = ACTIONS(1769), + [anon_sym_goto] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_DOLLARfor] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(1769), + [anon_sym_asm] = ACTIONS(1769), + [anon_sym_AT_LBRACK] = ACTIONS(1769), + }, + [958] = { + [sym_line_comment] = STATE(958), + [sym_block_comment] = STATE(958), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_LF] = ACTIONS(1787), + [anon_sym_CR] = ACTIONS(1787), + [anon_sym_CR_LF] = ACTIONS(1787), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_COMMA] = ACTIONS(1787), + [anon_sym_const] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(1787), + [anon_sym_type] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(3498), + [anon_sym_fn] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_STAR] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_PERCENT] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_EQ_EQ] = ACTIONS(1787), + [anon_sym_BANG_EQ] = ACTIONS(1787), + [anon_sym_LT_EQ] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1787), + [anon_sym_union] = ACTIONS(1787), + [anon_sym_pub] = ACTIONS(1787), + [anon_sym_mut] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1787), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(1787), + [anon_sym_spawn] = ACTIONS(1787), + [anon_sym_json_DOTdecode] = ACTIONS(1787), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(3498), + [anon_sym_AMP] = ACTIONS(3500), + [anon_sym_LT_DASH] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(3500), + [anon_sym_GT_GT] = ACTIONS(3500), + [anon_sym_GT_GT_GT] = ACTIONS(3500), + [anon_sym_AMP_CARET] = ACTIONS(3500), + [anon_sym_AMP_AMP] = ACTIONS(1787), + [anon_sym_PIPE_PIPE] = ACTIONS(1787), + [anon_sym_or] = ACTIONS(1787), + [sym_none] = ACTIONS(1787), + [sym_true] = ACTIONS(1787), + [sym_false] = ACTIONS(1787), + [sym_nil] = ACTIONS(1787), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_DOLLARif] = ACTIONS(1787), + [anon_sym_is] = ACTIONS(1787), + [anon_sym_BANGis] = ACTIONS(1787), + [anon_sym_in] = ACTIONS(1787), + [anon_sym_BANGin] = ACTIONS(1787), + [anon_sym_match] = ACTIONS(1787), + [anon_sym_select] = ACTIONS(1787), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1787), + [anon_sym_sql] = ACTIONS(1787), + [sym_int_literal] = ACTIONS(1787), + [sym_float_literal] = ACTIONS(1787), + [sym_rune_literal] = ACTIONS(1787), + [anon_sym_SQUOTE] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [anon_sym_c_SQUOTE] = ACTIONS(1787), + [anon_sym_c_DQUOTE] = ACTIONS(1787), + [anon_sym_r_SQUOTE] = ACTIONS(1787), + [anon_sym_r_DQUOTE] = ACTIONS(1787), + [sym_pseudo_compile_time_identifier] = ACTIONS(1787), + [anon_sym_shared] = ACTIONS(1787), + [anon_sym_map_LBRACK] = ACTIONS(1787), + [anon_sym_chan] = ACTIONS(1787), + [anon_sym_thread] = ACTIONS(1787), + [anon_sym_atomic] = ACTIONS(1787), + [anon_sym_assert] = ACTIONS(1787), + [anon_sym_defer] = ACTIONS(1787), + [anon_sym_goto] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_DOLLARfor] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1787), + [anon_sym_asm] = ACTIONS(1787), + [anon_sym_AT_LBRACK] = ACTIONS(1787), + }, + [959] = { + [sym_line_comment] = STATE(959), + [sym_block_comment] = STATE(959), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(1771), + [sym_identifier] = ACTIONS(1773), + [anon_sym_LF] = ACTIONS(1773), + [anon_sym_CR] = ACTIONS(1773), + [anon_sym_CR_LF] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_COMMA] = ACTIONS(1773), + [anon_sym_const] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(1773), + [anon_sym_type] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(3498), + [anon_sym_fn] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_STAR] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_PERCENT] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(3502), + [anon_sym_GT] = ACTIONS(3502), + [anon_sym_EQ_EQ] = ACTIONS(3502), + [anon_sym_BANG_EQ] = ACTIONS(3502), + [anon_sym_LT_EQ] = ACTIONS(3502), + [anon_sym_GT_EQ] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1773), + [anon_sym_union] = ACTIONS(1773), + [anon_sym_pub] = ACTIONS(1773), + [anon_sym_mut] = ACTIONS(1773), + [anon_sym_enum] = ACTIONS(1773), + [anon_sym_interface] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(1773), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1773), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(1773), + [anon_sym_CARET] = ACTIONS(3498), + [anon_sym_AMP] = ACTIONS(3500), + [anon_sym_LT_DASH] = ACTIONS(1773), + [anon_sym_LT_LT] = ACTIONS(3500), + [anon_sym_GT_GT] = ACTIONS(3500), + [anon_sym_GT_GT_GT] = ACTIONS(3500), + [anon_sym_AMP_CARET] = ACTIONS(3500), + [anon_sym_AMP_AMP] = ACTIONS(3516), + [anon_sym_PIPE_PIPE] = ACTIONS(3518), + [anon_sym_or] = ACTIONS(3520), + [sym_none] = ACTIONS(1773), + [sym_true] = ACTIONS(1773), + [sym_false] = ACTIONS(1773), + [sym_nil] = ACTIONS(1773), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_DOLLARif] = ACTIONS(1773), + [anon_sym_is] = ACTIONS(3532), + [anon_sym_BANGis] = ACTIONS(3532), + [anon_sym_in] = ACTIONS(3524), + [anon_sym_BANGin] = ACTIONS(3524), + [anon_sym_match] = ACTIONS(1773), + [anon_sym_select] = ACTIONS(1773), + [anon_sym_lock] = ACTIONS(1773), + [anon_sym_rlock] = ACTIONS(1773), + [anon_sym_unsafe] = ACTIONS(1773), + [anon_sym_sql] = ACTIONS(1773), + [sym_int_literal] = ACTIONS(1773), + [sym_float_literal] = ACTIONS(1773), + [sym_rune_literal] = ACTIONS(1773), + [anon_sym_SQUOTE] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [anon_sym_c_SQUOTE] = ACTIONS(1773), + [anon_sym_c_DQUOTE] = ACTIONS(1773), + [anon_sym_r_SQUOTE] = ACTIONS(1773), + [anon_sym_r_DQUOTE] = ACTIONS(1773), + [sym_pseudo_compile_time_identifier] = ACTIONS(1773), + [anon_sym_shared] = ACTIONS(1773), + [anon_sym_map_LBRACK] = ACTIONS(1773), + [anon_sym_chan] = ACTIONS(1773), + [anon_sym_thread] = ACTIONS(1773), + [anon_sym_atomic] = ACTIONS(1773), + [anon_sym_assert] = ACTIONS(1773), + [anon_sym_defer] = ACTIONS(1773), + [anon_sym_goto] = ACTIONS(1773), + [anon_sym_break] = ACTIONS(1773), + [anon_sym_continue] = ACTIONS(1773), + [anon_sym_return] = ACTIONS(1773), + [anon_sym_DOLLARfor] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1773), + [anon_sym_POUND] = ACTIONS(1773), + [anon_sym_asm] = ACTIONS(1773), + [anon_sym_AT_LBRACK] = ACTIONS(1773), + }, + [960] = { + [sym_line_comment] = STATE(960), + [sym_block_comment] = STATE(960), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), [ts_builtin_sym_end] = ACTIONS(1763), [sym_identifier] = ACTIONS(1765), [anon_sym_LF] = ACTIONS(1765), @@ -132804,65 +133200,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(3492), [anon_sym_LBRACE] = ACTIONS(1765), [anon_sym_COMMA] = ACTIONS(1765), [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(3496), [anon_sym___global] = ACTIONS(1765), [anon_sym_type] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(3494), + [anon_sym_PIPE] = ACTIONS(3498), [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3494), - [anon_sym_DASH] = ACTIONS(3494), - [anon_sym_STAR] = ACTIONS(3496), - [anon_sym_SLASH] = ACTIONS(3496), - [anon_sym_PERCENT] = ACTIONS(3496), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_STAR] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_PERCENT] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(3502), + [anon_sym_GT] = ACTIONS(3502), + [anon_sym_EQ_EQ] = ACTIONS(3502), + [anon_sym_BANG_EQ] = ACTIONS(3502), + [anon_sym_LT_EQ] = ACTIONS(3502), + [anon_sym_GT_EQ] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3504), [anon_sym_struct] = ACTIONS(1765), [anon_sym_union] = ACTIONS(1765), [anon_sym_pub] = ACTIONS(1765), [anon_sym_mut] = ACTIONS(1765), [anon_sym_enum] = ACTIONS(1765), [anon_sym_interface] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), [anon_sym_go] = ACTIONS(1765), [anon_sym_spawn] = ACTIONS(1765), [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_LBRACK2] = ACTIONS(3514), [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_CARET] = ACTIONS(3498), + [anon_sym_AMP] = ACTIONS(3500), [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(3496), - [anon_sym_GT_GT] = ACTIONS(3496), - [anon_sym_GT_GT_GT] = ACTIONS(3496), - [anon_sym_AMP_CARET] = ACTIONS(3496), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(3500), + [anon_sym_GT_GT] = ACTIONS(3500), + [anon_sym_GT_GT_GT] = ACTIONS(3500), + [anon_sym_AMP_CARET] = ACTIONS(3500), + [anon_sym_AMP_AMP] = ACTIONS(3516), + [anon_sym_PIPE_PIPE] = ACTIONS(3518), + [anon_sym_or] = ACTIONS(3520), [sym_none] = ACTIONS(1765), [sym_true] = ACTIONS(1765), [sym_false] = ACTIONS(1765), [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), [anon_sym_if] = ACTIONS(1765), [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_BANGin] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(3522), + [anon_sym_BANGis] = ACTIONS(3522), + [anon_sym_in] = ACTIONS(3524), + [anon_sym_BANGin] = ACTIONS(3524), [anon_sym_match] = ACTIONS(1765), [anon_sym_select] = ACTIONS(1765), [anon_sym_lock] = ACTIONS(1765), @@ -132872,6 +133268,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1765), [sym_float_literal] = ACTIONS(1765), [sym_rune_literal] = ACTIONS(1765), + [anon_sym_SQUOTE] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [anon_sym_c_SQUOTE] = ACTIONS(1765), + [anon_sym_c_DQUOTE] = ACTIONS(1765), + [anon_sym_r_SQUOTE] = ACTIONS(1765), + [anon_sym_r_DQUOTE] = ACTIONS(1765), [sym_pseudo_compile_time_identifier] = ACTIONS(1765), [anon_sym_shared] = ACTIONS(1765), [anon_sym_map_LBRACK] = ACTIONS(1765), @@ -132889,1067 +133291,641 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(1765), [anon_sym_asm] = ACTIONS(1765), [anon_sym_AT_LBRACK] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), }, - [957] = { - [sym_line_comment] = STATE(957), - [sym_block_comment] = STATE(957), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1765), - [anon_sym_CR] = ACTIONS(1765), - [anon_sym_CR_LF] = ACTIONS(1765), + [961] = { + [sym_line_comment] = STATE(961), + [sym_block_comment] = STATE(961), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(1781), + [sym_identifier] = ACTIONS(1783), + [anon_sym_LF] = ACTIONS(1783), + [anon_sym_CR] = ACTIONS(1783), + [anon_sym_CR_LF] = ACTIONS(1783), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_SLASH] = ACTIONS(1765), - [anon_sym_PERCENT] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1765), - [anon_sym_pub] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [anon_sym_interface] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1765), - [anon_sym_GT_GT_GT] = ACTIONS(1765), - [anon_sym_AMP_CARET] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_BANGin] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1765), - [sym_rune_literal] = ACTIONS(1765), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1765), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [anon_sym_assert] = ACTIONS(1765), - [anon_sym_defer] = ACTIONS(1765), - [anon_sym_goto] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_DOLLARfor] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(1765), - [anon_sym_asm] = ACTIONS(1765), - [anon_sym_AT_LBRACK] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), - }, - [958] = { - [sym_line_comment] = STATE(958), - [sym_block_comment] = STATE(958), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1765), - [anon_sym_CR] = ACTIONS(1765), - [anon_sym_CR_LF] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(3494), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3494), - [anon_sym_DASH] = ACTIONS(3494), - [anon_sym_STAR] = ACTIONS(3496), - [anon_sym_SLASH] = ACTIONS(3496), - [anon_sym_PERCENT] = ACTIONS(3496), - [anon_sym_LT] = ACTIONS(3498), - [anon_sym_GT] = ACTIONS(3498), - [anon_sym_EQ_EQ] = ACTIONS(3498), - [anon_sym_BANG_EQ] = ACTIONS(3498), - [anon_sym_LT_EQ] = ACTIONS(3498), - [anon_sym_GT_EQ] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1765), - [anon_sym_pub] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [anon_sym_interface] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3496), - [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(3496), - [anon_sym_GT_GT] = ACTIONS(3496), - [anon_sym_GT_GT_GT] = ACTIONS(3496), - [anon_sym_AMP_CARET] = ACTIONS(3496), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(3520), - [anon_sym_BANGin] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1765), - [sym_rune_literal] = ACTIONS(1765), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1765), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [anon_sym_assert] = ACTIONS(1765), - [anon_sym_defer] = ACTIONS(1765), - [anon_sym_goto] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_DOLLARfor] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(1765), - [anon_sym_asm] = ACTIONS(1765), - [anon_sym_AT_LBRACK] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), - }, - [959] = { - [sym_line_comment] = STATE(959), - [sym_block_comment] = STATE(959), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1765), - [anon_sym_CR] = ACTIONS(1765), - [anon_sym_CR_LF] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(3494), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3494), - [anon_sym_DASH] = ACTIONS(3494), - [anon_sym_STAR] = ACTIONS(3496), - [anon_sym_SLASH] = ACTIONS(3496), - [anon_sym_PERCENT] = ACTIONS(3496), - [anon_sym_LT] = ACTIONS(3498), - [anon_sym_GT] = ACTIONS(3498), - [anon_sym_EQ_EQ] = ACTIONS(3498), - [anon_sym_BANG_EQ] = ACTIONS(3498), - [anon_sym_LT_EQ] = ACTIONS(3498), - [anon_sym_GT_EQ] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1765), - [anon_sym_pub] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [anon_sym_interface] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3496), - [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(3496), - [anon_sym_GT_GT] = ACTIONS(3496), - [anon_sym_GT_GT_GT] = ACTIONS(3496), - [anon_sym_AMP_CARET] = ACTIONS(3496), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(3520), - [anon_sym_BANGin] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1765), - [sym_rune_literal] = ACTIONS(1765), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1765), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [anon_sym_assert] = ACTIONS(1765), - [anon_sym_defer] = ACTIONS(1765), - [anon_sym_goto] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_DOLLARfor] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(1765), - [anon_sym_asm] = ACTIONS(1765), - [anon_sym_AT_LBRACK] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), - }, - [960] = { - [sym_line_comment] = STATE(960), - [sym_block_comment] = STATE(960), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(1779), - [sym_identifier] = ACTIONS(1781), - [anon_sym_LF] = ACTIONS(1781), - [anon_sym_CR] = ACTIONS(1781), - [anon_sym_CR_LF] = ACTIONS(1781), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_COMMA] = ACTIONS(1781), - [anon_sym_const] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(1781), - [anon_sym_type] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(3494), - [anon_sym_fn] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(3494), - [anon_sym_DASH] = ACTIONS(3494), - [anon_sym_STAR] = ACTIONS(3496), - [anon_sym_SLASH] = ACTIONS(3496), - [anon_sym_PERCENT] = ACTIONS(3496), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_EQ_EQ] = ACTIONS(1781), - [anon_sym_BANG_EQ] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(1781), - [anon_sym_union] = ACTIONS(1781), - [anon_sym_pub] = ACTIONS(1781), - [anon_sym_mut] = ACTIONS(1781), - [anon_sym_enum] = ACTIONS(1781), - [anon_sym_interface] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1781), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_CARET] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3496), - [anon_sym_LT_DASH] = ACTIONS(1781), - [anon_sym_LT_LT] = ACTIONS(3496), - [anon_sym_GT_GT] = ACTIONS(3496), - [anon_sym_GT_GT_GT] = ACTIONS(3496), - [anon_sym_AMP_CARET] = ACTIONS(3496), - [anon_sym_AMP_AMP] = ACTIONS(1781), - [anon_sym_PIPE_PIPE] = ACTIONS(1781), - [anon_sym_or] = ACTIONS(1781), - [sym_none] = ACTIONS(1781), - [sym_true] = ACTIONS(1781), - [sym_false] = ACTIONS(1781), - [sym_nil] = ACTIONS(1781), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_DOLLARif] = ACTIONS(1781), - [anon_sym_is] = ACTIONS(1781), - [anon_sym_BANGis] = ACTIONS(1781), - [anon_sym_in] = ACTIONS(1781), - [anon_sym_BANGin] = ACTIONS(1781), - [anon_sym_match] = ACTIONS(1781), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1781), - [anon_sym_rlock] = ACTIONS(1781), - [anon_sym_unsafe] = ACTIONS(1781), - [anon_sym_sql] = ACTIONS(1781), - [sym_int_literal] = ACTIONS(1781), - [sym_float_literal] = ACTIONS(1781), - [sym_rune_literal] = ACTIONS(1781), - [sym_pseudo_compile_time_identifier] = ACTIONS(1781), - [anon_sym_shared] = ACTIONS(1781), - [anon_sym_map_LBRACK] = ACTIONS(1781), - [anon_sym_chan] = ACTIONS(1781), - [anon_sym_thread] = ACTIONS(1781), - [anon_sym_atomic] = ACTIONS(1781), - [anon_sym_assert] = ACTIONS(1781), - [anon_sym_defer] = ACTIONS(1781), - [anon_sym_goto] = ACTIONS(1781), - [anon_sym_break] = ACTIONS(1781), - [anon_sym_continue] = ACTIONS(1781), - [anon_sym_return] = ACTIONS(1781), - [anon_sym_DOLLARfor] = ACTIONS(1781), - [anon_sym_for] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(1781), - [anon_sym_asm] = ACTIONS(1781), - [anon_sym_AT_LBRACK] = ACTIONS(1781), - [sym___double_quote] = ACTIONS(1781), - [sym___single_quote] = ACTIONS(1781), - [sym___c_double_quote] = ACTIONS(1781), - [sym___c_single_quote] = ACTIONS(1781), - [sym___r_double_quote] = ACTIONS(1781), - [sym___r_single_quote] = ACTIONS(1781), - }, - [961] = { - [sym_line_comment] = STATE(961), - [sym_block_comment] = STATE(961), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_SLASH] = ACTIONS(1785), - [anon_sym_PERCENT] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_pub] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(1785), - [anon_sym_GT_GT] = ACTIONS(1785), - [anon_sym_GT_GT_GT] = ACTIONS(1785), - [anon_sym_AMP_CARET] = ACTIONS(1785), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_BANGin] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [anon_sym_assert] = ACTIONS(1785), - [anon_sym_defer] = ACTIONS(1785), - [anon_sym_goto] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_DOLLARfor] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_POUND] = ACTIONS(1785), - [anon_sym_asm] = ACTIONS(1785), - [anon_sym_AT_LBRACK] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(1783), + [anon_sym_type] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_fn] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_PERCENT] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_EQ_EQ] = ACTIONS(1783), + [anon_sym_BANG_EQ] = ACTIONS(1783), + [anon_sym_LT_EQ] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1783), + [anon_sym_union] = ACTIONS(1783), + [anon_sym_pub] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_enum] = ACTIONS(1783), + [anon_sym_interface] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(1783), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1783), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_LT_DASH] = ACTIONS(1783), + [anon_sym_LT_LT] = ACTIONS(1783), + [anon_sym_GT_GT] = ACTIONS(1783), + [anon_sym_GT_GT_GT] = ACTIONS(1783), + [anon_sym_AMP_CARET] = ACTIONS(1783), + [anon_sym_AMP_AMP] = ACTIONS(1783), + [anon_sym_PIPE_PIPE] = ACTIONS(1783), + [anon_sym_or] = ACTIONS(1783), + [sym_none] = ACTIONS(1783), + [sym_true] = ACTIONS(1783), + [sym_false] = ACTIONS(1783), + [sym_nil] = ACTIONS(1783), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1783), + [anon_sym_is] = ACTIONS(1783), + [anon_sym_BANGis] = ACTIONS(1783), + [anon_sym_in] = ACTIONS(1783), + [anon_sym_BANGin] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_select] = ACTIONS(1783), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1783), + [anon_sym_sql] = ACTIONS(1783), + [sym_int_literal] = ACTIONS(1783), + [sym_float_literal] = ACTIONS(1783), + [sym_rune_literal] = ACTIONS(1783), + [anon_sym_SQUOTE] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1783), + [anon_sym_c_SQUOTE] = ACTIONS(1783), + [anon_sym_c_DQUOTE] = ACTIONS(1783), + [anon_sym_r_SQUOTE] = ACTIONS(1783), + [anon_sym_r_DQUOTE] = ACTIONS(1783), + [sym_pseudo_compile_time_identifier] = ACTIONS(1783), + [anon_sym_shared] = ACTIONS(1783), + [anon_sym_map_LBRACK] = ACTIONS(1783), + [anon_sym_chan] = ACTIONS(1783), + [anon_sym_thread] = ACTIONS(1783), + [anon_sym_atomic] = ACTIONS(1783), + [anon_sym_assert] = ACTIONS(1783), + [anon_sym_defer] = ACTIONS(1783), + [anon_sym_goto] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_DOLLARfor] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(1783), + [anon_sym_asm] = ACTIONS(1783), + [anon_sym_AT_LBRACK] = ACTIONS(1783), }, [962] = { [sym_line_comment] = STATE(962), [sym_block_comment] = STATE(962), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(1771), - [sym_identifier] = ACTIONS(1773), - [anon_sym_LF] = ACTIONS(1773), - [anon_sym_CR] = ACTIONS(1773), - [anon_sym_CR_LF] = ACTIONS(1773), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(3534), + [sym_identifier] = ACTIONS(1759), + [anon_sym_LF] = ACTIONS(1759), + [anon_sym_CR] = ACTIONS(1759), + [anon_sym_CR_LF] = ACTIONS(1759), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(3488), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_COMMA] = ACTIONS(1773), - [anon_sym_const] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(1773), - [anon_sym_type] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(3494), - [anon_sym_fn] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(3494), - [anon_sym_DASH] = ACTIONS(3494), - [anon_sym_STAR] = ACTIONS(3496), - [anon_sym_SLASH] = ACTIONS(3496), - [anon_sym_PERCENT] = ACTIONS(3496), - [anon_sym_LT] = ACTIONS(3498), - [anon_sym_GT] = ACTIONS(3498), - [anon_sym_EQ_EQ] = ACTIONS(3498), - [anon_sym_BANG_EQ] = ACTIONS(3498), - [anon_sym_LT_EQ] = ACTIONS(3498), - [anon_sym_GT_EQ] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_union] = ACTIONS(1773), - [anon_sym_pub] = ACTIONS(1773), - [anon_sym_mut] = ACTIONS(1773), - [anon_sym_enum] = ACTIONS(1773), - [anon_sym_interface] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(1773), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1773), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3496), - [anon_sym_LT_DASH] = ACTIONS(1773), - [anon_sym_LT_LT] = ACTIONS(3496), - [anon_sym_GT_GT] = ACTIONS(3496), - [anon_sym_GT_GT_GT] = ACTIONS(3496), - [anon_sym_AMP_CARET] = ACTIONS(3496), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3514), - [anon_sym_or] = ACTIONS(3516), - [sym_none] = ACTIONS(1773), - [sym_true] = ACTIONS(1773), - [sym_false] = ACTIONS(1773), - [sym_nil] = ACTIONS(1773), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_DOLLARif] = ACTIONS(1773), - [anon_sym_is] = ACTIONS(3518), - [anon_sym_BANGis] = ACTIONS(3518), - [anon_sym_in] = ACTIONS(3520), - [anon_sym_BANGin] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(1773), - [anon_sym_select] = ACTIONS(1773), - [anon_sym_lock] = ACTIONS(1773), - [anon_sym_rlock] = ACTIONS(1773), - [anon_sym_unsafe] = ACTIONS(1773), - [anon_sym_sql] = ACTIONS(1773), - [sym_int_literal] = ACTIONS(1773), - [sym_float_literal] = ACTIONS(1773), - [sym_rune_literal] = ACTIONS(1773), - [sym_pseudo_compile_time_identifier] = ACTIONS(1773), - [anon_sym_shared] = ACTIONS(1773), - [anon_sym_map_LBRACK] = ACTIONS(1773), - [anon_sym_chan] = ACTIONS(1773), - [anon_sym_thread] = ACTIONS(1773), - [anon_sym_atomic] = ACTIONS(1773), - [anon_sym_assert] = ACTIONS(1773), - [anon_sym_defer] = ACTIONS(1773), - [anon_sym_goto] = ACTIONS(1773), - [anon_sym_break] = ACTIONS(1773), - [anon_sym_continue] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(1773), - [anon_sym_DOLLARfor] = ACTIONS(1773), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_POUND] = ACTIONS(1773), - [anon_sym_asm] = ACTIONS(1773), - [anon_sym_AT_LBRACK] = ACTIONS(1773), - [sym___double_quote] = ACTIONS(1773), - [sym___single_quote] = ACTIONS(1773), - [sym___c_double_quote] = ACTIONS(1773), - [sym___c_single_quote] = ACTIONS(1773), - [sym___r_double_quote] = ACTIONS(1773), - [sym___r_single_quote] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_COMMA] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_PIPE] = ACTIONS(3498), + [anon_sym_fn] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_STAR] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_PERCENT] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(3502), + [anon_sym_GT] = ACTIONS(3502), + [anon_sym_EQ_EQ] = ACTIONS(3502), + [anon_sym_BANG_EQ] = ACTIONS(3502), + [anon_sym_LT_EQ] = ACTIONS(3502), + [anon_sym_GT_EQ] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1759), + [anon_sym_union] = ACTIONS(1759), + [anon_sym_pub] = ACTIONS(1759), + [anon_sym_mut] = ACTIONS(1759), + [anon_sym_enum] = ACTIONS(1759), + [anon_sym_interface] = ACTIONS(1759), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(1759), + [anon_sym_spawn] = ACTIONS(1759), + [anon_sym_json_DOTdecode] = ACTIONS(1759), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_CARET] = ACTIONS(3498), + [anon_sym_AMP] = ACTIONS(3500), + [anon_sym_LT_DASH] = ACTIONS(1759), + [anon_sym_LT_LT] = ACTIONS(3500), + [anon_sym_GT_GT] = ACTIONS(3500), + [anon_sym_GT_GT_GT] = ACTIONS(3500), + [anon_sym_AMP_CARET] = ACTIONS(3500), + [anon_sym_AMP_AMP] = ACTIONS(3516), + [anon_sym_PIPE_PIPE] = ACTIONS(3518), + [anon_sym_or] = ACTIONS(3520), + [sym_none] = ACTIONS(1759), + [sym_true] = ACTIONS(1759), + [sym_false] = ACTIONS(1759), + [sym_nil] = ACTIONS(1759), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_DOLLARif] = ACTIONS(1759), + [anon_sym_is] = ACTIONS(3522), + [anon_sym_BANGis] = ACTIONS(3522), + [anon_sym_in] = ACTIONS(3524), + [anon_sym_BANGin] = ACTIONS(3524), + [anon_sym_match] = ACTIONS(1759), + [anon_sym_select] = ACTIONS(1759), + [anon_sym_lock] = ACTIONS(1759), + [anon_sym_rlock] = ACTIONS(1759), + [anon_sym_unsafe] = ACTIONS(1759), + [anon_sym_sql] = ACTIONS(1759), + [sym_int_literal] = ACTIONS(1759), + [sym_float_literal] = ACTIONS(1759), + [sym_rune_literal] = ACTIONS(1759), + [anon_sym_SQUOTE] = ACTIONS(1759), + [anon_sym_DQUOTE] = ACTIONS(1759), + [anon_sym_c_SQUOTE] = ACTIONS(1759), + [anon_sym_c_DQUOTE] = ACTIONS(1759), + [anon_sym_r_SQUOTE] = ACTIONS(1759), + [anon_sym_r_DQUOTE] = ACTIONS(1759), + [sym_pseudo_compile_time_identifier] = ACTIONS(1759), + [anon_sym_shared] = ACTIONS(1759), + [anon_sym_map_LBRACK] = ACTIONS(1759), + [anon_sym_chan] = ACTIONS(1759), + [anon_sym_thread] = ACTIONS(1759), + [anon_sym_atomic] = ACTIONS(1759), + [anon_sym_assert] = ACTIONS(1759), + [anon_sym_defer] = ACTIONS(1759), + [anon_sym_goto] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_DOLLARfor] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_POUND] = ACTIONS(1759), + [anon_sym_asm] = ACTIONS(1759), + [anon_sym_AT_LBRACK] = ACTIONS(1759), }, [963] = { [sym_line_comment] = STATE(963), [sym_block_comment] = STATE(963), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1765), - [anon_sym_CR] = ACTIONS(1765), - [anon_sym_CR_LF] = ACTIONS(1765), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(3496), - [anon_sym_SLASH] = ACTIONS(3496), - [anon_sym_PERCENT] = ACTIONS(3496), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1765), - [anon_sym_pub] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [anon_sym_interface] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(3496), - [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(3496), - [anon_sym_GT_GT] = ACTIONS(3496), - [anon_sym_GT_GT_GT] = ACTIONS(3496), - [anon_sym_AMP_CARET] = ACTIONS(3496), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_BANGin] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1765), - [sym_rune_literal] = ACTIONS(1765), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1765), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [anon_sym_assert] = ACTIONS(1765), - [anon_sym_defer] = ACTIONS(1765), - [anon_sym_goto] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_DOLLARfor] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(1765), - [anon_sym_asm] = ACTIONS(1765), - [anon_sym_AT_LBRACK] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(1791), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_PERCENT] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_EQ] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_pub] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(3500), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(3500), + [anon_sym_GT_GT] = ACTIONS(3500), + [anon_sym_GT_GT_GT] = ACTIONS(3500), + [anon_sym_AMP_CARET] = ACTIONS(3500), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_BANGin] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_assert] = ACTIONS(1791), + [anon_sym_defer] = ACTIONS(1791), + [anon_sym_goto] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_DOLLARfor] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_POUND] = ACTIONS(1791), + [anon_sym_asm] = ACTIONS(1791), + [anon_sym_AT_LBRACK] = ACTIONS(1791), }, [964] = { [sym_line_comment] = STATE(964), [sym_block_comment] = STATE(964), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(3526), - [sym_identifier] = ACTIONS(3528), - [anon_sym_LF] = ACTIONS(3528), - [anon_sym_CR] = ACTIONS(3528), - [anon_sym_CR_LF] = ACTIONS(3528), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(3488), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_COMMA] = ACTIONS(3530), - [anon_sym_const] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(3528), - [anon_sym_type] = ACTIONS(3528), - [anon_sym_PIPE] = ACTIONS(3494), - [anon_sym_fn] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3494), - [anon_sym_DASH] = ACTIONS(3494), - [anon_sym_STAR] = ACTIONS(3496), - [anon_sym_SLASH] = ACTIONS(3496), - [anon_sym_PERCENT] = ACTIONS(3496), - [anon_sym_LT] = ACTIONS(3498), - [anon_sym_GT] = ACTIONS(3498), - [anon_sym_EQ_EQ] = ACTIONS(3498), - [anon_sym_BANG_EQ] = ACTIONS(3498), - [anon_sym_LT_EQ] = ACTIONS(3498), - [anon_sym_GT_EQ] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(3528), - [anon_sym_union] = ACTIONS(3528), - [anon_sym_pub] = ACTIONS(3528), - [anon_sym_mut] = ACTIONS(3528), - [anon_sym_enum] = ACTIONS(3528), - [anon_sym_interface] = ACTIONS(3528), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(3528), - [anon_sym_spawn] = ACTIONS(3528), - [anon_sym_json_DOTdecode] = ACTIONS(3528), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(3528), - [anon_sym_CARET] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3496), - [anon_sym_LT_DASH] = ACTIONS(3528), - [anon_sym_LT_LT] = ACTIONS(3496), - [anon_sym_GT_GT] = ACTIONS(3496), - [anon_sym_GT_GT_GT] = ACTIONS(3496), - [anon_sym_AMP_CARET] = ACTIONS(3496), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3514), - [anon_sym_or] = ACTIONS(3516), - [sym_none] = ACTIONS(3528), - [sym_true] = ACTIONS(3528), - [sym_false] = ACTIONS(3528), - [sym_nil] = ACTIONS(3528), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_DOLLARif] = ACTIONS(3528), - [anon_sym_is] = ACTIONS(3518), - [anon_sym_BANGis] = ACTIONS(3518), - [anon_sym_in] = ACTIONS(3520), - [anon_sym_BANGin] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(3528), - [anon_sym_select] = ACTIONS(3528), - [anon_sym_lock] = ACTIONS(3528), - [anon_sym_rlock] = ACTIONS(3528), - [anon_sym_unsafe] = ACTIONS(3528), - [anon_sym_sql] = ACTIONS(3528), - [sym_int_literal] = ACTIONS(3528), - [sym_float_literal] = ACTIONS(3528), - [sym_rune_literal] = ACTIONS(3528), - [sym_pseudo_compile_time_identifier] = ACTIONS(3528), - [anon_sym_shared] = ACTIONS(3528), - [anon_sym_map_LBRACK] = ACTIONS(3528), - [anon_sym_chan] = ACTIONS(3528), - [anon_sym_thread] = ACTIONS(3528), - [anon_sym_atomic] = ACTIONS(3528), - [anon_sym_assert] = ACTIONS(3528), - [anon_sym_defer] = ACTIONS(3528), - [anon_sym_goto] = ACTIONS(3528), - [anon_sym_break] = ACTIONS(3528), - [anon_sym_continue] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_DOLLARfor] = ACTIONS(3528), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_POUND] = ACTIONS(3528), - [anon_sym_asm] = ACTIONS(3528), - [anon_sym_AT_LBRACK] = ACTIONS(3528), - [sym___double_quote] = ACTIONS(3528), - [sym___single_quote] = ACTIONS(3528), - [sym___c_double_quote] = ACTIONS(3528), - [sym___c_single_quote] = ACTIONS(3528), - [sym___r_double_quote] = ACTIONS(3528), - [sym___r_single_quote] = ACTIONS(3528), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(3498), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_STAR] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_PERCENT] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(3502), + [anon_sym_GT] = ACTIONS(3502), + [anon_sym_EQ_EQ] = ACTIONS(3502), + [anon_sym_BANG_EQ] = ACTIONS(3502), + [anon_sym_LT_EQ] = ACTIONS(3502), + [anon_sym_GT_EQ] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_pub] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(3498), + [anon_sym_AMP] = ACTIONS(3500), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(3500), + [anon_sym_GT_GT] = ACTIONS(3500), + [anon_sym_GT_GT_GT] = ACTIONS(3500), + [anon_sym_AMP_CARET] = ACTIONS(3500), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(3524), + [anon_sym_BANGin] = ACTIONS(3524), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_assert] = ACTIONS(1791), + [anon_sym_defer] = ACTIONS(1791), + [anon_sym_goto] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_DOLLARfor] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_POUND] = ACTIONS(1791), + [anon_sym_asm] = ACTIONS(1791), + [anon_sym_AT_LBRACK] = ACTIONS(1791), }, [965] = { [sym_line_comment] = STATE(965), [sym_block_comment] = STATE(965), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_LF] = ACTIONS(1769), - [anon_sym_CR] = ACTIONS(1769), - [anon_sym_CR_LF] = ACTIONS(1769), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_COMMA] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_fn] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1769), - [anon_sym_SLASH] = ACTIONS(1769), - [anon_sym_PERCENT] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_EQ] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_union] = ACTIONS(1769), - [anon_sym_pub] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [anon_sym_interface] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(1769), - [anon_sym_spawn] = ACTIONS(1769), - [anon_sym_json_DOTdecode] = ACTIONS(1769), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_CARET] = ACTIONS(1769), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_LT_DASH] = ACTIONS(1769), - [anon_sym_LT_LT] = ACTIONS(1769), - [anon_sym_GT_GT] = ACTIONS(1769), - [anon_sym_GT_GT_GT] = ACTIONS(1769), - [anon_sym_AMP_CARET] = ACTIONS(1769), - [anon_sym_AMP_AMP] = ACTIONS(1769), - [anon_sym_PIPE_PIPE] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [sym_none] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_nil] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_DOLLARif] = ACTIONS(1769), - [anon_sym_is] = ACTIONS(1769), - [anon_sym_BANGis] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_BANGin] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_select] = ACTIONS(1769), - [anon_sym_lock] = ACTIONS(1769), - [anon_sym_rlock] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_sql] = ACTIONS(1769), - [sym_int_literal] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1769), - [sym_rune_literal] = ACTIONS(1769), - [sym_pseudo_compile_time_identifier] = ACTIONS(1769), - [anon_sym_shared] = ACTIONS(1769), - [anon_sym_map_LBRACK] = ACTIONS(1769), - [anon_sym_chan] = ACTIONS(1769), - [anon_sym_thread] = ACTIONS(1769), - [anon_sym_atomic] = ACTIONS(1769), - [anon_sym_assert] = ACTIONS(1769), - [anon_sym_defer] = ACTIONS(1769), - [anon_sym_goto] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_DOLLARfor] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(1769), - [anon_sym_asm] = ACTIONS(1769), - [anon_sym_AT_LBRACK] = ACTIONS(1769), - [sym___double_quote] = ACTIONS(1769), - [sym___single_quote] = ACTIONS(1769), - [sym___c_double_quote] = ACTIONS(1769), - [sym___c_single_quote] = ACTIONS(1769), - [sym___r_double_quote] = ACTIONS(1769), - [sym___r_single_quote] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(1791), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1791), + [anon_sym_SLASH] = ACTIONS(1791), + [anon_sym_PERCENT] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_EQ] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_pub] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(1791), + [anon_sym_GT_GT] = ACTIONS(1791), + [anon_sym_GT_GT_GT] = ACTIONS(1791), + [anon_sym_AMP_CARET] = ACTIONS(1791), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_BANGin] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_assert] = ACTIONS(1791), + [anon_sym_defer] = ACTIONS(1791), + [anon_sym_goto] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_DOLLARfor] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_POUND] = ACTIONS(1791), + [anon_sym_asm] = ACTIONS(1791), + [anon_sym_AT_LBRACK] = ACTIONS(1791), }, [966] = { [sym_line_comment] = STATE(966), [sym_block_comment] = STATE(966), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(1793), - [sym_identifier] = ACTIONS(1795), - [anon_sym_LF] = ACTIONS(1795), - [anon_sym_CR] = ACTIONS(1795), - [anon_sym_CR_LF] = ACTIONS(1795), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(3488), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_COMMA] = ACTIONS(1795), - [anon_sym_const] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(1795), - [anon_sym_type] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(3494), - [anon_sym_fn] = ACTIONS(1795), - [anon_sym_PLUS] = ACTIONS(3494), - [anon_sym_DASH] = ACTIONS(3494), - [anon_sym_STAR] = ACTIONS(3496), - [anon_sym_SLASH] = ACTIONS(3496), - [anon_sym_PERCENT] = ACTIONS(3496), - [anon_sym_LT] = ACTIONS(3498), - [anon_sym_GT] = ACTIONS(3498), - [anon_sym_EQ_EQ] = ACTIONS(3498), - [anon_sym_BANG_EQ] = ACTIONS(3498), - [anon_sym_LT_EQ] = ACTIONS(3498), - [anon_sym_GT_EQ] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(1795), - [anon_sym_union] = ACTIONS(1795), - [anon_sym_pub] = ACTIONS(1795), - [anon_sym_mut] = ACTIONS(1795), - [anon_sym_enum] = ACTIONS(1795), - [anon_sym_interface] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(1795), - [anon_sym_spawn] = ACTIONS(1795), - [anon_sym_json_DOTdecode] = ACTIONS(1795), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_CARET] = ACTIONS(3494), - [anon_sym_AMP] = ACTIONS(3496), - [anon_sym_LT_DASH] = ACTIONS(1795), - [anon_sym_LT_LT] = ACTIONS(3496), - [anon_sym_GT_GT] = ACTIONS(3496), - [anon_sym_GT_GT_GT] = ACTIONS(3496), - [anon_sym_AMP_CARET] = ACTIONS(3496), - [anon_sym_AMP_AMP] = ACTIONS(3512), - [anon_sym_PIPE_PIPE] = ACTIONS(3514), - [anon_sym_or] = ACTIONS(3516), - [sym_none] = ACTIONS(1795), - [sym_true] = ACTIONS(1795), - [sym_false] = ACTIONS(1795), - [sym_nil] = ACTIONS(1795), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(1795), - [anon_sym_DOLLARif] = ACTIONS(1795), - [anon_sym_is] = ACTIONS(3518), - [anon_sym_BANGis] = ACTIONS(3518), - [anon_sym_in] = ACTIONS(3520), - [anon_sym_BANGin] = ACTIONS(3520), - [anon_sym_match] = ACTIONS(1795), - [anon_sym_select] = ACTIONS(1795), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1795), - [anon_sym_sql] = ACTIONS(1795), - [sym_int_literal] = ACTIONS(1795), - [sym_float_literal] = ACTIONS(1795), - [sym_rune_literal] = ACTIONS(1795), - [sym_pseudo_compile_time_identifier] = ACTIONS(1795), - [anon_sym_shared] = ACTIONS(1795), - [anon_sym_map_LBRACK] = ACTIONS(1795), - [anon_sym_chan] = ACTIONS(1795), - [anon_sym_thread] = ACTIONS(1795), - [anon_sym_atomic] = ACTIONS(1795), - [anon_sym_assert] = ACTIONS(1795), - [anon_sym_defer] = ACTIONS(1795), - [anon_sym_goto] = ACTIONS(1795), - [anon_sym_break] = ACTIONS(1795), - [anon_sym_continue] = ACTIONS(1795), - [anon_sym_return] = ACTIONS(1795), - [anon_sym_DOLLARfor] = ACTIONS(1795), - [anon_sym_for] = ACTIONS(1795), - [anon_sym_POUND] = ACTIONS(1795), - [anon_sym_asm] = ACTIONS(1795), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [sym___double_quote] = ACTIONS(1795), - [sym___single_quote] = ACTIONS(1795), - [sym___c_double_quote] = ACTIONS(1795), - [sym___c_single_quote] = ACTIONS(1795), - [sym___r_double_quote] = ACTIONS(1795), - [sym___r_single_quote] = ACTIONS(1795), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(3498), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_STAR] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_PERCENT] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_EQ] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_pub] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(3498), + [anon_sym_AMP] = ACTIONS(3500), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(3500), + [anon_sym_GT_GT] = ACTIONS(3500), + [anon_sym_GT_GT_GT] = ACTIONS(3500), + [anon_sym_AMP_CARET] = ACTIONS(3500), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_BANGin] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_assert] = ACTIONS(1791), + [anon_sym_defer] = ACTIONS(1791), + [anon_sym_goto] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_DOLLARfor] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_POUND] = ACTIONS(1791), + [anon_sym_asm] = ACTIONS(1791), + [anon_sym_AT_LBRACK] = ACTIONS(1791), }, [967] = { [sym_line_comment] = STATE(967), [sym_block_comment] = STATE(967), - [sym_else_branch] = STATE(1008), + [sym_else_branch] = STATE(1093), [ts_builtin_sym_end] = ACTIONS(1803), [sym_identifier] = ACTIONS(1805), [anon_sym_LF] = ACTIONS(1805), @@ -134011,7 +133987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(1805), [anon_sym_POUND_LBRACK] = ACTIONS(1805), [anon_sym_if] = ACTIONS(1805), - [anon_sym_else] = ACTIONS(3532), + [anon_sym_else] = ACTIONS(3536), [anon_sym_DOLLARif] = ACTIONS(1805), [anon_sym_is] = ACTIONS(1805), [anon_sym_BANGis] = ACTIONS(1805), @@ -134026,6 +134002,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1805), [sym_float_literal] = ACTIONS(1805), [sym_rune_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1805), + [anon_sym_c_SQUOTE] = ACTIONS(1805), + [anon_sym_c_DQUOTE] = ACTIONS(1805), + [anon_sym_r_SQUOTE] = ACTIONS(1805), + [anon_sym_r_DQUOTE] = ACTIONS(1805), [sym_pseudo_compile_time_identifier] = ACTIONS(1805), [anon_sym_shared] = ACTIONS(1805), [anon_sym_map_LBRACK] = ACTIONS(1805), @@ -134043,747 +134025,741 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(1805), [anon_sym_asm] = ACTIONS(1805), [anon_sym_AT_LBRACK] = ACTIONS(1805), - [sym___double_quote] = ACTIONS(1805), - [sym___single_quote] = ACTIONS(1805), - [sym___c_double_quote] = ACTIONS(1805), - [sym___c_single_quote] = ACTIONS(1805), - [sym___r_double_quote] = ACTIONS(1805), - [sym___r_single_quote] = ACTIONS(1805), }, [968] = { [sym_line_comment] = STATE(968), [sym_block_comment] = STATE(968), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1765), - [anon_sym_CR] = ACTIONS(1765), - [anon_sym_CR_LF] = ACTIONS(1765), + [sym_else_branch] = STATE(1092), + [ts_builtin_sym_end] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1799), + [anon_sym_LF] = ACTIONS(1799), + [anon_sym_CR] = ACTIONS(1799), + [anon_sym_CR_LF] = ACTIONS(1799), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(3534), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_STAR] = ACTIONS(3536), - [anon_sym_SLASH] = ACTIONS(3536), - [anon_sym_PERCENT] = ACTIONS(3536), - [anon_sym_LT] = ACTIONS(3538), - [anon_sym_GT] = ACTIONS(3538), - [anon_sym_EQ_EQ] = ACTIONS(3538), - [anon_sym_BANG_EQ] = ACTIONS(3538), - [anon_sym_LT_EQ] = ACTIONS(3538), - [anon_sym_GT_EQ] = ACTIONS(3538), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1765), - [anon_sym_pub] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [anon_sym_interface] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(3534), - [anon_sym_AMP] = ACTIONS(3536), - [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(3536), - [anon_sym_GT_GT] = ACTIONS(3536), - [anon_sym_GT_GT_GT] = ACTIONS(3536), - [anon_sym_AMP_CARET] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(3540), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(3542), - [anon_sym_BANGin] = ACTIONS(3542), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1765), - [sym_rune_literal] = ACTIONS(1765), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1765), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [anon_sym_assert] = ACTIONS(1765), - [anon_sym_defer] = ACTIONS(1765), - [anon_sym_goto] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_DOLLARfor] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(1765), - [anon_sym_asm] = ACTIONS(1765), - [anon_sym_AT_LBRACK] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_COMMA] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym___global] = ACTIONS(1799), + [anon_sym_type] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_fn] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1799), + [anon_sym_SLASH] = ACTIONS(1799), + [anon_sym_PERCENT] = ACTIONS(1799), + [anon_sym_LT] = ACTIONS(1799), + [anon_sym_GT] = ACTIONS(1799), + [anon_sym_EQ_EQ] = ACTIONS(1799), + [anon_sym_BANG_EQ] = ACTIONS(1799), + [anon_sym_LT_EQ] = ACTIONS(1799), + [anon_sym_GT_EQ] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1797), + [anon_sym_struct] = ACTIONS(1799), + [anon_sym_union] = ACTIONS(1799), + [anon_sym_pub] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_interface] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_QMARK] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_go] = ACTIONS(1799), + [anon_sym_spawn] = ACTIONS(1799), + [anon_sym_json_DOTdecode] = ACTIONS(1799), + [anon_sym_LBRACK2] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_LT_DASH] = ACTIONS(1799), + [anon_sym_LT_LT] = ACTIONS(1799), + [anon_sym_GT_GT] = ACTIONS(1799), + [anon_sym_GT_GT_GT] = ACTIONS(1799), + [anon_sym_AMP_CARET] = ACTIONS(1799), + [anon_sym_AMP_AMP] = ACTIONS(1799), + [anon_sym_PIPE_PIPE] = ACTIONS(1799), + [anon_sym_or] = ACTIONS(1799), + [sym_none] = ACTIONS(1799), + [sym_true] = ACTIONS(1799), + [sym_false] = ACTIONS(1799), + [sym_nil] = ACTIONS(1799), + [anon_sym_QMARK_DOT] = ACTIONS(1799), + [anon_sym_POUND_LBRACK] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(3536), + [anon_sym_DOLLARif] = ACTIONS(1799), + [anon_sym_is] = ACTIONS(1799), + [anon_sym_BANGis] = ACTIONS(1799), + [anon_sym_in] = ACTIONS(1799), + [anon_sym_BANGin] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_select] = ACTIONS(1799), + [anon_sym_lock] = ACTIONS(1799), + [anon_sym_rlock] = ACTIONS(1799), + [anon_sym_unsafe] = ACTIONS(1799), + [anon_sym_sql] = ACTIONS(1799), + [sym_int_literal] = ACTIONS(1799), + [sym_float_literal] = ACTIONS(1799), + [sym_rune_literal] = ACTIONS(1799), + [anon_sym_SQUOTE] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [anon_sym_c_SQUOTE] = ACTIONS(1799), + [anon_sym_c_DQUOTE] = ACTIONS(1799), + [anon_sym_r_SQUOTE] = ACTIONS(1799), + [anon_sym_r_DQUOTE] = ACTIONS(1799), + [sym_pseudo_compile_time_identifier] = ACTIONS(1799), + [anon_sym_shared] = ACTIONS(1799), + [anon_sym_map_LBRACK] = ACTIONS(1799), + [anon_sym_chan] = ACTIONS(1799), + [anon_sym_thread] = ACTIONS(1799), + [anon_sym_atomic] = ACTIONS(1799), + [anon_sym_assert] = ACTIONS(1799), + [anon_sym_defer] = ACTIONS(1799), + [anon_sym_goto] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_DOLLARfor] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(1799), + [anon_sym_asm] = ACTIONS(1799), + [anon_sym_AT_LBRACK] = ACTIONS(1799), }, [969] = { [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(1779), - [sym_identifier] = ACTIONS(1781), - [anon_sym_LF] = ACTIONS(1781), - [anon_sym_CR] = ACTIONS(1781), - [anon_sym_CR_LF] = ACTIONS(1781), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(3538), + [sym_identifier] = ACTIONS(3540), + [anon_sym_LF] = ACTIONS(3540), + [anon_sym_CR] = ACTIONS(3540), + [anon_sym_CR_LF] = ACTIONS(3540), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_const] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(1781), - [anon_sym_type] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(3534), - [anon_sym_fn] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_STAR] = ACTIONS(3536), - [anon_sym_SLASH] = ACTIONS(3536), - [anon_sym_PERCENT] = ACTIONS(3536), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_EQ_EQ] = ACTIONS(1781), - [anon_sym_BANG_EQ] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(1781), - [anon_sym_union] = ACTIONS(1781), - [anon_sym_pub] = ACTIONS(1781), - [anon_sym_mut] = ACTIONS(1781), - [anon_sym_enum] = ACTIONS(1781), - [anon_sym_interface] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1781), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_CARET] = ACTIONS(3534), - [anon_sym_AMP] = ACTIONS(3536), - [anon_sym_LT_DASH] = ACTIONS(1781), - [anon_sym_LT_LT] = ACTIONS(3536), - [anon_sym_GT_GT] = ACTIONS(3536), - [anon_sym_GT_GT_GT] = ACTIONS(3536), - [anon_sym_AMP_CARET] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(1781), - [anon_sym_PIPE_PIPE] = ACTIONS(1781), - [anon_sym_or] = ACTIONS(1781), - [sym_none] = ACTIONS(1781), - [sym_true] = ACTIONS(1781), - [sym_false] = ACTIONS(1781), - [sym_nil] = ACTIONS(1781), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_DOLLARif] = ACTIONS(1781), - [anon_sym_is] = ACTIONS(1781), - [anon_sym_BANGis] = ACTIONS(1781), - [anon_sym_in] = ACTIONS(1781), - [anon_sym_BANGin] = ACTIONS(1781), - [anon_sym_match] = ACTIONS(1781), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1781), - [anon_sym_rlock] = ACTIONS(1781), - [anon_sym_unsafe] = ACTIONS(1781), - [anon_sym_sql] = ACTIONS(1781), - [sym_int_literal] = ACTIONS(1781), - [sym_float_literal] = ACTIONS(1781), - [sym_rune_literal] = ACTIONS(1781), - [sym_pseudo_compile_time_identifier] = ACTIONS(1781), - [anon_sym_shared] = ACTIONS(1781), - [anon_sym_map_LBRACK] = ACTIONS(1781), - [anon_sym_chan] = ACTIONS(1781), - [anon_sym_thread] = ACTIONS(1781), - [anon_sym_atomic] = ACTIONS(1781), - [anon_sym_assert] = ACTIONS(1781), - [anon_sym_defer] = ACTIONS(1781), - [anon_sym_goto] = ACTIONS(1781), - [anon_sym_break] = ACTIONS(1781), - [anon_sym_continue] = ACTIONS(1781), - [anon_sym_return] = ACTIONS(1781), - [anon_sym_DOLLARfor] = ACTIONS(1781), - [anon_sym_for] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(1781), - [anon_sym_asm] = ACTIONS(1781), - [anon_sym_AT_LBRACK] = ACTIONS(1781), - [sym___double_quote] = ACTIONS(1781), - [sym___single_quote] = ACTIONS(1781), - [sym___c_double_quote] = ACTIONS(1781), - [sym___c_single_quote] = ACTIONS(1781), - [sym___r_double_quote] = ACTIONS(1781), - [sym___r_single_quote] = ACTIONS(1781), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(3540), + [anon_sym_const] = ACTIONS(3540), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(3540), + [anon_sym_type] = ACTIONS(3540), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_fn] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_STAR] = ACTIONS(3544), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_PERCENT] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_GT] = ACTIONS(3546), + [anon_sym_EQ_EQ] = ACTIONS(3546), + [anon_sym_BANG_EQ] = ACTIONS(3546), + [anon_sym_LT_EQ] = ACTIONS(3546), + [anon_sym_GT_EQ] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(3540), + [anon_sym_union] = ACTIONS(3540), + [anon_sym_pub] = ACTIONS(3540), + [anon_sym_mut] = ACTIONS(3540), + [anon_sym_enum] = ACTIONS(3540), + [anon_sym_interface] = ACTIONS(3540), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(3540), + [anon_sym_spawn] = ACTIONS(3540), + [anon_sym_json_DOTdecode] = ACTIONS(3540), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(3540), + [anon_sym_CARET] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3544), + [anon_sym_LT_DASH] = ACTIONS(3540), + [anon_sym_LT_LT] = ACTIONS(3544), + [anon_sym_GT_GT] = ACTIONS(3544), + [anon_sym_GT_GT_GT] = ACTIONS(3544), + [anon_sym_AMP_CARET] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3548), + [anon_sym_PIPE_PIPE] = ACTIONS(3550), + [anon_sym_or] = ACTIONS(3520), + [sym_none] = ACTIONS(3540), + [sym_true] = ACTIONS(3540), + [sym_false] = ACTIONS(3540), + [sym_nil] = ACTIONS(3540), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(3540), + [anon_sym_DOLLARif] = ACTIONS(3540), + [anon_sym_is] = ACTIONS(3522), + [anon_sym_BANGis] = ACTIONS(3522), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_BANGin] = ACTIONS(3552), + [anon_sym_match] = ACTIONS(3540), + [anon_sym_select] = ACTIONS(3540), + [anon_sym_lock] = ACTIONS(3540), + [anon_sym_rlock] = ACTIONS(3540), + [anon_sym_unsafe] = ACTIONS(3540), + [anon_sym_sql] = ACTIONS(3540), + [sym_int_literal] = ACTIONS(3540), + [sym_float_literal] = ACTIONS(3540), + [sym_rune_literal] = ACTIONS(3540), + [anon_sym_SQUOTE] = ACTIONS(3540), + [anon_sym_DQUOTE] = ACTIONS(3540), + [anon_sym_c_SQUOTE] = ACTIONS(3540), + [anon_sym_c_DQUOTE] = ACTIONS(3540), + [anon_sym_r_SQUOTE] = ACTIONS(3540), + [anon_sym_r_DQUOTE] = ACTIONS(3540), + [sym_pseudo_compile_time_identifier] = ACTIONS(3540), + [anon_sym_shared] = ACTIONS(3540), + [anon_sym_map_LBRACK] = ACTIONS(3540), + [anon_sym_chan] = ACTIONS(3540), + [anon_sym_thread] = ACTIONS(3540), + [anon_sym_atomic] = ACTIONS(3540), + [anon_sym_assert] = ACTIONS(3540), + [anon_sym_defer] = ACTIONS(3540), + [anon_sym_goto] = ACTIONS(3540), + [anon_sym_break] = ACTIONS(3540), + [anon_sym_continue] = ACTIONS(3540), + [anon_sym_return] = ACTIONS(3540), + [anon_sym_DOLLARfor] = ACTIONS(3540), + [anon_sym_for] = ACTIONS(3540), + [anon_sym_POUND] = ACTIONS(3540), + [anon_sym_asm] = ACTIONS(3540), + [anon_sym_AT_LBRACK] = ACTIONS(3540), }, [970] = { [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(1771), - [sym_identifier] = ACTIONS(1773), - [anon_sym_LF] = ACTIONS(1773), - [anon_sym_CR] = ACTIONS(1773), - [anon_sym_CR_LF] = ACTIONS(1773), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(3488), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_const] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(1773), - [anon_sym_type] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(3534), - [anon_sym_fn] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_STAR] = ACTIONS(3536), - [anon_sym_SLASH] = ACTIONS(3536), - [anon_sym_PERCENT] = ACTIONS(3536), - [anon_sym_LT] = ACTIONS(3538), - [anon_sym_GT] = ACTIONS(3538), - [anon_sym_EQ_EQ] = ACTIONS(3538), - [anon_sym_BANG_EQ] = ACTIONS(3538), - [anon_sym_LT_EQ] = ACTIONS(3538), - [anon_sym_GT_EQ] = ACTIONS(3538), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_union] = ACTIONS(1773), - [anon_sym_pub] = ACTIONS(1773), - [anon_sym_mut] = ACTIONS(1773), - [anon_sym_enum] = ACTIONS(1773), - [anon_sym_interface] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(1773), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1773), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(3534), - [anon_sym_AMP] = ACTIONS(3536), - [anon_sym_LT_DASH] = ACTIONS(1773), - [anon_sym_LT_LT] = ACTIONS(3536), - [anon_sym_GT_GT] = ACTIONS(3536), - [anon_sym_GT_GT_GT] = ACTIONS(3536), - [anon_sym_AMP_CARET] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(3540), - [anon_sym_PIPE_PIPE] = ACTIONS(3544), - [anon_sym_or] = ACTIONS(3516), - [sym_none] = ACTIONS(1773), - [sym_true] = ACTIONS(1773), - [sym_false] = ACTIONS(1773), - [sym_nil] = ACTIONS(1773), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_DOLLARif] = ACTIONS(1773), - [anon_sym_is] = ACTIONS(3518), - [anon_sym_BANGis] = ACTIONS(3518), - [anon_sym_in] = ACTIONS(3542), - [anon_sym_BANGin] = ACTIONS(3542), - [anon_sym_match] = ACTIONS(1773), - [anon_sym_select] = ACTIONS(1773), - [anon_sym_lock] = ACTIONS(1773), - [anon_sym_rlock] = ACTIONS(1773), - [anon_sym_unsafe] = ACTIONS(1773), - [anon_sym_sql] = ACTIONS(1773), - [sym_int_literal] = ACTIONS(1773), - [sym_float_literal] = ACTIONS(1773), - [sym_rune_literal] = ACTIONS(1773), - [sym_pseudo_compile_time_identifier] = ACTIONS(1773), - [anon_sym_shared] = ACTIONS(1773), - [anon_sym_map_LBRACK] = ACTIONS(1773), - [anon_sym_chan] = ACTIONS(1773), - [anon_sym_thread] = ACTIONS(1773), - [anon_sym_atomic] = ACTIONS(1773), - [anon_sym_assert] = ACTIONS(1773), - [anon_sym_defer] = ACTIONS(1773), - [anon_sym_goto] = ACTIONS(1773), - [anon_sym_break] = ACTIONS(1773), - [anon_sym_continue] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(1773), - [anon_sym_DOLLARfor] = ACTIONS(1773), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_POUND] = ACTIONS(1773), - [anon_sym_asm] = ACTIONS(1773), - [anon_sym_AT_LBRACK] = ACTIONS(1773), - [sym___double_quote] = ACTIONS(1773), - [sym___single_quote] = ACTIONS(1773), - [sym___c_double_quote] = ACTIONS(1773), - [sym___c_single_quote] = ACTIONS(1773), - [sym___r_double_quote] = ACTIONS(1773), - [sym___r_single_quote] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_STAR] = ACTIONS(3544), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_PERCENT] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_GT] = ACTIONS(3546), + [anon_sym_EQ_EQ] = ACTIONS(3546), + [anon_sym_BANG_EQ] = ACTIONS(3546), + [anon_sym_LT_EQ] = ACTIONS(3546), + [anon_sym_GT_EQ] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_pub] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3544), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(3544), + [anon_sym_GT_GT] = ACTIONS(3544), + [anon_sym_GT_GT_GT] = ACTIONS(3544), + [anon_sym_AMP_CARET] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_BANGin] = ACTIONS(3552), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_assert] = ACTIONS(1791), + [anon_sym_defer] = ACTIONS(1791), + [anon_sym_goto] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_DOLLARfor] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_POUND] = ACTIONS(1791), + [anon_sym_asm] = ACTIONS(1791), + [anon_sym_AT_LBRACK] = ACTIONS(1791), }, [971] = { [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(3546), - [sym_identifier] = ACTIONS(3548), - [anon_sym_LF] = ACTIONS(3548), - [anon_sym_CR] = ACTIONS(3548), - [anon_sym_CR_LF] = ACTIONS(3548), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(3488), - [anon_sym_LBRACE] = ACTIONS(3548), - [anon_sym_const] = ACTIONS(3548), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(3548), - [anon_sym_type] = ACTIONS(3548), - [anon_sym_PIPE] = ACTIONS(3534), - [anon_sym_fn] = ACTIONS(3548), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_STAR] = ACTIONS(3536), - [anon_sym_SLASH] = ACTIONS(3536), - [anon_sym_PERCENT] = ACTIONS(3536), - [anon_sym_LT] = ACTIONS(3538), - [anon_sym_GT] = ACTIONS(3538), - [anon_sym_EQ_EQ] = ACTIONS(3538), - [anon_sym_BANG_EQ] = ACTIONS(3538), - [anon_sym_LT_EQ] = ACTIONS(3538), - [anon_sym_GT_EQ] = ACTIONS(3538), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(3548), - [anon_sym_union] = ACTIONS(3548), - [anon_sym_pub] = ACTIONS(3548), - [anon_sym_mut] = ACTIONS(3548), - [anon_sym_enum] = ACTIONS(3548), - [anon_sym_interface] = ACTIONS(3548), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(3548), - [anon_sym_spawn] = ACTIONS(3548), - [anon_sym_json_DOTdecode] = ACTIONS(3548), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(3548), - [anon_sym_CARET] = ACTIONS(3534), - [anon_sym_AMP] = ACTIONS(3536), - [anon_sym_LT_DASH] = ACTIONS(3548), - [anon_sym_LT_LT] = ACTIONS(3536), - [anon_sym_GT_GT] = ACTIONS(3536), - [anon_sym_GT_GT_GT] = ACTIONS(3536), - [anon_sym_AMP_CARET] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(3540), - [anon_sym_PIPE_PIPE] = ACTIONS(3544), - [anon_sym_or] = ACTIONS(3516), - [sym_none] = ACTIONS(3548), - [sym_true] = ACTIONS(3548), - [sym_false] = ACTIONS(3548), - [sym_nil] = ACTIONS(3548), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(3548), - [anon_sym_DOLLARif] = ACTIONS(3548), - [anon_sym_is] = ACTIONS(3518), - [anon_sym_BANGis] = ACTIONS(3518), - [anon_sym_in] = ACTIONS(3542), - [anon_sym_BANGin] = ACTIONS(3542), - [anon_sym_match] = ACTIONS(3548), - [anon_sym_select] = ACTIONS(3548), - [anon_sym_lock] = ACTIONS(3548), - [anon_sym_rlock] = ACTIONS(3548), - [anon_sym_unsafe] = ACTIONS(3548), - [anon_sym_sql] = ACTIONS(3548), - [sym_int_literal] = ACTIONS(3548), - [sym_float_literal] = ACTIONS(3548), - [sym_rune_literal] = ACTIONS(3548), - [sym_pseudo_compile_time_identifier] = ACTIONS(3548), - [anon_sym_shared] = ACTIONS(3548), - [anon_sym_map_LBRACK] = ACTIONS(3548), - [anon_sym_chan] = ACTIONS(3548), - [anon_sym_thread] = ACTIONS(3548), - [anon_sym_atomic] = ACTIONS(3548), - [anon_sym_assert] = ACTIONS(3548), - [anon_sym_defer] = ACTIONS(3548), - [anon_sym_goto] = ACTIONS(3548), - [anon_sym_break] = ACTIONS(3548), - [anon_sym_continue] = ACTIONS(3548), - [anon_sym_return] = ACTIONS(3548), - [anon_sym_DOLLARfor] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3548), - [anon_sym_POUND] = ACTIONS(3548), - [anon_sym_asm] = ACTIONS(3548), - [anon_sym_AT_LBRACK] = ACTIONS(3548), - [sym___double_quote] = ACTIONS(3548), - [sym___single_quote] = ACTIONS(3548), - [sym___c_double_quote] = ACTIONS(3548), - [sym___c_single_quote] = ACTIONS(3548), - [sym___r_double_quote] = ACTIONS(3548), - [sym___r_single_quote] = ACTIONS(3548), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_STAR] = ACTIONS(3544), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_PERCENT] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_GT] = ACTIONS(3546), + [anon_sym_EQ_EQ] = ACTIONS(3546), + [anon_sym_BANG_EQ] = ACTIONS(3546), + [anon_sym_LT_EQ] = ACTIONS(3546), + [anon_sym_GT_EQ] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_pub] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3544), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(3544), + [anon_sym_GT_GT] = ACTIONS(3544), + [anon_sym_GT_GT_GT] = ACTIONS(3544), + [anon_sym_AMP_CARET] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3548), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_BANGin] = ACTIONS(3552), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_assert] = ACTIONS(1791), + [anon_sym_defer] = ACTIONS(1791), + [anon_sym_goto] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_DOLLARfor] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_POUND] = ACTIONS(1791), + [anon_sym_asm] = ACTIONS(1791), + [anon_sym_AT_LBRACK] = ACTIONS(1791), }, [972] = { [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1765), - [anon_sym_CR] = ACTIONS(1765), - [anon_sym_CR_LF] = ACTIONS(1765), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(3554), + [sym_identifier] = ACTIONS(3556), + [anon_sym_LF] = ACTIONS(3556), + [anon_sym_CR] = ACTIONS(3556), + [anon_sym_CR_LF] = ACTIONS(3556), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(3536), - [anon_sym_SLASH] = ACTIONS(3536), - [anon_sym_PERCENT] = ACTIONS(3536), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1765), - [anon_sym_pub] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [anon_sym_interface] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(3536), - [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(3536), - [anon_sym_GT_GT] = ACTIONS(3536), - [anon_sym_GT_GT_GT] = ACTIONS(3536), - [anon_sym_AMP_CARET] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_BANGin] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1765), - [sym_rune_literal] = ACTIONS(1765), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1765), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [anon_sym_assert] = ACTIONS(1765), - [anon_sym_defer] = ACTIONS(1765), - [anon_sym_goto] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_DOLLARfor] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(1765), - [anon_sym_asm] = ACTIONS(1765), - [anon_sym_AT_LBRACK] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(3556), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(3556), + [anon_sym_type] = ACTIONS(3556), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_fn] = ACTIONS(3556), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3556), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_PERCENT] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_GT] = ACTIONS(3546), + [anon_sym_EQ_EQ] = ACTIONS(3546), + [anon_sym_BANG_EQ] = ACTIONS(3546), + [anon_sym_LT_EQ] = ACTIONS(3546), + [anon_sym_GT_EQ] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(3556), + [anon_sym_union] = ACTIONS(3556), + [anon_sym_pub] = ACTIONS(3556), + [anon_sym_mut] = ACTIONS(3556), + [anon_sym_enum] = ACTIONS(3556), + [anon_sym_interface] = ACTIONS(3556), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(3556), + [anon_sym_spawn] = ACTIONS(3556), + [anon_sym_json_DOTdecode] = ACTIONS(3556), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(3556), + [anon_sym_CARET] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3556), + [anon_sym_LT_DASH] = ACTIONS(3556), + [anon_sym_LT_LT] = ACTIONS(3544), + [anon_sym_GT_GT] = ACTIONS(3544), + [anon_sym_GT_GT_GT] = ACTIONS(3544), + [anon_sym_AMP_CARET] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3548), + [anon_sym_PIPE_PIPE] = ACTIONS(3550), + [anon_sym_or] = ACTIONS(3520), + [sym_none] = ACTIONS(3556), + [sym_true] = ACTIONS(3556), + [sym_false] = ACTIONS(3556), + [sym_nil] = ACTIONS(3556), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(3556), + [anon_sym_DOLLARif] = ACTIONS(3556), + [anon_sym_is] = ACTIONS(3522), + [anon_sym_BANGis] = ACTIONS(3522), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_BANGin] = ACTIONS(3552), + [anon_sym_match] = ACTIONS(3556), + [anon_sym_select] = ACTIONS(3556), + [anon_sym_lock] = ACTIONS(3556), + [anon_sym_rlock] = ACTIONS(3556), + [anon_sym_unsafe] = ACTIONS(3556), + [anon_sym_sql] = ACTIONS(3556), + [sym_int_literal] = ACTIONS(3556), + [sym_float_literal] = ACTIONS(3556), + [sym_rune_literal] = ACTIONS(3556), + [anon_sym_SQUOTE] = ACTIONS(3556), + [anon_sym_DQUOTE] = ACTIONS(3556), + [anon_sym_c_SQUOTE] = ACTIONS(3556), + [anon_sym_c_DQUOTE] = ACTIONS(3556), + [anon_sym_r_SQUOTE] = ACTIONS(3556), + [anon_sym_r_DQUOTE] = ACTIONS(3556), + [sym_pseudo_compile_time_identifier] = ACTIONS(3556), + [anon_sym_shared] = ACTIONS(3556), + [anon_sym_map_LBRACK] = ACTIONS(3556), + [anon_sym_chan] = ACTIONS(3556), + [anon_sym_thread] = ACTIONS(3556), + [anon_sym_atomic] = ACTIONS(3556), + [anon_sym_assert] = ACTIONS(3556), + [anon_sym_defer] = ACTIONS(3556), + [anon_sym_goto] = ACTIONS(3556), + [anon_sym_break] = ACTIONS(3556), + [anon_sym_continue] = ACTIONS(3556), + [anon_sym_return] = ACTIONS(3556), + [anon_sym_DOLLARfor] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3556), + [anon_sym_POUND] = ACTIONS(3556), + [anon_sym_asm] = ACTIONS(3556), + [anon_sym_AT_LBRACK] = ACTIONS(3556), }, [973] = { [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1765), - [anon_sym_CR] = ACTIONS(1765), - [anon_sym_CR_LF] = ACTIONS(1765), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(3534), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_STAR] = ACTIONS(3536), - [anon_sym_SLASH] = ACTIONS(3536), - [anon_sym_PERCENT] = ACTIONS(3536), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1765), - [anon_sym_pub] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [anon_sym_interface] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(3534), - [anon_sym_AMP] = ACTIONS(3536), - [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(3536), - [anon_sym_GT_GT] = ACTIONS(3536), - [anon_sym_GT_GT_GT] = ACTIONS(3536), - [anon_sym_AMP_CARET] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_BANGin] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1765), - [sym_rune_literal] = ACTIONS(1765), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1765), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [anon_sym_assert] = ACTIONS(1765), - [anon_sym_defer] = ACTIONS(1765), - [anon_sym_goto] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_DOLLARfor] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(1765), - [anon_sym_asm] = ACTIONS(1765), - [anon_sym_AT_LBRACK] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_STAR] = ACTIONS(3544), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_PERCENT] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_EQ] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_pub] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3544), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(3544), + [anon_sym_GT_GT] = ACTIONS(3544), + [anon_sym_GT_GT_GT] = ACTIONS(3544), + [anon_sym_AMP_CARET] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_BANGin] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_assert] = ACTIONS(1791), + [anon_sym_defer] = ACTIONS(1791), + [anon_sym_goto] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_DOLLARfor] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_POUND] = ACTIONS(1791), + [anon_sym_asm] = ACTIONS(1791), + [anon_sym_AT_LBRACK] = ACTIONS(1791), }, [974] = { [sym_line_comment] = STATE(974), [sym_block_comment] = STATE(974), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(3550), - [sym_identifier] = ACTIONS(3552), - [anon_sym_LF] = ACTIONS(3552), - [anon_sym_CR] = ACTIONS(3552), - [anon_sym_CR_LF] = ACTIONS(3552), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(3488), - [anon_sym_LBRACE] = ACTIONS(3552), - [anon_sym_const] = ACTIONS(3552), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(3552), - [anon_sym_type] = ACTIONS(3552), - [anon_sym_PIPE] = ACTIONS(3534), - [anon_sym_fn] = ACTIONS(3552), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_STAR] = ACTIONS(3536), - [anon_sym_SLASH] = ACTIONS(3536), - [anon_sym_PERCENT] = ACTIONS(3536), - [anon_sym_LT] = ACTIONS(3538), - [anon_sym_GT] = ACTIONS(3538), - [anon_sym_EQ_EQ] = ACTIONS(3538), - [anon_sym_BANG_EQ] = ACTIONS(3538), - [anon_sym_LT_EQ] = ACTIONS(3538), - [anon_sym_GT_EQ] = ACTIONS(3538), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(3552), - [anon_sym_union] = ACTIONS(3552), - [anon_sym_pub] = ACTIONS(3552), - [anon_sym_mut] = ACTIONS(3552), - [anon_sym_enum] = ACTIONS(3552), - [anon_sym_interface] = ACTIONS(3552), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(3552), - [anon_sym_spawn] = ACTIONS(3552), - [anon_sym_json_DOTdecode] = ACTIONS(3552), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(3552), - [anon_sym_CARET] = ACTIONS(3534), - [anon_sym_AMP] = ACTIONS(3536), - [anon_sym_LT_DASH] = ACTIONS(3552), - [anon_sym_LT_LT] = ACTIONS(3536), - [anon_sym_GT_GT] = ACTIONS(3536), - [anon_sym_GT_GT_GT] = ACTIONS(3536), - [anon_sym_AMP_CARET] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(3540), - [anon_sym_PIPE_PIPE] = ACTIONS(3544), - [anon_sym_or] = ACTIONS(3516), - [sym_none] = ACTIONS(3552), - [sym_true] = ACTIONS(3552), - [sym_false] = ACTIONS(3552), - [sym_nil] = ACTIONS(3552), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(3552), - [anon_sym_DOLLARif] = ACTIONS(3552), - [anon_sym_is] = ACTIONS(3518), - [anon_sym_BANGis] = ACTIONS(3518), - [anon_sym_in] = ACTIONS(3542), - [anon_sym_BANGin] = ACTIONS(3542), - [anon_sym_match] = ACTIONS(3552), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3552), - [anon_sym_rlock] = ACTIONS(3552), - [anon_sym_unsafe] = ACTIONS(3552), - [anon_sym_sql] = ACTIONS(3552), - [sym_int_literal] = ACTIONS(3552), - [sym_float_literal] = ACTIONS(3552), - [sym_rune_literal] = ACTIONS(3552), - [sym_pseudo_compile_time_identifier] = ACTIONS(3552), - [anon_sym_shared] = ACTIONS(3552), - [anon_sym_map_LBRACK] = ACTIONS(3552), - [anon_sym_chan] = ACTIONS(3552), - [anon_sym_thread] = ACTIONS(3552), - [anon_sym_atomic] = ACTIONS(3552), - [anon_sym_assert] = ACTIONS(3552), - [anon_sym_defer] = ACTIONS(3552), - [anon_sym_goto] = ACTIONS(3552), - [anon_sym_break] = ACTIONS(3552), - [anon_sym_continue] = ACTIONS(3552), - [anon_sym_return] = ACTIONS(3552), - [anon_sym_DOLLARfor] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3552), - [anon_sym_POUND] = ACTIONS(3552), - [anon_sym_asm] = ACTIONS(3552), - [anon_sym_AT_LBRACK] = ACTIONS(3552), - [sym___double_quote] = ACTIONS(3552), - [sym___single_quote] = ACTIONS(3552), - [sym___c_double_quote] = ACTIONS(3552), - [sym___c_single_quote] = ACTIONS(3552), - [sym___r_double_quote] = ACTIONS(3552), - [sym___r_single_quote] = ACTIONS(3552), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(1791), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(3544), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_PERCENT] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_EQ] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_pub] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(3544), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(3544), + [anon_sym_GT_GT] = ACTIONS(3544), + [anon_sym_GT_GT_GT] = ACTIONS(3544), + [anon_sym_AMP_CARET] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_BANGin] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + [anon_sym_assert] = ACTIONS(1791), + [anon_sym_defer] = ACTIONS(1791), + [anon_sym_goto] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_DOLLARfor] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_POUND] = ACTIONS(1791), + [anon_sym_asm] = ACTIONS(1791), + [anon_sym_AT_LBRACK] = ACTIONS(1791), }, [975] = { [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), [ts_builtin_sym_end] = ACTIONS(1763), [sym_identifier] = ACTIONS(1765), [anon_sym_LF] = ACTIONS(1765), @@ -134791,64 +134767,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(3492), [anon_sym_LBRACE] = ACTIONS(1765), [anon_sym_const] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(3496), [anon_sym___global] = ACTIONS(1765), [anon_sym_type] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(3534), + [anon_sym_PIPE] = ACTIONS(3542), [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_STAR] = ACTIONS(3536), - [anon_sym_SLASH] = ACTIONS(3536), - [anon_sym_PERCENT] = ACTIONS(3536), - [anon_sym_LT] = ACTIONS(3538), - [anon_sym_GT] = ACTIONS(3538), - [anon_sym_EQ_EQ] = ACTIONS(3538), - [anon_sym_BANG_EQ] = ACTIONS(3538), - [anon_sym_LT_EQ] = ACTIONS(3538), - [anon_sym_GT_EQ] = ACTIONS(3538), - [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_STAR] = ACTIONS(3544), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_PERCENT] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_GT] = ACTIONS(3546), + [anon_sym_EQ_EQ] = ACTIONS(3546), + [anon_sym_BANG_EQ] = ACTIONS(3546), + [anon_sym_LT_EQ] = ACTIONS(3546), + [anon_sym_GT_EQ] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3504), [anon_sym_struct] = ACTIONS(1765), [anon_sym_union] = ACTIONS(1765), [anon_sym_pub] = ACTIONS(1765), [anon_sym_mut] = ACTIONS(1765), [anon_sym_enum] = ACTIONS(1765), [anon_sym_interface] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), [anon_sym_go] = ACTIONS(1765), [anon_sym_spawn] = ACTIONS(1765), [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_LBRACK2] = ACTIONS(3514), [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(3534), - [anon_sym_AMP] = ACTIONS(3536), + [anon_sym_CARET] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3544), [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(3536), - [anon_sym_GT_GT] = ACTIONS(3536), - [anon_sym_GT_GT_GT] = ACTIONS(3536), - [anon_sym_AMP_CARET] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(3544), + [anon_sym_GT_GT] = ACTIONS(3544), + [anon_sym_GT_GT_GT] = ACTIONS(3544), + [anon_sym_AMP_CARET] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3548), + [anon_sym_PIPE_PIPE] = ACTIONS(3550), + [anon_sym_or] = ACTIONS(3520), [sym_none] = ACTIONS(1765), [sym_true] = ACTIONS(1765), [sym_false] = ACTIONS(1765), [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), [anon_sym_if] = ACTIONS(1765), [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(3542), - [anon_sym_BANGin] = ACTIONS(3542), + [anon_sym_is] = ACTIONS(3522), + [anon_sym_BANGis] = ACTIONS(3522), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_BANGin] = ACTIONS(3552), [anon_sym_match] = ACTIONS(1765), [anon_sym_select] = ACTIONS(1765), [anon_sym_lock] = ACTIONS(1765), @@ -134858,6 +134834,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1765), [sym_float_literal] = ACTIONS(1765), [sym_rune_literal] = ACTIONS(1765), + [anon_sym_SQUOTE] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [anon_sym_c_SQUOTE] = ACTIONS(1765), + [anon_sym_c_DQUOTE] = ACTIONS(1765), + [anon_sym_r_SQUOTE] = ACTIONS(1765), + [anon_sym_r_DQUOTE] = ACTIONS(1765), [sym_pseudo_compile_time_identifier] = ACTIONS(1765), [anon_sym_shared] = ACTIONS(1765), [anon_sym_map_LBRACK] = ACTIONS(1765), @@ -134875,227 +134857,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(1765), [anon_sym_asm] = ACTIONS(1765), [anon_sym_AT_LBRACK] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), }, [976] = { [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(3554), - [sym_identifier] = ACTIONS(3556), - [anon_sym_LF] = ACTIONS(3556), - [anon_sym_CR] = ACTIONS(3556), - [anon_sym_CR_LF] = ACTIONS(3556), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_LF] = ACTIONS(1787), + [anon_sym_CR] = ACTIONS(1787), + [anon_sym_CR_LF] = ACTIONS(1787), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(3488), - [anon_sym_LBRACE] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3556), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(3556), - [anon_sym_type] = ACTIONS(3556), - [anon_sym_PIPE] = ACTIONS(3534), - [anon_sym_fn] = ACTIONS(3556), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_STAR] = ACTIONS(3536), - [anon_sym_SLASH] = ACTIONS(3536), - [anon_sym_PERCENT] = ACTIONS(3536), - [anon_sym_LT] = ACTIONS(3538), - [anon_sym_GT] = ACTIONS(3538), - [anon_sym_EQ_EQ] = ACTIONS(3538), - [anon_sym_BANG_EQ] = ACTIONS(3538), - [anon_sym_LT_EQ] = ACTIONS(3538), - [anon_sym_GT_EQ] = ACTIONS(3538), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(3556), - [anon_sym_union] = ACTIONS(3556), - [anon_sym_pub] = ACTIONS(3556), - [anon_sym_mut] = ACTIONS(3556), - [anon_sym_enum] = ACTIONS(3556), - [anon_sym_interface] = ACTIONS(3556), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(3556), - [anon_sym_spawn] = ACTIONS(3556), - [anon_sym_json_DOTdecode] = ACTIONS(3556), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(3556), - [anon_sym_CARET] = ACTIONS(3534), - [anon_sym_AMP] = ACTIONS(3536), - [anon_sym_LT_DASH] = ACTIONS(3556), - [anon_sym_LT_LT] = ACTIONS(3536), - [anon_sym_GT_GT] = ACTIONS(3536), - [anon_sym_GT_GT_GT] = ACTIONS(3536), - [anon_sym_AMP_CARET] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(3540), - [anon_sym_PIPE_PIPE] = ACTIONS(3544), - [anon_sym_or] = ACTIONS(3516), - [sym_none] = ACTIONS(3556), - [sym_true] = ACTIONS(3556), - [sym_false] = ACTIONS(3556), - [sym_nil] = ACTIONS(3556), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(3556), - [anon_sym_DOLLARif] = ACTIONS(3556), - [anon_sym_is] = ACTIONS(3518), - [anon_sym_BANGis] = ACTIONS(3518), - [anon_sym_in] = ACTIONS(3542), - [anon_sym_BANGin] = ACTIONS(3542), - [anon_sym_match] = ACTIONS(3556), - [anon_sym_select] = ACTIONS(3556), - [anon_sym_lock] = ACTIONS(3556), - [anon_sym_rlock] = ACTIONS(3556), - [anon_sym_unsafe] = ACTIONS(3556), - [anon_sym_sql] = ACTIONS(3556), - [sym_int_literal] = ACTIONS(3556), - [sym_float_literal] = ACTIONS(3556), - [sym_rune_literal] = ACTIONS(3556), - [sym_pseudo_compile_time_identifier] = ACTIONS(3556), - [anon_sym_shared] = ACTIONS(3556), - [anon_sym_map_LBRACK] = ACTIONS(3556), - [anon_sym_chan] = ACTIONS(3556), - [anon_sym_thread] = ACTIONS(3556), - [anon_sym_atomic] = ACTIONS(3556), - [anon_sym_assert] = ACTIONS(3556), - [anon_sym_defer] = ACTIONS(3556), - [anon_sym_goto] = ACTIONS(3556), - [anon_sym_break] = ACTIONS(3556), - [anon_sym_continue] = ACTIONS(3556), - [anon_sym_return] = ACTIONS(3556), - [anon_sym_DOLLARfor] = ACTIONS(3556), - [anon_sym_for] = ACTIONS(3556), - [anon_sym_POUND] = ACTIONS(3556), - [anon_sym_asm] = ACTIONS(3556), - [anon_sym_AT_LBRACK] = ACTIONS(3556), - [sym___double_quote] = ACTIONS(3556), - [sym___single_quote] = ACTIONS(3556), - [sym___c_double_quote] = ACTIONS(3556), - [sym___c_single_quote] = ACTIONS(3556), - [sym___r_double_quote] = ACTIONS(3556), - [sym___r_single_quote] = ACTIONS(3556), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_const] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(1787), + [anon_sym_type] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_fn] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_STAR] = ACTIONS(3544), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_PERCENT] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_EQ_EQ] = ACTIONS(1787), + [anon_sym_BANG_EQ] = ACTIONS(1787), + [anon_sym_LT_EQ] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1787), + [anon_sym_union] = ACTIONS(1787), + [anon_sym_pub] = ACTIONS(1787), + [anon_sym_mut] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1787), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(1787), + [anon_sym_spawn] = ACTIONS(1787), + [anon_sym_json_DOTdecode] = ACTIONS(1787), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3544), + [anon_sym_LT_DASH] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(3544), + [anon_sym_GT_GT] = ACTIONS(3544), + [anon_sym_GT_GT_GT] = ACTIONS(3544), + [anon_sym_AMP_CARET] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(1787), + [anon_sym_PIPE_PIPE] = ACTIONS(1787), + [anon_sym_or] = ACTIONS(1787), + [sym_none] = ACTIONS(1787), + [sym_true] = ACTIONS(1787), + [sym_false] = ACTIONS(1787), + [sym_nil] = ACTIONS(1787), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_DOLLARif] = ACTIONS(1787), + [anon_sym_is] = ACTIONS(1787), + [anon_sym_BANGis] = ACTIONS(1787), + [anon_sym_in] = ACTIONS(1787), + [anon_sym_BANGin] = ACTIONS(1787), + [anon_sym_match] = ACTIONS(1787), + [anon_sym_select] = ACTIONS(1787), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1787), + [anon_sym_sql] = ACTIONS(1787), + [sym_int_literal] = ACTIONS(1787), + [sym_float_literal] = ACTIONS(1787), + [sym_rune_literal] = ACTIONS(1787), + [anon_sym_SQUOTE] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [anon_sym_c_SQUOTE] = ACTIONS(1787), + [anon_sym_c_DQUOTE] = ACTIONS(1787), + [anon_sym_r_SQUOTE] = ACTIONS(1787), + [anon_sym_r_DQUOTE] = ACTIONS(1787), + [sym_pseudo_compile_time_identifier] = ACTIONS(1787), + [anon_sym_shared] = ACTIONS(1787), + [anon_sym_map_LBRACK] = ACTIONS(1787), + [anon_sym_chan] = ACTIONS(1787), + [anon_sym_thread] = ACTIONS(1787), + [anon_sym_atomic] = ACTIONS(1787), + [anon_sym_assert] = ACTIONS(1787), + [anon_sym_defer] = ACTIONS(1787), + [anon_sym_goto] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_DOLLARfor] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1787), + [anon_sym_asm] = ACTIONS(1787), + [anon_sym_AT_LBRACK] = ACTIONS(1787), }, [977] = { [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(1793), - [sym_identifier] = ACTIONS(1795), - [anon_sym_LF] = ACTIONS(1795), - [anon_sym_CR] = ACTIONS(1795), - [anon_sym_CR_LF] = ACTIONS(1795), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(3488), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_const] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym___global] = ACTIONS(1795), - [anon_sym_type] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(3534), - [anon_sym_fn] = ACTIONS(1795), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_STAR] = ACTIONS(3536), - [anon_sym_SLASH] = ACTIONS(3536), - [anon_sym_PERCENT] = ACTIONS(3536), - [anon_sym_LT] = ACTIONS(3538), - [anon_sym_GT] = ACTIONS(3538), - [anon_sym_EQ_EQ] = ACTIONS(3538), - [anon_sym_BANG_EQ] = ACTIONS(3538), - [anon_sym_LT_EQ] = ACTIONS(3538), - [anon_sym_GT_EQ] = ACTIONS(3538), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_struct] = ACTIONS(1795), - [anon_sym_union] = ACTIONS(1795), - [anon_sym_pub] = ACTIONS(1795), - [anon_sym_mut] = ACTIONS(1795), - [anon_sym_enum] = ACTIONS(1795), - [anon_sym_interface] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_go] = ACTIONS(1795), - [anon_sym_spawn] = ACTIONS(1795), - [anon_sym_json_DOTdecode] = ACTIONS(1795), - [anon_sym_LBRACK2] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_CARET] = ACTIONS(3534), - [anon_sym_AMP] = ACTIONS(3536), - [anon_sym_LT_DASH] = ACTIONS(1795), - [anon_sym_LT_LT] = ACTIONS(3536), - [anon_sym_GT_GT] = ACTIONS(3536), - [anon_sym_GT_GT_GT] = ACTIONS(3536), - [anon_sym_AMP_CARET] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(3540), - [anon_sym_PIPE_PIPE] = ACTIONS(3544), - [anon_sym_or] = ACTIONS(3516), - [sym_none] = ACTIONS(1795), - [sym_true] = ACTIONS(1795), - [sym_false] = ACTIONS(1795), - [sym_nil] = ACTIONS(1795), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(1795), - [anon_sym_DOLLARif] = ACTIONS(1795), - [anon_sym_is] = ACTIONS(3518), - [anon_sym_BANGis] = ACTIONS(3518), - [anon_sym_in] = ACTIONS(3542), - [anon_sym_BANGin] = ACTIONS(3542), - [anon_sym_match] = ACTIONS(1795), - [anon_sym_select] = ACTIONS(1795), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1795), - [anon_sym_sql] = ACTIONS(1795), - [sym_int_literal] = ACTIONS(1795), - [sym_float_literal] = ACTIONS(1795), - [sym_rune_literal] = ACTIONS(1795), - [sym_pseudo_compile_time_identifier] = ACTIONS(1795), - [anon_sym_shared] = ACTIONS(1795), - [anon_sym_map_LBRACK] = ACTIONS(1795), - [anon_sym_chan] = ACTIONS(1795), - [anon_sym_thread] = ACTIONS(1795), - [anon_sym_atomic] = ACTIONS(1795), - [anon_sym_assert] = ACTIONS(1795), - [anon_sym_defer] = ACTIONS(1795), - [anon_sym_goto] = ACTIONS(1795), - [anon_sym_break] = ACTIONS(1795), - [anon_sym_continue] = ACTIONS(1795), - [anon_sym_return] = ACTIONS(1795), - [anon_sym_DOLLARfor] = ACTIONS(1795), - [anon_sym_for] = ACTIONS(1795), - [anon_sym_POUND] = ACTIONS(1795), - [anon_sym_asm] = ACTIONS(1795), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [sym___double_quote] = ACTIONS(1795), - [sym___single_quote] = ACTIONS(1795), - [sym___c_double_quote] = ACTIONS(1795), - [sym___c_single_quote] = ACTIONS(1795), - [sym___r_double_quote] = ACTIONS(1795), - [sym___r_single_quote] = ACTIONS(1795), - }, - [978] = { - [sym_line_comment] = STATE(978), - [sym_block_comment] = STATE(978), - [sym_type_parameters] = STATE(4189), - [sym_argument_list] = STATE(1068), - [sym_or_block] = STATE(1064), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), [ts_builtin_sym_end] = ACTIONS(3558), [sym_identifier] = ACTIONS(3560), [anon_sym_LF] = ACTIONS(3560), @@ -135103,64 +134975,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(3560), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_as] = ACTIONS(3488), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(3492), [anon_sym_LBRACE] = ACTIONS(3560), [anon_sym_const] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(3496), [anon_sym___global] = ACTIONS(3560), [anon_sym_type] = ACTIONS(3560), - [anon_sym_PIPE] = ACTIONS(3534), + [anon_sym_PIPE] = ACTIONS(3542), [anon_sym_fn] = ACTIONS(3560), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_SLASH] = ACTIONS(3536), - [anon_sym_PERCENT] = ACTIONS(3536), - [anon_sym_LT] = ACTIONS(3538), - [anon_sym_GT] = ACTIONS(3538), - [anon_sym_EQ_EQ] = ACTIONS(3538), - [anon_sym_BANG_EQ] = ACTIONS(3538), - [anon_sym_LT_EQ] = ACTIONS(3538), - [anon_sym_GT_EQ] = ACTIONS(3538), - [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_STAR] = ACTIONS(3544), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_PERCENT] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_GT] = ACTIONS(3546), + [anon_sym_EQ_EQ] = ACTIONS(3546), + [anon_sym_BANG_EQ] = ACTIONS(3546), + [anon_sym_LT_EQ] = ACTIONS(3546), + [anon_sym_GT_EQ] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3504), [anon_sym_struct] = ACTIONS(3560), [anon_sym_union] = ACTIONS(3560), [anon_sym_pub] = ACTIONS(3560), [anon_sym_mut] = ACTIONS(3560), [anon_sym_enum] = ACTIONS(3560), [anon_sym_interface] = ACTIONS(3560), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [anon_sym_QMARK] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), [anon_sym_go] = ACTIONS(3560), [anon_sym_spawn] = ACTIONS(3560), [anon_sym_json_DOTdecode] = ACTIONS(3560), - [anon_sym_LBRACK2] = ACTIONS(3510), + [anon_sym_LBRACK2] = ACTIONS(3514), [anon_sym_TILDE] = ACTIONS(3560), - [anon_sym_CARET] = ACTIONS(3560), - [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_CARET] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3544), [anon_sym_LT_DASH] = ACTIONS(3560), - [anon_sym_LT_LT] = ACTIONS(3536), - [anon_sym_GT_GT] = ACTIONS(3536), - [anon_sym_GT_GT_GT] = ACTIONS(3536), - [anon_sym_AMP_CARET] = ACTIONS(3536), - [anon_sym_AMP_AMP] = ACTIONS(3540), - [anon_sym_PIPE_PIPE] = ACTIONS(3544), - [anon_sym_or] = ACTIONS(3516), + [anon_sym_LT_LT] = ACTIONS(3544), + [anon_sym_GT_GT] = ACTIONS(3544), + [anon_sym_GT_GT_GT] = ACTIONS(3544), + [anon_sym_AMP_CARET] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3548), + [anon_sym_PIPE_PIPE] = ACTIONS(3550), + [anon_sym_or] = ACTIONS(3520), [sym_none] = ACTIONS(3560), [sym_true] = ACTIONS(3560), [sym_false] = ACTIONS(3560), [sym_nil] = ACTIONS(3560), - [anon_sym_QMARK_DOT] = ACTIONS(3486), - [anon_sym_POUND_LBRACK] = ACTIONS(3510), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), [anon_sym_if] = ACTIONS(3560), [anon_sym_DOLLARif] = ACTIONS(3560), - [anon_sym_is] = ACTIONS(3518), - [anon_sym_BANGis] = ACTIONS(3518), - [anon_sym_in] = ACTIONS(3542), - [anon_sym_BANGin] = ACTIONS(3542), + [anon_sym_is] = ACTIONS(3522), + [anon_sym_BANGis] = ACTIONS(3522), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_BANGin] = ACTIONS(3552), [anon_sym_match] = ACTIONS(3560), [anon_sym_select] = ACTIONS(3560), [anon_sym_lock] = ACTIONS(3560), @@ -135170,6 +135042,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(3560), [sym_float_literal] = ACTIONS(3560), [sym_rune_literal] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(3560), + [anon_sym_c_SQUOTE] = ACTIONS(3560), + [anon_sym_c_DQUOTE] = ACTIONS(3560), + [anon_sym_r_SQUOTE] = ACTIONS(3560), + [anon_sym_r_DQUOTE] = ACTIONS(3560), [sym_pseudo_compile_time_identifier] = ACTIONS(3560), [anon_sym_shared] = ACTIONS(3560), [anon_sym_map_LBRACK] = ACTIONS(3560), @@ -135187,450 +135065,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3560), [anon_sym_asm] = ACTIONS(3560), [anon_sym_AT_LBRACK] = ACTIONS(3560), - [sym___double_quote] = ACTIONS(3560), - [sym___single_quote] = ACTIONS(3560), - [sym___c_double_quote] = ACTIONS(3560), - [sym___c_single_quote] = ACTIONS(3560), - [sym___r_double_quote] = ACTIONS(3560), - [sym___r_single_quote] = ACTIONS(3560), + }, + [978] = { + [sym_line_comment] = STATE(978), + [sym_block_comment] = STATE(978), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(3562), + [sym_identifier] = ACTIONS(3564), + [anon_sym_LF] = ACTIONS(3564), + [anon_sym_CR] = ACTIONS(3564), + [anon_sym_CR_LF] = ACTIONS(3564), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(3564), + [anon_sym_type] = ACTIONS(3564), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_fn] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_STAR] = ACTIONS(3544), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_PERCENT] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_GT] = ACTIONS(3546), + [anon_sym_EQ_EQ] = ACTIONS(3546), + [anon_sym_BANG_EQ] = ACTIONS(3546), + [anon_sym_LT_EQ] = ACTIONS(3546), + [anon_sym_GT_EQ] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(3564), + [anon_sym_union] = ACTIONS(3564), + [anon_sym_pub] = ACTIONS(3564), + [anon_sym_mut] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), + [anon_sym_interface] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(3564), + [anon_sym_spawn] = ACTIONS(3564), + [anon_sym_json_DOTdecode] = ACTIONS(3564), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_CARET] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3544), + [anon_sym_LT_DASH] = ACTIONS(3564), + [anon_sym_LT_LT] = ACTIONS(3544), + [anon_sym_GT_GT] = ACTIONS(3544), + [anon_sym_GT_GT_GT] = ACTIONS(3544), + [anon_sym_AMP_CARET] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3548), + [anon_sym_PIPE_PIPE] = ACTIONS(3550), + [anon_sym_or] = ACTIONS(3520), + [sym_none] = ACTIONS(3564), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [sym_nil] = ACTIONS(3564), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_DOLLARif] = ACTIONS(3564), + [anon_sym_is] = ACTIONS(3522), + [anon_sym_BANGis] = ACTIONS(3522), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_BANGin] = ACTIONS(3552), + [anon_sym_match] = ACTIONS(3564), + [anon_sym_select] = ACTIONS(3564), + [anon_sym_lock] = ACTIONS(3564), + [anon_sym_rlock] = ACTIONS(3564), + [anon_sym_unsafe] = ACTIONS(3564), + [anon_sym_sql] = ACTIONS(3564), + [sym_int_literal] = ACTIONS(3564), + [sym_float_literal] = ACTIONS(3564), + [sym_rune_literal] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [anon_sym_c_SQUOTE] = ACTIONS(3564), + [anon_sym_c_DQUOTE] = ACTIONS(3564), + [anon_sym_r_SQUOTE] = ACTIONS(3564), + [anon_sym_r_DQUOTE] = ACTIONS(3564), + [sym_pseudo_compile_time_identifier] = ACTIONS(3564), + [anon_sym_shared] = ACTIONS(3564), + [anon_sym_map_LBRACK] = ACTIONS(3564), + [anon_sym_chan] = ACTIONS(3564), + [anon_sym_thread] = ACTIONS(3564), + [anon_sym_atomic] = ACTIONS(3564), + [anon_sym_assert] = ACTIONS(3564), + [anon_sym_defer] = ACTIONS(3564), + [anon_sym_goto] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_DOLLARfor] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_POUND] = ACTIONS(3564), + [anon_sym_asm] = ACTIONS(3564), + [anon_sym_AT_LBRACK] = ACTIONS(3564), }, [979] = { [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [sym_else_branch] = STATE(1007), - [ts_builtin_sym_end] = ACTIONS(1797), - [sym_identifier] = ACTIONS(1799), - [anon_sym_LF] = ACTIONS(1799), - [anon_sym_CR] = ACTIONS(1799), - [anon_sym_CR_LF] = ACTIONS(1799), + [sym_type_parameters] = STATE(4197), + [sym_argument_list] = STATE(1001), + [sym_or_block] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(1777), + [sym_identifier] = ACTIONS(1779), + [anon_sym_LF] = ACTIONS(1779), + [anon_sym_CR] = ACTIONS(1779), + [anon_sym_CR_LF] = ACTIONS(1779), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_COMMA] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym___global] = ACTIONS(1799), - [anon_sym_type] = ACTIONS(1799), - [anon_sym_PIPE] = ACTIONS(1799), - [anon_sym_fn] = ACTIONS(1799), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_SLASH] = ACTIONS(1799), - [anon_sym_PERCENT] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1799), - [anon_sym_GT] = ACTIONS(1799), - [anon_sym_EQ_EQ] = ACTIONS(1799), - [anon_sym_BANG_EQ] = ACTIONS(1799), - [anon_sym_LT_EQ] = ACTIONS(1799), - [anon_sym_GT_EQ] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1797), - [anon_sym_struct] = ACTIONS(1799), - [anon_sym_union] = ACTIONS(1799), - [anon_sym_pub] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_interface] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_QMARK] = ACTIONS(1799), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_go] = ACTIONS(1799), - [anon_sym_spawn] = ACTIONS(1799), - [anon_sym_json_DOTdecode] = ACTIONS(1799), - [anon_sym_LBRACK2] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_LT_DASH] = ACTIONS(1799), - [anon_sym_LT_LT] = ACTIONS(1799), - [anon_sym_GT_GT] = ACTIONS(1799), - [anon_sym_GT_GT_GT] = ACTIONS(1799), - [anon_sym_AMP_CARET] = ACTIONS(1799), - [anon_sym_AMP_AMP] = ACTIONS(1799), - [anon_sym_PIPE_PIPE] = ACTIONS(1799), - [anon_sym_or] = ACTIONS(1799), - [sym_none] = ACTIONS(1799), - [sym_true] = ACTIONS(1799), - [sym_false] = ACTIONS(1799), - [sym_nil] = ACTIONS(1799), - [anon_sym_QMARK_DOT] = ACTIONS(1799), - [anon_sym_POUND_LBRACK] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(3532), - [anon_sym_DOLLARif] = ACTIONS(1799), - [anon_sym_is] = ACTIONS(1799), - [anon_sym_BANGis] = ACTIONS(1799), - [anon_sym_in] = ACTIONS(1799), - [anon_sym_BANGin] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_select] = ACTIONS(1799), - [anon_sym_lock] = ACTIONS(1799), - [anon_sym_rlock] = ACTIONS(1799), - [anon_sym_unsafe] = ACTIONS(1799), - [anon_sym_sql] = ACTIONS(1799), - [sym_int_literal] = ACTIONS(1799), - [sym_float_literal] = ACTIONS(1799), - [sym_rune_literal] = ACTIONS(1799), - [sym_pseudo_compile_time_identifier] = ACTIONS(1799), - [anon_sym_shared] = ACTIONS(1799), - [anon_sym_map_LBRACK] = ACTIONS(1799), - [anon_sym_chan] = ACTIONS(1799), - [anon_sym_thread] = ACTIONS(1799), - [anon_sym_atomic] = ACTIONS(1799), - [anon_sym_assert] = ACTIONS(1799), - [anon_sym_defer] = ACTIONS(1799), - [anon_sym_goto] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_DOLLARfor] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(1799), - [anon_sym_asm] = ACTIONS(1799), - [anon_sym_AT_LBRACK] = ACTIONS(1799), - [sym___double_quote] = ACTIONS(1799), - [sym___single_quote] = ACTIONS(1799), - [sym___c_double_quote] = ACTIONS(1799), - [sym___c_single_quote] = ACTIONS(1799), - [sym___r_double_quote] = ACTIONS(1799), - [sym___r_single_quote] = ACTIONS(1799), + [anon_sym_DOT] = ACTIONS(3490), + [anon_sym_as] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym___global] = ACTIONS(1779), + [anon_sym_type] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(3542), + [anon_sym_fn] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_STAR] = ACTIONS(3544), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_PERCENT] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_GT] = ACTIONS(3546), + [anon_sym_EQ_EQ] = ACTIONS(3546), + [anon_sym_BANG_EQ] = ACTIONS(3546), + [anon_sym_LT_EQ] = ACTIONS(3546), + [anon_sym_GT_EQ] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_struct] = ACTIONS(1779), + [anon_sym_union] = ACTIONS(1779), + [anon_sym_pub] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_enum] = ACTIONS(1779), + [anon_sym_interface] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [anon_sym_QMARK] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_go] = ACTIONS(1779), + [anon_sym_spawn] = ACTIONS(1779), + [anon_sym_json_DOTdecode] = ACTIONS(1779), + [anon_sym_LBRACK2] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_CARET] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3544), + [anon_sym_LT_DASH] = ACTIONS(1779), + [anon_sym_LT_LT] = ACTIONS(3544), + [anon_sym_GT_GT] = ACTIONS(3544), + [anon_sym_GT_GT_GT] = ACTIONS(3544), + [anon_sym_AMP_CARET] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3548), + [anon_sym_PIPE_PIPE] = ACTIONS(3550), + [anon_sym_or] = ACTIONS(3520), + [sym_none] = ACTIONS(1779), + [sym_true] = ACTIONS(1779), + [sym_false] = ACTIONS(1779), + [sym_nil] = ACTIONS(1779), + [anon_sym_QMARK_DOT] = ACTIONS(3490), + [anon_sym_POUND_LBRACK] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1779), + [anon_sym_is] = ACTIONS(3522), + [anon_sym_BANGis] = ACTIONS(3522), + [anon_sym_in] = ACTIONS(3552), + [anon_sym_BANGin] = ACTIONS(3552), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_select] = ACTIONS(1779), + [anon_sym_lock] = ACTIONS(1779), + [anon_sym_rlock] = ACTIONS(1779), + [anon_sym_unsafe] = ACTIONS(1779), + [anon_sym_sql] = ACTIONS(1779), + [sym_int_literal] = ACTIONS(1779), + [sym_float_literal] = ACTIONS(1779), + [sym_rune_literal] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_c_SQUOTE] = ACTIONS(1779), + [anon_sym_c_DQUOTE] = ACTIONS(1779), + [anon_sym_r_SQUOTE] = ACTIONS(1779), + [anon_sym_r_DQUOTE] = ACTIONS(1779), + [sym_pseudo_compile_time_identifier] = ACTIONS(1779), + [anon_sym_shared] = ACTIONS(1779), + [anon_sym_map_LBRACK] = ACTIONS(1779), + [anon_sym_chan] = ACTIONS(1779), + [anon_sym_thread] = ACTIONS(1779), + [anon_sym_atomic] = ACTIONS(1779), + [anon_sym_assert] = ACTIONS(1779), + [anon_sym_defer] = ACTIONS(1779), + [anon_sym_goto] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_DOLLARfor] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1779), + [anon_sym_AT_LBRACK] = ACTIONS(1779), }, [980] = { [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [ts_builtin_sym_end] = ACTIONS(1811), - [sym_identifier] = ACTIONS(1813), - [anon_sym_LF] = ACTIONS(1813), - [anon_sym_CR] = ACTIONS(1813), - [anon_sym_CR_LF] = ACTIONS(1813), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LF] = ACTIONS(1889), + [anon_sym_CR] = ACTIONS(1889), + [anon_sym_CR_LF] = ACTIONS(1889), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_as] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_COMMA] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(1813), - [anon_sym___global] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1813), - [anon_sym_PIPE] = ACTIONS(1813), - [anon_sym_fn] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_SLASH] = ACTIONS(1813), - [anon_sym_PERCENT] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_GT] = ACTIONS(1813), - [anon_sym_EQ_EQ] = ACTIONS(1813), - [anon_sym_BANG_EQ] = ACTIONS(1813), - [anon_sym_LT_EQ] = ACTIONS(1813), - [anon_sym_GT_EQ] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_union] = ACTIONS(1813), - [anon_sym_pub] = ACTIONS(1813), - [anon_sym_mut] = ACTIONS(1813), - [anon_sym_enum] = ACTIONS(1813), - [anon_sym_interface] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_QMARK] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_go] = ACTIONS(1813), - [anon_sym_spawn] = ACTIONS(1813), - [anon_sym_json_DOTdecode] = ACTIONS(1813), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_LT_DASH] = ACTIONS(1813), - [anon_sym_LT_LT] = ACTIONS(1813), - [anon_sym_GT_GT] = ACTIONS(1813), - [anon_sym_GT_GT_GT] = ACTIONS(1813), - [anon_sym_AMP_CARET] = ACTIONS(1813), - [anon_sym_AMP_AMP] = ACTIONS(1813), - [anon_sym_PIPE_PIPE] = ACTIONS(1813), - [anon_sym_or] = ACTIONS(1813), - [sym_none] = ACTIONS(1813), - [sym_true] = ACTIONS(1813), - [sym_false] = ACTIONS(1813), - [sym_nil] = ACTIONS(1813), - [anon_sym_QMARK_DOT] = ACTIONS(1813), - [anon_sym_POUND_LBRACK] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_else] = ACTIONS(1813), - [anon_sym_DOLLARif] = ACTIONS(1813), - [anon_sym_is] = ACTIONS(1813), - [anon_sym_BANGis] = ACTIONS(1813), - [anon_sym_in] = ACTIONS(1813), - [anon_sym_BANGin] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1813), - [anon_sym_rlock] = ACTIONS(1813), - [anon_sym_unsafe] = ACTIONS(1813), - [anon_sym_sql] = ACTIONS(1813), - [sym_int_literal] = ACTIONS(1813), - [sym_float_literal] = ACTIONS(1813), - [sym_rune_literal] = ACTIONS(1813), - [sym_pseudo_compile_time_identifier] = ACTIONS(1813), - [anon_sym_shared] = ACTIONS(1813), - [anon_sym_map_LBRACK] = ACTIONS(1813), - [anon_sym_chan] = ACTIONS(1813), - [anon_sym_thread] = ACTIONS(1813), - [anon_sym_atomic] = ACTIONS(1813), - [anon_sym_assert] = ACTIONS(1813), - [anon_sym_defer] = ACTIONS(1813), - [anon_sym_goto] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_DOLLARfor] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_POUND] = ACTIONS(1813), - [anon_sym_asm] = ACTIONS(1813), - [anon_sym_AT_LBRACK] = ACTIONS(1813), - [sym___double_quote] = ACTIONS(1813), - [sym___single_quote] = ACTIONS(1813), - [sym___c_double_quote] = ACTIONS(1813), - [sym___c_single_quote] = ACTIONS(1813), - [sym___r_double_quote] = ACTIONS(1813), - [sym___r_single_quote] = ACTIONS(1813), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_COMMA] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym___global] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_PERCENT] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_EQ_EQ] = ACTIONS(1889), + [anon_sym_BANG_EQ] = ACTIONS(1889), + [anon_sym_LT_EQ] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_union] = ACTIONS(1889), + [anon_sym_pub] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1889), + [anon_sym_interface] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1889), + [anon_sym_spawn] = ACTIONS(1889), + [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_LBRACK2] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1889), + [anon_sym_LT_LT] = ACTIONS(1889), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT_GT] = ACTIONS(1889), + [anon_sym_AMP_CARET] = ACTIONS(1889), + [anon_sym_AMP_AMP] = ACTIONS(1889), + [anon_sym_PIPE_PIPE] = ACTIONS(1889), + [anon_sym_or] = ACTIONS(1889), + [sym_none] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_nil] = ACTIONS(1889), + [anon_sym_QMARK_DOT] = ACTIONS(1889), + [anon_sym_POUND_LBRACK] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_DOLLARif] = ACTIONS(1889), + [anon_sym_DOLLARelse] = ACTIONS(1889), + [anon_sym_is] = ACTIONS(1889), + [anon_sym_BANGis] = ACTIONS(1889), + [anon_sym_in] = ACTIONS(1889), + [anon_sym_BANGin] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_select] = ACTIONS(1889), + [anon_sym_lock] = ACTIONS(1889), + [anon_sym_rlock] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_sql] = ACTIONS(1889), + [sym_int_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1889), + [sym_rune_literal] = ACTIONS(1889), + [anon_sym_SQUOTE] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(1889), + [anon_sym_c_SQUOTE] = ACTIONS(1889), + [anon_sym_c_DQUOTE] = ACTIONS(1889), + [anon_sym_r_SQUOTE] = ACTIONS(1889), + [anon_sym_r_DQUOTE] = ACTIONS(1889), + [sym_pseudo_compile_time_identifier] = ACTIONS(1889), + [anon_sym_shared] = ACTIONS(1889), + [anon_sym_map_LBRACK] = ACTIONS(1889), + [anon_sym_chan] = ACTIONS(1889), + [anon_sym_thread] = ACTIONS(1889), + [anon_sym_atomic] = ACTIONS(1889), + [anon_sym_assert] = ACTIONS(1889), + [anon_sym_defer] = ACTIONS(1889), + [anon_sym_goto] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_DOLLARfor] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(1889), + [anon_sym_asm] = ACTIONS(1889), + [anon_sym_AT_LBRACK] = ACTIONS(1889), }, [981] = { [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [ts_builtin_sym_end] = ACTIONS(1841), - [sym_identifier] = ACTIONS(1843), - [anon_sym_LF] = ACTIONS(1843), - [anon_sym_CR] = ACTIONS(1843), - [anon_sym_CR_LF] = ACTIONS(1843), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1843), - [anon_sym_as] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_COMMA] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym___global] = ACTIONS(1843), - [anon_sym_type] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_fn] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1843), - [anon_sym_SLASH] = ACTIONS(1843), - [anon_sym_PERCENT] = ACTIONS(1843), - [anon_sym_LT] = ACTIONS(1843), - [anon_sym_GT] = ACTIONS(1843), - [anon_sym_EQ_EQ] = ACTIONS(1843), - [anon_sym_BANG_EQ] = ACTIONS(1843), - [anon_sym_LT_EQ] = ACTIONS(1843), - [anon_sym_GT_EQ] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_struct] = ACTIONS(1843), - [anon_sym_union] = ACTIONS(1843), - [anon_sym_pub] = ACTIONS(1843), - [anon_sym_mut] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1843), - [anon_sym_interface] = ACTIONS(1843), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_go] = ACTIONS(1843), - [anon_sym_spawn] = ACTIONS(1843), - [anon_sym_json_DOTdecode] = ACTIONS(1843), - [anon_sym_LBRACK2] = ACTIONS(1843), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_CARET] = ACTIONS(1843), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_LT_DASH] = ACTIONS(1843), - [anon_sym_LT_LT] = ACTIONS(1843), - [anon_sym_GT_GT] = ACTIONS(1843), - [anon_sym_GT_GT_GT] = ACTIONS(1843), - [anon_sym_AMP_CARET] = ACTIONS(1843), - [anon_sym_AMP_AMP] = ACTIONS(1843), - [anon_sym_PIPE_PIPE] = ACTIONS(1843), - [anon_sym_or] = ACTIONS(1843), - [sym_none] = ACTIONS(1843), - [sym_true] = ACTIONS(1843), - [sym_false] = ACTIONS(1843), - [sym_nil] = ACTIONS(1843), - [anon_sym_QMARK_DOT] = ACTIONS(1843), - [anon_sym_POUND_LBRACK] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_DOLLARif] = ACTIONS(1843), - [anon_sym_DOLLARelse] = ACTIONS(3562), - [anon_sym_is] = ACTIONS(1843), - [anon_sym_BANGis] = ACTIONS(1843), - [anon_sym_in] = ACTIONS(1843), - [anon_sym_BANGin] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_select] = ACTIONS(1843), - [anon_sym_lock] = ACTIONS(1843), - [anon_sym_rlock] = ACTIONS(1843), - [anon_sym_unsafe] = ACTIONS(1843), - [anon_sym_sql] = ACTIONS(1843), - [sym_int_literal] = ACTIONS(1843), - [sym_float_literal] = ACTIONS(1843), - [sym_rune_literal] = ACTIONS(1843), - [sym_pseudo_compile_time_identifier] = ACTIONS(1843), - [anon_sym_shared] = ACTIONS(1843), - [anon_sym_map_LBRACK] = ACTIONS(1843), - [anon_sym_chan] = ACTIONS(1843), - [anon_sym_thread] = ACTIONS(1843), - [anon_sym_atomic] = ACTIONS(1843), - [anon_sym_assert] = ACTIONS(1843), - [anon_sym_defer] = ACTIONS(1843), - [anon_sym_goto] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_DOLLARfor] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_POUND] = ACTIONS(1843), - [anon_sym_asm] = ACTIONS(1843), - [anon_sym_AT_LBRACK] = ACTIONS(1843), - [sym___double_quote] = ACTIONS(1843), - [sym___single_quote] = ACTIONS(1843), - [sym___c_double_quote] = ACTIONS(1843), - [sym___c_single_quote] = ACTIONS(1843), - [sym___r_double_quote] = ACTIONS(1843), - [sym___r_single_quote] = ACTIONS(1843), - }, - [982] = { - [sym_line_comment] = STATE(982), - [sym_block_comment] = STATE(982), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2345), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_RBRACE] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(627), - [anon_sym_mut] = ACTIONS(627), - [anon_sym_COLON] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_go] = ACTIONS(627), - [anon_sym_spawn] = ACTIONS(627), - [anon_sym_json_DOTdecode] = ACTIONS(625), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(627), - [anon_sym_LT_DASH] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(625), - [anon_sym_AMP_CARET] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(625), - [anon_sym_or] = ACTIONS(627), - [sym_none] = ACTIONS(627), - [sym_true] = ACTIONS(627), - [sym_false] = ACTIONS(627), - [sym_nil] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(625), - [anon_sym_POUND_LBRACK] = ACTIONS(625), - [anon_sym_if] = ACTIONS(627), - [anon_sym_DOLLARif] = ACTIONS(627), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(625), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(625), - [anon_sym_match] = ACTIONS(627), - [anon_sym_select] = ACTIONS(627), - [anon_sym_lock] = ACTIONS(627), - [anon_sym_rlock] = ACTIONS(627), - [anon_sym_unsafe] = ACTIONS(627), - [anon_sym_sql] = ACTIONS(627), - [sym_int_literal] = ACTIONS(627), - [sym_float_literal] = ACTIONS(625), - [sym_rune_literal] = ACTIONS(625), - [sym_pseudo_compile_time_identifier] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(627), - [anon_sym_map_LBRACK] = ACTIONS(625), - [anon_sym_chan] = ACTIONS(627), - [anon_sym_thread] = ACTIONS(627), - [anon_sym_atomic] = ACTIONS(627), - [sym___double_quote] = ACTIONS(625), - [sym___single_quote] = ACTIONS(625), - [sym___c_double_quote] = ACTIONS(625), - [sym___c_single_quote] = ACTIONS(625), - [sym___r_double_quote] = ACTIONS(625), - [sym___r_single_quote] = ACTIONS(625), - }, - [983] = { - [sym_line_comment] = STATE(983), - [sym_block_comment] = STATE(983), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2320), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), + [sym_reference_expression] = STATE(4323), + [sym_type_reference_expression] = STATE(1277), + [sym_plain_type] = STATE(1323), + [sym__plain_type_without_special] = STATE(1296), + [sym_anon_struct_type] = STATE(1299), + [sym_multi_return_type] = STATE(1296), + [sym_result_type] = STATE(1296), + [sym_option_type] = STATE(1296), + [sym_qualified_type] = STATE(1277), + [sym_fixed_array_type] = STATE(1299), + [sym_array_type] = STATE(1299), + [sym_pointer_type] = STATE(1299), + [sym_wrong_pointer_type] = STATE(1299), + [sym_map_type] = STATE(1299), + [sym_channel_type] = STATE(1299), + [sym_shared_type] = STATE(1299), + [sym_thread_type] = STATE(1299), + [sym_atomic_type] = STATE(1299), + [sym_generic_type] = STATE(1299), + [sym_function_type] = STATE(1299), + [sym_identifier] = ACTIONS(3566), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(567), @@ -135638,12 +135408,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(563), [anon_sym_COMMA] = ACTIONS(563), [anon_sym_RBRACE] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3568), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(3570), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3566), + [anon_sym_STAR] = ACTIONS(3572), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(563), [anon_sym_LT] = ACTIONS(567), @@ -135654,20 +135424,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(563), [anon_sym_LBRACK] = ACTIONS(563), [anon_sym_RBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(3574), [anon_sym_mut] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(563), [anon_sym_PLUS_PLUS] = ACTIONS(563), [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3568), + [anon_sym_QMARK] = ACTIONS(3576), + [anon_sym_BANG] = ACTIONS(3578), [anon_sym_go] = ACTIONS(567), [anon_sym_spawn] = ACTIONS(567), [anon_sym_json_DOTdecode] = ACTIONS(563), - [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_LBRACK2] = ACTIONS(3580), [anon_sym_TILDE] = ACTIONS(563), [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(3582), [anon_sym_LT_DASH] = ACTIONS(563), [anon_sym_LT_LT] = ACTIONS(563), [anon_sym_GT_GT] = ACTIONS(567), @@ -135697,22 +135467,537 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(567), [sym_float_literal] = ACTIONS(563), [sym_rune_literal] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(563), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_c_SQUOTE] = ACTIONS(563), + [anon_sym_c_DQUOTE] = ACTIONS(563), + [anon_sym_r_SQUOTE] = ACTIONS(563), + [anon_sym_r_DQUOTE] = ACTIONS(563), [sym_pseudo_compile_time_identifier] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(563), - [sym___single_quote] = ACTIONS(563), - [sym___c_double_quote] = ACTIONS(563), - [sym___c_single_quote] = ACTIONS(563), - [sym___r_double_quote] = ACTIONS(563), - [sym___r_single_quote] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(3584), + [anon_sym_map_LBRACK] = ACTIONS(3586), + [anon_sym_chan] = ACTIONS(3588), + [anon_sym_thread] = ACTIONS(3590), + [anon_sym_atomic] = ACTIONS(3592), + }, + [982] = { + [sym_line_comment] = STATE(982), + [sym_block_comment] = STATE(982), + [sym_reference_expression] = STATE(4323), + [sym_type_reference_expression] = STATE(1277), + [sym_plain_type] = STATE(1311), + [sym__plain_type_without_special] = STATE(1296), + [sym_anon_struct_type] = STATE(1299), + [sym_multi_return_type] = STATE(1296), + [sym_result_type] = STATE(1296), + [sym_option_type] = STATE(1296), + [sym_qualified_type] = STATE(1277), + [sym_fixed_array_type] = STATE(1299), + [sym_array_type] = STATE(1299), + [sym_pointer_type] = STATE(1299), + [sym_wrong_pointer_type] = STATE(1299), + [sym_map_type] = STATE(1299), + [sym_channel_type] = STATE(1299), + [sym_shared_type] = STATE(1299), + [sym_thread_type] = STATE(1299), + [sym_atomic_type] = STATE(1299), + [sym_generic_type] = STATE(1299), + [sym_function_type] = STATE(1299), + [sym_identifier] = ACTIONS(3566), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(3574), + [anon_sym_mut] = ACTIONS(597), + [anon_sym_COLON] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_QMARK] = ACTIONS(3576), + [anon_sym_BANG] = ACTIONS(3578), + [anon_sym_go] = ACTIONS(597), + [anon_sym_spawn] = ACTIONS(597), + [anon_sym_json_DOTdecode] = ACTIONS(595), + [anon_sym_LBRACK2] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(3582), + [anon_sym_LT_DASH] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(595), + [anon_sym_AMP_CARET] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_or] = ACTIONS(597), + [sym_none] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_nil] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(595), + [anon_sym_POUND_LBRACK] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(595), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(595), + [anon_sym_match] = ACTIONS(597), + [anon_sym_select] = ACTIONS(597), + [anon_sym_lock] = ACTIONS(597), + [anon_sym_rlock] = ACTIONS(597), + [anon_sym_unsafe] = ACTIONS(597), + [anon_sym_sql] = ACTIONS(597), + [sym_int_literal] = ACTIONS(597), + [sym_float_literal] = ACTIONS(595), + [sym_rune_literal] = ACTIONS(595), + [anon_sym_SQUOTE] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_c_SQUOTE] = ACTIONS(595), + [anon_sym_c_DQUOTE] = ACTIONS(595), + [anon_sym_r_SQUOTE] = ACTIONS(595), + [anon_sym_r_DQUOTE] = ACTIONS(595), + [sym_pseudo_compile_time_identifier] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(3584), + [anon_sym_map_LBRACK] = ACTIONS(3586), + [anon_sym_chan] = ACTIONS(3588), + [anon_sym_thread] = ACTIONS(3590), + [anon_sym_atomic] = ACTIONS(3592), + }, + [983] = { + [sym_line_comment] = STATE(983), + [sym_block_comment] = STATE(983), + [sym_reference_expression] = STATE(4323), + [sym_type_reference_expression] = STATE(1277), + [sym_plain_type] = STATE(1302), + [sym__plain_type_without_special] = STATE(1296), + [sym_anon_struct_type] = STATE(1299), + [sym_multi_return_type] = STATE(1296), + [sym_result_type] = STATE(1296), + [sym_option_type] = STATE(1296), + [sym_qualified_type] = STATE(1277), + [sym_fixed_array_type] = STATE(1299), + [sym_array_type] = STATE(1299), + [sym_pointer_type] = STATE(1299), + [sym_wrong_pointer_type] = STATE(1299), + [sym_map_type] = STATE(1299), + [sym_channel_type] = STATE(1299), + [sym_shared_type] = STATE(1299), + [sym_thread_type] = STATE(1299), + [sym_atomic_type] = STATE(1299), + [sym_generic_type] = STATE(1299), + [sym_function_type] = STATE(1299), + [sym_identifier] = ACTIONS(3566), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(599), + [anon_sym_GT_EQ] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(3574), + [anon_sym_mut] = ACTIONS(601), + [anon_sym_COLON] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(3576), + [anon_sym_BANG] = ACTIONS(3578), + [anon_sym_go] = ACTIONS(601), + [anon_sym_spawn] = ACTIONS(601), + [anon_sym_json_DOTdecode] = ACTIONS(599), + [anon_sym_LBRACK2] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(599), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(3582), + [anon_sym_LT_DASH] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(599), + [anon_sym_AMP_CARET] = ACTIONS(599), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_or] = ACTIONS(601), + [sym_none] = ACTIONS(601), + [sym_true] = ACTIONS(601), + [sym_false] = ACTIONS(601), + [sym_nil] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_if] = ACTIONS(601), + [anon_sym_DOLLARif] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(599), + [anon_sym_match] = ACTIONS(601), + [anon_sym_select] = ACTIONS(601), + [anon_sym_lock] = ACTIONS(601), + [anon_sym_rlock] = ACTIONS(601), + [anon_sym_unsafe] = ACTIONS(601), + [anon_sym_sql] = ACTIONS(601), + [sym_int_literal] = ACTIONS(601), + [sym_float_literal] = ACTIONS(599), + [sym_rune_literal] = ACTIONS(599), + [anon_sym_SQUOTE] = ACTIONS(599), + [anon_sym_DQUOTE] = ACTIONS(599), + [anon_sym_c_SQUOTE] = ACTIONS(599), + [anon_sym_c_DQUOTE] = ACTIONS(599), + [anon_sym_r_SQUOTE] = ACTIONS(599), + [anon_sym_r_DQUOTE] = ACTIONS(599), + [sym_pseudo_compile_time_identifier] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(3584), + [anon_sym_map_LBRACK] = ACTIONS(3586), + [anon_sym_chan] = ACTIONS(3588), + [anon_sym_thread] = ACTIONS(3590), + [anon_sym_atomic] = ACTIONS(3592), }, [984] = { [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), + [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), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2079), + [anon_sym_as] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_COMMA] = ACTIONS(2079), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym___global] = ACTIONS(2079), + [anon_sym_type] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_SLASH] = ACTIONS(2079), + [anon_sym_PERCENT] = ACTIONS(2079), + [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(2077), + [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(2079), + [anon_sym_BANG] = ACTIONS(2079), + [anon_sym_go] = ACTIONS(2079), + [anon_sym_spawn] = ACTIONS(2079), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2079), + [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(2079), + [anon_sym_GT_GT] = ACTIONS(2079), + [anon_sym_GT_GT_GT] = ACTIONS(2079), + [anon_sym_AMP_CARET] = ACTIONS(2079), + [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(2079), + [anon_sym_POUND_LBRACK] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_DOLLARif] = ACTIONS(2079), + [anon_sym_DOLLARelse] = ACTIONS(3594), + [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), + }, + [985] = { + [sym_line_comment] = STATE(985), + [sym_block_comment] = STATE(985), + [ts_builtin_sym_end] = ACTIONS(2039), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LF] = ACTIONS(2041), + [anon_sym_CR] = ACTIONS(2041), + [anon_sym_CR_LF] = ACTIONS(2041), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2041), + [anon_sym_as] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_const] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym___global] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2041), + [anon_sym_PIPE] = ACTIONS(2041), + [anon_sym_fn] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2041), + [anon_sym_STAR] = ACTIONS(2041), + [anon_sym_SLASH] = ACTIONS(2041), + [anon_sym_PERCENT] = ACTIONS(2041), + [anon_sym_LT] = ACTIONS(2041), + [anon_sym_GT] = ACTIONS(2041), + [anon_sym_EQ_EQ] = ACTIONS(2041), + [anon_sym_BANG_EQ] = ACTIONS(2041), + [anon_sym_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_EQ] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_struct] = ACTIONS(2041), + [anon_sym_union] = ACTIONS(2041), + [anon_sym_pub] = ACTIONS(2041), + [anon_sym_mut] = ACTIONS(2041), + [anon_sym_enum] = ACTIONS(2041), + [anon_sym_interface] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_QMARK] = ACTIONS(2041), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_go] = ACTIONS(2041), + [anon_sym_spawn] = ACTIONS(2041), + [anon_sym_json_DOTdecode] = ACTIONS(2041), + [anon_sym_LBRACK2] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_LT_DASH] = ACTIONS(2041), + [anon_sym_LT_LT] = ACTIONS(2041), + [anon_sym_GT_GT] = ACTIONS(2041), + [anon_sym_GT_GT_GT] = ACTIONS(2041), + [anon_sym_AMP_CARET] = ACTIONS(2041), + [anon_sym_AMP_AMP] = ACTIONS(2041), + [anon_sym_PIPE_PIPE] = ACTIONS(2041), + [anon_sym_or] = ACTIONS(2041), + [sym_none] = ACTIONS(2041), + [sym_true] = ACTIONS(2041), + [sym_false] = ACTIONS(2041), + [sym_nil] = ACTIONS(2041), + [anon_sym_QMARK_DOT] = ACTIONS(2041), + [anon_sym_POUND_LBRACK] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_DOLLARif] = ACTIONS(2041), + [anon_sym_DOLLARelse] = ACTIONS(3596), + [anon_sym_is] = ACTIONS(2041), + [anon_sym_BANGis] = ACTIONS(2041), + [anon_sym_in] = ACTIONS(2041), + [anon_sym_BANGin] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_select] = ACTIONS(2041), + [anon_sym_lock] = ACTIONS(2041), + [anon_sym_rlock] = ACTIONS(2041), + [anon_sym_unsafe] = ACTIONS(2041), + [anon_sym_sql] = ACTIONS(2041), + [sym_int_literal] = ACTIONS(2041), + [sym_float_literal] = ACTIONS(2041), + [sym_rune_literal] = ACTIONS(2041), + [anon_sym_SQUOTE] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(2041), + [anon_sym_c_SQUOTE] = ACTIONS(2041), + [anon_sym_c_DQUOTE] = ACTIONS(2041), + [anon_sym_r_SQUOTE] = ACTIONS(2041), + [anon_sym_r_DQUOTE] = ACTIONS(2041), + [sym_pseudo_compile_time_identifier] = ACTIONS(2041), + [anon_sym_shared] = ACTIONS(2041), + [anon_sym_map_LBRACK] = ACTIONS(2041), + [anon_sym_chan] = ACTIONS(2041), + [anon_sym_thread] = ACTIONS(2041), + [anon_sym_atomic] = ACTIONS(2041), + [anon_sym_assert] = ACTIONS(2041), + [anon_sym_defer] = ACTIONS(2041), + [anon_sym_goto] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_DOLLARfor] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_POUND] = ACTIONS(2041), + [anon_sym_asm] = ACTIONS(2041), + [anon_sym_AT_LBRACK] = ACTIONS(2041), + }, + [986] = { + [sym_line_comment] = STATE(986), + [sym_block_comment] = STATE(986), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LF] = ACTIONS(1889), + [anon_sym_CR] = ACTIONS(1889), + [anon_sym_CR_LF] = ACTIONS(1889), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_COMMA] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym___global] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_PERCENT] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_EQ_EQ] = ACTIONS(1889), + [anon_sym_BANG_EQ] = ACTIONS(1889), + [anon_sym_LT_EQ] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_union] = ACTIONS(1889), + [anon_sym_pub] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1889), + [anon_sym_interface] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1889), + [anon_sym_spawn] = ACTIONS(1889), + [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_LBRACK2] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1889), + [anon_sym_LT_LT] = ACTIONS(1889), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT_GT] = ACTIONS(1889), + [anon_sym_AMP_CARET] = ACTIONS(1889), + [anon_sym_AMP_AMP] = ACTIONS(1889), + [anon_sym_PIPE_PIPE] = ACTIONS(1889), + [anon_sym_or] = ACTIONS(1889), + [sym_none] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_nil] = ACTIONS(1889), + [anon_sym_QMARK_DOT] = ACTIONS(1889), + [anon_sym_POUND_LBRACK] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_else] = ACTIONS(1889), + [anon_sym_DOLLARif] = ACTIONS(1889), + [anon_sym_is] = ACTIONS(1889), + [anon_sym_BANGis] = ACTIONS(1889), + [anon_sym_in] = ACTIONS(1889), + [anon_sym_BANGin] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_select] = ACTIONS(1889), + [anon_sym_lock] = ACTIONS(1889), + [anon_sym_rlock] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_sql] = ACTIONS(1889), + [sym_int_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1889), + [sym_rune_literal] = ACTIONS(1889), + [anon_sym_SQUOTE] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(1889), + [anon_sym_c_SQUOTE] = ACTIONS(1889), + [anon_sym_c_DQUOTE] = ACTIONS(1889), + [anon_sym_r_SQUOTE] = ACTIONS(1889), + [anon_sym_r_DQUOTE] = ACTIONS(1889), + [sym_pseudo_compile_time_identifier] = ACTIONS(1889), + [anon_sym_shared] = ACTIONS(1889), + [anon_sym_map_LBRACK] = ACTIONS(1889), + [anon_sym_chan] = ACTIONS(1889), + [anon_sym_thread] = ACTIONS(1889), + [anon_sym_atomic] = ACTIONS(1889), + [anon_sym_assert] = ACTIONS(1889), + [anon_sym_defer] = ACTIONS(1889), + [anon_sym_goto] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_DOLLARfor] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(1889), + [anon_sym_asm] = ACTIONS(1889), + [anon_sym_AT_LBRACK] = ACTIONS(1889), + }, + [987] = { + [sym_line_comment] = STATE(987), + [sym_block_comment] = STATE(987), [ts_builtin_sym_end] = ACTIONS(1807), [sym_identifier] = ACTIONS(1809), [anon_sym_LF] = ACTIONS(1809), @@ -135789,6 +136074,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1809), [sym_float_literal] = ACTIONS(1809), [sym_rune_literal] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_c_SQUOTE] = ACTIONS(1809), + [anon_sym_c_DQUOTE] = ACTIONS(1809), + [anon_sym_r_SQUOTE] = ACTIONS(1809), + [anon_sym_r_DQUOTE] = ACTIONS(1809), [sym_pseudo_compile_time_identifier] = ACTIONS(1809), [anon_sym_shared] = ACTIONS(1809), [anon_sym_map_LBRACK] = ACTIONS(1809), @@ -135806,321 +136097,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(1809), [anon_sym_asm] = ACTIONS(1809), [anon_sym_AT_LBRACK] = ACTIONS(1809), - [sym___double_quote] = ACTIONS(1809), - [sym___single_quote] = ACTIONS(1809), - [sym___c_double_quote] = ACTIONS(1809), - [sym___c_single_quote] = ACTIONS(1809), - [sym___r_double_quote] = ACTIONS(1809), - [sym___r_single_quote] = ACTIONS(1809), - }, - [985] = { - [sym_line_comment] = STATE(985), - [sym_block_comment] = STATE(985), - [sym_type_parameters] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(1879), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1881), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_union] = ACTIONS(1881), - [anon_sym_pub] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_enum] = ACTIONS(1881), - [anon_sym_interface] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_QMARK] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_GT_GT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_AMP_CARET] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_or] = ACTIONS(1881), - [sym_none] = ACTIONS(1881), - [sym_true] = ACTIONS(1881), - [sym_false] = ACTIONS(1881), - [sym_nil] = ACTIONS(1881), - [anon_sym_QMARK_DOT] = ACTIONS(1881), - [anon_sym_POUND_LBRACK] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_BANGin] = ACTIONS(1881), - [anon_sym_match] = ACTIONS(1881), - [anon_sym_select] = ACTIONS(1881), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1881), - [anon_sym_sql] = ACTIONS(1881), - [sym_int_literal] = ACTIONS(1881), - [sym_float_literal] = ACTIONS(1881), - [sym_rune_literal] = ACTIONS(1881), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1881), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [anon_sym_assert] = ACTIONS(1881), - [anon_sym_defer] = ACTIONS(1881), - [anon_sym_goto] = ACTIONS(1881), - [anon_sym_break] = ACTIONS(1881), - [anon_sym_continue] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1881), - [anon_sym_DOLLARfor] = ACTIONS(1881), - [anon_sym_for] = ACTIONS(1881), - [anon_sym_POUND] = ACTIONS(1881), - [anon_sym_asm] = ACTIONS(1881), - [anon_sym_AT_LBRACK] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1881), - [sym___single_quote] = ACTIONS(1881), - [sym___c_double_quote] = ACTIONS(1881), - [sym___c_single_quote] = ACTIONS(1881), - [sym___r_double_quote] = ACTIONS(1881), - [sym___r_single_quote] = ACTIONS(1881), - }, - [986] = { - [sym_line_comment] = STATE(986), - [sym_block_comment] = STATE(986), - [ts_builtin_sym_end] = ACTIONS(1811), - [sym_identifier] = ACTIONS(1813), - [anon_sym_LF] = ACTIONS(1813), - [anon_sym_CR] = ACTIONS(1813), - [anon_sym_CR_LF] = ACTIONS(1813), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_as] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_COMMA] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(1813), - [anon_sym___global] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1813), - [anon_sym_PIPE] = ACTIONS(1813), - [anon_sym_fn] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_SLASH] = ACTIONS(1813), - [anon_sym_PERCENT] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_GT] = ACTIONS(1813), - [anon_sym_EQ_EQ] = ACTIONS(1813), - [anon_sym_BANG_EQ] = ACTIONS(1813), - [anon_sym_LT_EQ] = ACTIONS(1813), - [anon_sym_GT_EQ] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_union] = ACTIONS(1813), - [anon_sym_pub] = ACTIONS(1813), - [anon_sym_mut] = ACTIONS(1813), - [anon_sym_enum] = ACTIONS(1813), - [anon_sym_interface] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_QMARK] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_go] = ACTIONS(1813), - [anon_sym_spawn] = ACTIONS(1813), - [anon_sym_json_DOTdecode] = ACTIONS(1813), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_LT_DASH] = ACTIONS(1813), - [anon_sym_LT_LT] = ACTIONS(1813), - [anon_sym_GT_GT] = ACTIONS(1813), - [anon_sym_GT_GT_GT] = ACTIONS(1813), - [anon_sym_AMP_CARET] = ACTIONS(1813), - [anon_sym_AMP_AMP] = ACTIONS(1813), - [anon_sym_PIPE_PIPE] = ACTIONS(1813), - [anon_sym_or] = ACTIONS(1813), - [sym_none] = ACTIONS(1813), - [sym_true] = ACTIONS(1813), - [sym_false] = ACTIONS(1813), - [sym_nil] = ACTIONS(1813), - [anon_sym_QMARK_DOT] = ACTIONS(1813), - [anon_sym_POUND_LBRACK] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_DOLLARif] = ACTIONS(1813), - [anon_sym_DOLLARelse] = ACTIONS(1813), - [anon_sym_is] = ACTIONS(1813), - [anon_sym_BANGis] = ACTIONS(1813), - [anon_sym_in] = ACTIONS(1813), - [anon_sym_BANGin] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1813), - [anon_sym_rlock] = ACTIONS(1813), - [anon_sym_unsafe] = ACTIONS(1813), - [anon_sym_sql] = ACTIONS(1813), - [sym_int_literal] = ACTIONS(1813), - [sym_float_literal] = ACTIONS(1813), - [sym_rune_literal] = ACTIONS(1813), - [sym_pseudo_compile_time_identifier] = ACTIONS(1813), - [anon_sym_shared] = ACTIONS(1813), - [anon_sym_map_LBRACK] = ACTIONS(1813), - [anon_sym_chan] = ACTIONS(1813), - [anon_sym_thread] = ACTIONS(1813), - [anon_sym_atomic] = ACTIONS(1813), - [anon_sym_assert] = ACTIONS(1813), - [anon_sym_defer] = ACTIONS(1813), - [anon_sym_goto] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_DOLLARfor] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_POUND] = ACTIONS(1813), - [anon_sym_asm] = ACTIONS(1813), - [anon_sym_AT_LBRACK] = ACTIONS(1813), - [sym___double_quote] = ACTIONS(1813), - [sym___single_quote] = ACTIONS(1813), - [sym___c_double_quote] = ACTIONS(1813), - [sym___c_single_quote] = ACTIONS(1813), - [sym___r_double_quote] = ACTIONS(1813), - [sym___r_single_quote] = ACTIONS(1813), - }, - [987] = { - [sym_line_comment] = STATE(987), - [sym_block_comment] = STATE(987), - [sym_reference_expression] = STATE(4328), - [sym_type_reference_expression] = STATE(1288), - [sym_plain_type] = STATE(1309), - [sym__plain_type_without_special] = STATE(1293), - [sym_anon_struct_type] = STATE(1303), - [sym_multi_return_type] = STATE(1293), - [sym_result_type] = STATE(1293), - [sym_option_type] = STATE(1293), - [sym_qualified_type] = STATE(1288), - [sym_fixed_array_type] = STATE(1303), - [sym_array_type] = STATE(1303), - [sym_pointer_type] = STATE(1303), - [sym_wrong_pointer_type] = STATE(1303), - [sym_map_type] = STATE(1303), - [sym_channel_type] = STATE(1303), - [sym_shared_type] = STATE(1303), - [sym_thread_type] = STATE(1303), - [sym_atomic_type] = STATE(1303), - [sym_generic_type] = STATE(1303), - [sym_function_type] = STATE(1303), - [sym_identifier] = ACTIONS(3570), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3574), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_RBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(3578), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(3580), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(3584), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(3586), - [anon_sym_LT_DASH] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(585), - [sym_rune_literal] = ACTIONS(585), - [sym_pseudo_compile_time_identifier] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3588), - [anon_sym_map_LBRACK] = ACTIONS(3590), - [anon_sym_chan] = ACTIONS(3592), - [anon_sym_thread] = ACTIONS(3594), - [anon_sym_atomic] = ACTIONS(3596), - [sym___double_quote] = ACTIONS(585), - [sym___single_quote] = ACTIONS(585), - [sym___c_double_quote] = ACTIONS(585), - [sym___c_single_quote] = ACTIONS(585), - [sym___r_double_quote] = ACTIONS(585), - [sym___r_single_quote] = ACTIONS(585), }, [988] = { [sym_line_comment] = STATE(988), @@ -136201,6 +136177,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1809), [sym_float_literal] = ACTIONS(1809), [sym_rune_literal] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_c_SQUOTE] = ACTIONS(1809), + [anon_sym_c_DQUOTE] = ACTIONS(1809), + [anon_sym_r_SQUOTE] = ACTIONS(1809), + [anon_sym_r_DQUOTE] = ACTIONS(1809), [sym_pseudo_compile_time_identifier] = ACTIONS(1809), [anon_sym_shared] = ACTIONS(1809), [anon_sym_map_LBRACK] = ACTIONS(1809), @@ -136218,2569 +136200,829 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(1809), [anon_sym_asm] = ACTIONS(1809), [anon_sym_AT_LBRACK] = ACTIONS(1809), - [sym___double_quote] = ACTIONS(1809), - [sym___single_quote] = ACTIONS(1809), - [sym___c_double_quote] = ACTIONS(1809), - [sym___c_single_quote] = ACTIONS(1809), - [sym___r_double_quote] = ACTIONS(1809), - [sym___r_single_quote] = ACTIONS(1809), }, [989] = { [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [ts_builtin_sym_end] = ACTIONS(1911), - [sym_identifier] = ACTIONS(1913), - [anon_sym_LF] = ACTIONS(1913), - [anon_sym_CR] = ACTIONS(1913), - [anon_sym_CR_LF] = ACTIONS(1913), + [sym_type_parameters] = STATE(1062), + [ts_builtin_sym_end] = ACTIONS(1897), + [sym_identifier] = ACTIONS(1899), + [anon_sym_LF] = ACTIONS(1899), + [anon_sym_CR] = ACTIONS(1899), + [anon_sym_CR_LF] = ACTIONS(1899), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1913), - [anon_sym_as] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym___global] = ACTIONS(1913), - [anon_sym_type] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1913), - [anon_sym_fn] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_LT] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_struct] = ACTIONS(1913), - [anon_sym_union] = ACTIONS(1913), - [anon_sym_pub] = ACTIONS(1913), - [anon_sym_mut] = ACTIONS(1913), - [anon_sym_enum] = ACTIONS(1913), - [anon_sym_interface] = ACTIONS(1913), - [anon_sym_PLUS_PLUS] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1913), - [anon_sym_QMARK] = ACTIONS(1913), - [anon_sym_BANG] = ACTIONS(1913), - [anon_sym_go] = ACTIONS(1913), - [anon_sym_spawn] = ACTIONS(1913), - [anon_sym_json_DOTdecode] = ACTIONS(1913), - [anon_sym_LBRACK2] = ACTIONS(1913), - [anon_sym_TILDE] = ACTIONS(1913), - [anon_sym_CARET] = ACTIONS(1913), - [anon_sym_AMP] = ACTIONS(1913), - [anon_sym_LT_DASH] = ACTIONS(1913), - [anon_sym_LT_LT] = ACTIONS(1913), - [anon_sym_GT_GT] = ACTIONS(1913), - [anon_sym_GT_GT_GT] = ACTIONS(1913), - [anon_sym_AMP_CARET] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_or] = ACTIONS(1913), - [sym_none] = ACTIONS(1913), - [sym_true] = ACTIONS(1913), - [sym_false] = ACTIONS(1913), - [sym_nil] = ACTIONS(1913), - [anon_sym_QMARK_DOT] = ACTIONS(1913), - [anon_sym_POUND_LBRACK] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_DOLLARif] = ACTIONS(1913), - [anon_sym_DOLLARelse] = ACTIONS(3598), - [anon_sym_is] = ACTIONS(1913), - [anon_sym_BANGis] = ACTIONS(1913), - [anon_sym_in] = ACTIONS(1913), - [anon_sym_BANGin] = ACTIONS(1913), - [anon_sym_match] = ACTIONS(1913), - [anon_sym_select] = ACTIONS(1913), - [anon_sym_lock] = ACTIONS(1913), - [anon_sym_rlock] = ACTIONS(1913), - [anon_sym_unsafe] = ACTIONS(1913), - [anon_sym_sql] = ACTIONS(1913), - [sym_int_literal] = ACTIONS(1913), - [sym_float_literal] = ACTIONS(1913), - [sym_rune_literal] = ACTIONS(1913), - [sym_pseudo_compile_time_identifier] = ACTIONS(1913), - [anon_sym_shared] = ACTIONS(1913), - [anon_sym_map_LBRACK] = ACTIONS(1913), - [anon_sym_chan] = ACTIONS(1913), - [anon_sym_thread] = ACTIONS(1913), - [anon_sym_atomic] = ACTIONS(1913), - [anon_sym_assert] = ACTIONS(1913), - [anon_sym_defer] = ACTIONS(1913), - [anon_sym_goto] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_DOLLARfor] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(1913), - [anon_sym_asm] = ACTIONS(1913), - [anon_sym_AT_LBRACK] = ACTIONS(1913), - [sym___double_quote] = ACTIONS(1913), - [sym___single_quote] = ACTIONS(1913), - [sym___c_double_quote] = ACTIONS(1913), - [sym___c_single_quote] = ACTIONS(1913), - [sym___r_double_quote] = ACTIONS(1913), - [sym___r_single_quote] = ACTIONS(1913), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_as] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym___global] = ACTIONS(1899), + [anon_sym_type] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_PERCENT] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1899), + [anon_sym_GT_EQ] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_struct] = ACTIONS(1899), + [anon_sym_union] = ACTIONS(1899), + [anon_sym_pub] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_enum] = ACTIONS(1899), + [anon_sym_interface] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_QMARK] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_go] = ACTIONS(1899), + [anon_sym_spawn] = ACTIONS(1899), + [anon_sym_json_DOTdecode] = ACTIONS(1899), + [anon_sym_LBRACK2] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1899), + [anon_sym_LT_LT] = ACTIONS(1899), + [anon_sym_GT_GT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1899), + [anon_sym_AMP_CARET] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(1899), + [anon_sym_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_or] = ACTIONS(1899), + [sym_none] = ACTIONS(1899), + [sym_true] = ACTIONS(1899), + [sym_false] = ACTIONS(1899), + [sym_nil] = ACTIONS(1899), + [anon_sym_QMARK_DOT] = ACTIONS(1899), + [anon_sym_POUND_LBRACK] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_DOLLARif] = ACTIONS(1899), + [anon_sym_is] = ACTIONS(1899), + [anon_sym_BANGis] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_BANGin] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_select] = ACTIONS(1899), + [anon_sym_lock] = ACTIONS(1899), + [anon_sym_rlock] = ACTIONS(1899), + [anon_sym_unsafe] = ACTIONS(1899), + [anon_sym_sql] = ACTIONS(1899), + [sym_int_literal] = ACTIONS(1899), + [sym_float_literal] = ACTIONS(1899), + [sym_rune_literal] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_c_SQUOTE] = ACTIONS(1899), + [anon_sym_c_DQUOTE] = ACTIONS(1899), + [anon_sym_r_SQUOTE] = ACTIONS(1899), + [anon_sym_r_DQUOTE] = ACTIONS(1899), + [sym_pseudo_compile_time_identifier] = ACTIONS(1899), + [anon_sym_shared] = ACTIONS(1899), + [anon_sym_map_LBRACK] = ACTIONS(1899), + [anon_sym_chan] = ACTIONS(1899), + [anon_sym_thread] = ACTIONS(1899), + [anon_sym_atomic] = ACTIONS(1899), + [anon_sym_assert] = ACTIONS(1899), + [anon_sym_defer] = ACTIONS(1899), + [anon_sym_goto] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_DOLLARfor] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(1899), + [anon_sym_asm] = ACTIONS(1899), + [anon_sym_AT_LBRACK] = ACTIONS(1899), }, [990] = { [sym_line_comment] = STATE(990), [sym_block_comment] = STATE(990), - [sym_reference_expression] = STATE(4328), - [sym_type_reference_expression] = STATE(1288), - [sym_plain_type] = STATE(1359), - [sym__plain_type_without_special] = STATE(1293), - [sym_anon_struct_type] = STATE(1303), - [sym_multi_return_type] = STATE(1293), - [sym_result_type] = STATE(1293), - [sym_option_type] = STATE(1293), - [sym_qualified_type] = STATE(1288), - [sym_fixed_array_type] = STATE(1303), - [sym_array_type] = STATE(1303), - [sym_pointer_type] = STATE(1303), - [sym_wrong_pointer_type] = STATE(1303), - [sym_map_type] = STATE(1303), - [sym_channel_type] = STATE(1303), - [sym_shared_type] = STATE(1303), - [sym_thread_type] = STATE(1303), - [sym_atomic_type] = STATE(1303), - [sym_generic_type] = STATE(1303), - [sym_function_type] = STATE(1303), - [sym_identifier] = ACTIONS(3570), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2386), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(3574), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(3578), - [anon_sym_mut] = ACTIONS(623), - [anon_sym_COLON] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(3580), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_go] = ACTIONS(623), - [anon_sym_spawn] = ACTIONS(623), - [anon_sym_json_DOTdecode] = ACTIONS(621), - [anon_sym_LBRACK2] = ACTIONS(3584), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(3586), - [anon_sym_LT_DASH] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(623), - [sym_none] = ACTIONS(623), - [sym_true] = ACTIONS(623), - [sym_false] = ACTIONS(623), - [sym_nil] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_if] = ACTIONS(623), - [anon_sym_DOLLARif] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_match] = ACTIONS(623), - [anon_sym_select] = ACTIONS(623), - [anon_sym_lock] = ACTIONS(623), - [anon_sym_rlock] = ACTIONS(623), - [anon_sym_unsafe] = ACTIONS(623), - [anon_sym_sql] = ACTIONS(623), - [sym_int_literal] = ACTIONS(623), - [sym_float_literal] = ACTIONS(621), - [sym_rune_literal] = ACTIONS(621), - [sym_pseudo_compile_time_identifier] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(3588), - [anon_sym_map_LBRACK] = ACTIONS(3590), - [anon_sym_chan] = ACTIONS(3592), - [anon_sym_thread] = ACTIONS(3594), - [anon_sym_atomic] = ACTIONS(3596), - [sym___double_quote] = ACTIONS(621), - [sym___single_quote] = ACTIONS(621), - [sym___c_double_quote] = ACTIONS(621), - [sym___c_single_quote] = ACTIONS(621), - [sym___r_double_quote] = ACTIONS(621), - [sym___r_single_quote] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RBRACE] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_PIPE] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_RBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_mut] = ACTIONS(607), + [anon_sym_COLON] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3602), + [anon_sym_go] = ACTIONS(607), + [anon_sym_spawn] = ACTIONS(607), + [anon_sym_json_DOTdecode] = ACTIONS(603), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_LT_DASH] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_GT_GT_GT] = ACTIONS(603), + [anon_sym_AMP_CARET] = ACTIONS(603), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_or] = ACTIONS(607), + [sym_none] = ACTIONS(607), + [sym_true] = ACTIONS(607), + [sym_false] = ACTIONS(607), + [sym_nil] = ACTIONS(607), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_if] = ACTIONS(607), + [anon_sym_DOLLARif] = ACTIONS(607), + [anon_sym_is] = ACTIONS(607), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(607), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_match] = ACTIONS(607), + [anon_sym_select] = ACTIONS(607), + [anon_sym_lock] = ACTIONS(607), + [anon_sym_rlock] = ACTIONS(607), + [anon_sym_unsafe] = ACTIONS(607), + [anon_sym_sql] = ACTIONS(607), + [sym_int_literal] = ACTIONS(607), + [sym_float_literal] = ACTIONS(603), + [sym_rune_literal] = ACTIONS(603), + [anon_sym_SQUOTE] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(603), + [anon_sym_c_SQUOTE] = ACTIONS(603), + [anon_sym_c_DQUOTE] = ACTIONS(603), + [anon_sym_r_SQUOTE] = ACTIONS(603), + [anon_sym_r_DQUOTE] = ACTIONS(603), + [sym_pseudo_compile_time_identifier] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [991] = { [sym_line_comment] = STATE(991), [sym_block_comment] = STATE(991), - [sym_reference_expression] = STATE(4328), - [sym_type_reference_expression] = STATE(1288), - [sym_plain_type] = STATE(1339), - [sym__plain_type_without_special] = STATE(1293), - [sym_anon_struct_type] = STATE(1303), - [sym_multi_return_type] = STATE(1293), - [sym_result_type] = STATE(1293), - [sym_option_type] = STATE(1293), - [sym_qualified_type] = STATE(1288), - [sym_fixed_array_type] = STATE(1303), - [sym_array_type] = STATE(1303), - [sym_pointer_type] = STATE(1303), - [sym_wrong_pointer_type] = STATE(1303), - [sym_map_type] = STATE(1303), - [sym_channel_type] = STATE(1303), - [sym_shared_type] = STATE(1303), - [sym_thread_type] = STATE(1303), - [sym_atomic_type] = STATE(1303), - [sym_generic_type] = STATE(1303), - [sym_function_type] = STATE(1303), - [sym_identifier] = ACTIONS(3570), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2311), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(627), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3574), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(3578), - [anon_sym_mut] = ACTIONS(619), - [anon_sym_COLON] = ACTIONS(617), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(3580), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_go] = ACTIONS(619), - [anon_sym_spawn] = ACTIONS(619), - [anon_sym_json_DOTdecode] = ACTIONS(617), - [anon_sym_LBRACK2] = ACTIONS(3584), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(3586), - [anon_sym_LT_DASH] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(617), - [anon_sym_AMP_CARET] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_or] = ACTIONS(619), - [sym_none] = ACTIONS(619), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [sym_nil] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(617), - [anon_sym_POUND_LBRACK] = ACTIONS(617), - [anon_sym_if] = ACTIONS(619), - [anon_sym_DOLLARif] = ACTIONS(619), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(617), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(617), - [anon_sym_match] = ACTIONS(619), - [anon_sym_select] = ACTIONS(619), - [anon_sym_lock] = ACTIONS(619), - [anon_sym_rlock] = ACTIONS(619), - [anon_sym_unsafe] = ACTIONS(619), - [anon_sym_sql] = ACTIONS(619), - [sym_int_literal] = ACTIONS(619), - [sym_float_literal] = ACTIONS(617), - [sym_rune_literal] = ACTIONS(617), - [sym_pseudo_compile_time_identifier] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(3588), - [anon_sym_map_LBRACK] = ACTIONS(3590), - [anon_sym_chan] = ACTIONS(3592), - [anon_sym_thread] = ACTIONS(3594), - [anon_sym_atomic] = ACTIONS(3596), - [sym___double_quote] = ACTIONS(617), - [sym___single_quote] = ACTIONS(617), - [sym___c_double_quote] = ACTIONS(617), - [sym___c_single_quote] = ACTIONS(617), - [sym___r_double_quote] = ACTIONS(617), - [sym___r_single_quote] = ACTIONS(617), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_as] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_COMMA] = ACTIONS(625), + [anon_sym_RBRACE] = ACTIONS(625), + [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(627), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(625), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(625), + [anon_sym_struct] = ACTIONS(627), + [anon_sym_mut] = ACTIONS(627), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_go] = ACTIONS(627), + [anon_sym_spawn] = ACTIONS(627), + [anon_sym_json_DOTdecode] = ACTIONS(625), + [anon_sym_LBRACK2] = ACTIONS(627), + [anon_sym_TILDE] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_LT_DASH] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(625), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_GT_GT_GT] = ACTIONS(625), + [anon_sym_AMP_CARET] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [anon_sym_or] = ACTIONS(627), + [sym_none] = ACTIONS(627), + [sym_true] = ACTIONS(627), + [sym_false] = ACTIONS(627), + [sym_nil] = ACTIONS(627), + [anon_sym_QMARK_DOT] = ACTIONS(625), + [anon_sym_POUND_LBRACK] = ACTIONS(625), + [anon_sym_if] = ACTIONS(627), + [anon_sym_DOLLARif] = ACTIONS(627), + [anon_sym_is] = ACTIONS(627), + [anon_sym_BANGis] = ACTIONS(625), + [anon_sym_in] = ACTIONS(627), + [anon_sym_BANGin] = ACTIONS(625), + [anon_sym_match] = ACTIONS(627), + [anon_sym_select] = ACTIONS(627), + [anon_sym_lock] = ACTIONS(627), + [anon_sym_rlock] = ACTIONS(627), + [anon_sym_unsafe] = ACTIONS(627), + [anon_sym_sql] = ACTIONS(627), + [sym_int_literal] = ACTIONS(627), + [sym_float_literal] = ACTIONS(625), + [sym_rune_literal] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE] = ACTIONS(625), + [anon_sym_c_SQUOTE] = ACTIONS(625), + [anon_sym_c_DQUOTE] = ACTIONS(625), + [anon_sym_r_SQUOTE] = ACTIONS(625), + [anon_sym_r_DQUOTE] = ACTIONS(625), + [sym_pseudo_compile_time_identifier] = ACTIONS(627), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(625), + [anon_sym_chan] = ACTIONS(627), + [anon_sym_thread] = ACTIONS(627), + [anon_sym_atomic] = ACTIONS(627), }, [992] = { [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_CR] = ACTIONS(1809), - [anon_sym_CR_LF] = ACTIONS(1809), + [ts_builtin_sym_end] = ACTIONS(2841), + [sym_identifier] = ACTIONS(2843), + [anon_sym_LF] = ACTIONS(2843), + [anon_sym_CR] = ACTIONS(2843), + [anon_sym_CR_LF] = ACTIONS(2843), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1987), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym___global] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_pub] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1809), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1809), - [anon_sym_AMP_CARET] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_PIPE_PIPE] = ACTIONS(1809), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1809), - [anon_sym_POUND_LBRACK] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1809), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), - [sym_rune_literal] = ACTIONS(1809), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1809), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), - [anon_sym_assert] = ACTIONS(1809), - [anon_sym_defer] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_DOLLARfor] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_POUND] = ACTIONS(1809), - [anon_sym_asm] = ACTIONS(1809), - [anon_sym_AT_LBRACK] = ACTIONS(1809), - [sym___double_quote] = ACTIONS(1809), - [sym___single_quote] = ACTIONS(1809), - [sym___c_double_quote] = ACTIONS(1809), - [sym___c_single_quote] = ACTIONS(1809), - [sym___r_double_quote] = ACTIONS(1809), - [sym___r_single_quote] = ACTIONS(1809), + [anon_sym_DOT] = ACTIONS(2843), + [anon_sym_as] = ACTIONS(2843), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_COMMA] = ACTIONS(2843), + [anon_sym_const] = ACTIONS(2843), + [anon_sym_LPAREN] = ACTIONS(2843), + [anon_sym___global] = ACTIONS(2843), + [anon_sym_type] = ACTIONS(2843), + [anon_sym_PIPE] = ACTIONS(2843), + [anon_sym_fn] = ACTIONS(2843), + [anon_sym_PLUS] = ACTIONS(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_SLASH] = ACTIONS(2843), + [anon_sym_PERCENT] = ACTIONS(2843), + [anon_sym_LT] = ACTIONS(2843), + [anon_sym_GT] = ACTIONS(2843), + [anon_sym_EQ_EQ] = ACTIONS(2843), + [anon_sym_BANG_EQ] = ACTIONS(2843), + [anon_sym_LT_EQ] = ACTIONS(2843), + [anon_sym_GT_EQ] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_struct] = ACTIONS(2843), + [anon_sym_union] = ACTIONS(2843), + [anon_sym_pub] = ACTIONS(2843), + [anon_sym_mut] = ACTIONS(2843), + [anon_sym_enum] = ACTIONS(2843), + [anon_sym_interface] = ACTIONS(2843), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_QMARK] = ACTIONS(2843), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_go] = ACTIONS(2843), + [anon_sym_spawn] = ACTIONS(2843), + [anon_sym_json_DOTdecode] = ACTIONS(2843), + [anon_sym_LBRACK2] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2843), + [anon_sym_LT_DASH] = ACTIONS(2843), + [anon_sym_LT_LT] = ACTIONS(2843), + [anon_sym_GT_GT] = ACTIONS(2843), + [anon_sym_GT_GT_GT] = ACTIONS(2843), + [anon_sym_AMP_CARET] = ACTIONS(2843), + [anon_sym_AMP_AMP] = ACTIONS(2843), + [anon_sym_PIPE_PIPE] = ACTIONS(2843), + [anon_sym_or] = ACTIONS(2843), + [sym_none] = ACTIONS(2843), + [sym_true] = ACTIONS(2843), + [sym_false] = ACTIONS(2843), + [sym_nil] = ACTIONS(2843), + [anon_sym_QMARK_DOT] = ACTIONS(2843), + [anon_sym_POUND_LBRACK] = ACTIONS(2843), + [anon_sym_if] = ACTIONS(2843), + [anon_sym_DOLLARif] = ACTIONS(2843), + [anon_sym_is] = ACTIONS(2843), + [anon_sym_BANGis] = ACTIONS(2843), + [anon_sym_in] = ACTIONS(2843), + [anon_sym_BANGin] = ACTIONS(2843), + [anon_sym_match] = ACTIONS(2843), + [anon_sym_select] = ACTIONS(2843), + [anon_sym_lock] = ACTIONS(2843), + [anon_sym_rlock] = ACTIONS(2843), + [anon_sym_unsafe] = ACTIONS(2843), + [anon_sym_sql] = ACTIONS(2843), + [sym_int_literal] = ACTIONS(2843), + [sym_float_literal] = ACTIONS(2843), + [sym_rune_literal] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2843), + [anon_sym_c_SQUOTE] = ACTIONS(2843), + [anon_sym_c_DQUOTE] = ACTIONS(2843), + [anon_sym_r_SQUOTE] = ACTIONS(2843), + [anon_sym_r_DQUOTE] = ACTIONS(2843), + [sym_pseudo_compile_time_identifier] = ACTIONS(2843), + [anon_sym_shared] = ACTIONS(2843), + [anon_sym_map_LBRACK] = ACTIONS(2843), + [anon_sym_chan] = ACTIONS(2843), + [anon_sym_thread] = ACTIONS(2843), + [anon_sym_atomic] = ACTIONS(2843), + [anon_sym_assert] = ACTIONS(2843), + [anon_sym_defer] = ACTIONS(2843), + [anon_sym_goto] = ACTIONS(2843), + [anon_sym_break] = ACTIONS(2843), + [anon_sym_continue] = ACTIONS(2843), + [anon_sym_return] = ACTIONS(2843), + [anon_sym_DOLLARfor] = ACTIONS(2843), + [anon_sym_for] = ACTIONS(2843), + [anon_sym_POUND] = ACTIONS(2843), + [anon_sym_asm] = ACTIONS(2843), + [anon_sym_AT_LBRACK] = ACTIONS(2843), }, [993] = { [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [ts_builtin_sym_end] = ACTIONS(2878), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LF] = ACTIONS(2880), - [anon_sym_CR] = ACTIONS(2880), - [anon_sym_CR_LF] = ACTIONS(2880), + [ts_builtin_sym_end] = ACTIONS(2149), + [sym_identifier] = ACTIONS(2151), + [anon_sym_LF] = ACTIONS(2151), + [anon_sym_CR] = ACTIONS(2151), + [anon_sym_CR_LF] = ACTIONS(2151), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2880), - [anon_sym_as] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym___global] = ACTIONS(2880), - [anon_sym_type] = ACTIONS(2880), - [anon_sym_PIPE] = ACTIONS(2880), - [anon_sym_fn] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2880), - [anon_sym_SLASH] = ACTIONS(2880), - [anon_sym_PERCENT] = ACTIONS(2880), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_GT] = ACTIONS(2880), - [anon_sym_EQ_EQ] = ACTIONS(2880), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_LT_EQ] = ACTIONS(2880), - [anon_sym_GT_EQ] = ACTIONS(2880), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_union] = ACTIONS(2880), - [anon_sym_pub] = ACTIONS(2880), - [anon_sym_mut] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_interface] = ACTIONS(2880), - [anon_sym_PLUS_PLUS] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2880), - [anon_sym_QMARK] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_go] = ACTIONS(2880), - [anon_sym_spawn] = ACTIONS(2880), - [anon_sym_json_DOTdecode] = ACTIONS(2880), - [anon_sym_LBRACK2] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2880), - [anon_sym_CARET] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_LT_DASH] = ACTIONS(2880), - [anon_sym_LT_LT] = ACTIONS(2880), - [anon_sym_GT_GT] = ACTIONS(2880), - [anon_sym_GT_GT_GT] = ACTIONS(2880), - [anon_sym_AMP_CARET] = ACTIONS(2880), - [anon_sym_AMP_AMP] = ACTIONS(2880), - [anon_sym_PIPE_PIPE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2880), - [sym_none] = ACTIONS(2880), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_nil] = ACTIONS(2880), - [anon_sym_QMARK_DOT] = ACTIONS(2880), - [anon_sym_POUND_LBRACK] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_DOLLARif] = ACTIONS(2880), - [anon_sym_is] = ACTIONS(2880), - [anon_sym_BANGis] = ACTIONS(2880), - [anon_sym_in] = ACTIONS(2880), - [anon_sym_BANGin] = ACTIONS(2880), - [anon_sym_match] = ACTIONS(2880), - [anon_sym_select] = ACTIONS(2880), - [anon_sym_lock] = ACTIONS(2880), - [anon_sym_rlock] = ACTIONS(2880), - [anon_sym_unsafe] = ACTIONS(2880), - [anon_sym_sql] = ACTIONS(2880), - [sym_int_literal] = ACTIONS(2880), - [sym_float_literal] = ACTIONS(2880), - [sym_rune_literal] = ACTIONS(2880), - [sym_pseudo_compile_time_identifier] = ACTIONS(2880), - [anon_sym_shared] = ACTIONS(2880), - [anon_sym_map_LBRACK] = ACTIONS(2880), - [anon_sym_chan] = ACTIONS(2880), - [anon_sym_thread] = ACTIONS(2880), - [anon_sym_atomic] = ACTIONS(2880), - [anon_sym_assert] = ACTIONS(2880), - [anon_sym_defer] = ACTIONS(2880), - [anon_sym_goto] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_DOLLARfor] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_POUND] = ACTIONS(2880), - [anon_sym_asm] = ACTIONS(2880), - [anon_sym_AT_LBRACK] = ACTIONS(2880), - [sym___double_quote] = ACTIONS(2880), - [sym___single_quote] = ACTIONS(2880), - [sym___c_double_quote] = ACTIONS(2880), - [sym___c_single_quote] = ACTIONS(2880), - [sym___r_double_quote] = ACTIONS(2880), - [sym___r_single_quote] = ACTIONS(2880), + [anon_sym_DOT] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_COMMA] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym___global] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_PIPE] = ACTIONS(2151), + [anon_sym_fn] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_PERCENT] = ACTIONS(2151), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_GT] = ACTIONS(2151), + [anon_sym_EQ_EQ] = ACTIONS(2151), + [anon_sym_BANG_EQ] = ACTIONS(2151), + [anon_sym_LT_EQ] = ACTIONS(2151), + [anon_sym_GT_EQ] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_struct] = ACTIONS(2151), + [anon_sym_union] = ACTIONS(2151), + [anon_sym_pub] = ACTIONS(2151), + [anon_sym_mut] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), + [anon_sym_interface] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_QMARK] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_go] = ACTIONS(2151), + [anon_sym_spawn] = ACTIONS(2151), + [anon_sym_json_DOTdecode] = ACTIONS(2151), + [anon_sym_LBRACK2] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_LT_DASH] = ACTIONS(2151), + [anon_sym_LT_LT] = ACTIONS(2151), + [anon_sym_GT_GT] = ACTIONS(2151), + [anon_sym_GT_GT_GT] = ACTIONS(2151), + [anon_sym_AMP_CARET] = ACTIONS(2151), + [anon_sym_AMP_AMP] = ACTIONS(2151), + [anon_sym_PIPE_PIPE] = ACTIONS(2151), + [anon_sym_or] = ACTIONS(2151), + [sym_none] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_nil] = ACTIONS(2151), + [anon_sym_QMARK_DOT] = ACTIONS(2151), + [anon_sym_POUND_LBRACK] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_DOLLARif] = ACTIONS(2151), + [anon_sym_is] = ACTIONS(2151), + [anon_sym_BANGis] = ACTIONS(2151), + [anon_sym_in] = ACTIONS(2151), + [anon_sym_BANGin] = ACTIONS(2151), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_select] = ACTIONS(2151), + [anon_sym_lock] = ACTIONS(2151), + [anon_sym_rlock] = ACTIONS(2151), + [anon_sym_unsafe] = ACTIONS(2151), + [anon_sym_sql] = ACTIONS(2151), + [sym_int_literal] = ACTIONS(2151), + [sym_float_literal] = ACTIONS(2151), + [sym_rune_literal] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2151), + [anon_sym_c_SQUOTE] = ACTIONS(2151), + [anon_sym_c_DQUOTE] = ACTIONS(2151), + [anon_sym_r_SQUOTE] = ACTIONS(2151), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(2151), + [anon_sym_shared] = ACTIONS(2151), + [anon_sym_map_LBRACK] = ACTIONS(2151), + [anon_sym_chan] = ACTIONS(2151), + [anon_sym_thread] = ACTIONS(2151), + [anon_sym_atomic] = ACTIONS(2151), + [anon_sym_assert] = ACTIONS(2151), + [anon_sym_defer] = ACTIONS(2151), + [anon_sym_goto] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_DOLLARfor] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_POUND] = ACTIONS(2151), + [anon_sym_asm] = ACTIONS(2151), + [anon_sym_AT_LBRACK] = ACTIONS(2151), }, [994] = { [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [ts_builtin_sym_end] = ACTIONS(2117), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LF] = ACTIONS(2119), - [anon_sym_CR] = ACTIONS(2119), - [anon_sym_CR_LF] = ACTIONS(2119), + [ts_builtin_sym_end] = ACTIONS(2735), + [sym_identifier] = ACTIONS(2737), + [anon_sym_LF] = ACTIONS(2737), + [anon_sym_CR] = ACTIONS(2737), + [anon_sym_CR_LF] = ACTIONS(2737), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2119), - [anon_sym_as] = ACTIONS(2119), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_const] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym___global] = ACTIONS(2119), - [anon_sym_type] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(2119), - [anon_sym_fn] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2119), - [anon_sym_DASH] = ACTIONS(2119), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_SLASH] = ACTIONS(2119), - [anon_sym_PERCENT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2119), - [anon_sym_GT] = ACTIONS(2119), - [anon_sym_EQ_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ] = ACTIONS(2119), - [anon_sym_LT_EQ] = ACTIONS(2119), - [anon_sym_GT_EQ] = ACTIONS(2119), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_struct] = ACTIONS(2119), - [anon_sym_union] = ACTIONS(2119), - [anon_sym_pub] = ACTIONS(2119), - [anon_sym_mut] = ACTIONS(2119), - [anon_sym_enum] = ACTIONS(2119), - [anon_sym_interface] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_QMARK] = ACTIONS(2119), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_go] = ACTIONS(2119), - [anon_sym_spawn] = ACTIONS(2119), - [anon_sym_json_DOTdecode] = ACTIONS(2119), - [anon_sym_LBRACK2] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2119), - [anon_sym_LT_LT] = ACTIONS(2119), - [anon_sym_GT_GT] = ACTIONS(2119), - [anon_sym_GT_GT_GT] = ACTIONS(2119), - [anon_sym_AMP_CARET] = ACTIONS(2119), - [anon_sym_AMP_AMP] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2119), - [anon_sym_or] = ACTIONS(2119), - [sym_none] = ACTIONS(2119), - [sym_true] = ACTIONS(2119), - [sym_false] = ACTIONS(2119), - [sym_nil] = ACTIONS(2119), - [anon_sym_QMARK_DOT] = ACTIONS(2119), - [anon_sym_POUND_LBRACK] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(2119), - [anon_sym_is] = ACTIONS(2119), - [anon_sym_BANGis] = ACTIONS(2119), - [anon_sym_in] = ACTIONS(2119), - [anon_sym_BANGin] = ACTIONS(2119), - [anon_sym_match] = ACTIONS(2119), - [anon_sym_select] = ACTIONS(2119), - [anon_sym_lock] = ACTIONS(2119), - [anon_sym_rlock] = ACTIONS(2119), - [anon_sym_unsafe] = ACTIONS(2119), - [anon_sym_sql] = ACTIONS(2119), - [sym_int_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), - [sym_rune_literal] = ACTIONS(2119), - [sym_pseudo_compile_time_identifier] = ACTIONS(2119), - [anon_sym_shared] = ACTIONS(2119), - [anon_sym_map_LBRACK] = ACTIONS(2119), - [anon_sym_chan] = ACTIONS(2119), - [anon_sym_thread] = ACTIONS(2119), - [anon_sym_atomic] = ACTIONS(2119), - [anon_sym_assert] = ACTIONS(2119), - [anon_sym_defer] = ACTIONS(2119), - [anon_sym_goto] = ACTIONS(2119), - [anon_sym_break] = ACTIONS(2119), - [anon_sym_continue] = ACTIONS(2119), - [anon_sym_return] = ACTIONS(2119), - [anon_sym_DOLLARfor] = ACTIONS(2119), - [anon_sym_for] = ACTIONS(2119), - [anon_sym_POUND] = ACTIONS(2119), - [anon_sym_asm] = ACTIONS(2119), - [anon_sym_AT_LBRACK] = ACTIONS(2119), - [sym___double_quote] = ACTIONS(2119), - [sym___single_quote] = ACTIONS(2119), - [sym___c_double_quote] = ACTIONS(2119), - [sym___c_single_quote] = ACTIONS(2119), - [sym___r_double_quote] = ACTIONS(2119), - [sym___r_single_quote] = ACTIONS(2119), + [anon_sym_DOT] = ACTIONS(2737), + [anon_sym_as] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_COMMA] = ACTIONS(2737), + [anon_sym_const] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(2737), + [anon_sym___global] = ACTIONS(2737), + [anon_sym_type] = ACTIONS(2737), + [anon_sym_PIPE] = ACTIONS(2737), + [anon_sym_fn] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2737), + [anon_sym_SLASH] = ACTIONS(2737), + [anon_sym_PERCENT] = ACTIONS(2737), + [anon_sym_LT] = ACTIONS(2737), + [anon_sym_GT] = ACTIONS(2737), + [anon_sym_EQ_EQ] = ACTIONS(2737), + [anon_sym_BANG_EQ] = ACTIONS(2737), + [anon_sym_LT_EQ] = ACTIONS(2737), + [anon_sym_GT_EQ] = ACTIONS(2737), + [anon_sym_LBRACK] = ACTIONS(2735), + [anon_sym_struct] = ACTIONS(2737), + [anon_sym_union] = ACTIONS(2737), + [anon_sym_pub] = ACTIONS(2737), + [anon_sym_mut] = ACTIONS(2737), + [anon_sym_enum] = ACTIONS(2737), + [anon_sym_interface] = ACTIONS(2737), + [anon_sym_PLUS_PLUS] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2737), + [anon_sym_QMARK] = ACTIONS(2737), + [anon_sym_BANG] = ACTIONS(2737), + [anon_sym_go] = ACTIONS(2737), + [anon_sym_spawn] = ACTIONS(2737), + [anon_sym_json_DOTdecode] = ACTIONS(2737), + [anon_sym_LBRACK2] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(2737), + [anon_sym_CARET] = ACTIONS(2737), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_LT_DASH] = ACTIONS(2737), + [anon_sym_LT_LT] = ACTIONS(2737), + [anon_sym_GT_GT] = ACTIONS(2737), + [anon_sym_GT_GT_GT] = ACTIONS(2737), + [anon_sym_AMP_CARET] = ACTIONS(2737), + [anon_sym_AMP_AMP] = ACTIONS(2737), + [anon_sym_PIPE_PIPE] = ACTIONS(2737), + [anon_sym_or] = ACTIONS(2737), + [sym_none] = ACTIONS(2737), + [sym_true] = ACTIONS(2737), + [sym_false] = ACTIONS(2737), + [sym_nil] = ACTIONS(2737), + [anon_sym_QMARK_DOT] = ACTIONS(2737), + [anon_sym_POUND_LBRACK] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_DOLLARif] = ACTIONS(2737), + [anon_sym_is] = ACTIONS(2737), + [anon_sym_BANGis] = ACTIONS(2737), + [anon_sym_in] = ACTIONS(2737), + [anon_sym_BANGin] = ACTIONS(2737), + [anon_sym_match] = ACTIONS(2737), + [anon_sym_select] = ACTIONS(2737), + [anon_sym_lock] = ACTIONS(2737), + [anon_sym_rlock] = ACTIONS(2737), + [anon_sym_unsafe] = ACTIONS(2737), + [anon_sym_sql] = ACTIONS(2737), + [sym_int_literal] = ACTIONS(2737), + [sym_float_literal] = ACTIONS(2737), + [sym_rune_literal] = ACTIONS(2737), + [anon_sym_SQUOTE] = ACTIONS(2737), + [anon_sym_DQUOTE] = ACTIONS(2737), + [anon_sym_c_SQUOTE] = ACTIONS(2737), + [anon_sym_c_DQUOTE] = ACTIONS(2737), + [anon_sym_r_SQUOTE] = ACTIONS(2737), + [anon_sym_r_DQUOTE] = ACTIONS(2737), + [sym_pseudo_compile_time_identifier] = ACTIONS(2737), + [anon_sym_shared] = ACTIONS(2737), + [anon_sym_map_LBRACK] = ACTIONS(2737), + [anon_sym_chan] = ACTIONS(2737), + [anon_sym_thread] = ACTIONS(2737), + [anon_sym_atomic] = ACTIONS(2737), + [anon_sym_assert] = ACTIONS(2737), + [anon_sym_defer] = ACTIONS(2737), + [anon_sym_goto] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_DOLLARfor] = ACTIONS(2737), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_POUND] = ACTIONS(2737), + [anon_sym_asm] = ACTIONS(2737), + [anon_sym_AT_LBRACK] = ACTIONS(2737), }, [995] = { [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [ts_builtin_sym_end] = ACTIONS(2197), - [sym_identifier] = ACTIONS(2199), - [anon_sym_LF] = ACTIONS(2199), - [anon_sym_CR] = ACTIONS(2199), - [anon_sym_CR_LF] = ACTIONS(2199), + [ts_builtin_sym_end] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LF] = ACTIONS(2115), + [anon_sym_CR] = ACTIONS(2115), + [anon_sym_CR_LF] = ACTIONS(2115), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2199), - [anon_sym_as] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_COMMA] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym___global] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2199), - [anon_sym_PIPE] = ACTIONS(2199), - [anon_sym_fn] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(2199), - [anon_sym_SLASH] = ACTIONS(2199), - [anon_sym_PERCENT] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2199), - [anon_sym_GT] = ACTIONS(2199), - [anon_sym_EQ_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ] = ACTIONS(2199), - [anon_sym_LT_EQ] = ACTIONS(2199), - [anon_sym_GT_EQ] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(2199), - [anon_sym_union] = ACTIONS(2199), - [anon_sym_pub] = ACTIONS(2199), - [anon_sym_mut] = ACTIONS(2199), - [anon_sym_enum] = ACTIONS(2199), - [anon_sym_interface] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_QMARK] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_go] = ACTIONS(2199), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(2199), - [anon_sym_LBRACK2] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_LT_DASH] = ACTIONS(2199), - [anon_sym_LT_LT] = ACTIONS(2199), - [anon_sym_GT_GT] = ACTIONS(2199), - [anon_sym_GT_GT_GT] = ACTIONS(2199), - [anon_sym_AMP_CARET] = ACTIONS(2199), - [anon_sym_AMP_AMP] = ACTIONS(2199), - [anon_sym_PIPE_PIPE] = ACTIONS(2199), - [anon_sym_or] = ACTIONS(2199), - [sym_none] = ACTIONS(2199), - [sym_true] = ACTIONS(2199), - [sym_false] = ACTIONS(2199), - [sym_nil] = ACTIONS(2199), - [anon_sym_QMARK_DOT] = ACTIONS(2199), - [anon_sym_POUND_LBRACK] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_DOLLARif] = ACTIONS(2199), - [anon_sym_is] = ACTIONS(2199), - [anon_sym_BANGis] = ACTIONS(2199), - [anon_sym_in] = ACTIONS(2199), - [anon_sym_BANGin] = ACTIONS(2199), - [anon_sym_match] = ACTIONS(2199), - [anon_sym_select] = ACTIONS(2199), - [anon_sym_lock] = ACTIONS(2199), - [anon_sym_rlock] = ACTIONS(2199), - [anon_sym_unsafe] = ACTIONS(2199), - [anon_sym_sql] = ACTIONS(2199), - [sym_int_literal] = ACTIONS(2199), - [sym_float_literal] = ACTIONS(2199), - [sym_rune_literal] = ACTIONS(2199), - [sym_pseudo_compile_time_identifier] = ACTIONS(2199), - [anon_sym_shared] = ACTIONS(2199), - [anon_sym_map_LBRACK] = ACTIONS(2199), - [anon_sym_chan] = ACTIONS(2199), - [anon_sym_thread] = ACTIONS(2199), - [anon_sym_atomic] = ACTIONS(2199), - [anon_sym_assert] = ACTIONS(2199), - [anon_sym_defer] = ACTIONS(2199), - [anon_sym_goto] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_DOLLARfor] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_POUND] = ACTIONS(2199), - [anon_sym_asm] = ACTIONS(2199), - [anon_sym_AT_LBRACK] = ACTIONS(2199), - [sym___double_quote] = ACTIONS(2199), - [sym___single_quote] = ACTIONS(2199), - [sym___c_double_quote] = ACTIONS(2199), - [sym___c_single_quote] = ACTIONS(2199), - [sym___r_double_quote] = ACTIONS(2199), - [sym___r_single_quote] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2115), + [anon_sym_as] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_COMMA] = ACTIONS(2115), + [anon_sym_const] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym___global] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2115), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_fn] = ACTIONS(2115), + [anon_sym_PLUS] = ACTIONS(2115), + [anon_sym_DASH] = ACTIONS(2115), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_SLASH] = ACTIONS(2115), + [anon_sym_PERCENT] = ACTIONS(2115), + [anon_sym_LT] = ACTIONS(2115), + [anon_sym_GT] = ACTIONS(2115), + [anon_sym_EQ_EQ] = ACTIONS(2115), + [anon_sym_BANG_EQ] = ACTIONS(2115), + [anon_sym_LT_EQ] = ACTIONS(2115), + [anon_sym_GT_EQ] = ACTIONS(2115), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_struct] = ACTIONS(2115), + [anon_sym_union] = ACTIONS(2115), + [anon_sym_pub] = ACTIONS(2115), + [anon_sym_mut] = ACTIONS(2115), + [anon_sym_enum] = ACTIONS(2115), + [anon_sym_interface] = ACTIONS(2115), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_QMARK] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_go] = ACTIONS(2115), + [anon_sym_spawn] = ACTIONS(2115), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_CARET] = ACTIONS(2115), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2115), + [anon_sym_LT_LT] = ACTIONS(2115), + [anon_sym_GT_GT] = ACTIONS(2115), + [anon_sym_GT_GT_GT] = ACTIONS(2115), + [anon_sym_AMP_CARET] = ACTIONS(2115), + [anon_sym_AMP_AMP] = ACTIONS(2115), + [anon_sym_PIPE_PIPE] = ACTIONS(2115), + [anon_sym_or] = ACTIONS(2115), + [sym_none] = ACTIONS(2115), + [sym_true] = ACTIONS(2115), + [sym_false] = ACTIONS(2115), + [sym_nil] = ACTIONS(2115), + [anon_sym_QMARK_DOT] = ACTIONS(2115), + [anon_sym_POUND_LBRACK] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2115), + [anon_sym_DOLLARif] = ACTIONS(2115), + [anon_sym_is] = ACTIONS(2115), + [anon_sym_BANGis] = ACTIONS(2115), + [anon_sym_in] = ACTIONS(2115), + [anon_sym_BANGin] = ACTIONS(2115), + [anon_sym_match] = ACTIONS(2115), + [anon_sym_select] = ACTIONS(2115), + [anon_sym_lock] = ACTIONS(2115), + [anon_sym_rlock] = ACTIONS(2115), + [anon_sym_unsafe] = ACTIONS(2115), + [anon_sym_sql] = ACTIONS(2115), + [sym_int_literal] = ACTIONS(2115), + [sym_float_literal] = ACTIONS(2115), + [sym_rune_literal] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_c_SQUOTE] = ACTIONS(2115), + [anon_sym_c_DQUOTE] = ACTIONS(2115), + [anon_sym_r_SQUOTE] = ACTIONS(2115), + [anon_sym_r_DQUOTE] = ACTIONS(2115), + [sym_pseudo_compile_time_identifier] = ACTIONS(2115), + [anon_sym_shared] = ACTIONS(2115), + [anon_sym_map_LBRACK] = ACTIONS(2115), + [anon_sym_chan] = ACTIONS(2115), + [anon_sym_thread] = ACTIONS(2115), + [anon_sym_atomic] = ACTIONS(2115), + [anon_sym_assert] = ACTIONS(2115), + [anon_sym_defer] = ACTIONS(2115), + [anon_sym_goto] = ACTIONS(2115), + [anon_sym_break] = ACTIONS(2115), + [anon_sym_continue] = ACTIONS(2115), + [anon_sym_return] = ACTIONS(2115), + [anon_sym_DOLLARfor] = ACTIONS(2115), + [anon_sym_for] = ACTIONS(2115), + [anon_sym_POUND] = ACTIONS(2115), + [anon_sym_asm] = ACTIONS(2115), + [anon_sym_AT_LBRACK] = ACTIONS(2115), }, [996] = { [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [ts_builtin_sym_end] = ACTIONS(2822), - [sym_identifier] = ACTIONS(2824), - [anon_sym_LF] = ACTIONS(2824), - [anon_sym_CR] = ACTIONS(2824), - [anon_sym_CR_LF] = ACTIONS(2824), + [ts_builtin_sym_end] = ACTIONS(2727), + [sym_identifier] = ACTIONS(2729), + [anon_sym_LF] = ACTIONS(2729), + [anon_sym_CR] = ACTIONS(2729), + [anon_sym_CR_LF] = ACTIONS(2729), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2824), - [anon_sym_as] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_const] = ACTIONS(2824), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym___global] = ACTIONS(2824), - [anon_sym_type] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_fn] = ACTIONS(2824), - [anon_sym_PLUS] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_SLASH] = ACTIONS(2824), - [anon_sym_PERCENT] = ACTIONS(2824), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_GT] = ACTIONS(2824), - [anon_sym_EQ_EQ] = ACTIONS(2824), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_LT_EQ] = ACTIONS(2824), - [anon_sym_GT_EQ] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2824), - [anon_sym_union] = ACTIONS(2824), - [anon_sym_pub] = ACTIONS(2824), - [anon_sym_mut] = ACTIONS(2824), - [anon_sym_enum] = ACTIONS(2824), - [anon_sym_interface] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_go] = ACTIONS(2824), - [anon_sym_spawn] = ACTIONS(2824), - [anon_sym_json_DOTdecode] = ACTIONS(2824), - [anon_sym_LBRACK2] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_CARET] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2824), - [anon_sym_LT_DASH] = ACTIONS(2824), - [anon_sym_LT_LT] = ACTIONS(2824), - [anon_sym_GT_GT] = ACTIONS(2824), - [anon_sym_GT_GT_GT] = ACTIONS(2824), - [anon_sym_AMP_CARET] = ACTIONS(2824), - [anon_sym_AMP_AMP] = ACTIONS(2824), - [anon_sym_PIPE_PIPE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2824), - [sym_none] = ACTIONS(2824), - [sym_true] = ACTIONS(2824), - [sym_false] = ACTIONS(2824), - [sym_nil] = ACTIONS(2824), - [anon_sym_QMARK_DOT] = ACTIONS(2824), - [anon_sym_POUND_LBRACK] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_DOLLARif] = ACTIONS(2824), - [anon_sym_is] = ACTIONS(2824), - [anon_sym_BANGis] = ACTIONS(2824), - [anon_sym_in] = ACTIONS(2824), - [anon_sym_BANGin] = ACTIONS(2824), - [anon_sym_match] = ACTIONS(2824), - [anon_sym_select] = ACTIONS(2824), - [anon_sym_lock] = ACTIONS(2824), - [anon_sym_rlock] = ACTIONS(2824), - [anon_sym_unsafe] = ACTIONS(2824), - [anon_sym_sql] = ACTIONS(2824), - [sym_int_literal] = ACTIONS(2824), - [sym_float_literal] = ACTIONS(2824), - [sym_rune_literal] = ACTIONS(2824), - [sym_pseudo_compile_time_identifier] = ACTIONS(2824), - [anon_sym_shared] = ACTIONS(2824), - [anon_sym_map_LBRACK] = ACTIONS(2824), - [anon_sym_chan] = ACTIONS(2824), - [anon_sym_thread] = ACTIONS(2824), - [anon_sym_atomic] = ACTIONS(2824), - [anon_sym_assert] = ACTIONS(2824), - [anon_sym_defer] = ACTIONS(2824), - [anon_sym_goto] = ACTIONS(2824), - [anon_sym_break] = ACTIONS(2824), - [anon_sym_continue] = ACTIONS(2824), - [anon_sym_return] = ACTIONS(2824), - [anon_sym_DOLLARfor] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2824), - [anon_sym_POUND] = ACTIONS(2824), - [anon_sym_asm] = ACTIONS(2824), - [anon_sym_AT_LBRACK] = ACTIONS(2824), - [sym___double_quote] = ACTIONS(2824), - [sym___single_quote] = ACTIONS(2824), - [sym___c_double_quote] = ACTIONS(2824), - [sym___c_single_quote] = ACTIONS(2824), - [sym___r_double_quote] = ACTIONS(2824), - [sym___r_single_quote] = ACTIONS(2824), + [anon_sym_DOT] = ACTIONS(2729), + [anon_sym_as] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2729), + [anon_sym_COMMA] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_LPAREN] = ACTIONS(2729), + [anon_sym___global] = ACTIONS(2729), + [anon_sym_type] = ACTIONS(2729), + [anon_sym_PIPE] = ACTIONS(2729), + [anon_sym_fn] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_SLASH] = ACTIONS(2729), + [anon_sym_PERCENT] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(2729), + [anon_sym_GT] = ACTIONS(2729), + [anon_sym_EQ_EQ] = ACTIONS(2729), + [anon_sym_BANG_EQ] = ACTIONS(2729), + [anon_sym_LT_EQ] = ACTIONS(2729), + [anon_sym_GT_EQ] = ACTIONS(2729), + [anon_sym_LBRACK] = ACTIONS(2727), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_pub] = ACTIONS(2729), + [anon_sym_mut] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_interface] = ACTIONS(2729), + [anon_sym_PLUS_PLUS] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2729), + [anon_sym_QMARK] = ACTIONS(2729), + [anon_sym_BANG] = ACTIONS(2729), + [anon_sym_go] = ACTIONS(2729), + [anon_sym_spawn] = ACTIONS(2729), + [anon_sym_json_DOTdecode] = ACTIONS(2729), + [anon_sym_LBRACK2] = ACTIONS(2729), + [anon_sym_TILDE] = ACTIONS(2729), + [anon_sym_CARET] = ACTIONS(2729), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_LT_DASH] = ACTIONS(2729), + [anon_sym_LT_LT] = ACTIONS(2729), + [anon_sym_GT_GT] = ACTIONS(2729), + [anon_sym_GT_GT_GT] = ACTIONS(2729), + [anon_sym_AMP_CARET] = ACTIONS(2729), + [anon_sym_AMP_AMP] = ACTIONS(2729), + [anon_sym_PIPE_PIPE] = ACTIONS(2729), + [anon_sym_or] = ACTIONS(2729), + [sym_none] = ACTIONS(2729), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_nil] = ACTIONS(2729), + [anon_sym_QMARK_DOT] = ACTIONS(2729), + [anon_sym_POUND_LBRACK] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_DOLLARif] = ACTIONS(2729), + [anon_sym_is] = ACTIONS(2729), + [anon_sym_BANGis] = ACTIONS(2729), + [anon_sym_in] = ACTIONS(2729), + [anon_sym_BANGin] = ACTIONS(2729), + [anon_sym_match] = ACTIONS(2729), + [anon_sym_select] = ACTIONS(2729), + [anon_sym_lock] = ACTIONS(2729), + [anon_sym_rlock] = ACTIONS(2729), + [anon_sym_unsafe] = ACTIONS(2729), + [anon_sym_sql] = ACTIONS(2729), + [sym_int_literal] = ACTIONS(2729), + [sym_float_literal] = ACTIONS(2729), + [sym_rune_literal] = ACTIONS(2729), + [anon_sym_SQUOTE] = ACTIONS(2729), + [anon_sym_DQUOTE] = ACTIONS(2729), + [anon_sym_c_SQUOTE] = ACTIONS(2729), + [anon_sym_c_DQUOTE] = ACTIONS(2729), + [anon_sym_r_SQUOTE] = ACTIONS(2729), + [anon_sym_r_DQUOTE] = ACTIONS(2729), + [sym_pseudo_compile_time_identifier] = ACTIONS(2729), + [anon_sym_shared] = ACTIONS(2729), + [anon_sym_map_LBRACK] = ACTIONS(2729), + [anon_sym_chan] = ACTIONS(2729), + [anon_sym_thread] = ACTIONS(2729), + [anon_sym_atomic] = ACTIONS(2729), + [anon_sym_assert] = ACTIONS(2729), + [anon_sym_defer] = ACTIONS(2729), + [anon_sym_goto] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_DOLLARfor] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_POUND] = ACTIONS(2729), + [anon_sym_asm] = ACTIONS(2729), + [anon_sym_AT_LBRACK] = ACTIONS(2729), }, [997] = { [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [ts_builtin_sym_end] = ACTIONS(2860), - [sym_identifier] = ACTIONS(2862), - [anon_sym_LF] = ACTIONS(2862), - [anon_sym_CR] = ACTIONS(2862), - [anon_sym_CR_LF] = ACTIONS(2862), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_as] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_COMMA] = ACTIONS(2862), - [anon_sym_const] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym___global] = ACTIONS(2862), - [anon_sym_type] = ACTIONS(2862), - [anon_sym_PIPE] = ACTIONS(2862), - [anon_sym_fn] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2862), - [anon_sym_GT] = ACTIONS(2862), - [anon_sym_EQ_EQ] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_LT_EQ] = ACTIONS(2862), - [anon_sym_GT_EQ] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_struct] = ACTIONS(2862), - [anon_sym_union] = ACTIONS(2862), - [anon_sym_pub] = ACTIONS(2862), - [anon_sym_mut] = ACTIONS(2862), - [anon_sym_enum] = ACTIONS(2862), - [anon_sym_interface] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2862), - [anon_sym_DASH_DASH] = ACTIONS(2862), - [anon_sym_QMARK] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2862), - [anon_sym_go] = ACTIONS(2862), - [anon_sym_spawn] = ACTIONS(2862), - [anon_sym_json_DOTdecode] = ACTIONS(2862), - [anon_sym_LBRACK2] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2862), - [anon_sym_CARET] = ACTIONS(2862), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_LT_DASH] = ACTIONS(2862), - [anon_sym_LT_LT] = ACTIONS(2862), - [anon_sym_GT_GT] = ACTIONS(2862), - [anon_sym_GT_GT_GT] = ACTIONS(2862), - [anon_sym_AMP_CARET] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_or] = ACTIONS(2862), - [sym_none] = ACTIONS(2862), - [sym_true] = ACTIONS(2862), - [sym_false] = ACTIONS(2862), - [sym_nil] = ACTIONS(2862), - [anon_sym_QMARK_DOT] = ACTIONS(2862), - [anon_sym_POUND_LBRACK] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_DOLLARif] = ACTIONS(2862), - [anon_sym_is] = ACTIONS(2862), - [anon_sym_BANGis] = ACTIONS(2862), - [anon_sym_in] = ACTIONS(2862), - [anon_sym_BANGin] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_select] = ACTIONS(2862), - [anon_sym_lock] = ACTIONS(2862), - [anon_sym_rlock] = ACTIONS(2862), - [anon_sym_unsafe] = ACTIONS(2862), - [anon_sym_sql] = ACTIONS(2862), - [sym_int_literal] = ACTIONS(2862), - [sym_float_literal] = ACTIONS(2862), - [sym_rune_literal] = ACTIONS(2862), - [sym_pseudo_compile_time_identifier] = ACTIONS(2862), - [anon_sym_shared] = ACTIONS(2862), - [anon_sym_map_LBRACK] = ACTIONS(2862), - [anon_sym_chan] = ACTIONS(2862), - [anon_sym_thread] = ACTIONS(2862), - [anon_sym_atomic] = ACTIONS(2862), - [anon_sym_assert] = ACTIONS(2862), - [anon_sym_defer] = ACTIONS(2862), - [anon_sym_goto] = ACTIONS(2862), - [anon_sym_break] = ACTIONS(2862), - [anon_sym_continue] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_DOLLARfor] = ACTIONS(2862), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_POUND] = ACTIONS(2862), - [anon_sym_asm] = ACTIONS(2862), - [anon_sym_AT_LBRACK] = ACTIONS(2862), - [sym___double_quote] = ACTIONS(2862), - [sym___single_quote] = ACTIONS(2862), - [sym___c_double_quote] = ACTIONS(2862), - [sym___c_single_quote] = ACTIONS(2862), - [sym___r_double_quote] = ACTIONS(2862), - [sym___r_single_quote] = ACTIONS(2862), - }, - [998] = { - [sym_line_comment] = STATE(998), - [sym_block_comment] = STATE(998), - [ts_builtin_sym_end] = ACTIONS(2722), - [sym_identifier] = ACTIONS(2724), - [anon_sym_LF] = ACTIONS(2724), - [anon_sym_CR] = ACTIONS(2724), - [anon_sym_CR_LF] = ACTIONS(2724), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2724), - [anon_sym_as] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_COMMA] = ACTIONS(2724), - [anon_sym_const] = ACTIONS(2724), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym___global] = ACTIONS(2724), - [anon_sym_type] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_fn] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_STAR] = ACTIONS(2724), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_PERCENT] = ACTIONS(2724), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_GT] = ACTIONS(2724), - [anon_sym_EQ_EQ] = ACTIONS(2724), - [anon_sym_BANG_EQ] = ACTIONS(2724), - [anon_sym_LT_EQ] = ACTIONS(2724), - [anon_sym_GT_EQ] = ACTIONS(2724), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_struct] = ACTIONS(2724), - [anon_sym_union] = ACTIONS(2724), - [anon_sym_pub] = ACTIONS(2724), - [anon_sym_mut] = ACTIONS(2724), - [anon_sym_enum] = ACTIONS(2724), - [anon_sym_interface] = ACTIONS(2724), - [anon_sym_PLUS_PLUS] = ACTIONS(2724), - [anon_sym_DASH_DASH] = ACTIONS(2724), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_BANG] = ACTIONS(2724), - [anon_sym_go] = ACTIONS(2724), - [anon_sym_spawn] = ACTIONS(2724), - [anon_sym_json_DOTdecode] = ACTIONS(2724), - [anon_sym_LBRACK2] = ACTIONS(2724), - [anon_sym_TILDE] = ACTIONS(2724), - [anon_sym_CARET] = ACTIONS(2724), - [anon_sym_AMP] = ACTIONS(2724), - [anon_sym_LT_DASH] = ACTIONS(2724), - [anon_sym_LT_LT] = ACTIONS(2724), - [anon_sym_GT_GT] = ACTIONS(2724), - [anon_sym_GT_GT_GT] = ACTIONS(2724), - [anon_sym_AMP_CARET] = ACTIONS(2724), - [anon_sym_AMP_AMP] = ACTIONS(2724), - [anon_sym_PIPE_PIPE] = ACTIONS(2724), - [anon_sym_or] = ACTIONS(2724), - [sym_none] = ACTIONS(2724), - [sym_true] = ACTIONS(2724), - [sym_false] = ACTIONS(2724), - [sym_nil] = ACTIONS(2724), - [anon_sym_QMARK_DOT] = ACTIONS(2724), - [anon_sym_POUND_LBRACK] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_DOLLARif] = ACTIONS(2724), - [anon_sym_is] = ACTIONS(2724), - [anon_sym_BANGis] = ACTIONS(2724), - [anon_sym_in] = ACTIONS(2724), - [anon_sym_BANGin] = ACTIONS(2724), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2724), - [anon_sym_lock] = ACTIONS(2724), - [anon_sym_rlock] = ACTIONS(2724), - [anon_sym_unsafe] = ACTIONS(2724), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(2724), - [sym_float_literal] = ACTIONS(2724), - [sym_rune_literal] = ACTIONS(2724), - [sym_pseudo_compile_time_identifier] = ACTIONS(2724), - [anon_sym_shared] = ACTIONS(2724), - [anon_sym_map_LBRACK] = ACTIONS(2724), - [anon_sym_chan] = ACTIONS(2724), - [anon_sym_thread] = ACTIONS(2724), - [anon_sym_atomic] = ACTIONS(2724), - [anon_sym_assert] = ACTIONS(2724), - [anon_sym_defer] = ACTIONS(2724), - [anon_sym_goto] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_DOLLARfor] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(2724), - [anon_sym_asm] = ACTIONS(2724), - [anon_sym_AT_LBRACK] = ACTIONS(2724), - [sym___double_quote] = ACTIONS(2724), - [sym___single_quote] = ACTIONS(2724), - [sym___c_double_quote] = ACTIONS(2724), - [sym___c_single_quote] = ACTIONS(2724), - [sym___r_double_quote] = ACTIONS(2724), - [sym___r_single_quote] = ACTIONS(2724), - }, - [999] = { - [sym_line_comment] = STATE(999), - [sym_block_comment] = STATE(999), - [ts_builtin_sym_end] = ACTIONS(2135), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LF] = ACTIONS(2137), - [anon_sym_CR] = ACTIONS(2137), - [anon_sym_CR_LF] = ACTIONS(2137), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_COMMA] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym___global] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_PIPE] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_SLASH] = ACTIONS(2137), - [anon_sym_PERCENT] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_GT] = ACTIONS(2137), - [anon_sym_EQ_EQ] = ACTIONS(2137), - [anon_sym_BANG_EQ] = ACTIONS(2137), - [anon_sym_LT_EQ] = ACTIONS(2137), - [anon_sym_GT_EQ] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_mut] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_QMARK] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_go] = ACTIONS(2137), - [anon_sym_spawn] = ACTIONS(2137), - [anon_sym_json_DOTdecode] = ACTIONS(2137), - [anon_sym_LBRACK2] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_LT_DASH] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(2137), - [anon_sym_GT_GT] = ACTIONS(2137), - [anon_sym_GT_GT_GT] = ACTIONS(2137), - [anon_sym_AMP_CARET] = ACTIONS(2137), - [anon_sym_AMP_AMP] = ACTIONS(2137), - [anon_sym_PIPE_PIPE] = ACTIONS(2137), - [anon_sym_or] = ACTIONS(2137), - [sym_none] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_nil] = ACTIONS(2137), - [anon_sym_QMARK_DOT] = ACTIONS(2137), - [anon_sym_POUND_LBRACK] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_DOLLARif] = ACTIONS(2137), - [anon_sym_is] = ACTIONS(2137), - [anon_sym_BANGis] = ACTIONS(2137), - [anon_sym_in] = ACTIONS(2137), - [anon_sym_BANGin] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_select] = ACTIONS(2137), - [anon_sym_lock] = ACTIONS(2137), - [anon_sym_rlock] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_sql] = ACTIONS(2137), - [sym_int_literal] = ACTIONS(2137), - [sym_float_literal] = ACTIONS(2137), - [sym_rune_literal] = ACTIONS(2137), - [sym_pseudo_compile_time_identifier] = ACTIONS(2137), - [anon_sym_shared] = ACTIONS(2137), - [anon_sym_map_LBRACK] = ACTIONS(2137), - [anon_sym_chan] = ACTIONS(2137), - [anon_sym_thread] = ACTIONS(2137), - [anon_sym_atomic] = ACTIONS(2137), - [anon_sym_assert] = ACTIONS(2137), - [anon_sym_defer] = ACTIONS(2137), - [anon_sym_goto] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_DOLLARfor] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_POUND] = ACTIONS(2137), - [anon_sym_asm] = ACTIONS(2137), - [anon_sym_AT_LBRACK] = ACTIONS(2137), - [sym___double_quote] = ACTIONS(2137), - [sym___single_quote] = ACTIONS(2137), - [sym___c_double_quote] = ACTIONS(2137), - [sym___c_single_quote] = ACTIONS(2137), - [sym___r_double_quote] = ACTIONS(2137), - [sym___r_single_quote] = ACTIONS(2137), - }, - [1000] = { - [sym_line_comment] = STATE(1000), - [sym_block_comment] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(2754), - [sym_identifier] = ACTIONS(2756), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_CR] = ACTIONS(2756), - [anon_sym_CR_LF] = ACTIONS(2756), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2756), - [anon_sym_as] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_const] = ACTIONS(2756), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym___global] = ACTIONS(2756), - [anon_sym_type] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_fn] = ACTIONS(2756), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_GT] = ACTIONS(2756), - [anon_sym_EQ_EQ] = ACTIONS(2756), - [anon_sym_BANG_EQ] = ACTIONS(2756), - [anon_sym_LT_EQ] = ACTIONS(2756), - [anon_sym_GT_EQ] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_struct] = ACTIONS(2756), - [anon_sym_union] = ACTIONS(2756), - [anon_sym_pub] = ACTIONS(2756), - [anon_sym_mut] = ACTIONS(2756), - [anon_sym_enum] = ACTIONS(2756), - [anon_sym_interface] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_QMARK] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_go] = ACTIONS(2756), - [anon_sym_spawn] = ACTIONS(2756), - [anon_sym_json_DOTdecode] = ACTIONS(2756), - [anon_sym_LBRACK2] = ACTIONS(2756), - [anon_sym_TILDE] = ACTIONS(2756), - [anon_sym_CARET] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2756), - [anon_sym_LT_DASH] = ACTIONS(2756), - [anon_sym_LT_LT] = ACTIONS(2756), - [anon_sym_GT_GT] = ACTIONS(2756), - [anon_sym_GT_GT_GT] = ACTIONS(2756), - [anon_sym_AMP_CARET] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_PIPE_PIPE] = ACTIONS(2756), - [anon_sym_or] = ACTIONS(2756), - [sym_none] = ACTIONS(2756), - [sym_true] = ACTIONS(2756), - [sym_false] = ACTIONS(2756), - [sym_nil] = ACTIONS(2756), - [anon_sym_QMARK_DOT] = ACTIONS(2756), - [anon_sym_POUND_LBRACK] = ACTIONS(2756), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_DOLLARif] = ACTIONS(2756), - [anon_sym_is] = ACTIONS(2756), - [anon_sym_BANGis] = ACTIONS(2756), - [anon_sym_in] = ACTIONS(2756), - [anon_sym_BANGin] = ACTIONS(2756), - [anon_sym_match] = ACTIONS(2756), - [anon_sym_select] = ACTIONS(2756), - [anon_sym_lock] = ACTIONS(2756), - [anon_sym_rlock] = ACTIONS(2756), - [anon_sym_unsafe] = ACTIONS(2756), - [anon_sym_sql] = ACTIONS(2756), - [sym_int_literal] = ACTIONS(2756), - [sym_float_literal] = ACTIONS(2756), - [sym_rune_literal] = ACTIONS(2756), - [sym_pseudo_compile_time_identifier] = ACTIONS(2756), - [anon_sym_shared] = ACTIONS(2756), - [anon_sym_map_LBRACK] = ACTIONS(2756), - [anon_sym_chan] = ACTIONS(2756), - [anon_sym_thread] = ACTIONS(2756), - [anon_sym_atomic] = ACTIONS(2756), - [anon_sym_assert] = ACTIONS(2756), - [anon_sym_defer] = ACTIONS(2756), - [anon_sym_goto] = ACTIONS(2756), - [anon_sym_break] = ACTIONS(2756), - [anon_sym_continue] = ACTIONS(2756), - [anon_sym_return] = ACTIONS(2756), - [anon_sym_DOLLARfor] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(2756), - [anon_sym_asm] = ACTIONS(2756), - [anon_sym_AT_LBRACK] = ACTIONS(2756), - [sym___double_quote] = ACTIONS(2756), - [sym___single_quote] = ACTIONS(2756), - [sym___c_double_quote] = ACTIONS(2756), - [sym___c_single_quote] = ACTIONS(2756), - [sym___r_double_quote] = ACTIONS(2756), - [sym___r_single_quote] = ACTIONS(2756), - }, - [1001] = { - [sym_line_comment] = STATE(1001), - [sym_block_comment] = STATE(1001), - [ts_builtin_sym_end] = ACTIONS(2872), - [sym_identifier] = ACTIONS(2874), - [anon_sym_LF] = ACTIONS(2874), - [anon_sym_CR] = ACTIONS(2874), - [anon_sym_CR_LF] = ACTIONS(2874), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_as] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_COMMA] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym___global] = ACTIONS(2874), - [anon_sym_type] = ACTIONS(2874), - [anon_sym_PIPE] = ACTIONS(2874), - [anon_sym_fn] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_STAR] = ACTIONS(2874), - [anon_sym_SLASH] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2874), - [anon_sym_GT] = ACTIONS(2874), - [anon_sym_EQ_EQ] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2874), - [anon_sym_LT_EQ] = ACTIONS(2874), - [anon_sym_GT_EQ] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2872), - [anon_sym_struct] = ACTIONS(2874), - [anon_sym_union] = ACTIONS(2874), - [anon_sym_pub] = ACTIONS(2874), - [anon_sym_mut] = ACTIONS(2874), - [anon_sym_enum] = ACTIONS(2874), - [anon_sym_interface] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2874), - [anon_sym_DASH_DASH] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2874), - [anon_sym_go] = ACTIONS(2874), - [anon_sym_spawn] = ACTIONS(2874), - [anon_sym_json_DOTdecode] = ACTIONS(2874), - [anon_sym_LBRACK2] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2874), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2874), - [anon_sym_LT_LT] = ACTIONS(2874), - [anon_sym_GT_GT] = ACTIONS(2874), - [anon_sym_GT_GT_GT] = ACTIONS(2874), - [anon_sym_AMP_CARET] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_or] = ACTIONS(2874), - [sym_none] = ACTIONS(2874), - [sym_true] = ACTIONS(2874), - [sym_false] = ACTIONS(2874), - [sym_nil] = ACTIONS(2874), - [anon_sym_QMARK_DOT] = ACTIONS(2874), - [anon_sym_POUND_LBRACK] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_DOLLARif] = ACTIONS(2874), - [anon_sym_is] = ACTIONS(2874), - [anon_sym_BANGis] = ACTIONS(2874), - [anon_sym_in] = ACTIONS(2874), - [anon_sym_BANGin] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_select] = ACTIONS(2874), - [anon_sym_lock] = ACTIONS(2874), - [anon_sym_rlock] = ACTIONS(2874), - [anon_sym_unsafe] = ACTIONS(2874), - [anon_sym_sql] = ACTIONS(2874), - [sym_int_literal] = ACTIONS(2874), - [sym_float_literal] = ACTIONS(2874), - [sym_rune_literal] = ACTIONS(2874), - [sym_pseudo_compile_time_identifier] = ACTIONS(2874), - [anon_sym_shared] = ACTIONS(2874), - [anon_sym_map_LBRACK] = ACTIONS(2874), - [anon_sym_chan] = ACTIONS(2874), - [anon_sym_thread] = ACTIONS(2874), - [anon_sym_atomic] = ACTIONS(2874), - [anon_sym_assert] = ACTIONS(2874), - [anon_sym_defer] = ACTIONS(2874), - [anon_sym_goto] = ACTIONS(2874), - [anon_sym_break] = ACTIONS(2874), - [anon_sym_continue] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_DOLLARfor] = ACTIONS(2874), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_POUND] = ACTIONS(2874), - [anon_sym_asm] = ACTIONS(2874), - [anon_sym_AT_LBRACK] = ACTIONS(2874), - [sym___double_quote] = ACTIONS(2874), - [sym___single_quote] = ACTIONS(2874), - [sym___c_double_quote] = ACTIONS(2874), - [sym___c_single_quote] = ACTIONS(2874), - [sym___r_double_quote] = ACTIONS(2874), - [sym___r_single_quote] = ACTIONS(2874), - }, - [1002] = { - [sym_line_comment] = STATE(1002), - [sym_block_comment] = STATE(1002), - [ts_builtin_sym_end] = ACTIONS(2712), - [sym_identifier] = ACTIONS(2714), - [anon_sym_LF] = ACTIONS(2714), - [anon_sym_CR] = ACTIONS(2714), - [anon_sym_CR_LF] = ACTIONS(2714), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2714), - [anon_sym_as] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_COMMA] = ACTIONS(2714), - [anon_sym_const] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym___global] = ACTIONS(2714), - [anon_sym_type] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_fn] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_STAR] = ACTIONS(2714), - [anon_sym_SLASH] = ACTIONS(2714), - [anon_sym_PERCENT] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2714), - [anon_sym_GT] = ACTIONS(2714), - [anon_sym_EQ_EQ] = ACTIONS(2714), - [anon_sym_BANG_EQ] = ACTIONS(2714), - [anon_sym_LT_EQ] = ACTIONS(2714), - [anon_sym_GT_EQ] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_struct] = ACTIONS(2714), - [anon_sym_union] = ACTIONS(2714), - [anon_sym_pub] = ACTIONS(2714), - [anon_sym_mut] = ACTIONS(2714), - [anon_sym_enum] = ACTIONS(2714), - [anon_sym_interface] = ACTIONS(2714), - [anon_sym_PLUS_PLUS] = ACTIONS(2714), - [anon_sym_DASH_DASH] = ACTIONS(2714), - [anon_sym_QMARK] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(2714), - [anon_sym_go] = ACTIONS(2714), - [anon_sym_spawn] = ACTIONS(2714), - [anon_sym_json_DOTdecode] = ACTIONS(2714), - [anon_sym_LBRACK2] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2714), - [anon_sym_CARET] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_LT_DASH] = ACTIONS(2714), - [anon_sym_LT_LT] = ACTIONS(2714), - [anon_sym_GT_GT] = ACTIONS(2714), - [anon_sym_GT_GT_GT] = ACTIONS(2714), - [anon_sym_AMP_CARET] = ACTIONS(2714), - [anon_sym_AMP_AMP] = ACTIONS(2714), - [anon_sym_PIPE_PIPE] = ACTIONS(2714), - [anon_sym_or] = ACTIONS(2714), - [sym_none] = ACTIONS(2714), - [sym_true] = ACTIONS(2714), - [sym_false] = ACTIONS(2714), - [sym_nil] = ACTIONS(2714), - [anon_sym_QMARK_DOT] = ACTIONS(2714), - [anon_sym_POUND_LBRACK] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_is] = ACTIONS(2714), - [anon_sym_BANGis] = ACTIONS(2714), - [anon_sym_in] = ACTIONS(2714), - [anon_sym_BANGin] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2714), - [anon_sym_select] = ACTIONS(2714), - [anon_sym_lock] = ACTIONS(2714), - [anon_sym_rlock] = ACTIONS(2714), - [anon_sym_unsafe] = ACTIONS(2714), - [anon_sym_sql] = ACTIONS(2714), - [sym_int_literal] = ACTIONS(2714), - [sym_float_literal] = ACTIONS(2714), - [sym_rune_literal] = ACTIONS(2714), - [sym_pseudo_compile_time_identifier] = ACTIONS(2714), - [anon_sym_shared] = ACTIONS(2714), - [anon_sym_map_LBRACK] = ACTIONS(2714), - [anon_sym_chan] = ACTIONS(2714), - [anon_sym_thread] = ACTIONS(2714), - [anon_sym_atomic] = ACTIONS(2714), - [anon_sym_assert] = ACTIONS(2714), - [anon_sym_defer] = ACTIONS(2714), - [anon_sym_goto] = ACTIONS(2714), - [anon_sym_break] = ACTIONS(2714), - [anon_sym_continue] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_DOLLARfor] = ACTIONS(2714), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_POUND] = ACTIONS(2714), - [anon_sym_asm] = ACTIONS(2714), - [anon_sym_AT_LBRACK] = ACTIONS(2714), - [sym___double_quote] = ACTIONS(2714), - [sym___single_quote] = ACTIONS(2714), - [sym___c_double_quote] = ACTIONS(2714), - [sym___c_single_quote] = ACTIONS(2714), - [sym___r_double_quote] = ACTIONS(2714), - [sym___r_single_quote] = ACTIONS(2714), - }, - [1003] = { - [sym_line_comment] = STATE(1003), - [sym_block_comment] = STATE(1003), - [ts_builtin_sym_end] = ACTIONS(2922), - [sym_identifier] = ACTIONS(2924), - [anon_sym_LF] = ACTIONS(2924), - [anon_sym_CR] = ACTIONS(2924), - [anon_sym_CR_LF] = ACTIONS(2924), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_as] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_const] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym___global] = ACTIONS(2924), - [anon_sym_type] = ACTIONS(2924), - [anon_sym_PIPE] = ACTIONS(2924), - [anon_sym_fn] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_SLASH] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2924), - [anon_sym_GT] = ACTIONS(2924), - [anon_sym_EQ_EQ] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_LT_EQ] = ACTIONS(2924), - [anon_sym_GT_EQ] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_struct] = ACTIONS(2924), - [anon_sym_union] = ACTIONS(2924), - [anon_sym_pub] = ACTIONS(2924), - [anon_sym_mut] = ACTIONS(2924), - [anon_sym_enum] = ACTIONS(2924), - [anon_sym_interface] = ACTIONS(2924), - [anon_sym_PLUS_PLUS] = ACTIONS(2924), - [anon_sym_DASH_DASH] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_BANG] = ACTIONS(2924), - [anon_sym_go] = ACTIONS(2924), - [anon_sym_spawn] = ACTIONS(2924), - [anon_sym_json_DOTdecode] = ACTIONS(2924), - [anon_sym_LBRACK2] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2924), - [anon_sym_CARET] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_LT_LT] = ACTIONS(2924), - [anon_sym_GT_GT] = ACTIONS(2924), - [anon_sym_GT_GT_GT] = ACTIONS(2924), - [anon_sym_AMP_CARET] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_or] = ACTIONS(2924), - [sym_none] = ACTIONS(2924), - [sym_true] = ACTIONS(2924), - [sym_false] = ACTIONS(2924), - [sym_nil] = ACTIONS(2924), - [anon_sym_QMARK_DOT] = ACTIONS(2924), - [anon_sym_POUND_LBRACK] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_DOLLARif] = ACTIONS(2924), - [anon_sym_is] = ACTIONS(2924), - [anon_sym_BANGis] = ACTIONS(2924), - [anon_sym_in] = ACTIONS(2924), - [anon_sym_BANGin] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_select] = ACTIONS(2924), - [anon_sym_lock] = ACTIONS(2924), - [anon_sym_rlock] = ACTIONS(2924), - [anon_sym_unsafe] = ACTIONS(2924), - [anon_sym_sql] = ACTIONS(2924), - [sym_int_literal] = ACTIONS(2924), - [sym_float_literal] = ACTIONS(2924), - [sym_rune_literal] = ACTIONS(2924), - [sym_pseudo_compile_time_identifier] = ACTIONS(2924), - [anon_sym_shared] = ACTIONS(2924), - [anon_sym_map_LBRACK] = ACTIONS(2924), - [anon_sym_chan] = ACTIONS(2924), - [anon_sym_thread] = ACTIONS(2924), - [anon_sym_atomic] = ACTIONS(2924), - [anon_sym_assert] = ACTIONS(2924), - [anon_sym_defer] = ACTIONS(2924), - [anon_sym_goto] = ACTIONS(2924), - [anon_sym_break] = ACTIONS(2924), - [anon_sym_continue] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_DOLLARfor] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_POUND] = ACTIONS(2924), - [anon_sym_asm] = ACTIONS(2924), - [anon_sym_AT_LBRACK] = ACTIONS(2924), - [sym___double_quote] = ACTIONS(2924), - [sym___single_quote] = ACTIONS(2924), - [sym___c_double_quote] = ACTIONS(2924), - [sym___c_single_quote] = ACTIONS(2924), - [sym___r_double_quote] = ACTIONS(2924), - [sym___r_single_quote] = ACTIONS(2924), - }, - [1004] = { - [sym_line_comment] = STATE(1004), - [sym_block_comment] = STATE(1004), - [ts_builtin_sym_end] = ACTIONS(2730), - [sym_identifier] = ACTIONS(2732), - [anon_sym_LF] = ACTIONS(2732), - [anon_sym_CR] = ACTIONS(2732), - [anon_sym_CR_LF] = ACTIONS(2732), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2732), - [anon_sym_as] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_COMMA] = ACTIONS(2732), - [anon_sym_const] = ACTIONS(2732), - [anon_sym_LPAREN] = ACTIONS(2732), - [anon_sym___global] = ACTIONS(2732), - [anon_sym_type] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_fn] = ACTIONS(2732), - [anon_sym_PLUS] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2732), - [anon_sym_STAR] = ACTIONS(2732), - [anon_sym_SLASH] = ACTIONS(2732), - [anon_sym_PERCENT] = ACTIONS(2732), - [anon_sym_LT] = ACTIONS(2732), - [anon_sym_GT] = ACTIONS(2732), - [anon_sym_EQ_EQ] = ACTIONS(2732), - [anon_sym_BANG_EQ] = ACTIONS(2732), - [anon_sym_LT_EQ] = ACTIONS(2732), - [anon_sym_GT_EQ] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_struct] = ACTIONS(2732), - [anon_sym_union] = ACTIONS(2732), - [anon_sym_pub] = ACTIONS(2732), - [anon_sym_mut] = ACTIONS(2732), - [anon_sym_enum] = ACTIONS(2732), - [anon_sym_interface] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2732), - [anon_sym_DASH_DASH] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2732), - [anon_sym_go] = ACTIONS(2732), - [anon_sym_spawn] = ACTIONS(2732), - [anon_sym_json_DOTdecode] = ACTIONS(2732), - [anon_sym_LBRACK2] = ACTIONS(2732), - [anon_sym_TILDE] = ACTIONS(2732), - [anon_sym_CARET] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2732), - [anon_sym_LT_DASH] = ACTIONS(2732), - [anon_sym_LT_LT] = ACTIONS(2732), - [anon_sym_GT_GT] = ACTIONS(2732), - [anon_sym_GT_GT_GT] = ACTIONS(2732), - [anon_sym_AMP_CARET] = ACTIONS(2732), - [anon_sym_AMP_AMP] = ACTIONS(2732), - [anon_sym_PIPE_PIPE] = ACTIONS(2732), - [anon_sym_or] = ACTIONS(2732), - [sym_none] = ACTIONS(2732), - [sym_true] = ACTIONS(2732), - [sym_false] = ACTIONS(2732), - [sym_nil] = ACTIONS(2732), - [anon_sym_QMARK_DOT] = ACTIONS(2732), - [anon_sym_POUND_LBRACK] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_DOLLARif] = ACTIONS(2732), - [anon_sym_is] = ACTIONS(2732), - [anon_sym_BANGis] = ACTIONS(2732), - [anon_sym_in] = ACTIONS(2732), - [anon_sym_BANGin] = ACTIONS(2732), - [anon_sym_match] = ACTIONS(2732), - [anon_sym_select] = ACTIONS(2732), - [anon_sym_lock] = ACTIONS(2732), - [anon_sym_rlock] = ACTIONS(2732), - [anon_sym_unsafe] = ACTIONS(2732), - [anon_sym_sql] = ACTIONS(2732), - [sym_int_literal] = ACTIONS(2732), - [sym_float_literal] = ACTIONS(2732), - [sym_rune_literal] = ACTIONS(2732), - [sym_pseudo_compile_time_identifier] = ACTIONS(2732), - [anon_sym_shared] = ACTIONS(2732), - [anon_sym_map_LBRACK] = ACTIONS(2732), - [anon_sym_chan] = ACTIONS(2732), - [anon_sym_thread] = ACTIONS(2732), - [anon_sym_atomic] = ACTIONS(2732), - [anon_sym_assert] = ACTIONS(2732), - [anon_sym_defer] = ACTIONS(2732), - [anon_sym_goto] = ACTIONS(2732), - [anon_sym_break] = ACTIONS(2732), - [anon_sym_continue] = ACTIONS(2732), - [anon_sym_return] = ACTIONS(2732), - [anon_sym_DOLLARfor] = ACTIONS(2732), - [anon_sym_for] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(2732), - [anon_sym_asm] = ACTIONS(2732), - [anon_sym_AT_LBRACK] = ACTIONS(2732), - [sym___double_quote] = ACTIONS(2732), - [sym___single_quote] = ACTIONS(2732), - [sym___c_double_quote] = ACTIONS(2732), - [sym___c_single_quote] = ACTIONS(2732), - [sym___r_double_quote] = ACTIONS(2732), - [sym___r_single_quote] = ACTIONS(2732), - }, - [1005] = { - [sym_line_comment] = STATE(1005), - [sym_block_comment] = STATE(1005), - [ts_builtin_sym_end] = ACTIONS(2708), - [sym_identifier] = ACTIONS(2710), - [anon_sym_LF] = ACTIONS(2710), - [anon_sym_CR] = ACTIONS(2710), - [anon_sym_CR_LF] = ACTIONS(2710), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2710), - [anon_sym_as] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_COMMA] = ACTIONS(2710), - [anon_sym_const] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym___global] = ACTIONS(2710), - [anon_sym_type] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_fn] = ACTIONS(2710), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_STAR] = ACTIONS(2710), - [anon_sym_SLASH] = ACTIONS(2710), - [anon_sym_PERCENT] = ACTIONS(2710), - [anon_sym_LT] = ACTIONS(2710), - [anon_sym_GT] = ACTIONS(2710), - [anon_sym_EQ_EQ] = ACTIONS(2710), - [anon_sym_BANG_EQ] = ACTIONS(2710), - [anon_sym_LT_EQ] = ACTIONS(2710), - [anon_sym_GT_EQ] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_union] = ACTIONS(2710), - [anon_sym_pub] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(2710), - [anon_sym_enum] = ACTIONS(2710), - [anon_sym_interface] = ACTIONS(2710), - [anon_sym_PLUS_PLUS] = ACTIONS(2710), - [anon_sym_DASH_DASH] = ACTIONS(2710), - [anon_sym_QMARK] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(2710), - [anon_sym_go] = ACTIONS(2710), - [anon_sym_spawn] = ACTIONS(2710), - [anon_sym_json_DOTdecode] = ACTIONS(2710), - [anon_sym_LBRACK2] = ACTIONS(2710), - [anon_sym_TILDE] = ACTIONS(2710), - [anon_sym_CARET] = ACTIONS(2710), - [anon_sym_AMP] = ACTIONS(2710), - [anon_sym_LT_DASH] = ACTIONS(2710), - [anon_sym_LT_LT] = ACTIONS(2710), - [anon_sym_GT_GT] = ACTIONS(2710), - [anon_sym_GT_GT_GT] = ACTIONS(2710), - [anon_sym_AMP_CARET] = ACTIONS(2710), - [anon_sym_AMP_AMP] = ACTIONS(2710), - [anon_sym_PIPE_PIPE] = ACTIONS(2710), - [anon_sym_or] = ACTIONS(2710), - [sym_none] = ACTIONS(2710), - [sym_true] = ACTIONS(2710), - [sym_false] = ACTIONS(2710), - [sym_nil] = ACTIONS(2710), - [anon_sym_QMARK_DOT] = ACTIONS(2710), - [anon_sym_POUND_LBRACK] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_DOLLARif] = ACTIONS(2710), - [anon_sym_is] = ACTIONS(2710), - [anon_sym_BANGis] = ACTIONS(2710), - [anon_sym_in] = ACTIONS(2710), - [anon_sym_BANGin] = ACTIONS(2710), - [anon_sym_match] = ACTIONS(2710), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2710), - [anon_sym_rlock] = ACTIONS(2710), - [anon_sym_unsafe] = ACTIONS(2710), - [anon_sym_sql] = ACTIONS(2710), - [sym_int_literal] = ACTIONS(2710), - [sym_float_literal] = ACTIONS(2710), - [sym_rune_literal] = ACTIONS(2710), - [sym_pseudo_compile_time_identifier] = ACTIONS(2710), - [anon_sym_shared] = ACTIONS(2710), - [anon_sym_map_LBRACK] = ACTIONS(2710), - [anon_sym_chan] = ACTIONS(2710), - [anon_sym_thread] = ACTIONS(2710), - [anon_sym_atomic] = ACTIONS(2710), - [anon_sym_assert] = ACTIONS(2710), - [anon_sym_defer] = ACTIONS(2710), - [anon_sym_goto] = ACTIONS(2710), - [anon_sym_break] = ACTIONS(2710), - [anon_sym_continue] = ACTIONS(2710), - [anon_sym_return] = ACTIONS(2710), - [anon_sym_DOLLARfor] = ACTIONS(2710), - [anon_sym_for] = ACTIONS(2710), - [anon_sym_POUND] = ACTIONS(2710), - [anon_sym_asm] = ACTIONS(2710), - [anon_sym_AT_LBRACK] = ACTIONS(2710), - [sym___double_quote] = ACTIONS(2710), - [sym___single_quote] = ACTIONS(2710), - [sym___c_double_quote] = ACTIONS(2710), - [sym___c_single_quote] = ACTIONS(2710), - [sym___r_double_quote] = ACTIONS(2710), - [sym___r_single_quote] = ACTIONS(2710), - }, - [1006] = { - [sym_line_comment] = STATE(1006), - [sym_block_comment] = STATE(1006), - [ts_builtin_sym_end] = ACTIONS(2848), - [sym_identifier] = ACTIONS(2850), - [anon_sym_LF] = ACTIONS(2850), - [anon_sym_CR] = ACTIONS(2850), - [anon_sym_CR_LF] = ACTIONS(2850), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_as] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2850), - [anon_sym_const] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym___global] = ACTIONS(2850), - [anon_sym_type] = ACTIONS(2850), - [anon_sym_PIPE] = ACTIONS(2850), - [anon_sym_fn] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_SLASH] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_GT] = ACTIONS(2850), - [anon_sym_EQ_EQ] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_LT_EQ] = ACTIONS(2850), - [anon_sym_GT_EQ] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_struct] = ACTIONS(2850), - [anon_sym_union] = ACTIONS(2850), - [anon_sym_pub] = ACTIONS(2850), - [anon_sym_mut] = ACTIONS(2850), - [anon_sym_enum] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2850), - [anon_sym_PLUS_PLUS] = ACTIONS(2850), - [anon_sym_DASH_DASH] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2850), - [anon_sym_go] = ACTIONS(2850), - [anon_sym_spawn] = ACTIONS(2850), - [anon_sym_json_DOTdecode] = ACTIONS(2850), - [anon_sym_LBRACK2] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_CARET] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_LT_LT] = ACTIONS(2850), - [anon_sym_GT_GT] = ACTIONS(2850), - [anon_sym_GT_GT_GT] = ACTIONS(2850), - [anon_sym_AMP_CARET] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_or] = ACTIONS(2850), - [sym_none] = ACTIONS(2850), - [sym_true] = ACTIONS(2850), - [sym_false] = ACTIONS(2850), - [sym_nil] = ACTIONS(2850), - [anon_sym_QMARK_DOT] = ACTIONS(2850), - [anon_sym_POUND_LBRACK] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_DOLLARif] = ACTIONS(2850), - [anon_sym_is] = ACTIONS(2850), - [anon_sym_BANGis] = ACTIONS(2850), - [anon_sym_in] = ACTIONS(2850), - [anon_sym_BANGin] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_select] = ACTIONS(2850), - [anon_sym_lock] = ACTIONS(2850), - [anon_sym_rlock] = ACTIONS(2850), - [anon_sym_unsafe] = ACTIONS(2850), - [anon_sym_sql] = ACTIONS(2850), - [sym_int_literal] = ACTIONS(2850), - [sym_float_literal] = ACTIONS(2850), - [sym_rune_literal] = ACTIONS(2850), - [sym_pseudo_compile_time_identifier] = ACTIONS(2850), - [anon_sym_shared] = ACTIONS(2850), - [anon_sym_map_LBRACK] = ACTIONS(2850), - [anon_sym_chan] = ACTIONS(2850), - [anon_sym_thread] = ACTIONS(2850), - [anon_sym_atomic] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_defer] = ACTIONS(2850), - [anon_sym_goto] = ACTIONS(2850), - [anon_sym_break] = ACTIONS(2850), - [anon_sym_continue] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_DOLLARfor] = ACTIONS(2850), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_POUND] = ACTIONS(2850), - [anon_sym_asm] = ACTIONS(2850), - [anon_sym_AT_LBRACK] = ACTIONS(2850), - [sym___double_quote] = ACTIONS(2850), - [sym___single_quote] = ACTIONS(2850), - [sym___c_double_quote] = ACTIONS(2850), - [sym___c_single_quote] = ACTIONS(2850), - [sym___r_double_quote] = ACTIONS(2850), - [sym___r_single_quote] = ACTIONS(2850), - }, - [1007] = { - [sym_line_comment] = STATE(1007), - [sym_block_comment] = STATE(1007), - [ts_builtin_sym_end] = ACTIONS(2830), - [sym_identifier] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2832), - [anon_sym_CR] = ACTIONS(2832), - [anon_sym_CR_LF] = ACTIONS(2832), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_as] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_const] = ACTIONS(2832), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym___global] = ACTIONS(2832), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_LT_EQ] = ACTIONS(2832), - [anon_sym_GT_EQ] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_union] = ACTIONS(2832), - [anon_sym_pub] = ACTIONS(2832), - [anon_sym_mut] = ACTIONS(2832), - [anon_sym_enum] = ACTIONS(2832), - [anon_sym_interface] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_go] = ACTIONS(2832), - [anon_sym_spawn] = ACTIONS(2832), - [anon_sym_json_DOTdecode] = ACTIONS(2832), - [anon_sym_LBRACK2] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_LT_DASH] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2832), - [anon_sym_AMP_CARET] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2832), - [sym_none] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_nil] = ACTIONS(2832), - [anon_sym_QMARK_DOT] = ACTIONS(2832), - [anon_sym_POUND_LBRACK] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_DOLLARif] = ACTIONS(2832), - [anon_sym_is] = ACTIONS(2832), - [anon_sym_BANGis] = ACTIONS(2832), - [anon_sym_in] = ACTIONS(2832), - [anon_sym_BANGin] = ACTIONS(2832), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_select] = ACTIONS(2832), - [anon_sym_lock] = ACTIONS(2832), - [anon_sym_rlock] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_sql] = ACTIONS(2832), - [sym_int_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2832), - [sym_rune_literal] = ACTIONS(2832), - [sym_pseudo_compile_time_identifier] = ACTIONS(2832), - [anon_sym_shared] = ACTIONS(2832), - [anon_sym_map_LBRACK] = ACTIONS(2832), - [anon_sym_chan] = ACTIONS(2832), - [anon_sym_thread] = ACTIONS(2832), - [anon_sym_atomic] = ACTIONS(2832), - [anon_sym_assert] = ACTIONS(2832), - [anon_sym_defer] = ACTIONS(2832), - [anon_sym_goto] = ACTIONS(2832), - [anon_sym_break] = ACTIONS(2832), - [anon_sym_continue] = ACTIONS(2832), - [anon_sym_return] = ACTIONS(2832), - [anon_sym_DOLLARfor] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2832), - [anon_sym_POUND] = ACTIONS(2832), - [anon_sym_asm] = ACTIONS(2832), - [anon_sym_AT_LBRACK] = ACTIONS(2832), - [sym___double_quote] = ACTIONS(2832), - [sym___single_quote] = ACTIONS(2832), - [sym___c_double_quote] = ACTIONS(2832), - [sym___c_single_quote] = ACTIONS(2832), - [sym___r_double_quote] = ACTIONS(2832), - [sym___r_single_quote] = ACTIONS(2832), - }, - [1008] = { - [sym_line_comment] = STATE(1008), - [sym_block_comment] = STATE(1008), - [ts_builtin_sym_end] = ACTIONS(2792), - [sym_identifier] = ACTIONS(2794), - [anon_sym_LF] = ACTIONS(2794), - [anon_sym_CR] = ACTIONS(2794), - [anon_sym_CR_LF] = ACTIONS(2794), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2794), - [anon_sym_as] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2794), - [anon_sym_COMMA] = ACTIONS(2794), - [anon_sym_const] = ACTIONS(2794), - [anon_sym_LPAREN] = ACTIONS(2794), - [anon_sym___global] = ACTIONS(2794), - [anon_sym_type] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_fn] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_SLASH] = ACTIONS(2794), - [anon_sym_PERCENT] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(2794), - [anon_sym_GT] = ACTIONS(2794), - [anon_sym_EQ_EQ] = ACTIONS(2794), - [anon_sym_BANG_EQ] = ACTIONS(2794), - [anon_sym_LT_EQ] = ACTIONS(2794), - [anon_sym_GT_EQ] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(2792), - [anon_sym_struct] = ACTIONS(2794), - [anon_sym_union] = ACTIONS(2794), - [anon_sym_pub] = ACTIONS(2794), - [anon_sym_mut] = ACTIONS(2794), - [anon_sym_enum] = ACTIONS(2794), - [anon_sym_interface] = ACTIONS(2794), - [anon_sym_PLUS_PLUS] = ACTIONS(2794), - [anon_sym_DASH_DASH] = ACTIONS(2794), - [anon_sym_QMARK] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2794), - [anon_sym_go] = ACTIONS(2794), - [anon_sym_spawn] = ACTIONS(2794), - [anon_sym_json_DOTdecode] = ACTIONS(2794), - [anon_sym_LBRACK2] = ACTIONS(2794), - [anon_sym_TILDE] = ACTIONS(2794), - [anon_sym_CARET] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_LT_DASH] = ACTIONS(2794), - [anon_sym_LT_LT] = ACTIONS(2794), - [anon_sym_GT_GT] = ACTIONS(2794), - [anon_sym_GT_GT_GT] = ACTIONS(2794), - [anon_sym_AMP_CARET] = ACTIONS(2794), - [anon_sym_AMP_AMP] = ACTIONS(2794), - [anon_sym_PIPE_PIPE] = ACTIONS(2794), - [anon_sym_or] = ACTIONS(2794), - [sym_none] = ACTIONS(2794), - [sym_true] = ACTIONS(2794), - [sym_false] = ACTIONS(2794), - [sym_nil] = ACTIONS(2794), - [anon_sym_QMARK_DOT] = ACTIONS(2794), - [anon_sym_POUND_LBRACK] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_DOLLARif] = ACTIONS(2794), - [anon_sym_is] = ACTIONS(2794), - [anon_sym_BANGis] = ACTIONS(2794), - [anon_sym_in] = ACTIONS(2794), - [anon_sym_BANGin] = ACTIONS(2794), - [anon_sym_match] = ACTIONS(2794), - [anon_sym_select] = ACTIONS(2794), - [anon_sym_lock] = ACTIONS(2794), - [anon_sym_rlock] = ACTIONS(2794), - [anon_sym_unsafe] = ACTIONS(2794), - [anon_sym_sql] = ACTIONS(2794), - [sym_int_literal] = ACTIONS(2794), - [sym_float_literal] = ACTIONS(2794), - [sym_rune_literal] = ACTIONS(2794), - [sym_pseudo_compile_time_identifier] = ACTIONS(2794), - [anon_sym_shared] = ACTIONS(2794), - [anon_sym_map_LBRACK] = ACTIONS(2794), - [anon_sym_chan] = ACTIONS(2794), - [anon_sym_thread] = ACTIONS(2794), - [anon_sym_atomic] = ACTIONS(2794), - [anon_sym_assert] = ACTIONS(2794), - [anon_sym_defer] = ACTIONS(2794), - [anon_sym_goto] = ACTIONS(2794), - [anon_sym_break] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2794), - [anon_sym_return] = ACTIONS(2794), - [anon_sym_DOLLARfor] = ACTIONS(2794), - [anon_sym_for] = ACTIONS(2794), - [anon_sym_POUND] = ACTIONS(2794), - [anon_sym_asm] = ACTIONS(2794), - [anon_sym_AT_LBRACK] = ACTIONS(2794), - [sym___double_quote] = ACTIONS(2794), - [sym___single_quote] = ACTIONS(2794), - [sym___c_double_quote] = ACTIONS(2794), - [sym___c_single_quote] = ACTIONS(2794), - [sym___r_double_quote] = ACTIONS(2794), - [sym___r_single_quote] = ACTIONS(2794), - }, - [1009] = { - [sym_line_comment] = STATE(1009), - [sym_block_comment] = STATE(1009), - [ts_builtin_sym_end] = ACTIONS(2540), - [sym_identifier] = ACTIONS(2542), - [anon_sym_LF] = ACTIONS(2542), - [anon_sym_CR] = ACTIONS(2542), - [anon_sym_CR_LF] = ACTIONS(2542), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2542), - [anon_sym_as] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2542), - [anon_sym_COMMA] = ACTIONS(2542), - [anon_sym_const] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym___global] = ACTIONS(2542), - [anon_sym_type] = ACTIONS(2542), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_fn] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_PERCENT] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_GT] = ACTIONS(2542), - [anon_sym_EQ_EQ] = ACTIONS(2542), - [anon_sym_BANG_EQ] = ACTIONS(2542), - [anon_sym_LT_EQ] = ACTIONS(2542), - [anon_sym_GT_EQ] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2540), - [anon_sym_struct] = ACTIONS(2542), - [anon_sym_union] = ACTIONS(2542), - [anon_sym_pub] = ACTIONS(2542), - [anon_sym_mut] = ACTIONS(2542), - [anon_sym_enum] = ACTIONS(2542), - [anon_sym_interface] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2542), - [anon_sym_DASH_DASH] = ACTIONS(2542), - [anon_sym_QMARK] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2542), - [anon_sym_json_DOTdecode] = ACTIONS(2542), - [anon_sym_LBRACK2] = ACTIONS(2542), - [anon_sym_TILDE] = ACTIONS(2542), - [anon_sym_CARET] = ACTIONS(2542), - [anon_sym_AMP] = ACTIONS(2542), - [anon_sym_LT_DASH] = ACTIONS(2542), - [anon_sym_LT_LT] = ACTIONS(2542), - [anon_sym_GT_GT] = ACTIONS(2542), - [anon_sym_GT_GT_GT] = ACTIONS(2542), - [anon_sym_AMP_CARET] = ACTIONS(2542), - [anon_sym_AMP_AMP] = ACTIONS(2542), - [anon_sym_PIPE_PIPE] = ACTIONS(2542), - [anon_sym_or] = ACTIONS(2542), - [sym_none] = ACTIONS(2542), - [sym_true] = ACTIONS(2542), - [sym_false] = ACTIONS(2542), - [sym_nil] = ACTIONS(2542), - [anon_sym_QMARK_DOT] = ACTIONS(2542), - [anon_sym_POUND_LBRACK] = ACTIONS(2542), - [anon_sym_if] = ACTIONS(2542), - [anon_sym_DOLLARif] = ACTIONS(2542), - [anon_sym_is] = ACTIONS(2542), - [anon_sym_BANGis] = ACTIONS(2542), - [anon_sym_in] = ACTIONS(2542), - [anon_sym_BANGin] = ACTIONS(2542), - [anon_sym_match] = ACTIONS(2542), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2542), - [anon_sym_rlock] = ACTIONS(2542), - [anon_sym_unsafe] = ACTIONS(2542), - [anon_sym_sql] = ACTIONS(2542), - [sym_int_literal] = ACTIONS(2542), - [sym_float_literal] = ACTIONS(2542), - [sym_rune_literal] = ACTIONS(2542), - [sym_pseudo_compile_time_identifier] = ACTIONS(2542), - [anon_sym_shared] = ACTIONS(2542), - [anon_sym_map_LBRACK] = ACTIONS(2542), - [anon_sym_chan] = ACTIONS(2542), - [anon_sym_thread] = ACTIONS(2542), - [anon_sym_atomic] = ACTIONS(2542), - [anon_sym_assert] = ACTIONS(2542), - [anon_sym_defer] = ACTIONS(2542), - [anon_sym_goto] = ACTIONS(2542), - [anon_sym_break] = ACTIONS(2542), - [anon_sym_continue] = ACTIONS(2542), - [anon_sym_return] = ACTIONS(2542), - [anon_sym_DOLLARfor] = ACTIONS(2542), - [anon_sym_for] = ACTIONS(2542), - [anon_sym_POUND] = ACTIONS(2542), - [anon_sym_asm] = ACTIONS(2542), - [anon_sym_AT_LBRACK] = ACTIONS(2542), - [sym___double_quote] = ACTIONS(2542), - [sym___single_quote] = ACTIONS(2542), - [sym___c_double_quote] = ACTIONS(2542), - [sym___c_single_quote] = ACTIONS(2542), - [sym___r_double_quote] = ACTIONS(2542), - [sym___r_single_quote] = ACTIONS(2542), - }, - [1010] = { - [sym_line_comment] = STATE(1010), - [sym_block_comment] = STATE(1010), - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2782), - [anon_sym_LF] = ACTIONS(2782), - [anon_sym_CR] = ACTIONS(2782), - [anon_sym_CR_LF] = ACTIONS(2782), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2782), - [anon_sym_as] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_COMMA] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym___global] = ACTIONS(2782), - [anon_sym_type] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2782), - [anon_sym_fn] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2782), - [anon_sym_PERCENT] = ACTIONS(2782), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_GT] = ACTIONS(2782), - [anon_sym_EQ_EQ] = ACTIONS(2782), - [anon_sym_BANG_EQ] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(2782), - [anon_sym_GT_EQ] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2780), - [anon_sym_struct] = ACTIONS(2782), - [anon_sym_union] = ACTIONS(2782), - [anon_sym_pub] = ACTIONS(2782), - [anon_sym_mut] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2782), - [anon_sym_interface] = ACTIONS(2782), - [anon_sym_PLUS_PLUS] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2782), - [anon_sym_QMARK] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2782), - [anon_sym_go] = ACTIONS(2782), - [anon_sym_spawn] = ACTIONS(2782), - [anon_sym_json_DOTdecode] = ACTIONS(2782), - [anon_sym_LBRACK2] = ACTIONS(2782), - [anon_sym_TILDE] = ACTIONS(2782), - [anon_sym_CARET] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_LT_DASH] = ACTIONS(2782), - [anon_sym_LT_LT] = ACTIONS(2782), - [anon_sym_GT_GT] = ACTIONS(2782), - [anon_sym_GT_GT_GT] = ACTIONS(2782), - [anon_sym_AMP_CARET] = ACTIONS(2782), - [anon_sym_AMP_AMP] = ACTIONS(2782), - [anon_sym_PIPE_PIPE] = ACTIONS(2782), - [anon_sym_or] = ACTIONS(2782), - [sym_none] = ACTIONS(2782), - [sym_true] = ACTIONS(2782), - [sym_false] = ACTIONS(2782), - [sym_nil] = ACTIONS(2782), - [anon_sym_QMARK_DOT] = ACTIONS(2782), - [anon_sym_POUND_LBRACK] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_DOLLARif] = ACTIONS(2782), - [anon_sym_is] = ACTIONS(2782), - [anon_sym_BANGis] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(2782), - [anon_sym_BANGin] = ACTIONS(2782), - [anon_sym_match] = ACTIONS(2782), - [anon_sym_select] = ACTIONS(2782), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2782), - [anon_sym_sql] = ACTIONS(2782), - [sym_int_literal] = ACTIONS(2782), - [sym_float_literal] = ACTIONS(2782), - [sym_rune_literal] = ACTIONS(2782), - [sym_pseudo_compile_time_identifier] = ACTIONS(2782), - [anon_sym_shared] = ACTIONS(2782), - [anon_sym_map_LBRACK] = ACTIONS(2782), - [anon_sym_chan] = ACTIONS(2782), - [anon_sym_thread] = ACTIONS(2782), - [anon_sym_atomic] = ACTIONS(2782), - [anon_sym_assert] = ACTIONS(2782), - [anon_sym_defer] = ACTIONS(2782), - [anon_sym_goto] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_DOLLARfor] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_POUND] = ACTIONS(2782), - [anon_sym_asm] = ACTIONS(2782), - [anon_sym_AT_LBRACK] = ACTIONS(2782), - [sym___double_quote] = ACTIONS(2782), - [sym___single_quote] = ACTIONS(2782), - [sym___c_double_quote] = ACTIONS(2782), - [sym___c_single_quote] = ACTIONS(2782), - [sym___r_double_quote] = ACTIONS(2782), - [sym___r_single_quote] = ACTIONS(2782), - }, - [1011] = { - [sym_line_comment] = STATE(1011), - [sym_block_comment] = STATE(1011), - [ts_builtin_sym_end] = ACTIONS(2716), - [sym_identifier] = ACTIONS(2718), - [anon_sym_LF] = ACTIONS(2718), - [anon_sym_CR] = ACTIONS(2718), - [anon_sym_CR_LF] = ACTIONS(2718), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_as] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_COMMA] = ACTIONS(2718), - [anon_sym_const] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2718), - [anon_sym___global] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_fn] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(2718), - [anon_sym_STAR] = ACTIONS(2718), - [anon_sym_SLASH] = ACTIONS(2718), - [anon_sym_PERCENT] = ACTIONS(2718), - [anon_sym_LT] = ACTIONS(2718), - [anon_sym_GT] = ACTIONS(2718), - [anon_sym_EQ_EQ] = ACTIONS(2718), - [anon_sym_BANG_EQ] = ACTIONS(2718), - [anon_sym_LT_EQ] = ACTIONS(2718), - [anon_sym_GT_EQ] = ACTIONS(2718), - [anon_sym_LBRACK] = ACTIONS(2716), - [anon_sym_struct] = ACTIONS(2718), - [anon_sym_union] = ACTIONS(2718), - [anon_sym_pub] = ACTIONS(2718), - [anon_sym_mut] = ACTIONS(2718), - [anon_sym_enum] = ACTIONS(2718), - [anon_sym_interface] = ACTIONS(2718), - [anon_sym_PLUS_PLUS] = ACTIONS(2718), - [anon_sym_DASH_DASH] = ACTIONS(2718), - [anon_sym_QMARK] = ACTIONS(2718), - [anon_sym_BANG] = ACTIONS(2718), - [anon_sym_go] = ACTIONS(2718), - [anon_sym_spawn] = ACTIONS(2718), - [anon_sym_json_DOTdecode] = ACTIONS(2718), - [anon_sym_LBRACK2] = ACTIONS(2718), - [anon_sym_TILDE] = ACTIONS(2718), - [anon_sym_CARET] = ACTIONS(2718), - [anon_sym_AMP] = ACTIONS(2718), - [anon_sym_LT_DASH] = ACTIONS(2718), - [anon_sym_LT_LT] = ACTIONS(2718), - [anon_sym_GT_GT] = ACTIONS(2718), - [anon_sym_GT_GT_GT] = ACTIONS(2718), - [anon_sym_AMP_CARET] = ACTIONS(2718), - [anon_sym_AMP_AMP] = ACTIONS(2718), - [anon_sym_PIPE_PIPE] = ACTIONS(2718), - [anon_sym_or] = ACTIONS(2718), - [sym_none] = ACTIONS(2718), - [sym_true] = ACTIONS(2718), - [sym_false] = ACTIONS(2718), - [sym_nil] = ACTIONS(2718), - [anon_sym_QMARK_DOT] = ACTIONS(2718), - [anon_sym_POUND_LBRACK] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2718), - [anon_sym_DOLLARif] = ACTIONS(2718), - [anon_sym_is] = ACTIONS(2718), - [anon_sym_BANGis] = ACTIONS(2718), - [anon_sym_in] = ACTIONS(2718), - [anon_sym_BANGin] = ACTIONS(2718), - [anon_sym_match] = ACTIONS(2718), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2718), - [anon_sym_rlock] = ACTIONS(2718), - [anon_sym_unsafe] = ACTIONS(2718), - [anon_sym_sql] = ACTIONS(2718), - [sym_int_literal] = ACTIONS(2718), - [sym_float_literal] = ACTIONS(2718), - [sym_rune_literal] = ACTIONS(2718), - [sym_pseudo_compile_time_identifier] = ACTIONS(2718), - [anon_sym_shared] = ACTIONS(2718), - [anon_sym_map_LBRACK] = ACTIONS(2718), - [anon_sym_chan] = ACTIONS(2718), - [anon_sym_thread] = ACTIONS(2718), - [anon_sym_atomic] = ACTIONS(2718), - [anon_sym_assert] = ACTIONS(2718), - [anon_sym_defer] = ACTIONS(2718), - [anon_sym_goto] = ACTIONS(2718), - [anon_sym_break] = ACTIONS(2718), - [anon_sym_continue] = ACTIONS(2718), - [anon_sym_return] = ACTIONS(2718), - [anon_sym_DOLLARfor] = ACTIONS(2718), - [anon_sym_for] = ACTIONS(2718), - [anon_sym_POUND] = ACTIONS(2718), - [anon_sym_asm] = ACTIONS(2718), - [anon_sym_AT_LBRACK] = ACTIONS(2718), - [sym___double_quote] = ACTIONS(2718), - [sym___single_quote] = ACTIONS(2718), - [sym___c_double_quote] = ACTIONS(2718), - [sym___c_single_quote] = ACTIONS(2718), - [sym___r_double_quote] = ACTIONS(2718), - [sym___r_single_quote] = ACTIONS(2718), - }, - [1012] = { - [sym_line_comment] = STATE(1012), - [sym_block_comment] = STATE(1012), - [ts_builtin_sym_end] = ACTIONS(2141), - [sym_identifier] = ACTIONS(2143), - [anon_sym_LF] = ACTIONS(2143), - [anon_sym_CR] = ACTIONS(2143), - [anon_sym_CR_LF] = ACTIONS(2143), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2143), - [anon_sym_as] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_COMMA] = ACTIONS(2143), - [anon_sym_const] = ACTIONS(2143), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym___global] = ACTIONS(2143), - [anon_sym_type] = ACTIONS(2143), - [anon_sym_PIPE] = ACTIONS(2143), - [anon_sym_fn] = ACTIONS(2143), - [anon_sym_PLUS] = ACTIONS(2143), - [anon_sym_DASH] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(2143), - [anon_sym_SLASH] = ACTIONS(2143), - [anon_sym_PERCENT] = ACTIONS(2143), - [anon_sym_LT] = ACTIONS(2143), - [anon_sym_GT] = ACTIONS(2143), - [anon_sym_EQ_EQ] = ACTIONS(2143), - [anon_sym_BANG_EQ] = ACTIONS(2143), - [anon_sym_LT_EQ] = ACTIONS(2143), - [anon_sym_GT_EQ] = ACTIONS(2143), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2143), - [anon_sym_union] = ACTIONS(2143), - [anon_sym_pub] = ACTIONS(2143), - [anon_sym_mut] = ACTIONS(2143), - [anon_sym_enum] = ACTIONS(2143), - [anon_sym_interface] = ACTIONS(2143), - [anon_sym_PLUS_PLUS] = ACTIONS(2143), - [anon_sym_DASH_DASH] = ACTIONS(2143), - [anon_sym_QMARK] = ACTIONS(2143), - [anon_sym_BANG] = ACTIONS(2143), - [anon_sym_go] = ACTIONS(2143), - [anon_sym_spawn] = ACTIONS(2143), - [anon_sym_json_DOTdecode] = ACTIONS(2143), - [anon_sym_LBRACK2] = ACTIONS(2143), - [anon_sym_TILDE] = ACTIONS(2143), - [anon_sym_CARET] = ACTIONS(2143), - [anon_sym_AMP] = ACTIONS(2143), - [anon_sym_LT_DASH] = ACTIONS(2143), - [anon_sym_LT_LT] = ACTIONS(2143), - [anon_sym_GT_GT] = ACTIONS(2143), - [anon_sym_GT_GT_GT] = ACTIONS(2143), - [anon_sym_AMP_CARET] = ACTIONS(2143), - [anon_sym_AMP_AMP] = ACTIONS(2143), - [anon_sym_PIPE_PIPE] = ACTIONS(2143), - [anon_sym_or] = ACTIONS(2143), - [sym_none] = ACTIONS(2143), - [sym_true] = ACTIONS(2143), - [sym_false] = ACTIONS(2143), - [sym_nil] = ACTIONS(2143), - [anon_sym_QMARK_DOT] = ACTIONS(2143), - [anon_sym_POUND_LBRACK] = ACTIONS(2143), - [anon_sym_if] = ACTIONS(2143), - [anon_sym_DOLLARif] = ACTIONS(2143), - [anon_sym_is] = ACTIONS(2143), - [anon_sym_BANGis] = ACTIONS(2143), - [anon_sym_in] = ACTIONS(2143), - [anon_sym_BANGin] = ACTIONS(2143), - [anon_sym_match] = ACTIONS(2143), - [anon_sym_select] = ACTIONS(2143), - [anon_sym_lock] = ACTIONS(2143), - [anon_sym_rlock] = ACTIONS(2143), - [anon_sym_unsafe] = ACTIONS(2143), - [anon_sym_sql] = ACTIONS(2143), - [sym_int_literal] = ACTIONS(2143), - [sym_float_literal] = ACTIONS(2143), - [sym_rune_literal] = ACTIONS(2143), - [sym_pseudo_compile_time_identifier] = ACTIONS(2143), - [anon_sym_shared] = ACTIONS(2143), - [anon_sym_map_LBRACK] = ACTIONS(2143), - [anon_sym_chan] = ACTIONS(2143), - [anon_sym_thread] = ACTIONS(2143), - [anon_sym_atomic] = ACTIONS(2143), - [anon_sym_assert] = ACTIONS(2143), - [anon_sym_defer] = ACTIONS(2143), - [anon_sym_goto] = ACTIONS(2143), - [anon_sym_break] = ACTIONS(2143), - [anon_sym_continue] = ACTIONS(2143), - [anon_sym_return] = ACTIONS(2143), - [anon_sym_DOLLARfor] = ACTIONS(2143), - [anon_sym_for] = ACTIONS(2143), - [anon_sym_POUND] = ACTIONS(2143), - [anon_sym_asm] = ACTIONS(2143), - [anon_sym_AT_LBRACK] = ACTIONS(2143), - [sym___double_quote] = ACTIONS(2143), - [sym___single_quote] = ACTIONS(2143), - [sym___c_double_quote] = ACTIONS(2143), - [sym___c_single_quote] = ACTIONS(2143), - [sym___r_double_quote] = ACTIONS(2143), - [sym___r_single_quote] = ACTIONS(2143), - }, - [1013] = { - [sym_line_comment] = STATE(1013), - [sym_block_comment] = STATE(1013), - [ts_builtin_sym_end] = ACTIONS(2499), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LF] = ACTIONS(2501), - [anon_sym_CR] = ACTIONS(2501), - [anon_sym_CR_LF] = ACTIONS(2501), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2501), - [anon_sym_as] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_COMMA] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2501), - [anon_sym___global] = ACTIONS(2501), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_fn] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_SLASH] = ACTIONS(2501), - [anon_sym_PERCENT] = ACTIONS(2501), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_GT] = ACTIONS(2501), - [anon_sym_EQ_EQ] = ACTIONS(2501), - [anon_sym_BANG_EQ] = ACTIONS(2501), - [anon_sym_LT_EQ] = ACTIONS(2501), - [anon_sym_GT_EQ] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_struct] = ACTIONS(2501), - [anon_sym_union] = ACTIONS(2501), - [anon_sym_pub] = ACTIONS(2501), - [anon_sym_mut] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2501), - [anon_sym_DASH_DASH] = ACTIONS(2501), - [anon_sym_QMARK] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2501), - [anon_sym_go] = ACTIONS(2501), - [anon_sym_spawn] = ACTIONS(2501), - [anon_sym_json_DOTdecode] = ACTIONS(2501), - [anon_sym_LBRACK2] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2501), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2501), - [anon_sym_LT_LT] = ACTIONS(2501), - [anon_sym_GT_GT] = ACTIONS(2501), - [anon_sym_GT_GT_GT] = ACTIONS(2501), - [anon_sym_AMP_CARET] = ACTIONS(2501), - [anon_sym_AMP_AMP] = ACTIONS(2501), - [anon_sym_PIPE_PIPE] = ACTIONS(2501), - [anon_sym_or] = ACTIONS(2501), - [sym_none] = ACTIONS(2501), - [sym_true] = ACTIONS(2501), - [sym_false] = ACTIONS(2501), - [sym_nil] = ACTIONS(2501), - [anon_sym_QMARK_DOT] = ACTIONS(2501), - [anon_sym_POUND_LBRACK] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_DOLLARif] = ACTIONS(2501), - [anon_sym_is] = ACTIONS(2501), - [anon_sym_BANGis] = ACTIONS(2501), - [anon_sym_in] = ACTIONS(2501), - [anon_sym_BANGin] = ACTIONS(2501), - [anon_sym_match] = ACTIONS(2501), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2501), - [anon_sym_rlock] = ACTIONS(2501), - [anon_sym_unsafe] = ACTIONS(2501), - [anon_sym_sql] = ACTIONS(2501), - [sym_int_literal] = ACTIONS(2501), - [sym_float_literal] = ACTIONS(2501), - [sym_rune_literal] = ACTIONS(2501), - [sym_pseudo_compile_time_identifier] = ACTIONS(2501), - [anon_sym_shared] = ACTIONS(2501), - [anon_sym_map_LBRACK] = ACTIONS(2501), - [anon_sym_chan] = ACTIONS(2501), - [anon_sym_thread] = ACTIONS(2501), - [anon_sym_atomic] = ACTIONS(2501), - [anon_sym_assert] = ACTIONS(2501), - [anon_sym_defer] = ACTIONS(2501), - [anon_sym_goto] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_DOLLARfor] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(2501), - [anon_sym_asm] = ACTIONS(2501), - [anon_sym_AT_LBRACK] = ACTIONS(2501), - [sym___double_quote] = ACTIONS(2501), - [sym___single_quote] = ACTIONS(2501), - [sym___c_double_quote] = ACTIONS(2501), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2501), - [sym___r_single_quote] = ACTIONS(2501), - }, - [1014] = { - [sym_line_comment] = STATE(1014), - [sym_block_comment] = STATE(1014), [ts_builtin_sym_end] = ACTIONS(2469), [sym_identifier] = ACTIONS(2471), [anon_sym_LF] = ACTIONS(2471), @@ -138856,6 +137098,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -138873,7360 +137121,8578 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2471), [anon_sym_asm] = ACTIONS(2471), [anon_sym_AT_LBRACK] = ACTIONS(2471), - [sym___double_quote] = ACTIONS(2471), - [sym___single_quote] = ACTIONS(2471), - [sym___c_double_quote] = ACTIONS(2471), - [sym___c_single_quote] = ACTIONS(2471), - [sym___r_double_quote] = ACTIONS(2471), - [sym___r_single_quote] = ACTIONS(2471), - }, - [1015] = { - [sym_line_comment] = STATE(1015), - [sym_block_comment] = STATE(1015), - [ts_builtin_sym_end] = ACTIONS(2682), - [sym_identifier] = ACTIONS(2684), - [anon_sym_LF] = ACTIONS(2684), - [anon_sym_CR] = ACTIONS(2684), - [anon_sym_CR_LF] = ACTIONS(2684), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2684), - [anon_sym_as] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_COMMA] = ACTIONS(2684), - [anon_sym_const] = ACTIONS(2684), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym___global] = ACTIONS(2684), - [anon_sym_type] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_fn] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(2684), - [anon_sym_SLASH] = ACTIONS(2684), - [anon_sym_PERCENT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2684), - [anon_sym_GT] = ACTIONS(2684), - [anon_sym_EQ_EQ] = ACTIONS(2684), - [anon_sym_BANG_EQ] = ACTIONS(2684), - [anon_sym_LT_EQ] = ACTIONS(2684), - [anon_sym_GT_EQ] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(2684), - [anon_sym_union] = ACTIONS(2684), - [anon_sym_pub] = ACTIONS(2684), - [anon_sym_mut] = ACTIONS(2684), - [anon_sym_enum] = ACTIONS(2684), - [anon_sym_interface] = ACTIONS(2684), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_QMARK] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2684), - [anon_sym_spawn] = ACTIONS(2684), - [anon_sym_json_DOTdecode] = ACTIONS(2684), - [anon_sym_LBRACK2] = ACTIONS(2684), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_CARET] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2684), - [anon_sym_LT_DASH] = ACTIONS(2684), - [anon_sym_LT_LT] = ACTIONS(2684), - [anon_sym_GT_GT] = ACTIONS(2684), - [anon_sym_GT_GT_GT] = ACTIONS(2684), - [anon_sym_AMP_CARET] = ACTIONS(2684), - [anon_sym_AMP_AMP] = ACTIONS(2684), - [anon_sym_PIPE_PIPE] = ACTIONS(2684), - [anon_sym_or] = ACTIONS(2684), - [sym_none] = ACTIONS(2684), - [sym_true] = ACTIONS(2684), - [sym_false] = ACTIONS(2684), - [sym_nil] = ACTIONS(2684), - [anon_sym_QMARK_DOT] = ACTIONS(2684), - [anon_sym_POUND_LBRACK] = ACTIONS(2684), - [anon_sym_if] = ACTIONS(2684), - [anon_sym_DOLLARif] = ACTIONS(2684), - [anon_sym_is] = ACTIONS(2684), - [anon_sym_BANGis] = ACTIONS(2684), - [anon_sym_in] = ACTIONS(2684), - [anon_sym_BANGin] = ACTIONS(2684), - [anon_sym_match] = ACTIONS(2684), - [anon_sym_select] = ACTIONS(2684), - [anon_sym_lock] = ACTIONS(2684), - [anon_sym_rlock] = ACTIONS(2684), - [anon_sym_unsafe] = ACTIONS(2684), - [anon_sym_sql] = ACTIONS(2684), - [sym_int_literal] = ACTIONS(2684), - [sym_float_literal] = ACTIONS(2684), - [sym_rune_literal] = ACTIONS(2684), - [sym_pseudo_compile_time_identifier] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(2684), - [anon_sym_map_LBRACK] = ACTIONS(2684), - [anon_sym_chan] = ACTIONS(2684), - [anon_sym_thread] = ACTIONS(2684), - [anon_sym_atomic] = ACTIONS(2684), - [anon_sym_assert] = ACTIONS(2684), - [anon_sym_defer] = ACTIONS(2684), - [anon_sym_goto] = ACTIONS(2684), - [anon_sym_break] = ACTIONS(2684), - [anon_sym_continue] = ACTIONS(2684), - [anon_sym_return] = ACTIONS(2684), - [anon_sym_DOLLARfor] = ACTIONS(2684), - [anon_sym_for] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(2684), - [anon_sym_asm] = ACTIONS(2684), - [anon_sym_AT_LBRACK] = ACTIONS(2684), - [sym___double_quote] = ACTIONS(2684), - [sym___single_quote] = ACTIONS(2684), - [sym___c_double_quote] = ACTIONS(2684), - [sym___c_single_quote] = ACTIONS(2684), - [sym___r_double_quote] = ACTIONS(2684), - [sym___r_single_quote] = ACTIONS(2684), - }, - [1016] = { - [sym_line_comment] = STATE(1016), - [sym_block_comment] = STATE(1016), - [ts_builtin_sym_end] = ACTIONS(2309), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LF] = ACTIONS(2311), - [anon_sym_CR] = ACTIONS(2311), - [anon_sym_CR_LF] = ACTIONS(2311), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2311), - [anon_sym_as] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2311), - [anon_sym_COMMA] = ACTIONS(2311), - [anon_sym_const] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym___global] = ACTIONS(2311), - [anon_sym_type] = ACTIONS(2311), - [anon_sym_PIPE] = ACTIONS(2311), - [anon_sym_fn] = ACTIONS(2311), - [anon_sym_PLUS] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2311), - [anon_sym_STAR] = ACTIONS(2311), - [anon_sym_SLASH] = ACTIONS(2311), - [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_GT] = ACTIONS(2311), - [anon_sym_EQ_EQ] = ACTIONS(2311), - [anon_sym_BANG_EQ] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(2311), - [anon_sym_GT_EQ] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2309), - [anon_sym_struct] = ACTIONS(2311), - [anon_sym_union] = ACTIONS(2311), - [anon_sym_pub] = ACTIONS(2311), - [anon_sym_mut] = ACTIONS(2311), - [anon_sym_enum] = ACTIONS(2311), - [anon_sym_interface] = ACTIONS(2311), - [anon_sym_PLUS_PLUS] = ACTIONS(2311), - [anon_sym_DASH_DASH] = ACTIONS(2311), - [anon_sym_QMARK] = ACTIONS(2311), - [anon_sym_BANG] = ACTIONS(2311), - [anon_sym_go] = ACTIONS(2311), - [anon_sym_spawn] = ACTIONS(2311), - [anon_sym_json_DOTdecode] = ACTIONS(2311), - [anon_sym_LBRACK2] = ACTIONS(2311), - [anon_sym_TILDE] = ACTIONS(2311), - [anon_sym_CARET] = ACTIONS(2311), - [anon_sym_AMP] = ACTIONS(2311), - [anon_sym_LT_DASH] = ACTIONS(2311), - [anon_sym_LT_LT] = ACTIONS(2311), - [anon_sym_GT_GT] = ACTIONS(2311), - [anon_sym_GT_GT_GT] = ACTIONS(2311), - [anon_sym_AMP_CARET] = ACTIONS(2311), - [anon_sym_AMP_AMP] = ACTIONS(2311), - [anon_sym_PIPE_PIPE] = ACTIONS(2311), - [anon_sym_or] = ACTIONS(2311), - [sym_none] = ACTIONS(2311), - [sym_true] = ACTIONS(2311), - [sym_false] = ACTIONS(2311), - [sym_nil] = ACTIONS(2311), - [anon_sym_QMARK_DOT] = ACTIONS(2311), - [anon_sym_POUND_LBRACK] = ACTIONS(2311), - [anon_sym_if] = ACTIONS(2311), - [anon_sym_DOLLARif] = ACTIONS(2311), - [anon_sym_is] = ACTIONS(2311), - [anon_sym_BANGis] = ACTIONS(2311), - [anon_sym_in] = ACTIONS(2311), - [anon_sym_BANGin] = ACTIONS(2311), - [anon_sym_match] = ACTIONS(2311), - [anon_sym_select] = ACTIONS(2311), - [anon_sym_lock] = ACTIONS(2311), - [anon_sym_rlock] = ACTIONS(2311), - [anon_sym_unsafe] = ACTIONS(2311), - [anon_sym_sql] = ACTIONS(2311), - [sym_int_literal] = ACTIONS(2311), - [sym_float_literal] = ACTIONS(2311), - [sym_rune_literal] = ACTIONS(2311), - [sym_pseudo_compile_time_identifier] = ACTIONS(2311), - [anon_sym_shared] = ACTIONS(2311), - [anon_sym_map_LBRACK] = ACTIONS(2311), - [anon_sym_chan] = ACTIONS(2311), - [anon_sym_thread] = ACTIONS(2311), - [anon_sym_atomic] = ACTIONS(2311), - [anon_sym_assert] = ACTIONS(2311), - [anon_sym_defer] = ACTIONS(2311), - [anon_sym_goto] = ACTIONS(2311), - [anon_sym_break] = ACTIONS(2311), - [anon_sym_continue] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2311), - [anon_sym_DOLLARfor] = ACTIONS(2311), - [anon_sym_for] = ACTIONS(2311), - [anon_sym_POUND] = ACTIONS(2311), - [anon_sym_asm] = ACTIONS(2311), - [anon_sym_AT_LBRACK] = ACTIONS(2311), - [sym___double_quote] = ACTIONS(2311), - [sym___single_quote] = ACTIONS(2311), - [sym___c_double_quote] = ACTIONS(2311), - [sym___c_single_quote] = ACTIONS(2311), - [sym___r_double_quote] = ACTIONS(2311), - [sym___r_single_quote] = ACTIONS(2311), }, - [1017] = { - [sym_line_comment] = STATE(1017), - [sym_block_comment] = STATE(1017), - [ts_builtin_sym_end] = ACTIONS(2301), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LF] = ACTIONS(2303), - [anon_sym_CR] = ACTIONS(2303), - [anon_sym_CR_LF] = ACTIONS(2303), + [998] = { + [sym_line_comment] = STATE(998), + [sym_block_comment] = STATE(998), + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2197), + [anon_sym_LF] = ACTIONS(2197), + [anon_sym_CR] = ACTIONS(2197), + [anon_sym_CR_LF] = ACTIONS(2197), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2303), - [anon_sym_as] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2303), - [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_const] = ACTIONS(2303), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym___global] = ACTIONS(2303), - [anon_sym_type] = ACTIONS(2303), - [anon_sym_PIPE] = ACTIONS(2303), - [anon_sym_fn] = ACTIONS(2303), - [anon_sym_PLUS] = ACTIONS(2303), - [anon_sym_DASH] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2303), - [anon_sym_SLASH] = ACTIONS(2303), - [anon_sym_PERCENT] = ACTIONS(2303), - [anon_sym_LT] = ACTIONS(2303), - [anon_sym_GT] = ACTIONS(2303), - [anon_sym_EQ_EQ] = ACTIONS(2303), - [anon_sym_BANG_EQ] = ACTIONS(2303), - [anon_sym_LT_EQ] = ACTIONS(2303), - [anon_sym_GT_EQ] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2301), - [anon_sym_struct] = ACTIONS(2303), - [anon_sym_union] = ACTIONS(2303), - [anon_sym_pub] = ACTIONS(2303), - [anon_sym_mut] = ACTIONS(2303), - [anon_sym_enum] = ACTIONS(2303), - [anon_sym_interface] = ACTIONS(2303), - [anon_sym_PLUS_PLUS] = ACTIONS(2303), - [anon_sym_DASH_DASH] = ACTIONS(2303), - [anon_sym_QMARK] = ACTIONS(2303), - [anon_sym_BANG] = ACTIONS(2303), - [anon_sym_go] = ACTIONS(2303), - [anon_sym_spawn] = ACTIONS(2303), - [anon_sym_json_DOTdecode] = ACTIONS(2303), - [anon_sym_LBRACK2] = ACTIONS(2303), - [anon_sym_TILDE] = ACTIONS(2303), - [anon_sym_CARET] = ACTIONS(2303), - [anon_sym_AMP] = ACTIONS(2303), - [anon_sym_LT_DASH] = ACTIONS(2303), - [anon_sym_LT_LT] = ACTIONS(2303), - [anon_sym_GT_GT] = ACTIONS(2303), - [anon_sym_GT_GT_GT] = ACTIONS(2303), - [anon_sym_AMP_CARET] = ACTIONS(2303), - [anon_sym_AMP_AMP] = ACTIONS(2303), - [anon_sym_PIPE_PIPE] = ACTIONS(2303), - [anon_sym_or] = ACTIONS(2303), - [sym_none] = ACTIONS(2303), - [sym_true] = ACTIONS(2303), - [sym_false] = ACTIONS(2303), - [sym_nil] = ACTIONS(2303), - [anon_sym_QMARK_DOT] = ACTIONS(2303), - [anon_sym_POUND_LBRACK] = ACTIONS(2303), - [anon_sym_if] = ACTIONS(2303), - [anon_sym_DOLLARif] = ACTIONS(2303), - [anon_sym_is] = ACTIONS(2303), - [anon_sym_BANGis] = ACTIONS(2303), - [anon_sym_in] = ACTIONS(2303), - [anon_sym_BANGin] = ACTIONS(2303), - [anon_sym_match] = ACTIONS(2303), - [anon_sym_select] = ACTIONS(2303), - [anon_sym_lock] = ACTIONS(2303), - [anon_sym_rlock] = ACTIONS(2303), - [anon_sym_unsafe] = ACTIONS(2303), - [anon_sym_sql] = ACTIONS(2303), - [sym_int_literal] = ACTIONS(2303), - [sym_float_literal] = ACTIONS(2303), - [sym_rune_literal] = ACTIONS(2303), - [sym_pseudo_compile_time_identifier] = ACTIONS(2303), - [anon_sym_shared] = ACTIONS(2303), - [anon_sym_map_LBRACK] = ACTIONS(2303), - [anon_sym_chan] = ACTIONS(2303), - [anon_sym_thread] = ACTIONS(2303), - [anon_sym_atomic] = ACTIONS(2303), - [anon_sym_assert] = ACTIONS(2303), - [anon_sym_defer] = ACTIONS(2303), - [anon_sym_goto] = ACTIONS(2303), - [anon_sym_break] = ACTIONS(2303), - [anon_sym_continue] = ACTIONS(2303), - [anon_sym_return] = ACTIONS(2303), - [anon_sym_DOLLARfor] = ACTIONS(2303), - [anon_sym_for] = ACTIONS(2303), - [anon_sym_POUND] = ACTIONS(2303), - [anon_sym_asm] = ACTIONS(2303), - [anon_sym_AT_LBRACK] = ACTIONS(2303), - [sym___double_quote] = ACTIONS(2303), - [sym___single_quote] = ACTIONS(2303), - [sym___c_double_quote] = ACTIONS(2303), - [sym___c_single_quote] = ACTIONS(2303), - [sym___r_double_quote] = ACTIONS(2303), - [sym___r_single_quote] = ACTIONS(2303), + [anon_sym_DOT] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_COMMA] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym___global] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2197), + [anon_sym_fn] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_PERCENT] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_GT] = ACTIONS(2197), + [anon_sym_EQ_EQ] = ACTIONS(2197), + [anon_sym_BANG_EQ] = ACTIONS(2197), + [anon_sym_LT_EQ] = ACTIONS(2197), + [anon_sym_GT_EQ] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2197), + [anon_sym_union] = ACTIONS(2197), + [anon_sym_pub] = ACTIONS(2197), + [anon_sym_mut] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [anon_sym_QMARK] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_go] = ACTIONS(2197), + [anon_sym_spawn] = ACTIONS(2197), + [anon_sym_json_DOTdecode] = ACTIONS(2197), + [anon_sym_LBRACK2] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_CARET] = ACTIONS(2197), + [anon_sym_AMP] = ACTIONS(2197), + [anon_sym_LT_DASH] = ACTIONS(2197), + [anon_sym_LT_LT] = ACTIONS(2197), + [anon_sym_GT_GT] = ACTIONS(2197), + [anon_sym_GT_GT_GT] = ACTIONS(2197), + [anon_sym_AMP_CARET] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(2197), + [anon_sym_PIPE_PIPE] = ACTIONS(2197), + [anon_sym_or] = ACTIONS(2197), + [sym_none] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_nil] = ACTIONS(2197), + [anon_sym_QMARK_DOT] = ACTIONS(2197), + [anon_sym_POUND_LBRACK] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_DOLLARif] = ACTIONS(2197), + [anon_sym_is] = ACTIONS(2197), + [anon_sym_BANGis] = ACTIONS(2197), + [anon_sym_in] = ACTIONS(2197), + [anon_sym_BANGin] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_select] = ACTIONS(2197), + [anon_sym_lock] = ACTIONS(2197), + [anon_sym_rlock] = ACTIONS(2197), + [anon_sym_unsafe] = ACTIONS(2197), + [anon_sym_sql] = ACTIONS(2197), + [sym_int_literal] = ACTIONS(2197), + [sym_float_literal] = ACTIONS(2197), + [sym_rune_literal] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_c_SQUOTE] = ACTIONS(2197), + [anon_sym_c_DQUOTE] = ACTIONS(2197), + [anon_sym_r_SQUOTE] = ACTIONS(2197), + [anon_sym_r_DQUOTE] = ACTIONS(2197), + [sym_pseudo_compile_time_identifier] = ACTIONS(2197), + [anon_sym_shared] = ACTIONS(2197), + [anon_sym_map_LBRACK] = ACTIONS(2197), + [anon_sym_chan] = ACTIONS(2197), + [anon_sym_thread] = ACTIONS(2197), + [anon_sym_atomic] = ACTIONS(2197), + [anon_sym_assert] = ACTIONS(2197), + [anon_sym_defer] = ACTIONS(2197), + [anon_sym_goto] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_DOLLARfor] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_POUND] = ACTIONS(2197), + [anon_sym_asm] = ACTIONS(2197), + [anon_sym_AT_LBRACK] = ACTIONS(2197), }, - [1018] = { - [sym_line_comment] = STATE(1018), - [sym_block_comment] = STATE(1018), - [ts_builtin_sym_end] = ACTIONS(2748), - [sym_identifier] = ACTIONS(2750), - [anon_sym_LF] = ACTIONS(2750), - [anon_sym_CR] = ACTIONS(2750), - [anon_sym_CR_LF] = ACTIONS(2750), + [999] = { + [sym_line_comment] = STATE(999), + [sym_block_comment] = STATE(999), + [ts_builtin_sym_end] = ACTIONS(2183), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LF] = ACTIONS(2185), + [anon_sym_CR] = ACTIONS(2185), + [anon_sym_CR_LF] = ACTIONS(2185), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2750), - [anon_sym_as] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2750), - [anon_sym_COMMA] = ACTIONS(2750), - [anon_sym_const] = ACTIONS(2750), - [anon_sym_LPAREN] = ACTIONS(2750), - [anon_sym___global] = ACTIONS(2750), - [anon_sym_type] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_fn] = ACTIONS(2750), - [anon_sym_PLUS] = ACTIONS(2750), - [anon_sym_DASH] = ACTIONS(2750), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_SLASH] = ACTIONS(2750), - [anon_sym_PERCENT] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(2750), - [anon_sym_GT] = ACTIONS(2750), - [anon_sym_EQ_EQ] = ACTIONS(2750), - [anon_sym_BANG_EQ] = ACTIONS(2750), - [anon_sym_LT_EQ] = ACTIONS(2750), - [anon_sym_GT_EQ] = ACTIONS(2750), - [anon_sym_LBRACK] = ACTIONS(2748), - [anon_sym_struct] = ACTIONS(2750), - [anon_sym_union] = ACTIONS(2750), - [anon_sym_pub] = ACTIONS(2750), - [anon_sym_mut] = ACTIONS(2750), - [anon_sym_enum] = ACTIONS(2750), - [anon_sym_interface] = ACTIONS(2750), - [anon_sym_PLUS_PLUS] = ACTIONS(2750), - [anon_sym_DASH_DASH] = ACTIONS(2750), - [anon_sym_QMARK] = ACTIONS(2750), - [anon_sym_BANG] = ACTIONS(2750), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2750), - [anon_sym_json_DOTdecode] = ACTIONS(2750), - [anon_sym_LBRACK2] = ACTIONS(2750), - [anon_sym_TILDE] = ACTIONS(2750), - [anon_sym_CARET] = ACTIONS(2750), - [anon_sym_AMP] = ACTIONS(2750), - [anon_sym_LT_DASH] = ACTIONS(2750), - [anon_sym_LT_LT] = ACTIONS(2750), - [anon_sym_GT_GT] = ACTIONS(2750), - [anon_sym_GT_GT_GT] = ACTIONS(2750), - [anon_sym_AMP_CARET] = ACTIONS(2750), - [anon_sym_AMP_AMP] = ACTIONS(2750), - [anon_sym_PIPE_PIPE] = ACTIONS(2750), - [anon_sym_or] = ACTIONS(2750), - [sym_none] = ACTIONS(2750), - [sym_true] = ACTIONS(2750), - [sym_false] = ACTIONS(2750), - [sym_nil] = ACTIONS(2750), - [anon_sym_QMARK_DOT] = ACTIONS(2750), - [anon_sym_POUND_LBRACK] = ACTIONS(2750), - [anon_sym_if] = ACTIONS(2750), - [anon_sym_DOLLARif] = ACTIONS(2750), - [anon_sym_is] = ACTIONS(2750), - [anon_sym_BANGis] = ACTIONS(2750), - [anon_sym_in] = ACTIONS(2750), - [anon_sym_BANGin] = ACTIONS(2750), - [anon_sym_match] = ACTIONS(2750), - [anon_sym_select] = ACTIONS(2750), - [anon_sym_lock] = ACTIONS(2750), - [anon_sym_rlock] = ACTIONS(2750), - [anon_sym_unsafe] = ACTIONS(2750), - [anon_sym_sql] = ACTIONS(2750), - [sym_int_literal] = ACTIONS(2750), - [sym_float_literal] = ACTIONS(2750), - [sym_rune_literal] = ACTIONS(2750), - [sym_pseudo_compile_time_identifier] = ACTIONS(2750), - [anon_sym_shared] = ACTIONS(2750), - [anon_sym_map_LBRACK] = ACTIONS(2750), - [anon_sym_chan] = ACTIONS(2750), - [anon_sym_thread] = ACTIONS(2750), - [anon_sym_atomic] = ACTIONS(2750), - [anon_sym_assert] = ACTIONS(2750), - [anon_sym_defer] = ACTIONS(2750), - [anon_sym_goto] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_return] = ACTIONS(2750), - [anon_sym_DOLLARfor] = ACTIONS(2750), - [anon_sym_for] = ACTIONS(2750), - [anon_sym_POUND] = ACTIONS(2750), - [anon_sym_asm] = ACTIONS(2750), - [anon_sym_AT_LBRACK] = ACTIONS(2750), - [sym___double_quote] = ACTIONS(2750), - [sym___single_quote] = ACTIONS(2750), - [sym___c_double_quote] = ACTIONS(2750), - [sym___c_single_quote] = ACTIONS(2750), - [sym___r_double_quote] = ACTIONS(2750), - [sym___r_single_quote] = ACTIONS(2750), + [anon_sym_DOT] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym___global] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_EQ_EQ] = ACTIONS(2185), + [anon_sym_BANG_EQ] = ACTIONS(2185), + [anon_sym_LT_EQ] = ACTIONS(2185), + [anon_sym_GT_EQ] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_mut] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_interface] = ACTIONS(2185), + [anon_sym_PLUS_PLUS] = ACTIONS(2185), + [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2185), + [anon_sym_go] = ACTIONS(2185), + [anon_sym_spawn] = ACTIONS(2185), + [anon_sym_json_DOTdecode] = ACTIONS(2185), + [anon_sym_LBRACK2] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_CARET] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_LT_DASH] = ACTIONS(2185), + [anon_sym_LT_LT] = ACTIONS(2185), + [anon_sym_GT_GT] = ACTIONS(2185), + [anon_sym_GT_GT_GT] = ACTIONS(2185), + [anon_sym_AMP_CARET] = ACTIONS(2185), + [anon_sym_AMP_AMP] = ACTIONS(2185), + [anon_sym_PIPE_PIPE] = ACTIONS(2185), + [anon_sym_or] = ACTIONS(2185), + [sym_none] = ACTIONS(2185), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), + [sym_nil] = ACTIONS(2185), + [anon_sym_QMARK_DOT] = ACTIONS(2185), + [anon_sym_POUND_LBRACK] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_DOLLARif] = ACTIONS(2185), + [anon_sym_is] = ACTIONS(2185), + [anon_sym_BANGis] = ACTIONS(2185), + [anon_sym_in] = ACTIONS(2185), + [anon_sym_BANGin] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_select] = ACTIONS(2185), + [anon_sym_lock] = ACTIONS(2185), + [anon_sym_rlock] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_sql] = ACTIONS(2185), + [sym_int_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), + [sym_rune_literal] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_c_SQUOTE] = ACTIONS(2185), + [anon_sym_c_DQUOTE] = ACTIONS(2185), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2185), + [sym_pseudo_compile_time_identifier] = ACTIONS(2185), + [anon_sym_shared] = ACTIONS(2185), + [anon_sym_map_LBRACK] = ACTIONS(2185), + [anon_sym_chan] = ACTIONS(2185), + [anon_sym_thread] = ACTIONS(2185), + [anon_sym_atomic] = ACTIONS(2185), + [anon_sym_assert] = ACTIONS(2185), + [anon_sym_defer] = ACTIONS(2185), + [anon_sym_goto] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_DOLLARfor] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_asm] = ACTIONS(2185), + [anon_sym_AT_LBRACK] = ACTIONS(2185), }, - [1019] = { - [sym_line_comment] = STATE(1019), - [sym_block_comment] = STATE(1019), - [ts_builtin_sym_end] = ACTIONS(2295), - [sym_identifier] = ACTIONS(2297), - [anon_sym_LF] = ACTIONS(2297), - [anon_sym_CR] = ACTIONS(2297), - [anon_sym_CR_LF] = ACTIONS(2297), + [1000] = { + [sym_line_comment] = STATE(1000), + [sym_block_comment] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(2545), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LF] = ACTIONS(2547), + [anon_sym_CR] = ACTIONS(2547), + [anon_sym_CR_LF] = ACTIONS(2547), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2297), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym___global] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_fn] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2295), - [anon_sym_struct] = ACTIONS(2297), - [anon_sym_union] = ACTIONS(2297), - [anon_sym_pub] = ACTIONS(2297), - [anon_sym_mut] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [anon_sym_QMARK] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_go] = ACTIONS(2297), - [anon_sym_spawn] = ACTIONS(2297), - [anon_sym_json_DOTdecode] = ACTIONS(2297), - [anon_sym_LBRACK2] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_LT_DASH] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_AMP_CARET] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_or] = ACTIONS(2297), - [sym_none] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_nil] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_POUND_LBRACK] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_DOLLARif] = ACTIONS(2297), - [anon_sym_is] = ACTIONS(2297), - [anon_sym_BANGis] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_BANGin] = ACTIONS(2297), - [anon_sym_match] = ACTIONS(2297), - [anon_sym_select] = ACTIONS(2297), - [anon_sym_lock] = ACTIONS(2297), - [anon_sym_rlock] = ACTIONS(2297), - [anon_sym_unsafe] = ACTIONS(2297), - [anon_sym_sql] = ACTIONS(2297), - [sym_int_literal] = ACTIONS(2297), - [sym_float_literal] = ACTIONS(2297), - [sym_rune_literal] = ACTIONS(2297), - [sym_pseudo_compile_time_identifier] = ACTIONS(2297), - [anon_sym_shared] = ACTIONS(2297), - [anon_sym_map_LBRACK] = ACTIONS(2297), - [anon_sym_chan] = ACTIONS(2297), - [anon_sym_thread] = ACTIONS(2297), - [anon_sym_atomic] = ACTIONS(2297), - [anon_sym_assert] = ACTIONS(2297), - [anon_sym_defer] = ACTIONS(2297), - [anon_sym_goto] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_DOLLARfor] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_POUND] = ACTIONS(2297), - [anon_sym_asm] = ACTIONS(2297), - [anon_sym_AT_LBRACK] = ACTIONS(2297), - [sym___double_quote] = ACTIONS(2297), - [sym___single_quote] = ACTIONS(2297), - [sym___c_double_quote] = ACTIONS(2297), - [sym___c_single_quote] = ACTIONS(2297), - [sym___r_double_quote] = ACTIONS(2297), - [sym___r_single_quote] = ACTIONS(2297), + [anon_sym_DOT] = ACTIONS(2547), + [anon_sym_as] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_COMMA] = ACTIONS(2547), + [anon_sym_const] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2547), + [anon_sym___global] = ACTIONS(2547), + [anon_sym_type] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_fn] = ACTIONS(2547), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_SLASH] = ACTIONS(2547), + [anon_sym_PERCENT] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), + [anon_sym_EQ_EQ] = ACTIONS(2547), + [anon_sym_BANG_EQ] = ACTIONS(2547), + [anon_sym_LT_EQ] = ACTIONS(2547), + [anon_sym_GT_EQ] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_struct] = ACTIONS(2547), + [anon_sym_union] = ACTIONS(2547), + [anon_sym_pub] = ACTIONS(2547), + [anon_sym_mut] = ACTIONS(2547), + [anon_sym_enum] = ACTIONS(2547), + [anon_sym_interface] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_QMARK] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_go] = ACTIONS(2547), + [anon_sym_spawn] = ACTIONS(2547), + [anon_sym_json_DOTdecode] = ACTIONS(2547), + [anon_sym_LBRACK2] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(2547), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_LT_DASH] = ACTIONS(2547), + [anon_sym_LT_LT] = ACTIONS(2547), + [anon_sym_GT_GT] = ACTIONS(2547), + [anon_sym_GT_GT_GT] = ACTIONS(2547), + [anon_sym_AMP_CARET] = ACTIONS(2547), + [anon_sym_AMP_AMP] = ACTIONS(2547), + [anon_sym_PIPE_PIPE] = ACTIONS(2547), + [anon_sym_or] = ACTIONS(2547), + [sym_none] = ACTIONS(2547), + [sym_true] = ACTIONS(2547), + [sym_false] = ACTIONS(2547), + [sym_nil] = ACTIONS(2547), + [anon_sym_QMARK_DOT] = ACTIONS(2547), + [anon_sym_POUND_LBRACK] = ACTIONS(2547), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_DOLLARif] = ACTIONS(2547), + [anon_sym_is] = ACTIONS(2547), + [anon_sym_BANGis] = ACTIONS(2547), + [anon_sym_in] = ACTIONS(2547), + [anon_sym_BANGin] = ACTIONS(2547), + [anon_sym_match] = ACTIONS(2547), + [anon_sym_select] = ACTIONS(2547), + [anon_sym_lock] = ACTIONS(2547), + [anon_sym_rlock] = ACTIONS(2547), + [anon_sym_unsafe] = ACTIONS(2547), + [anon_sym_sql] = ACTIONS(2547), + [sym_int_literal] = ACTIONS(2547), + [sym_float_literal] = ACTIONS(2547), + [sym_rune_literal] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2547), + [anon_sym_c_SQUOTE] = ACTIONS(2547), + [anon_sym_c_DQUOTE] = ACTIONS(2547), + [anon_sym_r_SQUOTE] = ACTIONS(2547), + [anon_sym_r_DQUOTE] = ACTIONS(2547), + [sym_pseudo_compile_time_identifier] = ACTIONS(2547), + [anon_sym_shared] = ACTIONS(2547), + [anon_sym_map_LBRACK] = ACTIONS(2547), + [anon_sym_chan] = ACTIONS(2547), + [anon_sym_thread] = ACTIONS(2547), + [anon_sym_atomic] = ACTIONS(2547), + [anon_sym_assert] = ACTIONS(2547), + [anon_sym_defer] = ACTIONS(2547), + [anon_sym_goto] = ACTIONS(2547), + [anon_sym_break] = ACTIONS(2547), + [anon_sym_continue] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2547), + [anon_sym_DOLLARfor] = ACTIONS(2547), + [anon_sym_for] = ACTIONS(2547), + [anon_sym_POUND] = ACTIONS(2547), + [anon_sym_asm] = ACTIONS(2547), + [anon_sym_AT_LBRACK] = ACTIONS(2547), }, - [1020] = { - [sym_line_comment] = STATE(1020), - [sym_block_comment] = STATE(1020), - [ts_builtin_sym_end] = ACTIONS(2686), - [sym_identifier] = ACTIONS(2688), - [anon_sym_LF] = ACTIONS(2688), - [anon_sym_CR] = ACTIONS(2688), - [anon_sym_CR_LF] = ACTIONS(2688), + [1001] = { + [sym_line_comment] = STATE(1001), + [sym_block_comment] = STATE(1001), + [ts_builtin_sym_end] = ACTIONS(2429), + [sym_identifier] = ACTIONS(2431), + [anon_sym_LF] = ACTIONS(2431), + [anon_sym_CR] = ACTIONS(2431), + [anon_sym_CR_LF] = ACTIONS(2431), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2688), - [anon_sym_as] = ACTIONS(2688), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_COMMA] = ACTIONS(2688), - [anon_sym_const] = ACTIONS(2688), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym___global] = ACTIONS(2688), - [anon_sym_type] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_fn] = ACTIONS(2688), - [anon_sym_PLUS] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2688), - [anon_sym_STAR] = ACTIONS(2688), - [anon_sym_SLASH] = ACTIONS(2688), - [anon_sym_PERCENT] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2688), - [anon_sym_GT] = ACTIONS(2688), - [anon_sym_EQ_EQ] = ACTIONS(2688), - [anon_sym_BANG_EQ] = ACTIONS(2688), - [anon_sym_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_EQ] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_struct] = ACTIONS(2688), - [anon_sym_union] = ACTIONS(2688), - [anon_sym_pub] = ACTIONS(2688), - [anon_sym_mut] = ACTIONS(2688), - [anon_sym_enum] = ACTIONS(2688), - [anon_sym_interface] = ACTIONS(2688), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_QMARK] = ACTIONS(2688), - [anon_sym_BANG] = ACTIONS(2688), - [anon_sym_go] = ACTIONS(2688), - [anon_sym_spawn] = ACTIONS(2688), - [anon_sym_json_DOTdecode] = ACTIONS(2688), - [anon_sym_LBRACK2] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2688), - [anon_sym_CARET] = ACTIONS(2688), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_LT_DASH] = ACTIONS(2688), - [anon_sym_LT_LT] = ACTIONS(2688), - [anon_sym_GT_GT] = ACTIONS(2688), - [anon_sym_GT_GT_GT] = ACTIONS(2688), - [anon_sym_AMP_CARET] = ACTIONS(2688), - [anon_sym_AMP_AMP] = ACTIONS(2688), - [anon_sym_PIPE_PIPE] = ACTIONS(2688), - [anon_sym_or] = ACTIONS(2688), - [sym_none] = ACTIONS(2688), - [sym_true] = ACTIONS(2688), - [sym_false] = ACTIONS(2688), - [sym_nil] = ACTIONS(2688), - [anon_sym_QMARK_DOT] = ACTIONS(2688), - [anon_sym_POUND_LBRACK] = ACTIONS(2688), - [anon_sym_if] = ACTIONS(2688), - [anon_sym_DOLLARif] = ACTIONS(2688), - [anon_sym_is] = ACTIONS(2688), - [anon_sym_BANGis] = ACTIONS(2688), - [anon_sym_in] = ACTIONS(2688), - [anon_sym_BANGin] = ACTIONS(2688), - [anon_sym_match] = ACTIONS(2688), - [anon_sym_select] = ACTIONS(2688), - [anon_sym_lock] = ACTIONS(2688), - [anon_sym_rlock] = ACTIONS(2688), - [anon_sym_unsafe] = ACTIONS(2688), - [anon_sym_sql] = ACTIONS(2688), - [sym_int_literal] = ACTIONS(2688), - [sym_float_literal] = ACTIONS(2688), - [sym_rune_literal] = ACTIONS(2688), - [sym_pseudo_compile_time_identifier] = ACTIONS(2688), - [anon_sym_shared] = ACTIONS(2688), - [anon_sym_map_LBRACK] = ACTIONS(2688), - [anon_sym_chan] = ACTIONS(2688), - [anon_sym_thread] = ACTIONS(2688), - [anon_sym_atomic] = ACTIONS(2688), - [anon_sym_assert] = ACTIONS(2688), - [anon_sym_defer] = ACTIONS(2688), - [anon_sym_goto] = ACTIONS(2688), - [anon_sym_break] = ACTIONS(2688), - [anon_sym_continue] = ACTIONS(2688), - [anon_sym_return] = ACTIONS(2688), - [anon_sym_DOLLARfor] = ACTIONS(2688), - [anon_sym_for] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(2688), - [anon_sym_asm] = ACTIONS(2688), - [anon_sym_AT_LBRACK] = ACTIONS(2688), - [sym___double_quote] = ACTIONS(2688), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2688), - [sym___c_single_quote] = ACTIONS(2688), - [sym___r_double_quote] = ACTIONS(2688), - [sym___r_single_quote] = ACTIONS(2688), + [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_as] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_COMMA] = ACTIONS(2431), + [anon_sym_const] = ACTIONS(2431), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym___global] = ACTIONS(2431), + [anon_sym_type] = ACTIONS(2431), + [anon_sym_PIPE] = ACTIONS(2431), + [anon_sym_fn] = ACTIONS(2431), + [anon_sym_PLUS] = ACTIONS(2431), + [anon_sym_DASH] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2431), + [anon_sym_SLASH] = ACTIONS(2431), + [anon_sym_PERCENT] = ACTIONS(2431), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_GT] = ACTIONS(2431), + [anon_sym_EQ_EQ] = ACTIONS(2431), + [anon_sym_BANG_EQ] = ACTIONS(2431), + [anon_sym_LT_EQ] = ACTIONS(2431), + [anon_sym_GT_EQ] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2431), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_pub] = ACTIONS(2431), + [anon_sym_mut] = ACTIONS(2431), + [anon_sym_enum] = ACTIONS(2431), + [anon_sym_interface] = ACTIONS(2431), + [anon_sym_PLUS_PLUS] = ACTIONS(2431), + [anon_sym_DASH_DASH] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_go] = ACTIONS(2431), + [anon_sym_spawn] = ACTIONS(2431), + [anon_sym_json_DOTdecode] = ACTIONS(2431), + [anon_sym_LBRACK2] = ACTIONS(2431), + [anon_sym_TILDE] = ACTIONS(2431), + [anon_sym_CARET] = ACTIONS(2431), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2431), + [anon_sym_LT_LT] = ACTIONS(2431), + [anon_sym_GT_GT] = ACTIONS(2431), + [anon_sym_GT_GT_GT] = ACTIONS(2431), + [anon_sym_AMP_CARET] = ACTIONS(2431), + [anon_sym_AMP_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2431), + [anon_sym_or] = ACTIONS(2431), + [sym_none] = ACTIONS(2431), + [sym_true] = ACTIONS(2431), + [sym_false] = ACTIONS(2431), + [sym_nil] = ACTIONS(2431), + [anon_sym_QMARK_DOT] = ACTIONS(2431), + [anon_sym_POUND_LBRACK] = ACTIONS(2431), + [anon_sym_if] = ACTIONS(2431), + [anon_sym_DOLLARif] = ACTIONS(2431), + [anon_sym_is] = ACTIONS(2431), + [anon_sym_BANGis] = ACTIONS(2431), + [anon_sym_in] = ACTIONS(2431), + [anon_sym_BANGin] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_select] = ACTIONS(2431), + [anon_sym_lock] = ACTIONS(2431), + [anon_sym_rlock] = ACTIONS(2431), + [anon_sym_unsafe] = ACTIONS(2431), + [anon_sym_sql] = ACTIONS(2431), + [sym_int_literal] = ACTIONS(2431), + [sym_float_literal] = ACTIONS(2431), + [sym_rune_literal] = ACTIONS(2431), + [anon_sym_SQUOTE] = ACTIONS(2431), + [anon_sym_DQUOTE] = ACTIONS(2431), + [anon_sym_c_SQUOTE] = ACTIONS(2431), + [anon_sym_c_DQUOTE] = ACTIONS(2431), + [anon_sym_r_SQUOTE] = ACTIONS(2431), + [anon_sym_r_DQUOTE] = ACTIONS(2431), + [sym_pseudo_compile_time_identifier] = ACTIONS(2431), + [anon_sym_shared] = ACTIONS(2431), + [anon_sym_map_LBRACK] = ACTIONS(2431), + [anon_sym_chan] = ACTIONS(2431), + [anon_sym_thread] = ACTIONS(2431), + [anon_sym_atomic] = ACTIONS(2431), + [anon_sym_assert] = ACTIONS(2431), + [anon_sym_defer] = ACTIONS(2431), + [anon_sym_goto] = ACTIONS(2431), + [anon_sym_break] = ACTIONS(2431), + [anon_sym_continue] = ACTIONS(2431), + [anon_sym_return] = ACTIONS(2431), + [anon_sym_DOLLARfor] = ACTIONS(2431), + [anon_sym_for] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(2431), + [anon_sym_asm] = ACTIONS(2431), + [anon_sym_AT_LBRACK] = ACTIONS(2431), }, - [1021] = { - [sym_line_comment] = STATE(1021), - [sym_block_comment] = STATE(1021), - [ts_builtin_sym_end] = ACTIONS(2209), - [sym_identifier] = ACTIONS(2211), - [anon_sym_LF] = ACTIONS(2211), - [anon_sym_CR] = ACTIONS(2211), - [anon_sym_CR_LF] = ACTIONS(2211), + [1002] = { + [sym_line_comment] = STATE(1002), + [sym_block_comment] = STATE(1002), + [ts_builtin_sym_end] = ACTIONS(2187), + [sym_identifier] = ACTIONS(2189), + [anon_sym_LF] = ACTIONS(2189), + [anon_sym_CR] = ACTIONS(2189), + [anon_sym_CR_LF] = ACTIONS(2189), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2211), - [anon_sym_as] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_COMMA] = ACTIONS(2211), - [anon_sym_const] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym___global] = ACTIONS(2211), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2211), - [anon_sym_fn] = ACTIONS(2211), - [anon_sym_PLUS] = ACTIONS(2211), - [anon_sym_DASH] = ACTIONS(2211), - [anon_sym_STAR] = ACTIONS(2211), - [anon_sym_SLASH] = ACTIONS(2211), - [anon_sym_PERCENT] = ACTIONS(2211), - [anon_sym_LT] = ACTIONS(2211), - [anon_sym_GT] = ACTIONS(2211), - [anon_sym_EQ_EQ] = ACTIONS(2211), - [anon_sym_BANG_EQ] = ACTIONS(2211), - [anon_sym_LT_EQ] = ACTIONS(2211), - [anon_sym_GT_EQ] = ACTIONS(2211), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(2211), - [anon_sym_union] = ACTIONS(2211), - [anon_sym_pub] = ACTIONS(2211), - [anon_sym_mut] = ACTIONS(2211), - [anon_sym_enum] = ACTIONS(2211), - [anon_sym_interface] = ACTIONS(2211), - [anon_sym_PLUS_PLUS] = ACTIONS(2211), - [anon_sym_DASH_DASH] = ACTIONS(2211), - [anon_sym_QMARK] = ACTIONS(2211), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2211), - [anon_sym_spawn] = ACTIONS(2211), - [anon_sym_json_DOTdecode] = ACTIONS(2211), - [anon_sym_LBRACK2] = ACTIONS(2211), - [anon_sym_TILDE] = ACTIONS(2211), - [anon_sym_CARET] = ACTIONS(2211), - [anon_sym_AMP] = ACTIONS(2211), - [anon_sym_LT_DASH] = ACTIONS(2211), - [anon_sym_LT_LT] = ACTIONS(2211), - [anon_sym_GT_GT] = ACTIONS(2211), - [anon_sym_GT_GT_GT] = ACTIONS(2211), - [anon_sym_AMP_CARET] = ACTIONS(2211), - [anon_sym_AMP_AMP] = ACTIONS(2211), - [anon_sym_PIPE_PIPE] = ACTIONS(2211), - [anon_sym_or] = ACTIONS(2211), - [sym_none] = ACTIONS(2211), - [sym_true] = ACTIONS(2211), - [sym_false] = ACTIONS(2211), - [sym_nil] = ACTIONS(2211), - [anon_sym_QMARK_DOT] = ACTIONS(2211), - [anon_sym_POUND_LBRACK] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2211), - [anon_sym_DOLLARif] = ACTIONS(2211), - [anon_sym_is] = ACTIONS(2211), - [anon_sym_BANGis] = ACTIONS(2211), - [anon_sym_in] = ACTIONS(2211), - [anon_sym_BANGin] = ACTIONS(2211), - [anon_sym_match] = ACTIONS(2211), - [anon_sym_select] = ACTIONS(2211), - [anon_sym_lock] = ACTIONS(2211), - [anon_sym_rlock] = ACTIONS(2211), - [anon_sym_unsafe] = ACTIONS(2211), - [anon_sym_sql] = ACTIONS(2211), - [sym_int_literal] = ACTIONS(2211), - [sym_float_literal] = ACTIONS(2211), - [sym_rune_literal] = ACTIONS(2211), - [sym_pseudo_compile_time_identifier] = ACTIONS(2211), - [anon_sym_shared] = ACTIONS(2211), - [anon_sym_map_LBRACK] = ACTIONS(2211), - [anon_sym_chan] = ACTIONS(2211), - [anon_sym_thread] = ACTIONS(2211), - [anon_sym_atomic] = ACTIONS(2211), - [anon_sym_assert] = ACTIONS(2211), - [anon_sym_defer] = ACTIONS(2211), - [anon_sym_goto] = ACTIONS(2211), - [anon_sym_break] = ACTIONS(2211), - [anon_sym_continue] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2211), - [anon_sym_DOLLARfor] = ACTIONS(2211), - [anon_sym_for] = ACTIONS(2211), - [anon_sym_POUND] = ACTIONS(2211), - [anon_sym_asm] = ACTIONS(2211), - [anon_sym_AT_LBRACK] = ACTIONS(2211), - [sym___double_quote] = ACTIONS(2211), - [sym___single_quote] = ACTIONS(2211), - [sym___c_double_quote] = ACTIONS(2211), - [sym___c_single_quote] = ACTIONS(2211), - [sym___r_double_quote] = ACTIONS(2211), - [sym___r_single_quote] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2189), + [anon_sym_as] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_COMMA] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym___global] = ACTIONS(2189), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_fn] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_PERCENT] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_GT] = ACTIONS(2189), + [anon_sym_EQ_EQ] = ACTIONS(2189), + [anon_sym_BANG_EQ] = ACTIONS(2189), + [anon_sym_LT_EQ] = ACTIONS(2189), + [anon_sym_GT_EQ] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_struct] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_pub] = ACTIONS(2189), + [anon_sym_mut] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [anon_sym_interface] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_QMARK] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_go] = ACTIONS(2189), + [anon_sym_spawn] = ACTIONS(2189), + [anon_sym_json_DOTdecode] = ACTIONS(2189), + [anon_sym_LBRACK2] = ACTIONS(2189), + [anon_sym_TILDE] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2189), + [anon_sym_AMP] = ACTIONS(2189), + [anon_sym_LT_DASH] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(2189), + [anon_sym_GT_GT] = ACTIONS(2189), + [anon_sym_GT_GT_GT] = ACTIONS(2189), + [anon_sym_AMP_CARET] = ACTIONS(2189), + [anon_sym_AMP_AMP] = ACTIONS(2189), + [anon_sym_PIPE_PIPE] = ACTIONS(2189), + [anon_sym_or] = ACTIONS(2189), + [sym_none] = ACTIONS(2189), + [sym_true] = ACTIONS(2189), + [sym_false] = ACTIONS(2189), + [sym_nil] = ACTIONS(2189), + [anon_sym_QMARK_DOT] = ACTIONS(2189), + [anon_sym_POUND_LBRACK] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_DOLLARif] = ACTIONS(2189), + [anon_sym_is] = ACTIONS(2189), + [anon_sym_BANGis] = ACTIONS(2189), + [anon_sym_in] = ACTIONS(2189), + [anon_sym_BANGin] = ACTIONS(2189), + [anon_sym_match] = ACTIONS(2189), + [anon_sym_select] = ACTIONS(2189), + [anon_sym_lock] = ACTIONS(2189), + [anon_sym_rlock] = ACTIONS(2189), + [anon_sym_unsafe] = ACTIONS(2189), + [anon_sym_sql] = ACTIONS(2189), + [sym_int_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_rune_literal] = ACTIONS(2189), + [anon_sym_SQUOTE] = ACTIONS(2189), + [anon_sym_DQUOTE] = ACTIONS(2189), + [anon_sym_c_SQUOTE] = ACTIONS(2189), + [anon_sym_c_DQUOTE] = ACTIONS(2189), + [anon_sym_r_SQUOTE] = ACTIONS(2189), + [anon_sym_r_DQUOTE] = ACTIONS(2189), + [sym_pseudo_compile_time_identifier] = ACTIONS(2189), + [anon_sym_shared] = ACTIONS(2189), + [anon_sym_map_LBRACK] = ACTIONS(2189), + [anon_sym_chan] = ACTIONS(2189), + [anon_sym_thread] = ACTIONS(2189), + [anon_sym_atomic] = ACTIONS(2189), + [anon_sym_assert] = ACTIONS(2189), + [anon_sym_defer] = ACTIONS(2189), + [anon_sym_goto] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_DOLLARfor] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_POUND] = ACTIONS(2189), + [anon_sym_asm] = ACTIONS(2189), + [anon_sym_AT_LBRACK] = ACTIONS(2189), + }, + [1003] = { + [sym_line_comment] = STATE(1003), + [sym_block_comment] = STATE(1003), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2097), + [anon_sym_LF] = ACTIONS(2097), + [anon_sym_CR] = ACTIONS(2097), + [anon_sym_CR_LF] = ACTIONS(2097), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2097), + [anon_sym_as] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_COMMA] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym___global] = ACTIONS(2097), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_PIPE] = ACTIONS(2097), + [anon_sym_fn] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2097), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_PERCENT] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_GT] = ACTIONS(2097), + [anon_sym_EQ_EQ] = ACTIONS(2097), + [anon_sym_BANG_EQ] = ACTIONS(2097), + [anon_sym_LT_EQ] = ACTIONS(2097), + [anon_sym_GT_EQ] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2095), + [anon_sym_struct] = ACTIONS(2097), + [anon_sym_union] = ACTIONS(2097), + [anon_sym_pub] = ACTIONS(2097), + [anon_sym_mut] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [anon_sym_interface] = ACTIONS(2097), + [anon_sym_PLUS_PLUS] = ACTIONS(2097), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [anon_sym_QMARK] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_go] = ACTIONS(2097), + [anon_sym_spawn] = ACTIONS(2097), + [anon_sym_json_DOTdecode] = ACTIONS(2097), + [anon_sym_LBRACK2] = ACTIONS(2097), + [anon_sym_TILDE] = ACTIONS(2097), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2097), + [anon_sym_LT_LT] = ACTIONS(2097), + [anon_sym_GT_GT] = ACTIONS(2097), + [anon_sym_GT_GT_GT] = ACTIONS(2097), + [anon_sym_AMP_CARET] = ACTIONS(2097), + [anon_sym_AMP_AMP] = ACTIONS(2097), + [anon_sym_PIPE_PIPE] = ACTIONS(2097), + [anon_sym_or] = ACTIONS(2097), + [sym_none] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [sym_nil] = ACTIONS(2097), + [anon_sym_QMARK_DOT] = ACTIONS(2097), + [anon_sym_POUND_LBRACK] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_DOLLARif] = ACTIONS(2097), + [anon_sym_is] = ACTIONS(2097), + [anon_sym_BANGis] = ACTIONS(2097), + [anon_sym_in] = ACTIONS(2097), + [anon_sym_BANGin] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_select] = ACTIONS(2097), + [anon_sym_lock] = ACTIONS(2097), + [anon_sym_rlock] = ACTIONS(2097), + [anon_sym_unsafe] = ACTIONS(2097), + [anon_sym_sql] = ACTIONS(2097), + [sym_int_literal] = ACTIONS(2097), + [sym_float_literal] = ACTIONS(2097), + [sym_rune_literal] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2097), + [anon_sym_c_SQUOTE] = ACTIONS(2097), + [anon_sym_c_DQUOTE] = ACTIONS(2097), + [anon_sym_r_SQUOTE] = ACTIONS(2097), + [anon_sym_r_DQUOTE] = ACTIONS(2097), + [sym_pseudo_compile_time_identifier] = ACTIONS(2097), + [anon_sym_shared] = ACTIONS(2097), + [anon_sym_map_LBRACK] = ACTIONS(2097), + [anon_sym_chan] = ACTIONS(2097), + [anon_sym_thread] = ACTIONS(2097), + [anon_sym_atomic] = ACTIONS(2097), + [anon_sym_assert] = ACTIONS(2097), + [anon_sym_defer] = ACTIONS(2097), + [anon_sym_goto] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_DOLLARfor] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_POUND] = ACTIONS(2097), + [anon_sym_asm] = ACTIONS(2097), + [anon_sym_AT_LBRACK] = ACTIONS(2097), + }, + [1004] = { + [sym_line_comment] = STATE(1004), + [sym_block_comment] = STATE(1004), + [ts_builtin_sym_end] = ACTIONS(2121), + [sym_identifier] = ACTIONS(2123), + [anon_sym_LF] = ACTIONS(2123), + [anon_sym_CR] = ACTIONS(2123), + [anon_sym_CR_LF] = ACTIONS(2123), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2123), + [anon_sym_as] = ACTIONS(2123), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_COMMA] = ACTIONS(2123), + [anon_sym_const] = ACTIONS(2123), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym___global] = ACTIONS(2123), + [anon_sym_type] = ACTIONS(2123), + [anon_sym_PIPE] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(2123), + [anon_sym_PLUS] = ACTIONS(2123), + [anon_sym_DASH] = ACTIONS(2123), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_SLASH] = ACTIONS(2123), + [anon_sym_PERCENT] = ACTIONS(2123), + [anon_sym_LT] = ACTIONS(2123), + [anon_sym_GT] = ACTIONS(2123), + [anon_sym_EQ_EQ] = ACTIONS(2123), + [anon_sym_BANG_EQ] = ACTIONS(2123), + [anon_sym_LT_EQ] = ACTIONS(2123), + [anon_sym_GT_EQ] = ACTIONS(2123), + [anon_sym_LBRACK] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2123), + [anon_sym_pub] = ACTIONS(2123), + [anon_sym_mut] = ACTIONS(2123), + [anon_sym_enum] = ACTIONS(2123), + [anon_sym_interface] = ACTIONS(2123), + [anon_sym_PLUS_PLUS] = ACTIONS(2123), + [anon_sym_DASH_DASH] = ACTIONS(2123), + [anon_sym_QMARK] = ACTIONS(2123), + [anon_sym_BANG] = ACTIONS(2123), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2123), + [anon_sym_json_DOTdecode] = ACTIONS(2123), + [anon_sym_LBRACK2] = ACTIONS(2123), + [anon_sym_TILDE] = ACTIONS(2123), + [anon_sym_CARET] = ACTIONS(2123), + [anon_sym_AMP] = ACTIONS(2123), + [anon_sym_LT_DASH] = ACTIONS(2123), + [anon_sym_LT_LT] = ACTIONS(2123), + [anon_sym_GT_GT] = ACTIONS(2123), + [anon_sym_GT_GT_GT] = ACTIONS(2123), + [anon_sym_AMP_CARET] = ACTIONS(2123), + [anon_sym_AMP_AMP] = ACTIONS(2123), + [anon_sym_PIPE_PIPE] = ACTIONS(2123), + [anon_sym_or] = ACTIONS(2123), + [sym_none] = ACTIONS(2123), + [sym_true] = ACTIONS(2123), + [sym_false] = ACTIONS(2123), + [sym_nil] = ACTIONS(2123), + [anon_sym_QMARK_DOT] = ACTIONS(2123), + [anon_sym_POUND_LBRACK] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2123), + [anon_sym_DOLLARif] = ACTIONS(2123), + [anon_sym_is] = ACTIONS(2123), + [anon_sym_BANGis] = ACTIONS(2123), + [anon_sym_in] = ACTIONS(2123), + [anon_sym_BANGin] = ACTIONS(2123), + [anon_sym_match] = ACTIONS(2123), + [anon_sym_select] = ACTIONS(2123), + [anon_sym_lock] = ACTIONS(2123), + [anon_sym_rlock] = ACTIONS(2123), + [anon_sym_unsafe] = ACTIONS(2123), + [anon_sym_sql] = ACTIONS(2123), + [sym_int_literal] = ACTIONS(2123), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(2123), + [anon_sym_c_SQUOTE] = ACTIONS(2123), + [anon_sym_c_DQUOTE] = ACTIONS(2123), + [anon_sym_r_SQUOTE] = ACTIONS(2123), + [anon_sym_r_DQUOTE] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(2123), + [anon_sym_shared] = ACTIONS(2123), + [anon_sym_map_LBRACK] = ACTIONS(2123), + [anon_sym_chan] = ACTIONS(2123), + [anon_sym_thread] = ACTIONS(2123), + [anon_sym_atomic] = ACTIONS(2123), + [anon_sym_assert] = ACTIONS(2123), + [anon_sym_defer] = ACTIONS(2123), + [anon_sym_goto] = ACTIONS(2123), + [anon_sym_break] = ACTIONS(2123), + [anon_sym_continue] = ACTIONS(2123), + [anon_sym_return] = ACTIONS(2123), + [anon_sym_DOLLARfor] = ACTIONS(2123), + [anon_sym_for] = ACTIONS(2123), + [anon_sym_POUND] = ACTIONS(2123), + [anon_sym_asm] = ACTIONS(2123), + [anon_sym_AT_LBRACK] = ACTIONS(2123), + }, + [1005] = { + [sym_line_comment] = STATE(1005), + [sym_block_comment] = STATE(1005), + [ts_builtin_sym_end] = ACTIONS(2263), + [sym_identifier] = ACTIONS(2265), + [anon_sym_LF] = ACTIONS(2265), + [anon_sym_CR] = ACTIONS(2265), + [anon_sym_CR_LF] = ACTIONS(2265), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2265), + [anon_sym_as] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2265), + [anon_sym_COMMA] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2265), + [anon_sym___global] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(2265), + [anon_sym_fn] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2265), + [anon_sym_SLASH] = ACTIONS(2265), + [anon_sym_PERCENT] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_GT] = ACTIONS(2265), + [anon_sym_EQ_EQ] = ACTIONS(2265), + [anon_sym_BANG_EQ] = ACTIONS(2265), + [anon_sym_LT_EQ] = ACTIONS(2265), + [anon_sym_GT_EQ] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_struct] = ACTIONS(2265), + [anon_sym_union] = ACTIONS(2265), + [anon_sym_pub] = ACTIONS(2265), + [anon_sym_mut] = ACTIONS(2265), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_interface] = ACTIONS(2265), + [anon_sym_PLUS_PLUS] = ACTIONS(2265), + [anon_sym_DASH_DASH] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(2265), + [anon_sym_go] = ACTIONS(2265), + [anon_sym_spawn] = ACTIONS(2265), + [anon_sym_json_DOTdecode] = ACTIONS(2265), + [anon_sym_LBRACK2] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_CARET] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_LT_DASH] = ACTIONS(2265), + [anon_sym_LT_LT] = ACTIONS(2265), + [anon_sym_GT_GT] = ACTIONS(2265), + [anon_sym_GT_GT_GT] = ACTIONS(2265), + [anon_sym_AMP_CARET] = ACTIONS(2265), + [anon_sym_AMP_AMP] = ACTIONS(2265), + [anon_sym_PIPE_PIPE] = ACTIONS(2265), + [anon_sym_or] = ACTIONS(2265), + [sym_none] = ACTIONS(2265), + [sym_true] = ACTIONS(2265), + [sym_false] = ACTIONS(2265), + [sym_nil] = ACTIONS(2265), + [anon_sym_QMARK_DOT] = ACTIONS(2265), + [anon_sym_POUND_LBRACK] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_DOLLARif] = ACTIONS(2265), + [anon_sym_is] = ACTIONS(2265), + [anon_sym_BANGis] = ACTIONS(2265), + [anon_sym_in] = ACTIONS(2265), + [anon_sym_BANGin] = ACTIONS(2265), + [anon_sym_match] = ACTIONS(2265), + [anon_sym_select] = ACTIONS(2265), + [anon_sym_lock] = ACTIONS(2265), + [anon_sym_rlock] = ACTIONS(2265), + [anon_sym_unsafe] = ACTIONS(2265), + [anon_sym_sql] = ACTIONS(2265), + [sym_int_literal] = ACTIONS(2265), + [sym_float_literal] = ACTIONS(2265), + [sym_rune_literal] = ACTIONS(2265), + [anon_sym_SQUOTE] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2265), + [anon_sym_c_SQUOTE] = ACTIONS(2265), + [anon_sym_c_DQUOTE] = ACTIONS(2265), + [anon_sym_r_SQUOTE] = ACTIONS(2265), + [anon_sym_r_DQUOTE] = ACTIONS(2265), + [sym_pseudo_compile_time_identifier] = ACTIONS(2265), + [anon_sym_shared] = ACTIONS(2265), + [anon_sym_map_LBRACK] = ACTIONS(2265), + [anon_sym_chan] = ACTIONS(2265), + [anon_sym_thread] = ACTIONS(2265), + [anon_sym_atomic] = ACTIONS(2265), + [anon_sym_assert] = ACTIONS(2265), + [anon_sym_defer] = ACTIONS(2265), + [anon_sym_goto] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_DOLLARfor] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_POUND] = ACTIONS(2265), + [anon_sym_asm] = ACTIONS(2265), + [anon_sym_AT_LBRACK] = ACTIONS(2265), + }, + [1006] = { + [sym_line_comment] = STATE(1006), + [sym_block_comment] = STATE(1006), + [ts_builtin_sym_end] = ACTIONS(2153), + [sym_identifier] = ACTIONS(2155), + [anon_sym_LF] = ACTIONS(2155), + [anon_sym_CR] = ACTIONS(2155), + [anon_sym_CR_LF] = ACTIONS(2155), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_as] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_COMMA] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym___global] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2155), + [anon_sym_PIPE] = ACTIONS(2155), + [anon_sym_fn] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2155), + [anon_sym_SLASH] = ACTIONS(2155), + [anon_sym_PERCENT] = ACTIONS(2155), + [anon_sym_LT] = ACTIONS(2155), + [anon_sym_GT] = ACTIONS(2155), + [anon_sym_EQ_EQ] = ACTIONS(2155), + [anon_sym_BANG_EQ] = ACTIONS(2155), + [anon_sym_LT_EQ] = ACTIONS(2155), + [anon_sym_GT_EQ] = ACTIONS(2155), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_struct] = ACTIONS(2155), + [anon_sym_union] = ACTIONS(2155), + [anon_sym_pub] = ACTIONS(2155), + [anon_sym_mut] = ACTIONS(2155), + [anon_sym_enum] = ACTIONS(2155), + [anon_sym_interface] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_QMARK] = ACTIONS(2155), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_go] = ACTIONS(2155), + [anon_sym_spawn] = ACTIONS(2155), + [anon_sym_json_DOTdecode] = ACTIONS(2155), + [anon_sym_LBRACK2] = ACTIONS(2155), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_LT_DASH] = ACTIONS(2155), + [anon_sym_LT_LT] = ACTIONS(2155), + [anon_sym_GT_GT] = ACTIONS(2155), + [anon_sym_GT_GT_GT] = ACTIONS(2155), + [anon_sym_AMP_CARET] = ACTIONS(2155), + [anon_sym_AMP_AMP] = ACTIONS(2155), + [anon_sym_PIPE_PIPE] = ACTIONS(2155), + [anon_sym_or] = ACTIONS(2155), + [sym_none] = ACTIONS(2155), + [sym_true] = ACTIONS(2155), + [sym_false] = ACTIONS(2155), + [sym_nil] = ACTIONS(2155), + [anon_sym_QMARK_DOT] = ACTIONS(2155), + [anon_sym_POUND_LBRACK] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_DOLLARif] = ACTIONS(2155), + [anon_sym_is] = ACTIONS(2155), + [anon_sym_BANGis] = ACTIONS(2155), + [anon_sym_in] = ACTIONS(2155), + [anon_sym_BANGin] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_select] = ACTIONS(2155), + [anon_sym_lock] = ACTIONS(2155), + [anon_sym_rlock] = ACTIONS(2155), + [anon_sym_unsafe] = ACTIONS(2155), + [anon_sym_sql] = ACTIONS(2155), + [sym_int_literal] = ACTIONS(2155), + [sym_float_literal] = ACTIONS(2155), + [sym_rune_literal] = ACTIONS(2155), + [anon_sym_SQUOTE] = ACTIONS(2155), + [anon_sym_DQUOTE] = ACTIONS(2155), + [anon_sym_c_SQUOTE] = ACTIONS(2155), + [anon_sym_c_DQUOTE] = ACTIONS(2155), + [anon_sym_r_SQUOTE] = ACTIONS(2155), + [anon_sym_r_DQUOTE] = ACTIONS(2155), + [sym_pseudo_compile_time_identifier] = ACTIONS(2155), + [anon_sym_shared] = ACTIONS(2155), + [anon_sym_map_LBRACK] = ACTIONS(2155), + [anon_sym_chan] = ACTIONS(2155), + [anon_sym_thread] = ACTIONS(2155), + [anon_sym_atomic] = ACTIONS(2155), + [anon_sym_assert] = ACTIONS(2155), + [anon_sym_defer] = ACTIONS(2155), + [anon_sym_goto] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_DOLLARfor] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_POUND] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2155), + [anon_sym_AT_LBRACK] = ACTIONS(2155), + }, + [1007] = { + [sym_line_comment] = STATE(1007), + [sym_block_comment] = STATE(1007), + [ts_builtin_sym_end] = ACTIONS(3044), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LF] = ACTIONS(3046), + [anon_sym_CR] = ACTIONS(3046), + [anon_sym_CR_LF] = ACTIONS(3046), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_as] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_const] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym___global] = ACTIONS(3046), + [anon_sym_type] = ACTIONS(3046), + [anon_sym_PIPE] = ACTIONS(3046), + [anon_sym_fn] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_SLASH] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(3046), + [anon_sym_GT] = ACTIONS(3046), + [anon_sym_EQ_EQ] = ACTIONS(3046), + [anon_sym_BANG_EQ] = ACTIONS(3046), + [anon_sym_LT_EQ] = ACTIONS(3046), + [anon_sym_GT_EQ] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_union] = ACTIONS(3046), + [anon_sym_pub] = ACTIONS(3046), + [anon_sym_mut] = ACTIONS(3046), + [anon_sym_enum] = ACTIONS(3046), + [anon_sym_interface] = ACTIONS(3046), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_go] = ACTIONS(3046), + [anon_sym_spawn] = ACTIONS(3046), + [anon_sym_json_DOTdecode] = ACTIONS(3046), + [anon_sym_LBRACK2] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_CARET] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_LT_DASH] = ACTIONS(3046), + [anon_sym_LT_LT] = ACTIONS(3046), + [anon_sym_GT_GT] = ACTIONS(3046), + [anon_sym_GT_GT_GT] = ACTIONS(3046), + [anon_sym_AMP_CARET] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_PIPE_PIPE] = ACTIONS(3046), + [anon_sym_or] = ACTIONS(3046), + [sym_none] = ACTIONS(3046), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_nil] = ACTIONS(3046), + [anon_sym_QMARK_DOT] = ACTIONS(3046), + [anon_sym_POUND_LBRACK] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_DOLLARif] = ACTIONS(3046), + [anon_sym_is] = ACTIONS(3046), + [anon_sym_BANGis] = ACTIONS(3046), + [anon_sym_in] = ACTIONS(3046), + [anon_sym_BANGin] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_select] = ACTIONS(3046), + [anon_sym_lock] = ACTIONS(3046), + [anon_sym_rlock] = ACTIONS(3046), + [anon_sym_unsafe] = ACTIONS(3046), + [anon_sym_sql] = ACTIONS(3046), + [sym_int_literal] = ACTIONS(3046), + [sym_float_literal] = ACTIONS(3046), + [sym_rune_literal] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_c_SQUOTE] = ACTIONS(3046), + [anon_sym_c_DQUOTE] = ACTIONS(3046), + [anon_sym_r_SQUOTE] = ACTIONS(3046), + [anon_sym_r_DQUOTE] = ACTIONS(3046), + [sym_pseudo_compile_time_identifier] = ACTIONS(3046), + [anon_sym_shared] = ACTIONS(3046), + [anon_sym_map_LBRACK] = ACTIONS(3046), + [anon_sym_chan] = ACTIONS(3046), + [anon_sym_thread] = ACTIONS(3046), + [anon_sym_atomic] = ACTIONS(3046), + [anon_sym_assert] = ACTIONS(3046), + [anon_sym_defer] = ACTIONS(3046), + [anon_sym_goto] = ACTIONS(3046), + [anon_sym_break] = ACTIONS(3046), + [anon_sym_continue] = ACTIONS(3046), + [anon_sym_return] = ACTIONS(3046), + [anon_sym_DOLLARfor] = ACTIONS(3046), + [anon_sym_for] = ACTIONS(3046), + [anon_sym_POUND] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3046), + [anon_sym_AT_LBRACK] = ACTIONS(3046), + }, + [1008] = { + [sym_line_comment] = STATE(1008), + [sym_block_comment] = STATE(1008), + [ts_builtin_sym_end] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LF] = ACTIONS(2205), + [anon_sym_CR] = ACTIONS(2205), + [anon_sym_CR_LF] = ACTIONS(2205), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym___global] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_PIPE] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_PERCENT] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_GT] = ACTIONS(2205), + [anon_sym_EQ_EQ] = ACTIONS(2205), + [anon_sym_BANG_EQ] = ACTIONS(2205), + [anon_sym_LT_EQ] = ACTIONS(2205), + [anon_sym_GT_EQ] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2203), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_mut] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(2205), + [anon_sym_QMARK] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_go] = ACTIONS(2205), + [anon_sym_spawn] = ACTIONS(2205), + [anon_sym_json_DOTdecode] = ACTIONS(2205), + [anon_sym_LBRACK2] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_CARET] = ACTIONS(2205), + [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_LT_DASH] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(2205), + [anon_sym_GT_GT] = ACTIONS(2205), + [anon_sym_GT_GT_GT] = ACTIONS(2205), + [anon_sym_AMP_CARET] = ACTIONS(2205), + [anon_sym_AMP_AMP] = ACTIONS(2205), + [anon_sym_PIPE_PIPE] = ACTIONS(2205), + [anon_sym_or] = ACTIONS(2205), + [sym_none] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_nil] = ACTIONS(2205), + [anon_sym_QMARK_DOT] = ACTIONS(2205), + [anon_sym_POUND_LBRACK] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_DOLLARif] = ACTIONS(2205), + [anon_sym_is] = ACTIONS(2205), + [anon_sym_BANGis] = ACTIONS(2205), + [anon_sym_in] = ACTIONS(2205), + [anon_sym_BANGin] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_select] = ACTIONS(2205), + [anon_sym_lock] = ACTIONS(2205), + [anon_sym_rlock] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_sql] = ACTIONS(2205), + [sym_int_literal] = ACTIONS(2205), + [sym_float_literal] = ACTIONS(2205), + [sym_rune_literal] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2205), + [anon_sym_c_SQUOTE] = ACTIONS(2205), + [anon_sym_c_DQUOTE] = ACTIONS(2205), + [anon_sym_r_SQUOTE] = ACTIONS(2205), + [anon_sym_r_DQUOTE] = ACTIONS(2205), + [sym_pseudo_compile_time_identifier] = ACTIONS(2205), + [anon_sym_shared] = ACTIONS(2205), + [anon_sym_map_LBRACK] = ACTIONS(2205), + [anon_sym_chan] = ACTIONS(2205), + [anon_sym_thread] = ACTIONS(2205), + [anon_sym_atomic] = ACTIONS(2205), + [anon_sym_assert] = ACTIONS(2205), + [anon_sym_defer] = ACTIONS(2205), + [anon_sym_goto] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_DOLLARfor] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_POUND] = ACTIONS(2205), + [anon_sym_asm] = ACTIONS(2205), + [anon_sym_AT_LBRACK] = ACTIONS(2205), + }, + [1009] = { + [sym_line_comment] = STATE(1009), + [sym_block_comment] = STATE(1009), + [ts_builtin_sym_end] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LF] = ACTIONS(2209), + [anon_sym_CR] = ACTIONS(2209), + [anon_sym_CR_LF] = ACTIONS(2209), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_COMMA] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym___global] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_fn] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_SLASH] = ACTIONS(2209), + [anon_sym_PERCENT] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_GT] = ACTIONS(2209), + [anon_sym_EQ_EQ] = ACTIONS(2209), + [anon_sym_BANG_EQ] = ACTIONS(2209), + [anon_sym_LT_EQ] = ACTIONS(2209), + [anon_sym_GT_EQ] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_struct] = ACTIONS(2209), + [anon_sym_union] = ACTIONS(2209), + [anon_sym_pub] = ACTIONS(2209), + [anon_sym_mut] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), + [anon_sym_interface] = ACTIONS(2209), + [anon_sym_PLUS_PLUS] = ACTIONS(2209), + [anon_sym_DASH_DASH] = ACTIONS(2209), + [anon_sym_QMARK] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2209), + [anon_sym_go] = ACTIONS(2209), + [anon_sym_spawn] = ACTIONS(2209), + [anon_sym_json_DOTdecode] = ACTIONS(2209), + [anon_sym_LBRACK2] = ACTIONS(2209), + [anon_sym_TILDE] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2209), + [anon_sym_AMP] = ACTIONS(2209), + [anon_sym_LT_DASH] = ACTIONS(2209), + [anon_sym_LT_LT] = ACTIONS(2209), + [anon_sym_GT_GT] = ACTIONS(2209), + [anon_sym_GT_GT_GT] = ACTIONS(2209), + [anon_sym_AMP_CARET] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(2209), + [anon_sym_PIPE_PIPE] = ACTIONS(2209), + [anon_sym_or] = ACTIONS(2209), + [sym_none] = ACTIONS(2209), + [sym_true] = ACTIONS(2209), + [sym_false] = ACTIONS(2209), + [sym_nil] = ACTIONS(2209), + [anon_sym_QMARK_DOT] = ACTIONS(2209), + [anon_sym_POUND_LBRACK] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_DOLLARif] = ACTIONS(2209), + [anon_sym_is] = ACTIONS(2209), + [anon_sym_BANGis] = ACTIONS(2209), + [anon_sym_in] = ACTIONS(2209), + [anon_sym_BANGin] = ACTIONS(2209), + [anon_sym_match] = ACTIONS(2209), + [anon_sym_select] = ACTIONS(2209), + [anon_sym_lock] = ACTIONS(2209), + [anon_sym_rlock] = ACTIONS(2209), + [anon_sym_unsafe] = ACTIONS(2209), + [anon_sym_sql] = ACTIONS(2209), + [sym_int_literal] = ACTIONS(2209), + [sym_float_literal] = ACTIONS(2209), + [sym_rune_literal] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_DQUOTE] = ACTIONS(2209), + [anon_sym_c_SQUOTE] = ACTIONS(2209), + [anon_sym_c_DQUOTE] = ACTIONS(2209), + [anon_sym_r_SQUOTE] = ACTIONS(2209), + [anon_sym_r_DQUOTE] = ACTIONS(2209), + [sym_pseudo_compile_time_identifier] = ACTIONS(2209), + [anon_sym_shared] = ACTIONS(2209), + [anon_sym_map_LBRACK] = ACTIONS(2209), + [anon_sym_chan] = ACTIONS(2209), + [anon_sym_thread] = ACTIONS(2209), + [anon_sym_atomic] = ACTIONS(2209), + [anon_sym_assert] = ACTIONS(2209), + [anon_sym_defer] = ACTIONS(2209), + [anon_sym_goto] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_DOLLARfor] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_POUND] = ACTIONS(2209), + [anon_sym_asm] = ACTIONS(2209), + [anon_sym_AT_LBRACK] = ACTIONS(2209), + }, + [1010] = { + [sym_line_comment] = STATE(1010), + [sym_block_comment] = STATE(1010), + [ts_builtin_sym_end] = ACTIONS(2723), + [sym_identifier] = ACTIONS(2725), + [anon_sym_LF] = ACTIONS(2725), + [anon_sym_CR] = ACTIONS(2725), + [anon_sym_CR_LF] = ACTIONS(2725), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2725), + [anon_sym_as] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_COMMA] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_LPAREN] = ACTIONS(2725), + [anon_sym___global] = ACTIONS(2725), + [anon_sym_type] = ACTIONS(2725), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_fn] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_SLASH] = ACTIONS(2725), + [anon_sym_PERCENT] = ACTIONS(2725), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_GT] = ACTIONS(2725), + [anon_sym_EQ_EQ] = ACTIONS(2725), + [anon_sym_BANG_EQ] = ACTIONS(2725), + [anon_sym_LT_EQ] = ACTIONS(2725), + [anon_sym_GT_EQ] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2723), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_pub] = ACTIONS(2725), + [anon_sym_mut] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_interface] = ACTIONS(2725), + [anon_sym_PLUS_PLUS] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2725), + [anon_sym_QMARK] = ACTIONS(2725), + [anon_sym_BANG] = ACTIONS(2725), + [anon_sym_go] = ACTIONS(2725), + [anon_sym_spawn] = ACTIONS(2725), + [anon_sym_json_DOTdecode] = ACTIONS(2725), + [anon_sym_LBRACK2] = ACTIONS(2725), + [anon_sym_TILDE] = ACTIONS(2725), + [anon_sym_CARET] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_LT_DASH] = ACTIONS(2725), + [anon_sym_LT_LT] = ACTIONS(2725), + [anon_sym_GT_GT] = ACTIONS(2725), + [anon_sym_GT_GT_GT] = ACTIONS(2725), + [anon_sym_AMP_CARET] = ACTIONS(2725), + [anon_sym_AMP_AMP] = ACTIONS(2725), + [anon_sym_PIPE_PIPE] = ACTIONS(2725), + [anon_sym_or] = ACTIONS(2725), + [sym_none] = ACTIONS(2725), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [sym_nil] = ACTIONS(2725), + [anon_sym_QMARK_DOT] = ACTIONS(2725), + [anon_sym_POUND_LBRACK] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_DOLLARif] = ACTIONS(2725), + [anon_sym_is] = ACTIONS(2725), + [anon_sym_BANGis] = ACTIONS(2725), + [anon_sym_in] = ACTIONS(2725), + [anon_sym_BANGin] = ACTIONS(2725), + [anon_sym_match] = ACTIONS(2725), + [anon_sym_select] = ACTIONS(2725), + [anon_sym_lock] = ACTIONS(2725), + [anon_sym_rlock] = ACTIONS(2725), + [anon_sym_unsafe] = ACTIONS(2725), + [anon_sym_sql] = ACTIONS(2725), + [sym_int_literal] = ACTIONS(2725), + [sym_float_literal] = ACTIONS(2725), + [sym_rune_literal] = ACTIONS(2725), + [anon_sym_SQUOTE] = ACTIONS(2725), + [anon_sym_DQUOTE] = ACTIONS(2725), + [anon_sym_c_SQUOTE] = ACTIONS(2725), + [anon_sym_c_DQUOTE] = ACTIONS(2725), + [anon_sym_r_SQUOTE] = ACTIONS(2725), + [anon_sym_r_DQUOTE] = ACTIONS(2725), + [sym_pseudo_compile_time_identifier] = ACTIONS(2725), + [anon_sym_shared] = ACTIONS(2725), + [anon_sym_map_LBRACK] = ACTIONS(2725), + [anon_sym_chan] = ACTIONS(2725), + [anon_sym_thread] = ACTIONS(2725), + [anon_sym_atomic] = ACTIONS(2725), + [anon_sym_assert] = ACTIONS(2725), + [anon_sym_defer] = ACTIONS(2725), + [anon_sym_goto] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_DOLLARfor] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_POUND] = ACTIONS(2725), + [anon_sym_asm] = ACTIONS(2725), + [anon_sym_AT_LBRACK] = ACTIONS(2725), + }, + [1011] = { + [sym_line_comment] = STATE(1011), + [sym_block_comment] = STATE(1011), + [ts_builtin_sym_end] = ACTIONS(2157), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LF] = ACTIONS(2159), + [anon_sym_CR] = ACTIONS(2159), + [anon_sym_CR_LF] = ACTIONS(2159), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2159), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym___global] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_PIPE] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(2159), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2159), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_PERCENT] = ACTIONS(2159), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_GT] = ACTIONS(2159), + [anon_sym_EQ_EQ] = ACTIONS(2159), + [anon_sym_BANG_EQ] = ACTIONS(2159), + [anon_sym_LT_EQ] = ACTIONS(2159), + [anon_sym_GT_EQ] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(2159), + [anon_sym_union] = ACTIONS(2159), + [anon_sym_pub] = ACTIONS(2159), + [anon_sym_mut] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [anon_sym_interface] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [anon_sym_QMARK] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(2159), + [anon_sym_spawn] = ACTIONS(2159), + [anon_sym_json_DOTdecode] = ACTIONS(2159), + [anon_sym_LBRACK2] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_CARET] = ACTIONS(2159), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_LT_DASH] = ACTIONS(2159), + [anon_sym_LT_LT] = ACTIONS(2159), + [anon_sym_GT_GT] = ACTIONS(2159), + [anon_sym_GT_GT_GT] = ACTIONS(2159), + [anon_sym_AMP_CARET] = ACTIONS(2159), + [anon_sym_AMP_AMP] = ACTIONS(2159), + [anon_sym_PIPE_PIPE] = ACTIONS(2159), + [anon_sym_or] = ACTIONS(2159), + [sym_none] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_nil] = ACTIONS(2159), + [anon_sym_QMARK_DOT] = ACTIONS(2159), + [anon_sym_POUND_LBRACK] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_DOLLARif] = ACTIONS(2159), + [anon_sym_is] = ACTIONS(2159), + [anon_sym_BANGis] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2159), + [anon_sym_BANGin] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_select] = ACTIONS(2159), + [anon_sym_lock] = ACTIONS(2159), + [anon_sym_rlock] = ACTIONS(2159), + [anon_sym_unsafe] = ACTIONS(2159), + [anon_sym_sql] = ACTIONS(2159), + [sym_int_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_rune_literal] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_c_SQUOTE] = ACTIONS(2159), + [anon_sym_c_DQUOTE] = ACTIONS(2159), + [anon_sym_r_SQUOTE] = ACTIONS(2159), + [anon_sym_r_DQUOTE] = ACTIONS(2159), + [sym_pseudo_compile_time_identifier] = ACTIONS(2159), + [anon_sym_shared] = ACTIONS(2159), + [anon_sym_map_LBRACK] = ACTIONS(2159), + [anon_sym_chan] = ACTIONS(2159), + [anon_sym_thread] = ACTIONS(2159), + [anon_sym_atomic] = ACTIONS(2159), + [anon_sym_assert] = ACTIONS(2159), + [anon_sym_defer] = ACTIONS(2159), + [anon_sym_goto] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_DOLLARfor] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_POUND] = ACTIONS(2159), + [anon_sym_asm] = ACTIONS(2159), + [anon_sym_AT_LBRACK] = ACTIONS(2159), + }, + [1012] = { + [sym_line_comment] = STATE(1012), + [sym_block_comment] = STATE(1012), + [ts_builtin_sym_end] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2213), + [anon_sym_LF] = ACTIONS(2213), + [anon_sym_CR] = ACTIONS(2213), + [anon_sym_CR_LF] = ACTIONS(2213), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_as] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_COMMA] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym___global] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_fn] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2213), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2213), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_struct] = ACTIONS(2213), + [anon_sym_union] = ACTIONS(2213), + [anon_sym_pub] = ACTIONS(2213), + [anon_sym_mut] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [anon_sym_QMARK] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_go] = ACTIONS(2213), + [anon_sym_spawn] = ACTIONS(2213), + [anon_sym_json_DOTdecode] = ACTIONS(2213), + [anon_sym_LBRACK2] = ACTIONS(2213), + [anon_sym_TILDE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_LT_DASH] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_GT_GT_GT] = ACTIONS(2213), + [anon_sym_AMP_CARET] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_or] = ACTIONS(2213), + [sym_none] = ACTIONS(2213), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [sym_nil] = ACTIONS(2213), + [anon_sym_QMARK_DOT] = ACTIONS(2213), + [anon_sym_POUND_LBRACK] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_DOLLARif] = ACTIONS(2213), + [anon_sym_is] = ACTIONS(2213), + [anon_sym_BANGis] = ACTIONS(2213), + [anon_sym_in] = ACTIONS(2213), + [anon_sym_BANGin] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_select] = ACTIONS(2213), + [anon_sym_lock] = ACTIONS(2213), + [anon_sym_rlock] = ACTIONS(2213), + [anon_sym_unsafe] = ACTIONS(2213), + [anon_sym_sql] = ACTIONS(2213), + [sym_int_literal] = ACTIONS(2213), + [sym_float_literal] = ACTIONS(2213), + [sym_rune_literal] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_c_SQUOTE] = ACTIONS(2213), + [anon_sym_c_DQUOTE] = ACTIONS(2213), + [anon_sym_r_SQUOTE] = ACTIONS(2213), + [anon_sym_r_DQUOTE] = ACTIONS(2213), + [sym_pseudo_compile_time_identifier] = ACTIONS(2213), + [anon_sym_shared] = ACTIONS(2213), + [anon_sym_map_LBRACK] = ACTIONS(2213), + [anon_sym_chan] = ACTIONS(2213), + [anon_sym_thread] = ACTIONS(2213), + [anon_sym_atomic] = ACTIONS(2213), + [anon_sym_assert] = ACTIONS(2213), + [anon_sym_defer] = ACTIONS(2213), + [anon_sym_goto] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_DOLLARfor] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(2213), + [anon_sym_asm] = ACTIONS(2213), + [anon_sym_AT_LBRACK] = ACTIONS(2213), + }, + [1013] = { + [sym_line_comment] = STATE(1013), + [sym_block_comment] = STATE(1013), + [ts_builtin_sym_end] = ACTIONS(2215), + [sym_identifier] = ACTIONS(2217), + [anon_sym_LF] = ACTIONS(2217), + [anon_sym_CR] = ACTIONS(2217), + [anon_sym_CR_LF] = ACTIONS(2217), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2217), + [anon_sym_as] = ACTIONS(2217), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_COMMA] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym___global] = ACTIONS(2217), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(2217), + [anon_sym_fn] = ACTIONS(2217), + [anon_sym_PLUS] = ACTIONS(2217), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_STAR] = ACTIONS(2217), + [anon_sym_SLASH] = ACTIONS(2217), + [anon_sym_PERCENT] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(2217), + [anon_sym_GT] = ACTIONS(2217), + [anon_sym_EQ_EQ] = ACTIONS(2217), + [anon_sym_BANG_EQ] = ACTIONS(2217), + [anon_sym_LT_EQ] = ACTIONS(2217), + [anon_sym_GT_EQ] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_struct] = ACTIONS(2217), + [anon_sym_union] = ACTIONS(2217), + [anon_sym_pub] = ACTIONS(2217), + [anon_sym_mut] = ACTIONS(2217), + [anon_sym_enum] = ACTIONS(2217), + [anon_sym_interface] = ACTIONS(2217), + [anon_sym_PLUS_PLUS] = ACTIONS(2217), + [anon_sym_DASH_DASH] = ACTIONS(2217), + [anon_sym_QMARK] = ACTIONS(2217), + [anon_sym_BANG] = ACTIONS(2217), + [anon_sym_go] = ACTIONS(2217), + [anon_sym_spawn] = ACTIONS(2217), + [anon_sym_json_DOTdecode] = ACTIONS(2217), + [anon_sym_LBRACK2] = ACTIONS(2217), + [anon_sym_TILDE] = ACTIONS(2217), + [anon_sym_CARET] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2217), + [anon_sym_LT_DASH] = ACTIONS(2217), + [anon_sym_LT_LT] = ACTIONS(2217), + [anon_sym_GT_GT] = ACTIONS(2217), + [anon_sym_GT_GT_GT] = ACTIONS(2217), + [anon_sym_AMP_CARET] = ACTIONS(2217), + [anon_sym_AMP_AMP] = ACTIONS(2217), + [anon_sym_PIPE_PIPE] = ACTIONS(2217), + [anon_sym_or] = ACTIONS(2217), + [sym_none] = ACTIONS(2217), + [sym_true] = ACTIONS(2217), + [sym_false] = ACTIONS(2217), + [sym_nil] = ACTIONS(2217), + [anon_sym_QMARK_DOT] = ACTIONS(2217), + [anon_sym_POUND_LBRACK] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_DOLLARif] = ACTIONS(2217), + [anon_sym_is] = ACTIONS(2217), + [anon_sym_BANGis] = ACTIONS(2217), + [anon_sym_in] = ACTIONS(2217), + [anon_sym_BANGin] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_select] = ACTIONS(2217), + [anon_sym_lock] = ACTIONS(2217), + [anon_sym_rlock] = ACTIONS(2217), + [anon_sym_unsafe] = ACTIONS(2217), + [anon_sym_sql] = ACTIONS(2217), + [sym_int_literal] = ACTIONS(2217), + [sym_float_literal] = ACTIONS(2217), + [sym_rune_literal] = ACTIONS(2217), + [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_DQUOTE] = ACTIONS(2217), + [anon_sym_c_SQUOTE] = ACTIONS(2217), + [anon_sym_c_DQUOTE] = ACTIONS(2217), + [anon_sym_r_SQUOTE] = ACTIONS(2217), + [anon_sym_r_DQUOTE] = ACTIONS(2217), + [sym_pseudo_compile_time_identifier] = ACTIONS(2217), + [anon_sym_shared] = ACTIONS(2217), + [anon_sym_map_LBRACK] = ACTIONS(2217), + [anon_sym_chan] = ACTIONS(2217), + [anon_sym_thread] = ACTIONS(2217), + [anon_sym_atomic] = ACTIONS(2217), + [anon_sym_assert] = ACTIONS(2217), + [anon_sym_defer] = ACTIONS(2217), + [anon_sym_goto] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_DOLLARfor] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(2217), + [anon_sym_asm] = ACTIONS(2217), + [anon_sym_AT_LBRACK] = ACTIONS(2217), + }, + [1014] = { + [sym_line_comment] = STATE(1014), + [sym_block_comment] = STATE(1014), + [ts_builtin_sym_end] = ACTIONS(2219), + [sym_identifier] = ACTIONS(2221), + [anon_sym_LF] = ACTIONS(2221), + [anon_sym_CR] = ACTIONS(2221), + [anon_sym_CR_LF] = ACTIONS(2221), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2221), + [anon_sym_as] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_COMMA] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym___global] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_PIPE] = ACTIONS(2221), + [anon_sym_fn] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_STAR] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_PERCENT] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_GT] = ACTIONS(2221), + [anon_sym_EQ_EQ] = ACTIONS(2221), + [anon_sym_BANG_EQ] = ACTIONS(2221), + [anon_sym_LT_EQ] = ACTIONS(2221), + [anon_sym_GT_EQ] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(2221), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_mut] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_QMARK] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_go] = ACTIONS(2221), + [anon_sym_spawn] = ACTIONS(2221), + [anon_sym_json_DOTdecode] = ACTIONS(2221), + [anon_sym_LBRACK2] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_LT_DASH] = ACTIONS(2221), + [anon_sym_LT_LT] = ACTIONS(2221), + [anon_sym_GT_GT] = ACTIONS(2221), + [anon_sym_GT_GT_GT] = ACTIONS(2221), + [anon_sym_AMP_CARET] = ACTIONS(2221), + [anon_sym_AMP_AMP] = ACTIONS(2221), + [anon_sym_PIPE_PIPE] = ACTIONS(2221), + [anon_sym_or] = ACTIONS(2221), + [sym_none] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_nil] = ACTIONS(2221), + [anon_sym_QMARK_DOT] = ACTIONS(2221), + [anon_sym_POUND_LBRACK] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_DOLLARif] = ACTIONS(2221), + [anon_sym_is] = ACTIONS(2221), + [anon_sym_BANGis] = ACTIONS(2221), + [anon_sym_in] = ACTIONS(2221), + [anon_sym_BANGin] = ACTIONS(2221), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_select] = ACTIONS(2221), + [anon_sym_lock] = ACTIONS(2221), + [anon_sym_rlock] = ACTIONS(2221), + [anon_sym_unsafe] = ACTIONS(2221), + [anon_sym_sql] = ACTIONS(2221), + [sym_int_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + [sym_rune_literal] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_c_SQUOTE] = ACTIONS(2221), + [anon_sym_c_DQUOTE] = ACTIONS(2221), + [anon_sym_r_SQUOTE] = ACTIONS(2221), + [anon_sym_r_DQUOTE] = ACTIONS(2221), + [sym_pseudo_compile_time_identifier] = ACTIONS(2221), + [anon_sym_shared] = ACTIONS(2221), + [anon_sym_map_LBRACK] = ACTIONS(2221), + [anon_sym_chan] = ACTIONS(2221), + [anon_sym_thread] = ACTIONS(2221), + [anon_sym_atomic] = ACTIONS(2221), + [anon_sym_assert] = ACTIONS(2221), + [anon_sym_defer] = ACTIONS(2221), + [anon_sym_goto] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_DOLLARfor] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(2221), + [anon_sym_asm] = ACTIONS(2221), + [anon_sym_AT_LBRACK] = ACTIONS(2221), + }, + [1015] = { + [sym_line_comment] = STATE(1015), + [sym_block_comment] = STATE(1015), + [ts_builtin_sym_end] = ACTIONS(2583), + [sym_identifier] = ACTIONS(2585), + [anon_sym_LF] = ACTIONS(2585), + [anon_sym_CR] = ACTIONS(2585), + [anon_sym_CR_LF] = ACTIONS(2585), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2585), + [anon_sym_as] = ACTIONS(2585), + [anon_sym_LBRACE] = ACTIONS(2585), + [anon_sym_COMMA] = ACTIONS(2585), + [anon_sym_const] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2585), + [anon_sym___global] = ACTIONS(2585), + [anon_sym_type] = ACTIONS(2585), + [anon_sym_PIPE] = ACTIONS(2585), + [anon_sym_fn] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2585), + [anon_sym_SLASH] = ACTIONS(2585), + [anon_sym_PERCENT] = ACTIONS(2585), + [anon_sym_LT] = ACTIONS(2585), + [anon_sym_GT] = ACTIONS(2585), + [anon_sym_EQ_EQ] = ACTIONS(2585), + [anon_sym_BANG_EQ] = ACTIONS(2585), + [anon_sym_LT_EQ] = ACTIONS(2585), + [anon_sym_GT_EQ] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2585), + [anon_sym_pub] = ACTIONS(2585), + [anon_sym_mut] = ACTIONS(2585), + [anon_sym_enum] = ACTIONS(2585), + [anon_sym_interface] = ACTIONS(2585), + [anon_sym_PLUS_PLUS] = ACTIONS(2585), + [anon_sym_DASH_DASH] = ACTIONS(2585), + [anon_sym_QMARK] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(3604), + [anon_sym_go] = ACTIONS(2585), + [anon_sym_spawn] = ACTIONS(2585), + [anon_sym_json_DOTdecode] = ACTIONS(2585), + [anon_sym_LBRACK2] = ACTIONS(2585), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2585), + [anon_sym_LT_DASH] = ACTIONS(2585), + [anon_sym_LT_LT] = ACTIONS(2585), + [anon_sym_GT_GT] = ACTIONS(2585), + [anon_sym_GT_GT_GT] = ACTIONS(2585), + [anon_sym_AMP_CARET] = ACTIONS(2585), + [anon_sym_AMP_AMP] = ACTIONS(2585), + [anon_sym_PIPE_PIPE] = ACTIONS(2585), + [anon_sym_or] = ACTIONS(2585), + [sym_none] = ACTIONS(2585), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_nil] = ACTIONS(2585), + [anon_sym_QMARK_DOT] = ACTIONS(2585), + [anon_sym_POUND_LBRACK] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_DOLLARif] = ACTIONS(2585), + [anon_sym_is] = ACTIONS(2585), + [anon_sym_BANGis] = ACTIONS(2585), + [anon_sym_in] = ACTIONS(2585), + [anon_sym_BANGin] = ACTIONS(2585), + [anon_sym_match] = ACTIONS(2585), + [anon_sym_select] = ACTIONS(2585), + [anon_sym_lock] = ACTIONS(2585), + [anon_sym_rlock] = ACTIONS(2585), + [anon_sym_unsafe] = ACTIONS(2585), + [anon_sym_sql] = ACTIONS(2585), + [sym_int_literal] = ACTIONS(2585), + [sym_float_literal] = ACTIONS(2585), + [sym_rune_literal] = ACTIONS(2585), + [anon_sym_SQUOTE] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2585), + [anon_sym_c_SQUOTE] = ACTIONS(2585), + [anon_sym_c_DQUOTE] = ACTIONS(2585), + [anon_sym_r_SQUOTE] = ACTIONS(2585), + [anon_sym_r_DQUOTE] = ACTIONS(2585), + [sym_pseudo_compile_time_identifier] = ACTIONS(2585), + [anon_sym_shared] = ACTIONS(2585), + [anon_sym_map_LBRACK] = ACTIONS(2585), + [anon_sym_chan] = ACTIONS(2585), + [anon_sym_thread] = ACTIONS(2585), + [anon_sym_atomic] = ACTIONS(2585), + [anon_sym_assert] = ACTIONS(2585), + [anon_sym_defer] = ACTIONS(2585), + [anon_sym_goto] = ACTIONS(2585), + [anon_sym_break] = ACTIONS(2585), + [anon_sym_continue] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_DOLLARfor] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_POUND] = ACTIONS(2585), + [anon_sym_asm] = ACTIONS(2585), + [anon_sym_AT_LBRACK] = ACTIONS(2585), + }, + [1016] = { + [sym_line_comment] = STATE(1016), + [sym_block_comment] = STATE(1016), + [ts_builtin_sym_end] = ACTIONS(2807), + [sym_identifier] = ACTIONS(2809), + [anon_sym_LF] = ACTIONS(2809), + [anon_sym_CR] = ACTIONS(2809), + [anon_sym_CR_LF] = ACTIONS(2809), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2809), + [anon_sym_as] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_COMMA] = ACTIONS(2809), + [anon_sym_const] = ACTIONS(2809), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym___global] = ACTIONS(2809), + [anon_sym_type] = ACTIONS(2809), + [anon_sym_PIPE] = ACTIONS(2809), + [anon_sym_fn] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_PERCENT] = ACTIONS(2809), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_GT] = ACTIONS(2809), + [anon_sym_EQ_EQ] = ACTIONS(2809), + [anon_sym_BANG_EQ] = ACTIONS(2809), + [anon_sym_LT_EQ] = ACTIONS(2809), + [anon_sym_GT_EQ] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_struct] = ACTIONS(2809), + [anon_sym_union] = ACTIONS(2809), + [anon_sym_pub] = ACTIONS(2809), + [anon_sym_mut] = ACTIONS(2809), + [anon_sym_enum] = ACTIONS(2809), + [anon_sym_interface] = ACTIONS(2809), + [anon_sym_PLUS_PLUS] = ACTIONS(2809), + [anon_sym_DASH_DASH] = ACTIONS(2809), + [anon_sym_QMARK] = ACTIONS(2809), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_go] = ACTIONS(2809), + [anon_sym_spawn] = ACTIONS(2809), + [anon_sym_json_DOTdecode] = ACTIONS(2809), + [anon_sym_LBRACK2] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_CARET] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_LT_DASH] = ACTIONS(2809), + [anon_sym_LT_LT] = ACTIONS(2809), + [anon_sym_GT_GT] = ACTIONS(2809), + [anon_sym_GT_GT_GT] = ACTIONS(2809), + [anon_sym_AMP_CARET] = ACTIONS(2809), + [anon_sym_AMP_AMP] = ACTIONS(2809), + [anon_sym_PIPE_PIPE] = ACTIONS(2809), + [anon_sym_or] = ACTIONS(2809), + [sym_none] = ACTIONS(2809), + [sym_true] = ACTIONS(2809), + [sym_false] = ACTIONS(2809), + [sym_nil] = ACTIONS(2809), + [anon_sym_QMARK_DOT] = ACTIONS(2809), + [anon_sym_POUND_LBRACK] = ACTIONS(2809), + [anon_sym_if] = ACTIONS(2809), + [anon_sym_DOLLARif] = ACTIONS(2809), + [anon_sym_is] = ACTIONS(2809), + [anon_sym_BANGis] = ACTIONS(2809), + [anon_sym_in] = ACTIONS(2809), + [anon_sym_BANGin] = ACTIONS(2809), + [anon_sym_match] = ACTIONS(2809), + [anon_sym_select] = ACTIONS(2809), + [anon_sym_lock] = ACTIONS(2809), + [anon_sym_rlock] = ACTIONS(2809), + [anon_sym_unsafe] = ACTIONS(2809), + [anon_sym_sql] = ACTIONS(2809), + [sym_int_literal] = ACTIONS(2809), + [sym_float_literal] = ACTIONS(2809), + [sym_rune_literal] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2809), + [anon_sym_c_SQUOTE] = ACTIONS(2809), + [anon_sym_c_DQUOTE] = ACTIONS(2809), + [anon_sym_r_SQUOTE] = ACTIONS(2809), + [anon_sym_r_DQUOTE] = ACTIONS(2809), + [sym_pseudo_compile_time_identifier] = ACTIONS(2809), + [anon_sym_shared] = ACTIONS(2809), + [anon_sym_map_LBRACK] = ACTIONS(2809), + [anon_sym_chan] = ACTIONS(2809), + [anon_sym_thread] = ACTIONS(2809), + [anon_sym_atomic] = ACTIONS(2809), + [anon_sym_assert] = ACTIONS(2809), + [anon_sym_defer] = ACTIONS(2809), + [anon_sym_goto] = ACTIONS(2809), + [anon_sym_break] = ACTIONS(2809), + [anon_sym_continue] = ACTIONS(2809), + [anon_sym_return] = ACTIONS(2809), + [anon_sym_DOLLARfor] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2809), + [anon_sym_POUND] = ACTIONS(2809), + [anon_sym_asm] = ACTIONS(2809), + [anon_sym_AT_LBRACK] = ACTIONS(2809), + }, + [1017] = { + [sym_line_comment] = STATE(1017), + [sym_block_comment] = STATE(1017), + [ts_builtin_sym_end] = ACTIONS(2739), + [sym_identifier] = ACTIONS(2741), + [anon_sym_LF] = ACTIONS(2741), + [anon_sym_CR] = ACTIONS(2741), + [anon_sym_CR_LF] = ACTIONS(2741), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2741), + [anon_sym_as] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_COMMA] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym___global] = ACTIONS(2741), + [anon_sym_type] = ACTIONS(2741), + [anon_sym_PIPE] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_SLASH] = ACTIONS(2741), + [anon_sym_PERCENT] = ACTIONS(2741), + [anon_sym_LT] = ACTIONS(2741), + [anon_sym_GT] = ACTIONS(2741), + [anon_sym_EQ_EQ] = ACTIONS(2741), + [anon_sym_BANG_EQ] = ACTIONS(2741), + [anon_sym_LT_EQ] = ACTIONS(2741), + [anon_sym_GT_EQ] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_union] = ACTIONS(2741), + [anon_sym_pub] = ACTIONS(2741), + [anon_sym_mut] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_interface] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2741), + [anon_sym_DASH_DASH] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_go] = ACTIONS(2741), + [anon_sym_spawn] = ACTIONS(2741), + [anon_sym_json_DOTdecode] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2741), + [anon_sym_CARET] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LT_LT] = ACTIONS(2741), + [anon_sym_GT_GT] = ACTIONS(2741), + [anon_sym_GT_GT_GT] = ACTIONS(2741), + [anon_sym_AMP_CARET] = ACTIONS(2741), + [anon_sym_AMP_AMP] = ACTIONS(2741), + [anon_sym_PIPE_PIPE] = ACTIONS(2741), + [anon_sym_or] = ACTIONS(2741), + [sym_none] = ACTIONS(2741), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_nil] = ACTIONS(2741), + [anon_sym_QMARK_DOT] = ACTIONS(2741), + [anon_sym_POUND_LBRACK] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_DOLLARif] = ACTIONS(2741), + [anon_sym_is] = ACTIONS(2741), + [anon_sym_BANGis] = ACTIONS(2741), + [anon_sym_in] = ACTIONS(2741), + [anon_sym_BANGin] = ACTIONS(2741), + [anon_sym_match] = ACTIONS(2741), + [anon_sym_select] = ACTIONS(2741), + [anon_sym_lock] = ACTIONS(2741), + [anon_sym_rlock] = ACTIONS(2741), + [anon_sym_unsafe] = ACTIONS(2741), + [anon_sym_sql] = ACTIONS(2741), + [sym_int_literal] = ACTIONS(2741), + [sym_float_literal] = ACTIONS(2741), + [sym_rune_literal] = ACTIONS(2741), + [anon_sym_SQUOTE] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2741), + [anon_sym_c_SQUOTE] = ACTIONS(2741), + [anon_sym_c_DQUOTE] = ACTIONS(2741), + [anon_sym_r_SQUOTE] = ACTIONS(2741), + [anon_sym_r_DQUOTE] = ACTIONS(2741), + [sym_pseudo_compile_time_identifier] = ACTIONS(2741), + [anon_sym_shared] = ACTIONS(2741), + [anon_sym_map_LBRACK] = ACTIONS(2741), + [anon_sym_chan] = ACTIONS(2741), + [anon_sym_thread] = ACTIONS(2741), + [anon_sym_atomic] = ACTIONS(2741), + [anon_sym_assert] = ACTIONS(2741), + [anon_sym_defer] = ACTIONS(2741), + [anon_sym_goto] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_DOLLARfor] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_POUND] = ACTIONS(2741), + [anon_sym_asm] = ACTIONS(2741), + [anon_sym_AT_LBRACK] = ACTIONS(2741), + }, + [1018] = { + [sym_line_comment] = STATE(1018), + [sym_block_comment] = STATE(1018), + [ts_builtin_sym_end] = ACTIONS(2087), + [sym_identifier] = ACTIONS(2089), + [anon_sym_LF] = ACTIONS(2089), + [anon_sym_CR] = ACTIONS(2089), + [anon_sym_CR_LF] = ACTIONS(2089), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2089), + [anon_sym_as] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym___global] = ACTIONS(2089), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_fn] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_PERCENT] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_GT] = ACTIONS(2089), + [anon_sym_EQ_EQ] = ACTIONS(2089), + [anon_sym_BANG_EQ] = ACTIONS(2089), + [anon_sym_LT_EQ] = ACTIONS(2089), + [anon_sym_GT_EQ] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_struct] = ACTIONS(2089), + [anon_sym_union] = ACTIONS(2089), + [anon_sym_pub] = ACTIONS(2089), + [anon_sym_mut] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [anon_sym_interface] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_QMARK] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_go] = ACTIONS(2089), + [anon_sym_spawn] = ACTIONS(2089), + [anon_sym_json_DOTdecode] = ACTIONS(2089), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2089), + [anon_sym_CARET] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_LT_DASH] = ACTIONS(2089), + [anon_sym_LT_LT] = ACTIONS(2089), + [anon_sym_GT_GT] = ACTIONS(2089), + [anon_sym_GT_GT_GT] = ACTIONS(2089), + [anon_sym_AMP_CARET] = ACTIONS(2089), + [anon_sym_AMP_AMP] = ACTIONS(2089), + [anon_sym_PIPE_PIPE] = ACTIONS(2089), + [anon_sym_or] = ACTIONS(2089), + [sym_none] = ACTIONS(2089), + [sym_true] = ACTIONS(2089), + [sym_false] = ACTIONS(2089), + [sym_nil] = ACTIONS(2089), + [anon_sym_QMARK_DOT] = ACTIONS(2089), + [anon_sym_POUND_LBRACK] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(2089), + [anon_sym_is] = ACTIONS(2089), + [anon_sym_BANGis] = ACTIONS(2089), + [anon_sym_in] = ACTIONS(2089), + [anon_sym_BANGin] = ACTIONS(2089), + [anon_sym_match] = ACTIONS(2089), + [anon_sym_select] = ACTIONS(2089), + [anon_sym_lock] = ACTIONS(2089), + [anon_sym_rlock] = ACTIONS(2089), + [anon_sym_unsafe] = ACTIONS(2089), + [anon_sym_sql] = ACTIONS(2089), + [sym_int_literal] = ACTIONS(2089), + [sym_float_literal] = ACTIONS(2089), + [sym_rune_literal] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2089), + [anon_sym_c_SQUOTE] = ACTIONS(2089), + [anon_sym_c_DQUOTE] = ACTIONS(2089), + [anon_sym_r_SQUOTE] = ACTIONS(2089), + [anon_sym_r_DQUOTE] = ACTIONS(2089), + [sym_pseudo_compile_time_identifier] = ACTIONS(2089), + [anon_sym_shared] = ACTIONS(2089), + [anon_sym_map_LBRACK] = ACTIONS(2089), + [anon_sym_chan] = ACTIONS(2089), + [anon_sym_thread] = ACTIONS(2089), + [anon_sym_atomic] = ACTIONS(2089), + [anon_sym_assert] = ACTIONS(2089), + [anon_sym_defer] = ACTIONS(2089), + [anon_sym_goto] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_DOLLARfor] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(2089), + [anon_sym_asm] = ACTIONS(2089), + [anon_sym_AT_LBRACK] = ACTIONS(2089), + }, + [1019] = { + [sym_line_comment] = STATE(1019), + [sym_block_comment] = STATE(1019), + [ts_builtin_sym_end] = ACTIONS(2125), + [sym_identifier] = ACTIONS(2127), + [anon_sym_LF] = ACTIONS(2127), + [anon_sym_CR] = ACTIONS(2127), + [anon_sym_CR_LF] = ACTIONS(2127), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2127), + [anon_sym_as] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_COMMA] = ACTIONS(2127), + [anon_sym_const] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym___global] = ACTIONS(2127), + [anon_sym_type] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2127), + [anon_sym_fn] = ACTIONS(2127), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_SLASH] = ACTIONS(2127), + [anon_sym_PERCENT] = ACTIONS(2127), + [anon_sym_LT] = ACTIONS(2127), + [anon_sym_GT] = ACTIONS(2127), + [anon_sym_EQ_EQ] = ACTIONS(2127), + [anon_sym_BANG_EQ] = ACTIONS(2127), + [anon_sym_LT_EQ] = ACTIONS(2127), + [anon_sym_GT_EQ] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2127), + [anon_sym_union] = ACTIONS(2127), + [anon_sym_pub] = ACTIONS(2127), + [anon_sym_mut] = ACTIONS(2127), + [anon_sym_enum] = ACTIONS(2127), + [anon_sym_interface] = ACTIONS(2127), + [anon_sym_PLUS_PLUS] = ACTIONS(2127), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym_QMARK] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_go] = ACTIONS(2127), + [anon_sym_spawn] = ACTIONS(2127), + [anon_sym_json_DOTdecode] = ACTIONS(2127), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2127), + [anon_sym_CARET] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2127), + [anon_sym_LT_DASH] = ACTIONS(2127), + [anon_sym_LT_LT] = ACTIONS(2127), + [anon_sym_GT_GT] = ACTIONS(2127), + [anon_sym_GT_GT_GT] = ACTIONS(2127), + [anon_sym_AMP_CARET] = ACTIONS(2127), + [anon_sym_AMP_AMP] = ACTIONS(2127), + [anon_sym_PIPE_PIPE] = ACTIONS(2127), + [anon_sym_or] = ACTIONS(2127), + [sym_none] = ACTIONS(2127), + [sym_true] = ACTIONS(2127), + [sym_false] = ACTIONS(2127), + [sym_nil] = ACTIONS(2127), + [anon_sym_QMARK_DOT] = ACTIONS(2127), + [anon_sym_POUND_LBRACK] = ACTIONS(2127), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_DOLLARif] = ACTIONS(2127), + [anon_sym_is] = ACTIONS(2127), + [anon_sym_BANGis] = ACTIONS(2127), + [anon_sym_in] = ACTIONS(2127), + [anon_sym_BANGin] = ACTIONS(2127), + [anon_sym_match] = ACTIONS(2127), + [anon_sym_select] = ACTIONS(2127), + [anon_sym_lock] = ACTIONS(2127), + [anon_sym_rlock] = ACTIONS(2127), + [anon_sym_unsafe] = ACTIONS(2127), + [anon_sym_sql] = ACTIONS(2127), + [sym_int_literal] = ACTIONS(2127), + [sym_float_literal] = ACTIONS(2127), + [sym_rune_literal] = ACTIONS(2127), + [anon_sym_SQUOTE] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(2127), + [anon_sym_c_SQUOTE] = ACTIONS(2127), + [anon_sym_c_DQUOTE] = ACTIONS(2127), + [anon_sym_r_SQUOTE] = ACTIONS(2127), + [anon_sym_r_DQUOTE] = ACTIONS(2127), + [sym_pseudo_compile_time_identifier] = ACTIONS(2127), + [anon_sym_shared] = ACTIONS(2127), + [anon_sym_map_LBRACK] = ACTIONS(2127), + [anon_sym_chan] = ACTIONS(2127), + [anon_sym_thread] = ACTIONS(2127), + [anon_sym_atomic] = ACTIONS(2127), + [anon_sym_assert] = ACTIONS(2127), + [anon_sym_defer] = ACTIONS(2127), + [anon_sym_goto] = ACTIONS(2127), + [anon_sym_break] = ACTIONS(2127), + [anon_sym_continue] = ACTIONS(2127), + [anon_sym_return] = ACTIONS(2127), + [anon_sym_DOLLARfor] = ACTIONS(2127), + [anon_sym_for] = ACTIONS(2127), + [anon_sym_POUND] = ACTIONS(2127), + [anon_sym_asm] = ACTIONS(2127), + [anon_sym_AT_LBRACK] = ACTIONS(2127), + }, + [1020] = { + [sym_line_comment] = STATE(1020), + [sym_block_comment] = STATE(1020), + [ts_builtin_sym_end] = ACTIONS(2103), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(2105), + [anon_sym_CR] = ACTIONS(2105), + [anon_sym_CR_LF] = ACTIONS(2105), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym___global] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2105), + [anon_sym_GT_EQ] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(2105), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [anon_sym_QMARK] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_go] = ACTIONS(2105), + [anon_sym_spawn] = ACTIONS(2105), + [anon_sym_json_DOTdecode] = ACTIONS(2105), + [anon_sym_LBRACK2] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_LT_DASH] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_AMP_CARET] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_or] = ACTIONS(2105), + [sym_none] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_nil] = ACTIONS(2105), + [anon_sym_QMARK_DOT] = ACTIONS(2105), + [anon_sym_POUND_LBRACK] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_DOLLARif] = ACTIONS(2105), + [anon_sym_is] = ACTIONS(2105), + [anon_sym_BANGis] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_BANGin] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_select] = ACTIONS(2105), + [anon_sym_lock] = ACTIONS(2105), + [anon_sym_rlock] = ACTIONS(2105), + [anon_sym_unsafe] = ACTIONS(2105), + [anon_sym_sql] = ACTIONS(2105), + [sym_int_literal] = ACTIONS(2105), + [sym_float_literal] = ACTIONS(2105), + [sym_rune_literal] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_c_SQUOTE] = ACTIONS(2105), + [anon_sym_c_DQUOTE] = ACTIONS(2105), + [anon_sym_r_SQUOTE] = ACTIONS(2105), + [anon_sym_r_DQUOTE] = ACTIONS(2105), + [sym_pseudo_compile_time_identifier] = ACTIONS(2105), + [anon_sym_shared] = ACTIONS(2105), + [anon_sym_map_LBRACK] = ACTIONS(2105), + [anon_sym_chan] = ACTIONS(2105), + [anon_sym_thread] = ACTIONS(2105), + [anon_sym_atomic] = ACTIONS(2105), + [anon_sym_assert] = ACTIONS(2105), + [anon_sym_defer] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_DOLLARfor] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(2105), + [anon_sym_asm] = ACTIONS(2105), + [anon_sym_AT_LBRACK] = ACTIONS(2105), + }, + [1021] = { + [sym_line_comment] = STATE(1021), + [sym_block_comment] = STATE(1021), + [ts_builtin_sym_end] = ACTIONS(2811), + [sym_identifier] = ACTIONS(2813), + [anon_sym_LF] = ACTIONS(2813), + [anon_sym_CR] = ACTIONS(2813), + [anon_sym_CR_LF] = ACTIONS(2813), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2813), + [anon_sym_as] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_COMMA] = ACTIONS(2813), + [anon_sym_const] = ACTIONS(2813), + [anon_sym_LPAREN] = ACTIONS(2813), + [anon_sym___global] = ACTIONS(2813), + [anon_sym_type] = ACTIONS(2813), + [anon_sym_PIPE] = ACTIONS(2813), + [anon_sym_fn] = ACTIONS(2813), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_SLASH] = ACTIONS(2813), + [anon_sym_PERCENT] = ACTIONS(2813), + [anon_sym_LT] = ACTIONS(2813), + [anon_sym_GT] = ACTIONS(2813), + [anon_sym_EQ_EQ] = ACTIONS(2813), + [anon_sym_BANG_EQ] = ACTIONS(2813), + [anon_sym_LT_EQ] = ACTIONS(2813), + [anon_sym_GT_EQ] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_struct] = ACTIONS(2813), + [anon_sym_union] = ACTIONS(2813), + [anon_sym_pub] = ACTIONS(2813), + [anon_sym_mut] = ACTIONS(2813), + [anon_sym_enum] = ACTIONS(2813), + [anon_sym_interface] = ACTIONS(2813), + [anon_sym_PLUS_PLUS] = ACTIONS(2813), + [anon_sym_DASH_DASH] = ACTIONS(2813), + [anon_sym_QMARK] = ACTIONS(2813), + [anon_sym_BANG] = ACTIONS(2813), + [anon_sym_go] = ACTIONS(2813), + [anon_sym_spawn] = ACTIONS(2813), + [anon_sym_json_DOTdecode] = ACTIONS(2813), + [anon_sym_LBRACK2] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_LT_DASH] = ACTIONS(2813), + [anon_sym_LT_LT] = ACTIONS(2813), + [anon_sym_GT_GT] = ACTIONS(2813), + [anon_sym_GT_GT_GT] = ACTIONS(2813), + [anon_sym_AMP_CARET] = ACTIONS(2813), + [anon_sym_AMP_AMP] = ACTIONS(2813), + [anon_sym_PIPE_PIPE] = ACTIONS(2813), + [anon_sym_or] = ACTIONS(2813), + [sym_none] = ACTIONS(2813), + [sym_true] = ACTIONS(2813), + [sym_false] = ACTIONS(2813), + [sym_nil] = ACTIONS(2813), + [anon_sym_QMARK_DOT] = ACTIONS(2813), + [anon_sym_POUND_LBRACK] = ACTIONS(2813), + [anon_sym_if] = ACTIONS(2813), + [anon_sym_DOLLARif] = ACTIONS(2813), + [anon_sym_is] = ACTIONS(2813), + [anon_sym_BANGis] = ACTIONS(2813), + [anon_sym_in] = ACTIONS(2813), + [anon_sym_BANGin] = ACTIONS(2813), + [anon_sym_match] = ACTIONS(2813), + [anon_sym_select] = ACTIONS(2813), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [anon_sym_unsafe] = ACTIONS(2813), + [anon_sym_sql] = ACTIONS(2813), + [sym_int_literal] = ACTIONS(2813), + [sym_float_literal] = ACTIONS(2813), + [sym_rune_literal] = ACTIONS(2813), + [anon_sym_SQUOTE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2813), + [anon_sym_c_SQUOTE] = ACTIONS(2813), + [anon_sym_c_DQUOTE] = ACTIONS(2813), + [anon_sym_r_SQUOTE] = ACTIONS(2813), + [anon_sym_r_DQUOTE] = ACTIONS(2813), + [sym_pseudo_compile_time_identifier] = ACTIONS(2813), + [anon_sym_shared] = ACTIONS(2813), + [anon_sym_map_LBRACK] = ACTIONS(2813), + [anon_sym_chan] = ACTIONS(2813), + [anon_sym_thread] = ACTIONS(2813), + [anon_sym_atomic] = ACTIONS(2813), + [anon_sym_assert] = ACTIONS(2813), + [anon_sym_defer] = ACTIONS(2813), + [anon_sym_goto] = ACTIONS(2813), + [anon_sym_break] = ACTIONS(2813), + [anon_sym_continue] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2813), + [anon_sym_DOLLARfor] = ACTIONS(2813), + [anon_sym_for] = ACTIONS(2813), + [anon_sym_POUND] = ACTIONS(2813), + [anon_sym_asm] = ACTIONS(2813), + [anon_sym_AT_LBRACK] = ACTIONS(2813), }, [1022] = { [sym_line_comment] = STATE(1022), [sym_block_comment] = STATE(1022), - [ts_builtin_sym_end] = ACTIONS(2201), - [sym_identifier] = ACTIONS(2203), - [anon_sym_LF] = ACTIONS(2203), - [anon_sym_CR] = ACTIONS(2203), - [anon_sym_CR_LF] = ACTIONS(2203), + [ts_builtin_sym_end] = ACTIONS(2157), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LF] = ACTIONS(2159), + [anon_sym_CR] = ACTIONS(2159), + [anon_sym_CR_LF] = ACTIONS(2159), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_COMMA] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym___global] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_PIPE] = ACTIONS(2203), - [anon_sym_fn] = ACTIONS(2203), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2203), - [anon_sym_SLASH] = ACTIONS(2203), - [anon_sym_PERCENT] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_GT] = ACTIONS(2203), - [anon_sym_EQ_EQ] = ACTIONS(2203), - [anon_sym_BANG_EQ] = ACTIONS(2203), - [anon_sym_LT_EQ] = ACTIONS(2203), - [anon_sym_GT_EQ] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_struct] = ACTIONS(2203), - [anon_sym_union] = ACTIONS(2203), - [anon_sym_pub] = ACTIONS(2203), - [anon_sym_mut] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [anon_sym_interface] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [anon_sym_QMARK] = ACTIONS(2203), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_go] = ACTIONS(2203), - [anon_sym_spawn] = ACTIONS(2203), - [anon_sym_json_DOTdecode] = ACTIONS(2203), - [anon_sym_LBRACK2] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_CARET] = ACTIONS(2203), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2203), - [anon_sym_LT_LT] = ACTIONS(2203), - [anon_sym_GT_GT] = ACTIONS(2203), - [anon_sym_GT_GT_GT] = ACTIONS(2203), - [anon_sym_AMP_CARET] = ACTIONS(2203), - [anon_sym_AMP_AMP] = ACTIONS(2203), - [anon_sym_PIPE_PIPE] = ACTIONS(2203), - [anon_sym_or] = ACTIONS(2203), - [sym_none] = ACTIONS(2203), - [sym_true] = ACTIONS(2203), - [sym_false] = ACTIONS(2203), - [sym_nil] = ACTIONS(2203), - [anon_sym_QMARK_DOT] = ACTIONS(2203), - [anon_sym_POUND_LBRACK] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_DOLLARif] = ACTIONS(2203), - [anon_sym_is] = ACTIONS(2203), - [anon_sym_BANGis] = ACTIONS(2203), - [anon_sym_in] = ACTIONS(2203), - [anon_sym_BANGin] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_select] = ACTIONS(2203), - [anon_sym_lock] = ACTIONS(2203), - [anon_sym_rlock] = ACTIONS(2203), - [anon_sym_unsafe] = ACTIONS(2203), - [anon_sym_sql] = ACTIONS(2203), - [sym_int_literal] = ACTIONS(2203), - [sym_float_literal] = ACTIONS(2203), - [sym_rune_literal] = ACTIONS(2203), - [sym_pseudo_compile_time_identifier] = ACTIONS(2203), - [anon_sym_shared] = ACTIONS(2203), - [anon_sym_map_LBRACK] = ACTIONS(2203), - [anon_sym_chan] = ACTIONS(2203), - [anon_sym_thread] = ACTIONS(2203), - [anon_sym_atomic] = ACTIONS(2203), - [anon_sym_assert] = ACTIONS(2203), - [anon_sym_defer] = ACTIONS(2203), - [anon_sym_goto] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_DOLLARfor] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_POUND] = ACTIONS(2203), - [anon_sym_asm] = ACTIONS(2203), - [anon_sym_AT_LBRACK] = ACTIONS(2203), - [sym___double_quote] = ACTIONS(2203), - [sym___single_quote] = ACTIONS(2203), - [sym___c_double_quote] = ACTIONS(2203), - [sym___c_single_quote] = ACTIONS(2203), - [sym___r_double_quote] = ACTIONS(2203), - [sym___r_single_quote] = ACTIONS(2203), + [anon_sym_DOT] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym___global] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_PIPE] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(2159), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2159), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_PERCENT] = ACTIONS(2159), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_GT] = ACTIONS(2159), + [anon_sym_EQ_EQ] = ACTIONS(2159), + [anon_sym_BANG_EQ] = ACTIONS(2159), + [anon_sym_LT_EQ] = ACTIONS(2159), + [anon_sym_GT_EQ] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(2159), + [anon_sym_union] = ACTIONS(2159), + [anon_sym_pub] = ACTIONS(2159), + [anon_sym_mut] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [anon_sym_interface] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [anon_sym_QMARK] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(2159), + [anon_sym_spawn] = ACTIONS(2159), + [anon_sym_json_DOTdecode] = ACTIONS(2159), + [anon_sym_LBRACK2] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_CARET] = ACTIONS(2159), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_LT_DASH] = ACTIONS(2159), + [anon_sym_LT_LT] = ACTIONS(2159), + [anon_sym_GT_GT] = ACTIONS(2159), + [anon_sym_GT_GT_GT] = ACTIONS(2159), + [anon_sym_AMP_CARET] = ACTIONS(2159), + [anon_sym_AMP_AMP] = ACTIONS(2159), + [anon_sym_PIPE_PIPE] = ACTIONS(2159), + [anon_sym_or] = ACTIONS(2159), + [sym_none] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_nil] = ACTIONS(2159), + [anon_sym_QMARK_DOT] = ACTIONS(2159), + [anon_sym_POUND_LBRACK] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_DOLLARif] = ACTIONS(2159), + [anon_sym_is] = ACTIONS(2159), + [anon_sym_BANGis] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2159), + [anon_sym_BANGin] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_select] = ACTIONS(2159), + [anon_sym_lock] = ACTIONS(2159), + [anon_sym_rlock] = ACTIONS(2159), + [anon_sym_unsafe] = ACTIONS(2159), + [anon_sym_sql] = ACTIONS(2159), + [sym_int_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_rune_literal] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_c_SQUOTE] = ACTIONS(2159), + [anon_sym_c_DQUOTE] = ACTIONS(2159), + [anon_sym_r_SQUOTE] = ACTIONS(2159), + [anon_sym_r_DQUOTE] = ACTIONS(2159), + [sym_pseudo_compile_time_identifier] = ACTIONS(2159), + [anon_sym_shared] = ACTIONS(2159), + [anon_sym_map_LBRACK] = ACTIONS(2159), + [anon_sym_chan] = ACTIONS(2159), + [anon_sym_thread] = ACTIONS(2159), + [anon_sym_atomic] = ACTIONS(2159), + [anon_sym_assert] = ACTIONS(2159), + [anon_sym_defer] = ACTIONS(2159), + [anon_sym_goto] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_DOLLARfor] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_POUND] = ACTIONS(2159), + [anon_sym_asm] = ACTIONS(2159), + [anon_sym_AT_LBRACK] = ACTIONS(2159), }, [1023] = { [sym_line_comment] = STATE(1023), [sym_block_comment] = STATE(1023), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), + [ts_builtin_sym_end] = ACTIONS(2761), + [sym_identifier] = ACTIONS(2763), + [anon_sym_LF] = ACTIONS(2763), + [anon_sym_CR] = ACTIONS(2763), + [anon_sym_CR_LF] = ACTIONS(2763), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1889), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1889), - [anon_sym_AMP_CARET] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1889), - [anon_sym_POUND_LBRACK] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [anon_sym_DOT] = ACTIONS(2763), + [anon_sym_as] = ACTIONS(2763), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_COMMA] = ACTIONS(2763), + [anon_sym_const] = ACTIONS(2763), + [anon_sym_LPAREN] = ACTIONS(2763), + [anon_sym___global] = ACTIONS(2763), + [anon_sym_type] = ACTIONS(2763), + [anon_sym_PIPE] = ACTIONS(2763), + [anon_sym_fn] = ACTIONS(2763), + [anon_sym_PLUS] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_SLASH] = ACTIONS(2763), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(2763), + [anon_sym_GT] = ACTIONS(2763), + [anon_sym_EQ_EQ] = ACTIONS(2763), + [anon_sym_BANG_EQ] = ACTIONS(2763), + [anon_sym_LT_EQ] = ACTIONS(2763), + [anon_sym_GT_EQ] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2763), + [anon_sym_union] = ACTIONS(2763), + [anon_sym_pub] = ACTIONS(2763), + [anon_sym_mut] = ACTIONS(2763), + [anon_sym_enum] = ACTIONS(2763), + [anon_sym_interface] = ACTIONS(2763), + [anon_sym_PLUS_PLUS] = ACTIONS(2763), + [anon_sym_DASH_DASH] = ACTIONS(2763), + [anon_sym_QMARK] = ACTIONS(2763), + [anon_sym_BANG] = ACTIONS(2763), + [anon_sym_go] = ACTIONS(2763), + [anon_sym_spawn] = ACTIONS(2763), + [anon_sym_json_DOTdecode] = ACTIONS(2763), + [anon_sym_LBRACK2] = ACTIONS(2763), + [anon_sym_TILDE] = ACTIONS(2763), + [anon_sym_CARET] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2763), + [anon_sym_LT_LT] = ACTIONS(2763), + [anon_sym_GT_GT] = ACTIONS(2763), + [anon_sym_GT_GT_GT] = ACTIONS(2763), + [anon_sym_AMP_CARET] = ACTIONS(2763), + [anon_sym_AMP_AMP] = ACTIONS(2763), + [anon_sym_PIPE_PIPE] = ACTIONS(2763), + [anon_sym_or] = ACTIONS(2763), + [sym_none] = ACTIONS(2763), + [sym_true] = ACTIONS(2763), + [sym_false] = ACTIONS(2763), + [sym_nil] = ACTIONS(2763), + [anon_sym_QMARK_DOT] = ACTIONS(2763), + [anon_sym_POUND_LBRACK] = ACTIONS(2763), + [anon_sym_if] = ACTIONS(2763), + [anon_sym_DOLLARif] = ACTIONS(2763), + [anon_sym_is] = ACTIONS(2763), + [anon_sym_BANGis] = ACTIONS(2763), + [anon_sym_in] = ACTIONS(2763), + [anon_sym_BANGin] = ACTIONS(2763), + [anon_sym_match] = ACTIONS(2763), + [anon_sym_select] = ACTIONS(2763), + [anon_sym_lock] = ACTIONS(2763), + [anon_sym_rlock] = ACTIONS(2763), + [anon_sym_unsafe] = ACTIONS(2763), + [anon_sym_sql] = ACTIONS(2763), + [sym_int_literal] = ACTIONS(2763), + [sym_float_literal] = ACTIONS(2763), + [sym_rune_literal] = ACTIONS(2763), + [anon_sym_SQUOTE] = ACTIONS(2763), + [anon_sym_DQUOTE] = ACTIONS(2763), + [anon_sym_c_SQUOTE] = ACTIONS(2763), + [anon_sym_c_DQUOTE] = ACTIONS(2763), + [anon_sym_r_SQUOTE] = ACTIONS(2763), + [anon_sym_r_DQUOTE] = ACTIONS(2763), + [sym_pseudo_compile_time_identifier] = ACTIONS(2763), + [anon_sym_shared] = ACTIONS(2763), + [anon_sym_map_LBRACK] = ACTIONS(2763), + [anon_sym_chan] = ACTIONS(2763), + [anon_sym_thread] = ACTIONS(2763), + [anon_sym_atomic] = ACTIONS(2763), + [anon_sym_assert] = ACTIONS(2763), + [anon_sym_defer] = ACTIONS(2763), + [anon_sym_goto] = ACTIONS(2763), + [anon_sym_break] = ACTIONS(2763), + [anon_sym_continue] = ACTIONS(2763), + [anon_sym_return] = ACTIONS(2763), + [anon_sym_DOLLARfor] = ACTIONS(2763), + [anon_sym_for] = ACTIONS(2763), + [anon_sym_POUND] = ACTIONS(2763), + [anon_sym_asm] = ACTIONS(2763), + [anon_sym_AT_LBRACK] = ACTIONS(2763), }, [1024] = { [sym_line_comment] = STATE(1024), [sym_block_comment] = STATE(1024), - [ts_builtin_sym_end] = ACTIONS(2511), - [sym_identifier] = ACTIONS(2513), - [anon_sym_LF] = ACTIONS(2513), - [anon_sym_CR] = ACTIONS(2513), - [anon_sym_CR_LF] = ACTIONS(2513), + [ts_builtin_sym_end] = ACTIONS(2773), + [sym_identifier] = ACTIONS(2775), + [anon_sym_LF] = ACTIONS(2775), + [anon_sym_CR] = ACTIONS(2775), + [anon_sym_CR_LF] = ACTIONS(2775), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_COMMA] = ACTIONS(2513), - [anon_sym_const] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym___global] = ACTIONS(2513), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_fn] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2513), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_GT] = ACTIONS(2513), - [anon_sym_EQ_EQ] = ACTIONS(2513), - [anon_sym_BANG_EQ] = ACTIONS(2513), - [anon_sym_LT_EQ] = ACTIONS(2513), - [anon_sym_GT_EQ] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_union] = ACTIONS(2513), - [anon_sym_pub] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_enum] = ACTIONS(2513), - [anon_sym_interface] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_QMARK] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_go] = ACTIONS(2513), - [anon_sym_spawn] = ACTIONS(2513), - [anon_sym_json_DOTdecode] = ACTIONS(2513), - [anon_sym_LBRACK2] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_LT_DASH] = ACTIONS(2513), - [anon_sym_LT_LT] = ACTIONS(2513), - [anon_sym_GT_GT] = ACTIONS(2513), - [anon_sym_GT_GT_GT] = ACTIONS(2513), - [anon_sym_AMP_CARET] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2513), - [anon_sym_or] = ACTIONS(2513), - [sym_none] = ACTIONS(2513), - [sym_true] = ACTIONS(2513), - [sym_false] = ACTIONS(2513), - [sym_nil] = ACTIONS(2513), - [anon_sym_QMARK_DOT] = ACTIONS(2513), - [anon_sym_POUND_LBRACK] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_DOLLARif] = ACTIONS(2513), - [anon_sym_is] = ACTIONS(2513), - [anon_sym_BANGis] = ACTIONS(2513), - [anon_sym_in] = ACTIONS(2513), - [anon_sym_BANGin] = ACTIONS(2513), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_select] = ACTIONS(2513), - [anon_sym_lock] = ACTIONS(2513), - [anon_sym_rlock] = ACTIONS(2513), - [anon_sym_unsafe] = ACTIONS(2513), - [anon_sym_sql] = ACTIONS(2513), - [sym_int_literal] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2513), - [sym_rune_literal] = ACTIONS(2513), - [sym_pseudo_compile_time_identifier] = ACTIONS(2513), - [anon_sym_shared] = ACTIONS(2513), - [anon_sym_map_LBRACK] = ACTIONS(2513), - [anon_sym_chan] = ACTIONS(2513), - [anon_sym_thread] = ACTIONS(2513), - [anon_sym_atomic] = ACTIONS(2513), - [anon_sym_assert] = ACTIONS(2513), - [anon_sym_defer] = ACTIONS(2513), - [anon_sym_goto] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_DOLLARfor] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_POUND] = ACTIONS(2513), - [anon_sym_asm] = ACTIONS(2513), - [anon_sym_AT_LBRACK] = ACTIONS(2513), - [sym___double_quote] = ACTIONS(2513), - [sym___single_quote] = ACTIONS(2513), - [sym___c_double_quote] = ACTIONS(2513), - [sym___c_single_quote] = ACTIONS(2513), - [sym___r_double_quote] = ACTIONS(2513), - [sym___r_single_quote] = ACTIONS(2513), + [anon_sym_DOT] = ACTIONS(2775), + [anon_sym_as] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_COMMA] = ACTIONS(2775), + [anon_sym_const] = ACTIONS(2775), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym___global] = ACTIONS(2775), + [anon_sym_type] = ACTIONS(2775), + [anon_sym_PIPE] = ACTIONS(2775), + [anon_sym_fn] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2775), + [anon_sym_PERCENT] = ACTIONS(2775), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_GT] = ACTIONS(2775), + [anon_sym_EQ_EQ] = ACTIONS(2775), + [anon_sym_BANG_EQ] = ACTIONS(2775), + [anon_sym_LT_EQ] = ACTIONS(2775), + [anon_sym_GT_EQ] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2775), + [anon_sym_union] = ACTIONS(2775), + [anon_sym_pub] = ACTIONS(2775), + [anon_sym_mut] = ACTIONS(2775), + [anon_sym_enum] = ACTIONS(2775), + [anon_sym_interface] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_QMARK] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_go] = ACTIONS(2775), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(2775), + [anon_sym_LBRACK2] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_CARET] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_LT_DASH] = ACTIONS(2775), + [anon_sym_LT_LT] = ACTIONS(2775), + [anon_sym_GT_GT] = ACTIONS(2775), + [anon_sym_GT_GT_GT] = ACTIONS(2775), + [anon_sym_AMP_CARET] = ACTIONS(2775), + [anon_sym_AMP_AMP] = ACTIONS(2775), + [anon_sym_PIPE_PIPE] = ACTIONS(2775), + [anon_sym_or] = ACTIONS(2775), + [sym_none] = ACTIONS(2775), + [sym_true] = ACTIONS(2775), + [sym_false] = ACTIONS(2775), + [sym_nil] = ACTIONS(2775), + [anon_sym_QMARK_DOT] = ACTIONS(2775), + [anon_sym_POUND_LBRACK] = ACTIONS(2775), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_DOLLARif] = ACTIONS(2775), + [anon_sym_is] = ACTIONS(2775), + [anon_sym_BANGis] = ACTIONS(2775), + [anon_sym_in] = ACTIONS(2775), + [anon_sym_BANGin] = ACTIONS(2775), + [anon_sym_match] = ACTIONS(2775), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2775), + [anon_sym_rlock] = ACTIONS(2775), + [anon_sym_unsafe] = ACTIONS(2775), + [anon_sym_sql] = ACTIONS(2775), + [sym_int_literal] = ACTIONS(2775), + [sym_float_literal] = ACTIONS(2775), + [sym_rune_literal] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [anon_sym_c_SQUOTE] = ACTIONS(2775), + [anon_sym_c_DQUOTE] = ACTIONS(2775), + [anon_sym_r_SQUOTE] = ACTIONS(2775), + [anon_sym_r_DQUOTE] = ACTIONS(2775), + [sym_pseudo_compile_time_identifier] = ACTIONS(2775), + [anon_sym_shared] = ACTIONS(2775), + [anon_sym_map_LBRACK] = ACTIONS(2775), + [anon_sym_chan] = ACTIONS(2775), + [anon_sym_thread] = ACTIONS(2775), + [anon_sym_atomic] = ACTIONS(2775), + [anon_sym_assert] = ACTIONS(2775), + [anon_sym_defer] = ACTIONS(2775), + [anon_sym_goto] = ACTIONS(2775), + [anon_sym_break] = ACTIONS(2775), + [anon_sym_continue] = ACTIONS(2775), + [anon_sym_return] = ACTIONS(2775), + [anon_sym_DOLLARfor] = ACTIONS(2775), + [anon_sym_for] = ACTIONS(2775), + [anon_sym_POUND] = ACTIONS(2775), + [anon_sym_asm] = ACTIONS(2775), + [anon_sym_AT_LBRACK] = ACTIONS(2775), }, [1025] = { [sym_line_comment] = STATE(1025), [sym_block_comment] = STATE(1025), - [ts_builtin_sym_end] = ACTIONS(2520), - [sym_identifier] = ACTIONS(2522), - [anon_sym_LF] = ACTIONS(2522), - [anon_sym_CR] = ACTIONS(2522), - [anon_sym_CR_LF] = ACTIONS(2522), + [ts_builtin_sym_end] = ACTIONS(2777), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LF] = ACTIONS(2779), + [anon_sym_CR] = ACTIONS(2779), + [anon_sym_CR_LF] = ACTIONS(2779), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2522), - [anon_sym_as] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_COMMA] = ACTIONS(2522), - [anon_sym_const] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym___global] = ACTIONS(2522), - [anon_sym_type] = ACTIONS(2522), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_fn] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_SLASH] = ACTIONS(2522), - [anon_sym_PERCENT] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_GT] = ACTIONS(2522), - [anon_sym_EQ_EQ] = ACTIONS(2522), - [anon_sym_BANG_EQ] = ACTIONS(2522), - [anon_sym_LT_EQ] = ACTIONS(2522), - [anon_sym_GT_EQ] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(2522), - [anon_sym_union] = ACTIONS(2522), - [anon_sym_pub] = ACTIONS(2522), - [anon_sym_mut] = ACTIONS(2522), - [anon_sym_enum] = ACTIONS(2522), - [anon_sym_interface] = ACTIONS(2522), - [anon_sym_PLUS_PLUS] = ACTIONS(2522), - [anon_sym_DASH_DASH] = ACTIONS(2522), - [anon_sym_QMARK] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_go] = ACTIONS(2522), - [anon_sym_spawn] = ACTIONS(2522), - [anon_sym_json_DOTdecode] = ACTIONS(2522), - [anon_sym_LBRACK2] = ACTIONS(2522), - [anon_sym_TILDE] = ACTIONS(2522), - [anon_sym_CARET] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_LT_DASH] = ACTIONS(2522), - [anon_sym_LT_LT] = ACTIONS(2522), - [anon_sym_GT_GT] = ACTIONS(2522), - [anon_sym_GT_GT_GT] = ACTIONS(2522), - [anon_sym_AMP_CARET] = ACTIONS(2522), - [anon_sym_AMP_AMP] = ACTIONS(2522), - [anon_sym_PIPE_PIPE] = ACTIONS(2522), - [anon_sym_or] = ACTIONS(2522), - [sym_none] = ACTIONS(2522), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_nil] = ACTIONS(2522), - [anon_sym_QMARK_DOT] = ACTIONS(2522), - [anon_sym_POUND_LBRACK] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_DOLLARif] = ACTIONS(2522), - [anon_sym_is] = ACTIONS(2522), - [anon_sym_BANGis] = ACTIONS(2522), - [anon_sym_in] = ACTIONS(2522), - [anon_sym_BANGin] = ACTIONS(2522), - [anon_sym_match] = ACTIONS(2522), - [anon_sym_select] = ACTIONS(2522), - [anon_sym_lock] = ACTIONS(2522), - [anon_sym_rlock] = ACTIONS(2522), - [anon_sym_unsafe] = ACTIONS(2522), - [anon_sym_sql] = ACTIONS(2522), - [sym_int_literal] = ACTIONS(2522), - [sym_float_literal] = ACTIONS(2522), - [sym_rune_literal] = ACTIONS(2522), - [sym_pseudo_compile_time_identifier] = ACTIONS(2522), - [anon_sym_shared] = ACTIONS(2522), - [anon_sym_map_LBRACK] = ACTIONS(2522), - [anon_sym_chan] = ACTIONS(2522), - [anon_sym_thread] = ACTIONS(2522), - [anon_sym_atomic] = ACTIONS(2522), - [anon_sym_assert] = ACTIONS(2522), - [anon_sym_defer] = ACTIONS(2522), - [anon_sym_goto] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_DOLLARfor] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2522), - [anon_sym_POUND] = ACTIONS(2522), - [anon_sym_asm] = ACTIONS(2522), - [anon_sym_AT_LBRACK] = ACTIONS(2522), - [sym___double_quote] = ACTIONS(2522), - [sym___single_quote] = ACTIONS(2522), - [sym___c_double_quote] = ACTIONS(2522), - [sym___c_single_quote] = ACTIONS(2522), - [sym___r_double_quote] = ACTIONS(2522), - [sym___r_single_quote] = ACTIONS(2522), + [anon_sym_DOT] = ACTIONS(2779), + [anon_sym_as] = ACTIONS(2779), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_COMMA] = ACTIONS(2779), + [anon_sym_const] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(2779), + [anon_sym___global] = ACTIONS(2779), + [anon_sym_type] = ACTIONS(2779), + [anon_sym_PIPE] = ACTIONS(2779), + [anon_sym_fn] = ACTIONS(2779), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_SLASH] = ACTIONS(2779), + [anon_sym_PERCENT] = ACTIONS(2779), + [anon_sym_LT] = ACTIONS(2779), + [anon_sym_GT] = ACTIONS(2779), + [anon_sym_EQ_EQ] = ACTIONS(2779), + [anon_sym_BANG_EQ] = ACTIONS(2779), + [anon_sym_LT_EQ] = ACTIONS(2779), + [anon_sym_GT_EQ] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_union] = ACTIONS(2779), + [anon_sym_pub] = ACTIONS(2779), + [anon_sym_mut] = ACTIONS(2779), + [anon_sym_enum] = ACTIONS(2779), + [anon_sym_interface] = ACTIONS(2779), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_QMARK] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2779), + [anon_sym_json_DOTdecode] = ACTIONS(2779), + [anon_sym_LBRACK2] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_LT_DASH] = ACTIONS(2779), + [anon_sym_LT_LT] = ACTIONS(2779), + [anon_sym_GT_GT] = ACTIONS(2779), + [anon_sym_GT_GT_GT] = ACTIONS(2779), + [anon_sym_AMP_CARET] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2779), + [anon_sym_PIPE_PIPE] = ACTIONS(2779), + [anon_sym_or] = ACTIONS(2779), + [sym_none] = ACTIONS(2779), + [sym_true] = ACTIONS(2779), + [sym_false] = ACTIONS(2779), + [sym_nil] = ACTIONS(2779), + [anon_sym_QMARK_DOT] = ACTIONS(2779), + [anon_sym_POUND_LBRACK] = ACTIONS(2779), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_DOLLARif] = ACTIONS(2779), + [anon_sym_is] = ACTIONS(2779), + [anon_sym_BANGis] = ACTIONS(2779), + [anon_sym_in] = ACTIONS(2779), + [anon_sym_BANGin] = ACTIONS(2779), + [anon_sym_match] = ACTIONS(2779), + [anon_sym_select] = ACTIONS(2779), + [anon_sym_lock] = ACTIONS(2779), + [anon_sym_rlock] = ACTIONS(2779), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2779), + [sym_int_literal] = ACTIONS(2779), + [sym_float_literal] = ACTIONS(2779), + [sym_rune_literal] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2779), + [anon_sym_DQUOTE] = ACTIONS(2779), + [anon_sym_c_SQUOTE] = ACTIONS(2779), + [anon_sym_c_DQUOTE] = ACTIONS(2779), + [anon_sym_r_SQUOTE] = ACTIONS(2779), + [anon_sym_r_DQUOTE] = ACTIONS(2779), + [sym_pseudo_compile_time_identifier] = ACTIONS(2779), + [anon_sym_shared] = ACTIONS(2779), + [anon_sym_map_LBRACK] = ACTIONS(2779), + [anon_sym_chan] = ACTIONS(2779), + [anon_sym_thread] = ACTIONS(2779), + [anon_sym_atomic] = ACTIONS(2779), + [anon_sym_assert] = ACTIONS(2779), + [anon_sym_defer] = ACTIONS(2779), + [anon_sym_goto] = ACTIONS(2779), + [anon_sym_break] = ACTIONS(2779), + [anon_sym_continue] = ACTIONS(2779), + [anon_sym_return] = ACTIONS(2779), + [anon_sym_DOLLARfor] = ACTIONS(2779), + [anon_sym_for] = ACTIONS(2779), + [anon_sym_POUND] = ACTIONS(2779), + [anon_sym_asm] = ACTIONS(2779), + [anon_sym_AT_LBRACK] = ACTIONS(2779), }, [1026] = { [sym_line_comment] = STATE(1026), [sym_block_comment] = STATE(1026), - [ts_builtin_sym_end] = ACTIONS(2810), - [sym_identifier] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_CR] = ACTIONS(2812), - [anon_sym_CR_LF] = ACTIONS(2812), + [ts_builtin_sym_end] = ACTIONS(2815), + [sym_identifier] = ACTIONS(2817), + [anon_sym_LF] = ACTIONS(2817), + [anon_sym_CR] = ACTIONS(2817), + [anon_sym_CR_LF] = ACTIONS(2817), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2812), - [anon_sym_as] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_const] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym___global] = ACTIONS(2812), - [anon_sym_type] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_SLASH] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_EQ_EQ] = ACTIONS(2812), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_EQ] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_union] = ACTIONS(2812), - [anon_sym_pub] = ACTIONS(2812), - [anon_sym_mut] = ACTIONS(2812), - [anon_sym_enum] = ACTIONS(2812), - [anon_sym_interface] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_QMARK] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_go] = ACTIONS(2812), - [anon_sym_spawn] = ACTIONS(2812), - [anon_sym_json_DOTdecode] = ACTIONS(2812), - [anon_sym_LBRACK2] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_LT_DASH] = ACTIONS(2812), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_GT_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_CARET] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_PIPE_PIPE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2812), - [sym_none] = ACTIONS(2812), - [sym_true] = ACTIONS(2812), - [sym_false] = ACTIONS(2812), - [sym_nil] = ACTIONS(2812), - [anon_sym_QMARK_DOT] = ACTIONS(2812), - [anon_sym_POUND_LBRACK] = ACTIONS(2812), - [anon_sym_if] = ACTIONS(2812), - [anon_sym_DOLLARif] = ACTIONS(2812), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_BANGis] = ACTIONS(2812), - [anon_sym_in] = ACTIONS(2812), - [anon_sym_BANGin] = ACTIONS(2812), - [anon_sym_match] = ACTIONS(2812), - [anon_sym_select] = ACTIONS(2812), - [anon_sym_lock] = ACTIONS(2812), - [anon_sym_rlock] = ACTIONS(2812), - [anon_sym_unsafe] = ACTIONS(2812), - [anon_sym_sql] = ACTIONS(2812), - [sym_int_literal] = ACTIONS(2812), - [sym_float_literal] = ACTIONS(2812), - [sym_rune_literal] = ACTIONS(2812), - [sym_pseudo_compile_time_identifier] = ACTIONS(2812), - [anon_sym_shared] = ACTIONS(2812), - [anon_sym_map_LBRACK] = ACTIONS(2812), - [anon_sym_chan] = ACTIONS(2812), - [anon_sym_thread] = ACTIONS(2812), - [anon_sym_atomic] = ACTIONS(2812), - [anon_sym_assert] = ACTIONS(2812), - [anon_sym_defer] = ACTIONS(2812), - [anon_sym_goto] = ACTIONS(2812), - [anon_sym_break] = ACTIONS(2812), - [anon_sym_continue] = ACTIONS(2812), - [anon_sym_return] = ACTIONS(2812), - [anon_sym_DOLLARfor] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2812), - [anon_sym_POUND] = ACTIONS(2812), - [anon_sym_asm] = ACTIONS(2812), - [anon_sym_AT_LBRACK] = ACTIONS(2812), - [sym___double_quote] = ACTIONS(2812), - [sym___single_quote] = ACTIONS(2812), - [sym___c_double_quote] = ACTIONS(2812), - [sym___c_single_quote] = ACTIONS(2812), - [sym___r_double_quote] = ACTIONS(2812), - [sym___r_single_quote] = ACTIONS(2812), + [anon_sym_DOT] = ACTIONS(2817), + [anon_sym_as] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_COMMA] = ACTIONS(2817), + [anon_sym_const] = ACTIONS(2817), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym___global] = ACTIONS(2817), + [anon_sym_type] = ACTIONS(2817), + [anon_sym_PIPE] = ACTIONS(2817), + [anon_sym_fn] = ACTIONS(2817), + [anon_sym_PLUS] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_SLASH] = ACTIONS(2817), + [anon_sym_PERCENT] = ACTIONS(2817), + [anon_sym_LT] = ACTIONS(2817), + [anon_sym_GT] = ACTIONS(2817), + [anon_sym_EQ_EQ] = ACTIONS(2817), + [anon_sym_BANG_EQ] = ACTIONS(2817), + [anon_sym_LT_EQ] = ACTIONS(2817), + [anon_sym_GT_EQ] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2817), + [anon_sym_union] = ACTIONS(2817), + [anon_sym_pub] = ACTIONS(2817), + [anon_sym_mut] = ACTIONS(2817), + [anon_sym_enum] = ACTIONS(2817), + [anon_sym_interface] = ACTIONS(2817), + [anon_sym_PLUS_PLUS] = ACTIONS(2817), + [anon_sym_DASH_DASH] = ACTIONS(2817), + [anon_sym_QMARK] = ACTIONS(2817), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2817), + [anon_sym_spawn] = ACTIONS(2817), + [anon_sym_json_DOTdecode] = ACTIONS(2817), + [anon_sym_LBRACK2] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_CARET] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_LT_DASH] = ACTIONS(2817), + [anon_sym_LT_LT] = ACTIONS(2817), + [anon_sym_GT_GT] = ACTIONS(2817), + [anon_sym_GT_GT_GT] = ACTIONS(2817), + [anon_sym_AMP_CARET] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_PIPE_PIPE] = ACTIONS(2817), + [anon_sym_or] = ACTIONS(2817), + [sym_none] = ACTIONS(2817), + [sym_true] = ACTIONS(2817), + [sym_false] = ACTIONS(2817), + [sym_nil] = ACTIONS(2817), + [anon_sym_QMARK_DOT] = ACTIONS(2817), + [anon_sym_POUND_LBRACK] = ACTIONS(2817), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_DOLLARif] = ACTIONS(2817), + [anon_sym_is] = ACTIONS(2817), + [anon_sym_BANGis] = ACTIONS(2817), + [anon_sym_in] = ACTIONS(2817), + [anon_sym_BANGin] = ACTIONS(2817), + [anon_sym_match] = ACTIONS(2817), + [anon_sym_select] = ACTIONS(2817), + [anon_sym_lock] = ACTIONS(2817), + [anon_sym_rlock] = ACTIONS(2817), + [anon_sym_unsafe] = ACTIONS(2817), + [anon_sym_sql] = ACTIONS(2817), + [sym_int_literal] = ACTIONS(2817), + [sym_float_literal] = ACTIONS(2817), + [sym_rune_literal] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [anon_sym_c_SQUOTE] = ACTIONS(2817), + [anon_sym_c_DQUOTE] = ACTIONS(2817), + [anon_sym_r_SQUOTE] = ACTIONS(2817), + [anon_sym_r_DQUOTE] = ACTIONS(2817), + [sym_pseudo_compile_time_identifier] = ACTIONS(2817), + [anon_sym_shared] = ACTIONS(2817), + [anon_sym_map_LBRACK] = ACTIONS(2817), + [anon_sym_chan] = ACTIONS(2817), + [anon_sym_thread] = ACTIONS(2817), + [anon_sym_atomic] = ACTIONS(2817), + [anon_sym_assert] = ACTIONS(2817), + [anon_sym_defer] = ACTIONS(2817), + [anon_sym_goto] = ACTIONS(2817), + [anon_sym_break] = ACTIONS(2817), + [anon_sym_continue] = ACTIONS(2817), + [anon_sym_return] = ACTIONS(2817), + [anon_sym_DOLLARfor] = ACTIONS(2817), + [anon_sym_for] = ACTIONS(2817), + [anon_sym_POUND] = ACTIONS(2817), + [anon_sym_asm] = ACTIONS(2817), + [anon_sym_AT_LBRACK] = ACTIONS(2817), }, [1027] = { [sym_line_comment] = STATE(1027), [sym_block_comment] = STATE(1027), - [ts_builtin_sym_end] = ACTIONS(2868), - [sym_identifier] = ACTIONS(2870), - [anon_sym_LF] = ACTIONS(2870), - [anon_sym_CR] = ACTIONS(2870), - [anon_sym_CR_LF] = ACTIONS(2870), + [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(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_as] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2870), - [anon_sym_const] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym___global] = ACTIONS(2870), - [anon_sym_type] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_fn] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_EQ_EQ] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2870), - [anon_sym_LT_EQ] = ACTIONS(2870), - [anon_sym_GT_EQ] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2870), - [anon_sym_union] = ACTIONS(2870), - [anon_sym_pub] = ACTIONS(2870), - [anon_sym_mut] = ACTIONS(2870), - [anon_sym_enum] = ACTIONS(2870), - [anon_sym_interface] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_go] = ACTIONS(2870), - [anon_sym_spawn] = ACTIONS(2870), - [anon_sym_json_DOTdecode] = ACTIONS(2870), - [anon_sym_LBRACK2] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_LT_LT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2870), - [anon_sym_GT_GT_GT] = ACTIONS(2870), - [anon_sym_AMP_CARET] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_or] = ACTIONS(2870), - [sym_none] = ACTIONS(2870), - [sym_true] = ACTIONS(2870), - [sym_false] = ACTIONS(2870), - [sym_nil] = ACTIONS(2870), - [anon_sym_QMARK_DOT] = ACTIONS(2870), - [anon_sym_POUND_LBRACK] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_DOLLARif] = ACTIONS(2870), - [anon_sym_is] = ACTIONS(2870), - [anon_sym_BANGis] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(2870), - [anon_sym_BANGin] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_select] = ACTIONS(2870), - [anon_sym_lock] = ACTIONS(2870), - [anon_sym_rlock] = ACTIONS(2870), - [anon_sym_unsafe] = ACTIONS(2870), - [anon_sym_sql] = ACTIONS(2870), - [sym_int_literal] = ACTIONS(2870), - [sym_float_literal] = ACTIONS(2870), - [sym_rune_literal] = ACTIONS(2870), - [sym_pseudo_compile_time_identifier] = ACTIONS(2870), - [anon_sym_shared] = ACTIONS(2870), - [anon_sym_map_LBRACK] = ACTIONS(2870), - [anon_sym_chan] = ACTIONS(2870), - [anon_sym_thread] = ACTIONS(2870), - [anon_sym_atomic] = ACTIONS(2870), - [anon_sym_assert] = ACTIONS(2870), - [anon_sym_defer] = ACTIONS(2870), - [anon_sym_goto] = ACTIONS(2870), - [anon_sym_break] = ACTIONS(2870), - [anon_sym_continue] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_DOLLARfor] = ACTIONS(2870), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_POUND] = ACTIONS(2870), - [anon_sym_asm] = ACTIONS(2870), - [anon_sym_AT_LBRACK] = ACTIONS(2870), - [sym___double_quote] = ACTIONS(2870), - [sym___single_quote] = ACTIONS(2870), - [sym___c_double_quote] = ACTIONS(2870), - [sym___c_single_quote] = ACTIONS(2870), - [sym___r_double_quote] = ACTIONS(2870), - [sym___r_single_quote] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(2855), + [anon_sym_as] = ACTIONS(2855), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_COMMA] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2855), + [anon_sym___global] = ACTIONS(2855), + [anon_sym_type] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2855), + [anon_sym_fn] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(2855), + [anon_sym_SLASH] = ACTIONS(2855), + [anon_sym_PERCENT] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_GT] = ACTIONS(2855), + [anon_sym_EQ_EQ] = ACTIONS(2855), + [anon_sym_BANG_EQ] = ACTIONS(2855), + [anon_sym_LT_EQ] = ACTIONS(2855), + [anon_sym_GT_EQ] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_union] = ACTIONS(2855), + [anon_sym_pub] = ACTIONS(2855), + [anon_sym_mut] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), + [anon_sym_interface] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2855), + [anon_sym_QMARK] = ACTIONS(2855), + [anon_sym_BANG] = ACTIONS(2855), + [anon_sym_go] = ACTIONS(2855), + [anon_sym_spawn] = ACTIONS(2855), + [anon_sym_json_DOTdecode] = ACTIONS(2855), + [anon_sym_LBRACK2] = ACTIONS(2855), + [anon_sym_TILDE] = ACTIONS(2855), + [anon_sym_CARET] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_LT_DASH] = ACTIONS(2855), + [anon_sym_LT_LT] = ACTIONS(2855), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_GT_GT_GT] = ACTIONS(2855), + [anon_sym_AMP_CARET] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_or] = ACTIONS(2855), + [sym_none] = ACTIONS(2855), + [sym_true] = ACTIONS(2855), + [sym_false] = ACTIONS(2855), + [sym_nil] = ACTIONS(2855), + [anon_sym_QMARK_DOT] = ACTIONS(2855), + [anon_sym_POUND_LBRACK] = ACTIONS(2855), + [anon_sym_if] = ACTIONS(2855), + [anon_sym_DOLLARif] = ACTIONS(2855), + [anon_sym_is] = ACTIONS(2855), + [anon_sym_BANGis] = ACTIONS(2855), + [anon_sym_in] = ACTIONS(2855), + [anon_sym_BANGin] = ACTIONS(2855), + [anon_sym_match] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2855), + [anon_sym_lock] = ACTIONS(2855), + [anon_sym_rlock] = ACTIONS(2855), + [anon_sym_unsafe] = ACTIONS(2855), + [anon_sym_sql] = ACTIONS(2855), + [sym_int_literal] = ACTIONS(2855), + [sym_float_literal] = ACTIONS(2855), + [sym_rune_literal] = ACTIONS(2855), + [anon_sym_SQUOTE] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_c_SQUOTE] = ACTIONS(2855), + [anon_sym_c_DQUOTE] = ACTIONS(2855), + [anon_sym_r_SQUOTE] = ACTIONS(2855), + [anon_sym_r_DQUOTE] = ACTIONS(2855), + [sym_pseudo_compile_time_identifier] = ACTIONS(2855), + [anon_sym_shared] = ACTIONS(2855), + [anon_sym_map_LBRACK] = ACTIONS(2855), + [anon_sym_chan] = ACTIONS(2855), + [anon_sym_thread] = ACTIONS(2855), + [anon_sym_atomic] = ACTIONS(2855), + [anon_sym_assert] = ACTIONS(2855), + [anon_sym_defer] = ACTIONS(2855), + [anon_sym_goto] = ACTIONS(2855), + [anon_sym_break] = ACTIONS(2855), + [anon_sym_continue] = ACTIONS(2855), + [anon_sym_return] = ACTIONS(2855), + [anon_sym_DOLLARfor] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2855), + [anon_sym_POUND] = ACTIONS(2855), + [anon_sym_asm] = ACTIONS(2855), + [anon_sym_AT_LBRACK] = ACTIONS(2855), }, [1028] = { [sym_line_comment] = STATE(1028), [sym_block_comment] = STATE(1028), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LF] = ACTIONS(2475), - [anon_sym_CR] = ACTIONS(2475), - [anon_sym_CR_LF] = ACTIONS(2475), + [ts_builtin_sym_end] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1809), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_CR] = ACTIONS(1809), + [anon_sym_CR_LF] = ACTIONS(1809), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2475), - [anon_sym_as] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym___global] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2475), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_SLASH] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_EQ_EQ] = ACTIONS(2475), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_LT_EQ] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2475), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_pub] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_interface] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2475), - [anon_sym_QMARK] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_go] = ACTIONS(2475), - [anon_sym_spawn] = ACTIONS(2475), - [anon_sym_json_DOTdecode] = ACTIONS(2475), - [anon_sym_LBRACK2] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_LT_DASH] = ACTIONS(2475), - [anon_sym_LT_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2475), - [anon_sym_GT_GT_GT] = ACTIONS(2475), - [anon_sym_AMP_CARET] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_PIPE_PIPE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2475), - [sym_none] = ACTIONS(2475), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_nil] = ACTIONS(2475), - [anon_sym_QMARK_DOT] = ACTIONS(2475), - [anon_sym_POUND_LBRACK] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_DOLLARif] = ACTIONS(2475), - [anon_sym_is] = ACTIONS(2475), - [anon_sym_BANGis] = ACTIONS(2475), - [anon_sym_in] = ACTIONS(2475), - [anon_sym_BANGin] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_lock] = ACTIONS(2475), - [anon_sym_rlock] = ACTIONS(2475), - [anon_sym_unsafe] = ACTIONS(2475), - [anon_sym_sql] = ACTIONS(2475), - [sym_int_literal] = ACTIONS(2475), - [sym_float_literal] = ACTIONS(2475), - [sym_rune_literal] = ACTIONS(2475), - [sym_pseudo_compile_time_identifier] = ACTIONS(2475), - [anon_sym_shared] = ACTIONS(2475), - [anon_sym_map_LBRACK] = ACTIONS(2475), - [anon_sym_chan] = ACTIONS(2475), - [anon_sym_thread] = ACTIONS(2475), - [anon_sym_atomic] = ACTIONS(2475), - [anon_sym_assert] = ACTIONS(2475), - [anon_sym_defer] = ACTIONS(2475), - [anon_sym_goto] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_DOLLARfor] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_POUND] = ACTIONS(2475), - [anon_sym_asm] = ACTIONS(2475), - [anon_sym_AT_LBRACK] = ACTIONS(2475), - [sym___double_quote] = ACTIONS(2475), - [sym___single_quote] = ACTIONS(2475), - [sym___c_double_quote] = ACTIONS(2475), - [sym___c_single_quote] = ACTIONS(2475), - [sym___r_double_quote] = ACTIONS(2475), - [sym___r_single_quote] = ACTIONS(2475), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym___global] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_pub] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_interface] = ACTIONS(1809), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1809), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_AMP_CARET] = ACTIONS(1809), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_or] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1809), + [anon_sym_POUND_LBRACK] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1809), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_rune_literal] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_c_SQUOTE] = ACTIONS(1809), + [anon_sym_c_DQUOTE] = ACTIONS(1809), + [anon_sym_r_SQUOTE] = ACTIONS(1809), + [anon_sym_r_DQUOTE] = ACTIONS(1809), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1809), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [anon_sym_assert] = ACTIONS(1809), + [anon_sym_defer] = ACTIONS(1809), + [anon_sym_goto] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_DOLLARfor] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_asm] = ACTIONS(1809), + [anon_sym_AT_LBRACK] = ACTIONS(1809), }, [1029] = { [sym_line_comment] = STATE(1029), [sym_block_comment] = STATE(1029), - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), + [ts_builtin_sym_end] = ACTIONS(2799), + [sym_identifier] = ACTIONS(2801), + [anon_sym_LF] = ACTIONS(2801), + [anon_sym_CR] = ACTIONS(2801), + [anon_sym_CR_LF] = ACTIONS(2801), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [sym_pseudo_compile_time_identifier] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), + [anon_sym_DOT] = ACTIONS(2801), + [anon_sym_as] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2801), + [anon_sym_const] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym___global] = ACTIONS(2801), + [anon_sym_type] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2801), + [anon_sym_fn] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_PERCENT] = ACTIONS(2801), + [anon_sym_LT] = ACTIONS(2801), + [anon_sym_GT] = ACTIONS(2801), + [anon_sym_EQ_EQ] = ACTIONS(2801), + [anon_sym_BANG_EQ] = ACTIONS(2801), + [anon_sym_LT_EQ] = ACTIONS(2801), + [anon_sym_GT_EQ] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_struct] = ACTIONS(2801), + [anon_sym_union] = ACTIONS(2801), + [anon_sym_pub] = ACTIONS(2801), + [anon_sym_mut] = ACTIONS(2801), + [anon_sym_enum] = ACTIONS(2801), + [anon_sym_interface] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_QMARK] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2801), + [anon_sym_json_DOTdecode] = ACTIONS(2801), + [anon_sym_LBRACK2] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_CARET] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_LT_DASH] = ACTIONS(2801), + [anon_sym_LT_LT] = ACTIONS(2801), + [anon_sym_GT_GT] = ACTIONS(2801), + [anon_sym_GT_GT_GT] = ACTIONS(2801), + [anon_sym_AMP_CARET] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_or] = ACTIONS(2801), + [sym_none] = ACTIONS(2801), + [sym_true] = ACTIONS(2801), + [sym_false] = ACTIONS(2801), + [sym_nil] = ACTIONS(2801), + [anon_sym_QMARK_DOT] = ACTIONS(2801), + [anon_sym_POUND_LBRACK] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_DOLLARif] = ACTIONS(2801), + [anon_sym_is] = ACTIONS(2801), + [anon_sym_BANGis] = ACTIONS(2801), + [anon_sym_in] = ACTIONS(2801), + [anon_sym_BANGin] = ACTIONS(2801), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_select] = ACTIONS(2801), + [anon_sym_lock] = ACTIONS(2801), + [anon_sym_rlock] = ACTIONS(2801), + [anon_sym_unsafe] = ACTIONS(2801), + [anon_sym_sql] = ACTIONS(2801), + [sym_int_literal] = ACTIONS(2801), + [sym_float_literal] = ACTIONS(2801), + [sym_rune_literal] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_c_SQUOTE] = ACTIONS(2801), + [anon_sym_c_DQUOTE] = ACTIONS(2801), + [anon_sym_r_SQUOTE] = ACTIONS(2801), + [anon_sym_r_DQUOTE] = ACTIONS(2801), + [sym_pseudo_compile_time_identifier] = ACTIONS(2801), + [anon_sym_shared] = ACTIONS(2801), + [anon_sym_map_LBRACK] = ACTIONS(2801), + [anon_sym_chan] = ACTIONS(2801), + [anon_sym_thread] = ACTIONS(2801), + [anon_sym_atomic] = ACTIONS(2801), + [anon_sym_assert] = ACTIONS(2801), + [anon_sym_defer] = ACTIONS(2801), + [anon_sym_goto] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_DOLLARfor] = ACTIONS(2801), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_POUND] = ACTIONS(2801), + [anon_sym_asm] = ACTIONS(2801), + [anon_sym_AT_LBRACK] = ACTIONS(2801), }, [1030] = { [sym_line_comment] = STATE(1030), [sym_block_comment] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(1879), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), + [ts_builtin_sym_end] = ACTIONS(3023), + [sym_identifier] = ACTIONS(3025), + [anon_sym_LF] = ACTIONS(3025), + [anon_sym_CR] = ACTIONS(3025), + [anon_sym_CR_LF] = ACTIONS(3025), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1881), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_union] = ACTIONS(1881), - [anon_sym_pub] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_enum] = ACTIONS(1881), - [anon_sym_interface] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_QMARK] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_GT_GT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_AMP_CARET] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_or] = ACTIONS(1881), - [sym_none] = ACTIONS(1881), - [sym_true] = ACTIONS(1881), - [sym_false] = ACTIONS(1881), - [sym_nil] = ACTIONS(1881), - [anon_sym_QMARK_DOT] = ACTIONS(1881), - [anon_sym_POUND_LBRACK] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_BANGin] = ACTIONS(1881), - [anon_sym_match] = ACTIONS(1881), - [anon_sym_select] = ACTIONS(1881), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1881), - [anon_sym_sql] = ACTIONS(1881), - [sym_int_literal] = ACTIONS(1881), - [sym_float_literal] = ACTIONS(1881), - [sym_rune_literal] = ACTIONS(1881), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1881), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [anon_sym_assert] = ACTIONS(1881), - [anon_sym_defer] = ACTIONS(1881), - [anon_sym_goto] = ACTIONS(1881), - [anon_sym_break] = ACTIONS(1881), - [anon_sym_continue] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1881), - [anon_sym_DOLLARfor] = ACTIONS(1881), - [anon_sym_for] = ACTIONS(1881), - [anon_sym_POUND] = ACTIONS(1881), - [anon_sym_asm] = ACTIONS(1881), - [anon_sym_AT_LBRACK] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1881), - [sym___single_quote] = ACTIONS(1881), - [sym___c_double_quote] = ACTIONS(1881), - [sym___c_single_quote] = ACTIONS(1881), - [sym___r_double_quote] = ACTIONS(1881), - [sym___r_single_quote] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(3025), + [anon_sym_as] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3025), + [anon_sym_COMMA] = ACTIONS(3025), + [anon_sym_const] = ACTIONS(3025), + [anon_sym_LPAREN] = ACTIONS(3025), + [anon_sym___global] = ACTIONS(3025), + [anon_sym_type] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3025), + [anon_sym_fn] = ACTIONS(3025), + [anon_sym_PLUS] = ACTIONS(3025), + [anon_sym_DASH] = ACTIONS(3025), + [anon_sym_STAR] = ACTIONS(3025), + [anon_sym_SLASH] = ACTIONS(3025), + [anon_sym_PERCENT] = ACTIONS(3025), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_EQ_EQ] = ACTIONS(3025), + [anon_sym_BANG_EQ] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3025), + [anon_sym_GT_EQ] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_union] = ACTIONS(3025), + [anon_sym_pub] = ACTIONS(3025), + [anon_sym_mut] = ACTIONS(3025), + [anon_sym_enum] = ACTIONS(3025), + [anon_sym_interface] = ACTIONS(3025), + [anon_sym_PLUS_PLUS] = ACTIONS(3025), + [anon_sym_DASH_DASH] = ACTIONS(3025), + [anon_sym_QMARK] = ACTIONS(3025), + [anon_sym_BANG] = ACTIONS(3025), + [anon_sym_go] = ACTIONS(3025), + [anon_sym_spawn] = ACTIONS(3025), + [anon_sym_json_DOTdecode] = ACTIONS(3025), + [anon_sym_LBRACK2] = ACTIONS(3025), + [anon_sym_TILDE] = ACTIONS(3025), + [anon_sym_CARET] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_LT_DASH] = ACTIONS(3025), + [anon_sym_LT_LT] = ACTIONS(3025), + [anon_sym_GT_GT] = ACTIONS(3025), + [anon_sym_GT_GT_GT] = ACTIONS(3025), + [anon_sym_AMP_CARET] = ACTIONS(3025), + [anon_sym_AMP_AMP] = ACTIONS(3025), + [anon_sym_PIPE_PIPE] = ACTIONS(3025), + [anon_sym_or] = ACTIONS(3025), + [sym_none] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [sym_nil] = ACTIONS(3025), + [anon_sym_QMARK_DOT] = ACTIONS(3025), + [anon_sym_POUND_LBRACK] = ACTIONS(3025), + [anon_sym_if] = ACTIONS(3025), + [anon_sym_DOLLARif] = ACTIONS(3025), + [anon_sym_is] = ACTIONS(3025), + [anon_sym_BANGis] = ACTIONS(3025), + [anon_sym_in] = ACTIONS(3025), + [anon_sym_BANGin] = ACTIONS(3025), + [anon_sym_match] = ACTIONS(3025), + [anon_sym_select] = ACTIONS(3025), + [anon_sym_lock] = ACTIONS(3025), + [anon_sym_rlock] = ACTIONS(3025), + [anon_sym_unsafe] = ACTIONS(3025), + [anon_sym_sql] = ACTIONS(3025), + [sym_int_literal] = ACTIONS(3025), + [sym_float_literal] = ACTIONS(3025), + [sym_rune_literal] = ACTIONS(3025), + [anon_sym_SQUOTE] = ACTIONS(3025), + [anon_sym_DQUOTE] = ACTIONS(3025), + [anon_sym_c_SQUOTE] = ACTIONS(3025), + [anon_sym_c_DQUOTE] = ACTIONS(3025), + [anon_sym_r_SQUOTE] = ACTIONS(3025), + [anon_sym_r_DQUOTE] = ACTIONS(3025), + [sym_pseudo_compile_time_identifier] = ACTIONS(3025), + [anon_sym_shared] = ACTIONS(3025), + [anon_sym_map_LBRACK] = ACTIONS(3025), + [anon_sym_chan] = ACTIONS(3025), + [anon_sym_thread] = ACTIONS(3025), + [anon_sym_atomic] = ACTIONS(3025), + [anon_sym_assert] = ACTIONS(3025), + [anon_sym_defer] = ACTIONS(3025), + [anon_sym_goto] = ACTIONS(3025), + [anon_sym_break] = ACTIONS(3025), + [anon_sym_continue] = ACTIONS(3025), + [anon_sym_return] = ACTIONS(3025), + [anon_sym_DOLLARfor] = ACTIONS(3025), + [anon_sym_for] = ACTIONS(3025), + [anon_sym_POUND] = ACTIONS(3025), + [anon_sym_asm] = ACTIONS(3025), + [anon_sym_AT_LBRACK] = ACTIONS(3025), }, [1031] = { [sym_line_comment] = STATE(1031), [sym_block_comment] = STATE(1031), - [ts_builtin_sym_end] = ACTIONS(2313), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LF] = ACTIONS(2315), - [anon_sym_CR] = ACTIONS(2315), - [anon_sym_CR_LF] = ACTIONS(2315), + [ts_builtin_sym_end] = ACTIONS(2717), + [sym_identifier] = ACTIONS(2719), + [anon_sym_LF] = ACTIONS(2719), + [anon_sym_CR] = ACTIONS(2719), + [anon_sym_CR_LF] = ACTIONS(2719), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2315), - [anon_sym_as] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2315), - [anon_sym_COMMA] = ACTIONS(2315), - [anon_sym_const] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym___global] = ACTIONS(2315), - [anon_sym_type] = ACTIONS(2315), - [anon_sym_PIPE] = ACTIONS(2315), - [anon_sym_fn] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2315), - [anon_sym_STAR] = ACTIONS(2315), - [anon_sym_SLASH] = ACTIONS(2315), - [anon_sym_PERCENT] = ACTIONS(2315), - [anon_sym_LT] = ACTIONS(2315), - [anon_sym_GT] = ACTIONS(2315), - [anon_sym_EQ_EQ] = ACTIONS(2315), - [anon_sym_BANG_EQ] = ACTIONS(2315), - [anon_sym_LT_EQ] = ACTIONS(2315), - [anon_sym_GT_EQ] = ACTIONS(2315), - [anon_sym_LBRACK] = ACTIONS(2313), - [anon_sym_struct] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(2315), - [anon_sym_pub] = ACTIONS(2315), - [anon_sym_mut] = ACTIONS(2315), - [anon_sym_enum] = ACTIONS(2315), - [anon_sym_interface] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_QMARK] = ACTIONS(2315), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_go] = ACTIONS(2315), - [anon_sym_spawn] = ACTIONS(2315), - [anon_sym_json_DOTdecode] = ACTIONS(2315), - [anon_sym_LBRACK2] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_LT_DASH] = ACTIONS(2315), - [anon_sym_LT_LT] = ACTIONS(2315), - [anon_sym_GT_GT] = ACTIONS(2315), - [anon_sym_GT_GT_GT] = ACTIONS(2315), - [anon_sym_AMP_CARET] = ACTIONS(2315), - [anon_sym_AMP_AMP] = ACTIONS(2315), - [anon_sym_PIPE_PIPE] = ACTIONS(2315), - [anon_sym_or] = ACTIONS(2315), - [sym_none] = ACTIONS(2315), - [sym_true] = ACTIONS(2315), - [sym_false] = ACTIONS(2315), - [sym_nil] = ACTIONS(2315), - [anon_sym_QMARK_DOT] = ACTIONS(2315), - [anon_sym_POUND_LBRACK] = ACTIONS(2315), - [anon_sym_if] = ACTIONS(2315), - [anon_sym_DOLLARif] = ACTIONS(2315), - [anon_sym_is] = ACTIONS(2315), - [anon_sym_BANGis] = ACTIONS(2315), - [anon_sym_in] = ACTIONS(2315), - [anon_sym_BANGin] = ACTIONS(2315), - [anon_sym_match] = ACTIONS(2315), - [anon_sym_select] = ACTIONS(2315), - [anon_sym_lock] = ACTIONS(2315), - [anon_sym_rlock] = ACTIONS(2315), - [anon_sym_unsafe] = ACTIONS(2315), - [anon_sym_sql] = ACTIONS(2315), - [sym_int_literal] = ACTIONS(2315), - [sym_float_literal] = ACTIONS(2315), - [sym_rune_literal] = ACTIONS(2315), - [sym_pseudo_compile_time_identifier] = ACTIONS(2315), - [anon_sym_shared] = ACTIONS(2315), - [anon_sym_map_LBRACK] = ACTIONS(2315), - [anon_sym_chan] = ACTIONS(2315), - [anon_sym_thread] = ACTIONS(2315), - [anon_sym_atomic] = ACTIONS(2315), - [anon_sym_assert] = ACTIONS(2315), - [anon_sym_defer] = ACTIONS(2315), - [anon_sym_goto] = ACTIONS(2315), - [anon_sym_break] = ACTIONS(2315), - [anon_sym_continue] = ACTIONS(2315), - [anon_sym_return] = ACTIONS(2315), - [anon_sym_DOLLARfor] = ACTIONS(2315), - [anon_sym_for] = ACTIONS(2315), - [anon_sym_POUND] = ACTIONS(2315), - [anon_sym_asm] = ACTIONS(2315), - [anon_sym_AT_LBRACK] = ACTIONS(2315), - [sym___double_quote] = ACTIONS(2315), - [sym___single_quote] = ACTIONS(2315), - [sym___c_double_quote] = ACTIONS(2315), - [sym___c_single_quote] = ACTIONS(2315), - [sym___r_double_quote] = ACTIONS(2315), - [sym___r_single_quote] = ACTIONS(2315), + [anon_sym_DOT] = ACTIONS(2719), + [anon_sym_as] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_COMMA] = ACTIONS(2719), + [anon_sym_const] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym___global] = ACTIONS(2719), + [anon_sym_type] = ACTIONS(2719), + [anon_sym_PIPE] = ACTIONS(2719), + [anon_sym_fn] = ACTIONS(2719), + [anon_sym_PLUS] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2719), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_SLASH] = ACTIONS(2719), + [anon_sym_PERCENT] = ACTIONS(2719), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_GT] = ACTIONS(2719), + [anon_sym_EQ_EQ] = ACTIONS(2719), + [anon_sym_BANG_EQ] = ACTIONS(2719), + [anon_sym_LT_EQ] = ACTIONS(2719), + [anon_sym_GT_EQ] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2719), + [anon_sym_union] = ACTIONS(2719), + [anon_sym_pub] = ACTIONS(2719), + [anon_sym_mut] = ACTIONS(2719), + [anon_sym_enum] = ACTIONS(2719), + [anon_sym_interface] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_QMARK] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_go] = ACTIONS(2719), + [anon_sym_spawn] = ACTIONS(2719), + [anon_sym_json_DOTdecode] = ACTIONS(2719), + [anon_sym_LBRACK2] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_CARET] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2719), + [anon_sym_LT_DASH] = ACTIONS(2719), + [anon_sym_LT_LT] = ACTIONS(2719), + [anon_sym_GT_GT] = ACTIONS(2719), + [anon_sym_GT_GT_GT] = ACTIONS(2719), + [anon_sym_AMP_CARET] = ACTIONS(2719), + [anon_sym_AMP_AMP] = ACTIONS(2719), + [anon_sym_PIPE_PIPE] = ACTIONS(2719), + [anon_sym_or] = ACTIONS(2719), + [sym_none] = ACTIONS(2719), + [sym_true] = ACTIONS(2719), + [sym_false] = ACTIONS(2719), + [sym_nil] = ACTIONS(2719), + [anon_sym_QMARK_DOT] = ACTIONS(2719), + [anon_sym_POUND_LBRACK] = ACTIONS(2719), + [anon_sym_if] = ACTIONS(2719), + [anon_sym_DOLLARif] = ACTIONS(2719), + [anon_sym_is] = ACTIONS(2719), + [anon_sym_BANGis] = ACTIONS(2719), + [anon_sym_in] = ACTIONS(2719), + [anon_sym_BANGin] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_select] = ACTIONS(2719), + [anon_sym_lock] = ACTIONS(2719), + [anon_sym_rlock] = ACTIONS(2719), + [anon_sym_unsafe] = ACTIONS(2719), + [anon_sym_sql] = ACTIONS(2719), + [sym_int_literal] = ACTIONS(2719), + [sym_float_literal] = ACTIONS(2719), + [sym_rune_literal] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [anon_sym_c_SQUOTE] = ACTIONS(2719), + [anon_sym_c_DQUOTE] = ACTIONS(2719), + [anon_sym_r_SQUOTE] = ACTIONS(2719), + [anon_sym_r_DQUOTE] = ACTIONS(2719), + [sym_pseudo_compile_time_identifier] = ACTIONS(2719), + [anon_sym_shared] = ACTIONS(2719), + [anon_sym_map_LBRACK] = ACTIONS(2719), + [anon_sym_chan] = ACTIONS(2719), + [anon_sym_thread] = ACTIONS(2719), + [anon_sym_atomic] = ACTIONS(2719), + [anon_sym_assert] = ACTIONS(2719), + [anon_sym_defer] = ACTIONS(2719), + [anon_sym_goto] = ACTIONS(2719), + [anon_sym_break] = ACTIONS(2719), + [anon_sym_continue] = ACTIONS(2719), + [anon_sym_return] = ACTIONS(2719), + [anon_sym_DOLLARfor] = ACTIONS(2719), + [anon_sym_for] = ACTIONS(2719), + [anon_sym_POUND] = ACTIONS(2719), + [anon_sym_asm] = ACTIONS(2719), + [anon_sym_AT_LBRACK] = ACTIONS(2719), }, [1032] = { [sym_line_comment] = STATE(1032), [sym_block_comment] = STATE(1032), - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2463), - [anon_sym_LF] = ACTIONS(2463), - [anon_sym_CR] = ACTIONS(2463), - [anon_sym_CR_LF] = ACTIONS(2463), + [ts_builtin_sym_end] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1809), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_CR] = ACTIONS(1809), + [anon_sym_CR_LF] = ACTIONS(1809), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2463), - [anon_sym_as] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_COMMA] = ACTIONS(2463), - [anon_sym_const] = ACTIONS(2463), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym___global] = ACTIONS(2463), - [anon_sym_type] = ACTIONS(2463), - [anon_sym_PIPE] = ACTIONS(2463), - [anon_sym_fn] = ACTIONS(2463), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(2463), - [anon_sym_STAR] = ACTIONS(2463), - [anon_sym_SLASH] = ACTIONS(2463), - [anon_sym_PERCENT] = ACTIONS(2463), - [anon_sym_LT] = ACTIONS(2463), - [anon_sym_GT] = ACTIONS(2463), - [anon_sym_EQ_EQ] = ACTIONS(2463), - [anon_sym_BANG_EQ] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2463), - [anon_sym_GT_EQ] = ACTIONS(2463), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_struct] = ACTIONS(2463), - [anon_sym_union] = ACTIONS(2463), - [anon_sym_pub] = ACTIONS(2463), - [anon_sym_mut] = ACTIONS(2463), - [anon_sym_enum] = ACTIONS(2463), - [anon_sym_interface] = ACTIONS(2463), - [anon_sym_PLUS_PLUS] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2463), - [anon_sym_QMARK] = ACTIONS(2463), - [anon_sym_BANG] = ACTIONS(2463), - [anon_sym_go] = ACTIONS(2463), - [anon_sym_spawn] = ACTIONS(2463), - [anon_sym_json_DOTdecode] = ACTIONS(2463), - [anon_sym_LBRACK2] = ACTIONS(2463), - [anon_sym_TILDE] = ACTIONS(2463), - [anon_sym_CARET] = ACTIONS(2463), - [anon_sym_AMP] = ACTIONS(2463), - [anon_sym_LT_DASH] = ACTIONS(2463), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_GT_GT_GT] = ACTIONS(2463), - [anon_sym_AMP_CARET] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(2463), - [anon_sym_PIPE_PIPE] = ACTIONS(2463), - [anon_sym_or] = ACTIONS(2463), - [sym_none] = ACTIONS(2463), - [sym_true] = ACTIONS(2463), - [sym_false] = ACTIONS(2463), - [sym_nil] = ACTIONS(2463), - [anon_sym_QMARK_DOT] = ACTIONS(2463), - [anon_sym_POUND_LBRACK] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_DOLLARif] = ACTIONS(2463), - [anon_sym_is] = ACTIONS(2463), - [anon_sym_BANGis] = ACTIONS(2463), - [anon_sym_in] = ACTIONS(2463), - [anon_sym_BANGin] = ACTIONS(2463), - [anon_sym_match] = ACTIONS(2463), - [anon_sym_select] = ACTIONS(2463), - [anon_sym_lock] = ACTIONS(2463), - [anon_sym_rlock] = ACTIONS(2463), - [anon_sym_unsafe] = ACTIONS(2463), - [anon_sym_sql] = ACTIONS(2463), - [sym_int_literal] = ACTIONS(2463), - [sym_float_literal] = ACTIONS(2463), - [sym_rune_literal] = ACTIONS(2463), - [sym_pseudo_compile_time_identifier] = ACTIONS(2463), - [anon_sym_shared] = ACTIONS(2463), - [anon_sym_map_LBRACK] = ACTIONS(2463), - [anon_sym_chan] = ACTIONS(2463), - [anon_sym_thread] = ACTIONS(2463), - [anon_sym_atomic] = ACTIONS(2463), - [anon_sym_assert] = ACTIONS(2463), - [anon_sym_defer] = ACTIONS(2463), - [anon_sym_goto] = ACTIONS(2463), - [anon_sym_break] = ACTIONS(2463), - [anon_sym_continue] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_DOLLARfor] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_POUND] = ACTIONS(2463), - [anon_sym_asm] = ACTIONS(2463), - [anon_sym_AT_LBRACK] = ACTIONS(2463), - [sym___double_quote] = ACTIONS(2463), - [sym___single_quote] = ACTIONS(2463), - [sym___c_double_quote] = ACTIONS(2463), - [sym___c_single_quote] = ACTIONS(2463), - [sym___r_double_quote] = ACTIONS(2463), - [sym___r_single_quote] = ACTIONS(2463), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym___global] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_pub] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_interface] = ACTIONS(1809), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1809), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_AMP_CARET] = ACTIONS(1809), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_or] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1809), + [anon_sym_POUND_LBRACK] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1809), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_rune_literal] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_c_SQUOTE] = ACTIONS(1809), + [anon_sym_c_DQUOTE] = ACTIONS(1809), + [anon_sym_r_SQUOTE] = ACTIONS(1809), + [anon_sym_r_DQUOTE] = ACTIONS(1809), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1809), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [anon_sym_assert] = ACTIONS(1809), + [anon_sym_defer] = ACTIONS(1809), + [anon_sym_goto] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_DOLLARfor] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_asm] = ACTIONS(1809), + [anon_sym_AT_LBRACK] = ACTIONS(1809), }, [1033] = { [sym_line_comment] = STATE(1033), [sym_block_comment] = STATE(1033), - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2171), + [anon_sym_LF] = ACTIONS(2171), + [anon_sym_CR] = ACTIONS(2171), + [anon_sym_CR_LF] = ACTIONS(2171), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_const] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym___global] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_union] = ACTIONS(2772), - [anon_sym_pub] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_interface] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [sym_pseudo_compile_time_identifier] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [anon_sym_assert] = ACTIONS(2772), - [anon_sym_defer] = ACTIONS(2772), - [anon_sym_goto] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_DOLLARfor] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2772), - [anon_sym_asm] = ACTIONS(2772), - [anon_sym_AT_LBRACK] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), + [anon_sym_DOT] = ACTIONS(2171), + [anon_sym_as] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_COMMA] = ACTIONS(2171), + [anon_sym_const] = ACTIONS(2171), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym___global] = ACTIONS(2171), + [anon_sym_type] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2171), + [anon_sym_fn] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_GT] = ACTIONS(2171), + [anon_sym_EQ_EQ] = ACTIONS(2171), + [anon_sym_BANG_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_struct] = ACTIONS(2171), + [anon_sym_union] = ACTIONS(2171), + [anon_sym_pub] = ACTIONS(2171), + [anon_sym_mut] = ACTIONS(2171), + [anon_sym_enum] = ACTIONS(2171), + [anon_sym_interface] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_go] = ACTIONS(2171), + [anon_sym_spawn] = ACTIONS(2171), + [anon_sym_json_DOTdecode] = ACTIONS(2171), + [anon_sym_LBRACK2] = ACTIONS(2171), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2171), + [anon_sym_LT_LT] = ACTIONS(2171), + [anon_sym_GT_GT] = ACTIONS(2171), + [anon_sym_GT_GT_GT] = ACTIONS(2171), + [anon_sym_AMP_CARET] = ACTIONS(2171), + [anon_sym_AMP_AMP] = ACTIONS(2171), + [anon_sym_PIPE_PIPE] = ACTIONS(2171), + [anon_sym_or] = ACTIONS(2171), + [sym_none] = ACTIONS(2171), + [sym_true] = ACTIONS(2171), + [sym_false] = ACTIONS(2171), + [sym_nil] = ACTIONS(2171), + [anon_sym_QMARK_DOT] = ACTIONS(2171), + [anon_sym_POUND_LBRACK] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(2171), + [anon_sym_DOLLARif] = ACTIONS(2171), + [anon_sym_is] = ACTIONS(2171), + [anon_sym_BANGis] = ACTIONS(2171), + [anon_sym_in] = ACTIONS(2171), + [anon_sym_BANGin] = ACTIONS(2171), + [anon_sym_match] = ACTIONS(2171), + [anon_sym_select] = ACTIONS(2171), + [anon_sym_lock] = ACTIONS(2171), + [anon_sym_rlock] = ACTIONS(2171), + [anon_sym_unsafe] = ACTIONS(2171), + [anon_sym_sql] = ACTIONS(2171), + [sym_int_literal] = ACTIONS(2171), + [sym_float_literal] = ACTIONS(2171), + [sym_rune_literal] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_c_SQUOTE] = ACTIONS(2171), + [anon_sym_c_DQUOTE] = ACTIONS(2171), + [anon_sym_r_SQUOTE] = ACTIONS(2171), + [anon_sym_r_DQUOTE] = ACTIONS(2171), + [sym_pseudo_compile_time_identifier] = ACTIONS(2171), + [anon_sym_shared] = ACTIONS(2171), + [anon_sym_map_LBRACK] = ACTIONS(2171), + [anon_sym_chan] = ACTIONS(2171), + [anon_sym_thread] = ACTIONS(2171), + [anon_sym_atomic] = ACTIONS(2171), + [anon_sym_assert] = ACTIONS(2171), + [anon_sym_defer] = ACTIONS(2171), + [anon_sym_goto] = ACTIONS(2171), + [anon_sym_break] = ACTIONS(2171), + [anon_sym_continue] = ACTIONS(2171), + [anon_sym_return] = ACTIONS(2171), + [anon_sym_DOLLARfor] = ACTIONS(2171), + [anon_sym_for] = ACTIONS(2171), + [anon_sym_POUND] = ACTIONS(2171), + [anon_sym_asm] = ACTIONS(2171), + [anon_sym_AT_LBRACK] = ACTIONS(2171), }, [1034] = { [sym_line_comment] = STATE(1034), [sym_block_comment] = STATE(1034), - [ts_builtin_sym_end] = ACTIONS(2916), - [sym_identifier] = ACTIONS(2918), - [anon_sym_LF] = ACTIONS(2918), - [anon_sym_CR] = ACTIONS(2918), - [anon_sym_CR_LF] = ACTIONS(2918), + [ts_builtin_sym_end] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2167), + [anon_sym_LF] = ACTIONS(2167), + [anon_sym_CR] = ACTIONS(2167), + [anon_sym_CR_LF] = ACTIONS(2167), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_as] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2918), - [anon_sym_const] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym___global] = ACTIONS(2918), - [anon_sym_type] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_fn] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_GT] = ACTIONS(2918), - [anon_sym_EQ_EQ] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2918), - [anon_sym_LT_EQ] = ACTIONS(2918), - [anon_sym_GT_EQ] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_union] = ACTIONS(2918), - [anon_sym_pub] = ACTIONS(2918), - [anon_sym_mut] = ACTIONS(2918), - [anon_sym_enum] = ACTIONS(2918), - [anon_sym_interface] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2918), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_go] = ACTIONS(2918), - [anon_sym_spawn] = ACTIONS(2918), - [anon_sym_json_DOTdecode] = ACTIONS(2918), - [anon_sym_LBRACK2] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2918), - [anon_sym_CARET] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2918), - [anon_sym_LT_LT] = ACTIONS(2918), - [anon_sym_GT_GT] = ACTIONS(2918), - [anon_sym_GT_GT_GT] = ACTIONS(2918), - [anon_sym_AMP_CARET] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_or] = ACTIONS(2918), - [sym_none] = ACTIONS(2918), - [sym_true] = ACTIONS(2918), - [sym_false] = ACTIONS(2918), - [sym_nil] = ACTIONS(2918), - [anon_sym_QMARK_DOT] = ACTIONS(2918), - [anon_sym_POUND_LBRACK] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_DOLLARif] = ACTIONS(2918), - [anon_sym_is] = ACTIONS(2918), - [anon_sym_BANGis] = ACTIONS(2918), - [anon_sym_in] = ACTIONS(2918), - [anon_sym_BANGin] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_select] = ACTIONS(2918), - [anon_sym_lock] = ACTIONS(2918), - [anon_sym_rlock] = ACTIONS(2918), - [anon_sym_unsafe] = ACTIONS(2918), - [anon_sym_sql] = ACTIONS(2918), - [sym_int_literal] = ACTIONS(2918), - [sym_float_literal] = ACTIONS(2918), - [sym_rune_literal] = ACTIONS(2918), - [sym_pseudo_compile_time_identifier] = ACTIONS(2918), - [anon_sym_shared] = ACTIONS(2918), - [anon_sym_map_LBRACK] = ACTIONS(2918), - [anon_sym_chan] = ACTIONS(2918), - [anon_sym_thread] = ACTIONS(2918), - [anon_sym_atomic] = ACTIONS(2918), - [anon_sym_assert] = ACTIONS(2918), - [anon_sym_defer] = ACTIONS(2918), - [anon_sym_goto] = ACTIONS(2918), - [anon_sym_break] = ACTIONS(2918), - [anon_sym_continue] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_DOLLARfor] = ACTIONS(2918), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_asm] = ACTIONS(2918), - [anon_sym_AT_LBRACK] = ACTIONS(2918), - [sym___double_quote] = ACTIONS(2918), - [sym___single_quote] = ACTIONS(2918), - [sym___c_double_quote] = ACTIONS(2918), - [sym___c_single_quote] = ACTIONS(2918), - [sym___r_double_quote] = ACTIONS(2918), - [sym___r_single_quote] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_COMMA] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym___global] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_PIPE] = ACTIONS(2167), + [anon_sym_fn] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_PERCENT] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2167), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_LT_EQ] = ACTIONS(2167), + [anon_sym_GT_EQ] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_union] = ACTIONS(2167), + [anon_sym_pub] = ACTIONS(2167), + [anon_sym_mut] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_QMARK] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_go] = ACTIONS(2167), + [anon_sym_spawn] = ACTIONS(2167), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_LT_DASH] = ACTIONS(2167), + [anon_sym_LT_LT] = ACTIONS(2167), + [anon_sym_GT_GT] = ACTIONS(2167), + [anon_sym_GT_GT_GT] = ACTIONS(2167), + [anon_sym_AMP_CARET] = ACTIONS(2167), + [anon_sym_AMP_AMP] = ACTIONS(2167), + [anon_sym_PIPE_PIPE] = ACTIONS(2167), + [anon_sym_or] = ACTIONS(2167), + [sym_none] = ACTIONS(2167), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_nil] = ACTIONS(2167), + [anon_sym_QMARK_DOT] = ACTIONS(2167), + [anon_sym_POUND_LBRACK] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_DOLLARif] = ACTIONS(2167), + [anon_sym_is] = ACTIONS(2167), + [anon_sym_BANGis] = ACTIONS(2167), + [anon_sym_in] = ACTIONS(2167), + [anon_sym_BANGin] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_select] = ACTIONS(2167), + [anon_sym_lock] = ACTIONS(2167), + [anon_sym_rlock] = ACTIONS(2167), + [anon_sym_unsafe] = ACTIONS(2167), + [anon_sym_sql] = ACTIONS(2167), + [sym_int_literal] = ACTIONS(2167), + [sym_float_literal] = ACTIONS(2167), + [sym_rune_literal] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_c_SQUOTE] = ACTIONS(2167), + [anon_sym_c_DQUOTE] = ACTIONS(2167), + [anon_sym_r_SQUOTE] = ACTIONS(2167), + [anon_sym_r_DQUOTE] = ACTIONS(2167), + [sym_pseudo_compile_time_identifier] = ACTIONS(2167), + [anon_sym_shared] = ACTIONS(2167), + [anon_sym_map_LBRACK] = ACTIONS(2167), + [anon_sym_chan] = ACTIONS(2167), + [anon_sym_thread] = ACTIONS(2167), + [anon_sym_atomic] = ACTIONS(2167), + [anon_sym_assert] = ACTIONS(2167), + [anon_sym_defer] = ACTIONS(2167), + [anon_sym_goto] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_DOLLARfor] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_POUND] = ACTIONS(2167), + [anon_sym_asm] = ACTIONS(2167), + [anon_sym_AT_LBRACK] = ACTIONS(2167), }, [1035] = { [sym_line_comment] = STATE(1035), [sym_block_comment] = STATE(1035), - [ts_builtin_sym_end] = ACTIONS(2912), - [sym_identifier] = ACTIONS(2914), - [anon_sym_LF] = ACTIONS(2914), - [anon_sym_CR] = ACTIONS(2914), - [anon_sym_CR_LF] = ACTIONS(2914), + [ts_builtin_sym_end] = ACTIONS(2803), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LF] = ACTIONS(2805), + [anon_sym_CR] = ACTIONS(2805), + [anon_sym_CR_LF] = ACTIONS(2805), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2914), - [anon_sym_as] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym___global] = ACTIONS(2914), - [anon_sym_type] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2914), - [anon_sym_fn] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_SLASH] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_GT] = ACTIONS(2914), - [anon_sym_EQ_EQ] = ACTIONS(2914), - [anon_sym_BANG_EQ] = ACTIONS(2914), - [anon_sym_LT_EQ] = ACTIONS(2914), - [anon_sym_GT_EQ] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_union] = ACTIONS(2914), - [anon_sym_pub] = ACTIONS(2914), - [anon_sym_mut] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_QMARK] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_go] = ACTIONS(2914), - [anon_sym_spawn] = ACTIONS(2914), - [anon_sym_json_DOTdecode] = ACTIONS(2914), - [anon_sym_LBRACK2] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [anon_sym_CARET] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_LT_DASH] = ACTIONS(2914), - [anon_sym_LT_LT] = ACTIONS(2914), - [anon_sym_GT_GT] = ACTIONS(2914), - [anon_sym_GT_GT_GT] = ACTIONS(2914), - [anon_sym_AMP_CARET] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_PIPE_PIPE] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2914), - [sym_none] = ACTIONS(2914), - [sym_true] = ACTIONS(2914), - [sym_false] = ACTIONS(2914), - [sym_nil] = ACTIONS(2914), - [anon_sym_QMARK_DOT] = ACTIONS(2914), - [anon_sym_POUND_LBRACK] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_DOLLARif] = ACTIONS(2914), - [anon_sym_is] = ACTIONS(2914), - [anon_sym_BANGis] = ACTIONS(2914), - [anon_sym_in] = ACTIONS(2914), - [anon_sym_BANGin] = ACTIONS(2914), - [anon_sym_match] = ACTIONS(2914), - [anon_sym_select] = ACTIONS(2914), - [anon_sym_lock] = ACTIONS(2914), - [anon_sym_rlock] = ACTIONS(2914), - [anon_sym_unsafe] = ACTIONS(2914), - [anon_sym_sql] = ACTIONS(2914), - [sym_int_literal] = ACTIONS(2914), - [sym_float_literal] = ACTIONS(2914), - [sym_rune_literal] = ACTIONS(2914), - [sym_pseudo_compile_time_identifier] = ACTIONS(2914), - [anon_sym_shared] = ACTIONS(2914), - [anon_sym_map_LBRACK] = ACTIONS(2914), - [anon_sym_chan] = ACTIONS(2914), - [anon_sym_thread] = ACTIONS(2914), - [anon_sym_atomic] = ACTIONS(2914), - [anon_sym_assert] = ACTIONS(2914), - [anon_sym_defer] = ACTIONS(2914), - [anon_sym_goto] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_DOLLARfor] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_POUND] = ACTIONS(2914), - [anon_sym_asm] = ACTIONS(2914), - [anon_sym_AT_LBRACK] = ACTIONS(2914), - [sym___double_quote] = ACTIONS(2914), - [sym___single_quote] = ACTIONS(2914), - [sym___c_double_quote] = ACTIONS(2914), - [sym___c_single_quote] = ACTIONS(2914), - [sym___r_double_quote] = ACTIONS(2914), - [sym___r_single_quote] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2805), + [anon_sym_as] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2805), + [anon_sym_COMMA] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2805), + [anon_sym_LPAREN] = ACTIONS(2805), + [anon_sym___global] = ACTIONS(2805), + [anon_sym_type] = ACTIONS(2805), + [anon_sym_PIPE] = ACTIONS(2805), + [anon_sym_fn] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2805), + [anon_sym_SLASH] = ACTIONS(2805), + [anon_sym_PERCENT] = ACTIONS(2805), + [anon_sym_LT] = ACTIONS(2805), + [anon_sym_GT] = ACTIONS(2805), + [anon_sym_EQ_EQ] = ACTIONS(2805), + [anon_sym_BANG_EQ] = ACTIONS(2805), + [anon_sym_LT_EQ] = ACTIONS(2805), + [anon_sym_GT_EQ] = ACTIONS(2805), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2805), + [anon_sym_union] = ACTIONS(2805), + [anon_sym_pub] = ACTIONS(2805), + [anon_sym_mut] = ACTIONS(2805), + [anon_sym_enum] = ACTIONS(2805), + [anon_sym_interface] = ACTIONS(2805), + [anon_sym_PLUS_PLUS] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2805), + [anon_sym_QMARK] = ACTIONS(2805), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_go] = ACTIONS(2805), + [anon_sym_spawn] = ACTIONS(2805), + [anon_sym_json_DOTdecode] = ACTIONS(2805), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_CARET] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2805), + [anon_sym_LT_LT] = ACTIONS(2805), + [anon_sym_GT_GT] = ACTIONS(2805), + [anon_sym_GT_GT_GT] = ACTIONS(2805), + [anon_sym_AMP_CARET] = ACTIONS(2805), + [anon_sym_AMP_AMP] = ACTIONS(2805), + [anon_sym_PIPE_PIPE] = ACTIONS(2805), + [anon_sym_or] = ACTIONS(2805), + [sym_none] = ACTIONS(2805), + [sym_true] = ACTIONS(2805), + [sym_false] = ACTIONS(2805), + [sym_nil] = ACTIONS(2805), + [anon_sym_QMARK_DOT] = ACTIONS(2805), + [anon_sym_POUND_LBRACK] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_DOLLARif] = ACTIONS(2805), + [anon_sym_is] = ACTIONS(2805), + [anon_sym_BANGis] = ACTIONS(2805), + [anon_sym_in] = ACTIONS(2805), + [anon_sym_BANGin] = ACTIONS(2805), + [anon_sym_match] = ACTIONS(2805), + [anon_sym_select] = ACTIONS(2805), + [anon_sym_lock] = ACTIONS(2805), + [anon_sym_rlock] = ACTIONS(2805), + [anon_sym_unsafe] = ACTIONS(2805), + [anon_sym_sql] = ACTIONS(2805), + [sym_int_literal] = ACTIONS(2805), + [sym_float_literal] = ACTIONS(2805), + [sym_rune_literal] = ACTIONS(2805), + [anon_sym_SQUOTE] = ACTIONS(2805), + [anon_sym_DQUOTE] = ACTIONS(2805), + [anon_sym_c_SQUOTE] = ACTIONS(2805), + [anon_sym_c_DQUOTE] = ACTIONS(2805), + [anon_sym_r_SQUOTE] = ACTIONS(2805), + [anon_sym_r_DQUOTE] = ACTIONS(2805), + [sym_pseudo_compile_time_identifier] = ACTIONS(2805), + [anon_sym_shared] = ACTIONS(2805), + [anon_sym_map_LBRACK] = ACTIONS(2805), + [anon_sym_chan] = ACTIONS(2805), + [anon_sym_thread] = ACTIONS(2805), + [anon_sym_atomic] = ACTIONS(2805), + [anon_sym_assert] = ACTIONS(2805), + [anon_sym_defer] = ACTIONS(2805), + [anon_sym_goto] = ACTIONS(2805), + [anon_sym_break] = ACTIONS(2805), + [anon_sym_continue] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2805), + [anon_sym_DOLLARfor] = ACTIONS(2805), + [anon_sym_for] = ACTIONS(2805), + [anon_sym_POUND] = ACTIONS(2805), + [anon_sym_asm] = ACTIONS(2805), + [anon_sym_AT_LBRACK] = ACTIONS(2805), }, [1036] = { [sym_line_comment] = STATE(1036), [sym_block_comment] = STATE(1036), - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2778), - [anon_sym_LF] = ACTIONS(2778), - [anon_sym_CR] = ACTIONS(2778), - [anon_sym_CR_LF] = ACTIONS(2778), + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2225), + [anon_sym_LF] = ACTIONS(2225), + [anon_sym_CR] = ACTIONS(2225), + [anon_sym_CR_LF] = ACTIONS(2225), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2778), - [anon_sym_as] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_COMMA] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym___global] = ACTIONS(2778), - [anon_sym_type] = ACTIONS(2778), - [anon_sym_PIPE] = ACTIONS(2778), - [anon_sym_fn] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2778), - [anon_sym_SLASH] = ACTIONS(2778), - [anon_sym_PERCENT] = ACTIONS(2778), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_GT] = ACTIONS(2778), - [anon_sym_EQ_EQ] = ACTIONS(2778), - [anon_sym_BANG_EQ] = ACTIONS(2778), - [anon_sym_LT_EQ] = ACTIONS(2778), - [anon_sym_GT_EQ] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_pub] = ACTIONS(2778), - [anon_sym_mut] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_interface] = ACTIONS(2778), - [anon_sym_PLUS_PLUS] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2778), - [anon_sym_QMARK] = ACTIONS(2778), - [anon_sym_BANG] = ACTIONS(2778), - [anon_sym_go] = ACTIONS(2778), - [anon_sym_spawn] = ACTIONS(2778), - [anon_sym_json_DOTdecode] = ACTIONS(2778), - [anon_sym_LBRACK2] = ACTIONS(2778), - [anon_sym_TILDE] = ACTIONS(2778), - [anon_sym_CARET] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_LT_DASH] = ACTIONS(2778), - [anon_sym_LT_LT] = ACTIONS(2778), - [anon_sym_GT_GT] = ACTIONS(2778), - [anon_sym_GT_GT_GT] = ACTIONS(2778), - [anon_sym_AMP_CARET] = ACTIONS(2778), - [anon_sym_AMP_AMP] = ACTIONS(2778), - [anon_sym_PIPE_PIPE] = ACTIONS(2778), - [anon_sym_or] = ACTIONS(2778), - [sym_none] = ACTIONS(2778), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [sym_nil] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(2778), - [anon_sym_POUND_LBRACK] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_DOLLARif] = ACTIONS(2778), - [anon_sym_is] = ACTIONS(2778), - [anon_sym_BANGis] = ACTIONS(2778), - [anon_sym_in] = ACTIONS(2778), - [anon_sym_BANGin] = ACTIONS(2778), - [anon_sym_match] = ACTIONS(2778), - [anon_sym_select] = ACTIONS(2778), - [anon_sym_lock] = ACTIONS(2778), - [anon_sym_rlock] = ACTIONS(2778), - [anon_sym_unsafe] = ACTIONS(2778), - [anon_sym_sql] = ACTIONS(2778), - [sym_int_literal] = ACTIONS(2778), - [sym_float_literal] = ACTIONS(2778), - [sym_rune_literal] = ACTIONS(2778), - [sym_pseudo_compile_time_identifier] = ACTIONS(2778), - [anon_sym_shared] = ACTIONS(2778), - [anon_sym_map_LBRACK] = ACTIONS(2778), - [anon_sym_chan] = ACTIONS(2778), - [anon_sym_thread] = ACTIONS(2778), - [anon_sym_atomic] = ACTIONS(2778), - [anon_sym_assert] = ACTIONS(2778), - [anon_sym_defer] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_DOLLARfor] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_POUND] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym_AT_LBRACK] = ACTIONS(2778), - [sym___double_quote] = ACTIONS(2778), - [sym___single_quote] = ACTIONS(2778), - [sym___c_double_quote] = ACTIONS(2778), - [sym___c_single_quote] = ACTIONS(2778), - [sym___r_double_quote] = ACTIONS(2778), - [sym___r_single_quote] = ACTIONS(2778), + [anon_sym_DOT] = ACTIONS(2225), + [anon_sym_as] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_COMMA] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym___global] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(2225), + [anon_sym_fn] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_PERCENT] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_GT] = ACTIONS(2225), + [anon_sym_EQ_EQ] = ACTIONS(2225), + [anon_sym_BANG_EQ] = ACTIONS(2225), + [anon_sym_LT_EQ] = ACTIONS(2225), + [anon_sym_GT_EQ] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2225), + [anon_sym_pub] = ACTIONS(2225), + [anon_sym_mut] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_QMARK] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_go] = ACTIONS(2225), + [anon_sym_spawn] = ACTIONS(2225), + [anon_sym_json_DOTdecode] = ACTIONS(2225), + [anon_sym_LBRACK2] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_LT_DASH] = ACTIONS(2225), + [anon_sym_LT_LT] = ACTIONS(2225), + [anon_sym_GT_GT] = ACTIONS(2225), + [anon_sym_GT_GT_GT] = ACTIONS(2225), + [anon_sym_AMP_CARET] = ACTIONS(2225), + [anon_sym_AMP_AMP] = ACTIONS(2225), + [anon_sym_PIPE_PIPE] = ACTIONS(2225), + [anon_sym_or] = ACTIONS(2225), + [sym_none] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_nil] = ACTIONS(2225), + [anon_sym_QMARK_DOT] = ACTIONS(2225), + [anon_sym_POUND_LBRACK] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_DOLLARif] = ACTIONS(2225), + [anon_sym_is] = ACTIONS(2225), + [anon_sym_BANGis] = ACTIONS(2225), + [anon_sym_in] = ACTIONS(2225), + [anon_sym_BANGin] = ACTIONS(2225), + [anon_sym_match] = ACTIONS(2225), + [anon_sym_select] = ACTIONS(2225), + [anon_sym_lock] = ACTIONS(2225), + [anon_sym_rlock] = ACTIONS(2225), + [anon_sym_unsafe] = ACTIONS(2225), + [anon_sym_sql] = ACTIONS(2225), + [sym_int_literal] = ACTIONS(2225), + [sym_float_literal] = ACTIONS(2225), + [sym_rune_literal] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_c_SQUOTE] = ACTIONS(2225), + [anon_sym_c_DQUOTE] = ACTIONS(2225), + [anon_sym_r_SQUOTE] = ACTIONS(2225), + [anon_sym_r_DQUOTE] = ACTIONS(2225), + [sym_pseudo_compile_time_identifier] = ACTIONS(2225), + [anon_sym_shared] = ACTIONS(2225), + [anon_sym_map_LBRACK] = ACTIONS(2225), + [anon_sym_chan] = ACTIONS(2225), + [anon_sym_thread] = ACTIONS(2225), + [anon_sym_atomic] = ACTIONS(2225), + [anon_sym_assert] = ACTIONS(2225), + [anon_sym_defer] = ACTIONS(2225), + [anon_sym_goto] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_DOLLARfor] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_POUND] = ACTIONS(2225), + [anon_sym_asm] = ACTIONS(2225), + [anon_sym_AT_LBRACK] = ACTIONS(2225), }, [1037] = { [sym_line_comment] = STATE(1037), [sym_block_comment] = STATE(1037), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LF] = ACTIONS(2475), - [anon_sym_CR] = ACTIONS(2475), - [anon_sym_CR_LF] = ACTIONS(2475), + [ts_builtin_sym_end] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2229), + [anon_sym_CR] = ACTIONS(2229), + [anon_sym_CR_LF] = ACTIONS(2229), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_as] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym___global] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2475), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_SLASH] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_EQ_EQ] = ACTIONS(2475), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_LT_EQ] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2475), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_pub] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_interface] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2475), - [anon_sym_QMARK] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_go] = ACTIONS(2475), - [anon_sym_spawn] = ACTIONS(2475), - [anon_sym_json_DOTdecode] = ACTIONS(2475), - [anon_sym_LBRACK2] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_LT_DASH] = ACTIONS(2475), - [anon_sym_LT_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2475), - [anon_sym_GT_GT_GT] = ACTIONS(2475), - [anon_sym_AMP_CARET] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_PIPE_PIPE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2475), - [sym_none] = ACTIONS(2475), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_nil] = ACTIONS(2475), - [anon_sym_QMARK_DOT] = ACTIONS(2475), - [anon_sym_POUND_LBRACK] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_DOLLARif] = ACTIONS(2475), - [anon_sym_is] = ACTIONS(2475), - [anon_sym_BANGis] = ACTIONS(2475), - [anon_sym_in] = ACTIONS(2475), - [anon_sym_BANGin] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_lock] = ACTIONS(2475), - [anon_sym_rlock] = ACTIONS(2475), - [anon_sym_unsafe] = ACTIONS(2475), - [anon_sym_sql] = ACTIONS(2475), - [sym_int_literal] = ACTIONS(2475), - [sym_float_literal] = ACTIONS(2475), - [sym_rune_literal] = ACTIONS(2475), - [sym_pseudo_compile_time_identifier] = ACTIONS(2475), - [anon_sym_shared] = ACTIONS(2475), - [anon_sym_map_LBRACK] = ACTIONS(2475), - [anon_sym_chan] = ACTIONS(2475), - [anon_sym_thread] = ACTIONS(2475), - [anon_sym_atomic] = ACTIONS(2475), - [anon_sym_assert] = ACTIONS(2475), - [anon_sym_defer] = ACTIONS(2475), - [anon_sym_goto] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_DOLLARfor] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_POUND] = ACTIONS(2475), - [anon_sym_asm] = ACTIONS(2475), - [anon_sym_AT_LBRACK] = ACTIONS(2475), - [sym___double_quote] = ACTIONS(2475), - [sym___single_quote] = ACTIONS(2475), - [sym___c_double_quote] = ACTIONS(2475), - [sym___c_single_quote] = ACTIONS(2475), - [sym___r_double_quote] = ACTIONS(2475), - [sym___r_single_quote] = ACTIONS(2475), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym___global] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_fn] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_SLASH] = ACTIONS(2229), + [anon_sym_PERCENT] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_GT] = ACTIONS(2229), + [anon_sym_EQ_EQ] = ACTIONS(2229), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_LT_EQ] = ACTIONS(2229), + [anon_sym_GT_EQ] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_struct] = ACTIONS(2229), + [anon_sym_union] = ACTIONS(2229), + [anon_sym_pub] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), + [anon_sym_interface] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_QMARK] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_go] = ACTIONS(2229), + [anon_sym_spawn] = ACTIONS(2229), + [anon_sym_json_DOTdecode] = ACTIONS(2229), + [anon_sym_LBRACK2] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_LT_DASH] = ACTIONS(2229), + [anon_sym_LT_LT] = ACTIONS(2229), + [anon_sym_GT_GT] = ACTIONS(2229), + [anon_sym_GT_GT_GT] = ACTIONS(2229), + [anon_sym_AMP_CARET] = ACTIONS(2229), + [anon_sym_AMP_AMP] = ACTIONS(2229), + [anon_sym_PIPE_PIPE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2229), + [sym_none] = ACTIONS(2229), + [sym_true] = ACTIONS(2229), + [sym_false] = ACTIONS(2229), + [sym_nil] = ACTIONS(2229), + [anon_sym_QMARK_DOT] = ACTIONS(2229), + [anon_sym_POUND_LBRACK] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_DOLLARif] = ACTIONS(2229), + [anon_sym_is] = ACTIONS(2229), + [anon_sym_BANGis] = ACTIONS(2229), + [anon_sym_in] = ACTIONS(2229), + [anon_sym_BANGin] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_select] = ACTIONS(2229), + [anon_sym_lock] = ACTIONS(2229), + [anon_sym_rlock] = ACTIONS(2229), + [anon_sym_unsafe] = ACTIONS(2229), + [anon_sym_sql] = ACTIONS(2229), + [sym_int_literal] = ACTIONS(2229), + [sym_float_literal] = ACTIONS(2229), + [sym_rune_literal] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [anon_sym_c_SQUOTE] = ACTIONS(2229), + [anon_sym_c_DQUOTE] = ACTIONS(2229), + [anon_sym_r_SQUOTE] = ACTIONS(2229), + [anon_sym_r_DQUOTE] = ACTIONS(2229), + [sym_pseudo_compile_time_identifier] = ACTIONS(2229), + [anon_sym_shared] = ACTIONS(2229), + [anon_sym_map_LBRACK] = ACTIONS(2229), + [anon_sym_chan] = ACTIONS(2229), + [anon_sym_thread] = ACTIONS(2229), + [anon_sym_atomic] = ACTIONS(2229), + [anon_sym_assert] = ACTIONS(2229), + [anon_sym_defer] = ACTIONS(2229), + [anon_sym_goto] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_DOLLARfor] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(2229), + [anon_sym_asm] = ACTIONS(2229), + [anon_sym_AT_LBRACK] = ACTIONS(2229), }, [1038] = { [sym_line_comment] = STATE(1038), [sym_block_comment] = STATE(1038), - [ts_builtin_sym_end] = ACTIONS(2900), - [sym_identifier] = ACTIONS(2902), - [anon_sym_LF] = ACTIONS(2902), - [anon_sym_CR] = ACTIONS(2902), - [anon_sym_CR_LF] = ACTIONS(2902), + [ts_builtin_sym_end] = ACTIONS(2713), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LF] = ACTIONS(2715), + [anon_sym_CR] = ACTIONS(2715), + [anon_sym_CR_LF] = ACTIONS(2715), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2902), - [anon_sym_as] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2902), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_const] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2902), - [anon_sym___global] = ACTIONS(2902), - [anon_sym_type] = ACTIONS(2902), - [anon_sym_PIPE] = ACTIONS(2902), - [anon_sym_fn] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_SLASH] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2902), - [anon_sym_BANG_EQ] = ACTIONS(2902), - [anon_sym_LT_EQ] = ACTIONS(2902), - [anon_sym_GT_EQ] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_struct] = ACTIONS(2902), - [anon_sym_union] = ACTIONS(2902), - [anon_sym_pub] = ACTIONS(2902), - [anon_sym_mut] = ACTIONS(2902), - [anon_sym_enum] = ACTIONS(2902), - [anon_sym_interface] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(2902), - [anon_sym_QMARK] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_go] = ACTIONS(2902), - [anon_sym_spawn] = ACTIONS(2902), - [anon_sym_json_DOTdecode] = ACTIONS(2902), - [anon_sym_LBRACK2] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [anon_sym_CARET] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_LT_DASH] = ACTIONS(2902), - [anon_sym_LT_LT] = ACTIONS(2902), - [anon_sym_GT_GT] = ACTIONS(2902), - [anon_sym_GT_GT_GT] = ACTIONS(2902), - [anon_sym_AMP_CARET] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_PIPE_PIPE] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2902), - [sym_none] = ACTIONS(2902), - [sym_true] = ACTIONS(2902), - [sym_false] = ACTIONS(2902), - [sym_nil] = ACTIONS(2902), - [anon_sym_QMARK_DOT] = ACTIONS(2902), - [anon_sym_POUND_LBRACK] = ACTIONS(2902), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_DOLLARif] = ACTIONS(2902), - [anon_sym_is] = ACTIONS(2902), - [anon_sym_BANGis] = ACTIONS(2902), - [anon_sym_in] = ACTIONS(2902), - [anon_sym_BANGin] = ACTIONS(2902), - [anon_sym_match] = ACTIONS(2902), - [anon_sym_select] = ACTIONS(2902), - [anon_sym_lock] = ACTIONS(2902), - [anon_sym_rlock] = ACTIONS(2902), - [anon_sym_unsafe] = ACTIONS(2902), - [anon_sym_sql] = ACTIONS(2902), - [sym_int_literal] = ACTIONS(2902), - [sym_float_literal] = ACTIONS(2902), - [sym_rune_literal] = ACTIONS(2902), - [sym_pseudo_compile_time_identifier] = ACTIONS(2902), - [anon_sym_shared] = ACTIONS(2902), - [anon_sym_map_LBRACK] = ACTIONS(2902), - [anon_sym_chan] = ACTIONS(2902), - [anon_sym_thread] = ACTIONS(2902), - [anon_sym_atomic] = ACTIONS(2902), - [anon_sym_assert] = ACTIONS(2902), - [anon_sym_defer] = ACTIONS(2902), - [anon_sym_goto] = ACTIONS(2902), - [anon_sym_break] = ACTIONS(2902), - [anon_sym_continue] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2902), - [anon_sym_DOLLARfor] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2902), - [anon_sym_POUND] = ACTIONS(2902), - [anon_sym_asm] = ACTIONS(2902), - [anon_sym_AT_LBRACK] = ACTIONS(2902), - [sym___double_quote] = ACTIONS(2902), - [sym___single_quote] = ACTIONS(2902), - [sym___c_double_quote] = ACTIONS(2902), - [sym___c_single_quote] = ACTIONS(2902), - [sym___r_double_quote] = ACTIONS(2902), - [sym___r_single_quote] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2715), + [anon_sym_as] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym___global] = ACTIONS(2715), + [anon_sym_type] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_PLUS] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_SLASH] = ACTIONS(2715), + [anon_sym_PERCENT] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_GT] = ACTIONS(2715), + [anon_sym_EQ_EQ] = ACTIONS(2715), + [anon_sym_BANG_EQ] = ACTIONS(2715), + [anon_sym_LT_EQ] = ACTIONS(2715), + [anon_sym_GT_EQ] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_union] = ACTIONS(2715), + [anon_sym_pub] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(2715), + [anon_sym_enum] = ACTIONS(2715), + [anon_sym_interface] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_QMARK] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_go] = ACTIONS(2715), + [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_json_DOTdecode] = ACTIONS(2715), + [anon_sym_LBRACK2] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_CARET] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_LT_DASH] = ACTIONS(2715), + [anon_sym_LT_LT] = ACTIONS(2715), + [anon_sym_GT_GT] = ACTIONS(2715), + [anon_sym_GT_GT_GT] = ACTIONS(2715), + [anon_sym_AMP_CARET] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_PIPE_PIPE] = ACTIONS(2715), + [anon_sym_or] = ACTIONS(2715), + [sym_none] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), + [sym_nil] = ACTIONS(2715), + [anon_sym_QMARK_DOT] = ACTIONS(2715), + [anon_sym_POUND_LBRACK] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_DOLLARif] = ACTIONS(2715), + [anon_sym_is] = ACTIONS(2715), + [anon_sym_BANGis] = ACTIONS(2715), + [anon_sym_in] = ACTIONS(2715), + [anon_sym_BANGin] = ACTIONS(2715), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_select] = ACTIONS(2715), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_sql] = ACTIONS(2715), + [sym_int_literal] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2715), + [sym_rune_literal] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [anon_sym_c_SQUOTE] = ACTIONS(2715), + [anon_sym_c_DQUOTE] = ACTIONS(2715), + [anon_sym_r_SQUOTE] = ACTIONS(2715), + [anon_sym_r_DQUOTE] = ACTIONS(2715), + [sym_pseudo_compile_time_identifier] = ACTIONS(2715), + [anon_sym_shared] = ACTIONS(2715), + [anon_sym_map_LBRACK] = ACTIONS(2715), + [anon_sym_chan] = ACTIONS(2715), + [anon_sym_thread] = ACTIONS(2715), + [anon_sym_atomic] = ACTIONS(2715), + [anon_sym_assert] = ACTIONS(2715), + [anon_sym_defer] = ACTIONS(2715), + [anon_sym_goto] = ACTIONS(2715), + [anon_sym_break] = ACTIONS(2715), + [anon_sym_continue] = ACTIONS(2715), + [anon_sym_return] = ACTIONS(2715), + [anon_sym_DOLLARfor] = ACTIONS(2715), + [anon_sym_for] = ACTIONS(2715), + [anon_sym_POUND] = ACTIONS(2715), + [anon_sym_asm] = ACTIONS(2715), + [anon_sym_AT_LBRACK] = ACTIONS(2715), }, [1039] = { [sym_line_comment] = STATE(1039), [sym_block_comment] = STATE(1039), - [ts_builtin_sym_end] = ACTIONS(2465), - [sym_identifier] = ACTIONS(2467), - [anon_sym_LF] = ACTIONS(2467), - [anon_sym_CR] = ACTIONS(2467), - [anon_sym_CR_LF] = ACTIONS(2467), + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LF] = ACTIONS(3052), + [anon_sym_CR] = ACTIONS(3052), + [anon_sym_CR_LF] = ACTIONS(3052), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2467), - [anon_sym_as] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_COMMA] = ACTIONS(2467), - [anon_sym_const] = ACTIONS(2467), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym___global] = ACTIONS(2467), - [anon_sym_type] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(2467), - [anon_sym_fn] = ACTIONS(2467), - [anon_sym_PLUS] = ACTIONS(2467), - [anon_sym_DASH] = ACTIONS(2467), - [anon_sym_STAR] = ACTIONS(2467), - [anon_sym_SLASH] = ACTIONS(2467), - [anon_sym_PERCENT] = ACTIONS(2467), - [anon_sym_LT] = ACTIONS(2467), - [anon_sym_GT] = ACTIONS(2467), - [anon_sym_EQ_EQ] = ACTIONS(2467), - [anon_sym_BANG_EQ] = ACTIONS(2467), - [anon_sym_LT_EQ] = ACTIONS(2467), - [anon_sym_GT_EQ] = ACTIONS(2467), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_struct] = ACTIONS(2467), - [anon_sym_union] = ACTIONS(2467), - [anon_sym_pub] = ACTIONS(2467), - [anon_sym_mut] = ACTIONS(2467), - [anon_sym_enum] = ACTIONS(2467), - [anon_sym_interface] = ACTIONS(2467), - [anon_sym_PLUS_PLUS] = ACTIONS(2467), - [anon_sym_DASH_DASH] = ACTIONS(2467), - [anon_sym_QMARK] = ACTIONS(2467), - [anon_sym_BANG] = ACTIONS(2467), - [anon_sym_go] = ACTIONS(2467), - [anon_sym_spawn] = ACTIONS(2467), - [anon_sym_json_DOTdecode] = ACTIONS(2467), - [anon_sym_LBRACK2] = ACTIONS(2467), - [anon_sym_TILDE] = ACTIONS(2467), - [anon_sym_CARET] = ACTIONS(2467), - [anon_sym_AMP] = ACTIONS(2467), - [anon_sym_LT_DASH] = ACTIONS(2467), - [anon_sym_LT_LT] = ACTIONS(2467), - [anon_sym_GT_GT] = ACTIONS(2467), - [anon_sym_GT_GT_GT] = ACTIONS(2467), - [anon_sym_AMP_CARET] = ACTIONS(2467), - [anon_sym_AMP_AMP] = ACTIONS(2467), - [anon_sym_PIPE_PIPE] = ACTIONS(2467), - [anon_sym_or] = ACTIONS(2467), - [sym_none] = ACTIONS(2467), - [sym_true] = ACTIONS(2467), - [sym_false] = ACTIONS(2467), - [sym_nil] = ACTIONS(2467), - [anon_sym_QMARK_DOT] = ACTIONS(2467), - [anon_sym_POUND_LBRACK] = ACTIONS(2467), - [anon_sym_if] = ACTIONS(2467), - [anon_sym_DOLLARif] = ACTIONS(2467), - [anon_sym_is] = ACTIONS(2467), - [anon_sym_BANGis] = ACTIONS(2467), - [anon_sym_in] = ACTIONS(2467), - [anon_sym_BANGin] = ACTIONS(2467), - [anon_sym_match] = ACTIONS(2467), - [anon_sym_select] = ACTIONS(2467), - [anon_sym_lock] = ACTIONS(2467), - [anon_sym_rlock] = ACTIONS(2467), - [anon_sym_unsafe] = ACTIONS(2467), - [anon_sym_sql] = ACTIONS(2467), - [sym_int_literal] = ACTIONS(2467), - [sym_float_literal] = ACTIONS(2467), - [sym_rune_literal] = ACTIONS(2467), - [sym_pseudo_compile_time_identifier] = ACTIONS(2467), - [anon_sym_shared] = ACTIONS(2467), - [anon_sym_map_LBRACK] = ACTIONS(2467), - [anon_sym_chan] = ACTIONS(2467), - [anon_sym_thread] = ACTIONS(2467), - [anon_sym_atomic] = ACTIONS(2467), - [anon_sym_assert] = ACTIONS(2467), - [anon_sym_defer] = ACTIONS(2467), - [anon_sym_goto] = ACTIONS(2467), - [anon_sym_break] = ACTIONS(2467), - [anon_sym_continue] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2467), - [anon_sym_DOLLARfor] = ACTIONS(2467), - [anon_sym_for] = ACTIONS(2467), - [anon_sym_POUND] = ACTIONS(2467), - [anon_sym_asm] = ACTIONS(2467), - [anon_sym_AT_LBRACK] = ACTIONS(2467), - [sym___double_quote] = ACTIONS(2467), - [sym___single_quote] = ACTIONS(2467), - [sym___c_double_quote] = ACTIONS(2467), - [sym___c_single_quote] = ACTIONS(2467), - [sym___r_double_quote] = ACTIONS(2467), - [sym___r_single_quote] = ACTIONS(2467), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_as] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym___global] = ACTIONS(3052), + [anon_sym_type] = ACTIONS(3052), + [anon_sym_PIPE] = ACTIONS(3052), + [anon_sym_fn] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3052), + [anon_sym_SLASH] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3052), + [anon_sym_GT] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3050), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_union] = ACTIONS(3052), + [anon_sym_pub] = ACTIONS(3052), + [anon_sym_mut] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), + [anon_sym_interface] = ACTIONS(3052), + [anon_sym_PLUS_PLUS] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3052), + [anon_sym_go] = ACTIONS(3052), + [anon_sym_spawn] = ACTIONS(3052), + [anon_sym_json_DOTdecode] = ACTIONS(3052), + [anon_sym_LBRACK2] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3052), + [anon_sym_CARET] = ACTIONS(3052), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_LT_LT] = ACTIONS(3052), + [anon_sym_GT_GT] = ACTIONS(3052), + [anon_sym_GT_GT_GT] = ACTIONS(3052), + [anon_sym_AMP_CARET] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [sym_none] = ACTIONS(3052), + [sym_true] = ACTIONS(3052), + [sym_false] = ACTIONS(3052), + [sym_nil] = ACTIONS(3052), + [anon_sym_QMARK_DOT] = ACTIONS(3052), + [anon_sym_POUND_LBRACK] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_DOLLARif] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3052), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_in] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_select] = ACTIONS(3052), + [anon_sym_lock] = ACTIONS(3052), + [anon_sym_rlock] = ACTIONS(3052), + [anon_sym_unsafe] = ACTIONS(3052), + [anon_sym_sql] = ACTIONS(3052), + [sym_int_literal] = ACTIONS(3052), + [sym_float_literal] = ACTIONS(3052), + [sym_rune_literal] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_c_SQUOTE] = ACTIONS(3052), + [anon_sym_c_DQUOTE] = ACTIONS(3052), + [anon_sym_r_SQUOTE] = ACTIONS(3052), + [anon_sym_r_DQUOTE] = ACTIONS(3052), + [sym_pseudo_compile_time_identifier] = ACTIONS(3052), + [anon_sym_shared] = ACTIONS(3052), + [anon_sym_map_LBRACK] = ACTIONS(3052), + [anon_sym_chan] = ACTIONS(3052), + [anon_sym_thread] = ACTIONS(3052), + [anon_sym_atomic] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_defer] = ACTIONS(3052), + [anon_sym_goto] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_DOLLARfor] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_POUND] = ACTIONS(3052), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym_AT_LBRACK] = ACTIONS(3052), }, [1040] = { [sym_line_comment] = STATE(1040), [sym_block_comment] = STATE(1040), - [ts_builtin_sym_end] = ACTIONS(2904), - [sym_identifier] = ACTIONS(2906), - [anon_sym_LF] = ACTIONS(2906), - [anon_sym_CR] = ACTIONS(2906), - [anon_sym_CR_LF] = ACTIONS(2906), + [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(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_as] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2906), - [anon_sym_const] = ACTIONS(2906), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym___global] = ACTIONS(2906), - [anon_sym_type] = ACTIONS(2906), - [anon_sym_PIPE] = ACTIONS(2906), - [anon_sym_fn] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2906), - [anon_sym_SLASH] = ACTIONS(2906), - [anon_sym_PERCENT] = ACTIONS(2906), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_GT] = ACTIONS(2906), - [anon_sym_EQ_EQ] = ACTIONS(2906), - [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_LT_EQ] = ACTIONS(2906), - [anon_sym_GT_EQ] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_struct] = ACTIONS(2906), - [anon_sym_union] = ACTIONS(2906), - [anon_sym_pub] = ACTIONS(2906), - [anon_sym_mut] = ACTIONS(2906), - [anon_sym_enum] = ACTIONS(2906), - [anon_sym_interface] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2906), - [anon_sym_DASH_DASH] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2906), - [anon_sym_go] = ACTIONS(2906), - [anon_sym_spawn] = ACTIONS(2906), - [anon_sym_json_DOTdecode] = ACTIONS(2906), - [anon_sym_LBRACK2] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2906), - [anon_sym_CARET] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2906), - [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_AMP_CARET] = ACTIONS(2906), - [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_PIPE_PIPE] = ACTIONS(2906), - [anon_sym_or] = ACTIONS(2906), - [sym_none] = ACTIONS(2906), - [sym_true] = ACTIONS(2906), - [sym_false] = ACTIONS(2906), - [sym_nil] = ACTIONS(2906), - [anon_sym_QMARK_DOT] = ACTIONS(2906), - [anon_sym_POUND_LBRACK] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_DOLLARif] = ACTIONS(2906), - [anon_sym_is] = ACTIONS(2906), - [anon_sym_BANGis] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2906), - [anon_sym_BANGin] = ACTIONS(2906), - [anon_sym_match] = ACTIONS(2906), - [anon_sym_select] = ACTIONS(2906), - [anon_sym_lock] = ACTIONS(2906), - [anon_sym_rlock] = ACTIONS(2906), - [anon_sym_unsafe] = ACTIONS(2906), - [anon_sym_sql] = ACTIONS(2906), - [sym_int_literal] = ACTIONS(2906), - [sym_float_literal] = ACTIONS(2906), - [sym_rune_literal] = ACTIONS(2906), - [sym_pseudo_compile_time_identifier] = ACTIONS(2906), - [anon_sym_shared] = ACTIONS(2906), - [anon_sym_map_LBRACK] = ACTIONS(2906), - [anon_sym_chan] = ACTIONS(2906), - [anon_sym_thread] = ACTIONS(2906), - [anon_sym_atomic] = ACTIONS(2906), - [anon_sym_assert] = ACTIONS(2906), - [anon_sym_defer] = ACTIONS(2906), - [anon_sym_goto] = ACTIONS(2906), - [anon_sym_break] = ACTIONS(2906), - [anon_sym_continue] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_DOLLARfor] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_POUND] = ACTIONS(2906), - [anon_sym_asm] = ACTIONS(2906), - [anon_sym_AT_LBRACK] = ACTIONS(2906), - [sym___double_quote] = ACTIONS(2906), - [sym___single_quote] = ACTIONS(2906), - [sym___c_double_quote] = ACTIONS(2906), - [sym___c_single_quote] = ACTIONS(2906), - [sym___r_double_quote] = ACTIONS(2906), - [sym___r_single_quote] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2877), + [anon_sym_as] = ACTIONS(2877), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_COMMA] = ACTIONS(2877), + [anon_sym_const] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(2877), + [anon_sym___global] = ACTIONS(2877), + [anon_sym_type] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2877), + [anon_sym_fn] = ACTIONS(2877), + [anon_sym_PLUS] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_SLASH] = ACTIONS(2877), + [anon_sym_PERCENT] = ACTIONS(2877), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_EQ_EQ] = ACTIONS(2877), + [anon_sym_BANG_EQ] = ACTIONS(2877), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2877), + [anon_sym_union] = ACTIONS(2877), + [anon_sym_pub] = ACTIONS(2877), + [anon_sym_mut] = ACTIONS(2877), + [anon_sym_enum] = ACTIONS(2877), + [anon_sym_interface] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_QMARK] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_go] = ACTIONS(2877), + [anon_sym_spawn] = ACTIONS(2877), + [anon_sym_json_DOTdecode] = ACTIONS(2877), + [anon_sym_LBRACK2] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_CARET] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2877), + [anon_sym_LT_DASH] = ACTIONS(2877), + [anon_sym_LT_LT] = ACTIONS(2877), + [anon_sym_GT_GT] = ACTIONS(2877), + [anon_sym_GT_GT_GT] = ACTIONS(2877), + [anon_sym_AMP_CARET] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_PIPE_PIPE] = ACTIONS(2877), + [anon_sym_or] = ACTIONS(2877), + [sym_none] = ACTIONS(2877), + [sym_true] = ACTIONS(2877), + [sym_false] = ACTIONS(2877), + [sym_nil] = ACTIONS(2877), + [anon_sym_QMARK_DOT] = ACTIONS(2877), + [anon_sym_POUND_LBRACK] = ACTIONS(2877), + [anon_sym_if] = ACTIONS(2877), + [anon_sym_DOLLARif] = ACTIONS(2877), + [anon_sym_is] = ACTIONS(2877), + [anon_sym_BANGis] = ACTIONS(2877), + [anon_sym_in] = ACTIONS(2877), + [anon_sym_BANGin] = ACTIONS(2877), + [anon_sym_match] = ACTIONS(2877), + [anon_sym_select] = ACTIONS(2877), + [anon_sym_lock] = ACTIONS(2877), + [anon_sym_rlock] = ACTIONS(2877), + [anon_sym_unsafe] = ACTIONS(2877), + [anon_sym_sql] = ACTIONS(2877), + [sym_int_literal] = ACTIONS(2877), + [sym_float_literal] = ACTIONS(2877), + [sym_rune_literal] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [anon_sym_c_SQUOTE] = ACTIONS(2877), + [anon_sym_c_DQUOTE] = ACTIONS(2877), + [anon_sym_r_SQUOTE] = ACTIONS(2877), + [anon_sym_r_DQUOTE] = ACTIONS(2877), + [sym_pseudo_compile_time_identifier] = ACTIONS(2877), + [anon_sym_shared] = ACTIONS(2877), + [anon_sym_map_LBRACK] = ACTIONS(2877), + [anon_sym_chan] = ACTIONS(2877), + [anon_sym_thread] = ACTIONS(2877), + [anon_sym_atomic] = ACTIONS(2877), + [anon_sym_assert] = ACTIONS(2877), + [anon_sym_defer] = ACTIONS(2877), + [anon_sym_goto] = ACTIONS(2877), + [anon_sym_break] = ACTIONS(2877), + [anon_sym_continue] = ACTIONS(2877), + [anon_sym_return] = ACTIONS(2877), + [anon_sym_DOLLARfor] = ACTIONS(2877), + [anon_sym_for] = ACTIONS(2877), + [anon_sym_POUND] = ACTIONS(2877), + [anon_sym_asm] = ACTIONS(2877), + [anon_sym_AT_LBRACK] = ACTIONS(2877), }, [1041] = { [sym_line_comment] = STATE(1041), [sym_block_comment] = STATE(1041), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), + [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(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1889), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1889), - [anon_sym_AMP_CARET] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1889), - [anon_sym_POUND_LBRACK] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [anon_sym_DOT] = ACTIONS(2093), + [anon_sym_as] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_COMMA] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym___global] = ACTIONS(2093), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_PIPE] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(2093), + [anon_sym_SLASH] = ACTIONS(2093), + [anon_sym_PERCENT] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_GT] = ACTIONS(2093), + [anon_sym_EQ_EQ] = ACTIONS(2093), + [anon_sym_BANG_EQ] = ACTIONS(2093), + [anon_sym_LT_EQ] = ACTIONS(2093), + [anon_sym_GT_EQ] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_union] = ACTIONS(2093), + [anon_sym_pub] = ACTIONS(2093), + [anon_sym_mut] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_interface] = ACTIONS(2093), + [anon_sym_PLUS_PLUS] = ACTIONS(2093), + [anon_sym_DASH_DASH] = ACTIONS(2093), + [anon_sym_QMARK] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2093), + [anon_sym_json_DOTdecode] = ACTIONS(2093), + [anon_sym_LBRACK2] = ACTIONS(2093), + [anon_sym_TILDE] = ACTIONS(2093), + [anon_sym_CARET] = ACTIONS(2093), + [anon_sym_AMP] = ACTIONS(2093), + [anon_sym_LT_DASH] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_GT_GT] = ACTIONS(2093), + [anon_sym_GT_GT_GT] = ACTIONS(2093), + [anon_sym_AMP_CARET] = ACTIONS(2093), + [anon_sym_AMP_AMP] = ACTIONS(2093), + [anon_sym_PIPE_PIPE] = ACTIONS(2093), + [anon_sym_or] = ACTIONS(2093), + [sym_none] = ACTIONS(2093), + [sym_true] = ACTIONS(2093), + [sym_false] = ACTIONS(2093), + [sym_nil] = ACTIONS(2093), + [anon_sym_QMARK_DOT] = ACTIONS(2093), + [anon_sym_POUND_LBRACK] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_DOLLARif] = ACTIONS(2093), + [anon_sym_is] = ACTIONS(2093), + [anon_sym_BANGis] = ACTIONS(2093), + [anon_sym_in] = ACTIONS(2093), + [anon_sym_BANGin] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_select] = ACTIONS(2093), + [anon_sym_lock] = ACTIONS(2093), + [anon_sym_rlock] = ACTIONS(2093), + [anon_sym_unsafe] = ACTIONS(2093), + [anon_sym_sql] = ACTIONS(2093), + [sym_int_literal] = ACTIONS(2093), + [sym_float_literal] = ACTIONS(2093), + [sym_rune_literal] = ACTIONS(2093), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(2093), + [anon_sym_c_SQUOTE] = ACTIONS(2093), + [anon_sym_c_DQUOTE] = ACTIONS(2093), + [anon_sym_r_SQUOTE] = ACTIONS(2093), + [anon_sym_r_DQUOTE] = ACTIONS(2093), + [sym_pseudo_compile_time_identifier] = ACTIONS(2093), + [anon_sym_shared] = ACTIONS(2093), + [anon_sym_map_LBRACK] = ACTIONS(2093), + [anon_sym_chan] = ACTIONS(2093), + [anon_sym_thread] = ACTIONS(2093), + [anon_sym_atomic] = ACTIONS(2093), + [anon_sym_assert] = ACTIONS(2093), + [anon_sym_defer] = ACTIONS(2093), + [anon_sym_goto] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_DOLLARfor] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2093), + [anon_sym_asm] = ACTIONS(2093), + [anon_sym_AT_LBRACK] = ACTIONS(2093), }, [1042] = { [sym_line_comment] = STATE(1042), [sym_block_comment] = STATE(1042), - [ts_builtin_sym_end] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), + [ts_builtin_sym_end] = ACTIONS(2849), + [sym_identifier] = ACTIONS(2851), + [anon_sym_LF] = ACTIONS(2851), + [anon_sym_CR] = ACTIONS(2851), + [anon_sym_CR_LF] = ACTIONS(2851), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_const] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym___global] = ACTIONS(2704), - [anon_sym_type] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_union] = ACTIONS(2704), - [anon_sym_pub] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_interface] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2704), - [anon_sym_POUND_LBRACK] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2704), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [sym_pseudo_compile_time_identifier] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [anon_sym_assert] = ACTIONS(2704), - [anon_sym_defer] = ACTIONS(2704), - [anon_sym_goto] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_DOLLARfor] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2704), - [anon_sym_AT_LBRACK] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2851), + [anon_sym_as] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_COMMA] = ACTIONS(2851), + [anon_sym_const] = ACTIONS(2851), + [anon_sym_LPAREN] = ACTIONS(2851), + [anon_sym___global] = ACTIONS(2851), + [anon_sym_type] = ACTIONS(2851), + [anon_sym_PIPE] = ACTIONS(2851), + [anon_sym_fn] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2851), + [anon_sym_SLASH] = ACTIONS(2851), + [anon_sym_PERCENT] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(2851), + [anon_sym_GT] = ACTIONS(2851), + [anon_sym_EQ_EQ] = ACTIONS(2851), + [anon_sym_BANG_EQ] = ACTIONS(2851), + [anon_sym_LT_EQ] = ACTIONS(2851), + [anon_sym_GT_EQ] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_struct] = ACTIONS(2851), + [anon_sym_union] = ACTIONS(2851), + [anon_sym_pub] = ACTIONS(2851), + [anon_sym_mut] = ACTIONS(2851), + [anon_sym_enum] = ACTIONS(2851), + [anon_sym_interface] = ACTIONS(2851), + [anon_sym_PLUS_PLUS] = ACTIONS(2851), + [anon_sym_DASH_DASH] = ACTIONS(2851), + [anon_sym_QMARK] = ACTIONS(2851), + [anon_sym_BANG] = ACTIONS(2851), + [anon_sym_go] = ACTIONS(2851), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(2851), + [anon_sym_LBRACK2] = ACTIONS(2851), + [anon_sym_TILDE] = ACTIONS(2851), + [anon_sym_CARET] = ACTIONS(2851), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_LT_DASH] = ACTIONS(2851), + [anon_sym_LT_LT] = ACTIONS(2851), + [anon_sym_GT_GT] = ACTIONS(2851), + [anon_sym_GT_GT_GT] = ACTIONS(2851), + [anon_sym_AMP_CARET] = ACTIONS(2851), + [anon_sym_AMP_AMP] = ACTIONS(2851), + [anon_sym_PIPE_PIPE] = ACTIONS(2851), + [anon_sym_or] = ACTIONS(2851), + [sym_none] = ACTIONS(2851), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [sym_nil] = ACTIONS(2851), + [anon_sym_QMARK_DOT] = ACTIONS(2851), + [anon_sym_POUND_LBRACK] = ACTIONS(2851), + [anon_sym_if] = ACTIONS(2851), + [anon_sym_DOLLARif] = ACTIONS(2851), + [anon_sym_is] = ACTIONS(2851), + [anon_sym_BANGis] = ACTIONS(2851), + [anon_sym_in] = ACTIONS(2851), + [anon_sym_BANGin] = ACTIONS(2851), + [anon_sym_match] = ACTIONS(2851), + [anon_sym_select] = ACTIONS(2851), + [anon_sym_lock] = ACTIONS(2851), + [anon_sym_rlock] = ACTIONS(2851), + [anon_sym_unsafe] = ACTIONS(2851), + [anon_sym_sql] = ACTIONS(2851), + [sym_int_literal] = ACTIONS(2851), + [sym_float_literal] = ACTIONS(2851), + [sym_rune_literal] = ACTIONS(2851), + [anon_sym_SQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [anon_sym_c_SQUOTE] = ACTIONS(2851), + [anon_sym_c_DQUOTE] = ACTIONS(2851), + [anon_sym_r_SQUOTE] = ACTIONS(2851), + [anon_sym_r_DQUOTE] = ACTIONS(2851), + [sym_pseudo_compile_time_identifier] = ACTIONS(2851), + [anon_sym_shared] = ACTIONS(2851), + [anon_sym_map_LBRACK] = ACTIONS(2851), + [anon_sym_chan] = ACTIONS(2851), + [anon_sym_thread] = ACTIONS(2851), + [anon_sym_atomic] = ACTIONS(2851), + [anon_sym_assert] = ACTIONS(2851), + [anon_sym_defer] = ACTIONS(2851), + [anon_sym_goto] = ACTIONS(2851), + [anon_sym_break] = ACTIONS(2851), + [anon_sym_continue] = ACTIONS(2851), + [anon_sym_return] = ACTIONS(2851), + [anon_sym_DOLLARfor] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2851), + [anon_sym_POUND] = ACTIONS(2851), + [anon_sym_asm] = ACTIONS(2851), + [anon_sym_AT_LBRACK] = ACTIONS(2851), }, [1043] = { [sym_line_comment] = STATE(1043), [sym_block_comment] = STATE(1043), - [ts_builtin_sym_end] = ACTIONS(2536), - [sym_identifier] = ACTIONS(2538), - [anon_sym_LF] = ACTIONS(2538), - [anon_sym_CR] = ACTIONS(2538), - [anon_sym_CR_LF] = ACTIONS(2538), + [ts_builtin_sym_end] = ACTIONS(2845), + [sym_identifier] = ACTIONS(2847), + [anon_sym_LF] = ACTIONS(2847), + [anon_sym_CR] = ACTIONS(2847), + [anon_sym_CR_LF] = ACTIONS(2847), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2538), - [anon_sym_as] = ACTIONS(2538), - [anon_sym_LBRACE] = ACTIONS(2538), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_const] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(2538), - [anon_sym___global] = ACTIONS(2538), - [anon_sym_type] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_fn] = ACTIONS(2538), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(2538), - [anon_sym_PERCENT] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_GT] = ACTIONS(2538), - [anon_sym_EQ_EQ] = ACTIONS(2538), - [anon_sym_BANG_EQ] = ACTIONS(2538), - [anon_sym_LT_EQ] = ACTIONS(2538), - [anon_sym_GT_EQ] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), - [anon_sym_union] = ACTIONS(2538), - [anon_sym_pub] = ACTIONS(2538), - [anon_sym_mut] = ACTIONS(2538), - [anon_sym_enum] = ACTIONS(2538), - [anon_sym_interface] = ACTIONS(2538), - [anon_sym_PLUS_PLUS] = ACTIONS(2538), - [anon_sym_DASH_DASH] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(2538), - [anon_sym_BANG] = ACTIONS(2538), - [anon_sym_go] = ACTIONS(2538), - [anon_sym_spawn] = ACTIONS(2538), - [anon_sym_json_DOTdecode] = ACTIONS(2538), - [anon_sym_LBRACK2] = ACTIONS(2538), - [anon_sym_TILDE] = ACTIONS(2538), - [anon_sym_CARET] = ACTIONS(2538), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2538), - [anon_sym_LT_LT] = ACTIONS(2538), - [anon_sym_GT_GT] = ACTIONS(2538), - [anon_sym_GT_GT_GT] = ACTIONS(2538), - [anon_sym_AMP_CARET] = ACTIONS(2538), - [anon_sym_AMP_AMP] = ACTIONS(2538), - [anon_sym_PIPE_PIPE] = ACTIONS(2538), - [anon_sym_or] = ACTIONS(2538), - [sym_none] = ACTIONS(2538), - [sym_true] = ACTIONS(2538), - [sym_false] = ACTIONS(2538), - [sym_nil] = ACTIONS(2538), - [anon_sym_QMARK_DOT] = ACTIONS(2538), - [anon_sym_POUND_LBRACK] = ACTIONS(2538), - [anon_sym_if] = ACTIONS(2538), - [anon_sym_DOLLARif] = ACTIONS(2538), - [anon_sym_is] = ACTIONS(2538), - [anon_sym_BANGis] = ACTIONS(2538), - [anon_sym_in] = ACTIONS(2538), - [anon_sym_BANGin] = ACTIONS(2538), - [anon_sym_match] = ACTIONS(2538), - [anon_sym_select] = ACTIONS(2538), - [anon_sym_lock] = ACTIONS(2538), - [anon_sym_rlock] = ACTIONS(2538), - [anon_sym_unsafe] = ACTIONS(2538), - [anon_sym_sql] = ACTIONS(2538), - [sym_int_literal] = ACTIONS(2538), - [sym_float_literal] = ACTIONS(2538), - [sym_rune_literal] = ACTIONS(2538), - [sym_pseudo_compile_time_identifier] = ACTIONS(2538), - [anon_sym_shared] = ACTIONS(2538), - [anon_sym_map_LBRACK] = ACTIONS(2538), - [anon_sym_chan] = ACTIONS(2538), - [anon_sym_thread] = ACTIONS(2538), - [anon_sym_atomic] = ACTIONS(2538), - [anon_sym_assert] = ACTIONS(2538), - [anon_sym_defer] = ACTIONS(2538), - [anon_sym_goto] = ACTIONS(2538), - [anon_sym_break] = ACTIONS(2538), - [anon_sym_continue] = ACTIONS(2538), - [anon_sym_return] = ACTIONS(2538), - [anon_sym_DOLLARfor] = ACTIONS(2538), - [anon_sym_for] = ACTIONS(2538), - [anon_sym_POUND] = ACTIONS(2538), - [anon_sym_asm] = ACTIONS(2538), - [anon_sym_AT_LBRACK] = ACTIONS(2538), - [sym___double_quote] = ACTIONS(2538), - [sym___single_quote] = ACTIONS(2538), - [sym___c_double_quote] = ACTIONS(2538), - [sym___c_single_quote] = ACTIONS(2538), - [sym___r_double_quote] = ACTIONS(2538), - [sym___r_single_quote] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(2847), + [anon_sym_as] = ACTIONS(2847), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_COMMA] = ACTIONS(2847), + [anon_sym_const] = ACTIONS(2847), + [anon_sym_LPAREN] = ACTIONS(2847), + [anon_sym___global] = ACTIONS(2847), + [anon_sym_type] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_fn] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2847), + [anon_sym_DASH] = ACTIONS(2847), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_SLASH] = ACTIONS(2847), + [anon_sym_PERCENT] = ACTIONS(2847), + [anon_sym_LT] = ACTIONS(2847), + [anon_sym_GT] = ACTIONS(2847), + [anon_sym_EQ_EQ] = ACTIONS(2847), + [anon_sym_BANG_EQ] = ACTIONS(2847), + [anon_sym_LT_EQ] = ACTIONS(2847), + [anon_sym_GT_EQ] = ACTIONS(2847), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(2847), + [anon_sym_union] = ACTIONS(2847), + [anon_sym_pub] = ACTIONS(2847), + [anon_sym_mut] = ACTIONS(2847), + [anon_sym_enum] = ACTIONS(2847), + [anon_sym_interface] = ACTIONS(2847), + [anon_sym_PLUS_PLUS] = ACTIONS(2847), + [anon_sym_DASH_DASH] = ACTIONS(2847), + [anon_sym_QMARK] = ACTIONS(2847), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2847), + [anon_sym_spawn] = ACTIONS(2847), + [anon_sym_json_DOTdecode] = ACTIONS(2847), + [anon_sym_LBRACK2] = ACTIONS(2847), + [anon_sym_TILDE] = ACTIONS(2847), + [anon_sym_CARET] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_LT_DASH] = ACTIONS(2847), + [anon_sym_LT_LT] = ACTIONS(2847), + [anon_sym_GT_GT] = ACTIONS(2847), + [anon_sym_GT_GT_GT] = ACTIONS(2847), + [anon_sym_AMP_CARET] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2847), + [anon_sym_PIPE_PIPE] = ACTIONS(2847), + [anon_sym_or] = ACTIONS(2847), + [sym_none] = ACTIONS(2847), + [sym_true] = ACTIONS(2847), + [sym_false] = ACTIONS(2847), + [sym_nil] = ACTIONS(2847), + [anon_sym_QMARK_DOT] = ACTIONS(2847), + [anon_sym_POUND_LBRACK] = ACTIONS(2847), + [anon_sym_if] = ACTIONS(2847), + [anon_sym_DOLLARif] = ACTIONS(2847), + [anon_sym_is] = ACTIONS(2847), + [anon_sym_BANGis] = ACTIONS(2847), + [anon_sym_in] = ACTIONS(2847), + [anon_sym_BANGin] = ACTIONS(2847), + [anon_sym_match] = ACTIONS(2847), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2847), + [anon_sym_rlock] = ACTIONS(2847), + [anon_sym_unsafe] = ACTIONS(2847), + [anon_sym_sql] = ACTIONS(2847), + [sym_int_literal] = ACTIONS(2847), + [sym_float_literal] = ACTIONS(2847), + [sym_rune_literal] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2847), + [anon_sym_c_SQUOTE] = ACTIONS(2847), + [anon_sym_c_DQUOTE] = ACTIONS(2847), + [anon_sym_r_SQUOTE] = ACTIONS(2847), + [anon_sym_r_DQUOTE] = ACTIONS(2847), + [sym_pseudo_compile_time_identifier] = ACTIONS(2847), + [anon_sym_shared] = ACTIONS(2847), + [anon_sym_map_LBRACK] = ACTIONS(2847), + [anon_sym_chan] = ACTIONS(2847), + [anon_sym_thread] = ACTIONS(2847), + [anon_sym_atomic] = ACTIONS(2847), + [anon_sym_assert] = ACTIONS(2847), + [anon_sym_defer] = ACTIONS(2847), + [anon_sym_goto] = ACTIONS(2847), + [anon_sym_break] = ACTIONS(2847), + [anon_sym_continue] = ACTIONS(2847), + [anon_sym_return] = ACTIONS(2847), + [anon_sym_DOLLARfor] = ACTIONS(2847), + [anon_sym_for] = ACTIONS(2847), + [anon_sym_POUND] = ACTIONS(2847), + [anon_sym_asm] = ACTIONS(2847), + [anon_sym_AT_LBRACK] = ACTIONS(2847), }, [1044] = { [sym_line_comment] = STATE(1044), [sym_block_comment] = STATE(1044), - [ts_builtin_sym_end] = ACTIONS(2503), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LF] = ACTIONS(2505), - [anon_sym_CR] = ACTIONS(2505), - [anon_sym_CR_LF] = ACTIONS(2505), + [ts_builtin_sym_end] = ACTIONS(2769), + [sym_identifier] = ACTIONS(2771), + [anon_sym_LF] = ACTIONS(2771), + [anon_sym_CR] = ACTIONS(2771), + [anon_sym_CR_LF] = ACTIONS(2771), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_COMMA] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym___global] = ACTIONS(2505), - [anon_sym_type] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2505), - [anon_sym_fn] = ACTIONS(2505), - [anon_sym_PLUS] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_GT] = ACTIONS(2505), - [anon_sym_EQ_EQ] = ACTIONS(2505), - [anon_sym_BANG_EQ] = ACTIONS(2505), - [anon_sym_LT_EQ] = ACTIONS(2505), - [anon_sym_GT_EQ] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2505), - [anon_sym_union] = ACTIONS(2505), - [anon_sym_pub] = ACTIONS(2505), - [anon_sym_mut] = ACTIONS(2505), - [anon_sym_enum] = ACTIONS(2505), - [anon_sym_interface] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2505), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_QMARK] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_go] = ACTIONS(2505), - [anon_sym_spawn] = ACTIONS(2505), - [anon_sym_json_DOTdecode] = ACTIONS(2505), - [anon_sym_LBRACK2] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_CARET] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2505), - [anon_sym_LT_DASH] = ACTIONS(2505), - [anon_sym_LT_LT] = ACTIONS(2505), - [anon_sym_GT_GT] = ACTIONS(2505), - [anon_sym_GT_GT_GT] = ACTIONS(2505), - [anon_sym_AMP_CARET] = ACTIONS(2505), - [anon_sym_AMP_AMP] = ACTIONS(2505), - [anon_sym_PIPE_PIPE] = ACTIONS(2505), - [anon_sym_or] = ACTIONS(2505), - [sym_none] = ACTIONS(2505), - [sym_true] = ACTIONS(2505), - [sym_false] = ACTIONS(2505), - [sym_nil] = ACTIONS(2505), - [anon_sym_QMARK_DOT] = ACTIONS(2505), - [anon_sym_POUND_LBRACK] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_DOLLARif] = ACTIONS(2505), - [anon_sym_is] = ACTIONS(2505), - [anon_sym_BANGis] = ACTIONS(2505), - [anon_sym_in] = ACTIONS(2505), - [anon_sym_BANGin] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2505), - [anon_sym_select] = ACTIONS(2505), - [anon_sym_lock] = ACTIONS(2505), - [anon_sym_rlock] = ACTIONS(2505), - [anon_sym_unsafe] = ACTIONS(2505), - [anon_sym_sql] = ACTIONS(2505), - [sym_int_literal] = ACTIONS(2505), - [sym_float_literal] = ACTIONS(2505), - [sym_rune_literal] = ACTIONS(2505), - [sym_pseudo_compile_time_identifier] = ACTIONS(2505), - [anon_sym_shared] = ACTIONS(2505), - [anon_sym_map_LBRACK] = ACTIONS(2505), - [anon_sym_chan] = ACTIONS(2505), - [anon_sym_thread] = ACTIONS(2505), - [anon_sym_atomic] = ACTIONS(2505), - [anon_sym_assert] = ACTIONS(2505), - [anon_sym_defer] = ACTIONS(2505), - [anon_sym_goto] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_DOLLARfor] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(2505), - [anon_sym_asm] = ACTIONS(2505), - [anon_sym_AT_LBRACK] = ACTIONS(2505), - [sym___double_quote] = ACTIONS(2505), - [sym___single_quote] = ACTIONS(2505), - [sym___c_double_quote] = ACTIONS(2505), - [sym___c_single_quote] = ACTIONS(2505), - [sym___r_double_quote] = ACTIONS(2505), - [sym___r_single_quote] = ACTIONS(2505), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_as] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_COMMA] = ACTIONS(2771), + [anon_sym_const] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(2771), + [anon_sym___global] = ACTIONS(2771), + [anon_sym_type] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2771), + [anon_sym_fn] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_PERCENT] = ACTIONS(2771), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_GT] = ACTIONS(2771), + [anon_sym_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ] = ACTIONS(2771), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2771), + [anon_sym_union] = ACTIONS(2771), + [anon_sym_pub] = ACTIONS(2771), + [anon_sym_mut] = ACTIONS(2771), + [anon_sym_enum] = ACTIONS(2771), + [anon_sym_interface] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_QMARK] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2771), + [anon_sym_spawn] = ACTIONS(2771), + [anon_sym_json_DOTdecode] = ACTIONS(2771), + [anon_sym_LBRACK2] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_CARET] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_LT_DASH] = ACTIONS(2771), + [anon_sym_LT_LT] = ACTIONS(2771), + [anon_sym_GT_GT] = ACTIONS(2771), + [anon_sym_GT_GT_GT] = ACTIONS(2771), + [anon_sym_AMP_CARET] = ACTIONS(2771), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_or] = ACTIONS(2771), + [sym_none] = ACTIONS(2771), + [sym_true] = ACTIONS(2771), + [sym_false] = ACTIONS(2771), + [sym_nil] = ACTIONS(2771), + [anon_sym_QMARK_DOT] = ACTIONS(2771), + [anon_sym_POUND_LBRACK] = ACTIONS(2771), + [anon_sym_if] = ACTIONS(2771), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_is] = ACTIONS(2771), + [anon_sym_BANGis] = ACTIONS(2771), + [anon_sym_in] = ACTIONS(2771), + [anon_sym_BANGin] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2771), + [anon_sym_select] = ACTIONS(2771), + [anon_sym_lock] = ACTIONS(2771), + [anon_sym_rlock] = ACTIONS(2771), + [anon_sym_unsafe] = ACTIONS(2771), + [anon_sym_sql] = ACTIONS(2771), + [sym_int_literal] = ACTIONS(2771), + [sym_float_literal] = ACTIONS(2771), + [sym_rune_literal] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [anon_sym_c_SQUOTE] = ACTIONS(2771), + [anon_sym_c_DQUOTE] = ACTIONS(2771), + [anon_sym_r_SQUOTE] = ACTIONS(2771), + [anon_sym_r_DQUOTE] = ACTIONS(2771), + [sym_pseudo_compile_time_identifier] = ACTIONS(2771), + [anon_sym_shared] = ACTIONS(2771), + [anon_sym_map_LBRACK] = ACTIONS(2771), + [anon_sym_chan] = ACTIONS(2771), + [anon_sym_thread] = ACTIONS(2771), + [anon_sym_atomic] = ACTIONS(2771), + [anon_sym_assert] = ACTIONS(2771), + [anon_sym_defer] = ACTIONS(2771), + [anon_sym_goto] = ACTIONS(2771), + [anon_sym_break] = ACTIONS(2771), + [anon_sym_continue] = ACTIONS(2771), + [anon_sym_return] = ACTIONS(2771), + [anon_sym_DOLLARfor] = ACTIONS(2771), + [anon_sym_for] = ACTIONS(2771), + [anon_sym_POUND] = ACTIONS(2771), + [anon_sym_asm] = ACTIONS(2771), + [anon_sym_AT_LBRACK] = ACTIONS(2771), }, [1045] = { [sym_line_comment] = STATE(1045), [sym_block_comment] = STATE(1045), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2115), - [anon_sym_LF] = ACTIONS(2115), - [anon_sym_CR] = ACTIONS(2115), - [anon_sym_CR_LF] = ACTIONS(2115), + [ts_builtin_sym_end] = ACTIONS(3054), + [sym_identifier] = ACTIONS(3056), + [anon_sym_LF] = ACTIONS(3056), + [anon_sym_CR] = ACTIONS(3056), + [anon_sym_CR_LF] = ACTIONS(3056), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2115), - [anon_sym_as] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2115), - [anon_sym_COMMA] = ACTIONS(2115), - [anon_sym_const] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2115), - [anon_sym___global] = ACTIONS(2115), - [anon_sym_type] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_fn] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_SLASH] = ACTIONS(2115), - [anon_sym_PERCENT] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_GT] = ACTIONS(2115), - [anon_sym_EQ_EQ] = ACTIONS(2115), - [anon_sym_BANG_EQ] = ACTIONS(2115), - [anon_sym_LT_EQ] = ACTIONS(2115), - [anon_sym_GT_EQ] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_struct] = ACTIONS(2115), - [anon_sym_union] = ACTIONS(2115), - [anon_sym_pub] = ACTIONS(2115), - [anon_sym_mut] = ACTIONS(2115), - [anon_sym_enum] = ACTIONS(2115), - [anon_sym_interface] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_go] = ACTIONS(2115), - [anon_sym_spawn] = ACTIONS(2115), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(2115), - [anon_sym_GT_GT] = ACTIONS(2115), - [anon_sym_GT_GT_GT] = ACTIONS(2115), - [anon_sym_AMP_CARET] = ACTIONS(2115), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_or] = ACTIONS(2115), - [sym_none] = ACTIONS(2115), - [sym_true] = ACTIONS(2115), - [sym_false] = ACTIONS(2115), - [sym_nil] = ACTIONS(2115), - [anon_sym_QMARK_DOT] = ACTIONS(2115), - [anon_sym_POUND_LBRACK] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(2115), - [anon_sym_DOLLARif] = ACTIONS(2115), - [anon_sym_is] = ACTIONS(2115), - [anon_sym_BANGis] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2115), - [anon_sym_BANGin] = ACTIONS(2115), - [anon_sym_match] = ACTIONS(2115), - [anon_sym_select] = ACTIONS(2115), - [anon_sym_lock] = ACTIONS(2115), - [anon_sym_rlock] = ACTIONS(2115), - [anon_sym_unsafe] = ACTIONS(2115), - [anon_sym_sql] = ACTIONS(2115), - [sym_int_literal] = ACTIONS(2115), - [sym_float_literal] = ACTIONS(2115), - [sym_rune_literal] = ACTIONS(2115), - [sym_pseudo_compile_time_identifier] = ACTIONS(2115), - [anon_sym_shared] = ACTIONS(2115), - [anon_sym_map_LBRACK] = ACTIONS(2115), - [anon_sym_chan] = ACTIONS(2115), - [anon_sym_thread] = ACTIONS(2115), - [anon_sym_atomic] = ACTIONS(2115), - [anon_sym_assert] = ACTIONS(2115), - [anon_sym_defer] = ACTIONS(2115), - [anon_sym_goto] = ACTIONS(2115), - [anon_sym_break] = ACTIONS(2115), - [anon_sym_continue] = ACTIONS(2115), - [anon_sym_return] = ACTIONS(2115), - [anon_sym_DOLLARfor] = ACTIONS(2115), - [anon_sym_for] = ACTIONS(2115), - [anon_sym_POUND] = ACTIONS(2115), - [anon_sym_asm] = ACTIONS(2115), - [anon_sym_AT_LBRACK] = ACTIONS(2115), - [sym___double_quote] = ACTIONS(2115), - [sym___single_quote] = ACTIONS(2115), - [sym___c_double_quote] = ACTIONS(2115), - [sym___c_single_quote] = ACTIONS(2115), - [sym___r_double_quote] = ACTIONS(2115), - [sym___r_single_quote] = ACTIONS(2115), + [anon_sym_DOT] = ACTIONS(3056), + [anon_sym_as] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_const] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3056), + [anon_sym___global] = ACTIONS(3056), + [anon_sym_type] = ACTIONS(3056), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_fn] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3056), + [anon_sym_SLASH] = ACTIONS(3056), + [anon_sym_PERCENT] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT_EQ] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_union] = ACTIONS(3056), + [anon_sym_pub] = ACTIONS(3056), + [anon_sym_mut] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3056), + [anon_sym_interface] = ACTIONS(3056), + [anon_sym_PLUS_PLUS] = ACTIONS(3056), + [anon_sym_DASH_DASH] = ACTIONS(3056), + [anon_sym_QMARK] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3056), + [anon_sym_go] = ACTIONS(3056), + [anon_sym_spawn] = ACTIONS(3056), + [anon_sym_json_DOTdecode] = ACTIONS(3056), + [anon_sym_LBRACK2] = ACTIONS(3056), + [anon_sym_TILDE] = ACTIONS(3056), + [anon_sym_CARET] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym_LT_DASH] = ACTIONS(3056), + [anon_sym_LT_LT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(3056), + [anon_sym_GT_GT_GT] = ACTIONS(3056), + [anon_sym_AMP_CARET] = ACTIONS(3056), + [anon_sym_AMP_AMP] = ACTIONS(3056), + [anon_sym_PIPE_PIPE] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3056), + [sym_none] = ACTIONS(3056), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [sym_nil] = ACTIONS(3056), + [anon_sym_QMARK_DOT] = ACTIONS(3056), + [anon_sym_POUND_LBRACK] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_DOLLARif] = ACTIONS(3056), + [anon_sym_is] = ACTIONS(3056), + [anon_sym_BANGis] = ACTIONS(3056), + [anon_sym_in] = ACTIONS(3056), + [anon_sym_BANGin] = ACTIONS(3056), + [anon_sym_match] = ACTIONS(3056), + [anon_sym_select] = ACTIONS(3056), + [anon_sym_lock] = ACTIONS(3056), + [anon_sym_rlock] = ACTIONS(3056), + [anon_sym_unsafe] = ACTIONS(3056), + [anon_sym_sql] = ACTIONS(3056), + [sym_int_literal] = ACTIONS(3056), + [sym_float_literal] = ACTIONS(3056), + [sym_rune_literal] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3056), + [anon_sym_c_SQUOTE] = ACTIONS(3056), + [anon_sym_c_DQUOTE] = ACTIONS(3056), + [anon_sym_r_SQUOTE] = ACTIONS(3056), + [anon_sym_r_DQUOTE] = ACTIONS(3056), + [sym_pseudo_compile_time_identifier] = ACTIONS(3056), + [anon_sym_shared] = ACTIONS(3056), + [anon_sym_map_LBRACK] = ACTIONS(3056), + [anon_sym_chan] = ACTIONS(3056), + [anon_sym_thread] = ACTIONS(3056), + [anon_sym_atomic] = ACTIONS(3056), + [anon_sym_assert] = ACTIONS(3056), + [anon_sym_defer] = ACTIONS(3056), + [anon_sym_goto] = ACTIONS(3056), + [anon_sym_break] = ACTIONS(3056), + [anon_sym_continue] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_DOLLARfor] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_POUND] = ACTIONS(3056), + [anon_sym_asm] = ACTIONS(3056), + [anon_sym_AT_LBRACK] = ACTIONS(3056), }, [1046] = { [sym_line_comment] = STATE(1046), [sym_block_comment] = STATE(1046), - [ts_builtin_sym_end] = ACTIONS(2694), - [sym_identifier] = ACTIONS(2696), - [anon_sym_LF] = ACTIONS(2696), - [anon_sym_CR] = ACTIONS(2696), - [anon_sym_CR_LF] = ACTIONS(2696), + [ts_builtin_sym_end] = ACTIONS(2765), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LF] = ACTIONS(2767), + [anon_sym_CR] = ACTIONS(2767), + [anon_sym_CR_LF] = ACTIONS(2767), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2696), - [anon_sym_as] = ACTIONS(2696), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_COMMA] = ACTIONS(2696), - [anon_sym_const] = ACTIONS(2696), - [anon_sym_LPAREN] = ACTIONS(2696), - [anon_sym___global] = ACTIONS(2696), - [anon_sym_type] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_fn] = ACTIONS(2696), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2696), - [anon_sym_SLASH] = ACTIONS(2696), - [anon_sym_PERCENT] = ACTIONS(2696), - [anon_sym_LT] = ACTIONS(2696), - [anon_sym_GT] = ACTIONS(2696), - [anon_sym_EQ_EQ] = ACTIONS(2696), - [anon_sym_BANG_EQ] = ACTIONS(2696), - [anon_sym_LT_EQ] = ACTIONS(2696), - [anon_sym_GT_EQ] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(2694), - [anon_sym_struct] = ACTIONS(2696), - [anon_sym_union] = ACTIONS(2696), - [anon_sym_pub] = ACTIONS(2696), - [anon_sym_mut] = ACTIONS(2696), - [anon_sym_enum] = ACTIONS(2696), - [anon_sym_interface] = ACTIONS(2696), - [anon_sym_PLUS_PLUS] = ACTIONS(2696), - [anon_sym_DASH_DASH] = ACTIONS(2696), - [anon_sym_QMARK] = ACTIONS(2696), - [anon_sym_BANG] = ACTIONS(2696), - [anon_sym_go] = ACTIONS(2696), - [anon_sym_spawn] = ACTIONS(2696), - [anon_sym_json_DOTdecode] = ACTIONS(2696), - [anon_sym_LBRACK2] = ACTIONS(2696), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2696), - [anon_sym_LT_DASH] = ACTIONS(2696), - [anon_sym_LT_LT] = ACTIONS(2696), - [anon_sym_GT_GT] = ACTIONS(2696), - [anon_sym_GT_GT_GT] = ACTIONS(2696), - [anon_sym_AMP_CARET] = ACTIONS(2696), - [anon_sym_AMP_AMP] = ACTIONS(2696), - [anon_sym_PIPE_PIPE] = ACTIONS(2696), - [anon_sym_or] = ACTIONS(2696), - [sym_none] = ACTIONS(2696), - [sym_true] = ACTIONS(2696), - [sym_false] = ACTIONS(2696), - [sym_nil] = ACTIONS(2696), - [anon_sym_QMARK_DOT] = ACTIONS(2696), - [anon_sym_POUND_LBRACK] = ACTIONS(2696), - [anon_sym_if] = ACTIONS(2696), - [anon_sym_DOLLARif] = ACTIONS(2696), - [anon_sym_is] = ACTIONS(2696), - [anon_sym_BANGis] = ACTIONS(2696), - [anon_sym_in] = ACTIONS(2696), - [anon_sym_BANGin] = ACTIONS(2696), - [anon_sym_match] = ACTIONS(2696), - [anon_sym_select] = ACTIONS(2696), - [anon_sym_lock] = ACTIONS(2696), - [anon_sym_rlock] = ACTIONS(2696), - [anon_sym_unsafe] = ACTIONS(2696), - [anon_sym_sql] = ACTIONS(2696), - [sym_int_literal] = ACTIONS(2696), - [sym_float_literal] = ACTIONS(2696), - [sym_rune_literal] = ACTIONS(2696), - [sym_pseudo_compile_time_identifier] = ACTIONS(2696), - [anon_sym_shared] = ACTIONS(2696), - [anon_sym_map_LBRACK] = ACTIONS(2696), - [anon_sym_chan] = ACTIONS(2696), - [anon_sym_thread] = ACTIONS(2696), - [anon_sym_atomic] = ACTIONS(2696), - [anon_sym_assert] = ACTIONS(2696), - [anon_sym_defer] = ACTIONS(2696), - [anon_sym_goto] = ACTIONS(2696), - [anon_sym_break] = ACTIONS(2696), - [anon_sym_continue] = ACTIONS(2696), - [anon_sym_return] = ACTIONS(2696), - [anon_sym_DOLLARfor] = ACTIONS(2696), - [anon_sym_for] = ACTIONS(2696), - [anon_sym_POUND] = ACTIONS(2696), - [anon_sym_asm] = ACTIONS(2696), - [anon_sym_AT_LBRACK] = ACTIONS(2696), - [sym___double_quote] = ACTIONS(2696), - [sym___single_quote] = ACTIONS(2696), - [sym___c_double_quote] = ACTIONS(2696), - [sym___c_single_quote] = ACTIONS(2696), - [sym___r_double_quote] = ACTIONS(2696), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2767), + [anon_sym_as] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_COMMA] = ACTIONS(2767), + [anon_sym_const] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2767), + [anon_sym___global] = ACTIONS(2767), + [anon_sym_type] = ACTIONS(2767), + [anon_sym_PIPE] = ACTIONS(2767), + [anon_sym_fn] = ACTIONS(2767), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_SLASH] = ACTIONS(2767), + [anon_sym_PERCENT] = ACTIONS(2767), + [anon_sym_LT] = ACTIONS(2767), + [anon_sym_GT] = ACTIONS(2767), + [anon_sym_EQ_EQ] = ACTIONS(2767), + [anon_sym_BANG_EQ] = ACTIONS(2767), + [anon_sym_LT_EQ] = ACTIONS(2767), + [anon_sym_GT_EQ] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_struct] = ACTIONS(2767), + [anon_sym_union] = ACTIONS(2767), + [anon_sym_pub] = ACTIONS(2767), + [anon_sym_mut] = ACTIONS(2767), + [anon_sym_enum] = ACTIONS(2767), + [anon_sym_interface] = ACTIONS(2767), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_QMARK] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_go] = ACTIONS(2767), + [anon_sym_spawn] = ACTIONS(2767), + [anon_sym_json_DOTdecode] = ACTIONS(2767), + [anon_sym_LBRACK2] = ACTIONS(2767), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2767), + [anon_sym_LT_DASH] = ACTIONS(2767), + [anon_sym_LT_LT] = ACTIONS(2767), + [anon_sym_GT_GT] = ACTIONS(2767), + [anon_sym_GT_GT_GT] = ACTIONS(2767), + [anon_sym_AMP_CARET] = ACTIONS(2767), + [anon_sym_AMP_AMP] = ACTIONS(2767), + [anon_sym_PIPE_PIPE] = ACTIONS(2767), + [anon_sym_or] = ACTIONS(2767), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_QMARK_DOT] = ACTIONS(2767), + [anon_sym_POUND_LBRACK] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2767), + [anon_sym_DOLLARif] = ACTIONS(2767), + [anon_sym_is] = ACTIONS(2767), + [anon_sym_BANGis] = ACTIONS(2767), + [anon_sym_in] = ACTIONS(2767), + [anon_sym_BANGin] = ACTIONS(2767), + [anon_sym_match] = ACTIONS(2767), + [anon_sym_select] = ACTIONS(2767), + [anon_sym_lock] = ACTIONS(2767), + [anon_sym_rlock] = ACTIONS(2767), + [anon_sym_unsafe] = ACTIONS(2767), + [anon_sym_sql] = ACTIONS(2767), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2767), + [sym_rune_literal] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2767), + [anon_sym_c_SQUOTE] = ACTIONS(2767), + [anon_sym_c_DQUOTE] = ACTIONS(2767), + [anon_sym_r_SQUOTE] = ACTIONS(2767), + [anon_sym_r_DQUOTE] = ACTIONS(2767), + [sym_pseudo_compile_time_identifier] = ACTIONS(2767), + [anon_sym_shared] = ACTIONS(2767), + [anon_sym_map_LBRACK] = ACTIONS(2767), + [anon_sym_chan] = ACTIONS(2767), + [anon_sym_thread] = ACTIONS(2767), + [anon_sym_atomic] = ACTIONS(2767), + [anon_sym_assert] = ACTIONS(2767), + [anon_sym_defer] = ACTIONS(2767), + [anon_sym_goto] = ACTIONS(2767), + [anon_sym_break] = ACTIONS(2767), + [anon_sym_continue] = ACTIONS(2767), + [anon_sym_return] = ACTIONS(2767), + [anon_sym_DOLLARfor] = ACTIONS(2767), + [anon_sym_for] = ACTIONS(2767), + [anon_sym_POUND] = ACTIONS(2767), + [anon_sym_asm] = ACTIONS(2767), + [anon_sym_AT_LBRACK] = ACTIONS(2767), }, [1047] = { [sym_line_comment] = STATE(1047), [sym_block_comment] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(3056), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LF] = ACTIONS(3058), - [anon_sym_CR] = ACTIONS(3058), - [anon_sym_CR_LF] = ACTIONS(3058), + [ts_builtin_sym_end] = ACTIONS(2857), + [sym_identifier] = ACTIONS(2859), + [anon_sym_LF] = ACTIONS(2859), + [anon_sym_CR] = ACTIONS(2859), + [anon_sym_CR_LF] = ACTIONS(2859), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_as] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_const] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym___global] = ACTIONS(3058), - [anon_sym_type] = ACTIONS(3058), - [anon_sym_PIPE] = ACTIONS(3058), - [anon_sym_fn] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3058), - [anon_sym_EQ_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_LT_EQ] = ACTIONS(3058), - [anon_sym_GT_EQ] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_struct] = ACTIONS(3058), - [anon_sym_union] = ACTIONS(3058), - [anon_sym_pub] = ACTIONS(3058), - [anon_sym_mut] = ACTIONS(3058), - [anon_sym_enum] = ACTIONS(3058), - [anon_sym_interface] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3058), - [anon_sym_DASH_DASH] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_BANG] = ACTIONS(3058), - [anon_sym_go] = ACTIONS(3058), - [anon_sym_spawn] = ACTIONS(3058), - [anon_sym_json_DOTdecode] = ACTIONS(3058), - [anon_sym_LBRACK2] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3058), - [anon_sym_CARET] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3058), - [anon_sym_LT_LT] = ACTIONS(3058), - [anon_sym_GT_GT] = ACTIONS(3058), - [anon_sym_GT_GT_GT] = ACTIONS(3058), - [anon_sym_AMP_CARET] = ACTIONS(3058), - [anon_sym_AMP_AMP] = ACTIONS(3058), - [anon_sym_PIPE_PIPE] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3058), - [sym_none] = ACTIONS(3058), - [sym_true] = ACTIONS(3058), - [sym_false] = ACTIONS(3058), - [sym_nil] = ACTIONS(3058), - [anon_sym_QMARK_DOT] = ACTIONS(3058), - [anon_sym_POUND_LBRACK] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_DOLLARif] = ACTIONS(3058), - [anon_sym_is] = ACTIONS(3058), - [anon_sym_BANGis] = ACTIONS(3058), - [anon_sym_in] = ACTIONS(3058), - [anon_sym_BANGin] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_select] = ACTIONS(3058), - [anon_sym_lock] = ACTIONS(3058), - [anon_sym_rlock] = ACTIONS(3058), - [anon_sym_unsafe] = ACTIONS(3058), - [anon_sym_sql] = ACTIONS(3058), - [sym_int_literal] = ACTIONS(3058), - [sym_float_literal] = ACTIONS(3058), - [sym_rune_literal] = ACTIONS(3058), - [sym_pseudo_compile_time_identifier] = ACTIONS(3058), - [anon_sym_shared] = ACTIONS(3058), - [anon_sym_map_LBRACK] = ACTIONS(3058), - [anon_sym_chan] = ACTIONS(3058), - [anon_sym_thread] = ACTIONS(3058), - [anon_sym_atomic] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_defer] = ACTIONS(3058), - [anon_sym_goto] = ACTIONS(3058), - [anon_sym_break] = ACTIONS(3058), - [anon_sym_continue] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_DOLLARfor] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_asm] = ACTIONS(3058), - [anon_sym_AT_LBRACK] = ACTIONS(3058), - [sym___double_quote] = ACTIONS(3058), - [sym___single_quote] = ACTIONS(3058), - [sym___c_double_quote] = ACTIONS(3058), - [sym___c_single_quote] = ACTIONS(3058), - [sym___r_double_quote] = ACTIONS(3058), - [sym___r_single_quote] = ACTIONS(3058), + [anon_sym_DOT] = ACTIONS(2859), + [anon_sym_as] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_COMMA] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2859), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym___global] = ACTIONS(2859), + [anon_sym_type] = ACTIONS(2859), + [anon_sym_PIPE] = ACTIONS(2859), + [anon_sym_fn] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_SLASH] = ACTIONS(2859), + [anon_sym_PERCENT] = ACTIONS(2859), + [anon_sym_LT] = ACTIONS(2859), + [anon_sym_GT] = ACTIONS(2859), + [anon_sym_EQ_EQ] = ACTIONS(2859), + [anon_sym_BANG_EQ] = ACTIONS(2859), + [anon_sym_LT_EQ] = ACTIONS(2859), + [anon_sym_GT_EQ] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2859), + [anon_sym_union] = ACTIONS(2859), + [anon_sym_pub] = ACTIONS(2859), + [anon_sym_mut] = ACTIONS(2859), + [anon_sym_enum] = ACTIONS(2859), + [anon_sym_interface] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_QMARK] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_go] = ACTIONS(2859), + [anon_sym_spawn] = ACTIONS(2859), + [anon_sym_json_DOTdecode] = ACTIONS(2859), + [anon_sym_LBRACK2] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_CARET] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2859), + [anon_sym_LT_DASH] = ACTIONS(2859), + [anon_sym_LT_LT] = ACTIONS(2859), + [anon_sym_GT_GT] = ACTIONS(2859), + [anon_sym_GT_GT_GT] = ACTIONS(2859), + [anon_sym_AMP_CARET] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_PIPE_PIPE] = ACTIONS(2859), + [anon_sym_or] = ACTIONS(2859), + [sym_none] = ACTIONS(2859), + [sym_true] = ACTIONS(2859), + [sym_false] = ACTIONS(2859), + [sym_nil] = ACTIONS(2859), + [anon_sym_QMARK_DOT] = ACTIONS(2859), + [anon_sym_POUND_LBRACK] = ACTIONS(2859), + [anon_sym_if] = ACTIONS(2859), + [anon_sym_DOLLARif] = ACTIONS(2859), + [anon_sym_is] = ACTIONS(2859), + [anon_sym_BANGis] = ACTIONS(2859), + [anon_sym_in] = ACTIONS(2859), + [anon_sym_BANGin] = ACTIONS(2859), + [anon_sym_match] = ACTIONS(2859), + [anon_sym_select] = ACTIONS(2859), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [anon_sym_unsafe] = ACTIONS(2859), + [anon_sym_sql] = ACTIONS(2859), + [sym_int_literal] = ACTIONS(2859), + [sym_float_literal] = ACTIONS(2859), + [sym_rune_literal] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [anon_sym_c_SQUOTE] = ACTIONS(2859), + [anon_sym_c_DQUOTE] = ACTIONS(2859), + [anon_sym_r_SQUOTE] = ACTIONS(2859), + [anon_sym_r_DQUOTE] = ACTIONS(2859), + [sym_pseudo_compile_time_identifier] = ACTIONS(2859), + [anon_sym_shared] = ACTIONS(2859), + [anon_sym_map_LBRACK] = ACTIONS(2859), + [anon_sym_chan] = ACTIONS(2859), + [anon_sym_thread] = ACTIONS(2859), + [anon_sym_atomic] = ACTIONS(2859), + [anon_sym_assert] = ACTIONS(2859), + [anon_sym_defer] = ACTIONS(2859), + [anon_sym_goto] = ACTIONS(2859), + [anon_sym_break] = ACTIONS(2859), + [anon_sym_continue] = ACTIONS(2859), + [anon_sym_return] = ACTIONS(2859), + [anon_sym_DOLLARfor] = ACTIONS(2859), + [anon_sym_for] = ACTIONS(2859), + [anon_sym_POUND] = ACTIONS(2859), + [anon_sym_asm] = ACTIONS(2859), + [anon_sym_AT_LBRACK] = ACTIONS(2859), }, [1048] = { [sym_line_comment] = STATE(1048), [sym_block_comment] = STATE(1048), - [ts_builtin_sym_end] = ACTIONS(3066), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LF] = ACTIONS(3068), - [anon_sym_CR] = ACTIONS(3068), - [anon_sym_CR_LF] = ACTIONS(3068), + [ts_builtin_sym_end] = ACTIONS(2179), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LF] = ACTIONS(2181), + [anon_sym_CR] = ACTIONS(2181), + [anon_sym_CR_LF] = ACTIONS(2181), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_as] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_COMMA] = ACTIONS(3068), - [anon_sym_const] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym___global] = ACTIONS(3068), - [anon_sym_type] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_SLASH] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_GT] = ACTIONS(3068), - [anon_sym_EQ_EQ] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3068), - [anon_sym_LT_EQ] = ACTIONS(3068), - [anon_sym_GT_EQ] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(3068), - [anon_sym_union] = ACTIONS(3068), - [anon_sym_pub] = ACTIONS(3068), - [anon_sym_mut] = ACTIONS(3068), - [anon_sym_enum] = ACTIONS(3068), - [anon_sym_interface] = ACTIONS(3068), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3068), - [anon_sym_spawn] = ACTIONS(3068), - [anon_sym_json_DOTdecode] = ACTIONS(3068), - [anon_sym_LBRACK2] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_CARET] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_LT_DASH] = ACTIONS(3068), - [anon_sym_LT_LT] = ACTIONS(3068), - [anon_sym_GT_GT] = ACTIONS(3068), - [anon_sym_GT_GT_GT] = ACTIONS(3068), - [anon_sym_AMP_CARET] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3068), - [sym_none] = ACTIONS(3068), - [sym_true] = ACTIONS(3068), - [sym_false] = ACTIONS(3068), - [sym_nil] = ACTIONS(3068), - [anon_sym_QMARK_DOT] = ACTIONS(3068), - [anon_sym_POUND_LBRACK] = ACTIONS(3068), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_DOLLARif] = ACTIONS(3068), - [anon_sym_is] = ACTIONS(3068), - [anon_sym_BANGis] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_BANGin] = ACTIONS(3068), - [anon_sym_match] = ACTIONS(3068), - [anon_sym_select] = ACTIONS(3068), - [anon_sym_lock] = ACTIONS(3068), - [anon_sym_rlock] = ACTIONS(3068), - [anon_sym_unsafe] = ACTIONS(3068), - [anon_sym_sql] = ACTIONS(3068), - [sym_int_literal] = ACTIONS(3068), - [sym_float_literal] = ACTIONS(3068), - [sym_rune_literal] = ACTIONS(3068), - [sym_pseudo_compile_time_identifier] = ACTIONS(3068), - [anon_sym_shared] = ACTIONS(3068), - [anon_sym_map_LBRACK] = ACTIONS(3068), - [anon_sym_chan] = ACTIONS(3068), - [anon_sym_thread] = ACTIONS(3068), - [anon_sym_atomic] = ACTIONS(3068), - [anon_sym_assert] = ACTIONS(3068), - [anon_sym_defer] = ACTIONS(3068), - [anon_sym_goto] = ACTIONS(3068), - [anon_sym_break] = ACTIONS(3068), - [anon_sym_continue] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3068), - [anon_sym_DOLLARfor] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3068), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_asm] = ACTIONS(3068), - [anon_sym_AT_LBRACK] = ACTIONS(3068), - [sym___double_quote] = ACTIONS(3068), - [sym___single_quote] = ACTIONS(3068), - [sym___c_double_quote] = ACTIONS(3068), - [sym___c_single_quote] = ACTIONS(3068), - [sym___r_double_quote] = ACTIONS(3068), - [sym___r_single_quote] = ACTIONS(3068), + [anon_sym_DOT] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_COMMA] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym___global] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_SLASH] = ACTIONS(2181), + [anon_sym_PERCENT] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_GT] = ACTIONS(2181), + [anon_sym_EQ_EQ] = ACTIONS(2181), + [anon_sym_BANG_EQ] = ACTIONS(2181), + [anon_sym_LT_EQ] = ACTIONS(2181), + [anon_sym_GT_EQ] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_mut] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_interface] = ACTIONS(2181), + [anon_sym_PLUS_PLUS] = ACTIONS(2181), + [anon_sym_DASH_DASH] = ACTIONS(2181), + [anon_sym_QMARK] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2181), + [anon_sym_go] = ACTIONS(2181), + [anon_sym_spawn] = ACTIONS(2181), + [anon_sym_json_DOTdecode] = ACTIONS(2181), + [anon_sym_LBRACK2] = ACTIONS(2181), + [anon_sym_TILDE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2181), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_LT_DASH] = ACTIONS(2181), + [anon_sym_LT_LT] = ACTIONS(2181), + [anon_sym_GT_GT] = ACTIONS(2181), + [anon_sym_GT_GT_GT] = ACTIONS(2181), + [anon_sym_AMP_CARET] = ACTIONS(2181), + [anon_sym_AMP_AMP] = ACTIONS(2181), + [anon_sym_PIPE_PIPE] = ACTIONS(2181), + [anon_sym_or] = ACTIONS(2181), + [sym_none] = ACTIONS(2181), + [sym_true] = ACTIONS(2181), + [sym_false] = ACTIONS(2181), + [sym_nil] = ACTIONS(2181), + [anon_sym_QMARK_DOT] = ACTIONS(2181), + [anon_sym_POUND_LBRACK] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_DOLLARif] = ACTIONS(2181), + [anon_sym_is] = ACTIONS(2181), + [anon_sym_BANGis] = ACTIONS(2181), + [anon_sym_in] = ACTIONS(2181), + [anon_sym_BANGin] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_select] = ACTIONS(2181), + [anon_sym_lock] = ACTIONS(2181), + [anon_sym_rlock] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_sql] = ACTIONS(2181), + [sym_int_literal] = ACTIONS(2181), + [sym_float_literal] = ACTIONS(2181), + [sym_rune_literal] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_DQUOTE] = ACTIONS(2181), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2181), + [anon_sym_r_SQUOTE] = ACTIONS(2181), + [anon_sym_r_DQUOTE] = ACTIONS(2181), + [sym_pseudo_compile_time_identifier] = ACTIONS(2181), + [anon_sym_shared] = ACTIONS(2181), + [anon_sym_map_LBRACK] = ACTIONS(2181), + [anon_sym_chan] = ACTIONS(2181), + [anon_sym_thread] = ACTIONS(2181), + [anon_sym_atomic] = ACTIONS(2181), + [anon_sym_assert] = ACTIONS(2181), + [anon_sym_defer] = ACTIONS(2181), + [anon_sym_goto] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_DOLLARfor] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_POUND] = ACTIONS(2181), + [anon_sym_asm] = ACTIONS(2181), + [anon_sym_AT_LBRACK] = ACTIONS(2181), }, [1049] = { [sym_line_comment] = STATE(1049), [sym_block_comment] = STATE(1049), - [ts_builtin_sym_end] = ACTIONS(2267), - [sym_identifier] = ACTIONS(2269), - [anon_sym_LF] = ACTIONS(2269), - [anon_sym_CR] = ACTIONS(2269), - [anon_sym_CR_LF] = ACTIONS(2269), + [ts_builtin_sym_end] = ACTIONS(2191), + [sym_identifier] = ACTIONS(2193), + [anon_sym_LF] = ACTIONS(2193), + [anon_sym_CR] = ACTIONS(2193), + [anon_sym_CR_LF] = ACTIONS(2193), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2269), - [anon_sym_as] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_COMMA] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2269), - [anon_sym___global] = ACTIONS(2269), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_PIPE] = ACTIONS(2269), - [anon_sym_fn] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_STAR] = ACTIONS(2269), - [anon_sym_SLASH] = ACTIONS(2269), - [anon_sym_PERCENT] = ACTIONS(2269), - [anon_sym_LT] = ACTIONS(2269), - [anon_sym_GT] = ACTIONS(2269), - [anon_sym_EQ_EQ] = ACTIONS(2269), - [anon_sym_BANG_EQ] = ACTIONS(2269), - [anon_sym_LT_EQ] = ACTIONS(2269), - [anon_sym_GT_EQ] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_struct] = ACTIONS(2269), - [anon_sym_union] = ACTIONS(2269), - [anon_sym_pub] = ACTIONS(2269), - [anon_sym_mut] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), - [anon_sym_interface] = ACTIONS(2269), - [anon_sym_PLUS_PLUS] = ACTIONS(2269), - [anon_sym_DASH_DASH] = ACTIONS(2269), - [anon_sym_QMARK] = ACTIONS(2269), - [anon_sym_BANG] = ACTIONS(2269), - [anon_sym_go] = ACTIONS(2269), - [anon_sym_spawn] = ACTIONS(2269), - [anon_sym_json_DOTdecode] = ACTIONS(2269), - [anon_sym_LBRACK2] = ACTIONS(2269), - [anon_sym_TILDE] = ACTIONS(2269), - [anon_sym_CARET] = ACTIONS(2269), - [anon_sym_AMP] = ACTIONS(2269), - [anon_sym_LT_DASH] = ACTIONS(2269), - [anon_sym_LT_LT] = ACTIONS(2269), - [anon_sym_GT_GT] = ACTIONS(2269), - [anon_sym_GT_GT_GT] = ACTIONS(2269), - [anon_sym_AMP_CARET] = ACTIONS(2269), - [anon_sym_AMP_AMP] = ACTIONS(2269), - [anon_sym_PIPE_PIPE] = ACTIONS(2269), - [anon_sym_or] = ACTIONS(2269), - [sym_none] = ACTIONS(2269), - [sym_true] = ACTIONS(2269), - [sym_false] = ACTIONS(2269), - [sym_nil] = ACTIONS(2269), - [anon_sym_QMARK_DOT] = ACTIONS(2269), - [anon_sym_POUND_LBRACK] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_DOLLARif] = ACTIONS(2269), - [anon_sym_is] = ACTIONS(2269), - [anon_sym_BANGis] = ACTIONS(2269), - [anon_sym_in] = ACTIONS(2269), - [anon_sym_BANGin] = ACTIONS(2269), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_select] = ACTIONS(2269), - [anon_sym_lock] = ACTIONS(2269), - [anon_sym_rlock] = ACTIONS(2269), - [anon_sym_unsafe] = ACTIONS(2269), - [anon_sym_sql] = ACTIONS(2269), - [sym_int_literal] = ACTIONS(2269), - [sym_float_literal] = ACTIONS(2269), - [sym_rune_literal] = ACTIONS(2269), - [sym_pseudo_compile_time_identifier] = ACTIONS(2269), - [anon_sym_shared] = ACTIONS(2269), - [anon_sym_map_LBRACK] = ACTIONS(2269), - [anon_sym_chan] = ACTIONS(2269), - [anon_sym_thread] = ACTIONS(2269), - [anon_sym_atomic] = ACTIONS(2269), - [anon_sym_assert] = ACTIONS(2269), - [anon_sym_defer] = ACTIONS(2269), - [anon_sym_goto] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_DOLLARfor] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_POUND] = ACTIONS(2269), - [anon_sym_asm] = ACTIONS(2269), - [anon_sym_AT_LBRACK] = ACTIONS(2269), - [sym___double_quote] = ACTIONS(2269), - [sym___single_quote] = ACTIONS(2269), - [sym___c_double_quote] = ACTIONS(2269), - [sym___c_single_quote] = ACTIONS(2269), - [sym___r_double_quote] = ACTIONS(2269), - [sym___r_single_quote] = ACTIONS(2269), + [anon_sym_DOT] = ACTIONS(2193), + [anon_sym_as] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_COMMA] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym___global] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_fn] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_PERCENT] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_GT] = ACTIONS(2193), + [anon_sym_EQ_EQ] = ACTIONS(2193), + [anon_sym_BANG_EQ] = ACTIONS(2193), + [anon_sym_LT_EQ] = ACTIONS(2193), + [anon_sym_GT_EQ] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2193), + [anon_sym_union] = ACTIONS(2193), + [anon_sym_pub] = ACTIONS(2193), + [anon_sym_mut] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [anon_sym_QMARK] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_go] = ACTIONS(2193), + [anon_sym_spawn] = ACTIONS(2193), + [anon_sym_json_DOTdecode] = ACTIONS(2193), + [anon_sym_LBRACK2] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_LT_DASH] = ACTIONS(2193), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_GT_GT] = ACTIONS(2193), + [anon_sym_GT_GT_GT] = ACTIONS(2193), + [anon_sym_AMP_CARET] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2193), + [anon_sym_PIPE_PIPE] = ACTIONS(2193), + [anon_sym_or] = ACTIONS(2193), + [sym_none] = ACTIONS(2193), + [sym_true] = ACTIONS(2193), + [sym_false] = ACTIONS(2193), + [sym_nil] = ACTIONS(2193), + [anon_sym_QMARK_DOT] = ACTIONS(2193), + [anon_sym_POUND_LBRACK] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_DOLLARif] = ACTIONS(2193), + [anon_sym_is] = ACTIONS(2193), + [anon_sym_BANGis] = ACTIONS(2193), + [anon_sym_in] = ACTIONS(2193), + [anon_sym_BANGin] = ACTIONS(2193), + [anon_sym_match] = ACTIONS(2193), + [anon_sym_select] = ACTIONS(2193), + [anon_sym_lock] = ACTIONS(2193), + [anon_sym_rlock] = ACTIONS(2193), + [anon_sym_unsafe] = ACTIONS(2193), + [anon_sym_sql] = ACTIONS(2193), + [sym_int_literal] = ACTIONS(2193), + [sym_float_literal] = ACTIONS(2193), + [sym_rune_literal] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [anon_sym_c_SQUOTE] = ACTIONS(2193), + [anon_sym_c_DQUOTE] = ACTIONS(2193), + [anon_sym_r_SQUOTE] = ACTIONS(2193), + [anon_sym_r_DQUOTE] = ACTIONS(2193), + [sym_pseudo_compile_time_identifier] = ACTIONS(2193), + [anon_sym_shared] = ACTIONS(2193), + [anon_sym_map_LBRACK] = ACTIONS(2193), + [anon_sym_chan] = ACTIONS(2193), + [anon_sym_thread] = ACTIONS(2193), + [anon_sym_atomic] = ACTIONS(2193), + [anon_sym_assert] = ACTIONS(2193), + [anon_sym_defer] = ACTIONS(2193), + [anon_sym_goto] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_DOLLARfor] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(2193), + [anon_sym_asm] = ACTIONS(2193), + [anon_sym_AT_LBRACK] = ACTIONS(2193), }, [1050] = { [sym_line_comment] = STATE(1050), [sym_block_comment] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2149), - [anon_sym_LF] = ACTIONS(2149), - [anon_sym_CR] = ACTIONS(2149), - [anon_sym_CR_LF] = ACTIONS(2149), + [ts_builtin_sym_end] = ACTIONS(3009), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LF] = ACTIONS(3011), + [anon_sym_CR] = ACTIONS(3011), + [anon_sym_CR_LF] = ACTIONS(3011), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2149), - [anon_sym_as] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_COMMA] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym___global] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_PIPE] = ACTIONS(2149), - [anon_sym_fn] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_PERCENT] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_GT] = ACTIONS(2149), - [anon_sym_EQ_EQ] = ACTIONS(2149), - [anon_sym_BANG_EQ] = ACTIONS(2149), - [anon_sym_LT_EQ] = ACTIONS(2149), - [anon_sym_GT_EQ] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2149), - [anon_sym_union] = ACTIONS(2149), - [anon_sym_pub] = ACTIONS(2149), - [anon_sym_mut] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_QMARK] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_go] = ACTIONS(2149), - [anon_sym_spawn] = ACTIONS(2149), - [anon_sym_json_DOTdecode] = ACTIONS(2149), - [anon_sym_LBRACK2] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_LT_DASH] = ACTIONS(2149), - [anon_sym_LT_LT] = ACTIONS(2149), - [anon_sym_GT_GT] = ACTIONS(2149), - [anon_sym_GT_GT_GT] = ACTIONS(2149), - [anon_sym_AMP_CARET] = ACTIONS(2149), - [anon_sym_AMP_AMP] = ACTIONS(2149), - [anon_sym_PIPE_PIPE] = ACTIONS(2149), - [anon_sym_or] = ACTIONS(2149), - [sym_none] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_nil] = ACTIONS(2149), - [anon_sym_QMARK_DOT] = ACTIONS(2149), - [anon_sym_POUND_LBRACK] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_DOLLARif] = ACTIONS(2149), - [anon_sym_is] = ACTIONS(2149), - [anon_sym_BANGis] = ACTIONS(2149), - [anon_sym_in] = ACTIONS(2149), - [anon_sym_BANGin] = ACTIONS(2149), - [anon_sym_match] = ACTIONS(2149), - [anon_sym_select] = ACTIONS(2149), - [anon_sym_lock] = ACTIONS(2149), - [anon_sym_rlock] = ACTIONS(2149), - [anon_sym_unsafe] = ACTIONS(2149), - [anon_sym_sql] = ACTIONS(2149), - [sym_int_literal] = ACTIONS(2149), - [sym_float_literal] = ACTIONS(2149), - [sym_rune_literal] = ACTIONS(2149), - [sym_pseudo_compile_time_identifier] = ACTIONS(2149), - [anon_sym_shared] = ACTIONS(2149), - [anon_sym_map_LBRACK] = ACTIONS(2149), - [anon_sym_chan] = ACTIONS(2149), - [anon_sym_thread] = ACTIONS(2149), - [anon_sym_atomic] = ACTIONS(2149), - [anon_sym_assert] = ACTIONS(2149), - [anon_sym_defer] = ACTIONS(2149), - [anon_sym_goto] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_DOLLARfor] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_asm] = ACTIONS(2149), - [anon_sym_AT_LBRACK] = ACTIONS(2149), - [sym___double_quote] = ACTIONS(2149), - [sym___single_quote] = ACTIONS(2149), - [sym___c_double_quote] = ACTIONS(2149), - [sym___c_single_quote] = ACTIONS(2149), - [sym___r_double_quote] = ACTIONS(2149), - [sym___r_single_quote] = ACTIONS(2149), + [anon_sym_DOT] = ACTIONS(3011), + [anon_sym_as] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym___global] = ACTIONS(3011), + [anon_sym_type] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_fn] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3011), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_SLASH] = ACTIONS(3011), + [anon_sym_PERCENT] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(3011), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_struct] = ACTIONS(3011), + [anon_sym_union] = ACTIONS(3011), + [anon_sym_pub] = ACTIONS(3011), + [anon_sym_mut] = ACTIONS(3011), + [anon_sym_enum] = ACTIONS(3011), + [anon_sym_interface] = ACTIONS(3011), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [anon_sym_QMARK] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(3011), + [anon_sym_go] = ACTIONS(3011), + [anon_sym_spawn] = ACTIONS(3011), + [anon_sym_json_DOTdecode] = ACTIONS(3011), + [anon_sym_LBRACK2] = ACTIONS(3011), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_CARET] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_LT_DASH] = ACTIONS(3011), + [anon_sym_LT_LT] = ACTIONS(3011), + [anon_sym_GT_GT] = ACTIONS(3011), + [anon_sym_GT_GT_GT] = ACTIONS(3011), + [anon_sym_AMP_CARET] = ACTIONS(3011), + [anon_sym_AMP_AMP] = ACTIONS(3011), + [anon_sym_PIPE_PIPE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3011), + [sym_none] = ACTIONS(3011), + [sym_true] = ACTIONS(3011), + [sym_false] = ACTIONS(3011), + [sym_nil] = ACTIONS(3011), + [anon_sym_QMARK_DOT] = ACTIONS(3011), + [anon_sym_POUND_LBRACK] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_DOLLARif] = ACTIONS(3011), + [anon_sym_is] = ACTIONS(3011), + [anon_sym_BANGis] = ACTIONS(3011), + [anon_sym_in] = ACTIONS(3011), + [anon_sym_BANGin] = ACTIONS(3011), + [anon_sym_match] = ACTIONS(3011), + [anon_sym_select] = ACTIONS(3011), + [anon_sym_lock] = ACTIONS(3011), + [anon_sym_rlock] = ACTIONS(3011), + [anon_sym_unsafe] = ACTIONS(3011), + [anon_sym_sql] = ACTIONS(3011), + [sym_int_literal] = ACTIONS(3011), + [sym_float_literal] = ACTIONS(3011), + [sym_rune_literal] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_DQUOTE] = ACTIONS(3011), + [anon_sym_c_SQUOTE] = ACTIONS(3011), + [anon_sym_c_DQUOTE] = ACTIONS(3011), + [anon_sym_r_SQUOTE] = ACTIONS(3011), + [anon_sym_r_DQUOTE] = ACTIONS(3011), + [sym_pseudo_compile_time_identifier] = ACTIONS(3011), + [anon_sym_shared] = ACTIONS(3011), + [anon_sym_map_LBRACK] = ACTIONS(3011), + [anon_sym_chan] = ACTIONS(3011), + [anon_sym_thread] = ACTIONS(3011), + [anon_sym_atomic] = ACTIONS(3011), + [anon_sym_assert] = ACTIONS(3011), + [anon_sym_defer] = ACTIONS(3011), + [anon_sym_goto] = ACTIONS(3011), + [anon_sym_break] = ACTIONS(3011), + [anon_sym_continue] = ACTIONS(3011), + [anon_sym_return] = ACTIONS(3011), + [anon_sym_DOLLARfor] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3011), + [anon_sym_POUND] = ACTIONS(3011), + [anon_sym_asm] = ACTIONS(3011), + [anon_sym_AT_LBRACK] = ACTIONS(3011), }, [1051] = { [sym_line_comment] = STATE(1051), [sym_block_comment] = STATE(1051), - [ts_builtin_sym_end] = ACTIONS(2674), - [sym_identifier] = ACTIONS(2676), - [anon_sym_LF] = ACTIONS(2676), - [anon_sym_CR] = ACTIONS(2676), - [anon_sym_CR_LF] = ACTIONS(2676), + [ts_builtin_sym_end] = ACTIONS(2099), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LF] = ACTIONS(2101), + [anon_sym_CR] = ACTIONS(2101), + [anon_sym_CR_LF] = ACTIONS(2101), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_COMMA] = ACTIONS(2676), - [anon_sym_const] = ACTIONS(2676), - [anon_sym_LPAREN] = ACTIONS(2676), - [anon_sym___global] = ACTIONS(2676), - [anon_sym_type] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_fn] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(2676), - [anon_sym_SLASH] = ACTIONS(2676), - [anon_sym_PERCENT] = ACTIONS(2676), - [anon_sym_LT] = ACTIONS(2676), - [anon_sym_GT] = ACTIONS(2676), - [anon_sym_EQ_EQ] = ACTIONS(2676), - [anon_sym_BANG_EQ] = ACTIONS(2676), - [anon_sym_LT_EQ] = ACTIONS(2676), - [anon_sym_GT_EQ] = ACTIONS(2676), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_struct] = ACTIONS(2676), - [anon_sym_union] = ACTIONS(2676), - [anon_sym_pub] = ACTIONS(2676), - [anon_sym_mut] = ACTIONS(2676), - [anon_sym_enum] = ACTIONS(2676), - [anon_sym_interface] = ACTIONS(2676), - [anon_sym_PLUS_PLUS] = ACTIONS(2676), - [anon_sym_DASH_DASH] = ACTIONS(2676), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(2676), - [anon_sym_go] = ACTIONS(2676), - [anon_sym_spawn] = ACTIONS(2676), - [anon_sym_json_DOTdecode] = ACTIONS(2676), - [anon_sym_LBRACK2] = ACTIONS(2676), - [anon_sym_TILDE] = ACTIONS(2676), - [anon_sym_CARET] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2676), - [anon_sym_LT_DASH] = ACTIONS(2676), - [anon_sym_LT_LT] = ACTIONS(2676), - [anon_sym_GT_GT] = ACTIONS(2676), - [anon_sym_GT_GT_GT] = ACTIONS(2676), - [anon_sym_AMP_CARET] = ACTIONS(2676), - [anon_sym_AMP_AMP] = ACTIONS(2676), - [anon_sym_PIPE_PIPE] = ACTIONS(2676), - [anon_sym_or] = ACTIONS(2676), - [sym_none] = ACTIONS(2676), - [sym_true] = ACTIONS(2676), - [sym_false] = ACTIONS(2676), - [sym_nil] = ACTIONS(2676), - [anon_sym_QMARK_DOT] = ACTIONS(2676), - [anon_sym_POUND_LBRACK] = ACTIONS(2676), - [anon_sym_if] = ACTIONS(2676), - [anon_sym_DOLLARif] = ACTIONS(2676), - [anon_sym_is] = ACTIONS(2676), - [anon_sym_BANGis] = ACTIONS(2676), - [anon_sym_in] = ACTIONS(2676), - [anon_sym_BANGin] = ACTIONS(2676), - [anon_sym_match] = ACTIONS(2676), - [anon_sym_select] = ACTIONS(2676), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2676), - [anon_sym_sql] = ACTIONS(2676), - [sym_int_literal] = ACTIONS(2676), - [sym_float_literal] = ACTIONS(2676), - [sym_rune_literal] = ACTIONS(2676), - [sym_pseudo_compile_time_identifier] = ACTIONS(2676), - [anon_sym_shared] = ACTIONS(2676), - [anon_sym_map_LBRACK] = ACTIONS(2676), - [anon_sym_chan] = ACTIONS(2676), - [anon_sym_thread] = ACTIONS(2676), - [anon_sym_atomic] = ACTIONS(2676), - [anon_sym_assert] = ACTIONS(2676), - [anon_sym_defer] = ACTIONS(2676), - [anon_sym_goto] = ACTIONS(2676), - [anon_sym_break] = ACTIONS(2676), - [anon_sym_continue] = ACTIONS(2676), - [anon_sym_return] = ACTIONS(2676), - [anon_sym_DOLLARfor] = ACTIONS(2676), - [anon_sym_for] = ACTIONS(2676), - [anon_sym_POUND] = ACTIONS(2676), - [anon_sym_asm] = ACTIONS(2676), - [anon_sym_AT_LBRACK] = ACTIONS(2676), - [sym___double_quote] = ACTIONS(2676), - [sym___single_quote] = ACTIONS(2676), - [sym___c_double_quote] = ACTIONS(2676), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2676), - [sym___r_single_quote] = ACTIONS(2676), + [anon_sym_DOT] = ACTIONS(2101), + [anon_sym_as] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_COMMA] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym___global] = ACTIONS(2101), + [anon_sym_type] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_fn] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_SLASH] = ACTIONS(2101), + [anon_sym_PERCENT] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_GT] = ACTIONS(2101), + [anon_sym_EQ_EQ] = ACTIONS(2101), + [anon_sym_BANG_EQ] = ACTIONS(2101), + [anon_sym_LT_EQ] = ACTIONS(2101), + [anon_sym_GT_EQ] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2099), + [anon_sym_struct] = ACTIONS(2101), + [anon_sym_union] = ACTIONS(2101), + [anon_sym_pub] = ACTIONS(2101), + [anon_sym_mut] = ACTIONS(2101), + [anon_sym_enum] = ACTIONS(2101), + [anon_sym_interface] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_QMARK] = ACTIONS(2101), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_go] = ACTIONS(2101), + [anon_sym_spawn] = ACTIONS(2101), + [anon_sym_json_DOTdecode] = ACTIONS(2101), + [anon_sym_LBRACK2] = ACTIONS(2101), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_LT_DASH] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(2101), + [anon_sym_GT_GT] = ACTIONS(2101), + [anon_sym_GT_GT_GT] = ACTIONS(2101), + [anon_sym_AMP_CARET] = ACTIONS(2101), + [anon_sym_AMP_AMP] = ACTIONS(2101), + [anon_sym_PIPE_PIPE] = ACTIONS(2101), + [anon_sym_or] = ACTIONS(2101), + [sym_none] = ACTIONS(2101), + [sym_true] = ACTIONS(2101), + [sym_false] = ACTIONS(2101), + [sym_nil] = ACTIONS(2101), + [anon_sym_QMARK_DOT] = ACTIONS(2101), + [anon_sym_POUND_LBRACK] = ACTIONS(2101), + [anon_sym_if] = ACTIONS(2101), + [anon_sym_DOLLARif] = ACTIONS(2101), + [anon_sym_is] = ACTIONS(2101), + [anon_sym_BANGis] = ACTIONS(2101), + [anon_sym_in] = ACTIONS(2101), + [anon_sym_BANGin] = ACTIONS(2101), + [anon_sym_match] = ACTIONS(2101), + [anon_sym_select] = ACTIONS(2101), + [anon_sym_lock] = ACTIONS(2101), + [anon_sym_rlock] = ACTIONS(2101), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(2101), + [sym_int_literal] = ACTIONS(2101), + [sym_float_literal] = ACTIONS(2101), + [sym_rune_literal] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2101), + [anon_sym_DQUOTE] = ACTIONS(2101), + [anon_sym_c_SQUOTE] = ACTIONS(2101), + [anon_sym_c_DQUOTE] = ACTIONS(2101), + [anon_sym_r_SQUOTE] = ACTIONS(2101), + [anon_sym_r_DQUOTE] = ACTIONS(2101), + [sym_pseudo_compile_time_identifier] = ACTIONS(2101), + [anon_sym_shared] = ACTIONS(2101), + [anon_sym_map_LBRACK] = ACTIONS(2101), + [anon_sym_chan] = ACTIONS(2101), + [anon_sym_thread] = ACTIONS(2101), + [anon_sym_atomic] = ACTIONS(2101), + [anon_sym_assert] = ACTIONS(2101), + [anon_sym_defer] = ACTIONS(2101), + [anon_sym_goto] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2101), + [anon_sym_continue] = ACTIONS(2101), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_DOLLARfor] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2101), + [anon_sym_POUND] = ACTIONS(2101), + [anon_sym_asm] = ACTIONS(2101), + [anon_sym_AT_LBRACK] = ACTIONS(2101), }, [1052] = { [sym_line_comment] = STATE(1052), [sym_block_comment] = STATE(1052), - [ts_builtin_sym_end] = ACTIONS(2690), - [sym_identifier] = ACTIONS(2692), - [anon_sym_LF] = ACTIONS(2692), - [anon_sym_CR] = ACTIONS(2692), - [anon_sym_CR_LF] = ACTIONS(2692), + [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(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2692), - [anon_sym_as] = ACTIONS(2692), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_COMMA] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym___global] = ACTIONS(2692), - [anon_sym_type] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_fn] = ACTIONS(2692), - [anon_sym_PLUS] = ACTIONS(2692), - [anon_sym_DASH] = ACTIONS(2692), - [anon_sym_STAR] = ACTIONS(2692), - [anon_sym_SLASH] = ACTIONS(2692), - [anon_sym_PERCENT] = ACTIONS(2692), - [anon_sym_LT] = ACTIONS(2692), - [anon_sym_GT] = ACTIONS(2692), - [anon_sym_EQ_EQ] = ACTIONS(2692), - [anon_sym_BANG_EQ] = ACTIONS(2692), - [anon_sym_LT_EQ] = ACTIONS(2692), - [anon_sym_GT_EQ] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_struct] = ACTIONS(2692), - [anon_sym_union] = ACTIONS(2692), - [anon_sym_pub] = ACTIONS(2692), - [anon_sym_mut] = ACTIONS(2692), - [anon_sym_enum] = ACTIONS(2692), - [anon_sym_interface] = ACTIONS(2692), - [anon_sym_PLUS_PLUS] = ACTIONS(2692), - [anon_sym_DASH_DASH] = ACTIONS(2692), - [anon_sym_QMARK] = ACTIONS(2692), - [anon_sym_BANG] = ACTIONS(2692), - [anon_sym_go] = ACTIONS(2692), - [anon_sym_spawn] = ACTIONS(2692), - [anon_sym_json_DOTdecode] = ACTIONS(2692), - [anon_sym_LBRACK2] = ACTIONS(2692), - [anon_sym_TILDE] = ACTIONS(2692), - [anon_sym_CARET] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2692), - [anon_sym_LT_DASH] = ACTIONS(2692), - [anon_sym_LT_LT] = ACTIONS(2692), - [anon_sym_GT_GT] = ACTIONS(2692), - [anon_sym_GT_GT_GT] = ACTIONS(2692), - [anon_sym_AMP_CARET] = ACTIONS(2692), - [anon_sym_AMP_AMP] = ACTIONS(2692), - [anon_sym_PIPE_PIPE] = ACTIONS(2692), - [anon_sym_or] = ACTIONS(2692), - [sym_none] = ACTIONS(2692), - [sym_true] = ACTIONS(2692), - [sym_false] = ACTIONS(2692), - [sym_nil] = ACTIONS(2692), - [anon_sym_QMARK_DOT] = ACTIONS(2692), - [anon_sym_POUND_LBRACK] = ACTIONS(2692), - [anon_sym_if] = ACTIONS(2692), - [anon_sym_DOLLARif] = ACTIONS(2692), - [anon_sym_is] = ACTIONS(2692), - [anon_sym_BANGis] = ACTIONS(2692), - [anon_sym_in] = ACTIONS(2692), - [anon_sym_BANGin] = ACTIONS(2692), - [anon_sym_match] = ACTIONS(2692), - [anon_sym_select] = ACTIONS(2692), - [anon_sym_lock] = ACTIONS(2692), - [anon_sym_rlock] = ACTIONS(2692), - [anon_sym_unsafe] = ACTIONS(2692), - [anon_sym_sql] = ACTIONS(2692), - [sym_int_literal] = ACTIONS(2692), - [sym_float_literal] = ACTIONS(2692), - [sym_rune_literal] = ACTIONS(2692), - [sym_pseudo_compile_time_identifier] = ACTIONS(2692), - [anon_sym_shared] = ACTIONS(2692), - [anon_sym_map_LBRACK] = ACTIONS(2692), - [anon_sym_chan] = ACTIONS(2692), - [anon_sym_thread] = ACTIONS(2692), - [anon_sym_atomic] = ACTIONS(2692), - [anon_sym_assert] = ACTIONS(2692), - [anon_sym_defer] = ACTIONS(2692), - [anon_sym_goto] = ACTIONS(2692), - [anon_sym_break] = ACTIONS(2692), - [anon_sym_continue] = ACTIONS(2692), - [anon_sym_return] = ACTIONS(2692), - [anon_sym_DOLLARfor] = ACTIONS(2692), - [anon_sym_for] = ACTIONS(2692), - [anon_sym_POUND] = ACTIONS(2692), - [anon_sym_asm] = ACTIONS(2692), - [anon_sym_AT_LBRACK] = ACTIONS(2692), - [sym___double_quote] = ACTIONS(2692), - [sym___single_quote] = ACTIONS(2692), - [sym___c_double_quote] = ACTIONS(2692), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2692), - [sym___r_single_quote] = ACTIONS(2692), + [anon_sym_DOT] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(3015), + [anon_sym_LBRACE] = ACTIONS(3015), + [anon_sym_COMMA] = ACTIONS(3015), + [anon_sym_const] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(3015), + [anon_sym___global] = ACTIONS(3015), + [anon_sym_type] = ACTIONS(3015), + [anon_sym_PIPE] = ACTIONS(3015), + [anon_sym_fn] = ACTIONS(3015), + [anon_sym_PLUS] = ACTIONS(3015), + [anon_sym_DASH] = ACTIONS(3015), + [anon_sym_STAR] = ACTIONS(3015), + [anon_sym_SLASH] = ACTIONS(3015), + [anon_sym_PERCENT] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_struct] = ACTIONS(3015), + [anon_sym_union] = ACTIONS(3015), + [anon_sym_pub] = ACTIONS(3015), + [anon_sym_mut] = ACTIONS(3015), + [anon_sym_enum] = ACTIONS(3015), + [anon_sym_interface] = ACTIONS(3015), + [anon_sym_PLUS_PLUS] = ACTIONS(3015), + [anon_sym_DASH_DASH] = ACTIONS(3015), + [anon_sym_QMARK] = ACTIONS(3015), + [anon_sym_BANG] = ACTIONS(3015), + [anon_sym_go] = ACTIONS(3015), + [anon_sym_spawn] = ACTIONS(3015), + [anon_sym_json_DOTdecode] = ACTIONS(3015), + [anon_sym_LBRACK2] = ACTIONS(3015), + [anon_sym_TILDE] = ACTIONS(3015), + [anon_sym_CARET] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3015), + [anon_sym_LT_DASH] = ACTIONS(3015), + [anon_sym_LT_LT] = ACTIONS(3015), + [anon_sym_GT_GT] = ACTIONS(3015), + [anon_sym_GT_GT_GT] = ACTIONS(3015), + [anon_sym_AMP_CARET] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_or] = ACTIONS(3015), + [sym_none] = ACTIONS(3015), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_nil] = ACTIONS(3015), + [anon_sym_QMARK_DOT] = ACTIONS(3015), + [anon_sym_POUND_LBRACK] = ACTIONS(3015), + [anon_sym_if] = ACTIONS(3015), + [anon_sym_DOLLARif] = ACTIONS(3015), + [anon_sym_is] = ACTIONS(3015), + [anon_sym_BANGis] = ACTIONS(3015), + [anon_sym_in] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(3015), + [anon_sym_match] = ACTIONS(3015), + [anon_sym_select] = ACTIONS(3015), + [anon_sym_lock] = ACTIONS(3015), + [anon_sym_rlock] = ACTIONS(3015), + [anon_sym_unsafe] = ACTIONS(3015), + [anon_sym_sql] = ACTIONS(3015), + [sym_int_literal] = ACTIONS(3015), + [sym_float_literal] = ACTIONS(3015), + [sym_rune_literal] = ACTIONS(3015), + [anon_sym_SQUOTE] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3015), + [anon_sym_c_SQUOTE] = ACTIONS(3015), + [anon_sym_c_DQUOTE] = ACTIONS(3015), + [anon_sym_r_SQUOTE] = ACTIONS(3015), + [anon_sym_r_DQUOTE] = ACTIONS(3015), + [sym_pseudo_compile_time_identifier] = ACTIONS(3015), + [anon_sym_shared] = ACTIONS(3015), + [anon_sym_map_LBRACK] = ACTIONS(3015), + [anon_sym_chan] = ACTIONS(3015), + [anon_sym_thread] = ACTIONS(3015), + [anon_sym_atomic] = ACTIONS(3015), + [anon_sym_assert] = ACTIONS(3015), + [anon_sym_defer] = ACTIONS(3015), + [anon_sym_goto] = ACTIONS(3015), + [anon_sym_break] = ACTIONS(3015), + [anon_sym_continue] = ACTIONS(3015), + [anon_sym_return] = ACTIONS(3015), + [anon_sym_DOLLARfor] = ACTIONS(3015), + [anon_sym_for] = ACTIONS(3015), + [anon_sym_POUND] = ACTIONS(3015), + [anon_sym_asm] = ACTIONS(3015), + [anon_sym_AT_LBRACK] = ACTIONS(3015), }, [1053] = { [sym_line_comment] = STATE(1053), [sym_block_comment] = STATE(1053), - [ts_builtin_sym_end] = ACTIONS(2123), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LF] = ACTIONS(2125), - [anon_sym_CR] = ACTIONS(2125), - [anon_sym_CR_LF] = ACTIONS(2125), + [ts_builtin_sym_end] = ACTIONS(3019), + [sym_identifier] = ACTIONS(3021), + [anon_sym_LF] = ACTIONS(3021), + [anon_sym_CR] = ACTIONS(3021), + [anon_sym_CR_LF] = ACTIONS(3021), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_COMMA] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym___global] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_PIPE] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_PERCENT] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_GT] = ACTIONS(2125), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2125), - [anon_sym_GT_EQ] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2123), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_mut] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_interface] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [anon_sym_QMARK] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_go] = ACTIONS(2125), - [anon_sym_spawn] = ACTIONS(2125), - [anon_sym_json_DOTdecode] = ACTIONS(2125), - [anon_sym_LBRACK2] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_CARET] = ACTIONS(2125), - [anon_sym_AMP] = ACTIONS(2125), - [anon_sym_LT_DASH] = ACTIONS(2125), - [anon_sym_LT_LT] = ACTIONS(2125), - [anon_sym_GT_GT] = ACTIONS(2125), - [anon_sym_GT_GT_GT] = ACTIONS(2125), - [anon_sym_AMP_CARET] = ACTIONS(2125), - [anon_sym_AMP_AMP] = ACTIONS(2125), - [anon_sym_PIPE_PIPE] = ACTIONS(2125), - [anon_sym_or] = ACTIONS(2125), - [sym_none] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_nil] = ACTIONS(2125), - [anon_sym_QMARK_DOT] = ACTIONS(2125), - [anon_sym_POUND_LBRACK] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_DOLLARif] = ACTIONS(2125), - [anon_sym_is] = ACTIONS(2125), - [anon_sym_BANGis] = ACTIONS(2125), - [anon_sym_in] = ACTIONS(2125), - [anon_sym_BANGin] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_select] = ACTIONS(2125), - [anon_sym_lock] = ACTIONS(2125), - [anon_sym_rlock] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(2125), - [sym_int_literal] = ACTIONS(2125), - [sym_float_literal] = ACTIONS(2125), - [sym_rune_literal] = ACTIONS(2125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2125), - [anon_sym_shared] = ACTIONS(2125), - [anon_sym_map_LBRACK] = ACTIONS(2125), - [anon_sym_chan] = ACTIONS(2125), - [anon_sym_thread] = ACTIONS(2125), - [anon_sym_atomic] = ACTIONS(2125), - [anon_sym_assert] = ACTIONS(2125), - [anon_sym_defer] = ACTIONS(2125), - [anon_sym_goto] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_DOLLARfor] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_POUND] = ACTIONS(2125), - [anon_sym_asm] = ACTIONS(2125), - [anon_sym_AT_LBRACK] = ACTIONS(2125), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2125), - [sym___c_double_quote] = ACTIONS(2125), - [sym___c_single_quote] = ACTIONS(2125), - [sym___r_double_quote] = ACTIONS(2125), - [sym___r_single_quote] = ACTIONS(2125), + [anon_sym_DOT] = ACTIONS(3021), + [anon_sym_as] = ACTIONS(3021), + [anon_sym_LBRACE] = ACTIONS(3021), + [anon_sym_COMMA] = ACTIONS(3021), + [anon_sym_const] = ACTIONS(3021), + [anon_sym_LPAREN] = ACTIONS(3021), + [anon_sym___global] = ACTIONS(3021), + [anon_sym_type] = ACTIONS(3021), + [anon_sym_PIPE] = ACTIONS(3021), + [anon_sym_fn] = ACTIONS(3021), + [anon_sym_PLUS] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3021), + [anon_sym_STAR] = ACTIONS(3021), + [anon_sym_SLASH] = ACTIONS(3021), + [anon_sym_PERCENT] = ACTIONS(3021), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3021), + [anon_sym_BANG_EQ] = ACTIONS(3021), + [anon_sym_LT_EQ] = ACTIONS(3021), + [anon_sym_GT_EQ] = ACTIONS(3021), + [anon_sym_LBRACK] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(3021), + [anon_sym_union] = ACTIONS(3021), + [anon_sym_pub] = ACTIONS(3021), + [anon_sym_mut] = ACTIONS(3021), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_interface] = ACTIONS(3021), + [anon_sym_PLUS_PLUS] = ACTIONS(3021), + [anon_sym_DASH_DASH] = ACTIONS(3021), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_go] = ACTIONS(3021), + [anon_sym_spawn] = ACTIONS(3021), + [anon_sym_json_DOTdecode] = ACTIONS(3021), + [anon_sym_LBRACK2] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_AMP] = ACTIONS(3021), + [anon_sym_LT_DASH] = ACTIONS(3021), + [anon_sym_LT_LT] = ACTIONS(3021), + [anon_sym_GT_GT] = ACTIONS(3021), + [anon_sym_GT_GT_GT] = ACTIONS(3021), + [anon_sym_AMP_CARET] = ACTIONS(3021), + [anon_sym_AMP_AMP] = ACTIONS(3021), + [anon_sym_PIPE_PIPE] = ACTIONS(3021), + [anon_sym_or] = ACTIONS(3021), + [sym_none] = ACTIONS(3021), + [sym_true] = ACTIONS(3021), + [sym_false] = ACTIONS(3021), + [sym_nil] = ACTIONS(3021), + [anon_sym_QMARK_DOT] = ACTIONS(3021), + [anon_sym_POUND_LBRACK] = ACTIONS(3021), + [anon_sym_if] = ACTIONS(3021), + [anon_sym_DOLLARif] = ACTIONS(3021), + [anon_sym_is] = ACTIONS(3021), + [anon_sym_BANGis] = ACTIONS(3021), + [anon_sym_in] = ACTIONS(3021), + [anon_sym_BANGin] = ACTIONS(3021), + [anon_sym_match] = ACTIONS(3021), + [anon_sym_select] = ACTIONS(3021), + [anon_sym_lock] = ACTIONS(3021), + [anon_sym_rlock] = ACTIONS(3021), + [anon_sym_unsafe] = ACTIONS(3021), + [anon_sym_sql] = ACTIONS(3021), + [sym_int_literal] = ACTIONS(3021), + [sym_float_literal] = ACTIONS(3021), + [sym_rune_literal] = ACTIONS(3021), + [anon_sym_SQUOTE] = ACTIONS(3021), + [anon_sym_DQUOTE] = ACTIONS(3021), + [anon_sym_c_SQUOTE] = ACTIONS(3021), + [anon_sym_c_DQUOTE] = ACTIONS(3021), + [anon_sym_r_SQUOTE] = ACTIONS(3021), + [anon_sym_r_DQUOTE] = ACTIONS(3021), + [sym_pseudo_compile_time_identifier] = ACTIONS(3021), + [anon_sym_shared] = ACTIONS(3021), + [anon_sym_map_LBRACK] = ACTIONS(3021), + [anon_sym_chan] = ACTIONS(3021), + [anon_sym_thread] = ACTIONS(3021), + [anon_sym_atomic] = ACTIONS(3021), + [anon_sym_assert] = ACTIONS(3021), + [anon_sym_defer] = ACTIONS(3021), + [anon_sym_goto] = ACTIONS(3021), + [anon_sym_break] = ACTIONS(3021), + [anon_sym_continue] = ACTIONS(3021), + [anon_sym_return] = ACTIONS(3021), + [anon_sym_DOLLARfor] = ACTIONS(3021), + [anon_sym_for] = ACTIONS(3021), + [anon_sym_POUND] = ACTIONS(3021), + [anon_sym_asm] = ACTIONS(3021), + [anon_sym_AT_LBRACK] = ACTIONS(3021), }, [1054] = { [sym_line_comment] = STATE(1054), [sym_block_comment] = STATE(1054), - [ts_builtin_sym_end] = ACTIONS(2888), - [sym_identifier] = ACTIONS(2890), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_CR] = ACTIONS(2890), - [anon_sym_CR_LF] = ACTIONS(2890), + [ts_builtin_sym_end] = ACTIONS(2243), + [sym_identifier] = ACTIONS(2245), + [anon_sym_LF] = ACTIONS(2245), + [anon_sym_CR] = ACTIONS(2245), + [anon_sym_CR_LF] = ACTIONS(2245), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2890), - [anon_sym_as] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(2890), - [anon_sym_const] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym___global] = ACTIONS(2890), - [anon_sym_type] = ACTIONS(2890), - [anon_sym_PIPE] = ACTIONS(2890), - [anon_sym_fn] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_SLASH] = ACTIONS(2890), - [anon_sym_PERCENT] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_GT] = ACTIONS(2890), - [anon_sym_EQ_EQ] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2890), - [anon_sym_LT_EQ] = ACTIONS(2890), - [anon_sym_GT_EQ] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_struct] = ACTIONS(2890), - [anon_sym_union] = ACTIONS(2890), - [anon_sym_pub] = ACTIONS(2890), - [anon_sym_mut] = ACTIONS(2890), - [anon_sym_enum] = ACTIONS(2890), - [anon_sym_interface] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2890), - [anon_sym_DASH_DASH] = ACTIONS(2890), - [anon_sym_QMARK] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2890), - [anon_sym_go] = ACTIONS(2890), - [anon_sym_spawn] = ACTIONS(2890), - [anon_sym_json_DOTdecode] = ACTIONS(2890), - [anon_sym_LBRACK2] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2890), - [anon_sym_CARET] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_LT_DASH] = ACTIONS(2890), - [anon_sym_LT_LT] = ACTIONS(2890), - [anon_sym_GT_GT] = ACTIONS(2890), - [anon_sym_GT_GT_GT] = ACTIONS(2890), - [anon_sym_AMP_CARET] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_or] = ACTIONS(2890), - [sym_none] = ACTIONS(2890), - [sym_true] = ACTIONS(2890), - [sym_false] = ACTIONS(2890), - [sym_nil] = ACTIONS(2890), - [anon_sym_QMARK_DOT] = ACTIONS(2890), - [anon_sym_POUND_LBRACK] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_DOLLARif] = ACTIONS(2890), - [anon_sym_is] = ACTIONS(2890), - [anon_sym_BANGis] = ACTIONS(2890), - [anon_sym_in] = ACTIONS(2890), - [anon_sym_BANGin] = ACTIONS(2890), - [anon_sym_match] = ACTIONS(2890), - [anon_sym_select] = ACTIONS(2890), - [anon_sym_lock] = ACTIONS(2890), - [anon_sym_rlock] = ACTIONS(2890), - [anon_sym_unsafe] = ACTIONS(2890), - [anon_sym_sql] = ACTIONS(2890), - [sym_int_literal] = ACTIONS(2890), - [sym_float_literal] = ACTIONS(2890), - [sym_rune_literal] = ACTIONS(2890), - [sym_pseudo_compile_time_identifier] = ACTIONS(2890), - [anon_sym_shared] = ACTIONS(2890), - [anon_sym_map_LBRACK] = ACTIONS(2890), - [anon_sym_chan] = ACTIONS(2890), - [anon_sym_thread] = ACTIONS(2890), - [anon_sym_atomic] = ACTIONS(2890), - [anon_sym_assert] = ACTIONS(2890), - [anon_sym_defer] = ACTIONS(2890), - [anon_sym_goto] = ACTIONS(2890), - [anon_sym_break] = ACTIONS(2890), - [anon_sym_continue] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_DOLLARfor] = ACTIONS(2890), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_POUND] = ACTIONS(2890), - [anon_sym_asm] = ACTIONS(2890), - [anon_sym_AT_LBRACK] = ACTIONS(2890), - [sym___double_quote] = ACTIONS(2890), - [sym___single_quote] = ACTIONS(2890), - [sym___c_double_quote] = ACTIONS(2890), - [sym___c_single_quote] = ACTIONS(2890), - [sym___r_double_quote] = ACTIONS(2890), - [sym___r_single_quote] = ACTIONS(2890), + [anon_sym_DOT] = ACTIONS(2245), + [anon_sym_as] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_COMMA] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym___global] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_fn] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_SLASH] = ACTIONS(2245), + [anon_sym_PERCENT] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_GT] = ACTIONS(2245), + [anon_sym_EQ_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ] = ACTIONS(2245), + [anon_sym_LT_EQ] = ACTIONS(2245), + [anon_sym_GT_EQ] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_struct] = ACTIONS(2245), + [anon_sym_union] = ACTIONS(2245), + [anon_sym_pub] = ACTIONS(2245), + [anon_sym_mut] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_QMARK] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_go] = ACTIONS(2245), + [anon_sym_spawn] = ACTIONS(2245), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_LT_DASH] = ACTIONS(2245), + [anon_sym_LT_LT] = ACTIONS(2245), + [anon_sym_GT_GT] = ACTIONS(2245), + [anon_sym_GT_GT_GT] = ACTIONS(2245), + [anon_sym_AMP_CARET] = ACTIONS(2245), + [anon_sym_AMP_AMP] = ACTIONS(2245), + [anon_sym_PIPE_PIPE] = ACTIONS(2245), + [anon_sym_or] = ACTIONS(2245), + [sym_none] = ACTIONS(2245), + [sym_true] = ACTIONS(2245), + [sym_false] = ACTIONS(2245), + [sym_nil] = ACTIONS(2245), + [anon_sym_QMARK_DOT] = ACTIONS(2245), + [anon_sym_POUND_LBRACK] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_DOLLARif] = ACTIONS(2245), + [anon_sym_is] = ACTIONS(2245), + [anon_sym_BANGis] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(2245), + [anon_sym_BANGin] = ACTIONS(2245), + [anon_sym_match] = ACTIONS(2245), + [anon_sym_select] = ACTIONS(2245), + [anon_sym_lock] = ACTIONS(2245), + [anon_sym_rlock] = ACTIONS(2245), + [anon_sym_unsafe] = ACTIONS(2245), + [anon_sym_sql] = ACTIONS(2245), + [sym_int_literal] = ACTIONS(2245), + [sym_float_literal] = ACTIONS(2245), + [sym_rune_literal] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [anon_sym_c_SQUOTE] = ACTIONS(2245), + [anon_sym_c_DQUOTE] = ACTIONS(2245), + [anon_sym_r_SQUOTE] = ACTIONS(2245), + [anon_sym_r_DQUOTE] = ACTIONS(2245), + [sym_pseudo_compile_time_identifier] = ACTIONS(2245), + [anon_sym_shared] = ACTIONS(2245), + [anon_sym_map_LBRACK] = ACTIONS(2245), + [anon_sym_chan] = ACTIONS(2245), + [anon_sym_thread] = ACTIONS(2245), + [anon_sym_atomic] = ACTIONS(2245), + [anon_sym_assert] = ACTIONS(2245), + [anon_sym_defer] = ACTIONS(2245), + [anon_sym_goto] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_DOLLARfor] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_POUND] = ACTIONS(2245), + [anon_sym_asm] = ACTIONS(2245), + [anon_sym_AT_LBRACK] = ACTIONS(2245), }, [1055] = { [sym_line_comment] = STATE(1055), [sym_block_comment] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(2892), - [sym_identifier] = ACTIONS(2894), - [anon_sym_LF] = ACTIONS(2894), - [anon_sym_CR] = ACTIONS(2894), - [anon_sym_CR_LF] = ACTIONS(2894), + [ts_builtin_sym_end] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LF] = ACTIONS(2237), + [anon_sym_CR] = ACTIONS(2237), + [anon_sym_CR_LF] = ACTIONS(2237), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_as] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_COMMA] = ACTIONS(2894), - [anon_sym_const] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym___global] = ACTIONS(2894), - [anon_sym_type] = ACTIONS(2894), - [anon_sym_PIPE] = ACTIONS(2894), - [anon_sym_fn] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_SLASH] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_GT] = ACTIONS(2894), - [anon_sym_EQ_EQ] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2894), - [anon_sym_LT_EQ] = ACTIONS(2894), - [anon_sym_GT_EQ] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_struct] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2894), - [anon_sym_pub] = ACTIONS(2894), - [anon_sym_mut] = ACTIONS(2894), - [anon_sym_enum] = ACTIONS(2894), - [anon_sym_interface] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2894), - [anon_sym_DASH_DASH] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_go] = ACTIONS(2894), - [anon_sym_spawn] = ACTIONS(2894), - [anon_sym_json_DOTdecode] = ACTIONS(2894), - [anon_sym_LBRACK2] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2894), - [anon_sym_CARET] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2894), - [anon_sym_LT_LT] = ACTIONS(2894), - [anon_sym_GT_GT] = ACTIONS(2894), - [anon_sym_GT_GT_GT] = ACTIONS(2894), - [anon_sym_AMP_CARET] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_PIPE_PIPE] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2894), - [sym_none] = ACTIONS(2894), - [sym_true] = ACTIONS(2894), - [sym_false] = ACTIONS(2894), - [sym_nil] = ACTIONS(2894), - [anon_sym_QMARK_DOT] = ACTIONS(2894), - [anon_sym_POUND_LBRACK] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_DOLLARif] = ACTIONS(2894), - [anon_sym_is] = ACTIONS(2894), - [anon_sym_BANGis] = ACTIONS(2894), - [anon_sym_in] = ACTIONS(2894), - [anon_sym_BANGin] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_select] = ACTIONS(2894), - [anon_sym_lock] = ACTIONS(2894), - [anon_sym_rlock] = ACTIONS(2894), - [anon_sym_unsafe] = ACTIONS(2894), - [anon_sym_sql] = ACTIONS(2894), - [sym_int_literal] = ACTIONS(2894), - [sym_float_literal] = ACTIONS(2894), - [sym_rune_literal] = ACTIONS(2894), - [sym_pseudo_compile_time_identifier] = ACTIONS(2894), - [anon_sym_shared] = ACTIONS(2894), - [anon_sym_map_LBRACK] = ACTIONS(2894), - [anon_sym_chan] = ACTIONS(2894), - [anon_sym_thread] = ACTIONS(2894), - [anon_sym_atomic] = ACTIONS(2894), - [anon_sym_assert] = ACTIONS(2894), - [anon_sym_defer] = ACTIONS(2894), - [anon_sym_goto] = ACTIONS(2894), - [anon_sym_break] = ACTIONS(2894), - [anon_sym_continue] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_DOLLARfor] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_POUND] = ACTIONS(2894), - [anon_sym_asm] = ACTIONS(2894), - [anon_sym_AT_LBRACK] = ACTIONS(2894), - [sym___double_quote] = ACTIONS(2894), - [sym___single_quote] = ACTIONS(2894), - [sym___c_double_quote] = ACTIONS(2894), - [sym___c_single_quote] = ACTIONS(2894), - [sym___r_double_quote] = ACTIONS(2894), - [sym___r_single_quote] = ACTIONS(2894), + [anon_sym_DOT] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_COMMA] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym___global] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_PERCENT] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_GT] = ACTIONS(2237), + [anon_sym_EQ_EQ] = ACTIONS(2237), + [anon_sym_BANG_EQ] = ACTIONS(2237), + [anon_sym_LT_EQ] = ACTIONS(2237), + [anon_sym_GT_EQ] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_mut] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_QMARK] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_go] = ACTIONS(2237), + [anon_sym_spawn] = ACTIONS(2237), + [anon_sym_json_DOTdecode] = ACTIONS(2237), + [anon_sym_LBRACK2] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_CARET] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_LT_DASH] = ACTIONS(2237), + [anon_sym_LT_LT] = ACTIONS(2237), + [anon_sym_GT_GT] = ACTIONS(2237), + [anon_sym_GT_GT_GT] = ACTIONS(2237), + [anon_sym_AMP_CARET] = ACTIONS(2237), + [anon_sym_AMP_AMP] = ACTIONS(2237), + [anon_sym_PIPE_PIPE] = ACTIONS(2237), + [anon_sym_or] = ACTIONS(2237), + [sym_none] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_nil] = ACTIONS(2237), + [anon_sym_QMARK_DOT] = ACTIONS(2237), + [anon_sym_POUND_LBRACK] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_DOLLARif] = ACTIONS(2237), + [anon_sym_is] = ACTIONS(2237), + [anon_sym_BANGis] = ACTIONS(2237), + [anon_sym_in] = ACTIONS(2237), + [anon_sym_BANGin] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_select] = ACTIONS(2237), + [anon_sym_lock] = ACTIONS(2237), + [anon_sym_rlock] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_sql] = ACTIONS(2237), + [sym_int_literal] = ACTIONS(2237), + [sym_float_literal] = ACTIONS(2237), + [sym_rune_literal] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2237), + [anon_sym_c_SQUOTE] = ACTIONS(2237), + [anon_sym_c_DQUOTE] = ACTIONS(2237), + [anon_sym_r_SQUOTE] = ACTIONS(2237), + [anon_sym_r_DQUOTE] = ACTIONS(2237), + [sym_pseudo_compile_time_identifier] = ACTIONS(2237), + [anon_sym_shared] = ACTIONS(2237), + [anon_sym_map_LBRACK] = ACTIONS(2237), + [anon_sym_chan] = ACTIONS(2237), + [anon_sym_thread] = ACTIONS(2237), + [anon_sym_atomic] = ACTIONS(2237), + [anon_sym_assert] = ACTIONS(2237), + [anon_sym_defer] = ACTIONS(2237), + [anon_sym_goto] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_DOLLARfor] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2237), + [anon_sym_AT_LBRACK] = ACTIONS(2237), }, [1056] = { [sym_line_comment] = STATE(1056), [sym_block_comment] = STATE(1056), - [ts_builtin_sym_end] = ACTIONS(2189), - [sym_identifier] = ACTIONS(2191), - [anon_sym_LF] = ACTIONS(2191), - [anon_sym_CR] = ACTIONS(2191), - [anon_sym_CR_LF] = ACTIONS(2191), + [ts_builtin_sym_end] = ACTIONS(3027), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LF] = ACTIONS(3029), + [anon_sym_CR] = ACTIONS(3029), + [anon_sym_CR_LF] = ACTIONS(3029), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_as] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_COMMA] = ACTIONS(2191), - [anon_sym_const] = ACTIONS(2191), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym___global] = ACTIONS(2191), - [anon_sym_type] = ACTIONS(2191), - [anon_sym_PIPE] = ACTIONS(2191), - [anon_sym_fn] = ACTIONS(2191), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_SLASH] = ACTIONS(2191), - [anon_sym_PERCENT] = ACTIONS(2191), - [anon_sym_LT] = ACTIONS(2191), - [anon_sym_GT] = ACTIONS(2191), - [anon_sym_EQ_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ] = ACTIONS(2191), - [anon_sym_LT_EQ] = ACTIONS(2191), - [anon_sym_GT_EQ] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_struct] = ACTIONS(2191), - [anon_sym_union] = ACTIONS(2191), - [anon_sym_pub] = ACTIONS(2191), - [anon_sym_mut] = ACTIONS(2191), - [anon_sym_enum] = ACTIONS(2191), - [anon_sym_interface] = ACTIONS(2191), - [anon_sym_PLUS_PLUS] = ACTIONS(2191), - [anon_sym_DASH_DASH] = ACTIONS(2191), - [anon_sym_QMARK] = ACTIONS(2191), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_go] = ACTIONS(2191), - [anon_sym_spawn] = ACTIONS(2191), - [anon_sym_json_DOTdecode] = ACTIONS(2191), - [anon_sym_LBRACK2] = ACTIONS(2191), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(2191), - [anon_sym_LT_LT] = ACTIONS(2191), - [anon_sym_GT_GT] = ACTIONS(2191), - [anon_sym_GT_GT_GT] = ACTIONS(2191), - [anon_sym_AMP_CARET] = ACTIONS(2191), - [anon_sym_AMP_AMP] = ACTIONS(2191), - [anon_sym_PIPE_PIPE] = ACTIONS(2191), - [anon_sym_or] = ACTIONS(2191), - [sym_none] = ACTIONS(2191), - [sym_true] = ACTIONS(2191), - [sym_false] = ACTIONS(2191), - [sym_nil] = ACTIONS(2191), - [anon_sym_QMARK_DOT] = ACTIONS(2191), - [anon_sym_POUND_LBRACK] = ACTIONS(2191), - [anon_sym_if] = ACTIONS(2191), - [anon_sym_DOLLARif] = ACTIONS(2191), - [anon_sym_is] = ACTIONS(2191), - [anon_sym_BANGis] = ACTIONS(2191), - [anon_sym_in] = ACTIONS(2191), - [anon_sym_BANGin] = ACTIONS(2191), - [anon_sym_match] = ACTIONS(2191), - [anon_sym_select] = ACTIONS(2191), - [anon_sym_lock] = ACTIONS(2191), - [anon_sym_rlock] = ACTIONS(2191), - [anon_sym_unsafe] = ACTIONS(2191), - [anon_sym_sql] = ACTIONS(2191), - [sym_int_literal] = ACTIONS(2191), - [sym_float_literal] = ACTIONS(2191), - [sym_rune_literal] = ACTIONS(2191), - [sym_pseudo_compile_time_identifier] = ACTIONS(2191), - [anon_sym_shared] = ACTIONS(2191), - [anon_sym_map_LBRACK] = ACTIONS(2191), - [anon_sym_chan] = ACTIONS(2191), - [anon_sym_thread] = ACTIONS(2191), - [anon_sym_atomic] = ACTIONS(2191), - [anon_sym_assert] = ACTIONS(2191), - [anon_sym_defer] = ACTIONS(2191), - [anon_sym_goto] = ACTIONS(2191), - [anon_sym_break] = ACTIONS(2191), - [anon_sym_continue] = ACTIONS(2191), - [anon_sym_return] = ACTIONS(2191), - [anon_sym_DOLLARfor] = ACTIONS(2191), - [anon_sym_for] = ACTIONS(2191), - [anon_sym_POUND] = ACTIONS(2191), - [anon_sym_asm] = ACTIONS(2191), - [anon_sym_AT_LBRACK] = ACTIONS(2191), - [sym___double_quote] = ACTIONS(2191), - [sym___single_quote] = ACTIONS(2191), - [sym___c_double_quote] = ACTIONS(2191), - [sym___c_single_quote] = ACTIONS(2191), - [sym___r_double_quote] = ACTIONS(2191), - [sym___r_single_quote] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(3029), + [anon_sym_as] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_const] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym___global] = ACTIONS(3029), + [anon_sym_type] = ACTIONS(3029), + [anon_sym_PIPE] = ACTIONS(3029), + [anon_sym_fn] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_SLASH] = ACTIONS(3029), + [anon_sym_PERCENT] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_GT] = ACTIONS(3029), + [anon_sym_EQ_EQ] = ACTIONS(3029), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_LT_EQ] = ACTIONS(3029), + [anon_sym_GT_EQ] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3029), + [anon_sym_union] = ACTIONS(3029), + [anon_sym_pub] = ACTIONS(3029), + [anon_sym_mut] = ACTIONS(3029), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_interface] = ACTIONS(3029), + [anon_sym_PLUS_PLUS] = ACTIONS(3029), + [anon_sym_DASH_DASH] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_go] = ACTIONS(3029), + [anon_sym_spawn] = ACTIONS(3029), + [anon_sym_json_DOTdecode] = ACTIONS(3029), + [anon_sym_LBRACK2] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_LT_DASH] = ACTIONS(3029), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_GT_GT_GT] = ACTIONS(3029), + [anon_sym_AMP_CARET] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_PIPE_PIPE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3029), + [sym_none] = ACTIONS(3029), + [sym_true] = ACTIONS(3029), + [sym_false] = ACTIONS(3029), + [sym_nil] = ACTIONS(3029), + [anon_sym_QMARK_DOT] = ACTIONS(3029), + [anon_sym_POUND_LBRACK] = ACTIONS(3029), + [anon_sym_if] = ACTIONS(3029), + [anon_sym_DOLLARif] = ACTIONS(3029), + [anon_sym_is] = ACTIONS(3029), + [anon_sym_BANGis] = ACTIONS(3029), + [anon_sym_in] = ACTIONS(3029), + [anon_sym_BANGin] = ACTIONS(3029), + [anon_sym_match] = ACTIONS(3029), + [anon_sym_select] = ACTIONS(3029), + [anon_sym_lock] = ACTIONS(3029), + [anon_sym_rlock] = ACTIONS(3029), + [anon_sym_unsafe] = ACTIONS(3029), + [anon_sym_sql] = ACTIONS(3029), + [sym_int_literal] = ACTIONS(3029), + [sym_float_literal] = ACTIONS(3029), + [sym_rune_literal] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE] = ACTIONS(3029), + [anon_sym_c_SQUOTE] = ACTIONS(3029), + [anon_sym_c_DQUOTE] = ACTIONS(3029), + [anon_sym_r_SQUOTE] = ACTIONS(3029), + [anon_sym_r_DQUOTE] = ACTIONS(3029), + [sym_pseudo_compile_time_identifier] = ACTIONS(3029), + [anon_sym_shared] = ACTIONS(3029), + [anon_sym_map_LBRACK] = ACTIONS(3029), + [anon_sym_chan] = ACTIONS(3029), + [anon_sym_thread] = ACTIONS(3029), + [anon_sym_atomic] = ACTIONS(3029), + [anon_sym_assert] = ACTIONS(3029), + [anon_sym_defer] = ACTIONS(3029), + [anon_sym_goto] = ACTIONS(3029), + [anon_sym_break] = ACTIONS(3029), + [anon_sym_continue] = ACTIONS(3029), + [anon_sym_return] = ACTIONS(3029), + [anon_sym_DOLLARfor] = ACTIONS(3029), + [anon_sym_for] = ACTIONS(3029), + [anon_sym_POUND] = ACTIONS(3029), + [anon_sym_asm] = ACTIONS(3029), + [anon_sym_AT_LBRACK] = ACTIONS(3029), }, [1057] = { [sym_line_comment] = STATE(1057), [sym_block_comment] = STATE(1057), - [ts_builtin_sym_end] = ACTIONS(2674), - [sym_identifier] = ACTIONS(2676), - [anon_sym_LF] = ACTIONS(2676), - [anon_sym_CR] = ACTIONS(2676), - [anon_sym_CR_LF] = ACTIONS(2676), + [ts_builtin_sym_end] = ACTIONS(2135), + [sym_identifier] = ACTIONS(2137), + [anon_sym_LF] = ACTIONS(2137), + [anon_sym_CR] = ACTIONS(2137), + [anon_sym_CR_LF] = ACTIONS(2137), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_COMMA] = ACTIONS(1987), - [anon_sym_const] = ACTIONS(2676), - [anon_sym_LPAREN] = ACTIONS(2676), - [anon_sym___global] = ACTIONS(2676), - [anon_sym_type] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_fn] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(2676), - [anon_sym_SLASH] = ACTIONS(2676), - [anon_sym_PERCENT] = ACTIONS(2676), - [anon_sym_LT] = ACTIONS(2676), - [anon_sym_GT] = ACTIONS(2676), - [anon_sym_EQ_EQ] = ACTIONS(2676), - [anon_sym_BANG_EQ] = ACTIONS(2676), - [anon_sym_LT_EQ] = ACTIONS(2676), - [anon_sym_GT_EQ] = ACTIONS(2676), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_struct] = ACTIONS(2676), - [anon_sym_union] = ACTIONS(2676), - [anon_sym_pub] = ACTIONS(2676), - [anon_sym_mut] = ACTIONS(2676), - [anon_sym_enum] = ACTIONS(2676), - [anon_sym_interface] = ACTIONS(2676), - [anon_sym_PLUS_PLUS] = ACTIONS(2676), - [anon_sym_DASH_DASH] = ACTIONS(2676), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(2676), - [anon_sym_go] = ACTIONS(2676), - [anon_sym_spawn] = ACTIONS(2676), - [anon_sym_json_DOTdecode] = ACTIONS(2676), - [anon_sym_LBRACK2] = ACTIONS(2676), - [anon_sym_TILDE] = ACTIONS(2676), - [anon_sym_CARET] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2676), - [anon_sym_LT_DASH] = ACTIONS(2676), - [anon_sym_LT_LT] = ACTIONS(2676), - [anon_sym_GT_GT] = ACTIONS(2676), - [anon_sym_GT_GT_GT] = ACTIONS(2676), - [anon_sym_AMP_CARET] = ACTIONS(2676), - [anon_sym_AMP_AMP] = ACTIONS(2676), - [anon_sym_PIPE_PIPE] = ACTIONS(2676), - [anon_sym_or] = ACTIONS(2676), - [sym_none] = ACTIONS(2676), - [sym_true] = ACTIONS(2676), - [sym_false] = ACTIONS(2676), - [sym_nil] = ACTIONS(2676), - [anon_sym_QMARK_DOT] = ACTIONS(2676), - [anon_sym_POUND_LBRACK] = ACTIONS(2676), - [anon_sym_if] = ACTIONS(2676), - [anon_sym_DOLLARif] = ACTIONS(2676), - [anon_sym_is] = ACTIONS(2676), - [anon_sym_BANGis] = ACTIONS(2676), - [anon_sym_in] = ACTIONS(2676), - [anon_sym_BANGin] = ACTIONS(2676), - [anon_sym_match] = ACTIONS(2676), - [anon_sym_select] = ACTIONS(2676), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2676), - [anon_sym_sql] = ACTIONS(2676), - [sym_int_literal] = ACTIONS(2676), - [sym_float_literal] = ACTIONS(2676), - [sym_rune_literal] = ACTIONS(2676), - [sym_pseudo_compile_time_identifier] = ACTIONS(2676), - [anon_sym_shared] = ACTIONS(2676), - [anon_sym_map_LBRACK] = ACTIONS(2676), - [anon_sym_chan] = ACTIONS(2676), - [anon_sym_thread] = ACTIONS(2676), - [anon_sym_atomic] = ACTIONS(2676), - [anon_sym_assert] = ACTIONS(2676), - [anon_sym_defer] = ACTIONS(2676), - [anon_sym_goto] = ACTIONS(2676), - [anon_sym_break] = ACTIONS(2676), - [anon_sym_continue] = ACTIONS(2676), - [anon_sym_return] = ACTIONS(2676), - [anon_sym_DOLLARfor] = ACTIONS(2676), - [anon_sym_for] = ACTIONS(2676), - [anon_sym_POUND] = ACTIONS(2676), - [anon_sym_asm] = ACTIONS(2676), - [anon_sym_AT_LBRACK] = ACTIONS(2676), - [sym___double_quote] = ACTIONS(2676), - [sym___single_quote] = ACTIONS(2676), - [sym___c_double_quote] = ACTIONS(2676), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2676), - [sym___r_single_quote] = ACTIONS(2676), + [anon_sym_DOT] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym___global] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_struct] = ACTIONS(2137), + [anon_sym_union] = ACTIONS(2137), + [anon_sym_pub] = ACTIONS(2137), + [anon_sym_mut] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [anon_sym_interface] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_QMARK] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(2137), + [anon_sym_spawn] = ACTIONS(2137), + [anon_sym_json_DOTdecode] = ACTIONS(2137), + [anon_sym_LBRACK2] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_LT_DASH] = ACTIONS(2137), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_AMP_CARET] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_or] = ACTIONS(2139), + [sym_none] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_nil] = ACTIONS(2137), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_POUND_LBRACK] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_DOLLARif] = ACTIONS(2137), + [anon_sym_is] = ACTIONS(2139), + [anon_sym_BANGis] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_BANGin] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2137), + [anon_sym_select] = ACTIONS(2137), + [anon_sym_lock] = ACTIONS(2137), + [anon_sym_rlock] = ACTIONS(2137), + [anon_sym_unsafe] = ACTIONS(2137), + [anon_sym_sql] = ACTIONS(2137), + [sym_int_literal] = ACTIONS(2137), + [sym_float_literal] = ACTIONS(2137), + [sym_rune_literal] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(2137), + [anon_sym_c_SQUOTE] = ACTIONS(2137), + [anon_sym_c_DQUOTE] = ACTIONS(2137), + [anon_sym_r_SQUOTE] = ACTIONS(2137), + [anon_sym_r_DQUOTE] = ACTIONS(2137), + [sym_pseudo_compile_time_identifier] = ACTIONS(2137), + [anon_sym_shared] = ACTIONS(2137), + [anon_sym_map_LBRACK] = ACTIONS(2137), + [anon_sym_chan] = ACTIONS(2137), + [anon_sym_thread] = ACTIONS(2137), + [anon_sym_atomic] = ACTIONS(2137), + [anon_sym_assert] = ACTIONS(2137), + [anon_sym_defer] = ACTIONS(2137), + [anon_sym_goto] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_DOLLARfor] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_POUND] = ACTIONS(2137), + [anon_sym_asm] = ACTIONS(2137), + [anon_sym_AT_LBRACK] = ACTIONS(2137), }, [1058] = { [sym_line_comment] = STATE(1058), [sym_block_comment] = STATE(1058), - [ts_builtin_sym_end] = ACTIONS(2666), - [sym_identifier] = ACTIONS(2668), - [anon_sym_LF] = ACTIONS(2668), - [anon_sym_CR] = ACTIONS(2668), - [anon_sym_CR_LF] = ACTIONS(2668), + [ts_builtin_sym_end] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_CR] = ACTIONS(2175), + [anon_sym_CR_LF] = ACTIONS(2175), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2668), - [anon_sym_as] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(2668), - [anon_sym_COMMA] = ACTIONS(2668), - [anon_sym_const] = ACTIONS(2668), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym___global] = ACTIONS(2668), - [anon_sym_type] = ACTIONS(2668), - [anon_sym_PIPE] = ACTIONS(2668), - [anon_sym_fn] = ACTIONS(2668), - [anon_sym_PLUS] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2668), - [anon_sym_STAR] = ACTIONS(2668), - [anon_sym_SLASH] = ACTIONS(2668), - [anon_sym_PERCENT] = ACTIONS(2668), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_EQ_EQ] = ACTIONS(2668), - [anon_sym_BANG_EQ] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2668), - [anon_sym_GT_EQ] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_struct] = ACTIONS(2668), - [anon_sym_union] = ACTIONS(2668), - [anon_sym_pub] = ACTIONS(2668), - [anon_sym_mut] = ACTIONS(2668), - [anon_sym_enum] = ACTIONS(2668), - [anon_sym_interface] = ACTIONS(2668), - [anon_sym_PLUS_PLUS] = ACTIONS(2668), - [anon_sym_DASH_DASH] = ACTIONS(2668), - [anon_sym_QMARK] = ACTIONS(2668), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_go] = ACTIONS(2668), - [anon_sym_spawn] = ACTIONS(2668), - [anon_sym_json_DOTdecode] = ACTIONS(2668), - [anon_sym_LBRACK2] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_CARET] = ACTIONS(2668), - [anon_sym_AMP] = ACTIONS(2668), - [anon_sym_LT_DASH] = ACTIONS(2668), - [anon_sym_LT_LT] = ACTIONS(2668), - [anon_sym_GT_GT] = ACTIONS(2668), - [anon_sym_GT_GT_GT] = ACTIONS(2668), - [anon_sym_AMP_CARET] = ACTIONS(2668), - [anon_sym_AMP_AMP] = ACTIONS(2668), - [anon_sym_PIPE_PIPE] = ACTIONS(2668), - [anon_sym_or] = ACTIONS(2668), - [sym_none] = ACTIONS(2668), - [sym_true] = ACTIONS(2668), - [sym_false] = ACTIONS(2668), - [sym_nil] = ACTIONS(2668), - [anon_sym_QMARK_DOT] = ACTIONS(2668), - [anon_sym_POUND_LBRACK] = ACTIONS(2668), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2668), - [anon_sym_is] = ACTIONS(2668), - [anon_sym_BANGis] = ACTIONS(2668), - [anon_sym_in] = ACTIONS(2668), - [anon_sym_BANGin] = ACTIONS(2668), - [anon_sym_match] = ACTIONS(2668), - [anon_sym_select] = ACTIONS(2668), - [anon_sym_lock] = ACTIONS(2668), - [anon_sym_rlock] = ACTIONS(2668), - [anon_sym_unsafe] = ACTIONS(2668), - [anon_sym_sql] = ACTIONS(2668), - [sym_int_literal] = ACTIONS(2668), - [sym_float_literal] = ACTIONS(2668), - [sym_rune_literal] = ACTIONS(2668), - [sym_pseudo_compile_time_identifier] = ACTIONS(2668), - [anon_sym_shared] = ACTIONS(2668), - [anon_sym_map_LBRACK] = ACTIONS(2668), - [anon_sym_chan] = ACTIONS(2668), - [anon_sym_thread] = ACTIONS(2668), - [anon_sym_atomic] = ACTIONS(2668), - [anon_sym_assert] = ACTIONS(2668), - [anon_sym_defer] = ACTIONS(2668), - [anon_sym_goto] = ACTIONS(2668), - [anon_sym_break] = ACTIONS(2668), - [anon_sym_continue] = ACTIONS(2668), - [anon_sym_return] = ACTIONS(2668), - [anon_sym_DOLLARfor] = ACTIONS(2668), - [anon_sym_for] = ACTIONS(2668), - [anon_sym_POUND] = ACTIONS(2668), - [anon_sym_asm] = ACTIONS(2668), - [anon_sym_AT_LBRACK] = ACTIONS(2668), - [sym___double_quote] = ACTIONS(2668), - [sym___single_quote] = ACTIONS(2668), - [sym___c_double_quote] = ACTIONS(2668), - [sym___c_single_quote] = ACTIONS(2668), - [sym___r_double_quote] = ACTIONS(2668), - [sym___r_single_quote] = ACTIONS(2668), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym___global] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_pub] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_AMP_CARET] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_POUND_LBRACK] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_c_SQUOTE] = ACTIONS(2175), + [anon_sym_c_DQUOTE] = ACTIONS(2175), + [anon_sym_r_SQUOTE] = ACTIONS(2175), + [anon_sym_r_DQUOTE] = ACTIONS(2175), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2175), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), + [anon_sym_assert] = ACTIONS(2175), + [anon_sym_defer] = ACTIONS(2175), + [anon_sym_goto] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_DOLLARfor] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_asm] = ACTIONS(2175), + [anon_sym_AT_LBRACK] = ACTIONS(2175), }, [1059] = { [sym_line_comment] = STATE(1059), [sym_block_comment] = STATE(1059), - [ts_builtin_sym_end] = ACTIONS(2852), - [sym_identifier] = ACTIONS(2854), - [anon_sym_LF] = ACTIONS(2854), - [anon_sym_CR] = ACTIONS(2854), - [anon_sym_CR_LF] = ACTIONS(2854), + [ts_builtin_sym_end] = ACTIONS(2131), + [sym_identifier] = ACTIONS(2133), + [anon_sym_LF] = ACTIONS(2133), + [anon_sym_CR] = ACTIONS(2133), + [anon_sym_CR_LF] = ACTIONS(2133), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_as] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2854), - [anon_sym_const] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym___global] = ACTIONS(2854), - [anon_sym_type] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_fn] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_SLASH] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_GT] = ACTIONS(2854), - [anon_sym_EQ_EQ] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2854), - [anon_sym_LT_EQ] = ACTIONS(2854), - [anon_sym_GT_EQ] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2852), - [anon_sym_struct] = ACTIONS(2854), - [anon_sym_union] = ACTIONS(2854), - [anon_sym_pub] = ACTIONS(2854), - [anon_sym_mut] = ACTIONS(2854), - [anon_sym_enum] = ACTIONS(2854), - [anon_sym_interface] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2854), - [anon_sym_go] = ACTIONS(2854), - [anon_sym_spawn] = ACTIONS(2854), - [anon_sym_json_DOTdecode] = ACTIONS(2854), - [anon_sym_LBRACK2] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2854), - [anon_sym_CARET] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_LT_LT] = ACTIONS(2854), - [anon_sym_GT_GT] = ACTIONS(2854), - [anon_sym_GT_GT_GT] = ACTIONS(2854), - [anon_sym_AMP_CARET] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_or] = ACTIONS(2854), - [sym_none] = ACTIONS(2854), - [sym_true] = ACTIONS(2854), - [sym_false] = ACTIONS(2854), - [sym_nil] = ACTIONS(2854), - [anon_sym_QMARK_DOT] = ACTIONS(2854), - [anon_sym_POUND_LBRACK] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_DOLLARif] = ACTIONS(2854), - [anon_sym_is] = ACTIONS(2854), - [anon_sym_BANGis] = ACTIONS(2854), - [anon_sym_in] = ACTIONS(2854), - [anon_sym_BANGin] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_select] = ACTIONS(2854), - [anon_sym_lock] = ACTIONS(2854), - [anon_sym_rlock] = ACTIONS(2854), - [anon_sym_unsafe] = ACTIONS(2854), - [anon_sym_sql] = ACTIONS(2854), - [sym_int_literal] = ACTIONS(2854), - [sym_float_literal] = ACTIONS(2854), - [sym_rune_literal] = ACTIONS(2854), - [sym_pseudo_compile_time_identifier] = ACTIONS(2854), - [anon_sym_shared] = ACTIONS(2854), - [anon_sym_map_LBRACK] = ACTIONS(2854), - [anon_sym_chan] = ACTIONS(2854), - [anon_sym_thread] = ACTIONS(2854), - [anon_sym_atomic] = ACTIONS(2854), - [anon_sym_assert] = ACTIONS(2854), - [anon_sym_defer] = ACTIONS(2854), - [anon_sym_goto] = ACTIONS(2854), - [anon_sym_break] = ACTIONS(2854), - [anon_sym_continue] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_DOLLARfor] = ACTIONS(2854), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_POUND] = ACTIONS(2854), - [anon_sym_asm] = ACTIONS(2854), - [anon_sym_AT_LBRACK] = ACTIONS(2854), - [sym___double_quote] = ACTIONS(2854), - [sym___single_quote] = ACTIONS(2854), - [sym___c_double_quote] = ACTIONS(2854), - [sym___c_single_quote] = ACTIONS(2854), - [sym___r_double_quote] = ACTIONS(2854), - [sym___r_single_quote] = ACTIONS(2854), + [anon_sym_DOT] = ACTIONS(2133), + [anon_sym_as] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_COMMA] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym___global] = ACTIONS(2133), + [anon_sym_type] = ACTIONS(2133), + [anon_sym_PIPE] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2133), + [anon_sym_SLASH] = ACTIONS(2133), + [anon_sym_PERCENT] = ACTIONS(2133), + [anon_sym_LT] = ACTIONS(2133), + [anon_sym_GT] = ACTIONS(2133), + [anon_sym_EQ_EQ] = ACTIONS(2133), + [anon_sym_BANG_EQ] = ACTIONS(2133), + [anon_sym_LT_EQ] = ACTIONS(2133), + [anon_sym_GT_EQ] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2133), + [anon_sym_union] = ACTIONS(2133), + [anon_sym_pub] = ACTIONS(2133), + [anon_sym_mut] = ACTIONS(2133), + [anon_sym_enum] = ACTIONS(2133), + [anon_sym_interface] = ACTIONS(2133), + [anon_sym_PLUS_PLUS] = ACTIONS(2133), + [anon_sym_DASH_DASH] = ACTIONS(2133), + [anon_sym_QMARK] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2133), + [anon_sym_go] = ACTIONS(2133), + [anon_sym_spawn] = ACTIONS(2133), + [anon_sym_json_DOTdecode] = ACTIONS(2133), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2133), + [anon_sym_CARET] = ACTIONS(2133), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(2133), + [anon_sym_LT_LT] = ACTIONS(2133), + [anon_sym_GT_GT] = ACTIONS(2133), + [anon_sym_GT_GT_GT] = ACTIONS(2133), + [anon_sym_AMP_CARET] = ACTIONS(2133), + [anon_sym_AMP_AMP] = ACTIONS(2133), + [anon_sym_PIPE_PIPE] = ACTIONS(2133), + [anon_sym_or] = ACTIONS(2133), + [sym_none] = ACTIONS(2133), + [sym_true] = ACTIONS(2133), + [sym_false] = ACTIONS(2133), + [sym_nil] = ACTIONS(2133), + [anon_sym_QMARK_DOT] = ACTIONS(2133), + [anon_sym_POUND_LBRACK] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_DOLLARif] = ACTIONS(2133), + [anon_sym_is] = ACTIONS(2133), + [anon_sym_BANGis] = ACTIONS(2133), + [anon_sym_in] = ACTIONS(2133), + [anon_sym_BANGin] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2133), + [anon_sym_rlock] = ACTIONS(2133), + [anon_sym_unsafe] = ACTIONS(2133), + [anon_sym_sql] = ACTIONS(2133), + [sym_int_literal] = ACTIONS(2133), + [sym_float_literal] = ACTIONS(2133), + [sym_rune_literal] = ACTIONS(2133), + [anon_sym_SQUOTE] = ACTIONS(2133), + [anon_sym_DQUOTE] = ACTIONS(2133), + [anon_sym_c_SQUOTE] = ACTIONS(2133), + [anon_sym_c_DQUOTE] = ACTIONS(2133), + [anon_sym_r_SQUOTE] = ACTIONS(2133), + [anon_sym_r_DQUOTE] = ACTIONS(2133), + [sym_pseudo_compile_time_identifier] = ACTIONS(2133), + [anon_sym_shared] = ACTIONS(2133), + [anon_sym_map_LBRACK] = ACTIONS(2133), + [anon_sym_chan] = ACTIONS(2133), + [anon_sym_thread] = ACTIONS(2133), + [anon_sym_atomic] = ACTIONS(2133), + [anon_sym_assert] = ACTIONS(2133), + [anon_sym_defer] = ACTIONS(2133), + [anon_sym_goto] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_DOLLARfor] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_POUND] = ACTIONS(2133), + [anon_sym_asm] = ACTIONS(2133), + [anon_sym_AT_LBRACK] = ACTIONS(2133), }, [1060] = { [sym_line_comment] = STATE(1060), [sym_block_comment] = STATE(1060), - [ts_builtin_sym_end] = ACTIONS(2786), - [sym_identifier] = ACTIONS(2788), - [anon_sym_LF] = ACTIONS(2788), - [anon_sym_CR] = ACTIONS(2788), - [anon_sym_CR_LF] = ACTIONS(2788), + [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(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2788), - [anon_sym_as] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_COMMA] = ACTIONS(2788), - [anon_sym_const] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2788), - [anon_sym___global] = ACTIONS(2788), - [anon_sym_type] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_fn] = ACTIONS(2788), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_SLASH] = ACTIONS(2788), - [anon_sym_PERCENT] = ACTIONS(2788), - [anon_sym_LT] = ACTIONS(2788), - [anon_sym_GT] = ACTIONS(2788), - [anon_sym_EQ_EQ] = ACTIONS(2788), - [anon_sym_BANG_EQ] = ACTIONS(2788), - [anon_sym_LT_EQ] = ACTIONS(2788), - [anon_sym_GT_EQ] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2788), - [anon_sym_union] = ACTIONS(2788), - [anon_sym_pub] = ACTIONS(2788), - [anon_sym_mut] = ACTIONS(2788), - [anon_sym_enum] = ACTIONS(2788), - [anon_sym_interface] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_QMARK] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_go] = ACTIONS(2788), - [anon_sym_spawn] = ACTIONS(2788), - [anon_sym_json_DOTdecode] = ACTIONS(2788), - [anon_sym_LBRACK2] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_CARET] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2788), - [anon_sym_LT_DASH] = ACTIONS(2788), - [anon_sym_LT_LT] = ACTIONS(2788), - [anon_sym_GT_GT] = ACTIONS(2788), - [anon_sym_GT_GT_GT] = ACTIONS(2788), - [anon_sym_AMP_CARET] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_PIPE_PIPE] = ACTIONS(2788), - [anon_sym_or] = ACTIONS(2788), - [sym_none] = ACTIONS(2788), - [sym_true] = ACTIONS(2788), - [sym_false] = ACTIONS(2788), - [sym_nil] = ACTIONS(2788), - [anon_sym_QMARK_DOT] = ACTIONS(2788), - [anon_sym_POUND_LBRACK] = ACTIONS(2788), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_DOLLARif] = ACTIONS(2788), - [anon_sym_is] = ACTIONS(2788), - [anon_sym_BANGis] = ACTIONS(2788), - [anon_sym_in] = ACTIONS(2788), - [anon_sym_BANGin] = ACTIONS(2788), - [anon_sym_match] = ACTIONS(2788), - [anon_sym_select] = ACTIONS(2788), - [anon_sym_lock] = ACTIONS(2788), - [anon_sym_rlock] = ACTIONS(2788), - [anon_sym_unsafe] = ACTIONS(2788), - [anon_sym_sql] = ACTIONS(2788), - [sym_int_literal] = ACTIONS(2788), - [sym_float_literal] = ACTIONS(2788), - [sym_rune_literal] = ACTIONS(2788), - [sym_pseudo_compile_time_identifier] = ACTIONS(2788), - [anon_sym_shared] = ACTIONS(2788), - [anon_sym_map_LBRACK] = ACTIONS(2788), - [anon_sym_chan] = ACTIONS(2788), - [anon_sym_thread] = ACTIONS(2788), - [anon_sym_atomic] = ACTIONS(2788), - [anon_sym_assert] = ACTIONS(2788), - [anon_sym_defer] = ACTIONS(2788), - [anon_sym_goto] = ACTIONS(2788), - [anon_sym_break] = ACTIONS(2788), - [anon_sym_continue] = ACTIONS(2788), - [anon_sym_return] = ACTIONS(2788), - [anon_sym_DOLLARfor] = ACTIONS(2788), - [anon_sym_for] = ACTIONS(2788), - [anon_sym_POUND] = ACTIONS(2788), - [anon_sym_asm] = ACTIONS(2788), - [anon_sym_AT_LBRACK] = ACTIONS(2788), - [sym___double_quote] = ACTIONS(2788), - [sym___single_quote] = ACTIONS(2788), - [sym___c_double_quote] = ACTIONS(2788), - [sym___c_single_quote] = ACTIONS(2788), - [sym___r_double_quote] = ACTIONS(2788), - [sym___r_single_quote] = ACTIONS(2788), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym___global] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_interface] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_defer] = ACTIONS(2147), + [anon_sym_goto] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_DOLLARfor] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_asm] = ACTIONS(2147), + [anon_sym_AT_LBRACK] = ACTIONS(2147), }, [1061] = { [sym_line_comment] = STATE(1061), [sym_block_comment] = STATE(1061), - [ts_builtin_sym_end] = ACTIONS(2896), - [sym_identifier] = ACTIONS(2898), - [anon_sym_LF] = ACTIONS(2898), - [anon_sym_CR] = ACTIONS(2898), - [anon_sym_CR_LF] = ACTIONS(2898), + [ts_builtin_sym_end] = ACTIONS(2053), + [sym_identifier] = ACTIONS(2055), + [anon_sym_LF] = ACTIONS(2055), + [anon_sym_CR] = ACTIONS(2055), + [anon_sym_CR_LF] = ACTIONS(2055), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_as] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_COMMA] = ACTIONS(2898), - [anon_sym_const] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym___global] = ACTIONS(2898), - [anon_sym_type] = ACTIONS(2898), - [anon_sym_PIPE] = ACTIONS(2898), - [anon_sym_fn] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_STAR] = ACTIONS(2898), - [anon_sym_SLASH] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2898), - [anon_sym_GT] = ACTIONS(2898), - [anon_sym_EQ_EQ] = ACTIONS(2898), - [anon_sym_BANG_EQ] = ACTIONS(2898), - [anon_sym_LT_EQ] = ACTIONS(2898), - [anon_sym_GT_EQ] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_struct] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_pub] = ACTIONS(2898), - [anon_sym_mut] = ACTIONS(2898), - [anon_sym_enum] = ACTIONS(2898), - [anon_sym_interface] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2898), - [anon_sym_DASH_DASH] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_go] = ACTIONS(2898), - [anon_sym_spawn] = ACTIONS(2898), - [anon_sym_json_DOTdecode] = ACTIONS(2898), - [anon_sym_LBRACK2] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2898), - [anon_sym_CARET] = ACTIONS(2898), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_LT_DASH] = ACTIONS(2898), - [anon_sym_LT_LT] = ACTIONS(2898), - [anon_sym_GT_GT] = ACTIONS(2898), - [anon_sym_GT_GT_GT] = ACTIONS(2898), - [anon_sym_AMP_CARET] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2898), - [anon_sym_or] = ACTIONS(2898), - [sym_none] = ACTIONS(2898), - [sym_true] = ACTIONS(2898), - [sym_false] = ACTIONS(2898), - [sym_nil] = ACTIONS(2898), - [anon_sym_QMARK_DOT] = ACTIONS(2898), - [anon_sym_POUND_LBRACK] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_DOLLARif] = ACTIONS(2898), - [anon_sym_is] = ACTIONS(2898), - [anon_sym_BANGis] = ACTIONS(2898), - [anon_sym_in] = ACTIONS(2898), - [anon_sym_BANGin] = ACTIONS(2898), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_select] = ACTIONS(2898), - [anon_sym_lock] = ACTIONS(2898), - [anon_sym_rlock] = ACTIONS(2898), - [anon_sym_unsafe] = ACTIONS(2898), - [anon_sym_sql] = ACTIONS(2898), - [sym_int_literal] = ACTIONS(2898), - [sym_float_literal] = ACTIONS(2898), - [sym_rune_literal] = ACTIONS(2898), - [sym_pseudo_compile_time_identifier] = ACTIONS(2898), - [anon_sym_shared] = ACTIONS(2898), - [anon_sym_map_LBRACK] = ACTIONS(2898), - [anon_sym_chan] = ACTIONS(2898), - [anon_sym_thread] = ACTIONS(2898), - [anon_sym_atomic] = ACTIONS(2898), - [anon_sym_assert] = ACTIONS(2898), - [anon_sym_defer] = ACTIONS(2898), - [anon_sym_goto] = ACTIONS(2898), - [anon_sym_break] = ACTIONS(2898), - [anon_sym_continue] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_DOLLARfor] = ACTIONS(2898), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_POUND] = ACTIONS(2898), - [anon_sym_asm] = ACTIONS(2898), - [anon_sym_AT_LBRACK] = ACTIONS(2898), - [sym___double_quote] = ACTIONS(2898), - [sym___single_quote] = ACTIONS(2898), - [sym___c_double_quote] = ACTIONS(2898), - [sym___c_single_quote] = ACTIONS(2898), - [sym___r_double_quote] = ACTIONS(2898), - [sym___r_single_quote] = ACTIONS(2898), + [anon_sym_DOT] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_COMMA] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym___global] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(2055), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_PERCENT] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_EQ_EQ] = ACTIONS(2055), + [anon_sym_BANG_EQ] = ACTIONS(2055), + [anon_sym_LT_EQ] = ACTIONS(2055), + [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_struct] = ACTIONS(2055), + [anon_sym_union] = ACTIONS(2055), + [anon_sym_pub] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), + [anon_sym_enum] = ACTIONS(2055), + [anon_sym_interface] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_QMARK] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2055), + [anon_sym_spawn] = ACTIONS(2055), + [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_LBRACK2] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_LT] = ACTIONS(2055), + [anon_sym_GT_GT] = ACTIONS(2055), + [anon_sym_GT_GT_GT] = ACTIONS(2055), + [anon_sym_AMP_CARET] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2055), + [anon_sym_PIPE_PIPE] = ACTIONS(2055), + [anon_sym_or] = ACTIONS(2055), + [sym_none] = ACTIONS(2055), + [sym_true] = ACTIONS(2055), + [sym_false] = ACTIONS(2055), + [sym_nil] = ACTIONS(2055), + [anon_sym_QMARK_DOT] = ACTIONS(2055), + [anon_sym_POUND_LBRACK] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_DOLLARif] = ACTIONS(2055), + [anon_sym_is] = ACTIONS(2055), + [anon_sym_BANGis] = ACTIONS(2055), + [anon_sym_in] = ACTIONS(2055), + [anon_sym_BANGin] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_select] = ACTIONS(2055), + [anon_sym_lock] = ACTIONS(2055), + [anon_sym_rlock] = ACTIONS(2055), + [anon_sym_unsafe] = ACTIONS(2055), + [anon_sym_sql] = ACTIONS(2055), + [sym_int_literal] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), + [sym_rune_literal] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2055), + [anon_sym_c_SQUOTE] = ACTIONS(2055), + [anon_sym_c_DQUOTE] = ACTIONS(2055), + [anon_sym_r_SQUOTE] = ACTIONS(2055), + [anon_sym_r_DQUOTE] = ACTIONS(2055), + [sym_pseudo_compile_time_identifier] = ACTIONS(2055), + [anon_sym_shared] = ACTIONS(2055), + [anon_sym_map_LBRACK] = ACTIONS(2055), + [anon_sym_chan] = ACTIONS(2055), + [anon_sym_thread] = ACTIONS(2055), + [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_assert] = ACTIONS(2055), + [anon_sym_defer] = ACTIONS(2055), + [anon_sym_goto] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_DOLLARfor] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(2055), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym_AT_LBRACK] = ACTIONS(2055), }, [1062] = { [sym_line_comment] = STATE(1062), [sym_block_comment] = STATE(1062), - [ts_builtin_sym_end] = ACTIONS(2834), - [sym_identifier] = ACTIONS(2836), - [anon_sym_LF] = ACTIONS(2836), - [anon_sym_CR] = ACTIONS(2836), - [anon_sym_CR_LF] = ACTIONS(2836), + [ts_builtin_sym_end] = ACTIONS(2161), + [sym_identifier] = ACTIONS(2163), + [anon_sym_LF] = ACTIONS(2163), + [anon_sym_CR] = ACTIONS(2163), + [anon_sym_CR_LF] = ACTIONS(2163), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2836), - [anon_sym_as] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2836), - [anon_sym___global] = ACTIONS(2836), - [anon_sym_type] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_fn] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2836), - [anon_sym_SLASH] = ACTIONS(2836), - [anon_sym_PERCENT] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_GT] = ACTIONS(2836), - [anon_sym_EQ_EQ] = ACTIONS(2836), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_LT_EQ] = ACTIONS(2836), - [anon_sym_GT_EQ] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [anon_sym_pub] = ACTIONS(2836), - [anon_sym_mut] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_interface] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_QMARK] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_go] = ACTIONS(2836), - [anon_sym_spawn] = ACTIONS(2836), - [anon_sym_json_DOTdecode] = ACTIONS(2836), - [anon_sym_LBRACK2] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2836), - [anon_sym_CARET] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_LT_DASH] = ACTIONS(2836), - [anon_sym_LT_LT] = ACTIONS(2836), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_GT_GT_GT] = ACTIONS(2836), - [anon_sym_AMP_CARET] = ACTIONS(2836), - [anon_sym_AMP_AMP] = ACTIONS(2836), - [anon_sym_PIPE_PIPE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2836), - [sym_none] = ACTIONS(2836), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [sym_nil] = ACTIONS(2836), - [anon_sym_QMARK_DOT] = ACTIONS(2836), - [anon_sym_POUND_LBRACK] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_DOLLARif] = ACTIONS(2836), - [anon_sym_is] = ACTIONS(2836), - [anon_sym_BANGis] = ACTIONS(2836), - [anon_sym_in] = ACTIONS(2836), - [anon_sym_BANGin] = ACTIONS(2836), - [anon_sym_match] = ACTIONS(2836), - [anon_sym_select] = ACTIONS(2836), - [anon_sym_lock] = ACTIONS(2836), - [anon_sym_rlock] = ACTIONS(2836), - [anon_sym_unsafe] = ACTIONS(2836), - [anon_sym_sql] = ACTIONS(2836), - [sym_int_literal] = ACTIONS(2836), - [sym_float_literal] = ACTIONS(2836), - [sym_rune_literal] = ACTIONS(2836), - [sym_pseudo_compile_time_identifier] = ACTIONS(2836), - [anon_sym_shared] = ACTIONS(2836), - [anon_sym_map_LBRACK] = ACTIONS(2836), - [anon_sym_chan] = ACTIONS(2836), - [anon_sym_thread] = ACTIONS(2836), - [anon_sym_atomic] = ACTIONS(2836), - [anon_sym_assert] = ACTIONS(2836), - [anon_sym_defer] = ACTIONS(2836), - [anon_sym_goto] = ACTIONS(2836), - [anon_sym_break] = ACTIONS(2836), - [anon_sym_continue] = ACTIONS(2836), - [anon_sym_return] = ACTIONS(2836), - [anon_sym_DOLLARfor] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(2836), - [anon_sym_asm] = ACTIONS(2836), - [anon_sym_AT_LBRACK] = ACTIONS(2836), - [sym___double_quote] = ACTIONS(2836), - [sym___single_quote] = ACTIONS(2836), - [sym___c_double_quote] = ACTIONS(2836), - [sym___c_single_quote] = ACTIONS(2836), - [sym___r_double_quote] = ACTIONS(2836), - [sym___r_single_quote] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2163), + [anon_sym_as] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym___global] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_fn] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2163), + [anon_sym_PERCENT] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2163), + [anon_sym_GT] = ACTIONS(2163), + [anon_sym_EQ_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ] = ACTIONS(2163), + [anon_sym_LT_EQ] = ACTIONS(2163), + [anon_sym_GT_EQ] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2163), + [anon_sym_union] = ACTIONS(2163), + [anon_sym_pub] = ACTIONS(2163), + [anon_sym_mut] = ACTIONS(2163), + [anon_sym_enum] = ACTIONS(2163), + [anon_sym_interface] = ACTIONS(2163), + [anon_sym_PLUS_PLUS] = ACTIONS(2163), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [anon_sym_QMARK] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_go] = ACTIONS(2163), + [anon_sym_spawn] = ACTIONS(2163), + [anon_sym_json_DOTdecode] = ACTIONS(2163), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_CARET] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2163), + [anon_sym_LT_DASH] = ACTIONS(2163), + [anon_sym_LT_LT] = ACTIONS(2163), + [anon_sym_GT_GT] = ACTIONS(2163), + [anon_sym_GT_GT_GT] = ACTIONS(2163), + [anon_sym_AMP_CARET] = ACTIONS(2163), + [anon_sym_AMP_AMP] = ACTIONS(2163), + [anon_sym_PIPE_PIPE] = ACTIONS(2163), + [anon_sym_or] = ACTIONS(2163), + [sym_none] = ACTIONS(2163), + [sym_true] = ACTIONS(2163), + [sym_false] = ACTIONS(2163), + [sym_nil] = ACTIONS(2163), + [anon_sym_QMARK_DOT] = ACTIONS(2163), + [anon_sym_POUND_LBRACK] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_DOLLARif] = ACTIONS(2163), + [anon_sym_is] = ACTIONS(2163), + [anon_sym_BANGis] = ACTIONS(2163), + [anon_sym_in] = ACTIONS(2163), + [anon_sym_BANGin] = ACTIONS(2163), + [anon_sym_match] = ACTIONS(2163), + [anon_sym_select] = ACTIONS(2163), + [anon_sym_lock] = ACTIONS(2163), + [anon_sym_rlock] = ACTIONS(2163), + [anon_sym_unsafe] = ACTIONS(2163), + [anon_sym_sql] = ACTIONS(2163), + [sym_int_literal] = ACTIONS(2163), + [sym_float_literal] = ACTIONS(2163), + [sym_rune_literal] = ACTIONS(2163), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [anon_sym_c_SQUOTE] = ACTIONS(2163), + [anon_sym_c_DQUOTE] = ACTIONS(2163), + [anon_sym_r_SQUOTE] = ACTIONS(2163), + [anon_sym_r_DQUOTE] = ACTIONS(2163), + [sym_pseudo_compile_time_identifier] = ACTIONS(2163), + [anon_sym_shared] = ACTIONS(2163), + [anon_sym_map_LBRACK] = ACTIONS(2163), + [anon_sym_chan] = ACTIONS(2163), + [anon_sym_thread] = ACTIONS(2163), + [anon_sym_atomic] = ACTIONS(2163), + [anon_sym_assert] = ACTIONS(2163), + [anon_sym_defer] = ACTIONS(2163), + [anon_sym_goto] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_DOLLARfor] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_POUND] = ACTIONS(2163), + [anon_sym_asm] = ACTIONS(2163), + [anon_sym_AT_LBRACK] = ACTIONS(2163), }, [1063] = { [sym_line_comment] = STATE(1063), [sym_block_comment] = STATE(1063), - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_LF] = ACTIONS(2828), - [anon_sym_CR] = ACTIONS(2828), - [anon_sym_CR_LF] = ACTIONS(2828), + [ts_builtin_sym_end] = ACTIONS(2885), + [sym_identifier] = ACTIONS(2887), + [anon_sym_LF] = ACTIONS(2887), + [anon_sym_CR] = ACTIONS(2887), + [anon_sym_CR_LF] = ACTIONS(2887), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_as] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_const] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym___global] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_EQ_EQ] = ACTIONS(2828), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_LT_EQ] = ACTIONS(2828), - [anon_sym_GT_EQ] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_union] = ACTIONS(2828), - [anon_sym_pub] = ACTIONS(2828), - [anon_sym_mut] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [anon_sym_interface] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_go] = ACTIONS(2828), - [anon_sym_spawn] = ACTIONS(2828), - [anon_sym_json_DOTdecode] = ACTIONS(2828), - [anon_sym_LBRACK2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_CARET] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_LT_DASH] = ACTIONS(2828), - [anon_sym_LT_LT] = ACTIONS(2828), - [anon_sym_GT_GT] = ACTIONS(2828), - [anon_sym_GT_GT_GT] = ACTIONS(2828), - [anon_sym_AMP_CARET] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_PIPE_PIPE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2828), - [sym_none] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_nil] = ACTIONS(2828), - [anon_sym_QMARK_DOT] = ACTIONS(2828), - [anon_sym_POUND_LBRACK] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_DOLLARif] = ACTIONS(2828), - [anon_sym_is] = ACTIONS(2828), - [anon_sym_BANGis] = ACTIONS(2828), - [anon_sym_in] = ACTIONS(2828), - [anon_sym_BANGin] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_select] = ACTIONS(2828), - [anon_sym_lock] = ACTIONS(2828), - [anon_sym_rlock] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_sql] = ACTIONS(2828), - [sym_int_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2828), - [sym_rune_literal] = ACTIONS(2828), - [sym_pseudo_compile_time_identifier] = ACTIONS(2828), - [anon_sym_shared] = ACTIONS(2828), - [anon_sym_map_LBRACK] = ACTIONS(2828), - [anon_sym_chan] = ACTIONS(2828), - [anon_sym_thread] = ACTIONS(2828), - [anon_sym_atomic] = ACTIONS(2828), - [anon_sym_assert] = ACTIONS(2828), - [anon_sym_defer] = ACTIONS(2828), - [anon_sym_goto] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_DOLLARfor] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_POUND] = ACTIONS(2828), - [anon_sym_asm] = ACTIONS(2828), - [anon_sym_AT_LBRACK] = ACTIONS(2828), - [sym___double_quote] = ACTIONS(2828), - [sym___single_quote] = ACTIONS(2828), - [sym___c_double_quote] = ACTIONS(2828), - [sym___c_single_quote] = ACTIONS(2828), - [sym___r_double_quote] = ACTIONS(2828), - [sym___r_single_quote] = ACTIONS(2828), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_as] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_COMMA] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym___global] = ACTIONS(2887), + [anon_sym_type] = ACTIONS(2887), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_fn] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2887), + [anon_sym_BANG_EQ] = ACTIONS(2887), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_pub] = ACTIONS(2887), + [anon_sym_mut] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_interface] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2887), + [anon_sym_QMARK] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2887), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2887), + [anon_sym_json_DOTdecode] = ACTIONS(2887), + [anon_sym_LBRACK2] = ACTIONS(2887), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_CARET] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_GT_GT_GT] = ACTIONS(2887), + [anon_sym_AMP_CARET] = ACTIONS(2887), + [anon_sym_AMP_AMP] = ACTIONS(2887), + [anon_sym_PIPE_PIPE] = ACTIONS(2887), + [anon_sym_or] = ACTIONS(2887), + [sym_none] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_nil] = ACTIONS(2887), + [anon_sym_QMARK_DOT] = ACTIONS(2887), + [anon_sym_POUND_LBRACK] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_DOLLARif] = ACTIONS(2887), + [anon_sym_is] = ACTIONS(2887), + [anon_sym_BANGis] = ACTIONS(2887), + [anon_sym_in] = ACTIONS(2887), + [anon_sym_BANGin] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2887), + [anon_sym_select] = ACTIONS(2887), + [anon_sym_lock] = ACTIONS(2887), + [anon_sym_rlock] = ACTIONS(2887), + [anon_sym_unsafe] = ACTIONS(2887), + [anon_sym_sql] = ACTIONS(2887), + [sym_int_literal] = ACTIONS(2887), + [sym_float_literal] = ACTIONS(2887), + [sym_rune_literal] = ACTIONS(2887), + [anon_sym_SQUOTE] = ACTIONS(2887), + [anon_sym_DQUOTE] = ACTIONS(2887), + [anon_sym_c_SQUOTE] = ACTIONS(2887), + [anon_sym_c_DQUOTE] = ACTIONS(2887), + [anon_sym_r_SQUOTE] = ACTIONS(2887), + [anon_sym_r_DQUOTE] = ACTIONS(2887), + [sym_pseudo_compile_time_identifier] = ACTIONS(2887), + [anon_sym_shared] = ACTIONS(2887), + [anon_sym_map_LBRACK] = ACTIONS(2887), + [anon_sym_chan] = ACTIONS(2887), + [anon_sym_thread] = ACTIONS(2887), + [anon_sym_atomic] = ACTIONS(2887), + [anon_sym_assert] = ACTIONS(2887), + [anon_sym_defer] = ACTIONS(2887), + [anon_sym_goto] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_DOLLARfor] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_POUND] = ACTIONS(2887), + [anon_sym_asm] = ACTIONS(2887), + [anon_sym_AT_LBRACK] = ACTIONS(2887), }, [1064] = { [sym_line_comment] = STATE(1064), [sym_block_comment] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(2291), - [sym_identifier] = ACTIONS(2293), - [anon_sym_LF] = ACTIONS(2293), - [anon_sym_CR] = ACTIONS(2293), - [anon_sym_CR_LF] = ACTIONS(2293), + [ts_builtin_sym_end] = ACTIONS(2747), + [sym_identifier] = ACTIONS(2749), + [anon_sym_LF] = ACTIONS(2749), + [anon_sym_CR] = ACTIONS(2749), + [anon_sym_CR_LF] = ACTIONS(2749), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2293), - [anon_sym_as] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2293), - [anon_sym_COMMA] = ACTIONS(2293), - [anon_sym_const] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym___global] = ACTIONS(2293), - [anon_sym_type] = ACTIONS(2293), - [anon_sym_PIPE] = ACTIONS(2293), - [anon_sym_fn] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2293), - [anon_sym_SLASH] = ACTIONS(2293), - [anon_sym_PERCENT] = ACTIONS(2293), - [anon_sym_LT] = ACTIONS(2293), - [anon_sym_GT] = ACTIONS(2293), - [anon_sym_EQ_EQ] = ACTIONS(2293), - [anon_sym_BANG_EQ] = ACTIONS(2293), - [anon_sym_LT_EQ] = ACTIONS(2293), - [anon_sym_GT_EQ] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_struct] = ACTIONS(2293), - [anon_sym_union] = ACTIONS(2293), - [anon_sym_pub] = ACTIONS(2293), - [anon_sym_mut] = ACTIONS(2293), - [anon_sym_enum] = ACTIONS(2293), - [anon_sym_interface] = ACTIONS(2293), - [anon_sym_PLUS_PLUS] = ACTIONS(2293), - [anon_sym_DASH_DASH] = ACTIONS(2293), - [anon_sym_QMARK] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_go] = ACTIONS(2293), - [anon_sym_spawn] = ACTIONS(2293), - [anon_sym_json_DOTdecode] = ACTIONS(2293), - [anon_sym_LBRACK2] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2293), - [anon_sym_CARET] = ACTIONS(2293), - [anon_sym_AMP] = ACTIONS(2293), - [anon_sym_LT_DASH] = ACTIONS(2293), - [anon_sym_LT_LT] = ACTIONS(2293), - [anon_sym_GT_GT] = ACTIONS(2293), - [anon_sym_GT_GT_GT] = ACTIONS(2293), - [anon_sym_AMP_CARET] = ACTIONS(2293), - [anon_sym_AMP_AMP] = ACTIONS(2293), - [anon_sym_PIPE_PIPE] = ACTIONS(2293), - [anon_sym_or] = ACTIONS(2293), - [sym_none] = ACTIONS(2293), - [sym_true] = ACTIONS(2293), - [sym_false] = ACTIONS(2293), - [sym_nil] = ACTIONS(2293), - [anon_sym_QMARK_DOT] = ACTIONS(2293), - [anon_sym_POUND_LBRACK] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_DOLLARif] = ACTIONS(2293), - [anon_sym_is] = ACTIONS(2293), - [anon_sym_BANGis] = ACTIONS(2293), - [anon_sym_in] = ACTIONS(2293), - [anon_sym_BANGin] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(2293), - [anon_sym_select] = ACTIONS(2293), - [anon_sym_lock] = ACTIONS(2293), - [anon_sym_rlock] = ACTIONS(2293), - [anon_sym_unsafe] = ACTIONS(2293), - [anon_sym_sql] = ACTIONS(2293), - [sym_int_literal] = ACTIONS(2293), - [sym_float_literal] = ACTIONS(2293), - [sym_rune_literal] = ACTIONS(2293), - [sym_pseudo_compile_time_identifier] = ACTIONS(2293), - [anon_sym_shared] = ACTIONS(2293), - [anon_sym_map_LBRACK] = ACTIONS(2293), - [anon_sym_chan] = ACTIONS(2293), - [anon_sym_thread] = ACTIONS(2293), - [anon_sym_atomic] = ACTIONS(2293), - [anon_sym_assert] = ACTIONS(2293), - [anon_sym_defer] = ACTIONS(2293), - [anon_sym_goto] = ACTIONS(2293), - [anon_sym_break] = ACTIONS(2293), - [anon_sym_continue] = ACTIONS(2293), - [anon_sym_return] = ACTIONS(2293), - [anon_sym_DOLLARfor] = ACTIONS(2293), - [anon_sym_for] = ACTIONS(2293), - [anon_sym_POUND] = ACTIONS(2293), - [anon_sym_asm] = ACTIONS(2293), - [anon_sym_AT_LBRACK] = ACTIONS(2293), - [sym___double_quote] = ACTIONS(2293), - [sym___single_quote] = ACTIONS(2293), - [sym___c_double_quote] = ACTIONS(2293), - [sym___c_single_quote] = ACTIONS(2293), - [sym___r_double_quote] = ACTIONS(2293), - [sym___r_single_quote] = ACTIONS(2293), + [anon_sym_DOT] = ACTIONS(2749), + [anon_sym_as] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_COMMA] = ACTIONS(2749), + [anon_sym_const] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(2749), + [anon_sym___global] = ACTIONS(2749), + [anon_sym_type] = ACTIONS(2749), + [anon_sym_PIPE] = ACTIONS(2749), + [anon_sym_fn] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_SLASH] = ACTIONS(2749), + [anon_sym_PERCENT] = ACTIONS(2749), + [anon_sym_LT] = ACTIONS(2749), + [anon_sym_GT] = ACTIONS(2749), + [anon_sym_EQ_EQ] = ACTIONS(2749), + [anon_sym_BANG_EQ] = ACTIONS(2749), + [anon_sym_LT_EQ] = ACTIONS(2749), + [anon_sym_GT_EQ] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2749), + [anon_sym_union] = ACTIONS(2749), + [anon_sym_pub] = ACTIONS(2749), + [anon_sym_mut] = ACTIONS(2749), + [anon_sym_enum] = ACTIONS(2749), + [anon_sym_interface] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_QMARK] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_go] = ACTIONS(2749), + [anon_sym_spawn] = ACTIONS(2749), + [anon_sym_json_DOTdecode] = ACTIONS(2749), + [anon_sym_LBRACK2] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_CARET] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_LT_DASH] = ACTIONS(2749), + [anon_sym_LT_LT] = ACTIONS(2749), + [anon_sym_GT_GT] = ACTIONS(2749), + [anon_sym_GT_GT_GT] = ACTIONS(2749), + [anon_sym_AMP_CARET] = ACTIONS(2749), + [anon_sym_AMP_AMP] = ACTIONS(2749), + [anon_sym_PIPE_PIPE] = ACTIONS(2749), + [anon_sym_or] = ACTIONS(2749), + [sym_none] = ACTIONS(2749), + [sym_true] = ACTIONS(2749), + [sym_false] = ACTIONS(2749), + [sym_nil] = ACTIONS(2749), + [anon_sym_QMARK_DOT] = ACTIONS(2749), + [anon_sym_POUND_LBRACK] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_DOLLARif] = ACTIONS(2749), + [anon_sym_is] = ACTIONS(2749), + [anon_sym_BANGis] = ACTIONS(2749), + [anon_sym_in] = ACTIONS(2749), + [anon_sym_BANGin] = ACTIONS(2749), + [anon_sym_match] = ACTIONS(2749), + [anon_sym_select] = ACTIONS(2749), + [anon_sym_lock] = ACTIONS(2749), + [anon_sym_rlock] = ACTIONS(2749), + [anon_sym_unsafe] = ACTIONS(2749), + [anon_sym_sql] = ACTIONS(2749), + [sym_int_literal] = ACTIONS(2749), + [sym_float_literal] = ACTIONS(2749), + [sym_rune_literal] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [anon_sym_c_SQUOTE] = ACTIONS(2749), + [anon_sym_c_DQUOTE] = ACTIONS(2749), + [anon_sym_r_SQUOTE] = ACTIONS(2749), + [anon_sym_r_DQUOTE] = ACTIONS(2749), + [sym_pseudo_compile_time_identifier] = ACTIONS(2749), + [anon_sym_shared] = ACTIONS(2749), + [anon_sym_map_LBRACK] = ACTIONS(2749), + [anon_sym_chan] = ACTIONS(2749), + [anon_sym_thread] = ACTIONS(2749), + [anon_sym_atomic] = ACTIONS(2749), + [anon_sym_assert] = ACTIONS(2749), + [anon_sym_defer] = ACTIONS(2749), + [anon_sym_goto] = ACTIONS(2749), + [anon_sym_break] = ACTIONS(2749), + [anon_sym_continue] = ACTIONS(2749), + [anon_sym_return] = ACTIONS(2749), + [anon_sym_DOLLARfor] = ACTIONS(2749), + [anon_sym_for] = ACTIONS(2749), + [anon_sym_POUND] = ACTIONS(2749), + [anon_sym_asm] = ACTIONS(2749), + [anon_sym_AT_LBRACK] = ACTIONS(2749), }, [1065] = { [sym_line_comment] = STATE(1065), [sym_block_comment] = STATE(1065), - [ts_builtin_sym_end] = ACTIONS(2678), - [sym_identifier] = ACTIONS(2680), - [anon_sym_LF] = ACTIONS(2680), - [anon_sym_CR] = ACTIONS(2680), - [anon_sym_CR_LF] = ACTIONS(2680), + [ts_builtin_sym_end] = ACTIONS(2031), + [sym_identifier] = ACTIONS(2029), + [anon_sym_LF] = ACTIONS(2029), + [anon_sym_CR] = ACTIONS(2029), + [anon_sym_CR_LF] = ACTIONS(2029), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2680), - [anon_sym_as] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_COMMA] = ACTIONS(2680), - [anon_sym_const] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2680), - [anon_sym___global] = ACTIONS(2680), - [anon_sym_type] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_fn] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_STAR] = ACTIONS(2680), - [anon_sym_SLASH] = ACTIONS(2680), - [anon_sym_PERCENT] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2680), - [anon_sym_GT] = ACTIONS(2680), - [anon_sym_EQ_EQ] = ACTIONS(2680), - [anon_sym_BANG_EQ] = ACTIONS(2680), - [anon_sym_LT_EQ] = ACTIONS(2680), - [anon_sym_GT_EQ] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_struct] = ACTIONS(2680), - [anon_sym_union] = ACTIONS(2680), - [anon_sym_pub] = ACTIONS(2680), - [anon_sym_mut] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2680), - [anon_sym_DASH_DASH] = ACTIONS(2680), - [anon_sym_QMARK] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2680), - [anon_sym_go] = ACTIONS(2680), - [anon_sym_spawn] = ACTIONS(2680), - [anon_sym_json_DOTdecode] = ACTIONS(2680), - [anon_sym_LBRACK2] = ACTIONS(2680), - [anon_sym_TILDE] = ACTIONS(2680), - [anon_sym_CARET] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2680), - [anon_sym_LT_DASH] = ACTIONS(2680), - [anon_sym_LT_LT] = ACTIONS(2680), - [anon_sym_GT_GT] = ACTIONS(2680), - [anon_sym_GT_GT_GT] = ACTIONS(2680), - [anon_sym_AMP_CARET] = ACTIONS(2680), - [anon_sym_AMP_AMP] = ACTIONS(2680), - [anon_sym_PIPE_PIPE] = ACTIONS(2680), - [anon_sym_or] = ACTIONS(2680), - [sym_none] = ACTIONS(2680), - [sym_true] = ACTIONS(2680), - [sym_false] = ACTIONS(2680), - [sym_nil] = ACTIONS(2680), - [anon_sym_QMARK_DOT] = ACTIONS(2680), - [anon_sym_POUND_LBRACK] = ACTIONS(2680), - [anon_sym_if] = ACTIONS(2680), - [anon_sym_DOLLARif] = ACTIONS(2680), - [anon_sym_is] = ACTIONS(2680), - [anon_sym_BANGis] = ACTIONS(2680), - [anon_sym_in] = ACTIONS(2680), - [anon_sym_BANGin] = ACTIONS(2680), - [anon_sym_match] = ACTIONS(2680), - [anon_sym_select] = ACTIONS(2680), - [anon_sym_lock] = ACTIONS(2680), - [anon_sym_rlock] = ACTIONS(2680), - [anon_sym_unsafe] = ACTIONS(2680), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2680), - [sym_float_literal] = ACTIONS(2680), - [sym_rune_literal] = ACTIONS(2680), - [sym_pseudo_compile_time_identifier] = ACTIONS(2680), - [anon_sym_shared] = ACTIONS(2680), - [anon_sym_map_LBRACK] = ACTIONS(2680), - [anon_sym_chan] = ACTIONS(2680), - [anon_sym_thread] = ACTIONS(2680), - [anon_sym_atomic] = ACTIONS(2680), - [anon_sym_assert] = ACTIONS(2680), - [anon_sym_defer] = ACTIONS(2680), - [anon_sym_goto] = ACTIONS(2680), - [anon_sym_break] = ACTIONS(2680), - [anon_sym_continue] = ACTIONS(2680), - [anon_sym_return] = ACTIONS(2680), - [anon_sym_DOLLARfor] = ACTIONS(2680), - [anon_sym_for] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(2680), - [anon_sym_asm] = ACTIONS(2680), - [anon_sym_AT_LBRACK] = ACTIONS(2680), - [sym___double_quote] = ACTIONS(2680), - [sym___single_quote] = ACTIONS(2680), - [sym___c_double_quote] = ACTIONS(2680), - [sym___c_single_quote] = ACTIONS(2680), - [sym___r_double_quote] = ACTIONS(2680), - [sym___r_single_quote] = ACTIONS(2680), + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_as] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(2029), + [anon_sym_COMMA] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym___global] = ACTIONS(2029), + [anon_sym_type] = ACTIONS(2029), + [anon_sym_PIPE] = ACTIONS(2029), + [anon_sym_fn] = ACTIONS(2029), + [anon_sym_PLUS] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2029), + [anon_sym_SLASH] = ACTIONS(2029), + [anon_sym_PERCENT] = ACTIONS(2029), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2029), + [anon_sym_EQ_EQ] = ACTIONS(2029), + [anon_sym_BANG_EQ] = ACTIONS(2029), + [anon_sym_LT_EQ] = ACTIONS(2029), + [anon_sym_GT_EQ] = ACTIONS(2029), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_struct] = ACTIONS(2029), + [anon_sym_union] = ACTIONS(2029), + [anon_sym_pub] = ACTIONS(2029), + [anon_sym_mut] = ACTIONS(2029), + [anon_sym_enum] = ACTIONS(2029), + [anon_sym_interface] = ACTIONS(2029), + [anon_sym_PLUS_PLUS] = ACTIONS(2029), + [anon_sym_DASH_DASH] = ACTIONS(2029), + [anon_sym_QMARK] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(2029), + [anon_sym_go] = ACTIONS(2029), + [anon_sym_spawn] = ACTIONS(2029), + [anon_sym_json_DOTdecode] = ACTIONS(2029), + [anon_sym_LBRACK2] = ACTIONS(2029), + [anon_sym_TILDE] = ACTIONS(2029), + [anon_sym_CARET] = ACTIONS(2029), + [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_LT_DASH] = ACTIONS(2029), + [anon_sym_LT_LT] = ACTIONS(2029), + [anon_sym_GT_GT] = ACTIONS(2029), + [anon_sym_GT_GT_GT] = ACTIONS(2029), + [anon_sym_AMP_CARET] = ACTIONS(2029), + [anon_sym_AMP_AMP] = ACTIONS(2029), + [anon_sym_PIPE_PIPE] = ACTIONS(2029), + [anon_sym_or] = ACTIONS(2029), + [sym_none] = ACTIONS(2029), + [sym_true] = ACTIONS(2029), + [sym_false] = ACTIONS(2029), + [sym_nil] = ACTIONS(2029), + [anon_sym_QMARK_DOT] = ACTIONS(2029), + [anon_sym_POUND_LBRACK] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_DOLLARif] = ACTIONS(2029), + [anon_sym_is] = ACTIONS(2029), + [anon_sym_BANGis] = ACTIONS(2029), + [anon_sym_in] = ACTIONS(2029), + [anon_sym_BANGin] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_select] = ACTIONS(2029), + [anon_sym_lock] = ACTIONS(2029), + [anon_sym_rlock] = ACTIONS(2029), + [anon_sym_unsafe] = ACTIONS(2029), + [anon_sym_sql] = ACTIONS(2029), + [sym_int_literal] = ACTIONS(2029), + [sym_float_literal] = ACTIONS(2029), + [sym_rune_literal] = ACTIONS(2029), + [anon_sym_SQUOTE] = ACTIONS(2029), + [anon_sym_DQUOTE] = ACTIONS(2029), + [anon_sym_c_SQUOTE] = ACTIONS(2029), + [anon_sym_c_DQUOTE] = ACTIONS(2029), + [anon_sym_r_SQUOTE] = ACTIONS(2029), + [anon_sym_r_DQUOTE] = ACTIONS(2029), + [sym_pseudo_compile_time_identifier] = ACTIONS(2029), + [anon_sym_shared] = ACTIONS(2029), + [anon_sym_map_LBRACK] = ACTIONS(2029), + [anon_sym_chan] = ACTIONS(2029), + [anon_sym_thread] = ACTIONS(2029), + [anon_sym_atomic] = ACTIONS(2029), + [anon_sym_assert] = ACTIONS(2029), + [anon_sym_defer] = ACTIONS(2029), + [anon_sym_goto] = ACTIONS(2029), + [anon_sym_break] = ACTIONS(2029), + [anon_sym_continue] = ACTIONS(2029), + [anon_sym_return] = ACTIONS(2029), + [anon_sym_DOLLARfor] = ACTIONS(2029), + [anon_sym_for] = ACTIONS(2029), + [anon_sym_POUND] = ACTIONS(2029), + [anon_sym_asm] = ACTIONS(2029), + [anon_sym_AT_LBRACK] = ACTIONS(2029), }, [1066] = { [sym_line_comment] = STATE(1066), [sym_block_comment] = STATE(1066), - [ts_builtin_sym_end] = ACTIONS(2507), - [sym_identifier] = ACTIONS(2509), - [anon_sym_LF] = ACTIONS(2509), - [anon_sym_CR] = ACTIONS(2509), - [anon_sym_CR_LF] = ACTIONS(2509), + [ts_builtin_sym_end] = ACTIONS(2743), + [sym_identifier] = ACTIONS(2745), + [anon_sym_LF] = ACTIONS(2745), + [anon_sym_CR] = ACTIONS(2745), + [anon_sym_CR_LF] = ACTIONS(2745), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2509), - [anon_sym_as] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_COMMA] = ACTIONS(2509), - [anon_sym_const] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2509), - [anon_sym___global] = ACTIONS(2509), - [anon_sym_type] = ACTIONS(2509), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_fn] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_SLASH] = ACTIONS(2509), - [anon_sym_PERCENT] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_GT] = ACTIONS(2509), - [anon_sym_EQ_EQ] = ACTIONS(2509), - [anon_sym_BANG_EQ] = ACTIONS(2509), - [anon_sym_LT_EQ] = ACTIONS(2509), - [anon_sym_GT_EQ] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2509), - [anon_sym_union] = ACTIONS(2509), - [anon_sym_pub] = ACTIONS(2509), - [anon_sym_mut] = ACTIONS(2509), - [anon_sym_enum] = ACTIONS(2509), - [anon_sym_interface] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2509), - [anon_sym_DASH_DASH] = ACTIONS(2509), - [anon_sym_QMARK] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_go] = ACTIONS(2509), - [anon_sym_spawn] = ACTIONS(2509), - [anon_sym_json_DOTdecode] = ACTIONS(2509), - [anon_sym_LBRACK2] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2509), - [anon_sym_CARET] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2509), - [anon_sym_LT_DASH] = ACTIONS(2509), - [anon_sym_LT_LT] = ACTIONS(2509), - [anon_sym_GT_GT] = ACTIONS(2509), - [anon_sym_GT_GT_GT] = ACTIONS(2509), - [anon_sym_AMP_CARET] = ACTIONS(2509), - [anon_sym_AMP_AMP] = ACTIONS(2509), - [anon_sym_PIPE_PIPE] = ACTIONS(2509), - [anon_sym_or] = ACTIONS(2509), - [sym_none] = ACTIONS(2509), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_nil] = ACTIONS(2509), - [anon_sym_QMARK_DOT] = ACTIONS(2509), - [anon_sym_POUND_LBRACK] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_DOLLARif] = ACTIONS(2509), - [anon_sym_is] = ACTIONS(2509), - [anon_sym_BANGis] = ACTIONS(2509), - [anon_sym_in] = ACTIONS(2509), - [anon_sym_BANGin] = ACTIONS(2509), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_select] = ACTIONS(2509), - [anon_sym_lock] = ACTIONS(2509), - [anon_sym_rlock] = ACTIONS(2509), - [anon_sym_unsafe] = ACTIONS(2509), - [anon_sym_sql] = ACTIONS(2509), - [sym_int_literal] = ACTIONS(2509), - [sym_float_literal] = ACTIONS(2509), - [sym_rune_literal] = ACTIONS(2509), - [sym_pseudo_compile_time_identifier] = ACTIONS(2509), - [anon_sym_shared] = ACTIONS(2509), - [anon_sym_map_LBRACK] = ACTIONS(2509), - [anon_sym_chan] = ACTIONS(2509), - [anon_sym_thread] = ACTIONS(2509), - [anon_sym_atomic] = ACTIONS(2509), - [anon_sym_assert] = ACTIONS(2509), - [anon_sym_defer] = ACTIONS(2509), - [anon_sym_goto] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_DOLLARfor] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2509), - [anon_sym_AT_LBRACK] = ACTIONS(2509), - [sym___double_quote] = ACTIONS(2509), - [sym___single_quote] = ACTIONS(2509), - [sym___c_double_quote] = ACTIONS(2509), - [sym___c_single_quote] = ACTIONS(2509), - [sym___r_double_quote] = ACTIONS(2509), - [sym___r_single_quote] = ACTIONS(2509), + [anon_sym_DOT] = ACTIONS(2745), + [anon_sym_as] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_COMMA] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2745), + [anon_sym___global] = ACTIONS(2745), + [anon_sym_type] = ACTIONS(2745), + [anon_sym_PIPE] = ACTIONS(2745), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_SLASH] = ACTIONS(2745), + [anon_sym_PERCENT] = ACTIONS(2745), + [anon_sym_LT] = ACTIONS(2745), + [anon_sym_GT] = ACTIONS(2745), + [anon_sym_EQ_EQ] = ACTIONS(2745), + [anon_sym_BANG_EQ] = ACTIONS(2745), + [anon_sym_LT_EQ] = ACTIONS(2745), + [anon_sym_GT_EQ] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_union] = ACTIONS(2745), + [anon_sym_pub] = ACTIONS(2745), + [anon_sym_mut] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_interface] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_QMARK] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_go] = ACTIONS(2745), + [anon_sym_spawn] = ACTIONS(2745), + [anon_sym_json_DOTdecode] = ACTIONS(2745), + [anon_sym_LBRACK2] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_CARET] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_LT_DASH] = ACTIONS(2745), + [anon_sym_LT_LT] = ACTIONS(2745), + [anon_sym_GT_GT] = ACTIONS(2745), + [anon_sym_GT_GT_GT] = ACTIONS(2745), + [anon_sym_AMP_CARET] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_PIPE_PIPE] = ACTIONS(2745), + [anon_sym_or] = ACTIONS(2745), + [sym_none] = ACTIONS(2745), + [sym_true] = ACTIONS(2745), + [sym_false] = ACTIONS(2745), + [sym_nil] = ACTIONS(2745), + [anon_sym_QMARK_DOT] = ACTIONS(2745), + [anon_sym_POUND_LBRACK] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_DOLLARif] = ACTIONS(2745), + [anon_sym_is] = ACTIONS(2745), + [anon_sym_BANGis] = ACTIONS(2745), + [anon_sym_in] = ACTIONS(2745), + [anon_sym_BANGin] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(2745), + [anon_sym_lock] = ACTIONS(2745), + [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_unsafe] = ACTIONS(2745), + [anon_sym_sql] = ACTIONS(2745), + [sym_int_literal] = ACTIONS(2745), + [sym_float_literal] = ACTIONS(2745), + [sym_rune_literal] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [anon_sym_c_SQUOTE] = ACTIONS(2745), + [anon_sym_c_DQUOTE] = ACTIONS(2745), + [anon_sym_r_SQUOTE] = ACTIONS(2745), + [anon_sym_r_DQUOTE] = ACTIONS(2745), + [sym_pseudo_compile_time_identifier] = ACTIONS(2745), + [anon_sym_shared] = ACTIONS(2745), + [anon_sym_map_LBRACK] = ACTIONS(2745), + [anon_sym_chan] = ACTIONS(2745), + [anon_sym_thread] = ACTIONS(2745), + [anon_sym_atomic] = ACTIONS(2745), + [anon_sym_assert] = ACTIONS(2745), + [anon_sym_defer] = ACTIONS(2745), + [anon_sym_goto] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_DOLLARfor] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_POUND] = ACTIONS(2745), + [anon_sym_asm] = ACTIONS(2745), + [anon_sym_AT_LBRACK] = ACTIONS(2745), }, [1067] = { [sym_line_comment] = STATE(1067), [sym_block_comment] = STATE(1067), - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_CR] = ACTIONS(1809), - [anon_sym_CR_LF] = ACTIONS(1809), + [ts_builtin_sym_end] = ACTIONS(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(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym___global] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_pub] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1809), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1809), - [anon_sym_AMP_CARET] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_PIPE_PIPE] = ACTIONS(1809), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1809), - [anon_sym_POUND_LBRACK] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1809), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), - [sym_rune_literal] = ACTIONS(1809), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1809), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), - [anon_sym_assert] = ACTIONS(1809), - [anon_sym_defer] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_DOLLARfor] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_POUND] = ACTIONS(1809), - [anon_sym_asm] = ACTIONS(1809), - [anon_sym_AT_LBRACK] = ACTIONS(1809), - [sym___double_quote] = ACTIONS(1809), - [sym___single_quote] = ACTIONS(1809), - [sym___c_double_quote] = ACTIONS(1809), - [sym___c_single_quote] = ACTIONS(1809), - [sym___r_double_quote] = ACTIONS(1809), - [sym___r_single_quote] = ACTIONS(1809), + [anon_sym_DOT] = ACTIONS(2837), + [anon_sym_as] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym_const] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2837), + [anon_sym___global] = ACTIONS(2837), + [anon_sym_type] = ACTIONS(2837), + [anon_sym_PIPE] = ACTIONS(2837), + [anon_sym_fn] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2837), + [anon_sym_LT] = ACTIONS(2837), + [anon_sym_GT] = ACTIONS(2837), + [anon_sym_EQ_EQ] = ACTIONS(2837), + [anon_sym_BANG_EQ] = ACTIONS(2837), + [anon_sym_LT_EQ] = ACTIONS(2837), + [anon_sym_GT_EQ] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_union] = ACTIONS(2837), + [anon_sym_pub] = ACTIONS(2837), + [anon_sym_mut] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(2837), + [anon_sym_interface] = ACTIONS(2837), + [anon_sym_PLUS_PLUS] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(2837), + [anon_sym_QMARK] = ACTIONS(2837), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_go] = ACTIONS(2837), + [anon_sym_spawn] = ACTIONS(2837), + [anon_sym_json_DOTdecode] = ACTIONS(2837), + [anon_sym_LBRACK2] = ACTIONS(2837), + [anon_sym_TILDE] = ACTIONS(2837), + [anon_sym_CARET] = ACTIONS(2837), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_LT_DASH] = ACTIONS(2837), + [anon_sym_LT_LT] = ACTIONS(2837), + [anon_sym_GT_GT] = ACTIONS(2837), + [anon_sym_GT_GT_GT] = ACTIONS(2837), + [anon_sym_AMP_CARET] = ACTIONS(2837), + [anon_sym_AMP_AMP] = ACTIONS(2837), + [anon_sym_PIPE_PIPE] = ACTIONS(2837), + [anon_sym_or] = ACTIONS(2837), + [sym_none] = ACTIONS(2837), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_nil] = ACTIONS(2837), + [anon_sym_QMARK_DOT] = ACTIONS(2837), + [anon_sym_POUND_LBRACK] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_DOLLARif] = ACTIONS(2837), + [anon_sym_is] = ACTIONS(2837), + [anon_sym_BANGis] = ACTIONS(2837), + [anon_sym_in] = ACTIONS(2837), + [anon_sym_BANGin] = ACTIONS(2837), + [anon_sym_match] = ACTIONS(2837), + [anon_sym_select] = ACTIONS(2837), + [anon_sym_lock] = ACTIONS(2837), + [anon_sym_rlock] = ACTIONS(2837), + [anon_sym_unsafe] = ACTIONS(2837), + [anon_sym_sql] = ACTIONS(2837), + [sym_int_literal] = ACTIONS(2837), + [sym_float_literal] = ACTIONS(2837), + [sym_rune_literal] = ACTIONS(2837), + [anon_sym_SQUOTE] = ACTIONS(2837), + [anon_sym_DQUOTE] = ACTIONS(2837), + [anon_sym_c_SQUOTE] = ACTIONS(2837), + [anon_sym_c_DQUOTE] = ACTIONS(2837), + [anon_sym_r_SQUOTE] = ACTIONS(2837), + [anon_sym_r_DQUOTE] = ACTIONS(2837), + [sym_pseudo_compile_time_identifier] = ACTIONS(2837), + [anon_sym_shared] = ACTIONS(2837), + [anon_sym_map_LBRACK] = ACTIONS(2837), + [anon_sym_chan] = ACTIONS(2837), + [anon_sym_thread] = ACTIONS(2837), + [anon_sym_atomic] = ACTIONS(2837), + [anon_sym_assert] = ACTIONS(2837), + [anon_sym_defer] = ACTIONS(2837), + [anon_sym_goto] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_DOLLARfor] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_POUND] = ACTIONS(2837), + [anon_sym_asm] = ACTIONS(2837), + [anon_sym_AT_LBRACK] = ACTIONS(2837), }, [1068] = { [sym_line_comment] = STATE(1068), [sym_block_comment] = STATE(1068), - [ts_builtin_sym_end] = ACTIONS(2305), - [sym_identifier] = ACTIONS(2307), - [anon_sym_LF] = ACTIONS(2307), - [anon_sym_CR] = ACTIONS(2307), - [anon_sym_CR_LF] = ACTIONS(2307), + [ts_builtin_sym_end] = ACTIONS(3064), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LF] = ACTIONS(3066), + [anon_sym_CR] = ACTIONS(3066), + [anon_sym_CR_LF] = ACTIONS(3066), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_as] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_COMMA] = ACTIONS(2307), - [anon_sym_const] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym___global] = ACTIONS(2307), - [anon_sym_type] = ACTIONS(2307), - [anon_sym_PIPE] = ACTIONS(2307), - [anon_sym_fn] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_SLASH] = ACTIONS(2307), - [anon_sym_PERCENT] = ACTIONS(2307), - [anon_sym_LT] = ACTIONS(2307), - [anon_sym_GT] = ACTIONS(2307), - [anon_sym_EQ_EQ] = ACTIONS(2307), - [anon_sym_BANG_EQ] = ACTIONS(2307), - [anon_sym_LT_EQ] = ACTIONS(2307), - [anon_sym_GT_EQ] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_struct] = ACTIONS(2307), - [anon_sym_union] = ACTIONS(2307), - [anon_sym_pub] = ACTIONS(2307), - [anon_sym_mut] = ACTIONS(2307), - [anon_sym_enum] = ACTIONS(2307), - [anon_sym_interface] = ACTIONS(2307), - [anon_sym_PLUS_PLUS] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(2307), - [anon_sym_QMARK] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_go] = ACTIONS(2307), - [anon_sym_spawn] = ACTIONS(2307), - [anon_sym_json_DOTdecode] = ACTIONS(2307), - [anon_sym_LBRACK2] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_CARET] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_LT_DASH] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(2307), - [anon_sym_GT_GT] = ACTIONS(2307), - [anon_sym_GT_GT_GT] = ACTIONS(2307), - [anon_sym_AMP_CARET] = ACTIONS(2307), - [anon_sym_AMP_AMP] = ACTIONS(2307), - [anon_sym_PIPE_PIPE] = ACTIONS(2307), - [anon_sym_or] = ACTIONS(2307), - [sym_none] = ACTIONS(2307), - [sym_true] = ACTIONS(2307), - [sym_false] = ACTIONS(2307), - [sym_nil] = ACTIONS(2307), - [anon_sym_QMARK_DOT] = ACTIONS(2307), - [anon_sym_POUND_LBRACK] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_DOLLARif] = ACTIONS(2307), - [anon_sym_is] = ACTIONS(2307), - [anon_sym_BANGis] = ACTIONS(2307), - [anon_sym_in] = ACTIONS(2307), - [anon_sym_BANGin] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_select] = ACTIONS(2307), - [anon_sym_lock] = ACTIONS(2307), - [anon_sym_rlock] = ACTIONS(2307), - [anon_sym_unsafe] = ACTIONS(2307), - [anon_sym_sql] = ACTIONS(2307), - [sym_int_literal] = ACTIONS(2307), - [sym_float_literal] = ACTIONS(2307), - [sym_rune_literal] = ACTIONS(2307), - [sym_pseudo_compile_time_identifier] = ACTIONS(2307), - [anon_sym_shared] = ACTIONS(2307), - [anon_sym_map_LBRACK] = ACTIONS(2307), - [anon_sym_chan] = ACTIONS(2307), - [anon_sym_thread] = ACTIONS(2307), - [anon_sym_atomic] = ACTIONS(2307), - [anon_sym_assert] = ACTIONS(2307), - [anon_sym_defer] = ACTIONS(2307), - [anon_sym_goto] = ACTIONS(2307), - [anon_sym_break] = ACTIONS(2307), - [anon_sym_continue] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_DOLLARfor] = ACTIONS(2307), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_POUND] = ACTIONS(2307), - [anon_sym_asm] = ACTIONS(2307), - [anon_sym_AT_LBRACK] = ACTIONS(2307), - [sym___double_quote] = ACTIONS(2307), - [sym___single_quote] = ACTIONS(2307), - [sym___c_double_quote] = ACTIONS(2307), - [sym___c_single_quote] = ACTIONS(2307), - [sym___r_double_quote] = ACTIONS(2307), - [sym___r_single_quote] = ACTIONS(2307), + [anon_sym_DOT] = ACTIONS(3066), + [anon_sym_as] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_const] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym___global] = ACTIONS(3066), + [anon_sym_type] = ACTIONS(3066), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_SLASH] = ACTIONS(3066), + [anon_sym_PERCENT] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_EQ_EQ] = ACTIONS(3066), + [anon_sym_BANG_EQ] = ACTIONS(3066), + [anon_sym_LT_EQ] = ACTIONS(3066), + [anon_sym_GT_EQ] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3066), + [anon_sym_pub] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(3066), + [anon_sym_enum] = ACTIONS(3066), + [anon_sym_interface] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_go] = ACTIONS(3066), + [anon_sym_spawn] = ACTIONS(3066), + [anon_sym_json_DOTdecode] = ACTIONS(3066), + [anon_sym_LBRACK2] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [anon_sym_CARET] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3066), + [anon_sym_LT_DASH] = ACTIONS(3066), + [anon_sym_LT_LT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(3066), + [anon_sym_GT_GT_GT] = ACTIONS(3066), + [anon_sym_AMP_CARET] = ACTIONS(3066), + [anon_sym_AMP_AMP] = ACTIONS(3066), + [anon_sym_PIPE_PIPE] = ACTIONS(3066), + [anon_sym_or] = ACTIONS(3066), + [sym_none] = ACTIONS(3066), + [sym_true] = ACTIONS(3066), + [sym_false] = ACTIONS(3066), + [sym_nil] = ACTIONS(3066), + [anon_sym_QMARK_DOT] = ACTIONS(3066), + [anon_sym_POUND_LBRACK] = ACTIONS(3066), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_DOLLARif] = ACTIONS(3066), + [anon_sym_is] = ACTIONS(3066), + [anon_sym_BANGis] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(3066), + [anon_sym_BANGin] = ACTIONS(3066), + [anon_sym_match] = ACTIONS(3066), + [anon_sym_select] = ACTIONS(3066), + [anon_sym_lock] = ACTIONS(3066), + [anon_sym_rlock] = ACTIONS(3066), + [anon_sym_unsafe] = ACTIONS(3066), + [anon_sym_sql] = ACTIONS(3066), + [sym_int_literal] = ACTIONS(3066), + [sym_float_literal] = ACTIONS(3066), + [sym_rune_literal] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3066), + [anon_sym_c_SQUOTE] = ACTIONS(3066), + [anon_sym_c_DQUOTE] = ACTIONS(3066), + [anon_sym_r_SQUOTE] = ACTIONS(3066), + [anon_sym_r_DQUOTE] = ACTIONS(3066), + [sym_pseudo_compile_time_identifier] = ACTIONS(3066), + [anon_sym_shared] = ACTIONS(3066), + [anon_sym_map_LBRACK] = ACTIONS(3066), + [anon_sym_chan] = ACTIONS(3066), + [anon_sym_thread] = ACTIONS(3066), + [anon_sym_atomic] = ACTIONS(3066), + [anon_sym_assert] = ACTIONS(3066), + [anon_sym_defer] = ACTIONS(3066), + [anon_sym_goto] = ACTIONS(3066), + [anon_sym_break] = ACTIONS(3066), + [anon_sym_continue] = ACTIONS(3066), + [anon_sym_return] = ACTIONS(3066), + [anon_sym_DOLLARfor] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(3066), + [anon_sym_POUND] = ACTIONS(3066), + [anon_sym_asm] = ACTIONS(3066), + [anon_sym_AT_LBRACK] = ACTIONS(3066), }, [1069] = { [sym_line_comment] = STATE(1069), [sym_block_comment] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(2838), - [sym_identifier] = ACTIONS(2840), - [anon_sym_LF] = ACTIONS(2840), - [anon_sym_CR] = ACTIONS(2840), - [anon_sym_CR_LF] = ACTIONS(2840), + [ts_builtin_sym_end] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2249), + [anon_sym_LF] = ACTIONS(2249), + [anon_sym_CR] = ACTIONS(2249), + [anon_sym_CR_LF] = ACTIONS(2249), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2840), - [anon_sym_as] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym___global] = ACTIONS(2840), - [anon_sym_type] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SLASH] = ACTIONS(2840), - [anon_sym_PERCENT] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_GT] = ACTIONS(2840), - [anon_sym_EQ_EQ] = ACTIONS(2840), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_LT_EQ] = ACTIONS(2840), - [anon_sym_GT_EQ] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_pub] = ACTIONS(2840), - [anon_sym_mut] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_interface] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_go] = ACTIONS(2840), - [anon_sym_spawn] = ACTIONS(2840), - [anon_sym_json_DOTdecode] = ACTIONS(2840), - [anon_sym_LBRACK2] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_LT_DASH] = ACTIONS(2840), - [anon_sym_LT_LT] = ACTIONS(2840), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_GT_GT_GT] = ACTIONS(2840), - [anon_sym_AMP_CARET] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_PIPE_PIPE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2840), - [sym_none] = ACTIONS(2840), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [sym_nil] = ACTIONS(2840), - [anon_sym_QMARK_DOT] = ACTIONS(2840), - [anon_sym_POUND_LBRACK] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_DOLLARif] = ACTIONS(2840), - [anon_sym_is] = ACTIONS(2840), - [anon_sym_BANGis] = ACTIONS(2840), - [anon_sym_in] = ACTIONS(2840), - [anon_sym_BANGin] = ACTIONS(2840), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_select] = ACTIONS(2840), - [anon_sym_lock] = ACTIONS(2840), - [anon_sym_rlock] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_sql] = ACTIONS(2840), - [sym_int_literal] = ACTIONS(2840), - [sym_float_literal] = ACTIONS(2840), - [sym_rune_literal] = ACTIONS(2840), - [sym_pseudo_compile_time_identifier] = ACTIONS(2840), - [anon_sym_shared] = ACTIONS(2840), - [anon_sym_map_LBRACK] = ACTIONS(2840), - [anon_sym_chan] = ACTIONS(2840), - [anon_sym_thread] = ACTIONS(2840), - [anon_sym_atomic] = ACTIONS(2840), - [anon_sym_assert] = ACTIONS(2840), - [anon_sym_defer] = ACTIONS(2840), - [anon_sym_goto] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_DOLLARfor] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_POUND] = ACTIONS(2840), - [anon_sym_asm] = ACTIONS(2840), - [anon_sym_AT_LBRACK] = ACTIONS(2840), - [sym___double_quote] = ACTIONS(2840), - [sym___single_quote] = ACTIONS(2840), - [sym___c_double_quote] = ACTIONS(2840), - [sym___c_single_quote] = ACTIONS(2840), - [sym___r_double_quote] = ACTIONS(2840), - [sym___r_single_quote] = ACTIONS(2840), + [anon_sym_DOT] = ACTIONS(2249), + [anon_sym_as] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_COMMA] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym___global] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_PIPE] = ACTIONS(2249), + [anon_sym_fn] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_GT] = ACTIONS(2249), + [anon_sym_EQ_EQ] = ACTIONS(2249), + [anon_sym_BANG_EQ] = ACTIONS(2249), + [anon_sym_LT_EQ] = ACTIONS(2249), + [anon_sym_GT_EQ] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [anon_sym_pub] = ACTIONS(2249), + [anon_sym_mut] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_interface] = ACTIONS(2249), + [anon_sym_PLUS_PLUS] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2249), + [anon_sym_QMARK] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_go] = ACTIONS(2249), + [anon_sym_spawn] = ACTIONS(2249), + [anon_sym_json_DOTdecode] = ACTIONS(2249), + [anon_sym_LBRACK2] = ACTIONS(2249), + [anon_sym_TILDE] = ACTIONS(2249), + [anon_sym_CARET] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2249), + [anon_sym_LT_LT] = ACTIONS(2249), + [anon_sym_GT_GT] = ACTIONS(2249), + [anon_sym_GT_GT_GT] = ACTIONS(2249), + [anon_sym_AMP_CARET] = ACTIONS(2249), + [anon_sym_AMP_AMP] = ACTIONS(2249), + [anon_sym_PIPE_PIPE] = ACTIONS(2249), + [anon_sym_or] = ACTIONS(2249), + [sym_none] = ACTIONS(2249), + [sym_true] = ACTIONS(2249), + [sym_false] = ACTIONS(2249), + [sym_nil] = ACTIONS(2249), + [anon_sym_QMARK_DOT] = ACTIONS(2249), + [anon_sym_POUND_LBRACK] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_DOLLARif] = ACTIONS(2249), + [anon_sym_is] = ACTIONS(2249), + [anon_sym_BANGis] = ACTIONS(2249), + [anon_sym_in] = ACTIONS(2249), + [anon_sym_BANGin] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_select] = ACTIONS(2249), + [anon_sym_lock] = ACTIONS(2249), + [anon_sym_rlock] = ACTIONS(2249), + [anon_sym_unsafe] = ACTIONS(2249), + [anon_sym_sql] = ACTIONS(2249), + [sym_int_literal] = ACTIONS(2249), + [sym_float_literal] = ACTIONS(2249), + [sym_rune_literal] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_c_SQUOTE] = ACTIONS(2249), + [anon_sym_c_DQUOTE] = ACTIONS(2249), + [anon_sym_r_SQUOTE] = ACTIONS(2249), + [anon_sym_r_DQUOTE] = ACTIONS(2249), + [sym_pseudo_compile_time_identifier] = ACTIONS(2249), + [anon_sym_shared] = ACTIONS(2249), + [anon_sym_map_LBRACK] = ACTIONS(2249), + [anon_sym_chan] = ACTIONS(2249), + [anon_sym_thread] = ACTIONS(2249), + [anon_sym_atomic] = ACTIONS(2249), + [anon_sym_assert] = ACTIONS(2249), + [anon_sym_defer] = ACTIONS(2249), + [anon_sym_goto] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_DOLLARfor] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_asm] = ACTIONS(2249), + [anon_sym_AT_LBRACK] = ACTIONS(2249), }, [1070] = { [sym_line_comment] = STATE(1070), [sym_block_comment] = STATE(1070), - [ts_builtin_sym_end] = ACTIONS(2856), - [sym_identifier] = ACTIONS(2858), - [anon_sym_LF] = ACTIONS(2858), - [anon_sym_CR] = ACTIONS(2858), - [anon_sym_CR_LF] = ACTIONS(2858), + [ts_builtin_sym_end] = ACTIONS(2251), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LF] = ACTIONS(2253), + [anon_sym_CR] = ACTIONS(2253), + [anon_sym_CR_LF] = ACTIONS(2253), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2858), - [anon_sym_const] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym___global] = ACTIONS(2858), - [anon_sym_type] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(2858), - [anon_sym_fn] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2858), - [anon_sym_GT] = ACTIONS(2858), - [anon_sym_EQ_EQ] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2858), - [anon_sym_LT_EQ] = ACTIONS(2858), - [anon_sym_GT_EQ] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2856), - [anon_sym_struct] = ACTIONS(2858), - [anon_sym_union] = ACTIONS(2858), - [anon_sym_pub] = ACTIONS(2858), - [anon_sym_mut] = ACTIONS(2858), - [anon_sym_enum] = ACTIONS(2858), - [anon_sym_interface] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_go] = ACTIONS(2858), - [anon_sym_spawn] = ACTIONS(2858), - [anon_sym_json_DOTdecode] = ACTIONS(2858), - [anon_sym_LBRACK2] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_CARET] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_LT_LT] = ACTIONS(2858), - [anon_sym_GT_GT] = ACTIONS(2858), - [anon_sym_GT_GT_GT] = ACTIONS(2858), - [anon_sym_AMP_CARET] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_or] = ACTIONS(2858), - [sym_none] = ACTIONS(2858), - [sym_true] = ACTIONS(2858), - [sym_false] = ACTIONS(2858), - [sym_nil] = ACTIONS(2858), - [anon_sym_QMARK_DOT] = ACTIONS(2858), - [anon_sym_POUND_LBRACK] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_DOLLARif] = ACTIONS(2858), - [anon_sym_is] = ACTIONS(2858), - [anon_sym_BANGis] = ACTIONS(2858), - [anon_sym_in] = ACTIONS(2858), - [anon_sym_BANGin] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_select] = ACTIONS(2858), - [anon_sym_lock] = ACTIONS(2858), - [anon_sym_rlock] = ACTIONS(2858), - [anon_sym_unsafe] = ACTIONS(2858), - [anon_sym_sql] = ACTIONS(2858), - [sym_int_literal] = ACTIONS(2858), - [sym_float_literal] = ACTIONS(2858), - [sym_rune_literal] = ACTIONS(2858), - [sym_pseudo_compile_time_identifier] = ACTIONS(2858), - [anon_sym_shared] = ACTIONS(2858), - [anon_sym_map_LBRACK] = ACTIONS(2858), - [anon_sym_chan] = ACTIONS(2858), - [anon_sym_thread] = ACTIONS(2858), - [anon_sym_atomic] = ACTIONS(2858), - [anon_sym_assert] = ACTIONS(2858), - [anon_sym_defer] = ACTIONS(2858), - [anon_sym_goto] = ACTIONS(2858), - [anon_sym_break] = ACTIONS(2858), - [anon_sym_continue] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_DOLLARfor] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_POUND] = ACTIONS(2858), - [anon_sym_asm] = ACTIONS(2858), - [anon_sym_AT_LBRACK] = ACTIONS(2858), - [sym___double_quote] = ACTIONS(2858), - [sym___single_quote] = ACTIONS(2858), - [sym___c_double_quote] = ACTIONS(2858), - [sym___c_single_quote] = ACTIONS(2858), - [sym___r_double_quote] = ACTIONS(2858), - [sym___r_single_quote] = ACTIONS(2858), + [anon_sym_DOT] = ACTIONS(2253), + [anon_sym_as] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_COMMA] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym___global] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_PIPE] = ACTIONS(2253), + [anon_sym_fn] = ACTIONS(2253), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_STAR] = ACTIONS(2253), + [anon_sym_SLASH] = ACTIONS(2253), + [anon_sym_PERCENT] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_GT] = ACTIONS(2253), + [anon_sym_EQ_EQ] = ACTIONS(2253), + [anon_sym_BANG_EQ] = ACTIONS(2253), + [anon_sym_LT_EQ] = ACTIONS(2253), + [anon_sym_GT_EQ] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2251), + [anon_sym_struct] = ACTIONS(2253), + [anon_sym_union] = ACTIONS(2253), + [anon_sym_pub] = ACTIONS(2253), + [anon_sym_mut] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [anon_sym_interface] = ACTIONS(2253), + [anon_sym_PLUS_PLUS] = ACTIONS(2253), + [anon_sym_DASH_DASH] = ACTIONS(2253), + [anon_sym_QMARK] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2253), + [anon_sym_go] = ACTIONS(2253), + [anon_sym_spawn] = ACTIONS(2253), + [anon_sym_json_DOTdecode] = ACTIONS(2253), + [anon_sym_LBRACK2] = ACTIONS(2253), + [anon_sym_TILDE] = ACTIONS(2253), + [anon_sym_CARET] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(2253), + [anon_sym_LT_DASH] = ACTIONS(2253), + [anon_sym_LT_LT] = ACTIONS(2253), + [anon_sym_GT_GT] = ACTIONS(2253), + [anon_sym_GT_GT_GT] = ACTIONS(2253), + [anon_sym_AMP_CARET] = ACTIONS(2253), + [anon_sym_AMP_AMP] = ACTIONS(2253), + [anon_sym_PIPE_PIPE] = ACTIONS(2253), + [anon_sym_or] = ACTIONS(2253), + [sym_none] = ACTIONS(2253), + [sym_true] = ACTIONS(2253), + [sym_false] = ACTIONS(2253), + [sym_nil] = ACTIONS(2253), + [anon_sym_QMARK_DOT] = ACTIONS(2253), + [anon_sym_POUND_LBRACK] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_DOLLARif] = ACTIONS(2253), + [anon_sym_is] = ACTIONS(2253), + [anon_sym_BANGis] = ACTIONS(2253), + [anon_sym_in] = ACTIONS(2253), + [anon_sym_BANGin] = ACTIONS(2253), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_select] = ACTIONS(2253), + [anon_sym_lock] = ACTIONS(2253), + [anon_sym_rlock] = ACTIONS(2253), + [anon_sym_unsafe] = ACTIONS(2253), + [anon_sym_sql] = ACTIONS(2253), + [sym_int_literal] = ACTIONS(2253), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2253), + [anon_sym_c_SQUOTE] = ACTIONS(2253), + [anon_sym_c_DQUOTE] = ACTIONS(2253), + [anon_sym_r_SQUOTE] = ACTIONS(2253), + [anon_sym_r_DQUOTE] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(2253), + [anon_sym_shared] = ACTIONS(2253), + [anon_sym_map_LBRACK] = ACTIONS(2253), + [anon_sym_chan] = ACTIONS(2253), + [anon_sym_thread] = ACTIONS(2253), + [anon_sym_atomic] = ACTIONS(2253), + [anon_sym_assert] = ACTIONS(2253), + [anon_sym_defer] = ACTIONS(2253), + [anon_sym_goto] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_DOLLARfor] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_POUND] = ACTIONS(2253), + [anon_sym_asm] = ACTIONS(2253), + [anon_sym_AT_LBRACK] = ACTIONS(2253), }, [1071] = { [sym_line_comment] = STATE(1071), [sym_block_comment] = STATE(1071), - [ts_builtin_sym_end] = ACTIONS(2766), - [sym_identifier] = ACTIONS(2768), - [anon_sym_LF] = ACTIONS(2768), - [anon_sym_CR] = ACTIONS(2768), - [anon_sym_CR_LF] = ACTIONS(2768), + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_LF] = ACTIONS(2261), + [anon_sym_CR] = ACTIONS(2261), + [anon_sym_CR_LF] = ACTIONS(2261), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_as] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_COMMA] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym___global] = ACTIONS(2768), - [anon_sym_type] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_fn] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2768), - [anon_sym_BANG_EQ] = ACTIONS(2768), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_pub] = ACTIONS(2768), - [anon_sym_mut] = ACTIONS(2768), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_interface] = ACTIONS(2768), - [anon_sym_PLUS_PLUS] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2768), - [anon_sym_BANG] = ACTIONS(2768), - [anon_sym_go] = ACTIONS(2768), - [anon_sym_spawn] = ACTIONS(2768), - [anon_sym_json_DOTdecode] = ACTIONS(2768), - [anon_sym_LBRACK2] = ACTIONS(2768), - [anon_sym_TILDE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_LT_DASH] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym_GT_GT_GT] = ACTIONS(2768), - [anon_sym_AMP_CARET] = ACTIONS(2768), - [anon_sym_AMP_AMP] = ACTIONS(2768), - [anon_sym_PIPE_PIPE] = ACTIONS(2768), - [anon_sym_or] = ACTIONS(2768), - [sym_none] = ACTIONS(2768), - [sym_true] = ACTIONS(2768), - [sym_false] = ACTIONS(2768), - [sym_nil] = ACTIONS(2768), - [anon_sym_QMARK_DOT] = ACTIONS(2768), - [anon_sym_POUND_LBRACK] = ACTIONS(2768), - [anon_sym_if] = ACTIONS(2768), - [anon_sym_DOLLARif] = ACTIONS(2768), - [anon_sym_is] = ACTIONS(2768), - [anon_sym_BANGis] = ACTIONS(2768), - [anon_sym_in] = ACTIONS(2768), - [anon_sym_BANGin] = ACTIONS(2768), - [anon_sym_match] = ACTIONS(2768), - [anon_sym_select] = ACTIONS(2768), - [anon_sym_lock] = ACTIONS(2768), - [anon_sym_rlock] = ACTIONS(2768), - [anon_sym_unsafe] = ACTIONS(2768), - [anon_sym_sql] = ACTIONS(2768), - [sym_int_literal] = ACTIONS(2768), - [sym_float_literal] = ACTIONS(2768), - [sym_rune_literal] = ACTIONS(2768), - [sym_pseudo_compile_time_identifier] = ACTIONS(2768), - [anon_sym_shared] = ACTIONS(2768), - [anon_sym_map_LBRACK] = ACTIONS(2768), - [anon_sym_chan] = ACTIONS(2768), - [anon_sym_thread] = ACTIONS(2768), - [anon_sym_atomic] = ACTIONS(2768), - [anon_sym_assert] = ACTIONS(2768), - [anon_sym_defer] = ACTIONS(2768), - [anon_sym_goto] = ACTIONS(2768), - [anon_sym_break] = ACTIONS(2768), - [anon_sym_continue] = ACTIONS(2768), - [anon_sym_return] = ACTIONS(2768), - [anon_sym_DOLLARfor] = ACTIONS(2768), - [anon_sym_for] = ACTIONS(2768), - [anon_sym_POUND] = ACTIONS(2768), - [anon_sym_asm] = ACTIONS(2768), - [anon_sym_AT_LBRACK] = ACTIONS(2768), - [sym___double_quote] = ACTIONS(2768), - [sym___single_quote] = ACTIONS(2768), - [sym___c_double_quote] = ACTIONS(2768), - [sym___c_single_quote] = ACTIONS(2768), - [sym___r_double_quote] = ACTIONS(2768), - [sym___r_single_quote] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(2261), + [anon_sym_as] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2261), + [anon_sym_COMMA] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym___global] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_fn] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_PERCENT] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_GT] = ACTIONS(2261), + [anon_sym_EQ_EQ] = ACTIONS(2261), + [anon_sym_BANG_EQ] = ACTIONS(2261), + [anon_sym_LT_EQ] = ACTIONS(2261), + [anon_sym_GT_EQ] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_struct] = ACTIONS(2261), + [anon_sym_union] = ACTIONS(2261), + [anon_sym_pub] = ACTIONS(2261), + [anon_sym_mut] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2261), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_QMARK] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2261), + [anon_sym_go] = ACTIONS(2261), + [anon_sym_spawn] = ACTIONS(2261), + [anon_sym_json_DOTdecode] = ACTIONS(2261), + [anon_sym_LBRACK2] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2261), + [anon_sym_CARET] = ACTIONS(2261), + [anon_sym_AMP] = ACTIONS(2261), + [anon_sym_LT_DASH] = ACTIONS(2261), + [anon_sym_LT_LT] = ACTIONS(2261), + [anon_sym_GT_GT] = ACTIONS(2261), + [anon_sym_GT_GT_GT] = ACTIONS(2261), + [anon_sym_AMP_CARET] = ACTIONS(2261), + [anon_sym_AMP_AMP] = ACTIONS(2261), + [anon_sym_PIPE_PIPE] = ACTIONS(2261), + [anon_sym_or] = ACTIONS(2261), + [sym_none] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_nil] = ACTIONS(2261), + [anon_sym_QMARK_DOT] = ACTIONS(2261), + [anon_sym_POUND_LBRACK] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_DOLLARif] = ACTIONS(2261), + [anon_sym_is] = ACTIONS(2261), + [anon_sym_BANGis] = ACTIONS(2261), + [anon_sym_in] = ACTIONS(2261), + [anon_sym_BANGin] = ACTIONS(2261), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_select] = ACTIONS(2261), + [anon_sym_lock] = ACTIONS(2261), + [anon_sym_rlock] = ACTIONS(2261), + [anon_sym_unsafe] = ACTIONS(2261), + [anon_sym_sql] = ACTIONS(2261), + [sym_int_literal] = ACTIONS(2261), + [sym_float_literal] = ACTIONS(2261), + [sym_rune_literal] = ACTIONS(2261), + [anon_sym_SQUOTE] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2261), + [anon_sym_c_SQUOTE] = ACTIONS(2261), + [anon_sym_c_DQUOTE] = ACTIONS(2261), + [anon_sym_r_SQUOTE] = ACTIONS(2261), + [anon_sym_r_DQUOTE] = ACTIONS(2261), + [sym_pseudo_compile_time_identifier] = ACTIONS(2261), + [anon_sym_shared] = ACTIONS(2261), + [anon_sym_map_LBRACK] = ACTIONS(2261), + [anon_sym_chan] = ACTIONS(2261), + [anon_sym_thread] = ACTIONS(2261), + [anon_sym_atomic] = ACTIONS(2261), + [anon_sym_assert] = ACTIONS(2261), + [anon_sym_defer] = ACTIONS(2261), + [anon_sym_goto] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_DOLLARfor] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(2261), + [anon_sym_asm] = ACTIONS(2261), + [anon_sym_AT_LBRACK] = ACTIONS(2261), }, [1072] = { [sym_line_comment] = STATE(1072), [sym_block_comment] = STATE(1072), - [ts_builtin_sym_end] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LF] = ACTIONS(2217), - [anon_sym_CR] = ACTIONS(2217), - [anon_sym_CR_LF] = ACTIONS(2217), + [ts_builtin_sym_end] = ACTIONS(2267), + [sym_identifier] = ACTIONS(2269), + [anon_sym_LF] = ACTIONS(2269), + [anon_sym_CR] = ACTIONS(2269), + [anon_sym_CR_LF] = ACTIONS(2269), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2219), - [anon_sym_as] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2217), - [anon_sym_COMMA] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym___global] = ACTIONS(2217), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2219), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_GT] = ACTIONS(2219), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2219), - [anon_sym_GT_EQ] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_union] = ACTIONS(2217), - [anon_sym_pub] = ACTIONS(2217), - [anon_sym_mut] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), - [anon_sym_interface] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2219), - [anon_sym_DASH_DASH] = ACTIONS(2219), - [anon_sym_QMARK] = ACTIONS(2219), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_go] = ACTIONS(2217), - [anon_sym_spawn] = ACTIONS(2217), - [anon_sym_json_DOTdecode] = ACTIONS(2217), - [anon_sym_LBRACK2] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2219), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2219), - [anon_sym_AMP_CARET] = ACTIONS(2219), - [anon_sym_AMP_AMP] = ACTIONS(2219), - [anon_sym_PIPE_PIPE] = ACTIONS(2219), - [anon_sym_or] = ACTIONS(2219), - [sym_none] = ACTIONS(2217), - [sym_true] = ACTIONS(2217), - [sym_false] = ACTIONS(2217), - [sym_nil] = ACTIONS(2217), - [anon_sym_QMARK_DOT] = ACTIONS(2219), - [anon_sym_POUND_LBRACK] = ACTIONS(2219), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_DOLLARif] = ACTIONS(2217), - [anon_sym_is] = ACTIONS(2219), - [anon_sym_BANGis] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_BANGin] = ACTIONS(2219), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_select] = ACTIONS(2217), - [anon_sym_lock] = ACTIONS(2217), - [anon_sym_rlock] = ACTIONS(2217), - [anon_sym_unsafe] = ACTIONS(2217), - [anon_sym_sql] = ACTIONS(2217), - [sym_int_literal] = ACTIONS(2217), - [sym_float_literal] = ACTIONS(2217), - [sym_rune_literal] = ACTIONS(2217), - [sym_pseudo_compile_time_identifier] = ACTIONS(2217), - [anon_sym_shared] = ACTIONS(2217), - [anon_sym_map_LBRACK] = ACTIONS(2217), - [anon_sym_chan] = ACTIONS(2217), - [anon_sym_thread] = ACTIONS(2217), - [anon_sym_atomic] = ACTIONS(2217), - [anon_sym_assert] = ACTIONS(2217), - [anon_sym_defer] = ACTIONS(2217), - [anon_sym_goto] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_DOLLARfor] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_POUND] = ACTIONS(2217), - [anon_sym_asm] = ACTIONS(2217), - [anon_sym_AT_LBRACK] = ACTIONS(2217), - [sym___double_quote] = ACTIONS(2217), - [sym___single_quote] = ACTIONS(2217), - [sym___c_double_quote] = ACTIONS(2217), - [sym___c_single_quote] = ACTIONS(2217), - [sym___r_double_quote] = ACTIONS(2217), - [sym___r_single_quote] = ACTIONS(2217), + [anon_sym_DOT] = ACTIONS(2269), + [anon_sym_as] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2269), + [anon_sym_COMMA] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2269), + [anon_sym___global] = ACTIONS(2269), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_PIPE] = ACTIONS(2269), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2269), + [anon_sym_SLASH] = ACTIONS(2269), + [anon_sym_PERCENT] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_GT] = ACTIONS(2269), + [anon_sym_EQ_EQ] = ACTIONS(2269), + [anon_sym_BANG_EQ] = ACTIONS(2269), + [anon_sym_LT_EQ] = ACTIONS(2269), + [anon_sym_GT_EQ] = ACTIONS(2269), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_pub] = ACTIONS(2269), + [anon_sym_mut] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_interface] = ACTIONS(2269), + [anon_sym_PLUS_PLUS] = ACTIONS(2269), + [anon_sym_DASH_DASH] = ACTIONS(2269), + [anon_sym_QMARK] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2269), + [anon_sym_go] = ACTIONS(2269), + [anon_sym_spawn] = ACTIONS(2269), + [anon_sym_json_DOTdecode] = ACTIONS(2269), + [anon_sym_LBRACK2] = ACTIONS(2269), + [anon_sym_TILDE] = ACTIONS(2269), + [anon_sym_CARET] = ACTIONS(2269), + [anon_sym_AMP] = ACTIONS(2269), + [anon_sym_LT_DASH] = ACTIONS(2269), + [anon_sym_LT_LT] = ACTIONS(2269), + [anon_sym_GT_GT] = ACTIONS(2269), + [anon_sym_GT_GT_GT] = ACTIONS(2269), + [anon_sym_AMP_CARET] = ACTIONS(2269), + [anon_sym_AMP_AMP] = ACTIONS(2269), + [anon_sym_PIPE_PIPE] = ACTIONS(2269), + [anon_sym_or] = ACTIONS(2269), + [sym_none] = ACTIONS(2269), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_nil] = ACTIONS(2269), + [anon_sym_QMARK_DOT] = ACTIONS(2269), + [anon_sym_POUND_LBRACK] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_DOLLARif] = ACTIONS(2269), + [anon_sym_is] = ACTIONS(2269), + [anon_sym_BANGis] = ACTIONS(2269), + [anon_sym_in] = ACTIONS(2269), + [anon_sym_BANGin] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_select] = ACTIONS(2269), + [anon_sym_lock] = ACTIONS(2269), + [anon_sym_rlock] = ACTIONS(2269), + [anon_sym_unsafe] = ACTIONS(2269), + [anon_sym_sql] = ACTIONS(2269), + [sym_int_literal] = ACTIONS(2269), + [sym_float_literal] = ACTIONS(2269), + [sym_rune_literal] = ACTIONS(2269), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_DQUOTE] = ACTIONS(2269), + [anon_sym_c_SQUOTE] = ACTIONS(2269), + [anon_sym_c_DQUOTE] = ACTIONS(2269), + [anon_sym_r_SQUOTE] = ACTIONS(2269), + [anon_sym_r_DQUOTE] = ACTIONS(2269), + [sym_pseudo_compile_time_identifier] = ACTIONS(2269), + [anon_sym_shared] = ACTIONS(2269), + [anon_sym_map_LBRACK] = ACTIONS(2269), + [anon_sym_chan] = ACTIONS(2269), + [anon_sym_thread] = ACTIONS(2269), + [anon_sym_atomic] = ACTIONS(2269), + [anon_sym_assert] = ACTIONS(2269), + [anon_sym_defer] = ACTIONS(2269), + [anon_sym_goto] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_DOLLARfor] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_POUND] = ACTIONS(2269), + [anon_sym_asm] = ACTIONS(2269), + [anon_sym_AT_LBRACK] = ACTIONS(2269), }, [1073] = { [sym_line_comment] = STATE(1073), [sym_block_comment] = STATE(1073), - [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), + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LF] = ACTIONS(2201), + [anon_sym_CR] = ACTIONS(2201), + [anon_sym_CR_LF] = ACTIONS(2201), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2443), - [anon_sym_as] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_COMMA] = ACTIONS(2443), - [anon_sym_const] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym___global] = ACTIONS(2443), - [anon_sym_type] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_fn] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2443), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_LT] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2441), - [anon_sym_struct] = ACTIONS(2443), - [anon_sym_union] = ACTIONS(2443), - [anon_sym_pub] = ACTIONS(2443), - [anon_sym_mut] = ACTIONS(2443), - [anon_sym_enum] = ACTIONS(2443), - [anon_sym_interface] = ACTIONS(2443), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_QMARK] = ACTIONS(2443), - [anon_sym_BANG] = ACTIONS(2443), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2443), - [anon_sym_json_DOTdecode] = ACTIONS(2443), - [anon_sym_LBRACK2] = ACTIONS(2443), - [anon_sym_TILDE] = ACTIONS(2443), - [anon_sym_CARET] = ACTIONS(2443), - [anon_sym_AMP] = ACTIONS(2443), - [anon_sym_LT_DASH] = ACTIONS(2443), - [anon_sym_LT_LT] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(2443), - [anon_sym_GT_GT_GT] = ACTIONS(2443), - [anon_sym_AMP_CARET] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_or] = ACTIONS(2443), - [sym_none] = ACTIONS(2443), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_nil] = ACTIONS(2443), - [anon_sym_QMARK_DOT] = ACTIONS(2443), - [anon_sym_POUND_LBRACK] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_DOLLARif] = ACTIONS(2443), - [anon_sym_is] = ACTIONS(2443), - [anon_sym_BANGis] = ACTIONS(2443), - [anon_sym_in] = ACTIONS(2443), - [anon_sym_BANGin] = ACTIONS(2443), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_select] = ACTIONS(2443), - [anon_sym_lock] = ACTIONS(2443), - [anon_sym_rlock] = ACTIONS(2443), - [anon_sym_unsafe] = ACTIONS(2443), - [anon_sym_sql] = ACTIONS(2443), - [sym_int_literal] = ACTIONS(2443), - [sym_float_literal] = ACTIONS(2443), - [sym_rune_literal] = ACTIONS(2443), - [sym_pseudo_compile_time_identifier] = ACTIONS(2443), - [anon_sym_shared] = ACTIONS(2443), - [anon_sym_map_LBRACK] = ACTIONS(2443), - [anon_sym_chan] = ACTIONS(2443), - [anon_sym_thread] = ACTIONS(2443), - [anon_sym_atomic] = ACTIONS(2443), - [anon_sym_assert] = ACTIONS(2443), - [anon_sym_defer] = ACTIONS(2443), - [anon_sym_goto] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_DOLLARfor] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_POUND] = ACTIONS(2443), - [anon_sym_asm] = ACTIONS(2443), - [anon_sym_AT_LBRACK] = ACTIONS(2443), - [sym___double_quote] = ACTIONS(2443), - [sym___single_quote] = ACTIONS(2443), - [sym___c_double_quote] = ACTIONS(2443), - [sym___c_single_quote] = ACTIONS(2443), - [sym___r_double_quote] = ACTIONS(2443), - [sym___r_single_quote] = ACTIONS(2443), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_as] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_COMMA] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2201), + [anon_sym___global] = ACTIONS(2201), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_fn] = ACTIONS(2201), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(2201), + [anon_sym_SLASH] = ACTIONS(2201), + [anon_sym_PERCENT] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2201), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_struct] = ACTIONS(2201), + [anon_sym_union] = ACTIONS(2201), + [anon_sym_pub] = ACTIONS(2201), + [anon_sym_mut] = ACTIONS(2201), + [anon_sym_enum] = ACTIONS(2201), + [anon_sym_interface] = ACTIONS(2201), + [anon_sym_PLUS_PLUS] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(2201), + [anon_sym_QMARK] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2201), + [anon_sym_go] = ACTIONS(2201), + [anon_sym_spawn] = ACTIONS(2201), + [anon_sym_json_DOTdecode] = ACTIONS(2201), + [anon_sym_LBRACK2] = ACTIONS(2201), + [anon_sym_TILDE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2201), + [anon_sym_AMP] = ACTIONS(2201), + [anon_sym_LT_DASH] = ACTIONS(2201), + [anon_sym_LT_LT] = ACTIONS(2201), + [anon_sym_GT_GT] = ACTIONS(2201), + [anon_sym_GT_GT_GT] = ACTIONS(2201), + [anon_sym_AMP_CARET] = ACTIONS(2201), + [anon_sym_AMP_AMP] = ACTIONS(2201), + [anon_sym_PIPE_PIPE] = ACTIONS(2201), + [anon_sym_or] = ACTIONS(2201), + [sym_none] = ACTIONS(2201), + [sym_true] = ACTIONS(2201), + [sym_false] = ACTIONS(2201), + [sym_nil] = ACTIONS(2201), + [anon_sym_QMARK_DOT] = ACTIONS(2201), + [anon_sym_POUND_LBRACK] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_DOLLARif] = ACTIONS(2201), + [anon_sym_is] = ACTIONS(2201), + [anon_sym_BANGis] = ACTIONS(2201), + [anon_sym_in] = ACTIONS(2201), + [anon_sym_BANGin] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_select] = ACTIONS(2201), + [anon_sym_lock] = ACTIONS(2201), + [anon_sym_rlock] = ACTIONS(2201), + [anon_sym_unsafe] = ACTIONS(2201), + [anon_sym_sql] = ACTIONS(2201), + [sym_int_literal] = ACTIONS(2201), + [sym_float_literal] = ACTIONS(2201), + [sym_rune_literal] = ACTIONS(2201), + [anon_sym_SQUOTE] = ACTIONS(2201), + [anon_sym_DQUOTE] = ACTIONS(2201), + [anon_sym_c_SQUOTE] = ACTIONS(2201), + [anon_sym_c_DQUOTE] = ACTIONS(2201), + [anon_sym_r_SQUOTE] = ACTIONS(2201), + [anon_sym_r_DQUOTE] = ACTIONS(2201), + [sym_pseudo_compile_time_identifier] = ACTIONS(2201), + [anon_sym_shared] = ACTIONS(2201), + [anon_sym_map_LBRACK] = ACTIONS(2201), + [anon_sym_chan] = ACTIONS(2201), + [anon_sym_thread] = ACTIONS(2201), + [anon_sym_atomic] = ACTIONS(2201), + [anon_sym_assert] = ACTIONS(2201), + [anon_sym_defer] = ACTIONS(2201), + [anon_sym_goto] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_DOLLARfor] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(2201), + [anon_sym_asm] = ACTIONS(2201), + [anon_sym_AT_LBRACK] = ACTIONS(2201), }, [1074] = { [sym_line_comment] = STATE(1074), [sym_block_comment] = STATE(1074), - [ts_builtin_sym_end] = ACTIONS(2447), - [sym_identifier] = ACTIONS(2449), - [anon_sym_LF] = ACTIONS(2449), - [anon_sym_CR] = ACTIONS(2449), - [anon_sym_CR_LF] = ACTIONS(2449), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2449), - [anon_sym_as] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_COMMA] = ACTIONS(2449), - [anon_sym_const] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2449), - [anon_sym___global] = ACTIONS(2449), - [anon_sym_type] = ACTIONS(2449), - [anon_sym_PIPE] = ACTIONS(2449), - [anon_sym_fn] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_struct] = ACTIONS(2449), - [anon_sym_union] = ACTIONS(2449), - [anon_sym_pub] = ACTIONS(2449), - [anon_sym_mut] = ACTIONS(2449), - [anon_sym_enum] = ACTIONS(2449), - [anon_sym_interface] = ACTIONS(2449), - [anon_sym_PLUS_PLUS] = ACTIONS(2449), - [anon_sym_DASH_DASH] = ACTIONS(2449), - [anon_sym_QMARK] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2449), - [anon_sym_go] = ACTIONS(2449), - [anon_sym_spawn] = ACTIONS(2449), - [anon_sym_json_DOTdecode] = ACTIONS(2449), - [anon_sym_LBRACK2] = ACTIONS(2449), - [anon_sym_TILDE] = ACTIONS(2449), - [anon_sym_CARET] = ACTIONS(2449), - [anon_sym_AMP] = ACTIONS(2449), - [anon_sym_LT_DASH] = ACTIONS(2449), - [anon_sym_LT_LT] = ACTIONS(2449), - [anon_sym_GT_GT] = ACTIONS(2449), - [anon_sym_GT_GT_GT] = ACTIONS(2449), - [anon_sym_AMP_CARET] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_or] = ACTIONS(2449), - [sym_none] = ACTIONS(2449), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_nil] = ACTIONS(2449), - [anon_sym_QMARK_DOT] = ACTIONS(2449), - [anon_sym_POUND_LBRACK] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_DOLLARif] = ACTIONS(2449), - [anon_sym_is] = ACTIONS(2449), - [anon_sym_BANGis] = ACTIONS(2449), - [anon_sym_in] = ACTIONS(2449), - [anon_sym_BANGin] = ACTIONS(2449), - [anon_sym_match] = ACTIONS(2449), - [anon_sym_select] = ACTIONS(2449), - [anon_sym_lock] = ACTIONS(2449), - [anon_sym_rlock] = ACTIONS(2449), - [anon_sym_unsafe] = ACTIONS(2449), - [anon_sym_sql] = ACTIONS(2449), - [sym_int_literal] = ACTIONS(2449), - [sym_float_literal] = ACTIONS(2449), - [sym_rune_literal] = ACTIONS(2449), - [sym_pseudo_compile_time_identifier] = ACTIONS(2449), - [anon_sym_shared] = ACTIONS(2449), - [anon_sym_map_LBRACK] = ACTIONS(2449), - [anon_sym_chan] = ACTIONS(2449), - [anon_sym_thread] = ACTIONS(2449), - [anon_sym_atomic] = ACTIONS(2449), - [anon_sym_assert] = ACTIONS(2449), - [anon_sym_defer] = ACTIONS(2449), - [anon_sym_goto] = ACTIONS(2449), - [anon_sym_break] = ACTIONS(2449), - [anon_sym_continue] = ACTIONS(2449), - [anon_sym_return] = ACTIONS(2449), - [anon_sym_DOLLARfor] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_POUND] = ACTIONS(2449), - [anon_sym_asm] = ACTIONS(2449), - [anon_sym_AT_LBRACK] = ACTIONS(2449), - [sym___double_quote] = ACTIONS(2449), - [sym___single_quote] = ACTIONS(2449), - [sym___c_double_quote] = ACTIONS(2449), - [sym___c_single_quote] = ACTIONS(2449), - [sym___r_double_quote] = ACTIONS(2449), - [sym___r_single_quote] = ACTIONS(2449), - }, - [1075] = { - [sym_line_comment] = STATE(1075), - [sym_block_comment] = STATE(1075), - [ts_builtin_sym_end] = ACTIONS(2453), - [sym_identifier] = ACTIONS(2455), - [anon_sym_LF] = ACTIONS(2455), - [anon_sym_CR] = ACTIONS(2455), - [anon_sym_CR_LF] = ACTIONS(2455), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2455), - [anon_sym_as] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_COMMA] = ACTIONS(2455), - [anon_sym_const] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym___global] = ACTIONS(2455), - [anon_sym_type] = ACTIONS(2455), - [anon_sym_PIPE] = ACTIONS(2455), - [anon_sym_fn] = ACTIONS(2455), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(2455), - [anon_sym_SLASH] = ACTIONS(2455), - [anon_sym_PERCENT] = ACTIONS(2455), - [anon_sym_LT] = ACTIONS(2455), - [anon_sym_GT] = ACTIONS(2455), - [anon_sym_EQ_EQ] = ACTIONS(2455), - [anon_sym_BANG_EQ] = ACTIONS(2455), - [anon_sym_LT_EQ] = ACTIONS(2455), - [anon_sym_GT_EQ] = ACTIONS(2455), - [anon_sym_LBRACK] = ACTIONS(2453), - [anon_sym_struct] = ACTIONS(2455), - [anon_sym_union] = ACTIONS(2455), - [anon_sym_pub] = ACTIONS(2455), - [anon_sym_mut] = ACTIONS(2455), - [anon_sym_enum] = ACTIONS(2455), - [anon_sym_interface] = ACTIONS(2455), - [anon_sym_PLUS_PLUS] = ACTIONS(2455), - [anon_sym_DASH_DASH] = ACTIONS(2455), - [anon_sym_QMARK] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2455), - [anon_sym_go] = ACTIONS(2455), - [anon_sym_spawn] = ACTIONS(2455), - [anon_sym_json_DOTdecode] = ACTIONS(2455), - [anon_sym_LBRACK2] = ACTIONS(2455), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_CARET] = ACTIONS(2455), - [anon_sym_AMP] = ACTIONS(2455), - [anon_sym_LT_DASH] = ACTIONS(2455), - [anon_sym_LT_LT] = ACTIONS(2455), - [anon_sym_GT_GT] = ACTIONS(2455), - [anon_sym_GT_GT_GT] = ACTIONS(2455), - [anon_sym_AMP_CARET] = ACTIONS(2455), - [anon_sym_AMP_AMP] = ACTIONS(2455), - [anon_sym_PIPE_PIPE] = ACTIONS(2455), - [anon_sym_or] = ACTIONS(2455), - [sym_none] = ACTIONS(2455), - [sym_true] = ACTIONS(2455), - [sym_false] = ACTIONS(2455), - [sym_nil] = ACTIONS(2455), - [anon_sym_QMARK_DOT] = ACTIONS(2455), - [anon_sym_POUND_LBRACK] = ACTIONS(2455), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_DOLLARif] = ACTIONS(2455), - [anon_sym_is] = ACTIONS(2455), - [anon_sym_BANGis] = ACTIONS(2455), - [anon_sym_in] = ACTIONS(2455), - [anon_sym_BANGin] = ACTIONS(2455), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_select] = ACTIONS(2455), - [anon_sym_lock] = ACTIONS(2455), - [anon_sym_rlock] = ACTIONS(2455), - [anon_sym_unsafe] = ACTIONS(2455), - [anon_sym_sql] = ACTIONS(2455), - [sym_int_literal] = ACTIONS(2455), - [sym_float_literal] = ACTIONS(2455), - [sym_rune_literal] = ACTIONS(2455), - [sym_pseudo_compile_time_identifier] = ACTIONS(2455), - [anon_sym_shared] = ACTIONS(2455), - [anon_sym_map_LBRACK] = ACTIONS(2455), - [anon_sym_chan] = ACTIONS(2455), - [anon_sym_thread] = ACTIONS(2455), - [anon_sym_atomic] = ACTIONS(2455), - [anon_sym_assert] = ACTIONS(2455), - [anon_sym_defer] = ACTIONS(2455), - [anon_sym_goto] = ACTIONS(2455), - [anon_sym_break] = ACTIONS(2455), - [anon_sym_continue] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2455), - [anon_sym_DOLLARfor] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_POUND] = ACTIONS(2455), - [anon_sym_asm] = ACTIONS(2455), - [anon_sym_AT_LBRACK] = ACTIONS(2455), - [sym___double_quote] = ACTIONS(2455), - [sym___single_quote] = ACTIONS(2455), - [sym___c_double_quote] = ACTIONS(2455), - [sym___c_single_quote] = ACTIONS(2455), - [sym___r_double_quote] = ACTIONS(2455), - [sym___r_single_quote] = ACTIONS(2455), - }, - [1076] = { - [sym_line_comment] = STATE(1076), - [sym_block_comment] = STATE(1076), - [ts_builtin_sym_end] = ACTIONS(2457), - [sym_identifier] = ACTIONS(2459), - [anon_sym_LF] = ACTIONS(2459), - [anon_sym_CR] = ACTIONS(2459), - [anon_sym_CR_LF] = ACTIONS(2459), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2459), - [anon_sym_as] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [anon_sym_COMMA] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym___global] = ACTIONS(2459), - [anon_sym_type] = ACTIONS(2459), - [anon_sym_PIPE] = ACTIONS(2459), - [anon_sym_fn] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2459), - [anon_sym_SLASH] = ACTIONS(2459), - [anon_sym_PERCENT] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2459), - [anon_sym_GT] = ACTIONS(2459), - [anon_sym_EQ_EQ] = ACTIONS(2459), - [anon_sym_BANG_EQ] = ACTIONS(2459), - [anon_sym_LT_EQ] = ACTIONS(2459), - [anon_sym_GT_EQ] = ACTIONS(2459), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_pub] = ACTIONS(2459), - [anon_sym_mut] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_interface] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_QMARK] = ACTIONS(2459), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_go] = ACTIONS(2459), - [anon_sym_spawn] = ACTIONS(2459), - [anon_sym_json_DOTdecode] = ACTIONS(2459), - [anon_sym_LBRACK2] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_LT_DASH] = ACTIONS(2459), - [anon_sym_LT_LT] = ACTIONS(2459), - [anon_sym_GT_GT] = ACTIONS(2459), - [anon_sym_GT_GT_GT] = ACTIONS(2459), - [anon_sym_AMP_CARET] = ACTIONS(2459), - [anon_sym_AMP_AMP] = ACTIONS(2459), - [anon_sym_PIPE_PIPE] = ACTIONS(2459), - [anon_sym_or] = ACTIONS(2459), - [sym_none] = ACTIONS(2459), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_nil] = ACTIONS(2459), - [anon_sym_QMARK_DOT] = ACTIONS(2459), - [anon_sym_POUND_LBRACK] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_DOLLARif] = ACTIONS(2459), - [anon_sym_is] = ACTIONS(2459), - [anon_sym_BANGis] = ACTIONS(2459), - [anon_sym_in] = ACTIONS(2459), - [anon_sym_BANGin] = ACTIONS(2459), - [anon_sym_match] = ACTIONS(2459), - [anon_sym_select] = ACTIONS(2459), - [anon_sym_lock] = ACTIONS(2459), - [anon_sym_rlock] = ACTIONS(2459), - [anon_sym_unsafe] = ACTIONS(2459), - [anon_sym_sql] = ACTIONS(2459), - [sym_int_literal] = ACTIONS(2459), - [sym_float_literal] = ACTIONS(2459), - [sym_rune_literal] = ACTIONS(2459), - [sym_pseudo_compile_time_identifier] = ACTIONS(2459), - [anon_sym_shared] = ACTIONS(2459), - [anon_sym_map_LBRACK] = ACTIONS(2459), - [anon_sym_chan] = ACTIONS(2459), - [anon_sym_thread] = ACTIONS(2459), - [anon_sym_atomic] = ACTIONS(2459), - [anon_sym_assert] = ACTIONS(2459), - [anon_sym_defer] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_DOLLARfor] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_POUND] = ACTIONS(2459), - [anon_sym_asm] = ACTIONS(2459), - [anon_sym_AT_LBRACK] = ACTIONS(2459), - [sym___double_quote] = ACTIONS(2459), - [sym___single_quote] = ACTIONS(2459), - [sym___c_double_quote] = ACTIONS(2459), - [sym___c_single_quote] = ACTIONS(2459), - [sym___r_double_quote] = ACTIONS(2459), - [sym___r_single_quote] = ACTIONS(2459), - }, - [1077] = { - [sym_line_comment] = STATE(1077), - [sym_block_comment] = STATE(1077), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2219), - [anon_sym_LF] = ACTIONS(2219), - [anon_sym_CR] = ACTIONS(2219), - [anon_sym_CR_LF] = ACTIONS(2219), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2219), - [anon_sym_as] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_COMMA] = ACTIONS(2219), - [anon_sym_const] = ACTIONS(2219), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym___global] = ACTIONS(2219), - [anon_sym_type] = ACTIONS(2219), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_fn] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2219), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_GT] = ACTIONS(2219), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2219), - [anon_sym_GT_EQ] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2219), - [anon_sym_union] = ACTIONS(2219), - [anon_sym_pub] = ACTIONS(2219), - [anon_sym_mut] = ACTIONS(2219), - [anon_sym_enum] = ACTIONS(2219), - [anon_sym_interface] = ACTIONS(2219), - [anon_sym_PLUS_PLUS] = ACTIONS(2219), - [anon_sym_DASH_DASH] = ACTIONS(2219), - [anon_sym_QMARK] = ACTIONS(2219), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_go] = ACTIONS(2219), - [anon_sym_spawn] = ACTIONS(2219), - [anon_sym_json_DOTdecode] = ACTIONS(2219), - [anon_sym_LBRACK2] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2219), - [anon_sym_LT_LT] = ACTIONS(2219), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2219), - [anon_sym_AMP_CARET] = ACTIONS(2219), - [anon_sym_AMP_AMP] = ACTIONS(2219), - [anon_sym_PIPE_PIPE] = ACTIONS(2219), - [anon_sym_or] = ACTIONS(2219), - [sym_none] = ACTIONS(2219), - [sym_true] = ACTIONS(2219), - [sym_false] = ACTIONS(2219), - [sym_nil] = ACTIONS(2219), - [anon_sym_QMARK_DOT] = ACTIONS(2219), - [anon_sym_POUND_LBRACK] = ACTIONS(2219), - [anon_sym_if] = ACTIONS(2219), - [anon_sym_DOLLARif] = ACTIONS(2219), - [anon_sym_is] = ACTIONS(2219), - [anon_sym_BANGis] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_BANGin] = ACTIONS(2219), - [anon_sym_match] = ACTIONS(2219), - [anon_sym_select] = ACTIONS(2219), - [anon_sym_lock] = ACTIONS(2219), - [anon_sym_rlock] = ACTIONS(2219), - [anon_sym_unsafe] = ACTIONS(2219), - [anon_sym_sql] = ACTIONS(2219), - [sym_int_literal] = ACTIONS(2219), - [sym_float_literal] = ACTIONS(2219), - [sym_rune_literal] = ACTIONS(2219), - [sym_pseudo_compile_time_identifier] = ACTIONS(2219), - [anon_sym_shared] = ACTIONS(2219), - [anon_sym_map_LBRACK] = ACTIONS(2219), - [anon_sym_chan] = ACTIONS(2219), - [anon_sym_thread] = ACTIONS(2219), - [anon_sym_atomic] = ACTIONS(2219), - [anon_sym_assert] = ACTIONS(2219), - [anon_sym_defer] = ACTIONS(2219), - [anon_sym_goto] = ACTIONS(2219), - [anon_sym_break] = ACTIONS(2219), - [anon_sym_continue] = ACTIONS(2219), - [anon_sym_return] = ACTIONS(2219), - [anon_sym_DOLLARfor] = ACTIONS(2219), - [anon_sym_for] = ACTIONS(2219), - [anon_sym_POUND] = ACTIONS(2219), - [anon_sym_asm] = ACTIONS(2219), - [anon_sym_AT_LBRACK] = ACTIONS(2219), - [sym___double_quote] = ACTIONS(2219), - [sym___single_quote] = ACTIONS(2219), - [sym___c_double_quote] = ACTIONS(2219), - [sym___c_single_quote] = ACTIONS(2219), - [sym___r_double_quote] = ACTIONS(2219), - [sym___r_single_quote] = ACTIONS(2219), - }, - [1078] = { - [sym_line_comment] = STATE(1078), - [sym_block_comment] = STATE(1078), - [ts_builtin_sym_end] = ACTIONS(2804), - [sym_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2806), - [anon_sym_CR] = ACTIONS(2806), - [anon_sym_CR_LF] = ACTIONS(2806), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_as] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym___global] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_fn] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_SLASH] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2806), - [anon_sym_GT] = ACTIONS(2806), - [anon_sym_EQ_EQ] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_LT_EQ] = ACTIONS(2806), - [anon_sym_GT_EQ] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2804), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_union] = ACTIONS(2806), - [anon_sym_pub] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_interface] = ACTIONS(2806), - [anon_sym_PLUS_PLUS] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2806), - [anon_sym_go] = ACTIONS(2806), - [anon_sym_spawn] = ACTIONS(2806), - [anon_sym_json_DOTdecode] = ACTIONS(2806), - [anon_sym_LBRACK2] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_LT_LT] = ACTIONS(2806), - [anon_sym_GT_GT] = ACTIONS(2806), - [anon_sym_GT_GT_GT] = ACTIONS(2806), - [anon_sym_AMP_CARET] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_or] = ACTIONS(2806), - [sym_none] = ACTIONS(2806), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_nil] = ACTIONS(2806), - [anon_sym_QMARK_DOT] = ACTIONS(2806), - [anon_sym_POUND_LBRACK] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_DOLLARif] = ACTIONS(2806), - [anon_sym_is] = ACTIONS(2806), - [anon_sym_BANGis] = ACTIONS(2806), - [anon_sym_in] = ACTIONS(2806), - [anon_sym_BANGin] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_select] = ACTIONS(2806), - [anon_sym_lock] = ACTIONS(2806), - [anon_sym_rlock] = ACTIONS(2806), - [anon_sym_unsafe] = ACTIONS(2806), - [anon_sym_sql] = ACTIONS(2806), - [sym_int_literal] = ACTIONS(2806), - [sym_float_literal] = ACTIONS(2806), - [sym_rune_literal] = ACTIONS(2806), - [sym_pseudo_compile_time_identifier] = ACTIONS(2806), - [anon_sym_shared] = ACTIONS(2806), - [anon_sym_map_LBRACK] = ACTIONS(2806), - [anon_sym_chan] = ACTIONS(2806), - [anon_sym_thread] = ACTIONS(2806), - [anon_sym_atomic] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_defer] = ACTIONS(2806), - [anon_sym_goto] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_DOLLARfor] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_POUND] = ACTIONS(2806), - [anon_sym_asm] = ACTIONS(2806), - [anon_sym_AT_LBRACK] = ACTIONS(2806), - [sym___double_quote] = ACTIONS(2806), - [sym___single_quote] = ACTIONS(2806), - [sym___c_double_quote] = ACTIONS(2806), - [sym___c_single_quote] = ACTIONS(2806), - [sym___r_double_quote] = ACTIONS(2806), - [sym___r_single_quote] = ACTIONS(2806), - }, - [1079] = { - [sym_line_comment] = STATE(1079), - [sym_block_comment] = STATE(1079), - [ts_builtin_sym_end] = ACTIONS(3052), - [sym_identifier] = ACTIONS(3054), - [anon_sym_LF] = ACTIONS(3054), - [anon_sym_CR] = ACTIONS(3054), - [anon_sym_CR_LF] = ACTIONS(3054), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_as] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_const] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym___global] = ACTIONS(3054), - [anon_sym_type] = ACTIONS(3054), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_fn] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_union] = ACTIONS(3054), - [anon_sym_pub] = ACTIONS(3054), - [anon_sym_mut] = ACTIONS(3054), - [anon_sym_enum] = ACTIONS(3054), - [anon_sym_interface] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3054), - [anon_sym_DASH_DASH] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_BANG] = ACTIONS(3054), - [anon_sym_go] = ACTIONS(3054), - [anon_sym_spawn] = ACTIONS(3054), - [anon_sym_json_DOTdecode] = ACTIONS(3054), - [anon_sym_LBRACK2] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3054), - [anon_sym_CARET] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_LT_LT] = ACTIONS(3054), - [anon_sym_GT_GT] = ACTIONS(3054), - [anon_sym_GT_GT_GT] = ACTIONS(3054), - [anon_sym_AMP_CARET] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3054), - [sym_none] = ACTIONS(3054), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [sym_nil] = ACTIONS(3054), - [anon_sym_QMARK_DOT] = ACTIONS(3054), - [anon_sym_POUND_LBRACK] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_DOLLARif] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3054), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_select] = ACTIONS(3054), - [anon_sym_lock] = ACTIONS(3054), - [anon_sym_rlock] = ACTIONS(3054), - [anon_sym_unsafe] = ACTIONS(3054), - [anon_sym_sql] = ACTIONS(3054), - [sym_int_literal] = ACTIONS(3054), - [sym_float_literal] = ACTIONS(3054), - [sym_rune_literal] = ACTIONS(3054), - [sym_pseudo_compile_time_identifier] = ACTIONS(3054), - [anon_sym_shared] = ACTIONS(3054), - [anon_sym_map_LBRACK] = ACTIONS(3054), - [anon_sym_chan] = ACTIONS(3054), - [anon_sym_thread] = ACTIONS(3054), - [anon_sym_atomic] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_defer] = ACTIONS(3054), - [anon_sym_goto] = ACTIONS(3054), - [anon_sym_break] = ACTIONS(3054), - [anon_sym_continue] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_DOLLARfor] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_POUND] = ACTIONS(3054), - [anon_sym_asm] = ACTIONS(3054), - [anon_sym_AT_LBRACK] = ACTIONS(3054), - [sym___double_quote] = ACTIONS(3054), - [sym___single_quote] = ACTIONS(3054), - [sym___c_double_quote] = ACTIONS(3054), - [sym___c_single_quote] = ACTIONS(3054), - [sym___r_double_quote] = ACTIONS(3054), - [sym___r_single_quote] = ACTIONS(3054), + [ts_builtin_sym_end] = ACTIONS(2713), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LF] = ACTIONS(2715), + [anon_sym_CR] = ACTIONS(2715), + [anon_sym_CR_LF] = ACTIONS(2715), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2715), + [anon_sym_as] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2715), + [anon_sym_const] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym___global] = ACTIONS(2715), + [anon_sym_type] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_PLUS] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_SLASH] = ACTIONS(2715), + [anon_sym_PERCENT] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_GT] = ACTIONS(2715), + [anon_sym_EQ_EQ] = ACTIONS(2715), + [anon_sym_BANG_EQ] = ACTIONS(2715), + [anon_sym_LT_EQ] = ACTIONS(2715), + [anon_sym_GT_EQ] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_union] = ACTIONS(2715), + [anon_sym_pub] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(2715), + [anon_sym_enum] = ACTIONS(2715), + [anon_sym_interface] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_QMARK] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_go] = ACTIONS(2715), + [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_json_DOTdecode] = ACTIONS(2715), + [anon_sym_LBRACK2] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_CARET] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_LT_DASH] = ACTIONS(2715), + [anon_sym_LT_LT] = ACTIONS(2715), + [anon_sym_GT_GT] = ACTIONS(2715), + [anon_sym_GT_GT_GT] = ACTIONS(2715), + [anon_sym_AMP_CARET] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_PIPE_PIPE] = ACTIONS(2715), + [anon_sym_or] = ACTIONS(2715), + [sym_none] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), + [sym_nil] = ACTIONS(2715), + [anon_sym_QMARK_DOT] = ACTIONS(2715), + [anon_sym_POUND_LBRACK] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_DOLLARif] = ACTIONS(2715), + [anon_sym_is] = ACTIONS(2715), + [anon_sym_BANGis] = ACTIONS(2715), + [anon_sym_in] = ACTIONS(2715), + [anon_sym_BANGin] = ACTIONS(2715), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_select] = ACTIONS(2715), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_sql] = ACTIONS(2715), + [sym_int_literal] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2715), + [sym_rune_literal] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [anon_sym_c_SQUOTE] = ACTIONS(2715), + [anon_sym_c_DQUOTE] = ACTIONS(2715), + [anon_sym_r_SQUOTE] = ACTIONS(2715), + [anon_sym_r_DQUOTE] = ACTIONS(2715), + [sym_pseudo_compile_time_identifier] = ACTIONS(2715), + [anon_sym_shared] = ACTIONS(2715), + [anon_sym_map_LBRACK] = ACTIONS(2715), + [anon_sym_chan] = ACTIONS(2715), + [anon_sym_thread] = ACTIONS(2715), + [anon_sym_atomic] = ACTIONS(2715), + [anon_sym_assert] = ACTIONS(2715), + [anon_sym_defer] = ACTIONS(2715), + [anon_sym_goto] = ACTIONS(2715), + [anon_sym_break] = ACTIONS(2715), + [anon_sym_continue] = ACTIONS(2715), + [anon_sym_return] = ACTIONS(2715), + [anon_sym_DOLLARfor] = ACTIONS(2715), + [anon_sym_for] = ACTIONS(2715), + [anon_sym_POUND] = ACTIONS(2715), + [anon_sym_asm] = ACTIONS(2715), + [anon_sym_AT_LBRACK] = ACTIONS(2715), }, - [1080] = { - [sym_line_comment] = STATE(1080), - [sym_block_comment] = STATE(1080), - [ts_builtin_sym_end] = ACTIONS(2670), - [sym_identifier] = ACTIONS(2672), - [anon_sym_LF] = ACTIONS(2672), - [anon_sym_CR] = ACTIONS(2672), - [anon_sym_CR_LF] = ACTIONS(2672), + [1075] = { + [sym_line_comment] = STATE(1075), + [sym_block_comment] = STATE(1075), + [ts_builtin_sym_end] = ACTIONS(2271), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LF] = ACTIONS(2273), + [anon_sym_CR] = ACTIONS(2273), + [anon_sym_CR_LF] = ACTIONS(2273), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2672), - [anon_sym_as] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_COMMA] = ACTIONS(2672), - [anon_sym_const] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym___global] = ACTIONS(2672), - [anon_sym_type] = ACTIONS(2672), - [anon_sym_PIPE] = ACTIONS(2672), - [anon_sym_fn] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2672), - [anon_sym_STAR] = ACTIONS(2672), - [anon_sym_SLASH] = ACTIONS(2672), - [anon_sym_PERCENT] = ACTIONS(2672), - [anon_sym_LT] = ACTIONS(2672), - [anon_sym_GT] = ACTIONS(2672), - [anon_sym_EQ_EQ] = ACTIONS(2672), - [anon_sym_BANG_EQ] = ACTIONS(2672), - [anon_sym_LT_EQ] = ACTIONS(2672), - [anon_sym_GT_EQ] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_struct] = ACTIONS(2672), - [anon_sym_union] = ACTIONS(2672), - [anon_sym_pub] = ACTIONS(2672), - [anon_sym_mut] = ACTIONS(2672), - [anon_sym_enum] = ACTIONS(2672), - [anon_sym_interface] = ACTIONS(2672), - [anon_sym_PLUS_PLUS] = ACTIONS(2672), - [anon_sym_DASH_DASH] = ACTIONS(2672), - [anon_sym_QMARK] = ACTIONS(2672), - [anon_sym_BANG] = ACTIONS(2672), - [anon_sym_go] = ACTIONS(2672), - [anon_sym_spawn] = ACTIONS(2672), - [anon_sym_json_DOTdecode] = ACTIONS(2672), - [anon_sym_LBRACK2] = ACTIONS(2672), - [anon_sym_TILDE] = ACTIONS(2672), - [anon_sym_CARET] = ACTIONS(2672), - [anon_sym_AMP] = ACTIONS(2672), - [anon_sym_LT_DASH] = ACTIONS(2672), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_GT_GT_GT] = ACTIONS(2672), - [anon_sym_AMP_CARET] = ACTIONS(2672), - [anon_sym_AMP_AMP] = ACTIONS(2672), - [anon_sym_PIPE_PIPE] = ACTIONS(2672), - [anon_sym_or] = ACTIONS(2672), - [sym_none] = ACTIONS(2672), - [sym_true] = ACTIONS(2672), - [sym_false] = ACTIONS(2672), - [sym_nil] = ACTIONS(2672), - [anon_sym_QMARK_DOT] = ACTIONS(2672), - [anon_sym_POUND_LBRACK] = ACTIONS(2672), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_DOLLARif] = ACTIONS(2672), - [anon_sym_is] = ACTIONS(2672), - [anon_sym_BANGis] = ACTIONS(2672), - [anon_sym_in] = ACTIONS(2672), - [anon_sym_BANGin] = ACTIONS(2672), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2672), - [anon_sym_lock] = ACTIONS(2672), - [anon_sym_rlock] = ACTIONS(2672), - [anon_sym_unsafe] = ACTIONS(2672), - [anon_sym_sql] = ACTIONS(2672), - [sym_int_literal] = ACTIONS(2672), - [sym_float_literal] = ACTIONS(2672), - [sym_rune_literal] = ACTIONS(2672), - [sym_pseudo_compile_time_identifier] = ACTIONS(2672), - [anon_sym_shared] = ACTIONS(2672), - [anon_sym_map_LBRACK] = ACTIONS(2672), - [anon_sym_chan] = ACTIONS(2672), - [anon_sym_thread] = ACTIONS(2672), - [anon_sym_atomic] = ACTIONS(2672), - [anon_sym_assert] = ACTIONS(2672), - [anon_sym_defer] = ACTIONS(2672), - [anon_sym_goto] = ACTIONS(2672), - [anon_sym_break] = ACTIONS(2672), - [anon_sym_continue] = ACTIONS(2672), - [anon_sym_return] = ACTIONS(2672), - [anon_sym_DOLLARfor] = ACTIONS(2672), - [anon_sym_for] = ACTIONS(2672), - [anon_sym_POUND] = ACTIONS(2672), - [anon_sym_asm] = ACTIONS(2672), - [anon_sym_AT_LBRACK] = ACTIONS(2672), - [sym___double_quote] = ACTIONS(2672), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2672), - [sym___c_single_quote] = ACTIONS(2672), - [sym___r_double_quote] = ACTIONS(2672), - [sym___r_single_quote] = ACTIONS(2672), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_as] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_COMMA] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym___global] = ACTIONS(2273), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_PIPE] = ACTIONS(2273), + [anon_sym_fn] = ACTIONS(2273), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_SLASH] = ACTIONS(2273), + [anon_sym_PERCENT] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_GT] = ACTIONS(2273), + [anon_sym_EQ_EQ] = ACTIONS(2273), + [anon_sym_BANG_EQ] = ACTIONS(2273), + [anon_sym_LT_EQ] = ACTIONS(2273), + [anon_sym_GT_EQ] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2271), + [anon_sym_struct] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_pub] = ACTIONS(2273), + [anon_sym_mut] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [anon_sym_interface] = ACTIONS(2273), + [anon_sym_PLUS_PLUS] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2273), + [anon_sym_QMARK] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2273), + [anon_sym_go] = ACTIONS(2273), + [anon_sym_spawn] = ACTIONS(2273), + [anon_sym_json_DOTdecode] = ACTIONS(2273), + [anon_sym_LBRACK2] = ACTIONS(2273), + [anon_sym_TILDE] = ACTIONS(2273), + [anon_sym_CARET] = ACTIONS(2273), + [anon_sym_AMP] = ACTIONS(2273), + [anon_sym_LT_DASH] = ACTIONS(2273), + [anon_sym_LT_LT] = ACTIONS(2273), + [anon_sym_GT_GT] = ACTIONS(2273), + [anon_sym_GT_GT_GT] = ACTIONS(2273), + [anon_sym_AMP_CARET] = ACTIONS(2273), + [anon_sym_AMP_AMP] = ACTIONS(2273), + [anon_sym_PIPE_PIPE] = ACTIONS(2273), + [anon_sym_or] = ACTIONS(2273), + [sym_none] = ACTIONS(2273), + [sym_true] = ACTIONS(2273), + [sym_false] = ACTIONS(2273), + [sym_nil] = ACTIONS(2273), + [anon_sym_QMARK_DOT] = ACTIONS(2273), + [anon_sym_POUND_LBRACK] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_DOLLARif] = ACTIONS(2273), + [anon_sym_is] = ACTIONS(2273), + [anon_sym_BANGis] = ACTIONS(2273), + [anon_sym_in] = ACTIONS(2273), + [anon_sym_BANGin] = ACTIONS(2273), + [anon_sym_match] = ACTIONS(2273), + [anon_sym_select] = ACTIONS(2273), + [anon_sym_lock] = ACTIONS(2273), + [anon_sym_rlock] = ACTIONS(2273), + [anon_sym_unsafe] = ACTIONS(2273), + [anon_sym_sql] = ACTIONS(2273), + [sym_int_literal] = ACTIONS(2273), + [sym_float_literal] = ACTIONS(2273), + [sym_rune_literal] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(2273), + [anon_sym_c_SQUOTE] = ACTIONS(2273), + [anon_sym_c_DQUOTE] = ACTIONS(2273), + [anon_sym_r_SQUOTE] = ACTIONS(2273), + [anon_sym_r_DQUOTE] = ACTIONS(2273), + [sym_pseudo_compile_time_identifier] = ACTIONS(2273), + [anon_sym_shared] = ACTIONS(2273), + [anon_sym_map_LBRACK] = ACTIONS(2273), + [anon_sym_chan] = ACTIONS(2273), + [anon_sym_thread] = ACTIONS(2273), + [anon_sym_atomic] = ACTIONS(2273), + [anon_sym_assert] = ACTIONS(2273), + [anon_sym_defer] = ACTIONS(2273), + [anon_sym_goto] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_DOLLARfor] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_POUND] = ACTIONS(2273), + [anon_sym_asm] = ACTIONS(2273), + [anon_sym_AT_LBRACK] = ACTIONS(2273), }, - [1081] = { - [sym_line_comment] = STATE(1081), - [sym_block_comment] = STATE(1081), - [ts_builtin_sym_end] = ACTIONS(2734), - [sym_identifier] = ACTIONS(2736), - [anon_sym_LF] = ACTIONS(2736), - [anon_sym_CR] = ACTIONS(2736), - [anon_sym_CR_LF] = ACTIONS(2736), + [1076] = { + [sym_line_comment] = STATE(1076), + [sym_block_comment] = STATE(1076), + [ts_builtin_sym_end] = ACTIONS(2889), + [sym_identifier] = ACTIONS(2891), + [anon_sym_LF] = ACTIONS(2891), + [anon_sym_CR] = ACTIONS(2891), + [anon_sym_CR_LF] = ACTIONS(2891), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_as] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_COMMA] = ACTIONS(2736), - [anon_sym_const] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym___global] = ACTIONS(2736), - [anon_sym_type] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_fn] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_PERCENT] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2736), - [anon_sym_EQ_EQ] = ACTIONS(2736), - [anon_sym_BANG_EQ] = ACTIONS(2736), - [anon_sym_LT_EQ] = ACTIONS(2736), - [anon_sym_GT_EQ] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_union] = ACTIONS(2736), - [anon_sym_pub] = ACTIONS(2736), - [anon_sym_mut] = ACTIONS(2736), - [anon_sym_enum] = ACTIONS(2736), - [anon_sym_interface] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_go] = ACTIONS(2736), - [anon_sym_spawn] = ACTIONS(2736), - [anon_sym_json_DOTdecode] = ACTIONS(2736), - [anon_sym_LBRACK2] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_CARET] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_LT_DASH] = ACTIONS(2736), - [anon_sym_LT_LT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_GT_GT_GT] = ACTIONS(2736), - [anon_sym_AMP_CARET] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(2736), - [anon_sym_or] = ACTIONS(2736), - [sym_none] = ACTIONS(2736), - [sym_true] = ACTIONS(2736), - [sym_false] = ACTIONS(2736), - [sym_nil] = ACTIONS(2736), - [anon_sym_QMARK_DOT] = ACTIONS(2736), - [anon_sym_POUND_LBRACK] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_DOLLARif] = ACTIONS(2736), - [anon_sym_is] = ACTIONS(2736), - [anon_sym_BANGis] = ACTIONS(2736), - [anon_sym_in] = ACTIONS(2736), - [anon_sym_BANGin] = ACTIONS(2736), - [anon_sym_match] = ACTIONS(2736), - [anon_sym_select] = ACTIONS(2736), - [anon_sym_lock] = ACTIONS(2736), - [anon_sym_rlock] = ACTIONS(2736), - [anon_sym_unsafe] = ACTIONS(2736), - [anon_sym_sql] = ACTIONS(2736), - [sym_int_literal] = ACTIONS(2736), - [sym_float_literal] = ACTIONS(2736), - [sym_rune_literal] = ACTIONS(2736), - [sym_pseudo_compile_time_identifier] = ACTIONS(2736), - [anon_sym_shared] = ACTIONS(2736), - [anon_sym_map_LBRACK] = ACTIONS(2736), - [anon_sym_chan] = ACTIONS(2736), - [anon_sym_thread] = ACTIONS(2736), - [anon_sym_atomic] = ACTIONS(2736), - [anon_sym_assert] = ACTIONS(2736), - [anon_sym_defer] = ACTIONS(2736), - [anon_sym_goto] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_return] = ACTIONS(2736), - [anon_sym_DOLLARfor] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(2736), - [anon_sym_asm] = ACTIONS(2736), - [anon_sym_AT_LBRACK] = ACTIONS(2736), - [sym___double_quote] = ACTIONS(2736), - [sym___single_quote] = ACTIONS(2736), - [sym___c_double_quote] = ACTIONS(2736), - [sym___c_single_quote] = ACTIONS(2736), - [sym___r_double_quote] = ACTIONS(2736), - [sym___r_single_quote] = ACTIONS(2736), + [anon_sym_DOT] = ACTIONS(2891), + [anon_sym_as] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2891), + [anon_sym_COMMA] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_LPAREN] = ACTIONS(2891), + [anon_sym___global] = ACTIONS(2891), + [anon_sym_type] = ACTIONS(2891), + [anon_sym_PIPE] = ACTIONS(2891), + [anon_sym_fn] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2891), + [anon_sym_SLASH] = ACTIONS(2891), + [anon_sym_PERCENT] = ACTIONS(2891), + [anon_sym_LT] = ACTIONS(2891), + [anon_sym_GT] = ACTIONS(2891), + [anon_sym_EQ_EQ] = ACTIONS(2891), + [anon_sym_BANG_EQ] = ACTIONS(2891), + [anon_sym_LT_EQ] = ACTIONS(2891), + [anon_sym_GT_EQ] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2889), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_union] = ACTIONS(2891), + [anon_sym_pub] = ACTIONS(2891), + [anon_sym_mut] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), + [anon_sym_interface] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_QMARK] = ACTIONS(2891), + [anon_sym_BANG] = ACTIONS(2891), + [anon_sym_go] = ACTIONS(2891), + [anon_sym_spawn] = ACTIONS(2891), + [anon_sym_json_DOTdecode] = ACTIONS(2891), + [anon_sym_LBRACK2] = ACTIONS(2891), + [anon_sym_TILDE] = ACTIONS(2891), + [anon_sym_CARET] = ACTIONS(2891), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2891), + [anon_sym_LT_LT] = ACTIONS(2891), + [anon_sym_GT_GT] = ACTIONS(2891), + [anon_sym_GT_GT_GT] = ACTIONS(2891), + [anon_sym_AMP_CARET] = ACTIONS(2891), + [anon_sym_AMP_AMP] = ACTIONS(2891), + [anon_sym_PIPE_PIPE] = ACTIONS(2891), + [anon_sym_or] = ACTIONS(2891), + [sym_none] = ACTIONS(2891), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [sym_nil] = ACTIONS(2891), + [anon_sym_QMARK_DOT] = ACTIONS(2891), + [anon_sym_POUND_LBRACK] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_DOLLARif] = ACTIONS(2891), + [anon_sym_is] = ACTIONS(2891), + [anon_sym_BANGis] = ACTIONS(2891), + [anon_sym_in] = ACTIONS(2891), + [anon_sym_BANGin] = ACTIONS(2891), + [anon_sym_match] = ACTIONS(2891), + [anon_sym_select] = ACTIONS(2891), + [anon_sym_lock] = ACTIONS(2891), + [anon_sym_rlock] = ACTIONS(2891), + [anon_sym_unsafe] = ACTIONS(2891), + [anon_sym_sql] = ACTIONS(2891), + [sym_int_literal] = ACTIONS(2891), + [sym_float_literal] = ACTIONS(2891), + [sym_rune_literal] = ACTIONS(2891), + [anon_sym_SQUOTE] = ACTIONS(2891), + [anon_sym_DQUOTE] = ACTIONS(2891), + [anon_sym_c_SQUOTE] = ACTIONS(2891), + [anon_sym_c_DQUOTE] = ACTIONS(2891), + [anon_sym_r_SQUOTE] = ACTIONS(2891), + [anon_sym_r_DQUOTE] = ACTIONS(2891), + [sym_pseudo_compile_time_identifier] = ACTIONS(2891), + [anon_sym_shared] = ACTIONS(2891), + [anon_sym_map_LBRACK] = ACTIONS(2891), + [anon_sym_chan] = ACTIONS(2891), + [anon_sym_thread] = ACTIONS(2891), + [anon_sym_atomic] = ACTIONS(2891), + [anon_sym_assert] = ACTIONS(2891), + [anon_sym_defer] = ACTIONS(2891), + [anon_sym_goto] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_DOLLARfor] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_POUND] = ACTIONS(2891), + [anon_sym_asm] = ACTIONS(2891), + [anon_sym_AT_LBRACK] = ACTIONS(2891), }, - [1082] = { - [sym_line_comment] = STATE(1082), - [sym_block_comment] = STATE(1082), - [ts_builtin_sym_end] = ACTIONS(3042), - [sym_identifier] = ACTIONS(3044), - [anon_sym_LF] = ACTIONS(3044), - [anon_sym_CR] = ACTIONS(3044), - [anon_sym_CR_LF] = ACTIONS(3044), + [1077] = { + [sym_line_comment] = STATE(1077), + [sym_block_comment] = STATE(1077), + [ts_builtin_sym_end] = ACTIONS(2142), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LF] = ACTIONS(2139), + [anon_sym_CR] = ACTIONS(2139), + [anon_sym_CR_LF] = ACTIONS(2139), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_as] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3044), - [anon_sym_const] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym___global] = ACTIONS(3044), - [anon_sym_type] = ACTIONS(3044), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_fn] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_SLASH] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3044), - [anon_sym_GT] = ACTIONS(3044), - [anon_sym_EQ_EQ] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_EQ] = ACTIONS(3044), - [anon_sym_LBRACK] = ACTIONS(3042), - [anon_sym_struct] = ACTIONS(3044), - [anon_sym_union] = ACTIONS(3044), - [anon_sym_pub] = ACTIONS(3044), - [anon_sym_mut] = ACTIONS(3044), - [anon_sym_enum] = ACTIONS(3044), - [anon_sym_interface] = ACTIONS(3044), - [anon_sym_PLUS_PLUS] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_BANG] = ACTIONS(3044), - [anon_sym_go] = ACTIONS(3044), - [anon_sym_spawn] = ACTIONS(3044), - [anon_sym_json_DOTdecode] = ACTIONS(3044), - [anon_sym_LBRACK2] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3044), - [anon_sym_CARET] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_LT_LT] = ACTIONS(3044), - [anon_sym_GT_GT] = ACTIONS(3044), - [anon_sym_GT_GT_GT] = ACTIONS(3044), - [anon_sym_AMP_CARET] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_or] = ACTIONS(3044), - [sym_none] = ACTIONS(3044), - [sym_true] = ACTIONS(3044), - [sym_false] = ACTIONS(3044), - [sym_nil] = ACTIONS(3044), - [anon_sym_QMARK_DOT] = ACTIONS(3044), - [anon_sym_POUND_LBRACK] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_DOLLARif] = ACTIONS(3044), - [anon_sym_is] = ACTIONS(3044), - [anon_sym_BANGis] = ACTIONS(3044), - [anon_sym_in] = ACTIONS(3044), - [anon_sym_BANGin] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_select] = ACTIONS(3044), - [anon_sym_lock] = ACTIONS(3044), - [anon_sym_rlock] = ACTIONS(3044), - [anon_sym_unsafe] = ACTIONS(3044), - [anon_sym_sql] = ACTIONS(3044), - [sym_int_literal] = ACTIONS(3044), - [sym_float_literal] = ACTIONS(3044), - [sym_rune_literal] = ACTIONS(3044), - [sym_pseudo_compile_time_identifier] = ACTIONS(3044), - [anon_sym_shared] = ACTIONS(3044), - [anon_sym_map_LBRACK] = ACTIONS(3044), - [anon_sym_chan] = ACTIONS(3044), - [anon_sym_thread] = ACTIONS(3044), - [anon_sym_atomic] = ACTIONS(3044), - [anon_sym_assert] = ACTIONS(3044), - [anon_sym_defer] = ACTIONS(3044), - [anon_sym_goto] = ACTIONS(3044), - [anon_sym_break] = ACTIONS(3044), - [anon_sym_continue] = ACTIONS(3044), - [anon_sym_return] = ACTIONS(3044), - [anon_sym_DOLLARfor] = ACTIONS(3044), - [anon_sym_for] = ACTIONS(3044), - [anon_sym_POUND] = ACTIONS(3044), - [anon_sym_asm] = ACTIONS(3044), - [anon_sym_AT_LBRACK] = ACTIONS(3044), - [sym___double_quote] = ACTIONS(3044), - [sym___single_quote] = ACTIONS(3044), - [sym___c_double_quote] = ACTIONS(3044), - [sym___c_single_quote] = ACTIONS(3044), - [sym___r_double_quote] = ACTIONS(3044), - [sym___r_single_quote] = ACTIONS(3044), + [anon_sym_DOT] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym___global] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_mut] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_QMARK] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(2139), + [anon_sym_spawn] = ACTIONS(2139), + [anon_sym_json_DOTdecode] = ACTIONS(2139), + [anon_sym_LBRACK2] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_LT_DASH] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_AMP_CARET] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_or] = ACTIONS(2139), + [sym_none] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_nil] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_POUND_LBRACK] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_DOLLARif] = ACTIONS(2139), + [anon_sym_is] = ACTIONS(2139), + [anon_sym_BANGis] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_BANGin] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_select] = ACTIONS(2139), + [anon_sym_lock] = ACTIONS(2139), + [anon_sym_rlock] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_sql] = ACTIONS(2139), + [sym_int_literal] = ACTIONS(2139), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_c_SQUOTE] = ACTIONS(2139), + [anon_sym_c_DQUOTE] = ACTIONS(2139), + [anon_sym_r_SQUOTE] = ACTIONS(2139), + [anon_sym_r_DQUOTE] = ACTIONS(2139), + [sym_pseudo_compile_time_identifier] = ACTIONS(2139), + [anon_sym_shared] = ACTIONS(2139), + [anon_sym_map_LBRACK] = ACTIONS(2139), + [anon_sym_chan] = ACTIONS(2139), + [anon_sym_thread] = ACTIONS(2139), + [anon_sym_atomic] = ACTIONS(2139), + [anon_sym_assert] = ACTIONS(2139), + [anon_sym_defer] = ACTIONS(2139), + [anon_sym_goto] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_DOLLARfor] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_POUND] = ACTIONS(2139), + [anon_sym_asm] = ACTIONS(2139), + [anon_sym_AT_LBRACK] = ACTIONS(2139), }, - [1083] = { - [sym_line_comment] = STATE(1083), - [sym_block_comment] = STATE(1083), - [ts_builtin_sym_end] = ACTIONS(2227), - [sym_identifier] = ACTIONS(2229), - [anon_sym_LF] = ACTIONS(2229), - [anon_sym_CR] = ACTIONS(2229), - [anon_sym_CR_LF] = ACTIONS(2229), + [1078] = { + [sym_line_comment] = STATE(1078), + [sym_block_comment] = STATE(1078), + [ts_builtin_sym_end] = ACTIONS(2421), + [sym_identifier] = ACTIONS(2423), + [anon_sym_LF] = ACTIONS(2423), + [anon_sym_CR] = ACTIONS(2423), + [anon_sym_CR_LF] = ACTIONS(2423), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_COMMA] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym___global] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_PIPE] = ACTIONS(2229), - [anon_sym_fn] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_STAR] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_PERCENT] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_GT] = ACTIONS(2229), - [anon_sym_EQ_EQ] = ACTIONS(2229), - [anon_sym_BANG_EQ] = ACTIONS(2229), - [anon_sym_LT_EQ] = ACTIONS(2229), - [anon_sym_GT_EQ] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_union] = ACTIONS(2229), - [anon_sym_pub] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [anon_sym_QMARK] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_go] = ACTIONS(2229), - [anon_sym_spawn] = ACTIONS(2229), - [anon_sym_json_DOTdecode] = ACTIONS(2229), - [anon_sym_LBRACK2] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_CARET] = ACTIONS(2229), - [anon_sym_AMP] = ACTIONS(2229), - [anon_sym_LT_DASH] = ACTIONS(2229), - [anon_sym_LT_LT] = ACTIONS(2229), - [anon_sym_GT_GT] = ACTIONS(2229), - [anon_sym_GT_GT_GT] = ACTIONS(2229), - [anon_sym_AMP_CARET] = ACTIONS(2229), - [anon_sym_AMP_AMP] = ACTIONS(2229), - [anon_sym_PIPE_PIPE] = ACTIONS(2229), - [anon_sym_or] = ACTIONS(2229), - [sym_none] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_nil] = ACTIONS(2229), - [anon_sym_QMARK_DOT] = ACTIONS(2229), - [anon_sym_POUND_LBRACK] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_DOLLARif] = ACTIONS(2229), - [anon_sym_is] = ACTIONS(2229), - [anon_sym_BANGis] = ACTIONS(2229), - [anon_sym_in] = ACTIONS(2229), - [anon_sym_BANGin] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_select] = ACTIONS(2229), - [anon_sym_lock] = ACTIONS(2229), - [anon_sym_rlock] = ACTIONS(2229), - [anon_sym_unsafe] = ACTIONS(2229), - [anon_sym_sql] = ACTIONS(2229), - [sym_int_literal] = ACTIONS(2229), - [sym_float_literal] = ACTIONS(2229), - [sym_rune_literal] = ACTIONS(2229), - [sym_pseudo_compile_time_identifier] = ACTIONS(2229), - [anon_sym_shared] = ACTIONS(2229), - [anon_sym_map_LBRACK] = ACTIONS(2229), - [anon_sym_chan] = ACTIONS(2229), - [anon_sym_thread] = ACTIONS(2229), - [anon_sym_atomic] = ACTIONS(2229), - [anon_sym_assert] = ACTIONS(2229), - [anon_sym_defer] = ACTIONS(2229), - [anon_sym_goto] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_DOLLARfor] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_POUND] = ACTIONS(2229), - [anon_sym_asm] = ACTIONS(2229), - [anon_sym_AT_LBRACK] = ACTIONS(2229), - [sym___double_quote] = ACTIONS(2229), - [sym___single_quote] = ACTIONS(2229), - [sym___c_double_quote] = ACTIONS(2229), - [sym___c_single_quote] = ACTIONS(2229), - [sym___r_double_quote] = ACTIONS(2229), - [sym___r_single_quote] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2423), + [anon_sym_as] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_COMMA] = ACTIONS(2423), + [anon_sym_const] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym___global] = ACTIONS(2423), + [anon_sym_type] = ACTIONS(2423), + [anon_sym_PIPE] = ACTIONS(2423), + [anon_sym_fn] = ACTIONS(2423), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_LT] = ACTIONS(2423), + [anon_sym_GT] = ACTIONS(2423), + [anon_sym_EQ_EQ] = ACTIONS(2423), + [anon_sym_BANG_EQ] = ACTIONS(2423), + [anon_sym_LT_EQ] = ACTIONS(2423), + [anon_sym_GT_EQ] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(2423), + [anon_sym_union] = ACTIONS(2423), + [anon_sym_pub] = ACTIONS(2423), + [anon_sym_mut] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2423), + [anon_sym_interface] = ACTIONS(2423), + [anon_sym_PLUS_PLUS] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(2423), + [anon_sym_QMARK] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2423), + [anon_sym_spawn] = ACTIONS(2423), + [anon_sym_json_DOTdecode] = ACTIONS(2423), + [anon_sym_LBRACK2] = ACTIONS(2423), + [anon_sym_TILDE] = ACTIONS(2423), + [anon_sym_CARET] = ACTIONS(2423), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2423), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_GT_GT_GT] = ACTIONS(2423), + [anon_sym_AMP_CARET] = ACTIONS(2423), + [anon_sym_AMP_AMP] = ACTIONS(2423), + [anon_sym_PIPE_PIPE] = ACTIONS(2423), + [anon_sym_or] = ACTIONS(2423), + [sym_none] = ACTIONS(2423), + [sym_true] = ACTIONS(2423), + [sym_false] = ACTIONS(2423), + [sym_nil] = ACTIONS(2423), + [anon_sym_QMARK_DOT] = ACTIONS(2423), + [anon_sym_POUND_LBRACK] = ACTIONS(2423), + [anon_sym_if] = ACTIONS(2423), + [anon_sym_DOLLARif] = ACTIONS(2423), + [anon_sym_is] = ACTIONS(2423), + [anon_sym_BANGis] = ACTIONS(2423), + [anon_sym_in] = ACTIONS(2423), + [anon_sym_BANGin] = ACTIONS(2423), + [anon_sym_match] = ACTIONS(2423), + [anon_sym_select] = ACTIONS(2423), + [anon_sym_lock] = ACTIONS(2423), + [anon_sym_rlock] = ACTIONS(2423), + [anon_sym_unsafe] = ACTIONS(2423), + [anon_sym_sql] = ACTIONS(2423), + [sym_int_literal] = ACTIONS(2423), + [sym_float_literal] = ACTIONS(2423), + [sym_rune_literal] = ACTIONS(2423), + [anon_sym_SQUOTE] = ACTIONS(2423), + [anon_sym_DQUOTE] = ACTIONS(2423), + [anon_sym_c_SQUOTE] = ACTIONS(2423), + [anon_sym_c_DQUOTE] = ACTIONS(2423), + [anon_sym_r_SQUOTE] = ACTIONS(2423), + [anon_sym_r_DQUOTE] = ACTIONS(2423), + [sym_pseudo_compile_time_identifier] = ACTIONS(2423), + [anon_sym_shared] = ACTIONS(2423), + [anon_sym_map_LBRACK] = ACTIONS(2423), + [anon_sym_chan] = ACTIONS(2423), + [anon_sym_thread] = ACTIONS(2423), + [anon_sym_atomic] = ACTIONS(2423), + [anon_sym_assert] = ACTIONS(2423), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_goto] = ACTIONS(2423), + [anon_sym_break] = ACTIONS(2423), + [anon_sym_continue] = ACTIONS(2423), + [anon_sym_return] = ACTIONS(2423), + [anon_sym_DOLLARfor] = ACTIONS(2423), + [anon_sym_for] = ACTIONS(2423), + [anon_sym_POUND] = ACTIONS(2423), + [anon_sym_asm] = ACTIONS(2423), + [anon_sym_AT_LBRACK] = ACTIONS(2423), }, - [1084] = { - [sym_line_comment] = STATE(1084), - [sym_block_comment] = STATE(1084), - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_CR] = ACTIONS(2740), - [anon_sym_CR_LF] = ACTIONS(2740), + [1079] = { + [sym_line_comment] = STATE(1079), + [sym_block_comment] = STATE(1079), + [ts_builtin_sym_end] = ACTIONS(2885), + [sym_identifier] = ACTIONS(2887), + [anon_sym_LF] = ACTIONS(2887), + [anon_sym_CR] = ACTIONS(2887), + [anon_sym_CR_LF] = ACTIONS(2887), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_const] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym___global] = ACTIONS(2740), - [anon_sym_type] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2740), - [anon_sym_BANG_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(2740), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2740), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_CARET] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2740), - [anon_sym_POUND_LBRACK] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2740), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2740), - [sym_rune_literal] = ACTIONS(2740), - [sym_pseudo_compile_time_identifier] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2740), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [anon_sym_assert] = ACTIONS(2740), - [anon_sym_defer] = ACTIONS(2740), - [anon_sym_goto] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_DOLLARfor] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(2740), - [anon_sym_asm] = ACTIONS(2740), - [anon_sym_AT_LBRACK] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2740), - [sym___single_quote] = ACTIONS(2740), - [sym___c_double_quote] = ACTIONS(2740), - [sym___c_single_quote] = ACTIONS(2740), - [sym___r_double_quote] = ACTIONS(2740), - [sym___r_single_quote] = ACTIONS(2740), + [anon_sym_DOT] = ACTIONS(2887), + [anon_sym_as] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_COMMA] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym___global] = ACTIONS(2887), + [anon_sym_type] = ACTIONS(2887), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_fn] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2887), + [anon_sym_BANG_EQ] = ACTIONS(2887), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_pub] = ACTIONS(2887), + [anon_sym_mut] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_interface] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2887), + [anon_sym_QMARK] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2887), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2887), + [anon_sym_json_DOTdecode] = ACTIONS(2887), + [anon_sym_LBRACK2] = ACTIONS(2887), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_CARET] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_GT_GT_GT] = ACTIONS(2887), + [anon_sym_AMP_CARET] = ACTIONS(2887), + [anon_sym_AMP_AMP] = ACTIONS(2887), + [anon_sym_PIPE_PIPE] = ACTIONS(2887), + [anon_sym_or] = ACTIONS(2887), + [sym_none] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_nil] = ACTIONS(2887), + [anon_sym_QMARK_DOT] = ACTIONS(2887), + [anon_sym_POUND_LBRACK] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_DOLLARif] = ACTIONS(2887), + [anon_sym_is] = ACTIONS(2887), + [anon_sym_BANGis] = ACTIONS(2887), + [anon_sym_in] = ACTIONS(2887), + [anon_sym_BANGin] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2887), + [anon_sym_select] = ACTIONS(2887), + [anon_sym_lock] = ACTIONS(2887), + [anon_sym_rlock] = ACTIONS(2887), + [anon_sym_unsafe] = ACTIONS(2887), + [anon_sym_sql] = ACTIONS(2887), + [sym_int_literal] = ACTIONS(2887), + [sym_float_literal] = ACTIONS(2887), + [sym_rune_literal] = ACTIONS(2887), + [anon_sym_SQUOTE] = ACTIONS(2887), + [anon_sym_DQUOTE] = ACTIONS(2887), + [anon_sym_c_SQUOTE] = ACTIONS(2887), + [anon_sym_c_DQUOTE] = ACTIONS(2887), + [anon_sym_r_SQUOTE] = ACTIONS(2887), + [anon_sym_r_DQUOTE] = ACTIONS(2887), + [sym_pseudo_compile_time_identifier] = ACTIONS(2887), + [anon_sym_shared] = ACTIONS(2887), + [anon_sym_map_LBRACK] = ACTIONS(2887), + [anon_sym_chan] = ACTIONS(2887), + [anon_sym_thread] = ACTIONS(2887), + [anon_sym_atomic] = ACTIONS(2887), + [anon_sym_assert] = ACTIONS(2887), + [anon_sym_defer] = ACTIONS(2887), + [anon_sym_goto] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_DOLLARfor] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_POUND] = ACTIONS(2887), + [anon_sym_asm] = ACTIONS(2887), + [anon_sym_AT_LBRACK] = ACTIONS(2887), }, - [1085] = { - [sym_line_comment] = STATE(1085), - [sym_block_comment] = STATE(1085), - [ts_builtin_sym_end] = ACTIONS(2844), - [sym_identifier] = ACTIONS(2846), - [anon_sym_LF] = ACTIONS(2846), - [anon_sym_CR] = ACTIONS(2846), - [anon_sym_CR_LF] = ACTIONS(2846), + [1080] = { + [sym_line_comment] = STATE(1080), + [sym_block_comment] = STATE(1080), + [ts_builtin_sym_end] = ACTIONS(2117), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LF] = ACTIONS(2119), + [anon_sym_CR] = ACTIONS(2119), + [anon_sym_CR_LF] = ACTIONS(2119), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2846), - [anon_sym_const] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym___global] = ACTIONS(2846), - [anon_sym_type] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_fn] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_GT] = ACTIONS(2846), - [anon_sym_EQ_EQ] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2846), - [anon_sym_LT_EQ] = ACTIONS(2846), - [anon_sym_GT_EQ] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2846), - [anon_sym_union] = ACTIONS(2846), - [anon_sym_pub] = ACTIONS(2846), - [anon_sym_mut] = ACTIONS(2846), - [anon_sym_enum] = ACTIONS(2846), - [anon_sym_interface] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_go] = ACTIONS(2846), - [anon_sym_spawn] = ACTIONS(2846), - [anon_sym_json_DOTdecode] = ACTIONS(2846), - [anon_sym_LBRACK2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_CARET] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_LT_LT] = ACTIONS(2846), - [anon_sym_GT_GT] = ACTIONS(2846), - [anon_sym_GT_GT_GT] = ACTIONS(2846), - [anon_sym_AMP_CARET] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_or] = ACTIONS(2846), - [sym_none] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_nil] = ACTIONS(2846), - [anon_sym_QMARK_DOT] = ACTIONS(2846), - [anon_sym_POUND_LBRACK] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_DOLLARif] = ACTIONS(2846), - [anon_sym_is] = ACTIONS(2846), - [anon_sym_BANGis] = ACTIONS(2846), - [anon_sym_in] = ACTIONS(2846), - [anon_sym_BANGin] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_select] = ACTIONS(2846), - [anon_sym_lock] = ACTIONS(2846), - [anon_sym_rlock] = ACTIONS(2846), - [anon_sym_unsafe] = ACTIONS(2846), - [anon_sym_sql] = ACTIONS(2846), - [sym_int_literal] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2846), - [sym_rune_literal] = ACTIONS(2846), - [sym_pseudo_compile_time_identifier] = ACTIONS(2846), - [anon_sym_shared] = ACTIONS(2846), - [anon_sym_map_LBRACK] = ACTIONS(2846), - [anon_sym_chan] = ACTIONS(2846), - [anon_sym_thread] = ACTIONS(2846), - [anon_sym_atomic] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_defer] = ACTIONS(2846), - [anon_sym_goto] = ACTIONS(2846), - [anon_sym_break] = ACTIONS(2846), - [anon_sym_continue] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_DOLLARfor] = ACTIONS(2846), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_POUND] = ACTIONS(2846), - [anon_sym_asm] = ACTIONS(2846), - [anon_sym_AT_LBRACK] = ACTIONS(2846), - [sym___double_quote] = ACTIONS(2846), - [sym___single_quote] = ACTIONS(2846), - [sym___c_double_quote] = ACTIONS(2846), - [sym___c_single_quote] = ACTIONS(2846), - [sym___r_double_quote] = ACTIONS(2846), - [sym___r_single_quote] = ACTIONS(2846), + [anon_sym_DOT] = ACTIONS(2119), + [anon_sym_as] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_COMMA] = ACTIONS(2119), + [anon_sym_const] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym___global] = ACTIONS(2119), + [anon_sym_type] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2119), + [anon_sym_fn] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2119), + [anon_sym_DASH] = ACTIONS(2119), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_SLASH] = ACTIONS(2119), + [anon_sym_PERCENT] = ACTIONS(2119), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_GT] = ACTIONS(2119), + [anon_sym_EQ_EQ] = ACTIONS(2119), + [anon_sym_BANG_EQ] = ACTIONS(2119), + [anon_sym_LT_EQ] = ACTIONS(2119), + [anon_sym_GT_EQ] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2117), + [anon_sym_struct] = ACTIONS(2119), + [anon_sym_union] = ACTIONS(2119), + [anon_sym_pub] = ACTIONS(2119), + [anon_sym_mut] = ACTIONS(2119), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_interface] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_QMARK] = ACTIONS(2119), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_go] = ACTIONS(2119), + [anon_sym_spawn] = ACTIONS(2119), + [anon_sym_json_DOTdecode] = ACTIONS(2119), + [anon_sym_LBRACK2] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2119), + [anon_sym_LT_LT] = ACTIONS(2119), + [anon_sym_GT_GT] = ACTIONS(2119), + [anon_sym_GT_GT_GT] = ACTIONS(2119), + [anon_sym_AMP_CARET] = ACTIONS(2119), + [anon_sym_AMP_AMP] = ACTIONS(2119), + [anon_sym_PIPE_PIPE] = ACTIONS(2119), + [anon_sym_or] = ACTIONS(2119), + [sym_none] = ACTIONS(2119), + [sym_true] = ACTIONS(2119), + [sym_false] = ACTIONS(2119), + [sym_nil] = ACTIONS(2119), + [anon_sym_QMARK_DOT] = ACTIONS(2119), + [anon_sym_POUND_LBRACK] = ACTIONS(2119), + [anon_sym_if] = ACTIONS(2119), + [anon_sym_DOLLARif] = ACTIONS(2119), + [anon_sym_is] = ACTIONS(2119), + [anon_sym_BANGis] = ACTIONS(2119), + [anon_sym_in] = ACTIONS(2119), + [anon_sym_BANGin] = ACTIONS(2119), + [anon_sym_match] = ACTIONS(2119), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2119), + [anon_sym_rlock] = ACTIONS(2119), + [anon_sym_unsafe] = ACTIONS(2119), + [anon_sym_sql] = ACTIONS(2119), + [sym_int_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), + [sym_rune_literal] = ACTIONS(2119), + [anon_sym_SQUOTE] = ACTIONS(2119), + [anon_sym_DQUOTE] = ACTIONS(2119), + [anon_sym_c_SQUOTE] = ACTIONS(2119), + [anon_sym_c_DQUOTE] = ACTIONS(2119), + [anon_sym_r_SQUOTE] = ACTIONS(2119), + [anon_sym_r_DQUOTE] = ACTIONS(2119), + [sym_pseudo_compile_time_identifier] = ACTIONS(2119), + [anon_sym_shared] = ACTIONS(2119), + [anon_sym_map_LBRACK] = ACTIONS(2119), + [anon_sym_chan] = ACTIONS(2119), + [anon_sym_thread] = ACTIONS(2119), + [anon_sym_atomic] = ACTIONS(2119), + [anon_sym_assert] = ACTIONS(2119), + [anon_sym_defer] = ACTIONS(2119), + [anon_sym_goto] = ACTIONS(2119), + [anon_sym_break] = ACTIONS(2119), + [anon_sym_continue] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2119), + [anon_sym_DOLLARfor] = ACTIONS(2119), + [anon_sym_for] = ACTIONS(2119), + [anon_sym_POUND] = ACTIONS(2119), + [anon_sym_asm] = ACTIONS(2119), + [anon_sym_AT_LBRACK] = ACTIONS(2119), }, - [1086] = { - [sym_line_comment] = STATE(1086), - [sym_block_comment] = STATE(1086), - [ts_builtin_sym_end] = ACTIONS(2530), - [sym_identifier] = ACTIONS(2532), - [anon_sym_LF] = ACTIONS(2532), - [anon_sym_CR] = ACTIONS(2532), - [anon_sym_CR_LF] = ACTIONS(2532), + [1081] = { + [sym_line_comment] = STATE(1081), + [sym_block_comment] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(2881), + [sym_identifier] = ACTIONS(2883), + [anon_sym_LF] = ACTIONS(2883), + [anon_sym_CR] = ACTIONS(2883), + [anon_sym_CR_LF] = ACTIONS(2883), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2532), - [anon_sym_as] = ACTIONS(2532), - [anon_sym_LBRACE] = ACTIONS(2532), - [anon_sym_COMMA] = ACTIONS(2532), - [anon_sym_const] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym___global] = ACTIONS(2532), - [anon_sym_type] = ACTIONS(2532), - [anon_sym_PIPE] = ACTIONS(2532), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2532), - [anon_sym_DASH] = ACTIONS(2532), - [anon_sym_STAR] = ACTIONS(2532), - [anon_sym_SLASH] = ACTIONS(2532), - [anon_sym_PERCENT] = ACTIONS(2532), - [anon_sym_LT] = ACTIONS(2532), - [anon_sym_GT] = ACTIONS(2532), - [anon_sym_EQ_EQ] = ACTIONS(2532), - [anon_sym_BANG_EQ] = ACTIONS(2532), - [anon_sym_LT_EQ] = ACTIONS(2532), - [anon_sym_GT_EQ] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(2532), - [anon_sym_union] = ACTIONS(2532), - [anon_sym_pub] = ACTIONS(2532), - [anon_sym_mut] = ACTIONS(2532), - [anon_sym_enum] = ACTIONS(2532), - [anon_sym_interface] = ACTIONS(2532), - [anon_sym_PLUS_PLUS] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2532), - [anon_sym_QMARK] = ACTIONS(2532), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2532), - [anon_sym_spawn] = ACTIONS(2532), - [anon_sym_json_DOTdecode] = ACTIONS(2532), - [anon_sym_LBRACK2] = ACTIONS(2532), - [anon_sym_TILDE] = ACTIONS(2532), - [anon_sym_CARET] = ACTIONS(2532), - [anon_sym_AMP] = ACTIONS(2532), - [anon_sym_LT_DASH] = ACTIONS(2532), - [anon_sym_LT_LT] = ACTIONS(2532), - [anon_sym_GT_GT] = ACTIONS(2532), - [anon_sym_GT_GT_GT] = ACTIONS(2532), - [anon_sym_AMP_CARET] = ACTIONS(2532), - [anon_sym_AMP_AMP] = ACTIONS(2532), - [anon_sym_PIPE_PIPE] = ACTIONS(2532), - [anon_sym_or] = ACTIONS(2532), - [sym_none] = ACTIONS(2532), - [sym_true] = ACTIONS(2532), - [sym_false] = ACTIONS(2532), - [sym_nil] = ACTIONS(2532), - [anon_sym_QMARK_DOT] = ACTIONS(2532), - [anon_sym_POUND_LBRACK] = ACTIONS(2532), - [anon_sym_if] = ACTIONS(2532), - [anon_sym_DOLLARif] = ACTIONS(2532), - [anon_sym_is] = ACTIONS(2532), - [anon_sym_BANGis] = ACTIONS(2532), - [anon_sym_in] = ACTIONS(2532), - [anon_sym_BANGin] = ACTIONS(2532), - [anon_sym_match] = ACTIONS(2532), - [anon_sym_select] = ACTIONS(2532), - [anon_sym_lock] = ACTIONS(2532), - [anon_sym_rlock] = ACTIONS(2532), - [anon_sym_unsafe] = ACTIONS(2532), - [anon_sym_sql] = ACTIONS(2532), - [sym_int_literal] = ACTIONS(2532), - [sym_float_literal] = ACTIONS(2532), - [sym_rune_literal] = ACTIONS(2532), - [sym_pseudo_compile_time_identifier] = ACTIONS(2532), - [anon_sym_shared] = ACTIONS(2532), - [anon_sym_map_LBRACK] = ACTIONS(2532), - [anon_sym_chan] = ACTIONS(2532), - [anon_sym_thread] = ACTIONS(2532), - [anon_sym_atomic] = ACTIONS(2532), - [anon_sym_assert] = ACTIONS(2532), - [anon_sym_defer] = ACTIONS(2532), - [anon_sym_goto] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_return] = ACTIONS(2532), - [anon_sym_DOLLARfor] = ACTIONS(2532), - [anon_sym_for] = ACTIONS(2532), - [anon_sym_POUND] = ACTIONS(2532), - [anon_sym_asm] = ACTIONS(2532), - [anon_sym_AT_LBRACK] = ACTIONS(2532), - [sym___double_quote] = ACTIONS(2532), - [sym___single_quote] = ACTIONS(2532), - [sym___c_double_quote] = ACTIONS(2532), - [sym___c_single_quote] = ACTIONS(2532), - [sym___r_double_quote] = ACTIONS(2532), - [sym___r_single_quote] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2883), + [anon_sym_as] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_const] = ACTIONS(2883), + [anon_sym_LPAREN] = ACTIONS(2883), + [anon_sym___global] = ACTIONS(2883), + [anon_sym_type] = ACTIONS(2883), + [anon_sym_PIPE] = ACTIONS(2883), + [anon_sym_fn] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_PERCENT] = ACTIONS(2883), + [anon_sym_LT] = ACTIONS(2883), + [anon_sym_GT] = ACTIONS(2883), + [anon_sym_EQ_EQ] = ACTIONS(2883), + [anon_sym_BANG_EQ] = ACTIONS(2883), + [anon_sym_LT_EQ] = ACTIONS(2883), + [anon_sym_GT_EQ] = ACTIONS(2883), + [anon_sym_LBRACK] = ACTIONS(2881), + [anon_sym_struct] = ACTIONS(2883), + [anon_sym_union] = ACTIONS(2883), + [anon_sym_pub] = ACTIONS(2883), + [anon_sym_mut] = ACTIONS(2883), + [anon_sym_enum] = ACTIONS(2883), + [anon_sym_interface] = ACTIONS(2883), + [anon_sym_PLUS_PLUS] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2883), + [anon_sym_QMARK] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2883), + [anon_sym_go] = ACTIONS(2883), + [anon_sym_spawn] = ACTIONS(2883), + [anon_sym_json_DOTdecode] = ACTIONS(2883), + [anon_sym_LBRACK2] = ACTIONS(2883), + [anon_sym_TILDE] = ACTIONS(2883), + [anon_sym_CARET] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_LT_DASH] = ACTIONS(2883), + [anon_sym_LT_LT] = ACTIONS(2883), + [anon_sym_GT_GT] = ACTIONS(2883), + [anon_sym_GT_GT_GT] = ACTIONS(2883), + [anon_sym_AMP_CARET] = ACTIONS(2883), + [anon_sym_AMP_AMP] = ACTIONS(2883), + [anon_sym_PIPE_PIPE] = ACTIONS(2883), + [anon_sym_or] = ACTIONS(2883), + [sym_none] = ACTIONS(2883), + [sym_true] = ACTIONS(2883), + [sym_false] = ACTIONS(2883), + [sym_nil] = ACTIONS(2883), + [anon_sym_QMARK_DOT] = ACTIONS(2883), + [anon_sym_POUND_LBRACK] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_DOLLARif] = ACTIONS(2883), + [anon_sym_is] = ACTIONS(2883), + [anon_sym_BANGis] = ACTIONS(2883), + [anon_sym_in] = ACTIONS(2883), + [anon_sym_BANGin] = ACTIONS(2883), + [anon_sym_match] = ACTIONS(2883), + [anon_sym_select] = ACTIONS(2883), + [anon_sym_lock] = ACTIONS(2883), + [anon_sym_rlock] = ACTIONS(2883), + [anon_sym_unsafe] = ACTIONS(2883), + [anon_sym_sql] = ACTIONS(2883), + [sym_int_literal] = ACTIONS(2883), + [sym_float_literal] = ACTIONS(2883), + [sym_rune_literal] = ACTIONS(2883), + [anon_sym_SQUOTE] = ACTIONS(2883), + [anon_sym_DQUOTE] = ACTIONS(2883), + [anon_sym_c_SQUOTE] = ACTIONS(2883), + [anon_sym_c_DQUOTE] = ACTIONS(2883), + [anon_sym_r_SQUOTE] = ACTIONS(2883), + [anon_sym_r_DQUOTE] = ACTIONS(2883), + [sym_pseudo_compile_time_identifier] = ACTIONS(2883), + [anon_sym_shared] = ACTIONS(2883), + [anon_sym_map_LBRACK] = ACTIONS(2883), + [anon_sym_chan] = ACTIONS(2883), + [anon_sym_thread] = ACTIONS(2883), + [anon_sym_atomic] = ACTIONS(2883), + [anon_sym_assert] = ACTIONS(2883), + [anon_sym_defer] = ACTIONS(2883), + [anon_sym_goto] = ACTIONS(2883), + [anon_sym_break] = ACTIONS(2883), + [anon_sym_continue] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2883), + [anon_sym_DOLLARfor] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2883), + [anon_sym_POUND] = ACTIONS(2883), + [anon_sym_asm] = ACTIONS(2883), + [anon_sym_AT_LBRACK] = ACTIONS(2883), }, - [1087] = { - [sym_line_comment] = STATE(1087), - [sym_block_comment] = STATE(1087), + [1082] = { + [sym_line_comment] = STATE(1082), + [sym_block_comment] = STATE(1082), [ts_builtin_sym_end] = ACTIONS(2231), [sym_identifier] = ACTIONS(2233), [anon_sym_LF] = ACTIONS(2233), @@ -146302,6 +145768,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(2233), [sym_float_literal] = ACTIONS(2233), [sym_rune_literal] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_DQUOTE] = ACTIONS(2233), + [anon_sym_c_SQUOTE] = ACTIONS(2233), + [anon_sym_c_DQUOTE] = ACTIONS(2233), + [anon_sym_r_SQUOTE] = ACTIONS(2233), + [anon_sym_r_DQUOTE] = ACTIONS(2233), [sym_pseudo_compile_time_identifier] = ACTIONS(2233), [anon_sym_shared] = ACTIONS(2233), [anon_sym_map_LBRACK] = ACTIONS(2233), @@ -146319,1345 +145791,1849 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(2233), [anon_sym_asm] = ACTIONS(2233), [anon_sym_AT_LBRACK] = ACTIONS(2233), - [sym___double_quote] = ACTIONS(2233), - [sym___single_quote] = ACTIONS(2233), - [sym___c_double_quote] = ACTIONS(2233), - [sym___c_single_quote] = ACTIONS(2233), - [sym___r_double_quote] = ACTIONS(2233), - [sym___r_single_quote] = ACTIONS(2233), + }, + [1083] = { + [sym_line_comment] = STATE(1083), + [sym_block_comment] = STATE(1083), + [ts_builtin_sym_end] = ACTIONS(2239), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LF] = ACTIONS(2241), + [anon_sym_CR] = ACTIONS(2241), + [anon_sym_CR_LF] = ACTIONS(2241), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2241), + [anon_sym_as] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [anon_sym_COMMA] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym___global] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_PIPE] = ACTIONS(2241), + [anon_sym_fn] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_SLASH] = ACTIONS(2241), + [anon_sym_PERCENT] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_GT] = ACTIONS(2241), + [anon_sym_EQ_EQ] = ACTIONS(2241), + [anon_sym_BANG_EQ] = ACTIONS(2241), + [anon_sym_LT_EQ] = ACTIONS(2241), + [anon_sym_GT_EQ] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_struct] = ACTIONS(2241), + [anon_sym_union] = ACTIONS(2241), + [anon_sym_pub] = ACTIONS(2241), + [anon_sym_mut] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [anon_sym_interface] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_QMARK] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_go] = ACTIONS(2241), + [anon_sym_spawn] = ACTIONS(2241), + [anon_sym_json_DOTdecode] = ACTIONS(2241), + [anon_sym_LBRACK2] = ACTIONS(2241), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_LT_DASH] = ACTIONS(2241), + [anon_sym_LT_LT] = ACTIONS(2241), + [anon_sym_GT_GT] = ACTIONS(2241), + [anon_sym_GT_GT_GT] = ACTIONS(2241), + [anon_sym_AMP_CARET] = ACTIONS(2241), + [anon_sym_AMP_AMP] = ACTIONS(2241), + [anon_sym_PIPE_PIPE] = ACTIONS(2241), + [anon_sym_or] = ACTIONS(2241), + [sym_none] = ACTIONS(2241), + [sym_true] = ACTIONS(2241), + [sym_false] = ACTIONS(2241), + [sym_nil] = ACTIONS(2241), + [anon_sym_QMARK_DOT] = ACTIONS(2241), + [anon_sym_POUND_LBRACK] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_DOLLARif] = ACTIONS(2241), + [anon_sym_is] = ACTIONS(2241), + [anon_sym_BANGis] = ACTIONS(2241), + [anon_sym_in] = ACTIONS(2241), + [anon_sym_BANGin] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_select] = ACTIONS(2241), + [anon_sym_lock] = ACTIONS(2241), + [anon_sym_rlock] = ACTIONS(2241), + [anon_sym_unsafe] = ACTIONS(2241), + [anon_sym_sql] = ACTIONS(2241), + [sym_int_literal] = ACTIONS(2241), + [sym_float_literal] = ACTIONS(2241), + [sym_rune_literal] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(2241), + [anon_sym_c_SQUOTE] = ACTIONS(2241), + [anon_sym_c_DQUOTE] = ACTIONS(2241), + [anon_sym_r_SQUOTE] = ACTIONS(2241), + [anon_sym_r_DQUOTE] = ACTIONS(2241), + [sym_pseudo_compile_time_identifier] = ACTIONS(2241), + [anon_sym_shared] = ACTIONS(2241), + [anon_sym_map_LBRACK] = ACTIONS(2241), + [anon_sym_chan] = ACTIONS(2241), + [anon_sym_thread] = ACTIONS(2241), + [anon_sym_atomic] = ACTIONS(2241), + [anon_sym_assert] = ACTIONS(2241), + [anon_sym_defer] = ACTIONS(2241), + [anon_sym_goto] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_DOLLARfor] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_POUND] = ACTIONS(2241), + [anon_sym_asm] = ACTIONS(2241), + [anon_sym_AT_LBRACK] = ACTIONS(2241), + }, + [1084] = { + [sym_line_comment] = STATE(1084), + [sym_block_comment] = STATE(1084), + [ts_builtin_sym_end] = ACTIONS(2861), + [sym_identifier] = ACTIONS(2863), + [anon_sym_LF] = ACTIONS(2863), + [anon_sym_CR] = ACTIONS(2863), + [anon_sym_CR_LF] = ACTIONS(2863), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2863), + [anon_sym_as] = ACTIONS(2863), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_COMMA] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_LPAREN] = ACTIONS(2863), + [anon_sym___global] = ACTIONS(2863), + [anon_sym_type] = ACTIONS(2863), + [anon_sym_PIPE] = ACTIONS(2863), + [anon_sym_fn] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_SLASH] = ACTIONS(2863), + [anon_sym_PERCENT] = ACTIONS(2863), + [anon_sym_LT] = ACTIONS(2863), + [anon_sym_GT] = ACTIONS(2863), + [anon_sym_EQ_EQ] = ACTIONS(2863), + [anon_sym_BANG_EQ] = ACTIONS(2863), + [anon_sym_LT_EQ] = ACTIONS(2863), + [anon_sym_GT_EQ] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_union] = ACTIONS(2863), + [anon_sym_pub] = ACTIONS(2863), + [anon_sym_mut] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_interface] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_go] = ACTIONS(2863), + [anon_sym_spawn] = ACTIONS(2863), + [anon_sym_json_DOTdecode] = ACTIONS(2863), + [anon_sym_LBRACK2] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_CARET] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_LT_DASH] = ACTIONS(2863), + [anon_sym_LT_LT] = ACTIONS(2863), + [anon_sym_GT_GT] = ACTIONS(2863), + [anon_sym_GT_GT_GT] = ACTIONS(2863), + [anon_sym_AMP_CARET] = ACTIONS(2863), + [anon_sym_AMP_AMP] = ACTIONS(2863), + [anon_sym_PIPE_PIPE] = ACTIONS(2863), + [anon_sym_or] = ACTIONS(2863), + [sym_none] = ACTIONS(2863), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_nil] = ACTIONS(2863), + [anon_sym_QMARK_DOT] = ACTIONS(2863), + [anon_sym_POUND_LBRACK] = ACTIONS(2863), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_DOLLARif] = ACTIONS(2863), + [anon_sym_is] = ACTIONS(2863), + [anon_sym_BANGis] = ACTIONS(2863), + [anon_sym_in] = ACTIONS(2863), + [anon_sym_BANGin] = ACTIONS(2863), + [anon_sym_match] = ACTIONS(2863), + [anon_sym_select] = ACTIONS(2863), + [anon_sym_lock] = ACTIONS(2863), + [anon_sym_rlock] = ACTIONS(2863), + [anon_sym_unsafe] = ACTIONS(2863), + [anon_sym_sql] = ACTIONS(2863), + [sym_int_literal] = ACTIONS(2863), + [sym_float_literal] = ACTIONS(2863), + [sym_rune_literal] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2863), + [anon_sym_c_SQUOTE] = ACTIONS(2863), + [anon_sym_c_DQUOTE] = ACTIONS(2863), + [anon_sym_r_SQUOTE] = ACTIONS(2863), + [anon_sym_r_DQUOTE] = ACTIONS(2863), + [sym_pseudo_compile_time_identifier] = ACTIONS(2863), + [anon_sym_shared] = ACTIONS(2863), + [anon_sym_map_LBRACK] = ACTIONS(2863), + [anon_sym_chan] = ACTIONS(2863), + [anon_sym_thread] = ACTIONS(2863), + [anon_sym_atomic] = ACTIONS(2863), + [anon_sym_assert] = ACTIONS(2863), + [anon_sym_defer] = ACTIONS(2863), + [anon_sym_goto] = ACTIONS(2863), + [anon_sym_break] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2863), + [anon_sym_return] = ACTIONS(2863), + [anon_sym_DOLLARfor] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_POUND] = ACTIONS(2863), + [anon_sym_asm] = ACTIONS(2863), + [anon_sym_AT_LBRACK] = ACTIONS(2863), + }, + [1085] = { + [sym_line_comment] = STATE(1085), + [sym_block_comment] = STATE(1085), + [ts_builtin_sym_end] = ACTIONS(2505), + [sym_identifier] = ACTIONS(2507), + [anon_sym_LF] = ACTIONS(2507), + [anon_sym_CR] = ACTIONS(2507), + [anon_sym_CR_LF] = ACTIONS(2507), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2507), + [anon_sym_as] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_COMMA] = ACTIONS(2507), + [anon_sym_const] = ACTIONS(2507), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym___global] = ACTIONS(2507), + [anon_sym_type] = ACTIONS(2507), + [anon_sym_PIPE] = ACTIONS(2507), + [anon_sym_fn] = ACTIONS(2507), + [anon_sym_PLUS] = ACTIONS(2507), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_GT] = ACTIONS(2507), + [anon_sym_EQ_EQ] = ACTIONS(2507), + [anon_sym_BANG_EQ] = ACTIONS(2507), + [anon_sym_LT_EQ] = ACTIONS(2507), + [anon_sym_GT_EQ] = ACTIONS(2507), + [anon_sym_LBRACK] = ACTIONS(2505), + [anon_sym_struct] = ACTIONS(2507), + [anon_sym_union] = ACTIONS(2507), + [anon_sym_pub] = ACTIONS(2507), + [anon_sym_mut] = ACTIONS(2507), + [anon_sym_enum] = ACTIONS(2507), + [anon_sym_interface] = ACTIONS(2507), + [anon_sym_PLUS_PLUS] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2507), + [anon_sym_QMARK] = ACTIONS(2507), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_go] = ACTIONS(2507), + [anon_sym_spawn] = ACTIONS(2507), + [anon_sym_json_DOTdecode] = ACTIONS(2507), + [anon_sym_LBRACK2] = ACTIONS(2507), + [anon_sym_TILDE] = ACTIONS(2507), + [anon_sym_CARET] = ACTIONS(2507), + [anon_sym_AMP] = ACTIONS(2507), + [anon_sym_LT_DASH] = ACTIONS(2507), + [anon_sym_LT_LT] = ACTIONS(2507), + [anon_sym_GT_GT] = ACTIONS(2507), + [anon_sym_GT_GT_GT] = ACTIONS(2507), + [anon_sym_AMP_CARET] = ACTIONS(2507), + [anon_sym_AMP_AMP] = ACTIONS(2507), + [anon_sym_PIPE_PIPE] = ACTIONS(2507), + [anon_sym_or] = ACTIONS(2507), + [sym_none] = ACTIONS(2507), + [sym_true] = ACTIONS(2507), + [sym_false] = ACTIONS(2507), + [sym_nil] = ACTIONS(2507), + [anon_sym_QMARK_DOT] = ACTIONS(2507), + [anon_sym_POUND_LBRACK] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_DOLLARif] = ACTIONS(2507), + [anon_sym_is] = ACTIONS(2507), + [anon_sym_BANGis] = ACTIONS(2507), + [anon_sym_in] = ACTIONS(2507), + [anon_sym_BANGin] = ACTIONS(2507), + [anon_sym_match] = ACTIONS(2507), + [anon_sym_select] = ACTIONS(2507), + [anon_sym_lock] = ACTIONS(2507), + [anon_sym_rlock] = ACTIONS(2507), + [anon_sym_unsafe] = ACTIONS(2507), + [anon_sym_sql] = ACTIONS(2507), + [sym_int_literal] = ACTIONS(2507), + [sym_float_literal] = ACTIONS(2507), + [sym_rune_literal] = ACTIONS(2507), + [anon_sym_SQUOTE] = ACTIONS(2507), + [anon_sym_DQUOTE] = ACTIONS(2507), + [anon_sym_c_SQUOTE] = ACTIONS(2507), + [anon_sym_c_DQUOTE] = ACTIONS(2507), + [anon_sym_r_SQUOTE] = ACTIONS(2507), + [anon_sym_r_DQUOTE] = ACTIONS(2507), + [sym_pseudo_compile_time_identifier] = ACTIONS(2507), + [anon_sym_shared] = ACTIONS(2507), + [anon_sym_map_LBRACK] = ACTIONS(2507), + [anon_sym_chan] = ACTIONS(2507), + [anon_sym_thread] = ACTIONS(2507), + [anon_sym_atomic] = ACTIONS(2507), + [anon_sym_assert] = ACTIONS(2507), + [anon_sym_defer] = ACTIONS(2507), + [anon_sym_goto] = ACTIONS(2507), + [anon_sym_break] = ACTIONS(2507), + [anon_sym_continue] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2507), + [anon_sym_DOLLARfor] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_POUND] = ACTIONS(2507), + [anon_sym_asm] = ACTIONS(2507), + [anon_sym_AT_LBRACK] = ACTIONS(2507), + }, + [1086] = { + [sym_line_comment] = STATE(1086), + [sym_block_comment] = STATE(1086), + [ts_builtin_sym_end] = ACTIONS(2255), + [sym_identifier] = ACTIONS(2257), + [anon_sym_LF] = ACTIONS(2257), + [anon_sym_CR] = ACTIONS(2257), + [anon_sym_CR_LF] = ACTIONS(2257), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2257), + [anon_sym_as] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_COMMA] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym___global] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_PIPE] = ACTIONS(2257), + [anon_sym_fn] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_SLASH] = ACTIONS(2257), + [anon_sym_PERCENT] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_GT] = ACTIONS(2257), + [anon_sym_EQ_EQ] = ACTIONS(2257), + [anon_sym_BANG_EQ] = ACTIONS(2257), + [anon_sym_LT_EQ] = ACTIONS(2257), + [anon_sym_GT_EQ] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2257), + [anon_sym_union] = ACTIONS(2257), + [anon_sym_pub] = ACTIONS(2257), + [anon_sym_mut] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_interface] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_QMARK] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_go] = ACTIONS(2257), + [anon_sym_spawn] = ACTIONS(2257), + [anon_sym_json_DOTdecode] = ACTIONS(2257), + [anon_sym_LBRACK2] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_LT_DASH] = ACTIONS(2257), + [anon_sym_LT_LT] = ACTIONS(2257), + [anon_sym_GT_GT] = ACTIONS(2257), + [anon_sym_GT_GT_GT] = ACTIONS(2257), + [anon_sym_AMP_CARET] = ACTIONS(2257), + [anon_sym_AMP_AMP] = ACTIONS(2257), + [anon_sym_PIPE_PIPE] = ACTIONS(2257), + [anon_sym_or] = ACTIONS(2257), + [sym_none] = ACTIONS(2257), + [sym_true] = ACTIONS(2257), + [sym_false] = ACTIONS(2257), + [sym_nil] = ACTIONS(2257), + [anon_sym_QMARK_DOT] = ACTIONS(2257), + [anon_sym_POUND_LBRACK] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_DOLLARif] = ACTIONS(2257), + [anon_sym_is] = ACTIONS(2257), + [anon_sym_BANGis] = ACTIONS(2257), + [anon_sym_in] = ACTIONS(2257), + [anon_sym_BANGin] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_select] = ACTIONS(2257), + [anon_sym_lock] = ACTIONS(2257), + [anon_sym_rlock] = ACTIONS(2257), + [anon_sym_unsafe] = ACTIONS(2257), + [anon_sym_sql] = ACTIONS(2257), + [sym_int_literal] = ACTIONS(2257), + [sym_float_literal] = ACTIONS(2257), + [sym_rune_literal] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2257), + [anon_sym_c_SQUOTE] = ACTIONS(2257), + [anon_sym_c_DQUOTE] = ACTIONS(2257), + [anon_sym_r_SQUOTE] = ACTIONS(2257), + [anon_sym_r_DQUOTE] = ACTIONS(2257), + [sym_pseudo_compile_time_identifier] = ACTIONS(2257), + [anon_sym_shared] = ACTIONS(2257), + [anon_sym_map_LBRACK] = ACTIONS(2257), + [anon_sym_chan] = ACTIONS(2257), + [anon_sym_thread] = ACTIONS(2257), + [anon_sym_atomic] = ACTIONS(2257), + [anon_sym_assert] = ACTIONS(2257), + [anon_sym_defer] = ACTIONS(2257), + [anon_sym_goto] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_DOLLARfor] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_POUND] = ACTIONS(2257), + [anon_sym_asm] = ACTIONS(2257), + [anon_sym_AT_LBRACK] = ACTIONS(2257), + }, + [1087] = { + [sym_line_comment] = STATE(1087), + [sym_block_comment] = STATE(1087), + [ts_builtin_sym_end] = ACTIONS(2053), + [sym_identifier] = ACTIONS(2055), + [anon_sym_LF] = ACTIONS(2055), + [anon_sym_CR] = ACTIONS(2055), + [anon_sym_CR_LF] = ACTIONS(2055), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym___global] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(2055), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_PERCENT] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_EQ_EQ] = ACTIONS(2055), + [anon_sym_BANG_EQ] = ACTIONS(2055), + [anon_sym_LT_EQ] = ACTIONS(2055), + [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(2055), + [anon_sym_union] = ACTIONS(2055), + [anon_sym_pub] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), + [anon_sym_enum] = ACTIONS(2055), + [anon_sym_interface] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_QMARK] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2055), + [anon_sym_spawn] = ACTIONS(2055), + [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_LBRACK2] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_LT] = ACTIONS(2055), + [anon_sym_GT_GT] = ACTIONS(2055), + [anon_sym_GT_GT_GT] = ACTIONS(2055), + [anon_sym_AMP_CARET] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2055), + [anon_sym_PIPE_PIPE] = ACTIONS(2055), + [anon_sym_or] = ACTIONS(2055), + [sym_none] = ACTIONS(2055), + [sym_true] = ACTIONS(2055), + [sym_false] = ACTIONS(2055), + [sym_nil] = ACTIONS(2055), + [anon_sym_QMARK_DOT] = ACTIONS(2055), + [anon_sym_POUND_LBRACK] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_DOLLARif] = ACTIONS(2055), + [anon_sym_is] = ACTIONS(2055), + [anon_sym_BANGis] = ACTIONS(2055), + [anon_sym_in] = ACTIONS(2055), + [anon_sym_BANGin] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_select] = ACTIONS(2055), + [anon_sym_lock] = ACTIONS(2055), + [anon_sym_rlock] = ACTIONS(2055), + [anon_sym_unsafe] = ACTIONS(2055), + [anon_sym_sql] = ACTIONS(2055), + [sym_int_literal] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), + [sym_rune_literal] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2055), + [anon_sym_c_SQUOTE] = ACTIONS(2055), + [anon_sym_c_DQUOTE] = ACTIONS(2055), + [anon_sym_r_SQUOTE] = ACTIONS(2055), + [anon_sym_r_DQUOTE] = ACTIONS(2055), + [sym_pseudo_compile_time_identifier] = ACTIONS(2055), + [anon_sym_shared] = ACTIONS(2055), + [anon_sym_map_LBRACK] = ACTIONS(2055), + [anon_sym_chan] = ACTIONS(2055), + [anon_sym_thread] = ACTIONS(2055), + [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_assert] = ACTIONS(2055), + [anon_sym_defer] = ACTIONS(2055), + [anon_sym_goto] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_DOLLARfor] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(2055), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym_AT_LBRACK] = ACTIONS(2055), }, [1088] = { [sym_line_comment] = STATE(1088), [sym_block_comment] = STATE(1088), - [ts_builtin_sym_end] = ACTIONS(2511), - [sym_identifier] = ACTIONS(2513), - [anon_sym_LF] = ACTIONS(2513), - [anon_sym_CR] = ACTIONS(2513), - [anon_sym_CR_LF] = ACTIONS(2513), + [ts_builtin_sym_end] = ACTIONS(2437), + [sym_identifier] = ACTIONS(2439), + [anon_sym_LF] = ACTIONS(2439), + [anon_sym_CR] = ACTIONS(2439), + [anon_sym_CR_LF] = ACTIONS(2439), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2513), - [anon_sym_as] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_COMMA] = ACTIONS(2513), - [anon_sym_const] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym___global] = ACTIONS(2513), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_fn] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2513), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_GT] = ACTIONS(2513), - [anon_sym_EQ_EQ] = ACTIONS(2513), - [anon_sym_BANG_EQ] = ACTIONS(2513), - [anon_sym_LT_EQ] = ACTIONS(2513), - [anon_sym_GT_EQ] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_union] = ACTIONS(2513), - [anon_sym_pub] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_enum] = ACTIONS(2513), - [anon_sym_interface] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_QMARK] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_go] = ACTIONS(2513), - [anon_sym_spawn] = ACTIONS(2513), - [anon_sym_json_DOTdecode] = ACTIONS(2513), - [anon_sym_LBRACK2] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_LT_DASH] = ACTIONS(2513), - [anon_sym_LT_LT] = ACTIONS(2513), - [anon_sym_GT_GT] = ACTIONS(2513), - [anon_sym_GT_GT_GT] = ACTIONS(2513), - [anon_sym_AMP_CARET] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2513), - [anon_sym_or] = ACTIONS(2513), - [sym_none] = ACTIONS(2513), - [sym_true] = ACTIONS(2513), - [sym_false] = ACTIONS(2513), - [sym_nil] = ACTIONS(2513), - [anon_sym_QMARK_DOT] = ACTIONS(2513), - [anon_sym_POUND_LBRACK] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_DOLLARif] = ACTIONS(2513), - [anon_sym_is] = ACTIONS(2513), - [anon_sym_BANGis] = ACTIONS(2513), - [anon_sym_in] = ACTIONS(2513), - [anon_sym_BANGin] = ACTIONS(2513), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_select] = ACTIONS(2513), - [anon_sym_lock] = ACTIONS(2513), - [anon_sym_rlock] = ACTIONS(2513), - [anon_sym_unsafe] = ACTIONS(2513), - [anon_sym_sql] = ACTIONS(2513), - [sym_int_literal] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2513), - [sym_rune_literal] = ACTIONS(2513), - [sym_pseudo_compile_time_identifier] = ACTIONS(2513), - [anon_sym_shared] = ACTIONS(2513), - [anon_sym_map_LBRACK] = ACTIONS(2513), - [anon_sym_chan] = ACTIONS(2513), - [anon_sym_thread] = ACTIONS(2513), - [anon_sym_atomic] = ACTIONS(2513), - [anon_sym_assert] = ACTIONS(2513), - [anon_sym_defer] = ACTIONS(2513), - [anon_sym_goto] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_DOLLARfor] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_POUND] = ACTIONS(2513), - [anon_sym_asm] = ACTIONS(2513), - [anon_sym_AT_LBRACK] = ACTIONS(2513), - [sym___double_quote] = ACTIONS(2513), - [sym___single_quote] = ACTIONS(2513), - [sym___c_double_quote] = ACTIONS(2513), - [sym___c_single_quote] = ACTIONS(2513), - [sym___r_double_quote] = ACTIONS(2513), - [sym___r_single_quote] = ACTIONS(2513), + [anon_sym_DOT] = ACTIONS(2439), + [anon_sym_as] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_COMMA] = ACTIONS(2439), + [anon_sym_const] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym___global] = ACTIONS(2439), + [anon_sym_type] = ACTIONS(2439), + [anon_sym_PIPE] = ACTIONS(2439), + [anon_sym_fn] = ACTIONS(2439), + [anon_sym_PLUS] = ACTIONS(2439), + [anon_sym_DASH] = ACTIONS(2439), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_SLASH] = ACTIONS(2439), + [anon_sym_PERCENT] = ACTIONS(2439), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_GT] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2439), + [anon_sym_BANG_EQ] = ACTIONS(2439), + [anon_sym_LT_EQ] = ACTIONS(2439), + [anon_sym_GT_EQ] = ACTIONS(2439), + [anon_sym_LBRACK] = ACTIONS(2437), + [anon_sym_struct] = ACTIONS(2439), + [anon_sym_union] = ACTIONS(2439), + [anon_sym_pub] = ACTIONS(2439), + [anon_sym_mut] = ACTIONS(2439), + [anon_sym_enum] = ACTIONS(2439), + [anon_sym_interface] = ACTIONS(2439), + [anon_sym_PLUS_PLUS] = ACTIONS(2439), + [anon_sym_DASH_DASH] = ACTIONS(2439), + [anon_sym_QMARK] = ACTIONS(2439), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2439), + [anon_sym_json_DOTdecode] = ACTIONS(2439), + [anon_sym_LBRACK2] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2439), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2439), + [anon_sym_LT_DASH] = ACTIONS(2439), + [anon_sym_LT_LT] = ACTIONS(2439), + [anon_sym_GT_GT] = ACTIONS(2439), + [anon_sym_GT_GT_GT] = ACTIONS(2439), + [anon_sym_AMP_CARET] = ACTIONS(2439), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_PIPE_PIPE] = ACTIONS(2439), + [anon_sym_or] = ACTIONS(2439), + [sym_none] = ACTIONS(2439), + [sym_true] = ACTIONS(2439), + [sym_false] = ACTIONS(2439), + [sym_nil] = ACTIONS(2439), + [anon_sym_QMARK_DOT] = ACTIONS(2439), + [anon_sym_POUND_LBRACK] = ACTIONS(2439), + [anon_sym_if] = ACTIONS(2439), + [anon_sym_DOLLARif] = ACTIONS(2439), + [anon_sym_is] = ACTIONS(2439), + [anon_sym_BANGis] = ACTIONS(2439), + [anon_sym_in] = ACTIONS(2439), + [anon_sym_BANGin] = ACTIONS(2439), + [anon_sym_match] = ACTIONS(2439), + [anon_sym_select] = ACTIONS(2439), + [anon_sym_lock] = ACTIONS(2439), + [anon_sym_rlock] = ACTIONS(2439), + [anon_sym_unsafe] = ACTIONS(2439), + [anon_sym_sql] = ACTIONS(2439), + [sym_int_literal] = ACTIONS(2439), + [sym_float_literal] = ACTIONS(2439), + [sym_rune_literal] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(2439), + [anon_sym_c_SQUOTE] = ACTIONS(2439), + [anon_sym_c_DQUOTE] = ACTIONS(2439), + [anon_sym_r_SQUOTE] = ACTIONS(2439), + [anon_sym_r_DQUOTE] = ACTIONS(2439), + [sym_pseudo_compile_time_identifier] = ACTIONS(2439), + [anon_sym_shared] = ACTIONS(2439), + [anon_sym_map_LBRACK] = ACTIONS(2439), + [anon_sym_chan] = ACTIONS(2439), + [anon_sym_thread] = ACTIONS(2439), + [anon_sym_atomic] = ACTIONS(2439), + [anon_sym_assert] = ACTIONS(2439), + [anon_sym_defer] = ACTIONS(2439), + [anon_sym_goto] = ACTIONS(2439), + [anon_sym_break] = ACTIONS(2439), + [anon_sym_continue] = ACTIONS(2439), + [anon_sym_return] = ACTIONS(2439), + [anon_sym_DOLLARfor] = ACTIONS(2439), + [anon_sym_for] = ACTIONS(2439), + [anon_sym_POUND] = ACTIONS(2439), + [anon_sym_asm] = ACTIONS(2439), + [anon_sym_AT_LBRACK] = ACTIONS(2439), }, [1089] = { [sym_line_comment] = STATE(1089), [sym_block_comment] = STATE(1089), - [ts_builtin_sym_end] = ACTIONS(2800), - [sym_identifier] = ACTIONS(2802), - [anon_sym_LF] = ACTIONS(2802), - [anon_sym_CR] = ACTIONS(2802), - [anon_sym_CR_LF] = ACTIONS(2802), + [ts_builtin_sym_end] = ACTIONS(1897), + [sym_identifier] = ACTIONS(1899), + [anon_sym_LF] = ACTIONS(1899), + [anon_sym_CR] = ACTIONS(1899), + [anon_sym_CR_LF] = ACTIONS(1899), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_as] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym___global] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_fn] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_SLASH] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2802), - [anon_sym_GT] = ACTIONS(2802), - [anon_sym_EQ_EQ] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2802), - [anon_sym_LT_EQ] = ACTIONS(2802), - [anon_sym_GT_EQ] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_struct] = ACTIONS(2802), - [anon_sym_union] = ACTIONS(2802), - [anon_sym_pub] = ACTIONS(2802), - [anon_sym_mut] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2802), - [anon_sym_interface] = ACTIONS(2802), - [anon_sym_PLUS_PLUS] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_go] = ACTIONS(2802), - [anon_sym_spawn] = ACTIONS(2802), - [anon_sym_json_DOTdecode] = ACTIONS(2802), - [anon_sym_LBRACK2] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2802), - [anon_sym_CARET] = ACTIONS(2802), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_LT_LT] = ACTIONS(2802), - [anon_sym_GT_GT] = ACTIONS(2802), - [anon_sym_GT_GT_GT] = ACTIONS(2802), - [anon_sym_AMP_CARET] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_or] = ACTIONS(2802), - [sym_none] = ACTIONS(2802), - [sym_true] = ACTIONS(2802), - [sym_false] = ACTIONS(2802), - [sym_nil] = ACTIONS(2802), - [anon_sym_QMARK_DOT] = ACTIONS(2802), - [anon_sym_POUND_LBRACK] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_DOLLARif] = ACTIONS(2802), - [anon_sym_is] = ACTIONS(2802), - [anon_sym_BANGis] = ACTIONS(2802), - [anon_sym_in] = ACTIONS(2802), - [anon_sym_BANGin] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_select] = ACTIONS(2802), - [anon_sym_lock] = ACTIONS(2802), - [anon_sym_rlock] = ACTIONS(2802), - [anon_sym_unsafe] = ACTIONS(2802), - [anon_sym_sql] = ACTIONS(2802), - [sym_int_literal] = ACTIONS(2802), - [sym_float_literal] = ACTIONS(2802), - [sym_rune_literal] = ACTIONS(2802), - [sym_pseudo_compile_time_identifier] = ACTIONS(2802), - [anon_sym_shared] = ACTIONS(2802), - [anon_sym_map_LBRACK] = ACTIONS(2802), - [anon_sym_chan] = ACTIONS(2802), - [anon_sym_thread] = ACTIONS(2802), - [anon_sym_atomic] = ACTIONS(2802), - [anon_sym_assert] = ACTIONS(2802), - [anon_sym_defer] = ACTIONS(2802), - [anon_sym_goto] = ACTIONS(2802), - [anon_sym_break] = ACTIONS(2802), - [anon_sym_continue] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_DOLLARfor] = ACTIONS(2802), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_POUND] = ACTIONS(2802), - [anon_sym_asm] = ACTIONS(2802), - [anon_sym_AT_LBRACK] = ACTIONS(2802), - [sym___double_quote] = ACTIONS(2802), - [sym___single_quote] = ACTIONS(2802), - [sym___c_double_quote] = ACTIONS(2802), - [sym___c_single_quote] = ACTIONS(2802), - [sym___r_double_quote] = ACTIONS(2802), - [sym___r_single_quote] = ACTIONS(2802), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_as] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym___global] = ACTIONS(1899), + [anon_sym_type] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_PERCENT] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1899), + [anon_sym_GT_EQ] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_struct] = ACTIONS(1899), + [anon_sym_union] = ACTIONS(1899), + [anon_sym_pub] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_enum] = ACTIONS(1899), + [anon_sym_interface] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_QMARK] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_go] = ACTIONS(1899), + [anon_sym_spawn] = ACTIONS(1899), + [anon_sym_json_DOTdecode] = ACTIONS(1899), + [anon_sym_LBRACK2] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1899), + [anon_sym_LT_LT] = ACTIONS(1899), + [anon_sym_GT_GT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1899), + [anon_sym_AMP_CARET] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(1899), + [anon_sym_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_or] = ACTIONS(1899), + [sym_none] = ACTIONS(1899), + [sym_true] = ACTIONS(1899), + [sym_false] = ACTIONS(1899), + [sym_nil] = ACTIONS(1899), + [anon_sym_QMARK_DOT] = ACTIONS(1899), + [anon_sym_POUND_LBRACK] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_DOLLARif] = ACTIONS(1899), + [anon_sym_is] = ACTIONS(1899), + [anon_sym_BANGis] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_BANGin] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_select] = ACTIONS(1899), + [anon_sym_lock] = ACTIONS(1899), + [anon_sym_rlock] = ACTIONS(1899), + [anon_sym_unsafe] = ACTIONS(1899), + [anon_sym_sql] = ACTIONS(1899), + [sym_int_literal] = ACTIONS(1899), + [sym_float_literal] = ACTIONS(1899), + [sym_rune_literal] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_c_SQUOTE] = ACTIONS(1899), + [anon_sym_c_DQUOTE] = ACTIONS(1899), + [anon_sym_r_SQUOTE] = ACTIONS(1899), + [anon_sym_r_DQUOTE] = ACTIONS(1899), + [sym_pseudo_compile_time_identifier] = ACTIONS(1899), + [anon_sym_shared] = ACTIONS(1899), + [anon_sym_map_LBRACK] = ACTIONS(1899), + [anon_sym_chan] = ACTIONS(1899), + [anon_sym_thread] = ACTIONS(1899), + [anon_sym_atomic] = ACTIONS(1899), + [anon_sym_assert] = ACTIONS(1899), + [anon_sym_defer] = ACTIONS(1899), + [anon_sym_goto] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_DOLLARfor] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(1899), + [anon_sym_asm] = ACTIONS(1899), + [anon_sym_AT_LBRACK] = ACTIONS(1899), }, [1090] = { [sym_line_comment] = STATE(1090), [sym_block_comment] = STATE(1090), - [ts_builtin_sym_end] = ACTIONS(2742), - [sym_identifier] = ACTIONS(2744), - [anon_sym_LF] = ACTIONS(2744), - [anon_sym_CR] = ACTIONS(2744), - [anon_sym_CR_LF] = ACTIONS(2744), + [ts_builtin_sym_end] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LF] = ACTIONS(2453), + [anon_sym_CR] = ACTIONS(2453), + [anon_sym_CR_LF] = ACTIONS(2453), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2744), - [anon_sym_as] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_COMMA] = ACTIONS(2744), - [anon_sym_const] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym___global] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_fn] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2744), - [anon_sym_SLASH] = ACTIONS(2744), - [anon_sym_PERCENT] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2744), - [anon_sym_GT] = ACTIONS(2744), - [anon_sym_EQ_EQ] = ACTIONS(2744), - [anon_sym_BANG_EQ] = ACTIONS(2744), - [anon_sym_LT_EQ] = ACTIONS(2744), - [anon_sym_GT_EQ] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_struct] = ACTIONS(2744), - [anon_sym_union] = ACTIONS(2744), - [anon_sym_pub] = ACTIONS(2744), - [anon_sym_mut] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), - [anon_sym_interface] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2744), - [anon_sym_DASH_DASH] = ACTIONS(2744), - [anon_sym_QMARK] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2744), - [anon_sym_go] = ACTIONS(2744), - [anon_sym_spawn] = ACTIONS(2744), - [anon_sym_json_DOTdecode] = ACTIONS(2744), - [anon_sym_LBRACK2] = ACTIONS(2744), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2744), - [anon_sym_LT_DASH] = ACTIONS(2744), - [anon_sym_LT_LT] = ACTIONS(2744), - [anon_sym_GT_GT] = ACTIONS(2744), - [anon_sym_GT_GT_GT] = ACTIONS(2744), - [anon_sym_AMP_CARET] = ACTIONS(2744), - [anon_sym_AMP_AMP] = ACTIONS(2744), - [anon_sym_PIPE_PIPE] = ACTIONS(2744), - [anon_sym_or] = ACTIONS(2744), - [sym_none] = ACTIONS(2744), - [sym_true] = ACTIONS(2744), - [sym_false] = ACTIONS(2744), - [sym_nil] = ACTIONS(2744), - [anon_sym_QMARK_DOT] = ACTIONS(2744), - [anon_sym_POUND_LBRACK] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_DOLLARif] = ACTIONS(2744), - [anon_sym_is] = ACTIONS(2744), - [anon_sym_BANGis] = ACTIONS(2744), - [anon_sym_in] = ACTIONS(2744), - [anon_sym_BANGin] = ACTIONS(2744), - [anon_sym_match] = ACTIONS(2744), - [anon_sym_select] = ACTIONS(2744), - [anon_sym_lock] = ACTIONS(2744), - [anon_sym_rlock] = ACTIONS(2744), - [anon_sym_unsafe] = ACTIONS(2744), - [anon_sym_sql] = ACTIONS(2744), - [sym_int_literal] = ACTIONS(2744), - [sym_float_literal] = ACTIONS(2744), - [sym_rune_literal] = ACTIONS(2744), - [sym_pseudo_compile_time_identifier] = ACTIONS(2744), - [anon_sym_shared] = ACTIONS(2744), - [anon_sym_map_LBRACK] = ACTIONS(2744), - [anon_sym_chan] = ACTIONS(2744), - [anon_sym_thread] = ACTIONS(2744), - [anon_sym_atomic] = ACTIONS(2744), - [anon_sym_assert] = ACTIONS(2744), - [anon_sym_defer] = ACTIONS(2744), - [anon_sym_goto] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_DOLLARfor] = ACTIONS(2744), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(2744), - [anon_sym_asm] = ACTIONS(2744), - [anon_sym_AT_LBRACK] = ACTIONS(2744), - [sym___double_quote] = ACTIONS(2744), - [sym___single_quote] = ACTIONS(2744), - [sym___c_double_quote] = ACTIONS(2744), - [sym___c_single_quote] = ACTIONS(2744), - [sym___r_double_quote] = ACTIONS(2744), - [sym___r_single_quote] = ACTIONS(2744), + [anon_sym_DOT] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym___global] = ACTIONS(2453), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_PIPE] = ACTIONS(2453), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2453), + [anon_sym_PERCENT] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_GT] = ACTIONS(2453), + [anon_sym_EQ_EQ] = ACTIONS(2453), + [anon_sym_BANG_EQ] = ACTIONS(2453), + [anon_sym_LT_EQ] = ACTIONS(2453), + [anon_sym_GT_EQ] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2451), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_union] = ACTIONS(2453), + [anon_sym_pub] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_enum] = ACTIONS(2453), + [anon_sym_interface] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(2453), + [anon_sym_DASH_DASH] = ACTIONS(2453), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_go] = ACTIONS(2453), + [anon_sym_spawn] = ACTIONS(2453), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_LT_DASH] = ACTIONS(2453), + [anon_sym_LT_LT] = ACTIONS(2453), + [anon_sym_GT_GT] = ACTIONS(2453), + [anon_sym_GT_GT_GT] = ACTIONS(2453), + [anon_sym_AMP_CARET] = ACTIONS(2453), + [anon_sym_AMP_AMP] = ACTIONS(2453), + [anon_sym_PIPE_PIPE] = ACTIONS(2453), + [anon_sym_or] = ACTIONS(2453), + [sym_none] = ACTIONS(2453), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nil] = ACTIONS(2453), + [anon_sym_QMARK_DOT] = ACTIONS(2453), + [anon_sym_POUND_LBRACK] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_DOLLARif] = ACTIONS(2453), + [anon_sym_is] = ACTIONS(2453), + [anon_sym_BANGis] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(2453), + [anon_sym_BANGin] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_select] = ACTIONS(2453), + [anon_sym_lock] = ACTIONS(2453), + [anon_sym_rlock] = ACTIONS(2453), + [anon_sym_unsafe] = ACTIONS(2453), + [anon_sym_sql] = ACTIONS(2453), + [sym_int_literal] = ACTIONS(2453), + [sym_float_literal] = ACTIONS(2453), + [sym_rune_literal] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [anon_sym_c_SQUOTE] = ACTIONS(2453), + [anon_sym_c_DQUOTE] = ACTIONS(2453), + [anon_sym_r_SQUOTE] = ACTIONS(2453), + [anon_sym_r_DQUOTE] = ACTIONS(2453), + [sym_pseudo_compile_time_identifier] = ACTIONS(2453), + [anon_sym_shared] = ACTIONS(2453), + [anon_sym_map_LBRACK] = ACTIONS(2453), + [anon_sym_chan] = ACTIONS(2453), + [anon_sym_thread] = ACTIONS(2453), + [anon_sym_atomic] = ACTIONS(2453), + [anon_sym_assert] = ACTIONS(2453), + [anon_sym_defer] = ACTIONS(2453), + [anon_sym_goto] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_DOLLARfor] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(2453), + [anon_sym_asm] = ACTIONS(2453), + [anon_sym_AT_LBRACK] = ACTIONS(2453), }, [1091] = { [sym_line_comment] = STATE(1091), [sym_block_comment] = STATE(1091), - [ts_builtin_sym_end] = ACTIONS(3060), - [sym_identifier] = ACTIONS(3062), - [anon_sym_LF] = ACTIONS(3062), - [anon_sym_CR] = ACTIONS(3062), - [anon_sym_CR_LF] = ACTIONS(3062), + [ts_builtin_sym_end] = ACTIONS(2425), + [sym_identifier] = ACTIONS(2427), + [anon_sym_LF] = ACTIONS(2427), + [anon_sym_CR] = ACTIONS(2427), + [anon_sym_CR_LF] = ACTIONS(2427), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3062), - [anon_sym_as] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3062), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_const] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3062), - [anon_sym___global] = ACTIONS(3062), - [anon_sym_type] = ACTIONS(3062), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_fn] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_EQ_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_LT_EQ] = ACTIONS(3062), - [anon_sym_GT_EQ] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_struct] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(3062), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_mut] = ACTIONS(3062), - [anon_sym_enum] = ACTIONS(3062), - [anon_sym_interface] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3062), - [anon_sym_DASH_DASH] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_go] = ACTIONS(3062), - [anon_sym_spawn] = ACTIONS(3062), - [anon_sym_json_DOTdecode] = ACTIONS(3062), - [anon_sym_LBRACK2] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3062), - [anon_sym_LT_DASH] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3062), - [anon_sym_GT_GT] = ACTIONS(3062), - [anon_sym_GT_GT_GT] = ACTIONS(3062), - [anon_sym_AMP_CARET] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_PIPE_PIPE] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3062), - [sym_none] = ACTIONS(3062), - [sym_true] = ACTIONS(3062), - [sym_false] = ACTIONS(3062), - [sym_nil] = ACTIONS(3062), - [anon_sym_QMARK_DOT] = ACTIONS(3062), - [anon_sym_POUND_LBRACK] = ACTIONS(3062), - [anon_sym_if] = ACTIONS(3062), - [anon_sym_DOLLARif] = ACTIONS(3062), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_BANGis] = ACTIONS(3062), - [anon_sym_in] = ACTIONS(3062), - [anon_sym_BANGin] = ACTIONS(3062), - [anon_sym_match] = ACTIONS(3062), - [anon_sym_select] = ACTIONS(3062), - [anon_sym_lock] = ACTIONS(3062), - [anon_sym_rlock] = ACTIONS(3062), - [anon_sym_unsafe] = ACTIONS(3062), - [anon_sym_sql] = ACTIONS(3062), - [sym_int_literal] = ACTIONS(3062), - [sym_float_literal] = ACTIONS(3062), - [sym_rune_literal] = ACTIONS(3062), - [sym_pseudo_compile_time_identifier] = ACTIONS(3062), - [anon_sym_shared] = ACTIONS(3062), - [anon_sym_map_LBRACK] = ACTIONS(3062), - [anon_sym_chan] = ACTIONS(3062), - [anon_sym_thread] = ACTIONS(3062), - [anon_sym_atomic] = ACTIONS(3062), - [anon_sym_assert] = ACTIONS(3062), - [anon_sym_defer] = ACTIONS(3062), - [anon_sym_goto] = ACTIONS(3062), - [anon_sym_break] = ACTIONS(3062), - [anon_sym_continue] = ACTIONS(3062), - [anon_sym_return] = ACTIONS(3062), - [anon_sym_DOLLARfor] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3062), - [anon_sym_POUND] = ACTIONS(3062), - [anon_sym_asm] = ACTIONS(3062), - [anon_sym_AT_LBRACK] = ACTIONS(3062), - [sym___double_quote] = ACTIONS(3062), - [sym___single_quote] = ACTIONS(3062), - [sym___c_double_quote] = ACTIONS(3062), - [sym___c_single_quote] = ACTIONS(3062), - [sym___r_double_quote] = ACTIONS(3062), - [sym___r_single_quote] = ACTIONS(3062), + [anon_sym_DOT] = ACTIONS(2427), + [anon_sym_as] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_COMMA] = ACTIONS(2427), + [anon_sym_const] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym___global] = ACTIONS(2427), + [anon_sym_type] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2427), + [anon_sym_fn] = ACTIONS(2427), + [anon_sym_PLUS] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2427), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_SLASH] = ACTIONS(2427), + [anon_sym_PERCENT] = ACTIONS(2427), + [anon_sym_LT] = ACTIONS(2427), + [anon_sym_GT] = ACTIONS(2427), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_LT_EQ] = ACTIONS(2427), + [anon_sym_GT_EQ] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2427), + [anon_sym_union] = ACTIONS(2427), + [anon_sym_pub] = ACTIONS(2427), + [anon_sym_mut] = ACTIONS(2427), + [anon_sym_enum] = ACTIONS(2427), + [anon_sym_interface] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_go] = ACTIONS(2427), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(2427), + [anon_sym_LBRACK2] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_CARET] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2427), + [anon_sym_LT_DASH] = ACTIONS(2427), + [anon_sym_LT_LT] = ACTIONS(2427), + [anon_sym_GT_GT] = ACTIONS(2427), + [anon_sym_GT_GT_GT] = ACTIONS(2427), + [anon_sym_AMP_CARET] = ACTIONS(2427), + [anon_sym_AMP_AMP] = ACTIONS(2427), + [anon_sym_PIPE_PIPE] = ACTIONS(2427), + [anon_sym_or] = ACTIONS(2427), + [sym_none] = ACTIONS(2427), + [sym_true] = ACTIONS(2427), + [sym_false] = ACTIONS(2427), + [sym_nil] = ACTIONS(2427), + [anon_sym_QMARK_DOT] = ACTIONS(2427), + [anon_sym_POUND_LBRACK] = ACTIONS(2427), + [anon_sym_if] = ACTIONS(2427), + [anon_sym_DOLLARif] = ACTIONS(2427), + [anon_sym_is] = ACTIONS(2427), + [anon_sym_BANGis] = ACTIONS(2427), + [anon_sym_in] = ACTIONS(2427), + [anon_sym_BANGin] = ACTIONS(2427), + [anon_sym_match] = ACTIONS(2427), + [anon_sym_select] = ACTIONS(2427), + [anon_sym_lock] = ACTIONS(2427), + [anon_sym_rlock] = ACTIONS(2427), + [anon_sym_unsafe] = ACTIONS(2427), + [anon_sym_sql] = ACTIONS(2427), + [sym_int_literal] = ACTIONS(2427), + [sym_float_literal] = ACTIONS(2427), + [sym_rune_literal] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(2427), + [anon_sym_c_SQUOTE] = ACTIONS(2427), + [anon_sym_c_DQUOTE] = ACTIONS(2427), + [anon_sym_r_SQUOTE] = ACTIONS(2427), + [anon_sym_r_DQUOTE] = ACTIONS(2427), + [sym_pseudo_compile_time_identifier] = ACTIONS(2427), + [anon_sym_shared] = ACTIONS(2427), + [anon_sym_map_LBRACK] = ACTIONS(2427), + [anon_sym_chan] = ACTIONS(2427), + [anon_sym_thread] = ACTIONS(2427), + [anon_sym_atomic] = ACTIONS(2427), + [anon_sym_assert] = ACTIONS(2427), + [anon_sym_defer] = ACTIONS(2427), + [anon_sym_goto] = ACTIONS(2427), + [anon_sym_break] = ACTIONS(2427), + [anon_sym_continue] = ACTIONS(2427), + [anon_sym_return] = ACTIONS(2427), + [anon_sym_DOLLARfor] = ACTIONS(2427), + [anon_sym_for] = ACTIONS(2427), + [anon_sym_POUND] = ACTIONS(2427), + [anon_sym_asm] = ACTIONS(2427), + [anon_sym_AT_LBRACK] = ACTIONS(2427), }, [1092] = { [sym_line_comment] = STATE(1092), [sym_block_comment] = STATE(1092), - [ts_builtin_sym_end] = ACTIONS(2726), - [sym_identifier] = ACTIONS(2728), - [anon_sym_LF] = ACTIONS(2728), - [anon_sym_CR] = ACTIONS(2728), - [anon_sym_CR_LF] = ACTIONS(2728), + [ts_builtin_sym_end] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LF] = ACTIONS(2457), + [anon_sym_CR] = ACTIONS(2457), + [anon_sym_CR_LF] = ACTIONS(2457), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2728), - [anon_sym_as] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_COMMA] = ACTIONS(2728), - [anon_sym_const] = ACTIONS(2728), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym___global] = ACTIONS(2728), - [anon_sym_type] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_fn] = ACTIONS(2728), - [anon_sym_PLUS] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2728), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2728), - [anon_sym_PERCENT] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2728), - [anon_sym_GT] = ACTIONS(2728), - [anon_sym_EQ_EQ] = ACTIONS(2728), - [anon_sym_BANG_EQ] = ACTIONS(2728), - [anon_sym_LT_EQ] = ACTIONS(2728), - [anon_sym_GT_EQ] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_struct] = ACTIONS(2728), - [anon_sym_union] = ACTIONS(2728), - [anon_sym_pub] = ACTIONS(2728), - [anon_sym_mut] = ACTIONS(2728), - [anon_sym_enum] = ACTIONS(2728), - [anon_sym_interface] = ACTIONS(2728), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_QMARK] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2728), - [anon_sym_go] = ACTIONS(2728), - [anon_sym_spawn] = ACTIONS(2728), - [anon_sym_json_DOTdecode] = ACTIONS(2728), - [anon_sym_LBRACK2] = ACTIONS(2728), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_CARET] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2728), - [anon_sym_LT_DASH] = ACTIONS(2728), - [anon_sym_LT_LT] = ACTIONS(2728), - [anon_sym_GT_GT] = ACTIONS(2728), - [anon_sym_GT_GT_GT] = ACTIONS(2728), - [anon_sym_AMP_CARET] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [anon_sym_or] = ACTIONS(2728), - [sym_none] = ACTIONS(2728), - [sym_true] = ACTIONS(2728), - [sym_false] = ACTIONS(2728), - [sym_nil] = ACTIONS(2728), - [anon_sym_QMARK_DOT] = ACTIONS(2728), - [anon_sym_POUND_LBRACK] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2728), - [anon_sym_DOLLARif] = ACTIONS(2728), - [anon_sym_is] = ACTIONS(2728), - [anon_sym_BANGis] = ACTIONS(2728), - [anon_sym_in] = ACTIONS(2728), - [anon_sym_BANGin] = ACTIONS(2728), - [anon_sym_match] = ACTIONS(2728), - [anon_sym_select] = ACTIONS(2728), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2728), - [anon_sym_sql] = ACTIONS(2728), - [sym_int_literal] = ACTIONS(2728), - [sym_float_literal] = ACTIONS(2728), - [sym_rune_literal] = ACTIONS(2728), - [sym_pseudo_compile_time_identifier] = ACTIONS(2728), - [anon_sym_shared] = ACTIONS(2728), - [anon_sym_map_LBRACK] = ACTIONS(2728), - [anon_sym_chan] = ACTIONS(2728), - [anon_sym_thread] = ACTIONS(2728), - [anon_sym_atomic] = ACTIONS(2728), - [anon_sym_assert] = ACTIONS(2728), - [anon_sym_defer] = ACTIONS(2728), - [anon_sym_goto] = ACTIONS(2728), - [anon_sym_break] = ACTIONS(2728), - [anon_sym_continue] = ACTIONS(2728), - [anon_sym_return] = ACTIONS(2728), - [anon_sym_DOLLARfor] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(2728), - [anon_sym_asm] = ACTIONS(2728), - [anon_sym_AT_LBRACK] = ACTIONS(2728), - [sym___double_quote] = ACTIONS(2728), - [sym___single_quote] = ACTIONS(2728), - [sym___c_double_quote] = ACTIONS(2728), - [sym___c_single_quote] = ACTIONS(2728), - [sym___r_double_quote] = ACTIONS(2728), - [sym___r_single_quote] = ACTIONS(2728), + [anon_sym_DOT] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_COMMA] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym___global] = ACTIONS(2457), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_SLASH] = ACTIONS(2457), + [anon_sym_PERCENT] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_GT] = ACTIONS(2457), + [anon_sym_EQ_EQ] = ACTIONS(2457), + [anon_sym_BANG_EQ] = ACTIONS(2457), + [anon_sym_LT_EQ] = ACTIONS(2457), + [anon_sym_GT_EQ] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_union] = ACTIONS(2457), + [anon_sym_pub] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), + [anon_sym_interface] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_QMARK] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_go] = ACTIONS(2457), + [anon_sym_spawn] = ACTIONS(2457), + [anon_sym_json_DOTdecode] = ACTIONS(2457), + [anon_sym_LBRACK2] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2457), + [anon_sym_LT_LT] = ACTIONS(2457), + [anon_sym_GT_GT] = ACTIONS(2457), + [anon_sym_GT_GT_GT] = ACTIONS(2457), + [anon_sym_AMP_CARET] = ACTIONS(2457), + [anon_sym_AMP_AMP] = ACTIONS(2457), + [anon_sym_PIPE_PIPE] = ACTIONS(2457), + [anon_sym_or] = ACTIONS(2457), + [sym_none] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_nil] = ACTIONS(2457), + [anon_sym_QMARK_DOT] = ACTIONS(2457), + [anon_sym_POUND_LBRACK] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_DOLLARif] = ACTIONS(2457), + [anon_sym_is] = ACTIONS(2457), + [anon_sym_BANGis] = ACTIONS(2457), + [anon_sym_in] = ACTIONS(2457), + [anon_sym_BANGin] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_select] = ACTIONS(2457), + [anon_sym_lock] = ACTIONS(2457), + [anon_sym_rlock] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(2457), + [anon_sym_sql] = ACTIONS(2457), + [sym_int_literal] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2457), + [sym_rune_literal] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [anon_sym_c_SQUOTE] = ACTIONS(2457), + [anon_sym_c_DQUOTE] = ACTIONS(2457), + [anon_sym_r_SQUOTE] = ACTIONS(2457), + [anon_sym_r_DQUOTE] = ACTIONS(2457), + [sym_pseudo_compile_time_identifier] = ACTIONS(2457), + [anon_sym_shared] = ACTIONS(2457), + [anon_sym_map_LBRACK] = ACTIONS(2457), + [anon_sym_chan] = ACTIONS(2457), + [anon_sym_thread] = ACTIONS(2457), + [anon_sym_atomic] = ACTIONS(2457), + [anon_sym_assert] = ACTIONS(2457), + [anon_sym_defer] = ACTIONS(2457), + [anon_sym_goto] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_DOLLARfor] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(2457), + [anon_sym_asm] = ACTIONS(2457), + [anon_sym_AT_LBRACK] = ACTIONS(2457), }, [1093] = { [sym_line_comment] = STATE(1093), [sym_block_comment] = STATE(1093), - [ts_builtin_sym_end] = ACTIONS(2884), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LF] = ACTIONS(2886), - [anon_sym_CR] = ACTIONS(2886), - [anon_sym_CR_LF] = ACTIONS(2886), + [ts_builtin_sym_end] = ACTIONS(2461), + [sym_identifier] = ACTIONS(2463), + [anon_sym_LF] = ACTIONS(2463), + [anon_sym_CR] = ACTIONS(2463), + [anon_sym_CR_LF] = ACTIONS(2463), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2886), - [anon_sym_const] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym___global] = ACTIONS(2886), - [anon_sym_type] = ACTIONS(2886), - [anon_sym_PIPE] = ACTIONS(2886), - [anon_sym_fn] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_SLASH] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2886), - [anon_sym_GT] = ACTIONS(2886), - [anon_sym_EQ_EQ] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2886), - [anon_sym_LT_EQ] = ACTIONS(2886), - [anon_sym_GT_EQ] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_struct] = ACTIONS(2886), - [anon_sym_union] = ACTIONS(2886), - [anon_sym_pub] = ACTIONS(2886), - [anon_sym_mut] = ACTIONS(2886), - [anon_sym_enum] = ACTIONS(2886), - [anon_sym_interface] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2886), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_go] = ACTIONS(2886), - [anon_sym_spawn] = ACTIONS(2886), - [anon_sym_json_DOTdecode] = ACTIONS(2886), - [anon_sym_LBRACK2] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2886), - [anon_sym_CARET] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_LT_LT] = ACTIONS(2886), - [anon_sym_GT_GT] = ACTIONS(2886), - [anon_sym_GT_GT_GT] = ACTIONS(2886), - [anon_sym_AMP_CARET] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_or] = ACTIONS(2886), - [sym_none] = ACTIONS(2886), - [sym_true] = ACTIONS(2886), - [sym_false] = ACTIONS(2886), - [sym_nil] = ACTIONS(2886), - [anon_sym_QMARK_DOT] = ACTIONS(2886), - [anon_sym_POUND_LBRACK] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_DOLLARif] = ACTIONS(2886), - [anon_sym_is] = ACTIONS(2886), - [anon_sym_BANGis] = ACTIONS(2886), - [anon_sym_in] = ACTIONS(2886), - [anon_sym_BANGin] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_select] = ACTIONS(2886), - [anon_sym_lock] = ACTIONS(2886), - [anon_sym_rlock] = ACTIONS(2886), - [anon_sym_unsafe] = ACTIONS(2886), - [anon_sym_sql] = ACTIONS(2886), - [sym_int_literal] = ACTIONS(2886), - [sym_float_literal] = ACTIONS(2886), - [sym_rune_literal] = ACTIONS(2886), - [sym_pseudo_compile_time_identifier] = ACTIONS(2886), - [anon_sym_shared] = ACTIONS(2886), - [anon_sym_map_LBRACK] = ACTIONS(2886), - [anon_sym_chan] = ACTIONS(2886), - [anon_sym_thread] = ACTIONS(2886), - [anon_sym_atomic] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_defer] = ACTIONS(2886), - [anon_sym_goto] = ACTIONS(2886), - [anon_sym_break] = ACTIONS(2886), - [anon_sym_continue] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_DOLLARfor] = ACTIONS(2886), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_POUND] = ACTIONS(2886), - [anon_sym_asm] = ACTIONS(2886), - [anon_sym_AT_LBRACK] = ACTIONS(2886), - [sym___double_quote] = ACTIONS(2886), - [sym___single_quote] = ACTIONS(2886), - [sym___c_double_quote] = ACTIONS(2886), - [sym___c_single_quote] = ACTIONS(2886), - [sym___r_double_quote] = ACTIONS(2886), - [sym___r_single_quote] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2463), + [anon_sym_as] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_COMMA] = ACTIONS(2463), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym___global] = ACTIONS(2463), + [anon_sym_type] = ACTIONS(2463), + [anon_sym_PIPE] = ACTIONS(2463), + [anon_sym_fn] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2463), + [anon_sym_SLASH] = ACTIONS(2463), + [anon_sym_PERCENT] = ACTIONS(2463), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_GT] = ACTIONS(2463), + [anon_sym_EQ_EQ] = ACTIONS(2463), + [anon_sym_BANG_EQ] = ACTIONS(2463), + [anon_sym_LT_EQ] = ACTIONS(2463), + [anon_sym_GT_EQ] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2461), + [anon_sym_struct] = ACTIONS(2463), + [anon_sym_union] = ACTIONS(2463), + [anon_sym_pub] = ACTIONS(2463), + [anon_sym_mut] = ACTIONS(2463), + [anon_sym_enum] = ACTIONS(2463), + [anon_sym_interface] = ACTIONS(2463), + [anon_sym_PLUS_PLUS] = ACTIONS(2463), + [anon_sym_DASH_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(2463), + [anon_sym_go] = ACTIONS(2463), + [anon_sym_spawn] = ACTIONS(2463), + [anon_sym_json_DOTdecode] = ACTIONS(2463), + [anon_sym_LBRACK2] = ACTIONS(2463), + [anon_sym_TILDE] = ACTIONS(2463), + [anon_sym_CARET] = ACTIONS(2463), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_LT_DASH] = ACTIONS(2463), + [anon_sym_LT_LT] = ACTIONS(2463), + [anon_sym_GT_GT] = ACTIONS(2463), + [anon_sym_GT_GT_GT] = ACTIONS(2463), + [anon_sym_AMP_CARET] = ACTIONS(2463), + [anon_sym_AMP_AMP] = ACTIONS(2463), + [anon_sym_PIPE_PIPE] = ACTIONS(2463), + [anon_sym_or] = ACTIONS(2463), + [sym_none] = ACTIONS(2463), + [sym_true] = ACTIONS(2463), + [sym_false] = ACTIONS(2463), + [sym_nil] = ACTIONS(2463), + [anon_sym_QMARK_DOT] = ACTIONS(2463), + [anon_sym_POUND_LBRACK] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2463), + [anon_sym_DOLLARif] = ACTIONS(2463), + [anon_sym_is] = ACTIONS(2463), + [anon_sym_BANGis] = ACTIONS(2463), + [anon_sym_in] = ACTIONS(2463), + [anon_sym_BANGin] = ACTIONS(2463), + [anon_sym_match] = ACTIONS(2463), + [anon_sym_select] = ACTIONS(2463), + [anon_sym_lock] = ACTIONS(2463), + [anon_sym_rlock] = ACTIONS(2463), + [anon_sym_unsafe] = ACTIONS(2463), + [anon_sym_sql] = ACTIONS(2463), + [sym_int_literal] = ACTIONS(2463), + [sym_float_literal] = ACTIONS(2463), + [sym_rune_literal] = ACTIONS(2463), + [anon_sym_SQUOTE] = ACTIONS(2463), + [anon_sym_DQUOTE] = ACTIONS(2463), + [anon_sym_c_SQUOTE] = ACTIONS(2463), + [anon_sym_c_DQUOTE] = ACTIONS(2463), + [anon_sym_r_SQUOTE] = ACTIONS(2463), + [anon_sym_r_DQUOTE] = ACTIONS(2463), + [sym_pseudo_compile_time_identifier] = ACTIONS(2463), + [anon_sym_shared] = ACTIONS(2463), + [anon_sym_map_LBRACK] = ACTIONS(2463), + [anon_sym_chan] = ACTIONS(2463), + [anon_sym_thread] = ACTIONS(2463), + [anon_sym_atomic] = ACTIONS(2463), + [anon_sym_assert] = ACTIONS(2463), + [anon_sym_defer] = ACTIONS(2463), + [anon_sym_goto] = ACTIONS(2463), + [anon_sym_break] = ACTIONS(2463), + [anon_sym_continue] = ACTIONS(2463), + [anon_sym_return] = ACTIONS(2463), + [anon_sym_DOLLARfor] = ACTIONS(2463), + [anon_sym_for] = ACTIONS(2463), + [anon_sym_POUND] = ACTIONS(2463), + [anon_sym_asm] = ACTIONS(2463), + [anon_sym_AT_LBRACK] = ACTIONS(2463), }, [1094] = { [sym_line_comment] = STATE(1094), [sym_block_comment] = STATE(1094), - [ts_builtin_sym_end] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LF] = ACTIONS(2910), - [anon_sym_CR] = ACTIONS(2910), - [anon_sym_CR_LF] = ACTIONS(2910), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LF] = ACTIONS(2475), + [anon_sym_CR] = ACTIONS(2475), + [anon_sym_CR_LF] = ACTIONS(2475), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2910), - [anon_sym_as] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_const] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2910), - [anon_sym___global] = ACTIONS(2910), - [anon_sym_type] = ACTIONS(2910), - [anon_sym_PIPE] = ACTIONS(2910), - [anon_sym_fn] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_PERCENT] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_GT] = ACTIONS(2910), - [anon_sym_EQ_EQ] = ACTIONS(2910), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_LT_EQ] = ACTIONS(2910), - [anon_sym_GT_EQ] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_struct] = ACTIONS(2910), - [anon_sym_union] = ACTIONS(2910), - [anon_sym_pub] = ACTIONS(2910), - [anon_sym_mut] = ACTIONS(2910), - [anon_sym_enum] = ACTIONS(2910), - [anon_sym_interface] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_QMARK] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_go] = ACTIONS(2910), - [anon_sym_spawn] = ACTIONS(2910), - [anon_sym_json_DOTdecode] = ACTIONS(2910), - [anon_sym_LBRACK2] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_CARET] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_LT_DASH] = ACTIONS(2910), - [anon_sym_LT_LT] = ACTIONS(2910), - [anon_sym_GT_GT] = ACTIONS(2910), - [anon_sym_GT_GT_GT] = ACTIONS(2910), - [anon_sym_AMP_CARET] = ACTIONS(2910), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_PIPE_PIPE] = ACTIONS(2910), - [anon_sym_or] = ACTIONS(2910), - [sym_none] = ACTIONS(2910), - [sym_true] = ACTIONS(2910), - [sym_false] = ACTIONS(2910), - [sym_nil] = ACTIONS(2910), - [anon_sym_QMARK_DOT] = ACTIONS(2910), - [anon_sym_POUND_LBRACK] = ACTIONS(2910), - [anon_sym_if] = ACTIONS(2910), - [anon_sym_DOLLARif] = ACTIONS(2910), - [anon_sym_is] = ACTIONS(2910), - [anon_sym_BANGis] = ACTIONS(2910), - [anon_sym_in] = ACTIONS(2910), - [anon_sym_BANGin] = ACTIONS(2910), - [anon_sym_match] = ACTIONS(2910), - [anon_sym_select] = ACTIONS(2910), - [anon_sym_lock] = ACTIONS(2910), - [anon_sym_rlock] = ACTIONS(2910), - [anon_sym_unsafe] = ACTIONS(2910), - [anon_sym_sql] = ACTIONS(2910), - [sym_int_literal] = ACTIONS(2910), - [sym_float_literal] = ACTIONS(2910), - [sym_rune_literal] = ACTIONS(2910), - [sym_pseudo_compile_time_identifier] = ACTIONS(2910), - [anon_sym_shared] = ACTIONS(2910), - [anon_sym_map_LBRACK] = ACTIONS(2910), - [anon_sym_chan] = ACTIONS(2910), - [anon_sym_thread] = ACTIONS(2910), - [anon_sym_atomic] = ACTIONS(2910), - [anon_sym_assert] = ACTIONS(2910), - [anon_sym_defer] = ACTIONS(2910), - [anon_sym_goto] = ACTIONS(2910), - [anon_sym_break] = ACTIONS(2910), - [anon_sym_continue] = ACTIONS(2910), - [anon_sym_return] = ACTIONS(2910), - [anon_sym_DOLLARfor] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2910), - [anon_sym_POUND] = ACTIONS(2910), - [anon_sym_asm] = ACTIONS(2910), - [anon_sym_AT_LBRACK] = ACTIONS(2910), - [sym___double_quote] = ACTIONS(2910), - [sym___single_quote] = ACTIONS(2910), - [sym___c_double_quote] = ACTIONS(2910), - [sym___c_single_quote] = ACTIONS(2910), - [sym___r_double_quote] = ACTIONS(2910), - [sym___r_single_quote] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2475), + [anon_sym_as] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_COMMA] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym___global] = ACTIONS(2475), + [anon_sym_type] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_SLASH] = ACTIONS(2475), + [anon_sym_PERCENT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_EQ_EQ] = ACTIONS(2475), + [anon_sym_BANG_EQ] = ACTIONS(2475), + [anon_sym_LT_EQ] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_union] = ACTIONS(2475), + [anon_sym_pub] = ACTIONS(2475), + [anon_sym_mut] = ACTIONS(2475), + [anon_sym_enum] = ACTIONS(2475), + [anon_sym_interface] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [anon_sym_QMARK] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_go] = ACTIONS(2475), + [anon_sym_spawn] = ACTIONS(2475), + [anon_sym_json_DOTdecode] = ACTIONS(2475), + [anon_sym_LBRACK2] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_LT_DASH] = ACTIONS(2475), + [anon_sym_LT_LT] = ACTIONS(2475), + [anon_sym_GT_GT] = ACTIONS(2475), + [anon_sym_GT_GT_GT] = ACTIONS(2475), + [anon_sym_AMP_CARET] = ACTIONS(2475), + [anon_sym_AMP_AMP] = ACTIONS(2475), + [anon_sym_PIPE_PIPE] = ACTIONS(2475), + [anon_sym_or] = ACTIONS(2475), + [sym_none] = ACTIONS(2475), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_nil] = ACTIONS(2475), + [anon_sym_QMARK_DOT] = ACTIONS(2475), + [anon_sym_POUND_LBRACK] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_DOLLARif] = ACTIONS(2475), + [anon_sym_is] = ACTIONS(2475), + [anon_sym_BANGis] = ACTIONS(2475), + [anon_sym_in] = ACTIONS(2475), + [anon_sym_BANGin] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_lock] = ACTIONS(2475), + [anon_sym_rlock] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_sql] = ACTIONS(2475), + [sym_int_literal] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2475), + [sym_rune_literal] = ACTIONS(2475), + [anon_sym_SQUOTE] = ACTIONS(2475), + [anon_sym_DQUOTE] = ACTIONS(2475), + [anon_sym_c_SQUOTE] = ACTIONS(2475), + [anon_sym_c_DQUOTE] = ACTIONS(2475), + [anon_sym_r_SQUOTE] = ACTIONS(2475), + [anon_sym_r_DQUOTE] = ACTIONS(2475), + [sym_pseudo_compile_time_identifier] = ACTIONS(2475), + [anon_sym_shared] = ACTIONS(2475), + [anon_sym_map_LBRACK] = ACTIONS(2475), + [anon_sym_chan] = ACTIONS(2475), + [anon_sym_thread] = ACTIONS(2475), + [anon_sym_atomic] = ACTIONS(2475), + [anon_sym_assert] = ACTIONS(2475), + [anon_sym_defer] = ACTIONS(2475), + [anon_sym_goto] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_DOLLARfor] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_POUND] = ACTIONS(2475), + [anon_sym_asm] = ACTIONS(2475), + [anon_sym_AT_LBRACK] = ACTIONS(2475), }, [1095] = { [sym_line_comment] = STATE(1095), [sym_block_comment] = STATE(1095), - [ts_builtin_sym_end] = ACTIONS(3048), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LF] = ACTIONS(3050), - [anon_sym_CR] = ACTIONS(3050), - [anon_sym_CR_LF] = ACTIONS(3050), + [ts_builtin_sym_end] = ACTIONS(2705), + [sym_identifier] = ACTIONS(2707), + [anon_sym_LF] = ACTIONS(2707), + [anon_sym_CR] = ACTIONS(2707), + [anon_sym_CR_LF] = ACTIONS(2707), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3050), - [anon_sym_as] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3050), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_const] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3050), - [anon_sym___global] = ACTIONS(3050), - [anon_sym_type] = ACTIONS(3050), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_fn] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_EQ_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_LT_EQ] = ACTIONS(3050), - [anon_sym_GT_EQ] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_struct] = ACTIONS(3050), - [anon_sym_union] = ACTIONS(3050), - [anon_sym_pub] = ACTIONS(3050), - [anon_sym_mut] = ACTIONS(3050), - [anon_sym_enum] = ACTIONS(3050), - [anon_sym_interface] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3050), - [anon_sym_DASH_DASH] = ACTIONS(3050), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3050), - [anon_sym_go] = ACTIONS(3050), - [anon_sym_spawn] = ACTIONS(3050), - [anon_sym_json_DOTdecode] = ACTIONS(3050), - [anon_sym_LBRACK2] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3050), - [anon_sym_CARET] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3050), - [anon_sym_LT_DASH] = ACTIONS(3050), - [anon_sym_LT_LT] = ACTIONS(3050), - [anon_sym_GT_GT] = ACTIONS(3050), - [anon_sym_GT_GT_GT] = ACTIONS(3050), - [anon_sym_AMP_CARET] = ACTIONS(3050), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3050), - [sym_none] = ACTIONS(3050), - [sym_true] = ACTIONS(3050), - [sym_false] = ACTIONS(3050), - [sym_nil] = ACTIONS(3050), - [anon_sym_QMARK_DOT] = ACTIONS(3050), - [anon_sym_POUND_LBRACK] = ACTIONS(3050), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_DOLLARif] = ACTIONS(3050), - [anon_sym_is] = ACTIONS(3050), - [anon_sym_BANGis] = ACTIONS(3050), - [anon_sym_in] = ACTIONS(3050), - [anon_sym_BANGin] = ACTIONS(3050), - [anon_sym_match] = ACTIONS(3050), - [anon_sym_select] = ACTIONS(3050), - [anon_sym_lock] = ACTIONS(3050), - [anon_sym_rlock] = ACTIONS(3050), - [anon_sym_unsafe] = ACTIONS(3050), - [anon_sym_sql] = ACTIONS(3050), - [sym_int_literal] = ACTIONS(3050), - [sym_float_literal] = ACTIONS(3050), - [sym_rune_literal] = ACTIONS(3050), - [sym_pseudo_compile_time_identifier] = ACTIONS(3050), - [anon_sym_shared] = ACTIONS(3050), - [anon_sym_map_LBRACK] = ACTIONS(3050), - [anon_sym_chan] = ACTIONS(3050), - [anon_sym_thread] = ACTIONS(3050), - [anon_sym_atomic] = ACTIONS(3050), - [anon_sym_assert] = ACTIONS(3050), - [anon_sym_defer] = ACTIONS(3050), - [anon_sym_goto] = ACTIONS(3050), - [anon_sym_break] = ACTIONS(3050), - [anon_sym_continue] = ACTIONS(3050), - [anon_sym_return] = ACTIONS(3050), - [anon_sym_DOLLARfor] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3050), - [anon_sym_POUND] = ACTIONS(3050), - [anon_sym_asm] = ACTIONS(3050), - [anon_sym_AT_LBRACK] = ACTIONS(3050), - [sym___double_quote] = ACTIONS(3050), - [sym___single_quote] = ACTIONS(3050), - [sym___c_double_quote] = ACTIONS(3050), - [sym___c_single_quote] = ACTIONS(3050), - [sym___r_double_quote] = ACTIONS(3050), - [sym___r_single_quote] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(2707), + [anon_sym_as] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_COMMA] = ACTIONS(2707), + [anon_sym_const] = ACTIONS(2707), + [anon_sym_LPAREN] = ACTIONS(2707), + [anon_sym___global] = ACTIONS(2707), + [anon_sym_type] = ACTIONS(2707), + [anon_sym_PIPE] = ACTIONS(2707), + [anon_sym_fn] = ACTIONS(2707), + [anon_sym_PLUS] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2707), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_SLASH] = ACTIONS(2707), + [anon_sym_PERCENT] = ACTIONS(2707), + [anon_sym_LT] = ACTIONS(2707), + [anon_sym_GT] = ACTIONS(2707), + [anon_sym_EQ_EQ] = ACTIONS(2707), + [anon_sym_BANG_EQ] = ACTIONS(2707), + [anon_sym_LT_EQ] = ACTIONS(2707), + [anon_sym_GT_EQ] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2707), + [anon_sym_union] = ACTIONS(2707), + [anon_sym_pub] = ACTIONS(2707), + [anon_sym_mut] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2707), + [anon_sym_interface] = ACTIONS(2707), + [anon_sym_PLUS_PLUS] = ACTIONS(2707), + [anon_sym_DASH_DASH] = ACTIONS(2707), + [anon_sym_QMARK] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_go] = ACTIONS(2707), + [anon_sym_spawn] = ACTIONS(2707), + [anon_sym_json_DOTdecode] = ACTIONS(2707), + [anon_sym_LBRACK2] = ACTIONS(2707), + [anon_sym_TILDE] = ACTIONS(2707), + [anon_sym_CARET] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2707), + [anon_sym_LT_DASH] = ACTIONS(2707), + [anon_sym_LT_LT] = ACTIONS(2707), + [anon_sym_GT_GT] = ACTIONS(2707), + [anon_sym_GT_GT_GT] = ACTIONS(2707), + [anon_sym_AMP_CARET] = ACTIONS(2707), + [anon_sym_AMP_AMP] = ACTIONS(2707), + [anon_sym_PIPE_PIPE] = ACTIONS(2707), + [anon_sym_or] = ACTIONS(2707), + [sym_none] = ACTIONS(2707), + [sym_true] = ACTIONS(2707), + [sym_false] = ACTIONS(2707), + [sym_nil] = ACTIONS(2707), + [anon_sym_QMARK_DOT] = ACTIONS(2707), + [anon_sym_POUND_LBRACK] = ACTIONS(2707), + [anon_sym_if] = ACTIONS(2707), + [anon_sym_DOLLARif] = ACTIONS(2707), + [anon_sym_is] = ACTIONS(2707), + [anon_sym_BANGis] = ACTIONS(2707), + [anon_sym_in] = ACTIONS(2707), + [anon_sym_BANGin] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(2707), + [anon_sym_select] = ACTIONS(2707), + [anon_sym_lock] = ACTIONS(2707), + [anon_sym_rlock] = ACTIONS(2707), + [anon_sym_unsafe] = ACTIONS(2707), + [anon_sym_sql] = ACTIONS(2707), + [sym_int_literal] = ACTIONS(2707), + [sym_float_literal] = ACTIONS(2707), + [sym_rune_literal] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2707), + [anon_sym_c_SQUOTE] = ACTIONS(2707), + [anon_sym_c_DQUOTE] = ACTIONS(2707), + [anon_sym_r_SQUOTE] = ACTIONS(2707), + [anon_sym_r_DQUOTE] = ACTIONS(2707), + [sym_pseudo_compile_time_identifier] = ACTIONS(2707), + [anon_sym_shared] = ACTIONS(2707), + [anon_sym_map_LBRACK] = ACTIONS(2707), + [anon_sym_chan] = ACTIONS(2707), + [anon_sym_thread] = ACTIONS(2707), + [anon_sym_atomic] = ACTIONS(2707), + [anon_sym_assert] = ACTIONS(2707), + [anon_sym_defer] = ACTIONS(2707), + [anon_sym_goto] = ACTIONS(2707), + [anon_sym_break] = ACTIONS(2707), + [anon_sym_continue] = ACTIONS(2707), + [anon_sym_return] = ACTIONS(2707), + [anon_sym_DOLLARfor] = ACTIONS(2707), + [anon_sym_for] = ACTIONS(2707), + [anon_sym_POUND] = ACTIONS(2707), + [anon_sym_asm] = ACTIONS(2707), + [anon_sym_AT_LBRACK] = ACTIONS(2707), }, [1096] = { [sym_line_comment] = STATE(1096), [sym_block_comment] = STATE(1096), - [ts_builtin_sym_end] = ACTIONS(1989), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LF] = ACTIONS(1987), - [anon_sym_CR] = ACTIONS(1987), - [anon_sym_CR_LF] = ACTIONS(1987), + [ts_builtin_sym_end] = ACTIONS(2819), + [sym_identifier] = ACTIONS(2821), + [anon_sym_LF] = ACTIONS(2821), + [anon_sym_CR] = ACTIONS(2821), + [anon_sym_CR_LF] = ACTIONS(2821), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1987), - [anon_sym_as] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_COMMA] = ACTIONS(1987), - [anon_sym_const] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym___global] = ACTIONS(1987), - [anon_sym_type] = ACTIONS(1987), - [anon_sym_PIPE] = ACTIONS(1987), - [anon_sym_fn] = ACTIONS(1987), - [anon_sym_PLUS] = ACTIONS(1987), - [anon_sym_DASH] = ACTIONS(1987), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_SLASH] = ACTIONS(1987), - [anon_sym_PERCENT] = ACTIONS(1987), - [anon_sym_LT] = ACTIONS(1987), - [anon_sym_GT] = ACTIONS(1987), - [anon_sym_EQ_EQ] = ACTIONS(1987), - [anon_sym_BANG_EQ] = ACTIONS(1987), - [anon_sym_LT_EQ] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_struct] = ACTIONS(1987), - [anon_sym_union] = ACTIONS(1987), - [anon_sym_pub] = ACTIONS(1987), - [anon_sym_mut] = ACTIONS(1987), - [anon_sym_enum] = ACTIONS(1987), - [anon_sym_interface] = ACTIONS(1987), - [anon_sym_PLUS_PLUS] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1987), - [anon_sym_QMARK] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1987), - [anon_sym_go] = ACTIONS(1987), - [anon_sym_spawn] = ACTIONS(1987), - [anon_sym_json_DOTdecode] = ACTIONS(1987), - [anon_sym_LBRACK2] = ACTIONS(1987), - [anon_sym_TILDE] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1987), - [anon_sym_AMP] = ACTIONS(1987), - [anon_sym_LT_DASH] = ACTIONS(1987), - [anon_sym_LT_LT] = ACTIONS(1987), - [anon_sym_GT_GT] = ACTIONS(1987), - [anon_sym_GT_GT_GT] = ACTIONS(1987), - [anon_sym_AMP_CARET] = ACTIONS(1987), - [anon_sym_AMP_AMP] = ACTIONS(1987), - [anon_sym_PIPE_PIPE] = ACTIONS(1987), - [anon_sym_or] = ACTIONS(1987), - [sym_none] = ACTIONS(1987), - [sym_true] = ACTIONS(1987), - [sym_false] = ACTIONS(1987), - [sym_nil] = ACTIONS(1987), - [anon_sym_QMARK_DOT] = ACTIONS(1987), - [anon_sym_POUND_LBRACK] = ACTIONS(1987), - [anon_sym_if] = ACTIONS(1987), - [anon_sym_DOLLARif] = ACTIONS(1987), - [anon_sym_is] = ACTIONS(1987), - [anon_sym_BANGis] = ACTIONS(1987), - [anon_sym_in] = ACTIONS(1987), - [anon_sym_BANGin] = ACTIONS(1987), - [anon_sym_match] = ACTIONS(1987), - [anon_sym_select] = ACTIONS(1987), - [anon_sym_lock] = ACTIONS(1987), - [anon_sym_rlock] = ACTIONS(1987), - [anon_sym_unsafe] = ACTIONS(1987), - [anon_sym_sql] = ACTIONS(1987), - [sym_int_literal] = ACTIONS(1987), - [sym_float_literal] = ACTIONS(1987), - [sym_rune_literal] = ACTIONS(1987), - [sym_pseudo_compile_time_identifier] = ACTIONS(1987), - [anon_sym_shared] = ACTIONS(1987), - [anon_sym_map_LBRACK] = ACTIONS(1987), - [anon_sym_chan] = ACTIONS(1987), - [anon_sym_thread] = ACTIONS(1987), - [anon_sym_atomic] = ACTIONS(1987), - [anon_sym_assert] = ACTIONS(1987), - [anon_sym_defer] = ACTIONS(1987), - [anon_sym_goto] = ACTIONS(1987), - [anon_sym_break] = ACTIONS(1987), - [anon_sym_continue] = ACTIONS(1987), - [anon_sym_return] = ACTIONS(1987), - [anon_sym_DOLLARfor] = ACTIONS(1987), - [anon_sym_for] = ACTIONS(1987), - [anon_sym_POUND] = ACTIONS(1987), - [anon_sym_asm] = ACTIONS(1987), - [anon_sym_AT_LBRACK] = ACTIONS(1987), - [sym___double_quote] = ACTIONS(1987), - [sym___single_quote] = ACTIONS(1987), - [sym___c_double_quote] = ACTIONS(1987), - [sym___c_single_quote] = ACTIONS(1987), - [sym___r_double_quote] = ACTIONS(1987), - [sym___r_single_quote] = ACTIONS(1987), + [anon_sym_DOT] = ACTIONS(2821), + [anon_sym_as] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_COMMA] = ACTIONS(2821), + [anon_sym_const] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(2821), + [anon_sym___global] = ACTIONS(2821), + [anon_sym_type] = ACTIONS(2821), + [anon_sym_PIPE] = ACTIONS(2821), + [anon_sym_fn] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_SLASH] = ACTIONS(2821), + [anon_sym_PERCENT] = ACTIONS(2821), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(2821), + [anon_sym_EQ_EQ] = ACTIONS(2821), + [anon_sym_BANG_EQ] = ACTIONS(2821), + [anon_sym_LT_EQ] = ACTIONS(2821), + [anon_sym_GT_EQ] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2821), + [anon_sym_union] = ACTIONS(2821), + [anon_sym_pub] = ACTIONS(2821), + [anon_sym_mut] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2821), + [anon_sym_interface] = ACTIONS(2821), + [anon_sym_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_DASH_DASH] = ACTIONS(2821), + [anon_sym_QMARK] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_go] = ACTIONS(2821), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(2821), + [anon_sym_LBRACK2] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_CARET] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_LT_DASH] = ACTIONS(2821), + [anon_sym_LT_LT] = ACTIONS(2821), + [anon_sym_GT_GT] = ACTIONS(2821), + [anon_sym_GT_GT_GT] = ACTIONS(2821), + [anon_sym_AMP_CARET] = ACTIONS(2821), + [anon_sym_AMP_AMP] = ACTIONS(2821), + [anon_sym_PIPE_PIPE] = ACTIONS(2821), + [anon_sym_or] = ACTIONS(2821), + [sym_none] = ACTIONS(2821), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_nil] = ACTIONS(2821), + [anon_sym_QMARK_DOT] = ACTIONS(2821), + [anon_sym_POUND_LBRACK] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_DOLLARif] = ACTIONS(2821), + [anon_sym_is] = ACTIONS(2821), + [anon_sym_BANGis] = ACTIONS(2821), + [anon_sym_in] = ACTIONS(2821), + [anon_sym_BANGin] = ACTIONS(2821), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2821), + [anon_sym_lock] = ACTIONS(2821), + [anon_sym_rlock] = ACTIONS(2821), + [anon_sym_unsafe] = ACTIONS(2821), + [anon_sym_sql] = ACTIONS(2821), + [sym_int_literal] = ACTIONS(2821), + [sym_float_literal] = ACTIONS(2821), + [sym_rune_literal] = ACTIONS(2821), + [anon_sym_SQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [anon_sym_c_SQUOTE] = ACTIONS(2821), + [anon_sym_c_DQUOTE] = ACTIONS(2821), + [anon_sym_r_SQUOTE] = ACTIONS(2821), + [anon_sym_r_DQUOTE] = ACTIONS(2821), + [sym_pseudo_compile_time_identifier] = ACTIONS(2821), + [anon_sym_shared] = ACTIONS(2821), + [anon_sym_map_LBRACK] = ACTIONS(2821), + [anon_sym_chan] = ACTIONS(2821), + [anon_sym_thread] = ACTIONS(2821), + [anon_sym_atomic] = ACTIONS(2821), + [anon_sym_assert] = ACTIONS(2821), + [anon_sym_defer] = ACTIONS(2821), + [anon_sym_goto] = ACTIONS(2821), + [anon_sym_break] = ACTIONS(2821), + [anon_sym_continue] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2821), + [anon_sym_DOLLARfor] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2821), + [anon_sym_POUND] = ACTIONS(2821), + [anon_sym_asm] = ACTIONS(2821), + [anon_sym_AT_LBRACK] = ACTIONS(2821), }, [1097] = { [sym_line_comment] = STATE(1097), [sym_block_comment] = STATE(1097), - [ts_builtin_sym_end] = ACTIONS(2796), - [sym_identifier] = ACTIONS(2798), - [anon_sym_LF] = ACTIONS(2798), - [anon_sym_CR] = ACTIONS(2798), - [anon_sym_CR_LF] = ACTIONS(2798), + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2833), + [anon_sym_CR] = ACTIONS(2833), + [anon_sym_CR_LF] = ACTIONS(2833), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_as] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2798), - [anon_sym_const] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym___global] = ACTIONS(2798), - [anon_sym_type] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_fn] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2798), - [anon_sym_SLASH] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_GT] = ACTIONS(2798), - [anon_sym_EQ_EQ] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2798), - [anon_sym_LT_EQ] = ACTIONS(2798), - [anon_sym_GT_EQ] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2796), - [anon_sym_struct] = ACTIONS(2798), - [anon_sym_union] = ACTIONS(2798), - [anon_sym_pub] = ACTIONS(2798), - [anon_sym_mut] = ACTIONS(2798), - [anon_sym_enum] = ACTIONS(2798), - [anon_sym_interface] = ACTIONS(2798), - [anon_sym_PLUS_PLUS] = ACTIONS(2798), - [anon_sym_DASH_DASH] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2798), - [anon_sym_go] = ACTIONS(2798), - [anon_sym_spawn] = ACTIONS(2798), - [anon_sym_json_DOTdecode] = ACTIONS(2798), - [anon_sym_LBRACK2] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2798), - [anon_sym_CARET] = ACTIONS(2798), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_LT_LT] = ACTIONS(2798), - [anon_sym_GT_GT] = ACTIONS(2798), - [anon_sym_GT_GT_GT] = ACTIONS(2798), - [anon_sym_AMP_CARET] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_or] = ACTIONS(2798), - [sym_none] = ACTIONS(2798), - [sym_true] = ACTIONS(2798), - [sym_false] = ACTIONS(2798), - [sym_nil] = ACTIONS(2798), - [anon_sym_QMARK_DOT] = ACTIONS(2798), - [anon_sym_POUND_LBRACK] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_DOLLARif] = ACTIONS(2798), - [anon_sym_is] = ACTIONS(2798), - [anon_sym_BANGis] = ACTIONS(2798), - [anon_sym_in] = ACTIONS(2798), - [anon_sym_BANGin] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_select] = ACTIONS(2798), - [anon_sym_lock] = ACTIONS(2798), - [anon_sym_rlock] = ACTIONS(2798), - [anon_sym_unsafe] = ACTIONS(2798), - [anon_sym_sql] = ACTIONS(2798), - [sym_int_literal] = ACTIONS(2798), - [sym_float_literal] = ACTIONS(2798), - [sym_rune_literal] = ACTIONS(2798), - [sym_pseudo_compile_time_identifier] = ACTIONS(2798), - [anon_sym_shared] = ACTIONS(2798), - [anon_sym_map_LBRACK] = ACTIONS(2798), - [anon_sym_chan] = ACTIONS(2798), - [anon_sym_thread] = ACTIONS(2798), - [anon_sym_atomic] = ACTIONS(2798), - [anon_sym_assert] = ACTIONS(2798), - [anon_sym_defer] = ACTIONS(2798), - [anon_sym_goto] = ACTIONS(2798), - [anon_sym_break] = ACTIONS(2798), - [anon_sym_continue] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_DOLLARfor] = ACTIONS(2798), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_POUND] = ACTIONS(2798), - [anon_sym_asm] = ACTIONS(2798), - [anon_sym_AT_LBRACK] = ACTIONS(2798), - [sym___double_quote] = ACTIONS(2798), - [sym___single_quote] = ACTIONS(2798), - [sym___c_double_quote] = ACTIONS(2798), - [sym___c_single_quote] = ACTIONS(2798), - [sym___r_double_quote] = ACTIONS(2798), - [sym___r_single_quote] = ACTIONS(2798), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym___global] = ACTIONS(2833), + [anon_sym_type] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_pub] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_interface] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2833), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_CARET] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2833), + [anon_sym_POUND_LBRACK] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2833), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), + [sym_rune_literal] = ACTIONS(2833), + [anon_sym_SQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_c_SQUOTE] = ACTIONS(2833), + [anon_sym_c_DQUOTE] = ACTIONS(2833), + [anon_sym_r_SQUOTE] = ACTIONS(2833), + [anon_sym_r_DQUOTE] = ACTIONS(2833), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2833), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_defer] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_DOLLARfor] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_POUND] = ACTIONS(2833), + [anon_sym_asm] = ACTIONS(2833), + [anon_sym_AT_LBRACK] = ACTIONS(2833), }, [1098] = { [sym_line_comment] = STATE(1098), [sym_block_comment] = STATE(1098), - [sym_reference_expression] = STATE(4496), - [sym_type_reference_expression] = STATE(1401), - [sym_plain_type] = STATE(1472), - [sym__plain_type_without_special] = STATE(1444), - [sym_anon_struct_type] = STATE(1445), - [sym_multi_return_type] = STATE(1444), - [sym_result_type] = STATE(1444), - [sym_option_type] = STATE(1444), - [sym_qualified_type] = STATE(1401), - [sym_fixed_array_type] = STATE(1445), - [sym_array_type] = STATE(1445), - [sym_pointer_type] = STATE(1445), - [sym_wrong_pointer_type] = STATE(1445), - [sym_map_type] = STATE(1445), - [sym_channel_type] = STATE(1445), - [sym_shared_type] = STATE(1445), - [sym_thread_type] = STATE(1445), - [sym_atomic_type] = STATE(1445), - [sym_generic_type] = STATE(1445), - [sym_function_type] = STATE(1445), - [ts_builtin_sym_end] = ACTIONS(621), - [sym_identifier] = ACTIONS(3602), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), + [sym_reference_expression] = STATE(4472), + [sym_type_reference_expression] = STATE(1404), + [sym_plain_type] = STATE(1444), + [sym__plain_type_without_special] = STATE(1437), + [sym_anon_struct_type] = STATE(1440), + [sym_multi_return_type] = STATE(1437), + [sym_result_type] = STATE(1437), + [sym_option_type] = STATE(1437), + [sym_qualified_type] = STATE(1404), + [sym_fixed_array_type] = STATE(1440), + [sym_array_type] = STATE(1440), + [sym_pointer_type] = STATE(1440), + [sym_wrong_pointer_type] = STATE(1440), + [sym_map_type] = STATE(1440), + [sym_channel_type] = STATE(1440), + [sym_shared_type] = STATE(1440), + [sym_thread_type] = STATE(1440), + [sym_atomic_type] = STATE(1440), + [sym_generic_type] = STATE(1440), + [sym_function_type] = STATE(1440), + [ts_builtin_sym_end] = ACTIONS(599), + [sym_identifier] = ACTIONS(3606), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(623), - [anon_sym_const] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(3604), - [anon_sym___global] = ACTIONS(623), - [anon_sym_type] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(3606), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(3608), - [anon_sym_struct] = ACTIONS(3610), - [anon_sym_union] = ACTIONS(623), - [anon_sym_pub] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(623), - [anon_sym_enum] = ACTIONS(623), - [anon_sym_interface] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3614), - [anon_sym_go] = ACTIONS(623), - [anon_sym_spawn] = ACTIONS(623), - [anon_sym_json_DOTdecode] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(623), - [sym_none] = ACTIONS(623), - [sym_true] = ACTIONS(623), - [sym_false] = ACTIONS(623), - [sym_nil] = ACTIONS(623), - [anon_sym_if] = ACTIONS(623), - [anon_sym_DOLLARif] = ACTIONS(623), - [anon_sym_match] = ACTIONS(623), - [anon_sym_select] = ACTIONS(623), - [anon_sym_lock] = ACTIONS(623), - [anon_sym_rlock] = ACTIONS(623), - [anon_sym_unsafe] = ACTIONS(623), - [anon_sym_sql] = ACTIONS(623), - [sym_int_literal] = ACTIONS(623), - [sym_float_literal] = ACTIONS(623), - [sym_rune_literal] = ACTIONS(623), - [sym_pseudo_compile_time_identifier] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(3620), - [anon_sym_map_LBRACK] = ACTIONS(3622), - [anon_sym_chan] = ACTIONS(3624), - [anon_sym_thread] = ACTIONS(3626), - [anon_sym_atomic] = ACTIONS(3628), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_defer] = ACTIONS(623), - [anon_sym_goto] = ACTIONS(623), - [anon_sym_break] = ACTIONS(623), - [anon_sym_continue] = ACTIONS(623), - [anon_sym_return] = ACTIONS(623), - [anon_sym_DOLLARfor] = ACTIONS(623), - [anon_sym_for] = ACTIONS(623), - [anon_sym_POUND] = ACTIONS(623), - [anon_sym_asm] = ACTIONS(623), - [anon_sym_AT_LBRACK] = ACTIONS(623), - [sym___double_quote] = ACTIONS(623), - [sym___single_quote] = ACTIONS(623), - [sym___c_double_quote] = ACTIONS(623), - [sym___c_single_quote] = ACTIONS(623), - [sym___r_double_quote] = ACTIONS(623), - [sym___r_single_quote] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(601), + [anon_sym_const] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym___global] = ACTIONS(601), + [anon_sym_type] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), + [anon_sym_union] = ACTIONS(601), + [anon_sym_pub] = ACTIONS(601), + [anon_sym_mut] = ACTIONS(601), + [anon_sym_enum] = ACTIONS(601), + [anon_sym_interface] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_go] = ACTIONS(601), + [anon_sym_spawn] = ACTIONS(601), + [anon_sym_json_DOTdecode] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_LT_DASH] = ACTIONS(601), + [sym_none] = ACTIONS(601), + [sym_true] = ACTIONS(601), + [sym_false] = ACTIONS(601), + [sym_nil] = ACTIONS(601), + [anon_sym_if] = ACTIONS(601), + [anon_sym_DOLLARif] = ACTIONS(601), + [anon_sym_match] = ACTIONS(601), + [anon_sym_select] = ACTIONS(601), + [anon_sym_lock] = ACTIONS(601), + [anon_sym_rlock] = ACTIONS(601), + [anon_sym_unsafe] = ACTIONS(601), + [anon_sym_sql] = ACTIONS(601), + [sym_int_literal] = ACTIONS(601), + [sym_float_literal] = ACTIONS(601), + [sym_rune_literal] = ACTIONS(601), + [anon_sym_SQUOTE] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(601), + [anon_sym_c_SQUOTE] = ACTIONS(601), + [anon_sym_c_DQUOTE] = ACTIONS(601), + [anon_sym_r_SQUOTE] = ACTIONS(601), + [anon_sym_r_DQUOTE] = ACTIONS(601), + [sym_pseudo_compile_time_identifier] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(3624), + [anon_sym_map_LBRACK] = ACTIONS(3626), + [anon_sym_chan] = ACTIONS(3628), + [anon_sym_thread] = ACTIONS(3630), + [anon_sym_atomic] = ACTIONS(3632), + [anon_sym_assert] = ACTIONS(601), + [anon_sym_defer] = ACTIONS(601), + [anon_sym_goto] = ACTIONS(601), + [anon_sym_break] = ACTIONS(601), + [anon_sym_continue] = ACTIONS(601), + [anon_sym_return] = ACTIONS(601), + [anon_sym_DOLLARfor] = ACTIONS(601), + [anon_sym_for] = ACTIONS(601), + [anon_sym_POUND] = ACTIONS(601), + [anon_sym_asm] = ACTIONS(601), + [anon_sym_AT_LBRACK] = ACTIONS(601), }, [1099] = { [sym_line_comment] = STATE(1099), [sym_block_comment] = STATE(1099), - [sym_reference_expression] = STATE(4496), - [sym_type_reference_expression] = STATE(1401), - [sym_plain_type] = STATE(1448), - [sym__plain_type_without_special] = STATE(1444), - [sym_anon_struct_type] = STATE(1445), - [sym_multi_return_type] = STATE(1444), - [sym_result_type] = STATE(1444), - [sym_option_type] = STATE(1444), - [sym_qualified_type] = STATE(1401), - [sym_fixed_array_type] = STATE(1445), - [sym_array_type] = STATE(1445), - [sym_pointer_type] = STATE(1445), - [sym_wrong_pointer_type] = STATE(1445), - [sym_map_type] = STATE(1445), - [sym_channel_type] = STATE(1445), - [sym_shared_type] = STATE(1445), - [sym_thread_type] = STATE(1445), - [sym_atomic_type] = STATE(1445), - [sym_generic_type] = STATE(1445), - [sym_function_type] = STATE(1445), - [ts_builtin_sym_end] = ACTIONS(617), - [sym_identifier] = ACTIONS(3602), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), + [sym_reference_expression] = STATE(4472), + [sym_type_reference_expression] = STATE(1404), + [sym_plain_type] = STATE(1469), + [sym__plain_type_without_special] = STATE(1437), + [sym_anon_struct_type] = STATE(1440), + [sym_multi_return_type] = STATE(1437), + [sym_result_type] = STATE(1437), + [sym_option_type] = STATE(1437), + [sym_qualified_type] = STATE(1404), + [sym_fixed_array_type] = STATE(1440), + [sym_array_type] = STATE(1440), + [sym_pointer_type] = STATE(1440), + [sym_wrong_pointer_type] = STATE(1440), + [sym_map_type] = STATE(1440), + [sym_channel_type] = STATE(1440), + [sym_shared_type] = STATE(1440), + [sym_thread_type] = STATE(1440), + [sym_atomic_type] = STATE(1440), + [sym_generic_type] = STATE(1440), + [sym_function_type] = STATE(1440), + [ts_builtin_sym_end] = ACTIONS(563), + [sym_identifier] = ACTIONS(3606), + [anon_sym_LF] = ACTIONS(567), + [anon_sym_CR] = ACTIONS(567), + [anon_sym_CR_LF] = ACTIONS(567), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_const] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3604), - [anon_sym___global] = ACTIONS(619), - [anon_sym_type] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3606), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3608), - [anon_sym_struct] = ACTIONS(3610), - [anon_sym_union] = ACTIONS(619), - [anon_sym_pub] = ACTIONS(619), - [anon_sym_mut] = ACTIONS(619), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_interface] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3614), - [anon_sym_go] = ACTIONS(619), - [anon_sym_spawn] = ACTIONS(619), - [anon_sym_json_DOTdecode] = ACTIONS(619), - [anon_sym_LBRACK2] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(619), - [sym_none] = ACTIONS(619), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [sym_nil] = ACTIONS(619), - [anon_sym_if] = ACTIONS(619), - [anon_sym_DOLLARif] = ACTIONS(619), - [anon_sym_match] = ACTIONS(619), - [anon_sym_select] = ACTIONS(619), - [anon_sym_lock] = ACTIONS(619), - [anon_sym_rlock] = ACTIONS(619), - [anon_sym_unsafe] = ACTIONS(619), - [anon_sym_sql] = ACTIONS(619), - [sym_int_literal] = ACTIONS(619), - [sym_float_literal] = ACTIONS(619), - [sym_rune_literal] = ACTIONS(619), - [sym_pseudo_compile_time_identifier] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(3620), - [anon_sym_map_LBRACK] = ACTIONS(3622), - [anon_sym_chan] = ACTIONS(3624), - [anon_sym_thread] = ACTIONS(3626), - [anon_sym_atomic] = ACTIONS(3628), - [anon_sym_assert] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(619), - [anon_sym_goto] = ACTIONS(619), - [anon_sym_break] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(619), - [anon_sym_return] = ACTIONS(619), - [anon_sym_DOLLARfor] = ACTIONS(619), - [anon_sym_for] = ACTIONS(619), - [anon_sym_POUND] = ACTIONS(619), - [anon_sym_asm] = ACTIONS(619), - [anon_sym_AT_LBRACK] = ACTIONS(619), - [sym___double_quote] = ACTIONS(619), - [sym___single_quote] = ACTIONS(619), - [sym___c_double_quote] = ACTIONS(619), - [sym___c_single_quote] = ACTIONS(619), - [sym___r_double_quote] = ACTIONS(619), - [sym___r_single_quote] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_const] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym___global] = ACTIONS(567), + [anon_sym_type] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), + [anon_sym_union] = ACTIONS(567), + [anon_sym_pub] = ACTIONS(567), + [anon_sym_mut] = ACTIONS(567), + [anon_sym_enum] = ACTIONS(567), + [anon_sym_interface] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_go] = ACTIONS(567), + [anon_sym_spawn] = ACTIONS(567), + [anon_sym_json_DOTdecode] = ACTIONS(567), + [anon_sym_LBRACK2] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(567), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_LT_DASH] = ACTIONS(567), + [sym_none] = ACTIONS(567), + [sym_true] = ACTIONS(567), + [sym_false] = ACTIONS(567), + [sym_nil] = ACTIONS(567), + [anon_sym_if] = ACTIONS(567), + [anon_sym_DOLLARif] = ACTIONS(567), + [anon_sym_match] = ACTIONS(567), + [anon_sym_select] = ACTIONS(567), + [anon_sym_lock] = ACTIONS(567), + [anon_sym_rlock] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(567), + [anon_sym_sql] = ACTIONS(567), + [sym_int_literal] = ACTIONS(567), + [sym_float_literal] = ACTIONS(567), + [sym_rune_literal] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(567), + [anon_sym_c_SQUOTE] = ACTIONS(567), + [anon_sym_c_DQUOTE] = ACTIONS(567), + [anon_sym_r_SQUOTE] = ACTIONS(567), + [anon_sym_r_DQUOTE] = ACTIONS(567), + [sym_pseudo_compile_time_identifier] = ACTIONS(567), + [anon_sym_shared] = ACTIONS(3624), + [anon_sym_map_LBRACK] = ACTIONS(3626), + [anon_sym_chan] = ACTIONS(3628), + [anon_sym_thread] = ACTIONS(3630), + [anon_sym_atomic] = ACTIONS(3632), + [anon_sym_assert] = ACTIONS(567), + [anon_sym_defer] = ACTIONS(567), + [anon_sym_goto] = ACTIONS(567), + [anon_sym_break] = ACTIONS(567), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_return] = ACTIONS(567), + [anon_sym_DOLLARfor] = ACTIONS(567), + [anon_sym_for] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_asm] = ACTIONS(567), + [anon_sym_AT_LBRACK] = ACTIONS(567), }, [1100] = { [sym_line_comment] = STATE(1100), [sym_block_comment] = STATE(1100), - [sym_reference_expression] = STATE(4496), - [sym_type_reference_expression] = STATE(1401), - [sym_plain_type] = STATE(1467), - [sym__plain_type_without_special] = STATE(1444), - [sym_anon_struct_type] = STATE(1445), - [sym_multi_return_type] = STATE(1444), - [sym_result_type] = STATE(1444), - [sym_option_type] = STATE(1444), - [sym_qualified_type] = STATE(1401), - [sym_fixed_array_type] = STATE(1445), - [sym_array_type] = STATE(1445), - [sym_pointer_type] = STATE(1445), - [sym_wrong_pointer_type] = STATE(1445), - [sym_map_type] = STATE(1445), - [sym_channel_type] = STATE(1445), - [sym_shared_type] = STATE(1445), - [sym_thread_type] = STATE(1445), - [sym_atomic_type] = STATE(1445), - [sym_generic_type] = STATE(1445), - [sym_function_type] = STATE(1445), - [ts_builtin_sym_end] = ACTIONS(585), - [sym_identifier] = ACTIONS(3602), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), + [sym_reference_expression] = STATE(4472), + [sym_type_reference_expression] = STATE(1404), + [sym_plain_type] = STATE(1473), + [sym__plain_type_without_special] = STATE(1437), + [sym_anon_struct_type] = STATE(1440), + [sym_multi_return_type] = STATE(1437), + [sym_result_type] = STATE(1437), + [sym_option_type] = STATE(1437), + [sym_qualified_type] = STATE(1404), + [sym_fixed_array_type] = STATE(1440), + [sym_array_type] = STATE(1440), + [sym_pointer_type] = STATE(1440), + [sym_wrong_pointer_type] = STATE(1440), + [sym_map_type] = STATE(1440), + [sym_channel_type] = STATE(1440), + [sym_shared_type] = STATE(1440), + [sym_thread_type] = STATE(1440), + [sym_atomic_type] = STATE(1440), + [sym_generic_type] = STATE(1440), + [sym_function_type] = STATE(1440), + [ts_builtin_sym_end] = ACTIONS(595), + [sym_identifier] = ACTIONS(3606), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_CR] = ACTIONS(597), + [anon_sym_CR_LF] = ACTIONS(597), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_const] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3604), - [anon_sym___global] = ACTIONS(589), - [anon_sym_type] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3606), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3608), - [anon_sym_struct] = ACTIONS(3610), - [anon_sym_union] = ACTIONS(589), - [anon_sym_pub] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_enum] = ACTIONS(589), - [anon_sym_interface] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3614), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(589), - [anon_sym_LBRACK2] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(589), - [sym_rune_literal] = ACTIONS(589), - [sym_pseudo_compile_time_identifier] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3620), - [anon_sym_map_LBRACK] = ACTIONS(3622), - [anon_sym_chan] = ACTIONS(3624), - [anon_sym_thread] = ACTIONS(3626), - [anon_sym_atomic] = ACTIONS(3628), - [anon_sym_assert] = ACTIONS(589), - [anon_sym_defer] = ACTIONS(589), - [anon_sym_goto] = ACTIONS(589), - [anon_sym_break] = ACTIONS(589), - [anon_sym_continue] = ACTIONS(589), - [anon_sym_return] = ACTIONS(589), - [anon_sym_DOLLARfor] = ACTIONS(589), - [anon_sym_for] = ACTIONS(589), - [anon_sym_POUND] = ACTIONS(589), - [anon_sym_asm] = ACTIONS(589), - [anon_sym_AT_LBRACK] = ACTIONS(589), - [sym___double_quote] = ACTIONS(589), - [sym___single_quote] = ACTIONS(589), - [sym___c_double_quote] = ACTIONS(589), - [sym___c_single_quote] = ACTIONS(589), - [sym___r_double_quote] = ACTIONS(589), - [sym___r_single_quote] = ACTIONS(589), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(597), + [anon_sym_const] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym___global] = ACTIONS(597), + [anon_sym_type] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_struct] = ACTIONS(3614), + [anon_sym_union] = ACTIONS(597), + [anon_sym_pub] = ACTIONS(597), + [anon_sym_mut] = ACTIONS(597), + [anon_sym_enum] = ACTIONS(597), + [anon_sym_interface] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_go] = ACTIONS(597), + [anon_sym_spawn] = ACTIONS(597), + [anon_sym_json_DOTdecode] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_LT_DASH] = ACTIONS(597), + [sym_none] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_nil] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_match] = ACTIONS(597), + [anon_sym_select] = ACTIONS(597), + [anon_sym_lock] = ACTIONS(597), + [anon_sym_rlock] = ACTIONS(597), + [anon_sym_unsafe] = ACTIONS(597), + [anon_sym_sql] = ACTIONS(597), + [sym_int_literal] = ACTIONS(597), + [sym_float_literal] = ACTIONS(597), + [sym_rune_literal] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(597), + [anon_sym_c_SQUOTE] = ACTIONS(597), + [anon_sym_c_DQUOTE] = ACTIONS(597), + [anon_sym_r_SQUOTE] = ACTIONS(597), + [anon_sym_r_DQUOTE] = ACTIONS(597), + [sym_pseudo_compile_time_identifier] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(3624), + [anon_sym_map_LBRACK] = ACTIONS(3626), + [anon_sym_chan] = ACTIONS(3628), + [anon_sym_thread] = ACTIONS(3630), + [anon_sym_atomic] = ACTIONS(3632), + [anon_sym_assert] = ACTIONS(597), + [anon_sym_defer] = ACTIONS(597), + [anon_sym_goto] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_DOLLARfor] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_POUND] = ACTIONS(597), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_AT_LBRACK] = ACTIONS(597), }, [1101] = { [sym_line_comment] = STATE(1101), [sym_block_comment] = STATE(1101), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2345), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2311), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), [anon_sym_LF] = ACTIONS(627), [anon_sym_CR] = ACTIONS(627), [anon_sym_CR_LF] = ACTIONS(627), @@ -147665,13 +147641,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(627), [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(627), [anon_sym_RBRACE] = ACTIONS(627), [anon_sym_LPAREN] = ACTIONS(627), [anon_sym_EQ] = ACTIONS(627), [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(611), [anon_sym_PLUS] = ACTIONS(627), [anon_sym_DASH] = ACTIONS(627), [anon_sym_STAR] = ACTIONS(627), @@ -147684,7 +147660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(627), [anon_sym_GT_EQ] = ACTIONS(627), [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(615), [anon_sym_COLON] = ACTIONS(627), [anon_sym_PLUS_PLUS] = ACTIONS(627), [anon_sym_DASH_DASH] = ACTIONS(627), @@ -147720,400 +147696,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(627), [anon_sym_CARET_EQ] = ACTIONS(627), [anon_sym_COLON_EQ] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [1102] = { [sym_line_comment] = STATE(1102), [sym_block_comment] = STATE(1102), - [aux_sym_strictly_expression_list_repeat1] = STATE(1416), - [ts_builtin_sym_end] = ACTIONS(1641), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LF] = ACTIONS(1643), - [anon_sym_CR] = ACTIONS(1643), - [anon_sym_CR_LF] = ACTIONS(1643), + [sym_reference_expression] = STATE(4375), + [sym_type_reference_expression] = STATE(1659), + [sym_plain_type] = STATE(1654), + [sym__plain_type_without_special] = STATE(1658), + [sym_anon_struct_type] = STATE(1657), + [sym_multi_return_type] = STATE(1658), + [sym_result_type] = STATE(1658), + [sym_option_type] = STATE(1658), + [sym_qualified_type] = STATE(1659), + [sym_fixed_array_type] = STATE(1657), + [sym_array_type] = STATE(1657), + [sym_pointer_type] = STATE(1657), + [sym_wrong_pointer_type] = STATE(1657), + [sym_map_type] = STATE(1657), + [sym_channel_type] = STATE(1657), + [sym_shared_type] = STATE(1657), + [sym_thread_type] = STATE(1657), + [sym_atomic_type] = STATE(1657), + [sym_generic_type] = STATE(1657), + [sym_function_type] = STATE(1657), + [sym_identifier] = ACTIONS(3634), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_COMMA] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_EQ] = ACTIONS(1649), - [anon_sym___global] = ACTIONS(1643), - [anon_sym_type] = ACTIONS(1643), - [anon_sym_fn] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_struct] = ACTIONS(1643), - [anon_sym_union] = ACTIONS(1643), - [anon_sym_pub] = ACTIONS(1643), - [anon_sym_mut] = ACTIONS(1643), - [anon_sym_enum] = ACTIONS(1643), - [anon_sym_interface] = ACTIONS(1643), - [anon_sym_QMARK] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_go] = ACTIONS(1643), - [anon_sym_spawn] = ACTIONS(1643), - [anon_sym_json_DOTdecode] = ACTIONS(1643), - [anon_sym_LBRACK2] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_LT_DASH] = ACTIONS(1643), - [sym_none] = ACTIONS(1643), - [sym_true] = ACTIONS(1643), - [sym_false] = ACTIONS(1643), - [sym_nil] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_DOLLARif] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_select] = ACTIONS(1643), - [anon_sym_STAR_EQ] = ACTIONS(1649), - [anon_sym_SLASH_EQ] = ACTIONS(1649), - [anon_sym_PERCENT_EQ] = ACTIONS(1649), - [anon_sym_LT_LT_EQ] = ACTIONS(1649), - [anon_sym_GT_GT_EQ] = ACTIONS(1649), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1649), - [anon_sym_AMP_EQ] = ACTIONS(1649), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1649), - [anon_sym_PLUS_EQ] = ACTIONS(1649), - [anon_sym_DASH_EQ] = ACTIONS(1649), - [anon_sym_PIPE_EQ] = ACTIONS(1649), - [anon_sym_CARET_EQ] = ACTIONS(1649), - [anon_sym_COLON_EQ] = ACTIONS(1649), - [anon_sym_lock] = ACTIONS(1643), - [anon_sym_rlock] = ACTIONS(1643), - [anon_sym_unsafe] = ACTIONS(1643), - [anon_sym_sql] = ACTIONS(1643), - [sym_int_literal] = ACTIONS(1643), - [sym_float_literal] = ACTIONS(1643), - [sym_rune_literal] = ACTIONS(1643), - [sym_pseudo_compile_time_identifier] = ACTIONS(1643), - [anon_sym_shared] = ACTIONS(1643), - [anon_sym_map_LBRACK] = ACTIONS(1643), - [anon_sym_chan] = ACTIONS(1643), - [anon_sym_thread] = ACTIONS(1643), - [anon_sym_atomic] = ACTIONS(1643), - [anon_sym_assert] = ACTIONS(1643), - [anon_sym_defer] = ACTIONS(1643), - [anon_sym_goto] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_DOLLARfor] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(1643), - [anon_sym_asm] = ACTIONS(1643), - [anon_sym_AT_LBRACK] = ACTIONS(1643), - [sym___double_quote] = ACTIONS(1643), - [sym___single_quote] = ACTIONS(1643), - [sym___c_double_quote] = ACTIONS(1643), - [sym___c_single_quote] = ACTIONS(1643), - [sym___r_double_quote] = ACTIONS(1643), - [sym___r_single_quote] = ACTIONS(1643), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(3642), + [anon_sym_COLON] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(3644), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_LBRACK2] = ACTIONS(3648), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(3650), + [anon_sym_LT_DASH] = ACTIONS(601), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_POUND_LBRACK] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(601), + [anon_sym_STAR_EQ] = ACTIONS(601), + [anon_sym_SLASH_EQ] = ACTIONS(601), + [anon_sym_PERCENT_EQ] = ACTIONS(601), + [anon_sym_LT_LT_EQ] = ACTIONS(601), + [anon_sym_GT_GT_EQ] = ACTIONS(601), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(601), + [anon_sym_AMP_EQ] = ACTIONS(601), + [anon_sym_AMP_CARET_EQ] = ACTIONS(601), + [anon_sym_PLUS_EQ] = ACTIONS(601), + [anon_sym_DASH_EQ] = ACTIONS(601), + [anon_sym_PIPE_EQ] = ACTIONS(601), + [anon_sym_CARET_EQ] = ACTIONS(601), + [anon_sym_COLON_EQ] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(3652), + [anon_sym_map_LBRACK] = ACTIONS(3654), + [anon_sym_chan] = ACTIONS(3656), + [anon_sym_thread] = ACTIONS(3658), + [anon_sym_atomic] = ACTIONS(3660), }, [1103] = { [sym_line_comment] = STATE(1103), [sym_block_comment] = STATE(1103), - [sym_reference_expression] = STATE(4378), - [sym_type_reference_expression] = STATE(1631), - [sym_plain_type] = STATE(1634), - [sym__plain_type_without_special] = STATE(1647), - [sym_anon_struct_type] = STATE(1667), - [sym_multi_return_type] = STATE(1647), - [sym_result_type] = STATE(1647), - [sym_option_type] = STATE(1647), - [sym_qualified_type] = STATE(1631), - [sym_fixed_array_type] = STATE(1667), - [sym_array_type] = STATE(1667), - [sym_pointer_type] = STATE(1667), - [sym_wrong_pointer_type] = STATE(1667), - [sym_map_type] = STATE(1667), - [sym_channel_type] = STATE(1667), - [sym_shared_type] = STATE(1667), - [sym_thread_type] = STATE(1667), - [sym_atomic_type] = STATE(1667), - [sym_generic_type] = STATE(1667), - [sym_function_type] = STATE(1667), - [sym_identifier] = ACTIONS(3630), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), + [aux_sym_strictly_expression_list_repeat1] = STATE(1416), + [ts_builtin_sym_end] = ACTIONS(1755), + [sym_identifier] = ACTIONS(1757), + [anon_sym_LF] = ACTIONS(1757), + [anon_sym_CR] = ACTIONS(1757), + [anon_sym_CR_LF] = ACTIONS(1757), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3632), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(3638), - [anon_sym_COLON] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_LBRACK2] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3646), - [anon_sym_LT_DASH] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_STAR_EQ] = ACTIONS(589), - [anon_sym_SLASH_EQ] = ACTIONS(589), - [anon_sym_PERCENT_EQ] = ACTIONS(589), - [anon_sym_LT_LT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), - [anon_sym_AMP_EQ] = ACTIONS(589), - [anon_sym_AMP_CARET_EQ] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(589), - [anon_sym_DASH_EQ] = ACTIONS(589), - [anon_sym_PIPE_EQ] = ACTIONS(589), - [anon_sym_CARET_EQ] = ACTIONS(589), - [anon_sym_COLON_EQ] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3648), - [anon_sym_map_LBRACK] = ACTIONS(3650), - [anon_sym_chan] = ACTIONS(3652), - [anon_sym_thread] = ACTIONS(3654), - [anon_sym_atomic] = ACTIONS(3656), + [anon_sym_DOT] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_COMMA] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_EQ] = ACTIONS(1759), + [anon_sym___global] = ACTIONS(1757), + [anon_sym_type] = ACTIONS(1757), + [anon_sym_fn] = ACTIONS(1757), + [anon_sym_PLUS] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_STAR] = ACTIONS(1757), + [anon_sym_struct] = ACTIONS(1757), + [anon_sym_union] = ACTIONS(1757), + [anon_sym_pub] = ACTIONS(1757), + [anon_sym_mut] = ACTIONS(1757), + [anon_sym_enum] = ACTIONS(1757), + [anon_sym_interface] = ACTIONS(1757), + [anon_sym_QMARK] = ACTIONS(1757), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_go] = ACTIONS(1757), + [anon_sym_spawn] = ACTIONS(1757), + [anon_sym_json_DOTdecode] = ACTIONS(1757), + [anon_sym_LBRACK2] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1757), + [anon_sym_CARET] = ACTIONS(1757), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_LT_DASH] = ACTIONS(1757), + [sym_none] = ACTIONS(1757), + [sym_true] = ACTIONS(1757), + [sym_false] = ACTIONS(1757), + [sym_nil] = ACTIONS(1757), + [anon_sym_if] = ACTIONS(1757), + [anon_sym_DOLLARif] = ACTIONS(1757), + [anon_sym_match] = ACTIONS(1757), + [anon_sym_select] = ACTIONS(1757), + [anon_sym_STAR_EQ] = ACTIONS(1759), + [anon_sym_SLASH_EQ] = ACTIONS(1759), + [anon_sym_PERCENT_EQ] = ACTIONS(1759), + [anon_sym_LT_LT_EQ] = ACTIONS(1759), + [anon_sym_GT_GT_EQ] = ACTIONS(1759), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1759), + [anon_sym_AMP_EQ] = ACTIONS(1759), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1759), + [anon_sym_PLUS_EQ] = ACTIONS(1759), + [anon_sym_DASH_EQ] = ACTIONS(1759), + [anon_sym_PIPE_EQ] = ACTIONS(1759), + [anon_sym_CARET_EQ] = ACTIONS(1759), + [anon_sym_COLON_EQ] = ACTIONS(1759), + [anon_sym_lock] = ACTIONS(1757), + [anon_sym_rlock] = ACTIONS(1757), + [anon_sym_unsafe] = ACTIONS(1757), + [anon_sym_sql] = ACTIONS(1757), + [sym_int_literal] = ACTIONS(1757), + [sym_float_literal] = ACTIONS(1757), + [sym_rune_literal] = ACTIONS(1757), + [anon_sym_SQUOTE] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [anon_sym_c_SQUOTE] = ACTIONS(1757), + [anon_sym_c_DQUOTE] = ACTIONS(1757), + [anon_sym_r_SQUOTE] = ACTIONS(1757), + [anon_sym_r_DQUOTE] = ACTIONS(1757), + [sym_pseudo_compile_time_identifier] = ACTIONS(1757), + [anon_sym_shared] = ACTIONS(1757), + [anon_sym_map_LBRACK] = ACTIONS(1757), + [anon_sym_chan] = ACTIONS(1757), + [anon_sym_thread] = ACTIONS(1757), + [anon_sym_atomic] = ACTIONS(1757), + [anon_sym_assert] = ACTIONS(1757), + [anon_sym_defer] = ACTIONS(1757), + [anon_sym_goto] = ACTIONS(1757), + [anon_sym_break] = ACTIONS(1757), + [anon_sym_continue] = ACTIONS(1757), + [anon_sym_return] = ACTIONS(1757), + [anon_sym_DOLLARfor] = ACTIONS(1757), + [anon_sym_for] = ACTIONS(1757), + [anon_sym_POUND] = ACTIONS(1757), + [anon_sym_asm] = ACTIONS(1757), + [anon_sym_AT_LBRACK] = ACTIONS(1757), }, [1104] = { [sym_line_comment] = STATE(1104), [sym_block_comment] = STATE(1104), - [sym_reference_expression] = STATE(4378), - [sym_type_reference_expression] = STATE(1631), - [sym_plain_type] = STATE(1640), - [sym__plain_type_without_special] = STATE(1647), - [sym_anon_struct_type] = STATE(1667), - [sym_multi_return_type] = STATE(1647), - [sym_result_type] = STATE(1647), - [sym_option_type] = STATE(1647), - [sym_qualified_type] = STATE(1631), - [sym_fixed_array_type] = STATE(1667), - [sym_array_type] = STATE(1667), - [sym_pointer_type] = STATE(1667), - [sym_wrong_pointer_type] = STATE(1667), - [sym_map_type] = STATE(1667), - [sym_channel_type] = STATE(1667), - [sym_shared_type] = STATE(1667), - [sym_thread_type] = STATE(1667), - [sym_atomic_type] = STATE(1667), - [sym_generic_type] = STATE(1667), - [sym_function_type] = STATE(1667), - [sym_identifier] = ACTIONS(3630), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), + [sym_reference_expression] = STATE(4375), + [sym_type_reference_expression] = STATE(1659), + [sym_plain_type] = STATE(1641), + [sym__plain_type_without_special] = STATE(1658), + [sym_anon_struct_type] = STATE(1657), + [sym_multi_return_type] = STATE(1658), + [sym_result_type] = STATE(1658), + [sym_option_type] = STATE(1658), + [sym_qualified_type] = STATE(1659), + [sym_fixed_array_type] = STATE(1657), + [sym_array_type] = STATE(1657), + [sym_pointer_type] = STATE(1657), + [sym_wrong_pointer_type] = STATE(1657), + [sym_map_type] = STATE(1657), + [sym_channel_type] = STATE(1657), + [sym_shared_type] = STATE(1657), + [sym_thread_type] = STATE(1657), + [sym_atomic_type] = STATE(1657), + [sym_generic_type] = STATE(1657), + [sym_function_type] = STATE(1657), + [sym_identifier] = ACTIONS(3634), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_CR] = ACTIONS(597), + [anon_sym_CR_LF] = ACTIONS(597), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3632), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(3638), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_LBRACK2] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3646), - [anon_sym_LT_DASH] = ACTIONS(619), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_STAR_EQ] = ACTIONS(619), - [anon_sym_SLASH_EQ] = ACTIONS(619), - [anon_sym_PERCENT_EQ] = ACTIONS(619), - [anon_sym_LT_LT_EQ] = ACTIONS(619), - [anon_sym_GT_GT_EQ] = ACTIONS(619), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(619), - [anon_sym_AMP_EQ] = ACTIONS(619), - [anon_sym_AMP_CARET_EQ] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(619), - [anon_sym_DASH_EQ] = ACTIONS(619), - [anon_sym_PIPE_EQ] = ACTIONS(619), - [anon_sym_CARET_EQ] = ACTIONS(619), - [anon_sym_COLON_EQ] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(3648), - [anon_sym_map_LBRACK] = ACTIONS(3650), - [anon_sym_chan] = ACTIONS(3652), - [anon_sym_thread] = ACTIONS(3654), - [anon_sym_atomic] = ACTIONS(3656), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(3642), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(3644), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_LBRACK2] = ACTIONS(3648), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(3650), + [anon_sym_LT_DASH] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(597), + [anon_sym_POUND_LBRACK] = ACTIONS(597), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(597), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(597), + [anon_sym_STAR_EQ] = ACTIONS(597), + [anon_sym_SLASH_EQ] = ACTIONS(597), + [anon_sym_PERCENT_EQ] = ACTIONS(597), + [anon_sym_LT_LT_EQ] = ACTIONS(597), + [anon_sym_GT_GT_EQ] = ACTIONS(597), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(597), + [anon_sym_AMP_EQ] = ACTIONS(597), + [anon_sym_AMP_CARET_EQ] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(597), + [anon_sym_DASH_EQ] = ACTIONS(597), + [anon_sym_PIPE_EQ] = ACTIONS(597), + [anon_sym_CARET_EQ] = ACTIONS(597), + [anon_sym_COLON_EQ] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(3652), + [anon_sym_map_LBRACK] = ACTIONS(3654), + [anon_sym_chan] = ACTIONS(3656), + [anon_sym_thread] = ACTIONS(3658), + [anon_sym_atomic] = ACTIONS(3660), }, [1105] = { [sym_line_comment] = STATE(1105), [sym_block_comment] = STATE(1105), - [sym_reference_expression] = STATE(4378), - [sym_type_reference_expression] = STATE(1631), - [sym_plain_type] = STATE(1633), - [sym__plain_type_without_special] = STATE(1647), - [sym_anon_struct_type] = STATE(1667), - [sym_multi_return_type] = STATE(1647), - [sym_result_type] = STATE(1647), - [sym_option_type] = STATE(1647), - [sym_qualified_type] = STATE(1631), - [sym_fixed_array_type] = STATE(1667), - [sym_array_type] = STATE(1667), - [sym_pointer_type] = STATE(1667), - [sym_wrong_pointer_type] = STATE(1667), - [sym_map_type] = STATE(1667), - [sym_channel_type] = STATE(1667), - [sym_shared_type] = STATE(1667), - [sym_thread_type] = STATE(1667), - [sym_atomic_type] = STATE(1667), - [sym_generic_type] = STATE(1667), - [sym_function_type] = STATE(1667), - [sym_identifier] = ACTIONS(3630), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(3632), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(3638), - [anon_sym_COLON] = ACTIONS(623), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_LBRACK2] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(3646), - [anon_sym_LT_DASH] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(623), - [anon_sym_POUND_LBRACK] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(623), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_STAR_EQ] = ACTIONS(623), - [anon_sym_SLASH_EQ] = ACTIONS(623), - [anon_sym_PERCENT_EQ] = ACTIONS(623), - [anon_sym_LT_LT_EQ] = ACTIONS(623), - [anon_sym_GT_GT_EQ] = ACTIONS(623), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(623), - [anon_sym_AMP_EQ] = ACTIONS(623), - [anon_sym_AMP_CARET_EQ] = ACTIONS(623), - [anon_sym_PLUS_EQ] = ACTIONS(623), - [anon_sym_DASH_EQ] = ACTIONS(623), - [anon_sym_PIPE_EQ] = ACTIONS(623), - [anon_sym_CARET_EQ] = ACTIONS(623), - [anon_sym_COLON_EQ] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(3648), - [anon_sym_map_LBRACK] = ACTIONS(3650), - [anon_sym_chan] = ACTIONS(3652), - [anon_sym_thread] = ACTIONS(3654), - [anon_sym_atomic] = ACTIONS(3656), - }, - [1106] = { - [sym_line_comment] = STATE(1106), - [sym_block_comment] = STATE(1106), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2320), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), + [sym_reference_expression] = STATE(4375), + [sym_type_reference_expression] = STATE(1659), + [sym_plain_type] = STATE(1637), + [sym__plain_type_without_special] = STATE(1658), + [sym_anon_struct_type] = STATE(1657), + [sym_multi_return_type] = STATE(1658), + [sym_result_type] = STATE(1658), + [sym_option_type] = STATE(1658), + [sym_qualified_type] = STATE(1659), + [sym_fixed_array_type] = STATE(1657), + [sym_array_type] = STATE(1657), + [sym_pointer_type] = STATE(1657), + [sym_wrong_pointer_type] = STATE(1657), + [sym_map_type] = STATE(1657), + [sym_channel_type] = STATE(1657), + [sym_shared_type] = STATE(1657), + [sym_thread_type] = STATE(1657), + [sym_atomic_type] = STATE(1657), + [sym_generic_type] = STATE(1657), + [sym_function_type] = STATE(1657), + [sym_identifier] = ACTIONS(3634), [anon_sym_LF] = ACTIONS(567), [anon_sym_CR] = ACTIONS(567), [anon_sym_CR_LF] = ACTIONS(567), @@ -148123,13 +148008,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(3636), [anon_sym_EQ] = ACTIONS(567), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(3638), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(3640), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(567), [anon_sym_LT] = ACTIONS(567), @@ -148139,15 +148024,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(567), [anon_sym_GT_EQ] = ACTIONS(567), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(3642), [anon_sym_COLON] = ACTIONS(567), [anon_sym_PLUS_PLUS] = ACTIONS(567), [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(3644), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_LBRACK2] = ACTIONS(3648), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(3650), [anon_sym_LT_DASH] = ACTIONS(567), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), @@ -148175,306 +148060,667 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(567), [anon_sym_CARET_EQ] = ACTIONS(567), [anon_sym_COLON_EQ] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(3652), + [anon_sym_map_LBRACK] = ACTIONS(3654), + [anon_sym_chan] = ACTIONS(3656), + [anon_sym_thread] = ACTIONS(3658), + [anon_sym_atomic] = ACTIONS(3660), + }, + [1106] = { + [sym_line_comment] = STATE(1106), + [sym_block_comment] = STATE(1106), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2386), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), + [anon_sym_LF] = ACTIONS(607), + [anon_sym_CR] = ACTIONS(607), + [anon_sym_CR_LF] = ACTIONS(607), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_COLON] = ACTIONS(607), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_LT_DASH] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(607), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_is] = ACTIONS(607), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(607), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_STAR_EQ] = ACTIONS(607), + [anon_sym_SLASH_EQ] = ACTIONS(607), + [anon_sym_PERCENT_EQ] = ACTIONS(607), + [anon_sym_LT_LT_EQ] = ACTIONS(607), + [anon_sym_GT_GT_EQ] = ACTIONS(607), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(607), + [anon_sym_AMP_EQ] = ACTIONS(607), + [anon_sym_AMP_CARET_EQ] = ACTIONS(607), + [anon_sym_PLUS_EQ] = ACTIONS(607), + [anon_sym_DASH_EQ] = ACTIONS(607), + [anon_sym_PIPE_EQ] = ACTIONS(607), + [anon_sym_CARET_EQ] = ACTIONS(607), + [anon_sym_COLON_EQ] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [1107] = { [sym_line_comment] = STATE(1107), [sym_block_comment] = STATE(1107), - [sym_type_parameters] = STATE(4199), - [sym_argument_list] = STATE(1208), - [sym_or_block] = STATE(1207), - [sym_identifier] = ACTIONS(1795), - [anon_sym_LF] = ACTIONS(1795), - [anon_sym_CR] = ACTIONS(1795), - [anon_sym_CR_LF] = ACTIONS(1795), + [sym_type_parameters] = STATE(4009), + [sym_argument_list] = STATE(1153), + [sym_or_block] = STATE(1238), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_COMMA] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_fn] = ACTIONS(1795), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3668), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3670), - [anon_sym_BANG_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(1795), - [anon_sym_mut] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_go] = ACTIONS(1795), - [anon_sym_spawn] = ACTIONS(1795), - [anon_sym_json_DOTdecode] = ACTIONS(1795), - [anon_sym_LBRACK2] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_CARET] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_LT_DASH] = ACTIONS(1795), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3668), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_AMP_CARET] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3686), - [anon_sym_or] = ACTIONS(3688), - [sym_none] = ACTIONS(1795), - [sym_true] = ACTIONS(1795), - [sym_false] = ACTIONS(1795), - [sym_nil] = ACTIONS(1795), - [anon_sym_QMARK_DOT] = ACTIONS(3660), - [anon_sym_POUND_LBRACK] = ACTIONS(3682), - [anon_sym_if] = ACTIONS(1795), - [anon_sym_DOLLARif] = ACTIONS(1795), - [anon_sym_is] = ACTIONS(3690), - [anon_sym_BANGis] = ACTIONS(3690), - [anon_sym_in] = ACTIONS(3692), - [anon_sym_BANGin] = ACTIONS(3692), - [anon_sym_match] = ACTIONS(1795), - [anon_sym_select] = ACTIONS(1795), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1795), - [anon_sym_sql] = ACTIONS(1795), - [sym_int_literal] = ACTIONS(1795), - [sym_float_literal] = ACTIONS(1795), - [sym_rune_literal] = ACTIONS(1795), - [sym_pseudo_compile_time_identifier] = ACTIONS(1795), - [anon_sym_shared] = ACTIONS(1795), - [anon_sym_map_LBRACK] = ACTIONS(1795), - [anon_sym_chan] = ACTIONS(1795), - [anon_sym_thread] = ACTIONS(1795), - [anon_sym_atomic] = ACTIONS(1795), - [sym___double_quote] = ACTIONS(1795), - [sym___single_quote] = ACTIONS(1795), - [sym___c_double_quote] = ACTIONS(1795), - [sym___c_single_quote] = ACTIONS(1795), - [sym___r_double_quote] = ACTIONS(1795), - [sym___r_single_quote] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_RBRACE] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_RPAREN] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(3668), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3672), + [anon_sym_GT] = ACTIONS(3672), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(3670), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3670), + [anon_sym_AMP_CARET] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3664), + [anon_sym_POUND_LBRACK] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(3684), + [anon_sym_BANGin] = ACTIONS(3684), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), }, [1108] = { [sym_line_comment] = STATE(1108), [sym_block_comment] = STATE(1108), - [sym_type_parameters] = STATE(4199), - [sym_argument_list] = STATE(1208), - [sym_or_block] = STATE(1207), - [sym_identifier] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1765), - [anon_sym_CR] = ACTIONS(1765), - [anon_sym_CR_LF] = ACTIONS(1765), + [sym_type_parameters] = STATE(4009), + [sym_argument_list] = STATE(1153), + [sym_or_block] = STATE(1238), + [sym_identifier] = ACTIONS(1779), + [anon_sym_LF] = ACTIONS(1779), + [anon_sym_CR] = ACTIONS(1779), + [anon_sym_CR_LF] = ACTIONS(1779), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3668), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3668), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_AMP_CARET] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3660), - [anon_sym_POUND_LBRACK] = ACTIONS(3682), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_BANGin] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1765), - [sym_rune_literal] = ACTIONS(1765), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1765), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_RPAREN] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(3668), + [anon_sym_fn] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3672), + [anon_sym_GT] = ACTIONS(3672), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1779), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_struct] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(3688), + [anon_sym_DASH_DASH] = ACTIONS(3690), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_go] = ACTIONS(1779), + [anon_sym_spawn] = ACTIONS(1779), + [anon_sym_json_DOTdecode] = ACTIONS(1779), + [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_LT_DASH] = ACTIONS(1779), + [anon_sym_LT_LT] = ACTIONS(3670), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3670), + [anon_sym_AMP_CARET] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3692), + [anon_sym_or] = ACTIONS(3694), + [sym_none] = ACTIONS(1779), + [sym_true] = ACTIONS(1779), + [sym_false] = ACTIONS(1779), + [sym_nil] = ACTIONS(1779), + [anon_sym_QMARK_DOT] = ACTIONS(3664), + [anon_sym_POUND_LBRACK] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1779), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_BANGis] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3684), + [anon_sym_BANGin] = ACTIONS(3684), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_select] = ACTIONS(1779), + [anon_sym_lock] = ACTIONS(1779), + [anon_sym_rlock] = ACTIONS(1779), + [anon_sym_unsafe] = ACTIONS(1779), + [anon_sym_sql] = ACTIONS(1779), + [sym_int_literal] = ACTIONS(1779), + [sym_float_literal] = ACTIONS(1779), + [sym_rune_literal] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_c_SQUOTE] = ACTIONS(1779), + [anon_sym_c_DQUOTE] = ACTIONS(1779), + [anon_sym_r_SQUOTE] = ACTIONS(1779), + [anon_sym_r_DQUOTE] = ACTIONS(1779), + [sym_pseudo_compile_time_identifier] = ACTIONS(1779), + [anon_sym_shared] = ACTIONS(1779), + [anon_sym_map_LBRACK] = ACTIONS(1779), + [anon_sym_chan] = ACTIONS(1779), + [anon_sym_thread] = ACTIONS(1779), + [anon_sym_atomic] = ACTIONS(1779), }, [1109] = { [sym_line_comment] = STATE(1109), [sym_block_comment] = STATE(1109), - [sym_type_parameters] = STATE(4199), - [sym_argument_list] = STATE(1208), - [sym_or_block] = STATE(1207), - [sym_identifier] = ACTIONS(1769), - [anon_sym_LF] = ACTIONS(1769), - [anon_sym_CR] = ACTIONS(1769), - [anon_sym_CR_LF] = ACTIONS(1769), + [sym_type_parameters] = STATE(4009), + [sym_argument_list] = STATE(1153), + [sym_or_block] = STATE(1238), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_COMMA] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_fn] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1769), - [anon_sym_SLASH] = ACTIONS(1769), - [anon_sym_PERCENT] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_EQ] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_QMARK] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_go] = ACTIONS(1769), - [anon_sym_spawn] = ACTIONS(1769), - [anon_sym_json_DOTdecode] = ACTIONS(1769), - [anon_sym_LBRACK2] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_CARET] = ACTIONS(1769), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_LT_DASH] = ACTIONS(1769), - [anon_sym_LT_LT] = ACTIONS(1769), - [anon_sym_GT_GT] = ACTIONS(1769), - [anon_sym_GT_GT_GT] = ACTIONS(1769), - [anon_sym_AMP_CARET] = ACTIONS(1769), - [anon_sym_AMP_AMP] = ACTIONS(1769), - [anon_sym_PIPE_PIPE] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [sym_none] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_nil] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(3660), - [anon_sym_POUND_LBRACK] = ACTIONS(3682), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_DOLLARif] = ACTIONS(1769), - [anon_sym_is] = ACTIONS(1769), - [anon_sym_BANGis] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_BANGin] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_select] = ACTIONS(1769), - [anon_sym_lock] = ACTIONS(1769), - [anon_sym_rlock] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_sql] = ACTIONS(1769), - [sym_int_literal] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1769), - [sym_rune_literal] = ACTIONS(1769), - [sym_pseudo_compile_time_identifier] = ACTIONS(1769), - [anon_sym_shared] = ACTIONS(1769), - [anon_sym_map_LBRACK] = ACTIONS(1769), - [anon_sym_chan] = ACTIONS(1769), - [anon_sym_thread] = ACTIONS(1769), - [anon_sym_atomic] = ACTIONS(1769), - [sym___double_quote] = ACTIONS(1769), - [sym___single_quote] = ACTIONS(1769), - [sym___c_double_quote] = ACTIONS(1769), - [sym___c_single_quote] = ACTIONS(1769), - [sym___r_double_quote] = ACTIONS(1769), - [sym___r_single_quote] = ACTIONS(1769), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_RBRACE] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_RPAREN] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(1791), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1791), + [anon_sym_SLASH] = ACTIONS(1791), + [anon_sym_PERCENT] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_EQ] = ACTIONS(1791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(1791), + [anon_sym_GT_GT] = ACTIONS(1791), + [anon_sym_GT_GT_GT] = ACTIONS(1791), + [anon_sym_AMP_CARET] = ACTIONS(1791), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3664), + [anon_sym_POUND_LBRACK] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_BANGin] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), }, [1110] = { [sym_line_comment] = STATE(1110), [sym_block_comment] = STATE(1110), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2345), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), + [sym_type_parameters] = STATE(4009), + [sym_argument_list] = STATE(1153), + [sym_or_block] = STATE(1238), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_RBRACE] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_RPAREN] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(3668), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_EQ] = ACTIONS(1791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(3670), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3670), + [anon_sym_AMP_CARET] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3664), + [anon_sym_POUND_LBRACK] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_BANGin] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + }, + [1111] = { + [sym_line_comment] = STATE(1111), + [sym_block_comment] = STATE(1111), + [sym_type_parameters] = STATE(4009), + [sym_argument_list] = STATE(1153), + [sym_or_block] = STATE(1238), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_RBRACE] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_RPAREN] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(3668), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3672), + [anon_sym_GT] = ACTIONS(3672), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(3670), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3670), + [anon_sym_AMP_CARET] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3664), + [anon_sym_POUND_LBRACK] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(3684), + [anon_sym_BANGin] = ACTIONS(3684), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + }, + [1112] = { + [sym_line_comment] = STATE(1112), + [sym_block_comment] = STATE(1112), + [sym_type_parameters] = STATE(4009), + [sym_argument_list] = STATE(1153), + [sym_or_block] = STATE(1238), + [sym_identifier] = ACTIONS(1787), + [anon_sym_LF] = ACTIONS(1787), + [anon_sym_CR] = ACTIONS(1787), + [anon_sym_CR_LF] = ACTIONS(1787), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_COMMA] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_RPAREN] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(3668), + [anon_sym_fn] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_EQ_EQ] = ACTIONS(1787), + [anon_sym_BANG_EQ] = ACTIONS(1787), + [anon_sym_LT_EQ] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_struct] = ACTIONS(1787), + [anon_sym_mut] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1787), + [anon_sym_DASH_DASH] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_go] = ACTIONS(1787), + [anon_sym_spawn] = ACTIONS(1787), + [anon_sym_json_DOTdecode] = ACTIONS(1787), + [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_LT_DASH] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(3670), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3670), + [anon_sym_AMP_CARET] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(1787), + [anon_sym_PIPE_PIPE] = ACTIONS(1787), + [anon_sym_or] = ACTIONS(1787), + [sym_none] = ACTIONS(1787), + [sym_true] = ACTIONS(1787), + [sym_false] = ACTIONS(1787), + [sym_nil] = ACTIONS(1787), + [anon_sym_QMARK_DOT] = ACTIONS(3664), + [anon_sym_POUND_LBRACK] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_DOLLARif] = ACTIONS(1787), + [anon_sym_is] = ACTIONS(1787), + [anon_sym_BANGis] = ACTIONS(1787), + [anon_sym_in] = ACTIONS(1787), + [anon_sym_BANGin] = ACTIONS(1787), + [anon_sym_match] = ACTIONS(1787), + [anon_sym_select] = ACTIONS(1787), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1787), + [anon_sym_sql] = ACTIONS(1787), + [sym_int_literal] = ACTIONS(1787), + [sym_float_literal] = ACTIONS(1787), + [sym_rune_literal] = ACTIONS(1787), + [anon_sym_SQUOTE] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [anon_sym_c_SQUOTE] = ACTIONS(1787), + [anon_sym_c_DQUOTE] = ACTIONS(1787), + [anon_sym_r_SQUOTE] = ACTIONS(1787), + [anon_sym_r_DQUOTE] = ACTIONS(1787), + [sym_pseudo_compile_time_identifier] = ACTIONS(1787), + [anon_sym_shared] = ACTIONS(1787), + [anon_sym_map_LBRACK] = ACTIONS(1787), + [anon_sym_chan] = ACTIONS(1787), + [anon_sym_thread] = ACTIONS(1787), + [anon_sym_atomic] = ACTIONS(1787), + }, + [1113] = { + [sym_line_comment] = STATE(1113), + [sym_block_comment] = STATE(1113), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2311), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), [anon_sym_LF] = ACTIONS(627), [anon_sym_CR] = ACTIONS(627), [anon_sym_CR_LF] = ACTIONS(627), @@ -148482,13 +148728,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(627), [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(627), [anon_sym_RBRACE] = ACTIONS(627), [anon_sym_LPAREN] = ACTIONS(627), [anon_sym_EQ] = ACTIONS(627), [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(611), [anon_sym_PLUS] = ACTIONS(627), [anon_sym_DASH] = ACTIONS(627), [anon_sym_STAR] = ACTIONS(627), @@ -148501,7 +148747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(627), [anon_sym_GT_EQ] = ACTIONS(627), [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(615), [anon_sym_PLUS_PLUS] = ACTIONS(627), [anon_sym_DASH_DASH] = ACTIONS(627), [anon_sym_QMARK] = ACTIONS(627), @@ -148528,385 +148774,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_EQ] = ACTIONS(627), [anon_sym_GT_GT_EQ] = ACTIONS(627), [anon_sym_GT_GT_GT_EQ] = ACTIONS(627), - [anon_sym_AMP_EQ] = ACTIONS(627), - [anon_sym_AMP_CARET_EQ] = ACTIONS(627), - [anon_sym_PLUS_EQ] = ACTIONS(627), - [anon_sym_DASH_EQ] = ACTIONS(627), - [anon_sym_PIPE_EQ] = ACTIONS(627), - [anon_sym_CARET_EQ] = ACTIONS(627), - [anon_sym_COLON_EQ] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - }, - [1111] = { - [sym_line_comment] = STATE(1111), - [sym_block_comment] = STATE(1111), - [sym_type_parameters] = STATE(4199), - [sym_argument_list] = STATE(1208), - [sym_or_block] = STATE(1207), - [sym_identifier] = ACTIONS(1773), - [anon_sym_LF] = ACTIONS(1773), - [anon_sym_CR] = ACTIONS(1773), - [anon_sym_CR_LF] = ACTIONS(1773), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_COMMA] = ACTIONS(1773), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_fn] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3668), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3670), - [anon_sym_BANG_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_mut] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_go] = ACTIONS(1773), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1773), - [anon_sym_LBRACK2] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_LT_DASH] = ACTIONS(1773), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3668), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_AMP_CARET] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3686), - [anon_sym_or] = ACTIONS(3688), - [sym_none] = ACTIONS(1773), - [sym_true] = ACTIONS(1773), - [sym_false] = ACTIONS(1773), - [sym_nil] = ACTIONS(1773), - [anon_sym_QMARK_DOT] = ACTIONS(3660), - [anon_sym_POUND_LBRACK] = ACTIONS(3682), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_DOLLARif] = ACTIONS(1773), - [anon_sym_is] = ACTIONS(3690), - [anon_sym_BANGis] = ACTIONS(3690), - [anon_sym_in] = ACTIONS(3692), - [anon_sym_BANGin] = ACTIONS(3692), - [anon_sym_match] = ACTIONS(1773), - [anon_sym_select] = ACTIONS(1773), - [anon_sym_lock] = ACTIONS(1773), - [anon_sym_rlock] = ACTIONS(1773), - [anon_sym_unsafe] = ACTIONS(1773), - [anon_sym_sql] = ACTIONS(1773), - [sym_int_literal] = ACTIONS(1773), - [sym_float_literal] = ACTIONS(1773), - [sym_rune_literal] = ACTIONS(1773), - [sym_pseudo_compile_time_identifier] = ACTIONS(1773), - [anon_sym_shared] = ACTIONS(1773), - [anon_sym_map_LBRACK] = ACTIONS(1773), - [anon_sym_chan] = ACTIONS(1773), - [anon_sym_thread] = ACTIONS(1773), - [anon_sym_atomic] = ACTIONS(1773), - [sym___double_quote] = ACTIONS(1773), - [sym___single_quote] = ACTIONS(1773), - [sym___c_double_quote] = ACTIONS(1773), - [sym___c_single_quote] = ACTIONS(1773), - [sym___r_double_quote] = ACTIONS(1773), - [sym___r_single_quote] = ACTIONS(1773), - }, - [1112] = { - [sym_line_comment] = STATE(1112), - [sym_block_comment] = STATE(1112), - [sym_type_parameters] = STATE(4199), - [sym_argument_list] = STATE(1208), - [sym_or_block] = STATE(1207), - [sym_identifier] = ACTIONS(1785), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_CR] = ACTIONS(1785), - [anon_sym_CR_LF] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_SLASH] = ACTIONS(1785), - [anon_sym_PERCENT] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_PLUS_PLUS] = ACTIONS(1785), - [anon_sym_DASH_DASH] = ACTIONS(1785), - [anon_sym_QMARK] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1785), - [anon_sym_LBRACK2] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(1785), - [anon_sym_GT_GT] = ACTIONS(1785), - [anon_sym_GT_GT_GT] = ACTIONS(1785), - [anon_sym_AMP_CARET] = ACTIONS(1785), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3660), - [anon_sym_POUND_LBRACK] = ACTIONS(3682), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1785), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_BANGin] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1785), - [sym_rune_literal] = ACTIONS(1785), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1785), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1785), - [sym___single_quote] = ACTIONS(1785), - [sym___c_double_quote] = ACTIONS(1785), - [sym___c_single_quote] = ACTIONS(1785), - [sym___r_double_quote] = ACTIONS(1785), - [sym___r_single_quote] = ACTIONS(1785), - }, - [1113] = { - [sym_line_comment] = STATE(1113), - [sym_block_comment] = STATE(1113), - [sym_type_parameters] = STATE(4199), - [sym_argument_list] = STATE(1208), - [sym_or_block] = STATE(1207), - [sym_identifier] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1765), - [anon_sym_CR] = ACTIONS(1765), - [anon_sym_CR_LF] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_SLASH] = ACTIONS(1765), - [anon_sym_PERCENT] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1765), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1765), - [anon_sym_GT_GT_GT] = ACTIONS(1765), - [anon_sym_AMP_CARET] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3660), - [anon_sym_POUND_LBRACK] = ACTIONS(3682), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_BANGin] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1765), - [sym_rune_literal] = ACTIONS(1765), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1765), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), + [anon_sym_AMP_EQ] = ACTIONS(627), + [anon_sym_AMP_CARET_EQ] = ACTIONS(627), + [anon_sym_PLUS_EQ] = ACTIONS(627), + [anon_sym_DASH_EQ] = ACTIONS(627), + [anon_sym_PIPE_EQ] = ACTIONS(627), + [anon_sym_CARET_EQ] = ACTIONS(627), + [anon_sym_COLON_EQ] = ACTIONS(627), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [1114] = { [sym_line_comment] = STATE(1114), [sym_block_comment] = STATE(1114), - [sym_type_parameters] = STATE(4199), - [sym_argument_list] = STATE(1208), - [sym_or_block] = STATE(1207), - [sym_identifier] = ACTIONS(1781), - [anon_sym_LF] = ACTIONS(1781), - [anon_sym_CR] = ACTIONS(1781), - [anon_sym_CR_LF] = ACTIONS(1781), + [sym_type_parameters] = STATE(4009), + [sym_argument_list] = STATE(1153), + [sym_or_block] = STATE(1238), + [sym_identifier] = ACTIONS(1783), + [anon_sym_LF] = ACTIONS(1783), + [anon_sym_CR] = ACTIONS(1783), + [anon_sym_CR_LF] = ACTIONS(1783), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_COMMA] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_fn] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3668), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_EQ_EQ] = ACTIONS(1781), - [anon_sym_BANG_EQ] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(1781), - [anon_sym_mut] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_QMARK] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1781), - [anon_sym_LBRACK2] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_CARET] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_LT_DASH] = ACTIONS(1781), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3668), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_AMP_CARET] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(1781), - [anon_sym_PIPE_PIPE] = ACTIONS(1781), - [anon_sym_or] = ACTIONS(1781), - [sym_none] = ACTIONS(1781), - [sym_true] = ACTIONS(1781), - [sym_false] = ACTIONS(1781), - [sym_nil] = ACTIONS(1781), - [anon_sym_QMARK_DOT] = ACTIONS(3660), - [anon_sym_POUND_LBRACK] = ACTIONS(3682), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_DOLLARif] = ACTIONS(1781), - [anon_sym_is] = ACTIONS(1781), - [anon_sym_BANGis] = ACTIONS(1781), - [anon_sym_in] = ACTIONS(1781), - [anon_sym_BANGin] = ACTIONS(1781), - [anon_sym_match] = ACTIONS(1781), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1781), - [anon_sym_rlock] = ACTIONS(1781), - [anon_sym_unsafe] = ACTIONS(1781), - [anon_sym_sql] = ACTIONS(1781), - [sym_int_literal] = ACTIONS(1781), - [sym_float_literal] = ACTIONS(1781), - [sym_rune_literal] = ACTIONS(1781), - [sym_pseudo_compile_time_identifier] = ACTIONS(1781), - [anon_sym_shared] = ACTIONS(1781), - [anon_sym_map_LBRACK] = ACTIONS(1781), - [anon_sym_chan] = ACTIONS(1781), - [anon_sym_thread] = ACTIONS(1781), - [anon_sym_atomic] = ACTIONS(1781), - [sym___double_quote] = ACTIONS(1781), - [sym___single_quote] = ACTIONS(1781), - [sym___c_double_quote] = ACTIONS(1781), - [sym___c_single_quote] = ACTIONS(1781), - [sym___r_double_quote] = ACTIONS(1781), - [sym___r_single_quote] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_RPAREN] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_fn] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_PERCENT] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_EQ_EQ] = ACTIONS(1783), + [anon_sym_BANG_EQ] = ACTIONS(1783), + [anon_sym_LT_EQ] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_struct] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1783), + [anon_sym_DASH_DASH] = ACTIONS(1783), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_go] = ACTIONS(1783), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1783), + [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_LT_DASH] = ACTIONS(1783), + [anon_sym_LT_LT] = ACTIONS(1783), + [anon_sym_GT_GT] = ACTIONS(1783), + [anon_sym_GT_GT_GT] = ACTIONS(1783), + [anon_sym_AMP_CARET] = ACTIONS(1783), + [anon_sym_AMP_AMP] = ACTIONS(1783), + [anon_sym_PIPE_PIPE] = ACTIONS(1783), + [anon_sym_or] = ACTIONS(1783), + [sym_none] = ACTIONS(1783), + [sym_true] = ACTIONS(1783), + [sym_false] = ACTIONS(1783), + [sym_nil] = ACTIONS(1783), + [anon_sym_QMARK_DOT] = ACTIONS(3664), + [anon_sym_POUND_LBRACK] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1783), + [anon_sym_is] = ACTIONS(1783), + [anon_sym_BANGis] = ACTIONS(1783), + [anon_sym_in] = ACTIONS(1783), + [anon_sym_BANGin] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_select] = ACTIONS(1783), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1783), + [anon_sym_sql] = ACTIONS(1783), + [sym_int_literal] = ACTIONS(1783), + [sym_float_literal] = ACTIONS(1783), + [sym_rune_literal] = ACTIONS(1783), + [anon_sym_SQUOTE] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(1783), + [anon_sym_c_SQUOTE] = ACTIONS(1783), + [anon_sym_c_DQUOTE] = ACTIONS(1783), + [anon_sym_r_SQUOTE] = ACTIONS(1783), + [anon_sym_r_DQUOTE] = ACTIONS(1783), + [sym_pseudo_compile_time_identifier] = ACTIONS(1783), + [anon_sym_shared] = ACTIONS(1783), + [anon_sym_map_LBRACK] = ACTIONS(1783), + [anon_sym_chan] = ACTIONS(1783), + [anon_sym_thread] = ACTIONS(1783), + [anon_sym_atomic] = ACTIONS(1783), }, [1115] = { [sym_line_comment] = STATE(1115), [sym_block_comment] = STATE(1115), - [sym_type_parameters] = STATE(4199), - [sym_argument_list] = STATE(1208), - [sym_or_block] = STATE(1207), + [sym_type_parameters] = STATE(4009), + [sym_argument_list] = STATE(1153), + [sym_or_block] = STATE(1238), [sym_identifier] = ACTIONS(1765), [anon_sym_LF] = ACTIONS(1765), [anon_sym_CR] = ACTIONS(1765), @@ -148914,61 +148890,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(3686), [anon_sym_LBRACE] = ACTIONS(1765), [anon_sym_COMMA] = ACTIONS(1765), [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3666), [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_PIPE] = ACTIONS(3668), [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3668), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3670), - [anon_sym_BANG_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3672), + [anon_sym_GT] = ACTIONS(3672), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), [anon_sym_DOT_DOT_DOT] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3674), [anon_sym_struct] = ACTIONS(1765), [anon_sym_mut] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3688), + [anon_sym_DASH_DASH] = ACTIONS(3690), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), [anon_sym_go] = ACTIONS(1765), [anon_sym_spawn] = ACTIONS(1765), [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3682), + [anon_sym_LBRACK2] = ACTIONS(3680), [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3670), [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3668), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_AMP_CARET] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(3670), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3670), + [anon_sym_AMP_CARET] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3692), + [anon_sym_or] = ACTIONS(3694), [sym_none] = ACTIONS(1765), [sym_true] = ACTIONS(1765), [sym_false] = ACTIONS(1765), [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3660), - [anon_sym_POUND_LBRACK] = ACTIONS(3682), + [anon_sym_QMARK_DOT] = ACTIONS(3664), + [anon_sym_POUND_LBRACK] = ACTIONS(3680), [anon_sym_if] = ACTIONS(1765), [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(3692), - [anon_sym_BANGin] = ACTIONS(3692), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_BANGis] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3684), + [anon_sym_BANGin] = ACTIONS(3684), [anon_sym_match] = ACTIONS(1765), [anon_sym_select] = ACTIONS(1765), [anon_sym_lock] = ACTIONS(1765), @@ -148978,490 +148954,401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1765), [sym_float_literal] = ACTIONS(1765), [sym_rune_literal] = ACTIONS(1765), + [anon_sym_SQUOTE] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1765), + [anon_sym_c_SQUOTE] = ACTIONS(1765), + [anon_sym_c_DQUOTE] = ACTIONS(1765), + [anon_sym_r_SQUOTE] = ACTIONS(1765), + [anon_sym_r_DQUOTE] = ACTIONS(1765), [sym_pseudo_compile_time_identifier] = ACTIONS(1765), [anon_sym_shared] = ACTIONS(1765), [anon_sym_map_LBRACK] = ACTIONS(1765), [anon_sym_chan] = ACTIONS(1765), [anon_sym_thread] = ACTIONS(1765), [anon_sym_atomic] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), }, [1116] = { [sym_line_comment] = STATE(1116), [sym_block_comment] = STATE(1116), - [sym_type_parameters] = STATE(4199), - [sym_argument_list] = STATE(1208), - [sym_or_block] = STATE(1207), - [sym_identifier] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1765), - [anon_sym_CR] = ACTIONS(1765), - [anon_sym_CR_LF] = ACTIONS(1765), + [sym_type_parameters] = STATE(4009), + [sym_argument_list] = STATE(1153), + [sym_or_block] = STATE(1238), + [sym_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_CR] = ACTIONS(1791), + [anon_sym_CR_LF] = ACTIONS(1791), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3668), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3670), - [anon_sym_BANG_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3668), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_AMP_CARET] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3660), - [anon_sym_POUND_LBRACK] = ACTIONS(3682), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(3692), - [anon_sym_BANGin] = ACTIONS(3692), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1765), - [sym_rune_literal] = ACTIONS(1765), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1765), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_RBRACE] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_RPAREN] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(1791), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_EQ] = ACTIONS(1791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1791), + [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_LT_DASH] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(3670), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3670), + [anon_sym_AMP_CARET] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3664), + [anon_sym_POUND_LBRACK] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_BANGin] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1791), + [sym_rune_literal] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_c_SQUOTE] = ACTIONS(1791), + [anon_sym_c_DQUOTE] = ACTIONS(1791), + [anon_sym_r_SQUOTE] = ACTIONS(1791), + [anon_sym_r_DQUOTE] = ACTIONS(1791), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1791), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), }, [1117] = { [sym_line_comment] = STATE(1117), [sym_block_comment] = STATE(1117), - [sym_type_parameters] = STATE(4199), - [sym_argument_list] = STATE(1208), - [sym_or_block] = STATE(1207), - [sym_identifier] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1765), - [anon_sym_CR] = ACTIONS(1765), - [anon_sym_CR_LF] = ACTIONS(1765), + [sym_type_parameters] = STATE(4009), + [sym_argument_list] = STATE(1153), + [sym_or_block] = STATE(1238), + [sym_identifier] = ACTIONS(1769), + [anon_sym_LF] = ACTIONS(1769), + [anon_sym_CR] = ACTIONS(1769), + [anon_sym_CR_LF] = ACTIONS(1769), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3668), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_QMARK] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1765), - [anon_sym_LBRACK2] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_LT_DASH] = ACTIONS(1765), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3668), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_AMP_CARET] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(1765), - [anon_sym_PIPE_PIPE] = ACTIONS(1765), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3660), - [anon_sym_POUND_LBRACK] = ACTIONS(3682), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_BANGin] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1765), - [sym_rune_literal] = ACTIONS(1765), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1765), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1765), - [sym___single_quote] = ACTIONS(1765), - [sym___c_double_quote] = ACTIONS(1765), - [sym___c_single_quote] = ACTIONS(1765), - [sym___r_double_quote] = ACTIONS(1765), - [sym___r_single_quote] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_COMMA] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_RPAREN] = ACTIONS(1769), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_fn] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_PERCENT] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_GT_EQ] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_struct] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_go] = ACTIONS(1769), + [anon_sym_spawn] = ACTIONS(1769), + [anon_sym_json_DOTdecode] = ACTIONS(1769), + [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_LT_DASH] = ACTIONS(1769), + [anon_sym_LT_LT] = ACTIONS(1769), + [anon_sym_GT_GT] = ACTIONS(1769), + [anon_sym_GT_GT_GT] = ACTIONS(1769), + [anon_sym_AMP_CARET] = ACTIONS(1769), + [anon_sym_AMP_AMP] = ACTIONS(1769), + [anon_sym_PIPE_PIPE] = ACTIONS(1769), + [anon_sym_or] = ACTIONS(1769), + [sym_none] = ACTIONS(1769), + [sym_true] = ACTIONS(1769), + [sym_false] = ACTIONS(1769), + [sym_nil] = ACTIONS(1769), + [anon_sym_QMARK_DOT] = ACTIONS(3664), + [anon_sym_POUND_LBRACK] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1769), + [anon_sym_is] = ACTIONS(1769), + [anon_sym_BANGis] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_BANGin] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_select] = ACTIONS(1769), + [anon_sym_lock] = ACTIONS(1769), + [anon_sym_rlock] = ACTIONS(1769), + [anon_sym_unsafe] = ACTIONS(1769), + [anon_sym_sql] = ACTIONS(1769), + [sym_int_literal] = ACTIONS(1769), + [sym_float_literal] = ACTIONS(1769), + [sym_rune_literal] = ACTIONS(1769), + [anon_sym_SQUOTE] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [anon_sym_c_SQUOTE] = ACTIONS(1769), + [anon_sym_c_DQUOTE] = ACTIONS(1769), + [anon_sym_r_SQUOTE] = ACTIONS(1769), + [anon_sym_r_DQUOTE] = ACTIONS(1769), + [sym_pseudo_compile_time_identifier] = ACTIONS(1769), + [anon_sym_shared] = ACTIONS(1769), + [anon_sym_map_LBRACK] = ACTIONS(1769), + [anon_sym_chan] = ACTIONS(1769), + [anon_sym_thread] = ACTIONS(1769), + [anon_sym_atomic] = ACTIONS(1769), }, [1118] = { [sym_line_comment] = STATE(1118), [sym_block_comment] = STATE(1118), - [sym_type_parameters] = STATE(4199), - [sym_argument_list] = STATE(1208), - [sym_or_block] = STATE(1207), - [sym_identifier] = ACTIONS(3694), - [anon_sym_LF] = ACTIONS(3694), - [anon_sym_CR] = ACTIONS(3694), - [anon_sym_CR_LF] = ACTIONS(3694), + [sym_else_branch] = STATE(1186), + [sym_identifier] = ACTIONS(1805), + [anon_sym_LF] = ACTIONS(1805), + [anon_sym_CR] = ACTIONS(1805), + [anon_sym_CR_LF] = ACTIONS(1805), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3694), - [anon_sym_COMMA] = ACTIONS(3694), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(3694), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_fn] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3668), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3670), - [anon_sym_BANG_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3694), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(3694), - [anon_sym_mut] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_go] = ACTIONS(3694), - [anon_sym_spawn] = ACTIONS(3694), - [anon_sym_json_DOTdecode] = ACTIONS(3694), - [anon_sym_LBRACK2] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(3694), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - [anon_sym_LT_DASH] = ACTIONS(3694), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3668), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_AMP_CARET] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3686), - [anon_sym_or] = ACTIONS(3688), - [sym_none] = ACTIONS(3694), - [sym_true] = ACTIONS(3694), - [sym_false] = ACTIONS(3694), - [sym_nil] = ACTIONS(3694), - [anon_sym_QMARK_DOT] = ACTIONS(3660), - [anon_sym_POUND_LBRACK] = ACTIONS(3682), - [anon_sym_if] = ACTIONS(3694), - [anon_sym_DOLLARif] = ACTIONS(3694), - [anon_sym_is] = ACTIONS(3690), - [anon_sym_BANGis] = ACTIONS(3690), - [anon_sym_in] = ACTIONS(3692), - [anon_sym_BANGin] = ACTIONS(3692), - [anon_sym_match] = ACTIONS(3694), - [anon_sym_select] = ACTIONS(3694), - [anon_sym_lock] = ACTIONS(3694), - [anon_sym_rlock] = ACTIONS(3694), - [anon_sym_unsafe] = ACTIONS(3694), - [anon_sym_sql] = ACTIONS(3694), - [sym_int_literal] = ACTIONS(3694), - [sym_float_literal] = ACTIONS(3694), - [sym_rune_literal] = ACTIONS(3694), - [sym_pseudo_compile_time_identifier] = ACTIONS(3694), - [anon_sym_shared] = ACTIONS(3694), - [anon_sym_map_LBRACK] = ACTIONS(3694), - [anon_sym_chan] = ACTIONS(3694), - [anon_sym_thread] = ACTIONS(3694), - [anon_sym_atomic] = ACTIONS(3694), - [sym___double_quote] = ACTIONS(3694), - [sym___single_quote] = ACTIONS(3694), - [sym___c_double_quote] = ACTIONS(3694), - [sym___c_single_quote] = ACTIONS(3694), - [sym___r_double_quote] = ACTIONS(3694), - [sym___r_single_quote] = ACTIONS(3694), + [anon_sym_SEMI] = ACTIONS(1805), + [anon_sym_DOT] = ACTIONS(1805), + [anon_sym_as] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1805), + [anon_sym_COMMA] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_RPAREN] = ACTIONS(1805), + [anon_sym_PIPE] = ACTIONS(1805), + [anon_sym_fn] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_SLASH] = ACTIONS(1805), + [anon_sym_PERCENT] = ACTIONS(1805), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_EQ_EQ] = ACTIONS(1805), + [anon_sym_BANG_EQ] = ACTIONS(1805), + [anon_sym_LT_EQ] = ACTIONS(1805), + [anon_sym_GT_EQ] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1805), + [anon_sym_mut] = ACTIONS(1805), + [anon_sym_PLUS_PLUS] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1805), + [anon_sym_QMARK] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1805), + [anon_sym_spawn] = ACTIONS(1805), + [anon_sym_json_DOTdecode] = ACTIONS(1805), + [anon_sym_LBRACK2] = ACTIONS(1805), + [anon_sym_TILDE] = ACTIONS(1805), + [anon_sym_CARET] = ACTIONS(1805), + [anon_sym_AMP] = ACTIONS(1805), + [anon_sym_LT_DASH] = ACTIONS(1805), + [anon_sym_LT_LT] = ACTIONS(1805), + [anon_sym_GT_GT] = ACTIONS(1805), + [anon_sym_GT_GT_GT] = ACTIONS(1805), + [anon_sym_AMP_CARET] = ACTIONS(1805), + [anon_sym_AMP_AMP] = ACTIONS(1805), + [anon_sym_PIPE_PIPE] = ACTIONS(1805), + [anon_sym_or] = ACTIONS(1805), + [sym_none] = ACTIONS(1805), + [sym_true] = ACTIONS(1805), + [sym_false] = ACTIONS(1805), + [sym_nil] = ACTIONS(1805), + [anon_sym_QMARK_DOT] = ACTIONS(1805), + [anon_sym_POUND_LBRACK] = ACTIONS(1805), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_else] = ACTIONS(3698), + [anon_sym_DOLLARif] = ACTIONS(1805), + [anon_sym_is] = ACTIONS(1805), + [anon_sym_BANGis] = ACTIONS(1805), + [anon_sym_in] = ACTIONS(1805), + [anon_sym_BANGin] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [anon_sym_select] = ACTIONS(1805), + [anon_sym_lock] = ACTIONS(1805), + [anon_sym_rlock] = ACTIONS(1805), + [anon_sym_unsafe] = ACTIONS(1805), + [anon_sym_sql] = ACTIONS(1805), + [sym_int_literal] = ACTIONS(1805), + [sym_float_literal] = ACTIONS(1805), + [sym_rune_literal] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1805), + [anon_sym_c_SQUOTE] = ACTIONS(1805), + [anon_sym_c_DQUOTE] = ACTIONS(1805), + [anon_sym_r_SQUOTE] = ACTIONS(1805), + [anon_sym_r_DQUOTE] = ACTIONS(1805), + [sym_pseudo_compile_time_identifier] = ACTIONS(1805), + [anon_sym_shared] = ACTIONS(1805), + [anon_sym_map_LBRACK] = ACTIONS(1805), + [anon_sym_chan] = ACTIONS(1805), + [anon_sym_thread] = ACTIONS(1805), + [anon_sym_atomic] = ACTIONS(1805), }, [1119] = { [sym_line_comment] = STATE(1119), [sym_block_comment] = STATE(1119), - [sym_else_branch] = STATE(1198), - [sym_identifier] = ACTIONS(1799), - [anon_sym_LF] = ACTIONS(1799), - [anon_sym_CR] = ACTIONS(1799), - [anon_sym_CR_LF] = ACTIONS(1799), + [sym_reference_expression] = STATE(4449), + [sym_type_reference_expression] = STATE(1760), + [sym_plain_type] = STATE(1825), + [sym__plain_type_without_special] = STATE(1831), + [sym_anon_struct_type] = STATE(1830), + [sym_multi_return_type] = STATE(1831), + [sym_result_type] = STATE(1831), + [sym_option_type] = STATE(1831), + [sym_qualified_type] = STATE(1760), + [sym_fixed_array_type] = STATE(1830), + [sym_array_type] = STATE(1830), + [sym_pointer_type] = STATE(1830), + [sym_wrong_pointer_type] = STATE(1830), + [sym_map_type] = STATE(1830), + [sym_channel_type] = STATE(1830), + [sym_shared_type] = STATE(1830), + [sym_thread_type] = STATE(1830), + [sym_atomic_type] = STATE(1830), + [sym_generic_type] = STATE(1830), + [sym_function_type] = STATE(1830), + [sym_identifier] = ACTIONS(3700), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_DOT] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_COMMA] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_RPAREN] = ACTIONS(1799), - [anon_sym_PIPE] = ACTIONS(1799), - [anon_sym_fn] = ACTIONS(1799), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_SLASH] = ACTIONS(1799), - [anon_sym_PERCENT] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1799), - [anon_sym_GT] = ACTIONS(1799), - [anon_sym_EQ_EQ] = ACTIONS(1799), - [anon_sym_BANG_EQ] = ACTIONS(1799), - [anon_sym_LT_EQ] = ACTIONS(1799), - [anon_sym_GT_EQ] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1797), - [anon_sym_struct] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_QMARK] = ACTIONS(1799), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_go] = ACTIONS(1799), - [anon_sym_spawn] = ACTIONS(1799), - [anon_sym_json_DOTdecode] = ACTIONS(1799), - [anon_sym_LBRACK2] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_LT_DASH] = ACTIONS(1799), - [anon_sym_LT_LT] = ACTIONS(1799), - [anon_sym_GT_GT] = ACTIONS(1799), - [anon_sym_GT_GT_GT] = ACTIONS(1799), - [anon_sym_AMP_CARET] = ACTIONS(1799), - [anon_sym_AMP_AMP] = ACTIONS(1799), - [anon_sym_PIPE_PIPE] = ACTIONS(1799), - [anon_sym_or] = ACTIONS(1799), - [sym_none] = ACTIONS(1799), - [sym_true] = ACTIONS(1799), - [sym_false] = ACTIONS(1799), - [sym_nil] = ACTIONS(1799), - [anon_sym_QMARK_DOT] = ACTIONS(1799), - [anon_sym_POUND_LBRACK] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(3696), - [anon_sym_DOLLARif] = ACTIONS(1799), - [anon_sym_is] = ACTIONS(1799), - [anon_sym_BANGis] = ACTIONS(1799), - [anon_sym_in] = ACTIONS(1799), - [anon_sym_BANGin] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_select] = ACTIONS(1799), - [anon_sym_lock] = ACTIONS(1799), - [anon_sym_rlock] = ACTIONS(1799), - [anon_sym_unsafe] = ACTIONS(1799), - [anon_sym_sql] = ACTIONS(1799), - [sym_int_literal] = ACTIONS(1799), - [sym_float_literal] = ACTIONS(1799), - [sym_rune_literal] = ACTIONS(1799), - [sym_pseudo_compile_time_identifier] = ACTIONS(1799), - [anon_sym_shared] = ACTIONS(1799), - [anon_sym_map_LBRACK] = ACTIONS(1799), - [anon_sym_chan] = ACTIONS(1799), - [anon_sym_thread] = ACTIONS(1799), - [anon_sym_atomic] = ACTIONS(1799), - [sym___double_quote] = ACTIONS(1799), - [sym___single_quote] = ACTIONS(1799), - [sym___c_double_quote] = ACTIONS(1799), - [sym___c_single_quote] = ACTIONS(1799), - [sym___r_double_quote] = ACTIONS(1799), - [sym___r_single_quote] = ACTIONS(1799), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3704), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3712), + [anon_sym_LBRACK2] = ACTIONS(3714), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_POUND_LBRACK] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(601), + [anon_sym_STAR_EQ] = ACTIONS(601), + [anon_sym_SLASH_EQ] = ACTIONS(601), + [anon_sym_PERCENT_EQ] = ACTIONS(601), + [anon_sym_LT_LT_EQ] = ACTIONS(601), + [anon_sym_GT_GT_EQ] = ACTIONS(601), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(601), + [anon_sym_AMP_EQ] = ACTIONS(601), + [anon_sym_AMP_CARET_EQ] = ACTIONS(601), + [anon_sym_PLUS_EQ] = ACTIONS(601), + [anon_sym_DASH_EQ] = ACTIONS(601), + [anon_sym_PIPE_EQ] = ACTIONS(601), + [anon_sym_CARET_EQ] = ACTIONS(601), + [anon_sym_COLON_EQ] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(3718), + [anon_sym_map_LBRACK] = ACTIONS(3720), + [anon_sym_chan] = ACTIONS(3722), + [anon_sym_thread] = ACTIONS(3724), + [anon_sym_atomic] = ACTIONS(3726), }, [1120] = { [sym_line_comment] = STATE(1120), [sym_block_comment] = STATE(1120), - [sym_reference_expression] = STATE(4454), - [sym_type_reference_expression] = STATE(1751), - [sym_plain_type] = STATE(1811), - [sym__plain_type_without_special] = STATE(1842), - [sym_anon_struct_type] = STATE(1841), - [sym_multi_return_type] = STATE(1842), - [sym_result_type] = STATE(1842), - [sym_option_type] = STATE(1842), - [sym_qualified_type] = STATE(1751), - [sym_fixed_array_type] = STATE(1841), - [sym_array_type] = STATE(1841), - [sym_pointer_type] = STATE(1841), - [sym_wrong_pointer_type] = STATE(1841), - [sym_map_type] = STATE(1841), - [sym_channel_type] = STATE(1841), - [sym_shared_type] = STATE(1841), - [sym_thread_type] = STATE(1841), - [sym_atomic_type] = STATE(1841), - [sym_generic_type] = STATE(1841), - [sym_function_type] = STATE(1841), - [sym_identifier] = ACTIONS(3698), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(3702), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(3704), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(3706), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(623), - [anon_sym_POUND_LBRACK] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(623), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_STAR_EQ] = ACTIONS(623), - [anon_sym_SLASH_EQ] = ACTIONS(623), - [anon_sym_PERCENT_EQ] = ACTIONS(623), - [anon_sym_LT_LT_EQ] = ACTIONS(623), - [anon_sym_GT_GT_EQ] = ACTIONS(623), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(623), - [anon_sym_AMP_EQ] = ACTIONS(623), - [anon_sym_AMP_CARET_EQ] = ACTIONS(623), - [anon_sym_PLUS_EQ] = ACTIONS(623), - [anon_sym_DASH_EQ] = ACTIONS(623), - [anon_sym_PIPE_EQ] = ACTIONS(623), - [anon_sym_CARET_EQ] = ACTIONS(623), - [anon_sym_COLON_EQ] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(3716), - [anon_sym_map_LBRACK] = ACTIONS(3718), - [anon_sym_chan] = ACTIONS(3720), - [anon_sym_thread] = ACTIONS(3722), - [anon_sym_atomic] = ACTIONS(3724), - }, - [1121] = { - [sym_line_comment] = STATE(1121), - [sym_block_comment] = STATE(1121), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2320), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), + [sym_reference_expression] = STATE(4449), + [sym_type_reference_expression] = STATE(1760), + [sym_plain_type] = STATE(1800), + [sym__plain_type_without_special] = STATE(1831), + [sym_anon_struct_type] = STATE(1830), + [sym_multi_return_type] = STATE(1831), + [sym_result_type] = STATE(1831), + [sym_option_type] = STATE(1831), + [sym_qualified_type] = STATE(1760), + [sym_fixed_array_type] = STATE(1830), + [sym_array_type] = STATE(1830), + [sym_pointer_type] = STATE(1830), + [sym_wrong_pointer_type] = STATE(1830), + [sym_map_type] = STATE(1830), + [sym_channel_type] = STATE(1830), + [sym_shared_type] = STATE(1830), + [sym_thread_type] = STATE(1830), + [sym_atomic_type] = STATE(1830), + [sym_generic_type] = STATE(1830), + [sym_function_type] = STATE(1830), + [sym_identifier] = ACTIONS(3700), [anon_sym_LF] = ACTIONS(567), [anon_sym_CR] = ACTIONS(567), [anon_sym_CR_LF] = ACTIONS(567), @@ -149471,13 +149358,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(3702), [anon_sym_EQ] = ACTIONS(567), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(3704), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(3706), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(567), [anon_sym_LT] = ACTIONS(567), @@ -149487,14 +149374,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(567), [anon_sym_GT_EQ] = ACTIONS(567), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(3708), [anon_sym_PLUS_PLUS] = ACTIONS(567), [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3726), - [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3712), + [anon_sym_LBRACK2] = ACTIONS(3714), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(3716), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), [anon_sym_GT_GT_GT] = ACTIONS(567), @@ -149521,285 +149408,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(567), [anon_sym_CARET_EQ] = ACTIONS(567), [anon_sym_COLON_EQ] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - }, - [1122] = { - [sym_line_comment] = STATE(1122), - [sym_block_comment] = STATE(1122), - [sym_reference_expression] = STATE(4454), - [sym_type_reference_expression] = STATE(1751), - [sym_plain_type] = STATE(1815), - [sym__plain_type_without_special] = STATE(1842), - [sym_anon_struct_type] = STATE(1841), - [sym_multi_return_type] = STATE(1842), - [sym_result_type] = STATE(1842), - [sym_option_type] = STATE(1842), - [sym_qualified_type] = STATE(1751), - [sym_fixed_array_type] = STATE(1841), - [sym_array_type] = STATE(1841), - [sym_pointer_type] = STATE(1841), - [sym_wrong_pointer_type] = STATE(1841), - [sym_map_type] = STATE(1841), - [sym_channel_type] = STATE(1841), - [sym_shared_type] = STATE(1841), - [sym_thread_type] = STATE(1841), - [sym_atomic_type] = STATE(1841), - [sym_generic_type] = STATE(1841), - [sym_function_type] = STATE(1841), - [sym_identifier] = ACTIONS(3698), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3702), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3704), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(3706), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_STAR_EQ] = ACTIONS(619), - [anon_sym_SLASH_EQ] = ACTIONS(619), - [anon_sym_PERCENT_EQ] = ACTIONS(619), - [anon_sym_LT_LT_EQ] = ACTIONS(619), - [anon_sym_GT_GT_EQ] = ACTIONS(619), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(619), - [anon_sym_AMP_EQ] = ACTIONS(619), - [anon_sym_AMP_CARET_EQ] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(619), - [anon_sym_DASH_EQ] = ACTIONS(619), - [anon_sym_PIPE_EQ] = ACTIONS(619), - [anon_sym_CARET_EQ] = ACTIONS(619), - [anon_sym_COLON_EQ] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(3716), - [anon_sym_map_LBRACK] = ACTIONS(3718), - [anon_sym_chan] = ACTIONS(3720), - [anon_sym_thread] = ACTIONS(3722), - [anon_sym_atomic] = ACTIONS(3724), - }, - [1123] = { - [sym_line_comment] = STATE(1123), - [sym_block_comment] = STATE(1123), - [sym_reference_expression] = STATE(4454), - [sym_type_reference_expression] = STATE(1751), - [sym_plain_type] = STATE(1834), - [sym__plain_type_without_special] = STATE(1842), - [sym_anon_struct_type] = STATE(1841), - [sym_multi_return_type] = STATE(1842), - [sym_result_type] = STATE(1842), - [sym_option_type] = STATE(1842), - [sym_qualified_type] = STATE(1751), - [sym_fixed_array_type] = STATE(1841), - [sym_array_type] = STATE(1841), - [sym_pointer_type] = STATE(1841), - [sym_wrong_pointer_type] = STATE(1841), - [sym_map_type] = STATE(1841), - [sym_channel_type] = STATE(1841), - [sym_shared_type] = STATE(1841), - [sym_thread_type] = STATE(1841), - [sym_atomic_type] = STATE(1841), - [sym_generic_type] = STATE(1841), - [sym_function_type] = STATE(1841), - [sym_identifier] = ACTIONS(3698), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3702), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3704), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(3706), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_STAR_EQ] = ACTIONS(589), - [anon_sym_SLASH_EQ] = ACTIONS(589), - [anon_sym_PERCENT_EQ] = ACTIONS(589), - [anon_sym_LT_LT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), - [anon_sym_AMP_EQ] = ACTIONS(589), - [anon_sym_AMP_CARET_EQ] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(589), - [anon_sym_DASH_EQ] = ACTIONS(589), - [anon_sym_PIPE_EQ] = ACTIONS(589), - [anon_sym_CARET_EQ] = ACTIONS(589), - [anon_sym_COLON_EQ] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3716), - [anon_sym_map_LBRACK] = ACTIONS(3718), - [anon_sym_chan] = ACTIONS(3720), - [anon_sym_thread] = ACTIONS(3722), - [anon_sym_atomic] = ACTIONS(3724), + [anon_sym_shared] = ACTIONS(3718), + [anon_sym_map_LBRACK] = ACTIONS(3720), + [anon_sym_chan] = ACTIONS(3722), + [anon_sym_thread] = ACTIONS(3724), + [anon_sym_atomic] = ACTIONS(3726), }, - [1124] = { - [sym_line_comment] = STATE(1124), - [sym_block_comment] = STATE(1124), - [sym_type_parameters] = STATE(4199), - [sym_argument_list] = STATE(1208), - [sym_or_block] = STATE(1207), - [sym_identifier] = ACTIONS(1789), - [anon_sym_LF] = ACTIONS(1789), - [anon_sym_CR] = ACTIONS(1789), - [anon_sym_CR_LF] = ACTIONS(1789), + [1121] = { + [sym_line_comment] = STATE(1121), + [sym_block_comment] = STATE(1121), + [sym_type_parameters] = STATE(4009), + [sym_argument_list] = STATE(1153), + [sym_or_block] = STATE(1238), + [sym_identifier] = ACTIONS(3728), + [anon_sym_LF] = ACTIONS(3728), + [anon_sym_CR] = ACTIONS(3728), + [anon_sym_CR_LF] = ACTIONS(3728), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1789), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_RPAREN] = ACTIONS(1789), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_fn] = ACTIONS(1789), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3668), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3670), - [anon_sym_BANG_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(1789), - [anon_sym_mut] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_go] = ACTIONS(1789), - [anon_sym_spawn] = ACTIONS(1789), - [anon_sym_json_DOTdecode] = ACTIONS(1789), - [anon_sym_LBRACK2] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_CARET] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_LT_DASH] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3668), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_AMP_CARET] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3686), - [anon_sym_or] = ACTIONS(3688), - [sym_none] = ACTIONS(1789), - [sym_true] = ACTIONS(1789), - [sym_false] = ACTIONS(1789), - [sym_nil] = ACTIONS(1789), - [anon_sym_QMARK_DOT] = ACTIONS(3660), - [anon_sym_POUND_LBRACK] = ACTIONS(3682), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_DOLLARif] = ACTIONS(1789), - [anon_sym_is] = ACTIONS(3728), - [anon_sym_BANGis] = ACTIONS(3728), - [anon_sym_in] = ACTIONS(3692), - [anon_sym_BANGin] = ACTIONS(3692), - [anon_sym_match] = ACTIONS(1789), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1789), - [anon_sym_rlock] = ACTIONS(1789), - [anon_sym_unsafe] = ACTIONS(1789), - [anon_sym_sql] = ACTIONS(1789), - [sym_int_literal] = ACTIONS(1789), - [sym_float_literal] = ACTIONS(1789), - [sym_rune_literal] = ACTIONS(1789), - [sym_pseudo_compile_time_identifier] = ACTIONS(1789), - [anon_sym_shared] = ACTIONS(1789), - [anon_sym_map_LBRACK] = ACTIONS(1789), - [anon_sym_chan] = ACTIONS(1789), - [anon_sym_thread] = ACTIONS(1789), - [anon_sym_atomic] = ACTIONS(1789), - [sym___double_quote] = ACTIONS(1789), - [sym___single_quote] = ACTIONS(1789), - [sym___c_double_quote] = ACTIONS(1789), - [sym___c_single_quote] = ACTIONS(1789), - [sym___r_double_quote] = ACTIONS(1789), - [sym___r_single_quote] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(3728), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3728), + [anon_sym_COMMA] = ACTIONS(3728), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_RPAREN] = ACTIONS(3728), + [anon_sym_PIPE] = ACTIONS(3668), + [anon_sym_fn] = ACTIONS(3728), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3672), + [anon_sym_GT] = ACTIONS(3672), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3728), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_struct] = ACTIONS(3728), + [anon_sym_mut] = ACTIONS(3728), + [anon_sym_PLUS_PLUS] = ACTIONS(3688), + [anon_sym_DASH_DASH] = ACTIONS(3690), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_go] = ACTIONS(3728), + [anon_sym_spawn] = ACTIONS(3728), + [anon_sym_json_DOTdecode] = ACTIONS(3728), + [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3728), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_LT_DASH] = ACTIONS(3728), + [anon_sym_LT_LT] = ACTIONS(3670), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3670), + [anon_sym_AMP_CARET] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3692), + [anon_sym_or] = ACTIONS(3694), + [sym_none] = ACTIONS(3728), + [sym_true] = ACTIONS(3728), + [sym_false] = ACTIONS(3728), + [sym_nil] = ACTIONS(3728), + [anon_sym_QMARK_DOT] = ACTIONS(3664), + [anon_sym_POUND_LBRACK] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3728), + [anon_sym_DOLLARif] = ACTIONS(3728), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_BANGis] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3684), + [anon_sym_BANGin] = ACTIONS(3684), + [anon_sym_match] = ACTIONS(3728), + [anon_sym_select] = ACTIONS(3728), + [anon_sym_lock] = ACTIONS(3728), + [anon_sym_rlock] = ACTIONS(3728), + [anon_sym_unsafe] = ACTIONS(3728), + [anon_sym_sql] = ACTIONS(3728), + [sym_int_literal] = ACTIONS(3728), + [sym_float_literal] = ACTIONS(3728), + [sym_rune_literal] = ACTIONS(3728), + [anon_sym_SQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE] = ACTIONS(3728), + [anon_sym_c_SQUOTE] = ACTIONS(3728), + [anon_sym_c_DQUOTE] = ACTIONS(3728), + [anon_sym_r_SQUOTE] = ACTIONS(3728), + [anon_sym_r_DQUOTE] = ACTIONS(3728), + [sym_pseudo_compile_time_identifier] = ACTIONS(3728), + [anon_sym_shared] = ACTIONS(3728), + [anon_sym_map_LBRACK] = ACTIONS(3728), + [anon_sym_chan] = ACTIONS(3728), + [anon_sym_thread] = ACTIONS(3728), + [anon_sym_atomic] = ACTIONS(3728), }, - [1125] = { - [sym_line_comment] = STATE(1125), - [sym_block_comment] = STATE(1125), - [sym_type_parameters] = STATE(4199), - [sym_argument_list] = STATE(1208), - [sym_or_block] = STATE(1207), + [1122] = { + [sym_line_comment] = STATE(1122), + [sym_block_comment] = STATE(1122), + [sym_type_parameters] = STATE(4009), + [sym_argument_list] = STATE(1153), + [sym_or_block] = STATE(1238), [sym_identifier] = ACTIONS(3730), [anon_sym_LF] = ACTIONS(3730), [anon_sym_CR] = ACTIONS(3730), @@ -149807,60 +149516,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_SEMI] = ACTIONS(3730), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3662), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(3686), [anon_sym_LBRACE] = ACTIONS(3730), [anon_sym_COMMA] = ACTIONS(3730), - [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3666), [anon_sym_RPAREN] = ACTIONS(3730), - [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_PIPE] = ACTIONS(3668), [anon_sym_fn] = ACTIONS(3730), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3668), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3670), - [anon_sym_BANG_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_STAR] = ACTIONS(3730), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3672), + [anon_sym_GT] = ACTIONS(3672), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), [anon_sym_DOT_DOT_DOT] = ACTIONS(3730), - [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3674), [anon_sym_struct] = ACTIONS(3730), [anon_sym_mut] = ACTIONS(3730), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3688), + [anon_sym_DASH_DASH] = ACTIONS(3690), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), [anon_sym_go] = ACTIONS(3730), [anon_sym_spawn] = ACTIONS(3730), [anon_sym_json_DOTdecode] = ACTIONS(3730), - [anon_sym_LBRACK2] = ACTIONS(3682), + [anon_sym_LBRACK2] = ACTIONS(3680), [anon_sym_TILDE] = ACTIONS(3730), - [anon_sym_CARET] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3730), + [anon_sym_AMP] = ACTIONS(3730), [anon_sym_LT_DASH] = ACTIONS(3730), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3668), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_AMP_CARET] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3686), - [anon_sym_or] = ACTIONS(3688), + [anon_sym_LT_LT] = ACTIONS(3670), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3670), + [anon_sym_AMP_CARET] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3692), + [anon_sym_or] = ACTIONS(3694), [sym_none] = ACTIONS(3730), [sym_true] = ACTIONS(3730), [sym_false] = ACTIONS(3730), [sym_nil] = ACTIONS(3730), - [anon_sym_QMARK_DOT] = ACTIONS(3660), - [anon_sym_POUND_LBRACK] = ACTIONS(3682), + [anon_sym_QMARK_DOT] = ACTIONS(3664), + [anon_sym_POUND_LBRACK] = ACTIONS(3680), [anon_sym_if] = ACTIONS(3730), [anon_sym_DOLLARif] = ACTIONS(3730), - [anon_sym_is] = ACTIONS(3690), - [anon_sym_BANGis] = ACTIONS(3690), - [anon_sym_in] = ACTIONS(3692), - [anon_sym_BANGin] = ACTIONS(3692), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_BANGis] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3684), + [anon_sym_BANGin] = ACTIONS(3684), [anon_sym_match] = ACTIONS(3730), [anon_sym_select] = ACTIONS(3730), [anon_sym_lock] = ACTIONS(3730), @@ -149870,25 +149579,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(3730), [sym_float_literal] = ACTIONS(3730), [sym_rune_literal] = ACTIONS(3730), + [anon_sym_SQUOTE] = ACTIONS(3730), + [anon_sym_DQUOTE] = ACTIONS(3730), + [anon_sym_c_SQUOTE] = ACTIONS(3730), + [anon_sym_c_DQUOTE] = ACTIONS(3730), + [anon_sym_r_SQUOTE] = ACTIONS(3730), + [anon_sym_r_DQUOTE] = ACTIONS(3730), [sym_pseudo_compile_time_identifier] = ACTIONS(3730), [anon_sym_shared] = ACTIONS(3730), [anon_sym_map_LBRACK] = ACTIONS(3730), [anon_sym_chan] = ACTIONS(3730), [anon_sym_thread] = ACTIONS(3730), [anon_sym_atomic] = ACTIONS(3730), - [sym___double_quote] = ACTIONS(3730), - [sym___single_quote] = ACTIONS(3730), - [sym___c_double_quote] = ACTIONS(3730), - [sym___c_single_quote] = ACTIONS(3730), - [sym___r_double_quote] = ACTIONS(3730), - [sym___r_single_quote] = ACTIONS(3730), }, - [1126] = { - [sym_line_comment] = STATE(1126), - [sym_block_comment] = STATE(1126), - [sym_type_parameters] = STATE(4199), - [sym_argument_list] = STATE(1208), - [sym_or_block] = STATE(1207), + [1123] = { + [sym_line_comment] = STATE(1123), + [sym_block_comment] = STATE(1123), + [sym_reference_expression] = STATE(4449), + [sym_type_reference_expression] = STATE(1760), + [sym_plain_type] = STATE(1804), + [sym__plain_type_without_special] = STATE(1831), + [sym_anon_struct_type] = STATE(1830), + [sym_multi_return_type] = STATE(1831), + [sym_result_type] = STATE(1831), + [sym_option_type] = STATE(1831), + [sym_qualified_type] = STATE(1760), + [sym_fixed_array_type] = STATE(1830), + [sym_array_type] = STATE(1830), + [sym_pointer_type] = STATE(1830), + [sym_wrong_pointer_type] = STATE(1830), + [sym_map_type] = STATE(1830), + [sym_channel_type] = STATE(1830), + [sym_shared_type] = STATE(1830), + [sym_thread_type] = STATE(1830), + [sym_atomic_type] = STATE(1830), + [sym_generic_type] = STATE(1830), + [sym_function_type] = STATE(1830), + [sym_identifier] = ACTIONS(3700), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_CR] = ACTIONS(597), + [anon_sym_CR_LF] = ACTIONS(597), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(3704), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3712), + [anon_sym_LBRACK2] = ACTIONS(3714), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(597), + [anon_sym_POUND_LBRACK] = ACTIONS(597), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(597), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(597), + [anon_sym_STAR_EQ] = ACTIONS(597), + [anon_sym_SLASH_EQ] = ACTIONS(597), + [anon_sym_PERCENT_EQ] = ACTIONS(597), + [anon_sym_LT_LT_EQ] = ACTIONS(597), + [anon_sym_GT_GT_EQ] = ACTIONS(597), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(597), + [anon_sym_AMP_EQ] = ACTIONS(597), + [anon_sym_AMP_CARET_EQ] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(597), + [anon_sym_DASH_EQ] = ACTIONS(597), + [anon_sym_PIPE_EQ] = ACTIONS(597), + [anon_sym_CARET_EQ] = ACTIONS(597), + [anon_sym_COLON_EQ] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(3718), + [anon_sym_map_LBRACK] = ACTIONS(3720), + [anon_sym_chan] = ACTIONS(3722), + [anon_sym_thread] = ACTIONS(3724), + [anon_sym_atomic] = ACTIONS(3726), + }, + [1124] = { + [sym_line_comment] = STATE(1124), + [sym_block_comment] = STATE(1124), + [sym_type_parameters] = STATE(4009), + [sym_argument_list] = STATE(1153), + [sym_or_block] = STATE(1238), [sym_identifier] = ACTIONS(3732), [anon_sym_LF] = ACTIONS(3732), [anon_sym_CR] = ACTIONS(3732), @@ -149896,60 +149694,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_SEMI] = ACTIONS(3732), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3662), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(3686), [anon_sym_LBRACE] = ACTIONS(3732), [anon_sym_COMMA] = ACTIONS(3732), - [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3666), [anon_sym_RPAREN] = ACTIONS(3732), - [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_PIPE] = ACTIONS(3668), [anon_sym_fn] = ACTIONS(3732), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3668), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3670), - [anon_sym_BANG_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3672), + [anon_sym_GT] = ACTIONS(3672), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), [anon_sym_DOT_DOT_DOT] = ACTIONS(3732), - [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3674), [anon_sym_struct] = ACTIONS(3732), [anon_sym_mut] = ACTIONS(3732), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3688), + [anon_sym_DASH_DASH] = ACTIONS(3690), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), [anon_sym_go] = ACTIONS(3732), [anon_sym_spawn] = ACTIONS(3732), [anon_sym_json_DOTdecode] = ACTIONS(3732), - [anon_sym_LBRACK2] = ACTIONS(3682), + [anon_sym_LBRACK2] = ACTIONS(3680), [anon_sym_TILDE] = ACTIONS(3732), - [anon_sym_CARET] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3670), [anon_sym_LT_DASH] = ACTIONS(3732), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3668), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_AMP_CARET] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3686), - [anon_sym_or] = ACTIONS(3688), + [anon_sym_LT_LT] = ACTIONS(3670), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3670), + [anon_sym_AMP_CARET] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3692), + [anon_sym_or] = ACTIONS(3694), [sym_none] = ACTIONS(3732), [sym_true] = ACTIONS(3732), [sym_false] = ACTIONS(3732), [sym_nil] = ACTIONS(3732), - [anon_sym_QMARK_DOT] = ACTIONS(3660), - [anon_sym_POUND_LBRACK] = ACTIONS(3682), + [anon_sym_QMARK_DOT] = ACTIONS(3664), + [anon_sym_POUND_LBRACK] = ACTIONS(3680), [anon_sym_if] = ACTIONS(3732), [anon_sym_DOLLARif] = ACTIONS(3732), - [anon_sym_is] = ACTIONS(3690), - [anon_sym_BANGis] = ACTIONS(3690), - [anon_sym_in] = ACTIONS(3692), - [anon_sym_BANGin] = ACTIONS(3692), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_BANGis] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3684), + [anon_sym_BANGin] = ACTIONS(3684), [anon_sym_match] = ACTIONS(3732), [anon_sym_select] = ACTIONS(3732), [anon_sym_lock] = ACTIONS(3732), @@ -149959,375 +149757,377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(3732), [sym_float_literal] = ACTIONS(3732), [sym_rune_literal] = ACTIONS(3732), + [anon_sym_SQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE] = ACTIONS(3732), + [anon_sym_c_SQUOTE] = ACTIONS(3732), + [anon_sym_c_DQUOTE] = ACTIONS(3732), + [anon_sym_r_SQUOTE] = ACTIONS(3732), + [anon_sym_r_DQUOTE] = ACTIONS(3732), [sym_pseudo_compile_time_identifier] = ACTIONS(3732), [anon_sym_shared] = ACTIONS(3732), [anon_sym_map_LBRACK] = ACTIONS(3732), [anon_sym_chan] = ACTIONS(3732), [anon_sym_thread] = ACTIONS(3732), [anon_sym_atomic] = ACTIONS(3732), - [sym___double_quote] = ACTIONS(3732), - [sym___single_quote] = ACTIONS(3732), - [sym___c_double_quote] = ACTIONS(3732), - [sym___c_single_quote] = ACTIONS(3732), - [sym___r_double_quote] = ACTIONS(3732), - [sym___r_single_quote] = ACTIONS(3732), + }, + [1125] = { + [sym_line_comment] = STATE(1125), + [sym_block_comment] = STATE(1125), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2386), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), + [anon_sym_LF] = ACTIONS(607), + [anon_sym_CR] = ACTIONS(607), + [anon_sym_CR_LF] = ACTIONS(607), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3734), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(607), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_is] = ACTIONS(607), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(607), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_STAR_EQ] = ACTIONS(607), + [anon_sym_SLASH_EQ] = ACTIONS(607), + [anon_sym_PERCENT_EQ] = ACTIONS(607), + [anon_sym_LT_LT_EQ] = ACTIONS(607), + [anon_sym_GT_GT_EQ] = ACTIONS(607), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(607), + [anon_sym_AMP_EQ] = ACTIONS(607), + [anon_sym_AMP_CARET_EQ] = ACTIONS(607), + [anon_sym_PLUS_EQ] = ACTIONS(607), + [anon_sym_DASH_EQ] = ACTIONS(607), + [anon_sym_PIPE_EQ] = ACTIONS(607), + [anon_sym_CARET_EQ] = ACTIONS(607), + [anon_sym_COLON_EQ] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [1126] = { + [sym_line_comment] = STATE(1126), + [sym_block_comment] = STATE(1126), + [sym_type_parameters] = STATE(4009), + [sym_argument_list] = STATE(1153), + [sym_or_block] = STATE(1238), + [sym_identifier] = ACTIONS(1773), + [anon_sym_LF] = ACTIONS(1773), + [anon_sym_CR] = ACTIONS(1773), + [anon_sym_CR_LF] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_COMMA] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(3668), + [anon_sym_fn] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3672), + [anon_sym_GT] = ACTIONS(3672), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_struct] = ACTIONS(1773), + [anon_sym_mut] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(3688), + [anon_sym_DASH_DASH] = ACTIONS(3690), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_go] = ACTIONS(1773), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1773), + [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(1773), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_LT_DASH] = ACTIONS(1773), + [anon_sym_LT_LT] = ACTIONS(3670), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3670), + [anon_sym_AMP_CARET] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3692), + [anon_sym_or] = ACTIONS(3694), + [sym_none] = ACTIONS(1773), + [sym_true] = ACTIONS(1773), + [sym_false] = ACTIONS(1773), + [sym_nil] = ACTIONS(1773), + [anon_sym_QMARK_DOT] = ACTIONS(3664), + [anon_sym_POUND_LBRACK] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_DOLLARif] = ACTIONS(1773), + [anon_sym_is] = ACTIONS(3736), + [anon_sym_BANGis] = ACTIONS(3736), + [anon_sym_in] = ACTIONS(3684), + [anon_sym_BANGin] = ACTIONS(3684), + [anon_sym_match] = ACTIONS(1773), + [anon_sym_select] = ACTIONS(1773), + [anon_sym_lock] = ACTIONS(1773), + [anon_sym_rlock] = ACTIONS(1773), + [anon_sym_unsafe] = ACTIONS(1773), + [anon_sym_sql] = ACTIONS(1773), + [sym_int_literal] = ACTIONS(1773), + [sym_float_literal] = ACTIONS(1773), + [sym_rune_literal] = ACTIONS(1773), + [anon_sym_SQUOTE] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [anon_sym_c_SQUOTE] = ACTIONS(1773), + [anon_sym_c_DQUOTE] = ACTIONS(1773), + [anon_sym_r_SQUOTE] = ACTIONS(1773), + [anon_sym_r_DQUOTE] = ACTIONS(1773), + [sym_pseudo_compile_time_identifier] = ACTIONS(1773), + [anon_sym_shared] = ACTIONS(1773), + [anon_sym_map_LBRACK] = ACTIONS(1773), + [anon_sym_chan] = ACTIONS(1773), + [anon_sym_thread] = ACTIONS(1773), + [anon_sym_atomic] = ACTIONS(1773), }, [1127] = { [sym_line_comment] = STATE(1127), [sym_block_comment] = STATE(1127), - [sym_else_branch] = STATE(1199), - [sym_identifier] = ACTIONS(1805), - [anon_sym_LF] = ACTIONS(1805), - [anon_sym_CR] = ACTIONS(1805), - [anon_sym_CR_LF] = ACTIONS(1805), + [sym_else_branch] = STATE(1183), + [sym_identifier] = ACTIONS(1799), + [anon_sym_LF] = ACTIONS(1799), + [anon_sym_CR] = ACTIONS(1799), + [anon_sym_CR_LF] = ACTIONS(1799), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_as] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_COMMA] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1805), - [anon_sym_fn] = ACTIONS(1805), - [anon_sym_PLUS] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1805), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_SLASH] = ACTIONS(1805), - [anon_sym_PERCENT] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1805), - [anon_sym_GT] = ACTIONS(1805), - [anon_sym_EQ_EQ] = ACTIONS(1805), - [anon_sym_BANG_EQ] = ACTIONS(1805), - [anon_sym_LT_EQ] = ACTIONS(1805), - [anon_sym_GT_EQ] = ACTIONS(1805), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_struct] = ACTIONS(1805), - [anon_sym_mut] = ACTIONS(1805), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [anon_sym_QMARK] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_go] = ACTIONS(1805), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1805), - [anon_sym_LBRACK2] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_CARET] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1805), - [anon_sym_LT_DASH] = ACTIONS(1805), - [anon_sym_LT_LT] = ACTIONS(1805), - [anon_sym_GT_GT] = ACTIONS(1805), - [anon_sym_GT_GT_GT] = ACTIONS(1805), - [anon_sym_AMP_CARET] = ACTIONS(1805), - [anon_sym_AMP_AMP] = ACTIONS(1805), - [anon_sym_PIPE_PIPE] = ACTIONS(1805), - [anon_sym_or] = ACTIONS(1805), - [sym_none] = ACTIONS(1805), - [sym_true] = ACTIONS(1805), - [sym_false] = ACTIONS(1805), - [sym_nil] = ACTIONS(1805), - [anon_sym_QMARK_DOT] = ACTIONS(1805), - [anon_sym_POUND_LBRACK] = ACTIONS(1805), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_else] = ACTIONS(3696), - [anon_sym_DOLLARif] = ACTIONS(1805), - [anon_sym_is] = ACTIONS(1805), - [anon_sym_BANGis] = ACTIONS(1805), - [anon_sym_in] = ACTIONS(1805), - [anon_sym_BANGin] = ACTIONS(1805), - [anon_sym_match] = ACTIONS(1805), - [anon_sym_select] = ACTIONS(1805), - [anon_sym_lock] = ACTIONS(1805), - [anon_sym_rlock] = ACTIONS(1805), - [anon_sym_unsafe] = ACTIONS(1805), - [anon_sym_sql] = ACTIONS(1805), - [sym_int_literal] = ACTIONS(1805), - [sym_float_literal] = ACTIONS(1805), - [sym_rune_literal] = ACTIONS(1805), - [sym_pseudo_compile_time_identifier] = ACTIONS(1805), - [anon_sym_shared] = ACTIONS(1805), - [anon_sym_map_LBRACK] = ACTIONS(1805), - [anon_sym_chan] = ACTIONS(1805), - [anon_sym_thread] = ACTIONS(1805), - [anon_sym_atomic] = ACTIONS(1805), - [sym___double_quote] = ACTIONS(1805), - [sym___single_quote] = ACTIONS(1805), - [sym___c_double_quote] = ACTIONS(1805), - [sym___c_single_quote] = ACTIONS(1805), - [sym___r_double_quote] = ACTIONS(1805), - [sym___r_single_quote] = ACTIONS(1805), + [anon_sym_SEMI] = ACTIONS(1799), + [anon_sym_DOT] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_COMMA] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_fn] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1799), + [anon_sym_SLASH] = ACTIONS(1799), + [anon_sym_PERCENT] = ACTIONS(1799), + [anon_sym_LT] = ACTIONS(1799), + [anon_sym_GT] = ACTIONS(1799), + [anon_sym_EQ_EQ] = ACTIONS(1799), + [anon_sym_BANG_EQ] = ACTIONS(1799), + [anon_sym_LT_EQ] = ACTIONS(1799), + [anon_sym_GT_EQ] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1797), + [anon_sym_struct] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_QMARK] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_go] = ACTIONS(1799), + [anon_sym_spawn] = ACTIONS(1799), + [anon_sym_json_DOTdecode] = ACTIONS(1799), + [anon_sym_LBRACK2] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_LT_DASH] = ACTIONS(1799), + [anon_sym_LT_LT] = ACTIONS(1799), + [anon_sym_GT_GT] = ACTIONS(1799), + [anon_sym_GT_GT_GT] = ACTIONS(1799), + [anon_sym_AMP_CARET] = ACTIONS(1799), + [anon_sym_AMP_AMP] = ACTIONS(1799), + [anon_sym_PIPE_PIPE] = ACTIONS(1799), + [anon_sym_or] = ACTIONS(1799), + [sym_none] = ACTIONS(1799), + [sym_true] = ACTIONS(1799), + [sym_false] = ACTIONS(1799), + [sym_nil] = ACTIONS(1799), + [anon_sym_QMARK_DOT] = ACTIONS(1799), + [anon_sym_POUND_LBRACK] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(3698), + [anon_sym_DOLLARif] = ACTIONS(1799), + [anon_sym_is] = ACTIONS(1799), + [anon_sym_BANGis] = ACTIONS(1799), + [anon_sym_in] = ACTIONS(1799), + [anon_sym_BANGin] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_select] = ACTIONS(1799), + [anon_sym_lock] = ACTIONS(1799), + [anon_sym_rlock] = ACTIONS(1799), + [anon_sym_unsafe] = ACTIONS(1799), + [anon_sym_sql] = ACTIONS(1799), + [sym_int_literal] = ACTIONS(1799), + [sym_float_literal] = ACTIONS(1799), + [sym_rune_literal] = ACTIONS(1799), + [anon_sym_SQUOTE] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [anon_sym_c_SQUOTE] = ACTIONS(1799), + [anon_sym_c_DQUOTE] = ACTIONS(1799), + [anon_sym_r_SQUOTE] = ACTIONS(1799), + [anon_sym_r_DQUOTE] = ACTIONS(1799), + [sym_pseudo_compile_time_identifier] = ACTIONS(1799), + [anon_sym_shared] = ACTIONS(1799), + [anon_sym_map_LBRACK] = ACTIONS(1799), + [anon_sym_chan] = ACTIONS(1799), + [anon_sym_thread] = ACTIONS(1799), + [anon_sym_atomic] = ACTIONS(1799), }, [1128] = { [sym_line_comment] = STATE(1128), [sym_block_comment] = STATE(1128), - [sym_type_parameters] = STATE(4199), - [sym_argument_list] = STATE(1208), - [sym_or_block] = STATE(1207), - [sym_identifier] = ACTIONS(3734), - [anon_sym_LF] = ACTIONS(3736), - [anon_sym_CR] = ACTIONS(3736), - [anon_sym_CR_LF] = ACTIONS(3736), + [sym_type_parameters] = STATE(4009), + [sym_argument_list] = STATE(1153), + [sym_or_block] = STATE(1238), + [sym_identifier] = ACTIONS(3738), + [anon_sym_LF] = ACTIONS(3738), + [anon_sym_CR] = ACTIONS(3738), + [anon_sym_CR_LF] = ACTIONS(3738), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3736), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3734), - [anon_sym_COMMA] = ACTIONS(3736), - [anon_sym_RBRACE] = ACTIONS(3734), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_PIPE] = ACTIONS(3666), - [anon_sym_fn] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3668), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3670), - [anon_sym_BANG_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_struct] = ACTIONS(3734), - [anon_sym_mut] = ACTIONS(3734), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_go] = ACTIONS(3734), - [anon_sym_spawn] = ACTIONS(3734), - [anon_sym_json_DOTdecode] = ACTIONS(3734), - [anon_sym_LBRACK2] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(3734), - [anon_sym_CARET] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_LT_DASH] = ACTIONS(3734), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3668), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_AMP_CARET] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3686), - [anon_sym_or] = ACTIONS(3688), - [sym_none] = ACTIONS(3734), - [sym_true] = ACTIONS(3734), - [sym_false] = ACTIONS(3734), - [sym_nil] = ACTIONS(3734), - [anon_sym_QMARK_DOT] = ACTIONS(3660), - [anon_sym_POUND_LBRACK] = ACTIONS(3682), - [anon_sym_if] = ACTIONS(3734), - [anon_sym_DOLLARif] = ACTIONS(3734), - [anon_sym_is] = ACTIONS(3690), - [anon_sym_BANGis] = ACTIONS(3690), - [anon_sym_in] = ACTIONS(3692), - [anon_sym_BANGin] = ACTIONS(3692), - [anon_sym_match] = ACTIONS(3734), - [anon_sym_select] = ACTIONS(3734), - [anon_sym_lock] = ACTIONS(3734), - [anon_sym_rlock] = ACTIONS(3734), - [anon_sym_unsafe] = ACTIONS(3734), - [anon_sym_sql] = ACTIONS(3734), - [sym_int_literal] = ACTIONS(3734), - [sym_float_literal] = ACTIONS(3734), - [sym_rune_literal] = ACTIONS(3734), - [sym_pseudo_compile_time_identifier] = ACTIONS(3734), - [anon_sym_shared] = ACTIONS(3734), - [anon_sym_map_LBRACK] = ACTIONS(3734), - [anon_sym_chan] = ACTIONS(3734), - [anon_sym_thread] = ACTIONS(3734), - [anon_sym_atomic] = ACTIONS(3734), - [sym___double_quote] = ACTIONS(3734), - [sym___single_quote] = ACTIONS(3734), - [sym___c_double_quote] = ACTIONS(3734), - [sym___c_single_quote] = ACTIONS(3734), - [sym___r_double_quote] = ACTIONS(3734), - [sym___r_single_quote] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3738), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3738), + [anon_sym_RBRACE] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_PIPE] = ACTIONS(3668), + [anon_sym_fn] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3672), + [anon_sym_GT] = ACTIONS(3672), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_mut] = ACTIONS(3738), + [anon_sym_PLUS_PLUS] = ACTIONS(3688), + [anon_sym_DASH_DASH] = ACTIONS(3690), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_go] = ACTIONS(3738), + [anon_sym_spawn] = ACTIONS(3738), + [anon_sym_json_DOTdecode] = ACTIONS(3738), + [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3738), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_LT_DASH] = ACTIONS(3738), + [anon_sym_LT_LT] = ACTIONS(3670), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3670), + [anon_sym_AMP_CARET] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3692), + [anon_sym_or] = ACTIONS(3694), + [sym_none] = ACTIONS(3738), + [sym_true] = ACTIONS(3738), + [sym_false] = ACTIONS(3738), + [sym_nil] = ACTIONS(3738), + [anon_sym_QMARK_DOT] = ACTIONS(3664), + [anon_sym_POUND_LBRACK] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_DOLLARif] = ACTIONS(3738), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_BANGis] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3684), + [anon_sym_BANGin] = ACTIONS(3684), + [anon_sym_match] = ACTIONS(3738), + [anon_sym_select] = ACTIONS(3738), + [anon_sym_lock] = ACTIONS(3738), + [anon_sym_rlock] = ACTIONS(3738), + [anon_sym_unsafe] = ACTIONS(3738), + [anon_sym_sql] = ACTIONS(3738), + [sym_int_literal] = ACTIONS(3738), + [sym_float_literal] = ACTIONS(3738), + [sym_rune_literal] = ACTIONS(3738), + [anon_sym_SQUOTE] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3738), + [anon_sym_c_SQUOTE] = ACTIONS(3738), + [anon_sym_c_DQUOTE] = ACTIONS(3738), + [anon_sym_r_SQUOTE] = ACTIONS(3738), + [anon_sym_r_DQUOTE] = ACTIONS(3738), + [sym_pseudo_compile_time_identifier] = ACTIONS(3738), + [anon_sym_shared] = ACTIONS(3738), + [anon_sym_map_LBRACK] = ACTIONS(3738), + [anon_sym_chan] = ACTIONS(3738), + [anon_sym_thread] = ACTIONS(3738), + [anon_sym_atomic] = ACTIONS(3738), }, [1129] = { [sym_line_comment] = STATE(1129), [sym_block_comment] = STATE(1129), - [sym_identifier] = ACTIONS(1843), - [anon_sym_LF] = ACTIONS(1843), - [anon_sym_CR] = ACTIONS(1843), - [anon_sym_CR_LF] = ACTIONS(1843), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_DOT] = ACTIONS(1843), - [anon_sym_as] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_COMMA] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_RPAREN] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_fn] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1843), - [anon_sym_SLASH] = ACTIONS(1843), - [anon_sym_PERCENT] = ACTIONS(1843), - [anon_sym_LT] = ACTIONS(1843), - [anon_sym_GT] = ACTIONS(1843), - [anon_sym_EQ_EQ] = ACTIONS(1843), - [anon_sym_BANG_EQ] = ACTIONS(1843), - [anon_sym_LT_EQ] = ACTIONS(1843), - [anon_sym_GT_EQ] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_struct] = ACTIONS(1843), - [anon_sym_mut] = ACTIONS(1843), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_go] = ACTIONS(1843), - [anon_sym_spawn] = ACTIONS(1843), - [anon_sym_json_DOTdecode] = ACTIONS(1843), - [anon_sym_LBRACK2] = ACTIONS(1843), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_CARET] = ACTIONS(1843), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_LT_DASH] = ACTIONS(1843), - [anon_sym_LT_LT] = ACTIONS(1843), - [anon_sym_GT_GT] = ACTIONS(1843), - [anon_sym_GT_GT_GT] = ACTIONS(1843), - [anon_sym_AMP_CARET] = ACTIONS(1843), - [anon_sym_AMP_AMP] = ACTIONS(1843), - [anon_sym_PIPE_PIPE] = ACTIONS(1843), - [anon_sym_or] = ACTIONS(1843), - [sym_none] = ACTIONS(1843), - [sym_true] = ACTIONS(1843), - [sym_false] = ACTIONS(1843), - [sym_nil] = ACTIONS(1843), - [anon_sym_QMARK_DOT] = ACTIONS(1843), - [anon_sym_POUND_LBRACK] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_DOLLARif] = ACTIONS(1843), - [anon_sym_DOLLARelse] = ACTIONS(3738), - [anon_sym_is] = ACTIONS(1843), - [anon_sym_BANGis] = ACTIONS(1843), - [anon_sym_in] = ACTIONS(1843), - [anon_sym_BANGin] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_select] = ACTIONS(1843), - [anon_sym_lock] = ACTIONS(1843), - [anon_sym_rlock] = ACTIONS(1843), - [anon_sym_unsafe] = ACTIONS(1843), - [anon_sym_sql] = ACTIONS(1843), - [sym_int_literal] = ACTIONS(1843), - [sym_float_literal] = ACTIONS(1843), - [sym_rune_literal] = ACTIONS(1843), - [sym_pseudo_compile_time_identifier] = ACTIONS(1843), - [anon_sym_shared] = ACTIONS(1843), - [anon_sym_map_LBRACK] = ACTIONS(1843), - [anon_sym_chan] = ACTIONS(1843), - [anon_sym_thread] = ACTIONS(1843), - [anon_sym_atomic] = ACTIONS(1843), - [sym___double_quote] = ACTIONS(1843), - [sym___single_quote] = ACTIONS(1843), - [sym___c_double_quote] = ACTIONS(1843), - [sym___c_single_quote] = ACTIONS(1843), - [sym___r_double_quote] = ACTIONS(1843), - [sym___r_single_quote] = ACTIONS(1843), - }, - [1130] = { - [sym_line_comment] = STATE(1130), - [sym_block_comment] = STATE(1130), - [sym_identifier] = ACTIONS(1813), - [anon_sym_LF] = ACTIONS(1813), - [anon_sym_CR] = ACTIONS(1813), - [anon_sym_CR_LF] = ACTIONS(1813), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_as] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_COMMA] = ACTIONS(1813), - [anon_sym_RBRACE] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(1813), - [anon_sym_RPAREN] = ACTIONS(1813), - [anon_sym_PIPE] = ACTIONS(1813), - [anon_sym_fn] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_SLASH] = ACTIONS(1813), - [anon_sym_PERCENT] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_GT] = ACTIONS(1813), - [anon_sym_EQ_EQ] = ACTIONS(1813), - [anon_sym_BANG_EQ] = ACTIONS(1813), - [anon_sym_LT_EQ] = ACTIONS(1813), - [anon_sym_GT_EQ] = ACTIONS(1813), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_mut] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_QMARK] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_go] = ACTIONS(1813), - [anon_sym_spawn] = ACTIONS(1813), - [anon_sym_json_DOTdecode] = ACTIONS(1813), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_LT_DASH] = ACTIONS(1813), - [anon_sym_LT_LT] = ACTIONS(1813), - [anon_sym_GT_GT] = ACTIONS(1813), - [anon_sym_GT_GT_GT] = ACTIONS(1813), - [anon_sym_AMP_CARET] = ACTIONS(1813), - [anon_sym_AMP_AMP] = ACTIONS(1813), - [anon_sym_PIPE_PIPE] = ACTIONS(1813), - [anon_sym_or] = ACTIONS(1813), - [sym_none] = ACTIONS(1813), - [sym_true] = ACTIONS(1813), - [sym_false] = ACTIONS(1813), - [sym_nil] = ACTIONS(1813), - [anon_sym_QMARK_DOT] = ACTIONS(1813), - [anon_sym_POUND_LBRACK] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_else] = ACTIONS(1813), - [anon_sym_DOLLARif] = ACTIONS(1813), - [anon_sym_is] = ACTIONS(1813), - [anon_sym_BANGis] = ACTIONS(1813), - [anon_sym_in] = ACTIONS(1813), - [anon_sym_BANGin] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1813), - [anon_sym_rlock] = ACTIONS(1813), - [anon_sym_unsafe] = ACTIONS(1813), - [anon_sym_sql] = ACTIONS(1813), - [sym_int_literal] = ACTIONS(1813), - [sym_float_literal] = ACTIONS(1813), - [sym_rune_literal] = ACTIONS(1813), - [sym_pseudo_compile_time_identifier] = ACTIONS(1813), - [anon_sym_shared] = ACTIONS(1813), - [anon_sym_map_LBRACK] = ACTIONS(1813), - [anon_sym_chan] = ACTIONS(1813), - [anon_sym_thread] = ACTIONS(1813), - [anon_sym_atomic] = ACTIONS(1813), - [sym___double_quote] = ACTIONS(1813), - [sym___single_quote] = ACTIONS(1813), - [sym___c_double_quote] = ACTIONS(1813), - [sym___c_single_quote] = ACTIONS(1813), - [sym___r_double_quote] = ACTIONS(1813), - [sym___r_single_quote] = ACTIONS(1813), - }, - [1131] = { - [sym_line_comment] = STATE(1131), - [sym_block_comment] = STATE(1131), [sym_identifier] = ACTIONS(1809), [anon_sym_LF] = ACTIONS(1809), [anon_sym_CR] = ACTIONS(1809), @@ -150400,110 +150200,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1809), [sym_float_literal] = ACTIONS(1809), [sym_rune_literal] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_c_SQUOTE] = ACTIONS(1809), + [anon_sym_c_DQUOTE] = ACTIONS(1809), + [anon_sym_r_SQUOTE] = ACTIONS(1809), + [anon_sym_r_DQUOTE] = ACTIONS(1809), [sym_pseudo_compile_time_identifier] = ACTIONS(1809), [anon_sym_shared] = ACTIONS(1809), [anon_sym_map_LBRACK] = ACTIONS(1809), [anon_sym_chan] = ACTIONS(1809), [anon_sym_thread] = ACTIONS(1809), [anon_sym_atomic] = ACTIONS(1809), - [sym___double_quote] = ACTIONS(1809), - [sym___single_quote] = ACTIONS(1809), - [sym___c_double_quote] = ACTIONS(1809), - [sym___c_single_quote] = ACTIONS(1809), - [sym___r_double_quote] = ACTIONS(1809), - [sym___r_single_quote] = ACTIONS(1809), }, - [1132] = { - [sym_line_comment] = STATE(1132), - [sym_block_comment] = STATE(1132), - [sym_type_parameters] = STATE(1203), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), + [1130] = { + [sym_line_comment] = STATE(1130), + [sym_block_comment] = STATE(1130), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LF] = ACTIONS(2041), + [anon_sym_CR] = ACTIONS(2041), + [anon_sym_CR_LF] = ACTIONS(2041), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_RPAREN] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1881), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_QMARK] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_GT_GT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_AMP_CARET] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_or] = ACTIONS(1881), - [sym_none] = ACTIONS(1881), - [sym_true] = ACTIONS(1881), - [sym_false] = ACTIONS(1881), - [sym_nil] = ACTIONS(1881), - [anon_sym_QMARK_DOT] = ACTIONS(1881), - [anon_sym_POUND_LBRACK] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_BANGin] = ACTIONS(1881), - [anon_sym_match] = ACTIONS(1881), - [anon_sym_select] = ACTIONS(1881), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1881), - [anon_sym_sql] = ACTIONS(1881), - [sym_int_literal] = ACTIONS(1881), - [sym_float_literal] = ACTIONS(1881), - [sym_rune_literal] = ACTIONS(1881), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1881), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1881), - [sym___single_quote] = ACTIONS(1881), - [sym___c_double_quote] = ACTIONS(1881), - [sym___c_single_quote] = ACTIONS(1881), - [sym___r_double_quote] = ACTIONS(1881), - [sym___r_single_quote] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_DOT] = ACTIONS(2041), + [anon_sym_as] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_PIPE] = ACTIONS(2041), + [anon_sym_fn] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2041), + [anon_sym_STAR] = ACTIONS(2041), + [anon_sym_SLASH] = ACTIONS(2041), + [anon_sym_PERCENT] = ACTIONS(2041), + [anon_sym_LT] = ACTIONS(2041), + [anon_sym_GT] = ACTIONS(2041), + [anon_sym_EQ_EQ] = ACTIONS(2041), + [anon_sym_BANG_EQ] = ACTIONS(2041), + [anon_sym_LT_EQ] = ACTIONS(2041), + [anon_sym_GT_EQ] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_struct] = ACTIONS(2041), + [anon_sym_mut] = ACTIONS(2041), + [anon_sym_PLUS_PLUS] = ACTIONS(2041), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_QMARK] = ACTIONS(2041), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_go] = ACTIONS(2041), + [anon_sym_spawn] = ACTIONS(2041), + [anon_sym_json_DOTdecode] = ACTIONS(2041), + [anon_sym_LBRACK2] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_CARET] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_LT_DASH] = ACTIONS(2041), + [anon_sym_LT_LT] = ACTIONS(2041), + [anon_sym_GT_GT] = ACTIONS(2041), + [anon_sym_GT_GT_GT] = ACTIONS(2041), + [anon_sym_AMP_CARET] = ACTIONS(2041), + [anon_sym_AMP_AMP] = ACTIONS(2041), + [anon_sym_PIPE_PIPE] = ACTIONS(2041), + [anon_sym_or] = ACTIONS(2041), + [sym_none] = ACTIONS(2041), + [sym_true] = ACTIONS(2041), + [sym_false] = ACTIONS(2041), + [sym_nil] = ACTIONS(2041), + [anon_sym_QMARK_DOT] = ACTIONS(2041), + [anon_sym_POUND_LBRACK] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_DOLLARif] = ACTIONS(2041), + [anon_sym_DOLLARelse] = ACTIONS(3740), + [anon_sym_is] = ACTIONS(2041), + [anon_sym_BANGis] = ACTIONS(2041), + [anon_sym_in] = ACTIONS(2041), + [anon_sym_BANGin] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_select] = ACTIONS(2041), + [anon_sym_lock] = ACTIONS(2041), + [anon_sym_rlock] = ACTIONS(2041), + [anon_sym_unsafe] = ACTIONS(2041), + [anon_sym_sql] = ACTIONS(2041), + [sym_int_literal] = ACTIONS(2041), + [sym_float_literal] = ACTIONS(2041), + [sym_rune_literal] = ACTIONS(2041), + [anon_sym_SQUOTE] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(2041), + [anon_sym_c_SQUOTE] = ACTIONS(2041), + [anon_sym_c_DQUOTE] = ACTIONS(2041), + [anon_sym_r_SQUOTE] = ACTIONS(2041), + [anon_sym_r_DQUOTE] = ACTIONS(2041), + [sym_pseudo_compile_time_identifier] = ACTIONS(2041), + [anon_sym_shared] = ACTIONS(2041), + [anon_sym_map_LBRACK] = ACTIONS(2041), + [anon_sym_chan] = ACTIONS(2041), + [anon_sym_thread] = ACTIONS(2041), + [anon_sym_atomic] = ACTIONS(2041), }, - [1133] = { - [sym_line_comment] = STATE(1133), - [sym_block_comment] = STATE(1133), + [1131] = { + [sym_line_comment] = STATE(1131), + [sym_block_comment] = STATE(1131), + [sym_identifier] = ACTIONS(2055), + [anon_sym_LF] = ACTIONS(2055), + [anon_sym_CR] = ACTIONS(2055), + [anon_sym_CR_LF] = ACTIONS(2055), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_COMMA] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_RPAREN] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(2055), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_PERCENT] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_EQ_EQ] = ACTIONS(2055), + [anon_sym_BANG_EQ] = ACTIONS(2055), + [anon_sym_LT_EQ] = ACTIONS(2055), + [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_QMARK] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2055), + [anon_sym_spawn] = ACTIONS(2055), + [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_LBRACK2] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_LT] = ACTIONS(2055), + [anon_sym_GT_GT] = ACTIONS(2055), + [anon_sym_GT_GT_GT] = ACTIONS(2055), + [anon_sym_AMP_CARET] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2055), + [anon_sym_PIPE_PIPE] = ACTIONS(2055), + [anon_sym_or] = ACTIONS(2055), + [sym_none] = ACTIONS(2055), + [sym_true] = ACTIONS(2055), + [sym_false] = ACTIONS(2055), + [sym_nil] = ACTIONS(2055), + [anon_sym_QMARK_DOT] = ACTIONS(2055), + [anon_sym_POUND_LBRACK] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_DOLLARif] = ACTIONS(2055), + [anon_sym_is] = ACTIONS(2055), + [anon_sym_BANGis] = ACTIONS(2055), + [anon_sym_in] = ACTIONS(2055), + [anon_sym_BANGin] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_select] = ACTIONS(2055), + [anon_sym_lock] = ACTIONS(2055), + [anon_sym_rlock] = ACTIONS(2055), + [anon_sym_unsafe] = ACTIONS(2055), + [anon_sym_sql] = ACTIONS(2055), + [sym_int_literal] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), + [sym_rune_literal] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2055), + [anon_sym_c_SQUOTE] = ACTIONS(2055), + [anon_sym_c_DQUOTE] = ACTIONS(2055), + [anon_sym_r_SQUOTE] = ACTIONS(2055), + [anon_sym_r_DQUOTE] = ACTIONS(2055), + [sym_pseudo_compile_time_identifier] = ACTIONS(2055), + [anon_sym_shared] = ACTIONS(2055), + [anon_sym_map_LBRACK] = ACTIONS(2055), + [anon_sym_chan] = ACTIONS(2055), + [anon_sym_thread] = ACTIONS(2055), + [anon_sym_atomic] = ACTIONS(2055), + }, + [1132] = { + [sym_line_comment] = STATE(1132), + [sym_block_comment] = STATE(1132), [sym_identifier] = ACTIONS(1889), [anon_sym_LF] = ACTIONS(1889), [anon_sym_CR] = ACTIONS(1889), @@ -150513,7 +150401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(1889), [anon_sym_DOT] = ACTIONS(1889), [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1889), [anon_sym_COMMA] = ACTIONS(1889), [anon_sym_RBRACE] = ACTIONS(1889), [anon_sym_LPAREN] = ACTIONS(1889), @@ -150532,10 +150420,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(1889), [anon_sym_GT_EQ] = ACTIONS(1889), [anon_sym_DOT_DOT_DOT] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1887), [anon_sym_struct] = ACTIONS(1889), [anon_sym_mut] = ACTIONS(1889), - [anon_sym_COLON] = ACTIONS(1889), [anon_sym_PLUS_PLUS] = ACTIONS(1889), [anon_sym_DASH_DASH] = ACTIONS(1889), [anon_sym_QMARK] = ACTIONS(1889), @@ -150562,6 +150449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(1889), [anon_sym_POUND_LBRACK] = ACTIONS(1889), [anon_sym_if] = ACTIONS(1889), + [anon_sym_else] = ACTIONS(1889), [anon_sym_DOLLARif] = ACTIONS(1889), [anon_sym_is] = ACTIONS(1889), [anon_sym_BANGis] = ACTIONS(1889), @@ -150576,22 +150464,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1889), [sym_float_literal] = ACTIONS(1889), [sym_rune_literal] = ACTIONS(1889), + [anon_sym_SQUOTE] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(1889), + [anon_sym_c_SQUOTE] = ACTIONS(1889), + [anon_sym_c_DQUOTE] = ACTIONS(1889), + [anon_sym_r_SQUOTE] = ACTIONS(1889), + [anon_sym_r_DQUOTE] = ACTIONS(1889), [sym_pseudo_compile_time_identifier] = ACTIONS(1889), [anon_sym_shared] = ACTIONS(1889), [anon_sym_map_LBRACK] = ACTIONS(1889), [anon_sym_chan] = ACTIONS(1889), [anon_sym_thread] = ACTIONS(1889), [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), }, - [1134] = { - [sym_line_comment] = STATE(1134), - [sym_block_comment] = STATE(1134), + [1133] = { + [sym_line_comment] = STATE(1133), + [sym_block_comment] = STATE(1133), [sym_identifier] = ACTIONS(1809), [anon_sym_LF] = ACTIONS(1809), [anon_sym_CR] = ACTIONS(1809), @@ -150664,261 +150552,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1809), [sym_float_literal] = ACTIONS(1809), [sym_rune_literal] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_c_SQUOTE] = ACTIONS(1809), + [anon_sym_c_DQUOTE] = ACTIONS(1809), + [anon_sym_r_SQUOTE] = ACTIONS(1809), + [anon_sym_r_DQUOTE] = ACTIONS(1809), [sym_pseudo_compile_time_identifier] = ACTIONS(1809), [anon_sym_shared] = ACTIONS(1809), [anon_sym_map_LBRACK] = ACTIONS(1809), [anon_sym_chan] = ACTIONS(1809), [anon_sym_thread] = ACTIONS(1809), [anon_sym_atomic] = ACTIONS(1809), - [sym___double_quote] = ACTIONS(1809), - [sym___single_quote] = ACTIONS(1809), - [sym___c_double_quote] = ACTIONS(1809), - [sym___c_single_quote] = ACTIONS(1809), - [sym___r_double_quote] = ACTIONS(1809), - [sym___r_single_quote] = ACTIONS(1809), - }, - [1135] = { - [sym_line_comment] = STATE(1135), - [sym_block_comment] = STATE(1135), - [sym_identifier] = ACTIONS(1813), - [anon_sym_LF] = ACTIONS(1813), - [anon_sym_CR] = ACTIONS(1813), - [anon_sym_CR_LF] = ACTIONS(1813), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_as] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_COMMA] = ACTIONS(1813), - [anon_sym_RBRACE] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(1813), - [anon_sym_RPAREN] = ACTIONS(1813), - [anon_sym_PIPE] = ACTIONS(1813), - [anon_sym_fn] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_SLASH] = ACTIONS(1813), - [anon_sym_PERCENT] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_GT] = ACTIONS(1813), - [anon_sym_EQ_EQ] = ACTIONS(1813), - [anon_sym_BANG_EQ] = ACTIONS(1813), - [anon_sym_LT_EQ] = ACTIONS(1813), - [anon_sym_GT_EQ] = ACTIONS(1813), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_mut] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [anon_sym_QMARK] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_go] = ACTIONS(1813), - [anon_sym_spawn] = ACTIONS(1813), - [anon_sym_json_DOTdecode] = ACTIONS(1813), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_LT_DASH] = ACTIONS(1813), - [anon_sym_LT_LT] = ACTIONS(1813), - [anon_sym_GT_GT] = ACTIONS(1813), - [anon_sym_GT_GT_GT] = ACTIONS(1813), - [anon_sym_AMP_CARET] = ACTIONS(1813), - [anon_sym_AMP_AMP] = ACTIONS(1813), - [anon_sym_PIPE_PIPE] = ACTIONS(1813), - [anon_sym_or] = ACTIONS(1813), - [sym_none] = ACTIONS(1813), - [sym_true] = ACTIONS(1813), - [sym_false] = ACTIONS(1813), - [sym_nil] = ACTIONS(1813), - [anon_sym_QMARK_DOT] = ACTIONS(1813), - [anon_sym_POUND_LBRACK] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_DOLLARif] = ACTIONS(1813), - [anon_sym_DOLLARelse] = ACTIONS(1813), - [anon_sym_is] = ACTIONS(1813), - [anon_sym_BANGis] = ACTIONS(1813), - [anon_sym_in] = ACTIONS(1813), - [anon_sym_BANGin] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1813), - [anon_sym_rlock] = ACTIONS(1813), - [anon_sym_unsafe] = ACTIONS(1813), - [anon_sym_sql] = ACTIONS(1813), - [sym_int_literal] = ACTIONS(1813), - [sym_float_literal] = ACTIONS(1813), - [sym_rune_literal] = ACTIONS(1813), - [sym_pseudo_compile_time_identifier] = ACTIONS(1813), - [anon_sym_shared] = ACTIONS(1813), - [anon_sym_map_LBRACK] = ACTIONS(1813), - [anon_sym_chan] = ACTIONS(1813), - [anon_sym_thread] = ACTIONS(1813), - [anon_sym_atomic] = ACTIONS(1813), - [sym___double_quote] = ACTIONS(1813), - [sym___single_quote] = ACTIONS(1813), - [sym___c_double_quote] = ACTIONS(1813), - [sym___c_single_quote] = ACTIONS(1813), - [sym___r_double_quote] = ACTIONS(1813), - [sym___r_single_quote] = ACTIONS(1813), - }, - [1136] = { - [sym_line_comment] = STATE(1136), - [sym_block_comment] = STATE(1136), - [sym_identifier] = ACTIONS(1913), - [anon_sym_LF] = ACTIONS(1913), - [anon_sym_CR] = ACTIONS(1913), - [anon_sym_CR_LF] = ACTIONS(1913), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_DOT] = ACTIONS(1913), - [anon_sym_as] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1913), - [anon_sym_fn] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1913), - [anon_sym_LT] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1913), - [anon_sym_BANG_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_struct] = ACTIONS(1913), - [anon_sym_mut] = ACTIONS(1913), - [anon_sym_PLUS_PLUS] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1913), - [anon_sym_QMARK] = ACTIONS(1913), - [anon_sym_BANG] = ACTIONS(1913), - [anon_sym_go] = ACTIONS(1913), - [anon_sym_spawn] = ACTIONS(1913), - [anon_sym_json_DOTdecode] = ACTIONS(1913), - [anon_sym_LBRACK2] = ACTIONS(1913), - [anon_sym_TILDE] = ACTIONS(1913), - [anon_sym_CARET] = ACTIONS(1913), - [anon_sym_AMP] = ACTIONS(1913), - [anon_sym_LT_DASH] = ACTIONS(1913), - [anon_sym_LT_LT] = ACTIONS(1913), - [anon_sym_GT_GT] = ACTIONS(1913), - [anon_sym_GT_GT_GT] = ACTIONS(1913), - [anon_sym_AMP_CARET] = ACTIONS(1913), - [anon_sym_AMP_AMP] = ACTIONS(1913), - [anon_sym_PIPE_PIPE] = ACTIONS(1913), - [anon_sym_or] = ACTIONS(1913), - [sym_none] = ACTIONS(1913), - [sym_true] = ACTIONS(1913), - [sym_false] = ACTIONS(1913), - [sym_nil] = ACTIONS(1913), - [anon_sym_QMARK_DOT] = ACTIONS(1913), - [anon_sym_POUND_LBRACK] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_DOLLARif] = ACTIONS(1913), - [anon_sym_DOLLARelse] = ACTIONS(3740), - [anon_sym_is] = ACTIONS(1913), - [anon_sym_BANGis] = ACTIONS(1913), - [anon_sym_in] = ACTIONS(1913), - [anon_sym_BANGin] = ACTIONS(1913), - [anon_sym_match] = ACTIONS(1913), - [anon_sym_select] = ACTIONS(1913), - [anon_sym_lock] = ACTIONS(1913), - [anon_sym_rlock] = ACTIONS(1913), - [anon_sym_unsafe] = ACTIONS(1913), - [anon_sym_sql] = ACTIONS(1913), - [sym_int_literal] = ACTIONS(1913), - [sym_float_literal] = ACTIONS(1913), - [sym_rune_literal] = ACTIONS(1913), - [sym_pseudo_compile_time_identifier] = ACTIONS(1913), - [anon_sym_shared] = ACTIONS(1913), - [anon_sym_map_LBRACK] = ACTIONS(1913), - [anon_sym_chan] = ACTIONS(1913), - [anon_sym_thread] = ACTIONS(1913), - [anon_sym_atomic] = ACTIONS(1913), - [sym___double_quote] = ACTIONS(1913), - [sym___single_quote] = ACTIONS(1913), - [sym___c_double_quote] = ACTIONS(1913), - [sym___c_single_quote] = ACTIONS(1913), - [sym___r_double_quote] = ACTIONS(1913), - [sym___r_single_quote] = ACTIONS(1913), }, - [1137] = { - [sym_line_comment] = STATE(1137), - [sym_block_comment] = STATE(1137), - [sym_type_parameters] = STATE(4199), - [sym_argument_list] = STATE(1208), - [sym_or_block] = STATE(1207), + [1134] = { + [sym_line_comment] = STATE(1134), + [sym_block_comment] = STATE(1134), + [sym_type_parameters] = STATE(4009), + [sym_argument_list] = STATE(1153), + [sym_or_block] = STATE(1238), [sym_identifier] = ACTIONS(3742), - [anon_sym_LF] = ACTIONS(3742), - [anon_sym_CR] = ACTIONS(3742), - [anon_sym_CR_LF] = ACTIONS(3742), + [anon_sym_LF] = ACTIONS(3744), + [anon_sym_CR] = ACTIONS(3744), + [anon_sym_CR_LF] = ACTIONS(3744), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3744), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(3686), [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_COMMA] = ACTIONS(3742), + [anon_sym_COMMA] = ACTIONS(3744), [anon_sym_RBRACE] = ACTIONS(3742), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_PIPE] = ACTIONS(3666), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_PIPE] = ACTIONS(3668), [anon_sym_fn] = ACTIONS(3742), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3668), - [anon_sym_PERCENT] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3670), - [anon_sym_BANG_EQ] = ACTIONS(3670), - [anon_sym_LT_EQ] = ACTIONS(3670), - [anon_sym_GT_EQ] = ACTIONS(3670), - [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_PERCENT] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3672), + [anon_sym_GT] = ACTIONS(3672), + [anon_sym_EQ_EQ] = ACTIONS(3672), + [anon_sym_BANG_EQ] = ACTIONS(3672), + [anon_sym_LT_EQ] = ACTIONS(3672), + [anon_sym_GT_EQ] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3674), [anon_sym_struct] = ACTIONS(3742), [anon_sym_mut] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3688), + [anon_sym_DASH_DASH] = ACTIONS(3690), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), [anon_sym_go] = ACTIONS(3742), [anon_sym_spawn] = ACTIONS(3742), [anon_sym_json_DOTdecode] = ACTIONS(3742), - [anon_sym_LBRACK2] = ACTIONS(3682), + [anon_sym_LBRACK2] = ACTIONS(3680), [anon_sym_TILDE] = ACTIONS(3742), - [anon_sym_CARET] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_CARET] = ACTIONS(3668), + [anon_sym_AMP] = ACTIONS(3670), [anon_sym_LT_DASH] = ACTIONS(3742), - [anon_sym_LT_LT] = ACTIONS(3668), - [anon_sym_GT_GT] = ACTIONS(3668), - [anon_sym_GT_GT_GT] = ACTIONS(3668), - [anon_sym_AMP_CARET] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3684), - [anon_sym_PIPE_PIPE] = ACTIONS(3686), - [anon_sym_or] = ACTIONS(3688), + [anon_sym_LT_LT] = ACTIONS(3670), + [anon_sym_GT_GT] = ACTIONS(3670), + [anon_sym_GT_GT_GT] = ACTIONS(3670), + [anon_sym_AMP_CARET] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3692), + [anon_sym_or] = ACTIONS(3694), [sym_none] = ACTIONS(3742), [sym_true] = ACTIONS(3742), [sym_false] = ACTIONS(3742), [sym_nil] = ACTIONS(3742), - [anon_sym_QMARK_DOT] = ACTIONS(3660), - [anon_sym_POUND_LBRACK] = ACTIONS(3682), + [anon_sym_QMARK_DOT] = ACTIONS(3664), + [anon_sym_POUND_LBRACK] = ACTIONS(3680), [anon_sym_if] = ACTIONS(3742), [anon_sym_DOLLARif] = ACTIONS(3742), - [anon_sym_is] = ACTIONS(3690), - [anon_sym_BANGis] = ACTIONS(3690), - [anon_sym_in] = ACTIONS(3692), - [anon_sym_BANGin] = ACTIONS(3692), + [anon_sym_is] = ACTIONS(3696), + [anon_sym_BANGis] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3684), + [anon_sym_BANGin] = ACTIONS(3684), [anon_sym_match] = ACTIONS(3742), [anon_sym_select] = ACTIONS(3742), [anon_sym_lock] = ACTIONS(3742), @@ -150928,5621 +150640,5973 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(3742), [sym_float_literal] = ACTIONS(3742), [sym_rune_literal] = ACTIONS(3742), + [anon_sym_SQUOTE] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_c_SQUOTE] = ACTIONS(3742), + [anon_sym_c_DQUOTE] = ACTIONS(3742), + [anon_sym_r_SQUOTE] = ACTIONS(3742), + [anon_sym_r_DQUOTE] = ACTIONS(3742), [sym_pseudo_compile_time_identifier] = ACTIONS(3742), [anon_sym_shared] = ACTIONS(3742), [anon_sym_map_LBRACK] = ACTIONS(3742), [anon_sym_chan] = ACTIONS(3742), [anon_sym_thread] = ACTIONS(3742), [anon_sym_atomic] = ACTIONS(3742), - [sym___double_quote] = ACTIONS(3742), - [sym___single_quote] = ACTIONS(3742), - [sym___c_double_quote] = ACTIONS(3742), - [sym___c_single_quote] = ACTIONS(3742), - [sym___r_double_quote] = ACTIONS(3742), - [sym___r_single_quote] = ACTIONS(3742), - }, - [1138] = { - [sym_line_comment] = STATE(1138), - [sym_block_comment] = STATE(1138), - [sym_identifier] = ACTIONS(2924), - [anon_sym_LF] = ACTIONS(2924), - [anon_sym_CR] = ACTIONS(2924), - [anon_sym_CR_LF] = ACTIONS(2924), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2924), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_as] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_RBRACE] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_RPAREN] = ACTIONS(2924), - [anon_sym_PIPE] = ACTIONS(2924), - [anon_sym_fn] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_SLASH] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2924), - [anon_sym_GT] = ACTIONS(2924), - [anon_sym_EQ_EQ] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_LT_EQ] = ACTIONS(2924), - [anon_sym_GT_EQ] = ACTIONS(2924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_struct] = ACTIONS(2924), - [anon_sym_mut] = ACTIONS(2924), - [anon_sym_PLUS_PLUS] = ACTIONS(2924), - [anon_sym_DASH_DASH] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_BANG] = ACTIONS(2924), - [anon_sym_go] = ACTIONS(2924), - [anon_sym_spawn] = ACTIONS(2924), - [anon_sym_json_DOTdecode] = ACTIONS(2924), - [anon_sym_LBRACK2] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2924), - [anon_sym_CARET] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2924), - [anon_sym_LT_LT] = ACTIONS(2924), - [anon_sym_GT_GT] = ACTIONS(2924), - [anon_sym_GT_GT_GT] = ACTIONS(2924), - [anon_sym_AMP_CARET] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_or] = ACTIONS(2924), - [sym_none] = ACTIONS(2924), - [sym_true] = ACTIONS(2924), - [sym_false] = ACTIONS(2924), - [sym_nil] = ACTIONS(2924), - [anon_sym_QMARK_DOT] = ACTIONS(2924), - [anon_sym_POUND_LBRACK] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_DOLLARif] = ACTIONS(2924), - [anon_sym_is] = ACTIONS(2924), - [anon_sym_BANGis] = ACTIONS(2924), - [anon_sym_in] = ACTIONS(2924), - [anon_sym_BANGin] = ACTIONS(2924), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_select] = ACTIONS(2924), - [anon_sym_lock] = ACTIONS(2924), - [anon_sym_rlock] = ACTIONS(2924), - [anon_sym_unsafe] = ACTIONS(2924), - [anon_sym_sql] = ACTIONS(2924), - [sym_int_literal] = ACTIONS(2924), - [sym_float_literal] = ACTIONS(2924), - [sym_rune_literal] = ACTIONS(2924), - [sym_pseudo_compile_time_identifier] = ACTIONS(2924), - [anon_sym_shared] = ACTIONS(2924), - [anon_sym_map_LBRACK] = ACTIONS(2924), - [anon_sym_chan] = ACTIONS(2924), - [anon_sym_thread] = ACTIONS(2924), - [anon_sym_atomic] = ACTIONS(2924), - [sym___double_quote] = ACTIONS(2924), - [sym___single_quote] = ACTIONS(2924), - [sym___c_double_quote] = ACTIONS(2924), - [sym___c_single_quote] = ACTIONS(2924), - [sym___r_double_quote] = ACTIONS(2924), - [sym___r_single_quote] = ACTIONS(2924), - }, - [1139] = { - [sym_line_comment] = STATE(1139), - [sym_block_comment] = STATE(1139), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LF] = ACTIONS(2475), - [anon_sym_CR] = ACTIONS(2475), - [anon_sym_CR_LF] = ACTIONS(2475), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2475), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_as] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_RBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_RPAREN] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2475), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_SLASH] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_EQ_EQ] = ACTIONS(2475), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_LT_EQ] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2475), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2475), - [anon_sym_QMARK] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_go] = ACTIONS(2475), - [anon_sym_spawn] = ACTIONS(2475), - [anon_sym_json_DOTdecode] = ACTIONS(2475), - [anon_sym_LBRACK2] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_LT_DASH] = ACTIONS(2475), - [anon_sym_LT_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2475), - [anon_sym_GT_GT_GT] = ACTIONS(2475), - [anon_sym_AMP_CARET] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_PIPE_PIPE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2475), - [sym_none] = ACTIONS(2475), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_nil] = ACTIONS(2475), - [anon_sym_QMARK_DOT] = ACTIONS(2475), - [anon_sym_POUND_LBRACK] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_DOLLARif] = ACTIONS(2475), - [anon_sym_is] = ACTIONS(2475), - [anon_sym_BANGis] = ACTIONS(2475), - [anon_sym_in] = ACTIONS(2475), - [anon_sym_BANGin] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_lock] = ACTIONS(2475), - [anon_sym_rlock] = ACTIONS(2475), - [anon_sym_unsafe] = ACTIONS(2475), - [anon_sym_sql] = ACTIONS(2475), - [sym_int_literal] = ACTIONS(2475), - [sym_float_literal] = ACTIONS(2475), - [sym_rune_literal] = ACTIONS(2475), - [sym_pseudo_compile_time_identifier] = ACTIONS(2475), - [anon_sym_shared] = ACTIONS(2475), - [anon_sym_map_LBRACK] = ACTIONS(2475), - [anon_sym_chan] = ACTIONS(2475), - [anon_sym_thread] = ACTIONS(2475), - [anon_sym_atomic] = ACTIONS(2475), - [sym___double_quote] = ACTIONS(2475), - [sym___single_quote] = ACTIONS(2475), - [sym___c_double_quote] = ACTIONS(2475), - [sym___c_single_quote] = ACTIONS(2475), - [sym___r_double_quote] = ACTIONS(2475), - [sym___r_single_quote] = ACTIONS(2475), }, - [1140] = { - [sym_line_comment] = STATE(1140), - [sym_block_comment] = STATE(1140), - [sym_identifier] = ACTIONS(2870), - [anon_sym_LF] = ACTIONS(2870), - [anon_sym_CR] = ACTIONS(2870), - [anon_sym_CR_LF] = ACTIONS(2870), + [1135] = { + [sym_line_comment] = STATE(1135), + [sym_block_comment] = STATE(1135), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LF] = ACTIONS(1889), + [anon_sym_CR] = ACTIONS(1889), + [anon_sym_CR_LF] = ACTIONS(1889), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_as] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2870), - [anon_sym_RBRACE] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_RPAREN] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_fn] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_EQ_EQ] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2870), - [anon_sym_LT_EQ] = ACTIONS(2870), - [anon_sym_GT_EQ] = ACTIONS(2870), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2870), - [anon_sym_mut] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_go] = ACTIONS(2870), - [anon_sym_spawn] = ACTIONS(2870), - [anon_sym_json_DOTdecode] = ACTIONS(2870), - [anon_sym_LBRACK2] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_LT_LT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2870), - [anon_sym_GT_GT_GT] = ACTIONS(2870), - [anon_sym_AMP_CARET] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_or] = ACTIONS(2870), - [sym_none] = ACTIONS(2870), - [sym_true] = ACTIONS(2870), - [sym_false] = ACTIONS(2870), - [sym_nil] = ACTIONS(2870), - [anon_sym_QMARK_DOT] = ACTIONS(2870), - [anon_sym_POUND_LBRACK] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_DOLLARif] = ACTIONS(2870), - [anon_sym_is] = ACTIONS(2870), - [anon_sym_BANGis] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(2870), - [anon_sym_BANGin] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_select] = ACTIONS(2870), - [anon_sym_lock] = ACTIONS(2870), - [anon_sym_rlock] = ACTIONS(2870), - [anon_sym_unsafe] = ACTIONS(2870), - [anon_sym_sql] = ACTIONS(2870), - [sym_int_literal] = ACTIONS(2870), - [sym_float_literal] = ACTIONS(2870), - [sym_rune_literal] = ACTIONS(2870), - [sym_pseudo_compile_time_identifier] = ACTIONS(2870), - [anon_sym_shared] = ACTIONS(2870), - [anon_sym_map_LBRACK] = ACTIONS(2870), - [anon_sym_chan] = ACTIONS(2870), - [anon_sym_thread] = ACTIONS(2870), - [anon_sym_atomic] = ACTIONS(2870), - [sym___double_quote] = ACTIONS(2870), - [sym___single_quote] = ACTIONS(2870), - [sym___c_double_quote] = ACTIONS(2870), - [sym___c_single_quote] = ACTIONS(2870), - [sym___r_double_quote] = ACTIONS(2870), - [sym___r_single_quote] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_COMMA] = ACTIONS(1889), + [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_RPAREN] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_PERCENT] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_EQ_EQ] = ACTIONS(1889), + [anon_sym_BANG_EQ] = ACTIONS(1889), + [anon_sym_LT_EQ] = ACTIONS(1889), + [anon_sym_GT_EQ] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1889), + [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1889), + [anon_sym_spawn] = ACTIONS(1889), + [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_LBRACK2] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1889), + [anon_sym_LT_LT] = ACTIONS(1889), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT_GT] = ACTIONS(1889), + [anon_sym_AMP_CARET] = ACTIONS(1889), + [anon_sym_AMP_AMP] = ACTIONS(1889), + [anon_sym_PIPE_PIPE] = ACTIONS(1889), + [anon_sym_or] = ACTIONS(1889), + [sym_none] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_nil] = ACTIONS(1889), + [anon_sym_QMARK_DOT] = ACTIONS(1889), + [anon_sym_POUND_LBRACK] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_DOLLARif] = ACTIONS(1889), + [anon_sym_DOLLARelse] = ACTIONS(1889), + [anon_sym_is] = ACTIONS(1889), + [anon_sym_BANGis] = ACTIONS(1889), + [anon_sym_in] = ACTIONS(1889), + [anon_sym_BANGin] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_select] = ACTIONS(1889), + [anon_sym_lock] = ACTIONS(1889), + [anon_sym_rlock] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_sql] = ACTIONS(1889), + [sym_int_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1889), + [sym_rune_literal] = ACTIONS(1889), + [anon_sym_SQUOTE] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(1889), + [anon_sym_c_SQUOTE] = ACTIONS(1889), + [anon_sym_c_DQUOTE] = ACTIONS(1889), + [anon_sym_r_SQUOTE] = ACTIONS(1889), + [anon_sym_r_DQUOTE] = ACTIONS(1889), + [sym_pseudo_compile_time_identifier] = ACTIONS(1889), + [anon_sym_shared] = ACTIONS(1889), + [anon_sym_map_LBRACK] = ACTIONS(1889), + [anon_sym_chan] = ACTIONS(1889), + [anon_sym_thread] = ACTIONS(1889), + [anon_sym_atomic] = ACTIONS(1889), }, - [1141] = { - [sym_line_comment] = STATE(1141), - [sym_block_comment] = STATE(1141), - [sym_identifier] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_CR] = ACTIONS(2812), - [anon_sym_CR_LF] = ACTIONS(2812), + [1136] = { + [sym_line_comment] = STATE(1136), + [sym_block_comment] = STATE(1136), + [sym_type_parameters] = STATE(1236), + [sym_identifier] = ACTIONS(1899), + [anon_sym_LF] = ACTIONS(1899), + [anon_sym_CR] = ACTIONS(1899), + [anon_sym_CR_LF] = ACTIONS(1899), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2812), - [anon_sym_as] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym_RPAREN] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_SLASH] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_EQ_EQ] = ACTIONS(2812), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_EQ] = ACTIONS(2812), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_mut] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_QMARK] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_go] = ACTIONS(2812), - [anon_sym_spawn] = ACTIONS(2812), - [anon_sym_json_DOTdecode] = ACTIONS(2812), - [anon_sym_LBRACK2] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_LT_DASH] = ACTIONS(2812), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_GT_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_CARET] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_PIPE_PIPE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2812), - [sym_none] = ACTIONS(2812), - [sym_true] = ACTIONS(2812), - [sym_false] = ACTIONS(2812), - [sym_nil] = ACTIONS(2812), - [anon_sym_QMARK_DOT] = ACTIONS(2812), - [anon_sym_POUND_LBRACK] = ACTIONS(2812), - [anon_sym_if] = ACTIONS(2812), - [anon_sym_DOLLARif] = ACTIONS(2812), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_BANGis] = ACTIONS(2812), - [anon_sym_in] = ACTIONS(2812), - [anon_sym_BANGin] = ACTIONS(2812), - [anon_sym_match] = ACTIONS(2812), - [anon_sym_select] = ACTIONS(2812), - [anon_sym_lock] = ACTIONS(2812), - [anon_sym_rlock] = ACTIONS(2812), - [anon_sym_unsafe] = ACTIONS(2812), - [anon_sym_sql] = ACTIONS(2812), - [sym_int_literal] = ACTIONS(2812), - [sym_float_literal] = ACTIONS(2812), - [sym_rune_literal] = ACTIONS(2812), - [sym_pseudo_compile_time_identifier] = ACTIONS(2812), - [anon_sym_shared] = ACTIONS(2812), - [anon_sym_map_LBRACK] = ACTIONS(2812), - [anon_sym_chan] = ACTIONS(2812), - [anon_sym_thread] = ACTIONS(2812), - [anon_sym_atomic] = ACTIONS(2812), - [sym___double_quote] = ACTIONS(2812), - [sym___single_quote] = ACTIONS(2812), - [sym___c_double_quote] = ACTIONS(2812), - [sym___c_single_quote] = ACTIONS(2812), - [sym___r_double_quote] = ACTIONS(2812), - [sym___r_single_quote] = ACTIONS(2812), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_as] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_RPAREN] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_PERCENT] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1899), + [anon_sym_GT_EQ] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_struct] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_QMARK] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_go] = ACTIONS(1899), + [anon_sym_spawn] = ACTIONS(1899), + [anon_sym_json_DOTdecode] = ACTIONS(1899), + [anon_sym_LBRACK2] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1899), + [anon_sym_LT_LT] = ACTIONS(1899), + [anon_sym_GT_GT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1899), + [anon_sym_AMP_CARET] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(1899), + [anon_sym_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_or] = ACTIONS(1899), + [sym_none] = ACTIONS(1899), + [sym_true] = ACTIONS(1899), + [sym_false] = ACTIONS(1899), + [sym_nil] = ACTIONS(1899), + [anon_sym_QMARK_DOT] = ACTIONS(1899), + [anon_sym_POUND_LBRACK] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_DOLLARif] = ACTIONS(1899), + [anon_sym_is] = ACTIONS(1899), + [anon_sym_BANGis] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_BANGin] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_select] = ACTIONS(1899), + [anon_sym_lock] = ACTIONS(1899), + [anon_sym_rlock] = ACTIONS(1899), + [anon_sym_unsafe] = ACTIONS(1899), + [anon_sym_sql] = ACTIONS(1899), + [sym_int_literal] = ACTIONS(1899), + [sym_float_literal] = ACTIONS(1899), + [sym_rune_literal] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_c_SQUOTE] = ACTIONS(1899), + [anon_sym_c_DQUOTE] = ACTIONS(1899), + [anon_sym_r_SQUOTE] = ACTIONS(1899), + [anon_sym_r_DQUOTE] = ACTIONS(1899), + [sym_pseudo_compile_time_identifier] = ACTIONS(1899), + [anon_sym_shared] = ACTIONS(1899), + [anon_sym_map_LBRACK] = ACTIONS(1899), + [anon_sym_chan] = ACTIONS(1899), + [anon_sym_thread] = ACTIONS(1899), + [anon_sym_atomic] = ACTIONS(1899), }, - [1142] = { - [sym_line_comment] = STATE(1142), - [sym_block_comment] = STATE(1142), - [sym_identifier] = ACTIONS(2542), - [anon_sym_LF] = ACTIONS(2542), - [anon_sym_CR] = ACTIONS(2542), - [anon_sym_CR_LF] = ACTIONS(2542), + [1137] = { + [sym_line_comment] = STATE(1137), + [sym_block_comment] = STATE(1137), + [sym_identifier] = ACTIONS(2079), + [anon_sym_LF] = ACTIONS(2079), + [anon_sym_CR] = ACTIONS(2079), + [anon_sym_CR_LF] = ACTIONS(2079), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2542), - [anon_sym_DOT] = ACTIONS(2542), - [anon_sym_as] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2542), - [anon_sym_COMMA] = ACTIONS(2542), - [anon_sym_RBRACE] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2542), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_fn] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_PERCENT] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_GT] = ACTIONS(2542), - [anon_sym_EQ_EQ] = ACTIONS(2542), - [anon_sym_BANG_EQ] = ACTIONS(2542), - [anon_sym_LT_EQ] = ACTIONS(2542), - [anon_sym_GT_EQ] = ACTIONS(2542), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2540), - [anon_sym_struct] = ACTIONS(2542), - [anon_sym_mut] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2542), - [anon_sym_DASH_DASH] = ACTIONS(2542), - [anon_sym_QMARK] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(3744), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2542), - [anon_sym_json_DOTdecode] = ACTIONS(2542), - [anon_sym_LBRACK2] = ACTIONS(2542), - [anon_sym_TILDE] = ACTIONS(2542), - [anon_sym_CARET] = ACTIONS(2542), - [anon_sym_AMP] = ACTIONS(2542), - [anon_sym_LT_DASH] = ACTIONS(2542), - [anon_sym_LT_LT] = ACTIONS(2542), - [anon_sym_GT_GT] = ACTIONS(2542), - [anon_sym_GT_GT_GT] = ACTIONS(2542), - [anon_sym_AMP_CARET] = ACTIONS(2542), - [anon_sym_AMP_AMP] = ACTIONS(2542), - [anon_sym_PIPE_PIPE] = ACTIONS(2542), - [anon_sym_or] = ACTIONS(2542), - [sym_none] = ACTIONS(2542), - [sym_true] = ACTIONS(2542), - [sym_false] = ACTIONS(2542), - [sym_nil] = ACTIONS(2542), - [anon_sym_QMARK_DOT] = ACTIONS(2542), - [anon_sym_POUND_LBRACK] = ACTIONS(2542), - [anon_sym_if] = ACTIONS(2542), - [anon_sym_DOLLARif] = ACTIONS(2542), - [anon_sym_is] = ACTIONS(2542), - [anon_sym_BANGis] = ACTIONS(2542), - [anon_sym_in] = ACTIONS(2542), - [anon_sym_BANGin] = ACTIONS(2542), - [anon_sym_match] = ACTIONS(2542), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2542), - [anon_sym_rlock] = ACTIONS(2542), - [anon_sym_unsafe] = ACTIONS(2542), - [anon_sym_sql] = ACTIONS(2542), - [sym_int_literal] = ACTIONS(2542), - [sym_float_literal] = ACTIONS(2542), - [sym_rune_literal] = ACTIONS(2542), - [sym_pseudo_compile_time_identifier] = ACTIONS(2542), - [anon_sym_shared] = ACTIONS(2542), - [anon_sym_map_LBRACK] = ACTIONS(2542), - [anon_sym_chan] = ACTIONS(2542), - [anon_sym_thread] = ACTIONS(2542), - [anon_sym_atomic] = ACTIONS(2542), - [sym___double_quote] = ACTIONS(2542), - [sym___single_quote] = ACTIONS(2542), - [sym___c_double_quote] = ACTIONS(2542), - [sym___c_single_quote] = ACTIONS(2542), - [sym___r_double_quote] = ACTIONS(2542), - [sym___r_single_quote] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_DOT] = ACTIONS(2079), + [anon_sym_as] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_COMMA] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_SLASH] = ACTIONS(2079), + [anon_sym_PERCENT] = ACTIONS(2079), + [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(2077), + [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(2079), + [anon_sym_BANG] = ACTIONS(2079), + [anon_sym_go] = ACTIONS(2079), + [anon_sym_spawn] = ACTIONS(2079), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2079), + [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(2079), + [anon_sym_GT_GT] = ACTIONS(2079), + [anon_sym_GT_GT_GT] = ACTIONS(2079), + [anon_sym_AMP_CARET] = ACTIONS(2079), + [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(2079), + [anon_sym_POUND_LBRACK] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_DOLLARif] = ACTIONS(2079), + [anon_sym_DOLLARelse] = ACTIONS(3746), + [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), }, - [1143] = { - [sym_line_comment] = STATE(1143), - [sym_block_comment] = STATE(1143), - [sym_identifier] = ACTIONS(2269), - [anon_sym_LF] = ACTIONS(2269), - [anon_sym_CR] = ACTIONS(2269), - [anon_sym_CR_LF] = ACTIONS(2269), + [1138] = { + [sym_line_comment] = STATE(1138), + [sym_block_comment] = STATE(1138), + [sym_identifier] = ACTIONS(2225), + [anon_sym_LF] = ACTIONS(2225), + [anon_sym_CR] = ACTIONS(2225), + [anon_sym_CR_LF] = ACTIONS(2225), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2269), - [anon_sym_DOT] = ACTIONS(2269), - [anon_sym_as] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_COMMA] = ACTIONS(2269), - [anon_sym_RBRACE] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2269), - [anon_sym_RPAREN] = ACTIONS(2269), - [anon_sym_PIPE] = ACTIONS(2269), - [anon_sym_fn] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_STAR] = ACTIONS(2269), - [anon_sym_SLASH] = ACTIONS(2269), - [anon_sym_PERCENT] = ACTIONS(2269), - [anon_sym_LT] = ACTIONS(2269), - [anon_sym_GT] = ACTIONS(2269), - [anon_sym_EQ_EQ] = ACTIONS(2269), - [anon_sym_BANG_EQ] = ACTIONS(2269), - [anon_sym_LT_EQ] = ACTIONS(2269), - [anon_sym_GT_EQ] = ACTIONS(2269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_struct] = ACTIONS(2269), - [anon_sym_mut] = ACTIONS(2269), - [anon_sym_PLUS_PLUS] = ACTIONS(2269), - [anon_sym_DASH_DASH] = ACTIONS(2269), - [anon_sym_QMARK] = ACTIONS(2269), - [anon_sym_BANG] = ACTIONS(2269), - [anon_sym_go] = ACTIONS(2269), - [anon_sym_spawn] = ACTIONS(2269), - [anon_sym_json_DOTdecode] = ACTIONS(2269), - [anon_sym_LBRACK2] = ACTIONS(2269), - [anon_sym_TILDE] = ACTIONS(2269), - [anon_sym_CARET] = ACTIONS(2269), - [anon_sym_AMP] = ACTIONS(2269), - [anon_sym_LT_DASH] = ACTIONS(2269), - [anon_sym_LT_LT] = ACTIONS(2269), - [anon_sym_GT_GT] = ACTIONS(2269), - [anon_sym_GT_GT_GT] = ACTIONS(2269), - [anon_sym_AMP_CARET] = ACTIONS(2269), - [anon_sym_AMP_AMP] = ACTIONS(2269), - [anon_sym_PIPE_PIPE] = ACTIONS(2269), - [anon_sym_or] = ACTIONS(2269), - [sym_none] = ACTIONS(2269), - [sym_true] = ACTIONS(2269), - [sym_false] = ACTIONS(2269), - [sym_nil] = ACTIONS(2269), - [anon_sym_QMARK_DOT] = ACTIONS(2269), - [anon_sym_POUND_LBRACK] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_DOLLARif] = ACTIONS(2269), - [anon_sym_is] = ACTIONS(2269), - [anon_sym_BANGis] = ACTIONS(2269), - [anon_sym_in] = ACTIONS(2269), - [anon_sym_BANGin] = ACTIONS(2269), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_select] = ACTIONS(2269), - [anon_sym_lock] = ACTIONS(2269), - [anon_sym_rlock] = ACTIONS(2269), - [anon_sym_unsafe] = ACTIONS(2269), - [anon_sym_sql] = ACTIONS(2269), - [sym_int_literal] = ACTIONS(2269), - [sym_float_literal] = ACTIONS(2269), - [sym_rune_literal] = ACTIONS(2269), - [sym_pseudo_compile_time_identifier] = ACTIONS(2269), - [anon_sym_shared] = ACTIONS(2269), - [anon_sym_map_LBRACK] = ACTIONS(2269), - [anon_sym_chan] = ACTIONS(2269), - [anon_sym_thread] = ACTIONS(2269), - [anon_sym_atomic] = ACTIONS(2269), - [sym___double_quote] = ACTIONS(2269), - [sym___single_quote] = ACTIONS(2269), - [sym___c_double_quote] = ACTIONS(2269), - [sym___c_single_quote] = ACTIONS(2269), - [sym___r_double_quote] = ACTIONS(2269), - [sym___r_single_quote] = ACTIONS(2269), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_DOT] = ACTIONS(2225), + [anon_sym_as] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_COMMA] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_RPAREN] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(2225), + [anon_sym_fn] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_PERCENT] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_GT] = ACTIONS(2225), + [anon_sym_EQ_EQ] = ACTIONS(2225), + [anon_sym_BANG_EQ] = ACTIONS(2225), + [anon_sym_LT_EQ] = ACTIONS(2225), + [anon_sym_GT_EQ] = ACTIONS(2225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_mut] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [anon_sym_QMARK] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_go] = ACTIONS(2225), + [anon_sym_spawn] = ACTIONS(2225), + [anon_sym_json_DOTdecode] = ACTIONS(2225), + [anon_sym_LBRACK2] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_LT_DASH] = ACTIONS(2225), + [anon_sym_LT_LT] = ACTIONS(2225), + [anon_sym_GT_GT] = ACTIONS(2225), + [anon_sym_GT_GT_GT] = ACTIONS(2225), + [anon_sym_AMP_CARET] = ACTIONS(2225), + [anon_sym_AMP_AMP] = ACTIONS(2225), + [anon_sym_PIPE_PIPE] = ACTIONS(2225), + [anon_sym_or] = ACTIONS(2225), + [sym_none] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_nil] = ACTIONS(2225), + [anon_sym_QMARK_DOT] = ACTIONS(2225), + [anon_sym_POUND_LBRACK] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_DOLLARif] = ACTIONS(2225), + [anon_sym_is] = ACTIONS(2225), + [anon_sym_BANGis] = ACTIONS(2225), + [anon_sym_in] = ACTIONS(2225), + [anon_sym_BANGin] = ACTIONS(2225), + [anon_sym_match] = ACTIONS(2225), + [anon_sym_select] = ACTIONS(2225), + [anon_sym_lock] = ACTIONS(2225), + [anon_sym_rlock] = ACTIONS(2225), + [anon_sym_unsafe] = ACTIONS(2225), + [anon_sym_sql] = ACTIONS(2225), + [sym_int_literal] = ACTIONS(2225), + [sym_float_literal] = ACTIONS(2225), + [sym_rune_literal] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_c_SQUOTE] = ACTIONS(2225), + [anon_sym_c_DQUOTE] = ACTIONS(2225), + [anon_sym_r_SQUOTE] = ACTIONS(2225), + [anon_sym_r_DQUOTE] = ACTIONS(2225), + [sym_pseudo_compile_time_identifier] = ACTIONS(2225), + [anon_sym_shared] = ACTIONS(2225), + [anon_sym_map_LBRACK] = ACTIONS(2225), + [anon_sym_chan] = ACTIONS(2225), + [anon_sym_thread] = ACTIONS(2225), + [anon_sym_atomic] = ACTIONS(2225), }, - [1144] = { - [sym_line_comment] = STATE(1144), - [sym_block_comment] = STATE(1144), - [sym_identifier] = ACTIONS(2732), - [anon_sym_LF] = ACTIONS(2732), - [anon_sym_CR] = ACTIONS(2732), - [anon_sym_CR_LF] = ACTIONS(2732), + [1139] = { + [sym_line_comment] = STATE(1139), + [sym_block_comment] = STATE(1139), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LF] = ACTIONS(2205), + [anon_sym_CR] = ACTIONS(2205), + [anon_sym_CR_LF] = ACTIONS(2205), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_DOT] = ACTIONS(2732), - [anon_sym_as] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_COMMA] = ACTIONS(2732), - [anon_sym_RBRACE] = ACTIONS(2732), - [anon_sym_LPAREN] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_fn] = ACTIONS(2732), - [anon_sym_PLUS] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2732), - [anon_sym_STAR] = ACTIONS(2732), - [anon_sym_SLASH] = ACTIONS(2732), - [anon_sym_PERCENT] = ACTIONS(2732), - [anon_sym_LT] = ACTIONS(2732), - [anon_sym_GT] = ACTIONS(2732), - [anon_sym_EQ_EQ] = ACTIONS(2732), - [anon_sym_BANG_EQ] = ACTIONS(2732), - [anon_sym_LT_EQ] = ACTIONS(2732), - [anon_sym_GT_EQ] = ACTIONS(2732), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_struct] = ACTIONS(2732), - [anon_sym_mut] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2732), - [anon_sym_DASH_DASH] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2732), - [anon_sym_go] = ACTIONS(2732), - [anon_sym_spawn] = ACTIONS(2732), - [anon_sym_json_DOTdecode] = ACTIONS(2732), - [anon_sym_LBRACK2] = ACTIONS(2732), - [anon_sym_TILDE] = ACTIONS(2732), - [anon_sym_CARET] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2732), - [anon_sym_LT_DASH] = ACTIONS(2732), - [anon_sym_LT_LT] = ACTIONS(2732), - [anon_sym_GT_GT] = ACTIONS(2732), - [anon_sym_GT_GT_GT] = ACTIONS(2732), - [anon_sym_AMP_CARET] = ACTIONS(2732), - [anon_sym_AMP_AMP] = ACTIONS(2732), - [anon_sym_PIPE_PIPE] = ACTIONS(2732), - [anon_sym_or] = ACTIONS(2732), - [sym_none] = ACTIONS(2732), - [sym_true] = ACTIONS(2732), - [sym_false] = ACTIONS(2732), - [sym_nil] = ACTIONS(2732), - [anon_sym_QMARK_DOT] = ACTIONS(2732), - [anon_sym_POUND_LBRACK] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_DOLLARif] = ACTIONS(2732), - [anon_sym_is] = ACTIONS(2732), - [anon_sym_BANGis] = ACTIONS(2732), - [anon_sym_in] = ACTIONS(2732), - [anon_sym_BANGin] = ACTIONS(2732), - [anon_sym_match] = ACTIONS(2732), - [anon_sym_select] = ACTIONS(2732), - [anon_sym_lock] = ACTIONS(2732), - [anon_sym_rlock] = ACTIONS(2732), - [anon_sym_unsafe] = ACTIONS(2732), - [anon_sym_sql] = ACTIONS(2732), - [sym_int_literal] = ACTIONS(2732), - [sym_float_literal] = ACTIONS(2732), - [sym_rune_literal] = ACTIONS(2732), - [sym_pseudo_compile_time_identifier] = ACTIONS(2732), - [anon_sym_shared] = ACTIONS(2732), - [anon_sym_map_LBRACK] = ACTIONS(2732), - [anon_sym_chan] = ACTIONS(2732), - [anon_sym_thread] = ACTIONS(2732), - [anon_sym_atomic] = ACTIONS(2732), - [sym___double_quote] = ACTIONS(2732), - [sym___single_quote] = ACTIONS(2732), - [sym___c_double_quote] = ACTIONS(2732), - [sym___c_single_quote] = ACTIONS(2732), - [sym___r_double_quote] = ACTIONS(2732), - [sym___r_single_quote] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_DOT] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_RPAREN] = ACTIONS(2205), + [anon_sym_PIPE] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_PERCENT] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_GT] = ACTIONS(2205), + [anon_sym_EQ_EQ] = ACTIONS(2205), + [anon_sym_BANG_EQ] = ACTIONS(2205), + [anon_sym_LT_EQ] = ACTIONS(2205), + [anon_sym_GT_EQ] = ACTIONS(2205), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2203), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_mut] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(2205), + [anon_sym_QMARK] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_go] = ACTIONS(2205), + [anon_sym_spawn] = ACTIONS(2205), + [anon_sym_json_DOTdecode] = ACTIONS(2205), + [anon_sym_LBRACK2] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_CARET] = ACTIONS(2205), + [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_LT_DASH] = ACTIONS(2205), + [anon_sym_LT_LT] = ACTIONS(2205), + [anon_sym_GT_GT] = ACTIONS(2205), + [anon_sym_GT_GT_GT] = ACTIONS(2205), + [anon_sym_AMP_CARET] = ACTIONS(2205), + [anon_sym_AMP_AMP] = ACTIONS(2205), + [anon_sym_PIPE_PIPE] = ACTIONS(2205), + [anon_sym_or] = ACTIONS(2205), + [sym_none] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_nil] = ACTIONS(2205), + [anon_sym_QMARK_DOT] = ACTIONS(2205), + [anon_sym_POUND_LBRACK] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_DOLLARif] = ACTIONS(2205), + [anon_sym_is] = ACTIONS(2205), + [anon_sym_BANGis] = ACTIONS(2205), + [anon_sym_in] = ACTIONS(2205), + [anon_sym_BANGin] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_select] = ACTIONS(2205), + [anon_sym_lock] = ACTIONS(2205), + [anon_sym_rlock] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_sql] = ACTIONS(2205), + [sym_int_literal] = ACTIONS(2205), + [sym_float_literal] = ACTIONS(2205), + [sym_rune_literal] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2205), + [anon_sym_c_SQUOTE] = ACTIONS(2205), + [anon_sym_c_DQUOTE] = ACTIONS(2205), + [anon_sym_r_SQUOTE] = ACTIONS(2205), + [anon_sym_r_DQUOTE] = ACTIONS(2205), + [sym_pseudo_compile_time_identifier] = ACTIONS(2205), + [anon_sym_shared] = ACTIONS(2205), + [anon_sym_map_LBRACK] = ACTIONS(2205), + [anon_sym_chan] = ACTIONS(2205), + [anon_sym_thread] = ACTIONS(2205), + [anon_sym_atomic] = ACTIONS(2205), }, - [1145] = { - [sym_line_comment] = STATE(1145), - [sym_block_comment] = STATE(1145), - [sym_identifier] = ACTIONS(2119), - [anon_sym_LF] = ACTIONS(2119), - [anon_sym_CR] = ACTIONS(2119), - [anon_sym_CR_LF] = ACTIONS(2119), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_DOT] = ACTIONS(2119), - [anon_sym_as] = ACTIONS(2119), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_RPAREN] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(2119), - [anon_sym_fn] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2119), - [anon_sym_DASH] = ACTIONS(2119), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_SLASH] = ACTIONS(2119), - [anon_sym_PERCENT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2119), - [anon_sym_GT] = ACTIONS(2119), - [anon_sym_EQ_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ] = ACTIONS(2119), - [anon_sym_LT_EQ] = ACTIONS(2119), - [anon_sym_GT_EQ] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2119), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_struct] = ACTIONS(2119), - [anon_sym_mut] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_QMARK] = ACTIONS(2119), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_go] = ACTIONS(2119), - [anon_sym_spawn] = ACTIONS(2119), - [anon_sym_json_DOTdecode] = ACTIONS(2119), - [anon_sym_LBRACK2] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_LT_DASH] = ACTIONS(2119), - [anon_sym_LT_LT] = ACTIONS(2119), - [anon_sym_GT_GT] = ACTIONS(2119), - [anon_sym_GT_GT_GT] = ACTIONS(2119), - [anon_sym_AMP_CARET] = ACTIONS(2119), - [anon_sym_AMP_AMP] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2119), - [anon_sym_or] = ACTIONS(2119), - [sym_none] = ACTIONS(2119), - [sym_true] = ACTIONS(2119), - [sym_false] = ACTIONS(2119), - [sym_nil] = ACTIONS(2119), - [anon_sym_QMARK_DOT] = ACTIONS(2119), - [anon_sym_POUND_LBRACK] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_DOLLARif] = ACTIONS(2119), - [anon_sym_is] = ACTIONS(2119), - [anon_sym_BANGis] = ACTIONS(2119), - [anon_sym_in] = ACTIONS(2119), - [anon_sym_BANGin] = ACTIONS(2119), - [anon_sym_match] = ACTIONS(2119), - [anon_sym_select] = ACTIONS(2119), - [anon_sym_lock] = ACTIONS(2119), - [anon_sym_rlock] = ACTIONS(2119), - [anon_sym_unsafe] = ACTIONS(2119), - [anon_sym_sql] = ACTIONS(2119), - [sym_int_literal] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), - [sym_rune_literal] = ACTIONS(2119), - [sym_pseudo_compile_time_identifier] = ACTIONS(2119), - [anon_sym_shared] = ACTIONS(2119), - [anon_sym_map_LBRACK] = ACTIONS(2119), - [anon_sym_chan] = ACTIONS(2119), - [anon_sym_thread] = ACTIONS(2119), - [anon_sym_atomic] = ACTIONS(2119), - [sym___double_quote] = ACTIONS(2119), - [sym___single_quote] = ACTIONS(2119), - [sym___c_double_quote] = ACTIONS(2119), - [sym___c_single_quote] = ACTIONS(2119), - [sym___r_double_quote] = ACTIONS(2119), - [sym___r_single_quote] = ACTIONS(2119), + [1140] = { + [sym_line_comment] = STATE(1140), + [sym_block_comment] = STATE(1140), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LF] = ACTIONS(2273), + [anon_sym_CR] = ACTIONS(2273), + [anon_sym_CR_LF] = ACTIONS(2273), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2273), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_as] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_COMMA] = ACTIONS(2273), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_RPAREN] = ACTIONS(2273), + [anon_sym_PIPE] = ACTIONS(2273), + [anon_sym_fn] = ACTIONS(2273), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_SLASH] = ACTIONS(2273), + [anon_sym_PERCENT] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_GT] = ACTIONS(2273), + [anon_sym_EQ_EQ] = ACTIONS(2273), + [anon_sym_BANG_EQ] = ACTIONS(2273), + [anon_sym_LT_EQ] = ACTIONS(2273), + [anon_sym_GT_EQ] = ACTIONS(2273), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2271), + [anon_sym_struct] = ACTIONS(2273), + [anon_sym_mut] = ACTIONS(2273), + [anon_sym_PLUS_PLUS] = ACTIONS(2273), + [anon_sym_DASH_DASH] = ACTIONS(2273), + [anon_sym_QMARK] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2273), + [anon_sym_go] = ACTIONS(2273), + [anon_sym_spawn] = ACTIONS(2273), + [anon_sym_json_DOTdecode] = ACTIONS(2273), + [anon_sym_LBRACK2] = ACTIONS(2273), + [anon_sym_TILDE] = ACTIONS(2273), + [anon_sym_CARET] = ACTIONS(2273), + [anon_sym_AMP] = ACTIONS(2273), + [anon_sym_LT_DASH] = ACTIONS(2273), + [anon_sym_LT_LT] = ACTIONS(2273), + [anon_sym_GT_GT] = ACTIONS(2273), + [anon_sym_GT_GT_GT] = ACTIONS(2273), + [anon_sym_AMP_CARET] = ACTIONS(2273), + [anon_sym_AMP_AMP] = ACTIONS(2273), + [anon_sym_PIPE_PIPE] = ACTIONS(2273), + [anon_sym_or] = ACTIONS(2273), + [sym_none] = ACTIONS(2273), + [sym_true] = ACTIONS(2273), + [sym_false] = ACTIONS(2273), + [sym_nil] = ACTIONS(2273), + [anon_sym_QMARK_DOT] = ACTIONS(2273), + [anon_sym_POUND_LBRACK] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_DOLLARif] = ACTIONS(2273), + [anon_sym_is] = ACTIONS(2273), + [anon_sym_BANGis] = ACTIONS(2273), + [anon_sym_in] = ACTIONS(2273), + [anon_sym_BANGin] = ACTIONS(2273), + [anon_sym_match] = ACTIONS(2273), + [anon_sym_select] = ACTIONS(2273), + [anon_sym_lock] = ACTIONS(2273), + [anon_sym_rlock] = ACTIONS(2273), + [anon_sym_unsafe] = ACTIONS(2273), + [anon_sym_sql] = ACTIONS(2273), + [sym_int_literal] = ACTIONS(2273), + [sym_float_literal] = ACTIONS(2273), + [sym_rune_literal] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(2273), + [anon_sym_c_SQUOTE] = ACTIONS(2273), + [anon_sym_c_DQUOTE] = ACTIONS(2273), + [anon_sym_r_SQUOTE] = ACTIONS(2273), + [anon_sym_r_DQUOTE] = ACTIONS(2273), + [sym_pseudo_compile_time_identifier] = ACTIONS(2273), + [anon_sym_shared] = ACTIONS(2273), + [anon_sym_map_LBRACK] = ACTIONS(2273), + [anon_sym_chan] = ACTIONS(2273), + [anon_sym_thread] = ACTIONS(2273), + [anon_sym_atomic] = ACTIONS(2273), + }, + [1141] = { + [sym_line_comment] = STATE(1141), + [sym_block_comment] = STATE(1141), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LF] = ACTIONS(3011), + [anon_sym_CR] = ACTIONS(3011), + [anon_sym_CR_LF] = ACTIONS(3011), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(3011), + [anon_sym_as] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_RBRACE] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_RPAREN] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_fn] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3011), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_SLASH] = ACTIONS(3011), + [anon_sym_PERCENT] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(3011), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_struct] = ACTIONS(3011), + [anon_sym_mut] = ACTIONS(3011), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [anon_sym_QMARK] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(3011), + [anon_sym_go] = ACTIONS(3011), + [anon_sym_spawn] = ACTIONS(3011), + [anon_sym_json_DOTdecode] = ACTIONS(3011), + [anon_sym_LBRACK2] = ACTIONS(3011), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_CARET] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_LT_DASH] = ACTIONS(3011), + [anon_sym_LT_LT] = ACTIONS(3011), + [anon_sym_GT_GT] = ACTIONS(3011), + [anon_sym_GT_GT_GT] = ACTIONS(3011), + [anon_sym_AMP_CARET] = ACTIONS(3011), + [anon_sym_AMP_AMP] = ACTIONS(3011), + [anon_sym_PIPE_PIPE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3011), + [sym_none] = ACTIONS(3011), + [sym_true] = ACTIONS(3011), + [sym_false] = ACTIONS(3011), + [sym_nil] = ACTIONS(3011), + [anon_sym_QMARK_DOT] = ACTIONS(3011), + [anon_sym_POUND_LBRACK] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_DOLLARif] = ACTIONS(3011), + [anon_sym_is] = ACTIONS(3011), + [anon_sym_BANGis] = ACTIONS(3011), + [anon_sym_in] = ACTIONS(3011), + [anon_sym_BANGin] = ACTIONS(3011), + [anon_sym_match] = ACTIONS(3011), + [anon_sym_select] = ACTIONS(3011), + [anon_sym_lock] = ACTIONS(3011), + [anon_sym_rlock] = ACTIONS(3011), + [anon_sym_unsafe] = ACTIONS(3011), + [anon_sym_sql] = ACTIONS(3011), + [sym_int_literal] = ACTIONS(3011), + [sym_float_literal] = ACTIONS(3011), + [sym_rune_literal] = ACTIONS(3011), + [anon_sym_SQUOTE] = ACTIONS(3011), + [anon_sym_DQUOTE] = ACTIONS(3011), + [anon_sym_c_SQUOTE] = ACTIONS(3011), + [anon_sym_c_DQUOTE] = ACTIONS(3011), + [anon_sym_r_SQUOTE] = ACTIONS(3011), + [anon_sym_r_DQUOTE] = ACTIONS(3011), + [sym_pseudo_compile_time_identifier] = ACTIONS(3011), + [anon_sym_shared] = ACTIONS(3011), + [anon_sym_map_LBRACK] = ACTIONS(3011), + [anon_sym_chan] = ACTIONS(3011), + [anon_sym_thread] = ACTIONS(3011), + [anon_sym_atomic] = ACTIONS(3011), + }, + [1142] = { + [sym_line_comment] = STATE(1142), + [sym_block_comment] = STATE(1142), + [sym_identifier] = ACTIONS(3015), + [anon_sym_LF] = ACTIONS(3015), + [anon_sym_CR] = ACTIONS(3015), + [anon_sym_CR_LF] = ACTIONS(3015), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3015), + [anon_sym_DOT] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(3015), + [anon_sym_LBRACE] = ACTIONS(3015), + [anon_sym_COMMA] = ACTIONS(3015), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(3015), + [anon_sym_RPAREN] = ACTIONS(3015), + [anon_sym_PIPE] = ACTIONS(3015), + [anon_sym_fn] = ACTIONS(3015), + [anon_sym_PLUS] = ACTIONS(3015), + [anon_sym_DASH] = ACTIONS(3015), + [anon_sym_STAR] = ACTIONS(3015), + [anon_sym_SLASH] = ACTIONS(3015), + [anon_sym_PERCENT] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3015), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_struct] = ACTIONS(3015), + [anon_sym_mut] = ACTIONS(3015), + [anon_sym_PLUS_PLUS] = ACTIONS(3015), + [anon_sym_DASH_DASH] = ACTIONS(3015), + [anon_sym_QMARK] = ACTIONS(3015), + [anon_sym_BANG] = ACTIONS(3015), + [anon_sym_go] = ACTIONS(3015), + [anon_sym_spawn] = ACTIONS(3015), + [anon_sym_json_DOTdecode] = ACTIONS(3015), + [anon_sym_LBRACK2] = ACTIONS(3015), + [anon_sym_TILDE] = ACTIONS(3015), + [anon_sym_CARET] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3015), + [anon_sym_LT_DASH] = ACTIONS(3015), + [anon_sym_LT_LT] = ACTIONS(3015), + [anon_sym_GT_GT] = ACTIONS(3015), + [anon_sym_GT_GT_GT] = ACTIONS(3015), + [anon_sym_AMP_CARET] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_or] = ACTIONS(3015), + [sym_none] = ACTIONS(3015), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_nil] = ACTIONS(3015), + [anon_sym_QMARK_DOT] = ACTIONS(3015), + [anon_sym_POUND_LBRACK] = ACTIONS(3015), + [anon_sym_if] = ACTIONS(3015), + [anon_sym_DOLLARif] = ACTIONS(3015), + [anon_sym_is] = ACTIONS(3015), + [anon_sym_BANGis] = ACTIONS(3015), + [anon_sym_in] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(3015), + [anon_sym_match] = ACTIONS(3015), + [anon_sym_select] = ACTIONS(3015), + [anon_sym_lock] = ACTIONS(3015), + [anon_sym_rlock] = ACTIONS(3015), + [anon_sym_unsafe] = ACTIONS(3015), + [anon_sym_sql] = ACTIONS(3015), + [sym_int_literal] = ACTIONS(3015), + [sym_float_literal] = ACTIONS(3015), + [sym_rune_literal] = ACTIONS(3015), + [anon_sym_SQUOTE] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3015), + [anon_sym_c_SQUOTE] = ACTIONS(3015), + [anon_sym_c_DQUOTE] = ACTIONS(3015), + [anon_sym_r_SQUOTE] = ACTIONS(3015), + [anon_sym_r_DQUOTE] = ACTIONS(3015), + [sym_pseudo_compile_time_identifier] = ACTIONS(3015), + [anon_sym_shared] = ACTIONS(3015), + [anon_sym_map_LBRACK] = ACTIONS(3015), + [anon_sym_chan] = ACTIONS(3015), + [anon_sym_thread] = ACTIONS(3015), + [anon_sym_atomic] = ACTIONS(3015), + }, + [1143] = { + [sym_line_comment] = STATE(1143), + [sym_block_comment] = STATE(1143), + [sym_identifier] = ACTIONS(3021), + [anon_sym_LF] = ACTIONS(3021), + [anon_sym_CR] = ACTIONS(3021), + [anon_sym_CR_LF] = ACTIONS(3021), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3021), + [anon_sym_DOT] = ACTIONS(3021), + [anon_sym_as] = ACTIONS(3021), + [anon_sym_LBRACE] = ACTIONS(3021), + [anon_sym_COMMA] = ACTIONS(3021), + [anon_sym_RBRACE] = ACTIONS(3021), + [anon_sym_LPAREN] = ACTIONS(3021), + [anon_sym_RPAREN] = ACTIONS(3021), + [anon_sym_PIPE] = ACTIONS(3021), + [anon_sym_fn] = ACTIONS(3021), + [anon_sym_PLUS] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3021), + [anon_sym_STAR] = ACTIONS(3021), + [anon_sym_SLASH] = ACTIONS(3021), + [anon_sym_PERCENT] = ACTIONS(3021), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3021), + [anon_sym_BANG_EQ] = ACTIONS(3021), + [anon_sym_LT_EQ] = ACTIONS(3021), + [anon_sym_GT_EQ] = ACTIONS(3021), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3021), + [anon_sym_LBRACK] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(3021), + [anon_sym_mut] = ACTIONS(3021), + [anon_sym_PLUS_PLUS] = ACTIONS(3021), + [anon_sym_DASH_DASH] = ACTIONS(3021), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_go] = ACTIONS(3021), + [anon_sym_spawn] = ACTIONS(3021), + [anon_sym_json_DOTdecode] = ACTIONS(3021), + [anon_sym_LBRACK2] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_AMP] = ACTIONS(3021), + [anon_sym_LT_DASH] = ACTIONS(3021), + [anon_sym_LT_LT] = ACTIONS(3021), + [anon_sym_GT_GT] = ACTIONS(3021), + [anon_sym_GT_GT_GT] = ACTIONS(3021), + [anon_sym_AMP_CARET] = ACTIONS(3021), + [anon_sym_AMP_AMP] = ACTIONS(3021), + [anon_sym_PIPE_PIPE] = ACTIONS(3021), + [anon_sym_or] = ACTIONS(3021), + [sym_none] = ACTIONS(3021), + [sym_true] = ACTIONS(3021), + [sym_false] = ACTIONS(3021), + [sym_nil] = ACTIONS(3021), + [anon_sym_QMARK_DOT] = ACTIONS(3021), + [anon_sym_POUND_LBRACK] = ACTIONS(3021), + [anon_sym_if] = ACTIONS(3021), + [anon_sym_DOLLARif] = ACTIONS(3021), + [anon_sym_is] = ACTIONS(3021), + [anon_sym_BANGis] = ACTIONS(3021), + [anon_sym_in] = ACTIONS(3021), + [anon_sym_BANGin] = ACTIONS(3021), + [anon_sym_match] = ACTIONS(3021), + [anon_sym_select] = ACTIONS(3021), + [anon_sym_lock] = ACTIONS(3021), + [anon_sym_rlock] = ACTIONS(3021), + [anon_sym_unsafe] = ACTIONS(3021), + [anon_sym_sql] = ACTIONS(3021), + [sym_int_literal] = ACTIONS(3021), + [sym_float_literal] = ACTIONS(3021), + [sym_rune_literal] = ACTIONS(3021), + [anon_sym_SQUOTE] = ACTIONS(3021), + [anon_sym_DQUOTE] = ACTIONS(3021), + [anon_sym_c_SQUOTE] = ACTIONS(3021), + [anon_sym_c_DQUOTE] = ACTIONS(3021), + [anon_sym_r_SQUOTE] = ACTIONS(3021), + [anon_sym_r_DQUOTE] = ACTIONS(3021), + [sym_pseudo_compile_time_identifier] = ACTIONS(3021), + [anon_sym_shared] = ACTIONS(3021), + [anon_sym_map_LBRACK] = ACTIONS(3021), + [anon_sym_chan] = ACTIONS(3021), + [anon_sym_thread] = ACTIONS(3021), + [anon_sym_atomic] = ACTIONS(3021), + }, + [1144] = { + [sym_line_comment] = STATE(1144), + [sym_block_comment] = STATE(1144), + [sym_identifier] = ACTIONS(2745), + [anon_sym_LF] = ACTIONS(2745), + [anon_sym_CR] = ACTIONS(2745), + [anon_sym_CR_LF] = ACTIONS(2745), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym_DOT] = ACTIONS(2745), + [anon_sym_as] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_COMMA] = ACTIONS(2745), + [anon_sym_RBRACE] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2745), + [anon_sym_RPAREN] = ACTIONS(2745), + [anon_sym_PIPE] = ACTIONS(2745), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2745), + [anon_sym_SLASH] = ACTIONS(2745), + [anon_sym_PERCENT] = ACTIONS(2745), + [anon_sym_LT] = ACTIONS(2745), + [anon_sym_GT] = ACTIONS(2745), + [anon_sym_EQ_EQ] = ACTIONS(2745), + [anon_sym_BANG_EQ] = ACTIONS(2745), + [anon_sym_LT_EQ] = ACTIONS(2745), + [anon_sym_GT_EQ] = ACTIONS(2745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_mut] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_QMARK] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_go] = ACTIONS(2745), + [anon_sym_spawn] = ACTIONS(2745), + [anon_sym_json_DOTdecode] = ACTIONS(2745), + [anon_sym_LBRACK2] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_CARET] = ACTIONS(2745), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_LT_DASH] = ACTIONS(2745), + [anon_sym_LT_LT] = ACTIONS(2745), + [anon_sym_GT_GT] = ACTIONS(2745), + [anon_sym_GT_GT_GT] = ACTIONS(2745), + [anon_sym_AMP_CARET] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2745), + [anon_sym_PIPE_PIPE] = ACTIONS(2745), + [anon_sym_or] = ACTIONS(2745), + [sym_none] = ACTIONS(2745), + [sym_true] = ACTIONS(2745), + [sym_false] = ACTIONS(2745), + [sym_nil] = ACTIONS(2745), + [anon_sym_QMARK_DOT] = ACTIONS(2745), + [anon_sym_POUND_LBRACK] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_DOLLARif] = ACTIONS(2745), + [anon_sym_is] = ACTIONS(2745), + [anon_sym_BANGis] = ACTIONS(2745), + [anon_sym_in] = ACTIONS(2745), + [anon_sym_BANGin] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(2745), + [anon_sym_lock] = ACTIONS(2745), + [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_unsafe] = ACTIONS(2745), + [anon_sym_sql] = ACTIONS(2745), + [sym_int_literal] = ACTIONS(2745), + [sym_float_literal] = ACTIONS(2745), + [sym_rune_literal] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [anon_sym_c_SQUOTE] = ACTIONS(2745), + [anon_sym_c_DQUOTE] = ACTIONS(2745), + [anon_sym_r_SQUOTE] = ACTIONS(2745), + [anon_sym_r_DQUOTE] = ACTIONS(2745), + [sym_pseudo_compile_time_identifier] = ACTIONS(2745), + [anon_sym_shared] = ACTIONS(2745), + [anon_sym_map_LBRACK] = ACTIONS(2745), + [anon_sym_chan] = ACTIONS(2745), + [anon_sym_thread] = ACTIONS(2745), + [anon_sym_atomic] = ACTIONS(2745), + }, + [1145] = { + [sym_line_comment] = STATE(1145), + [sym_block_comment] = STATE(1145), + [sym_identifier] = ACTIONS(2737), + [anon_sym_LF] = ACTIONS(2737), + [anon_sym_CR] = ACTIONS(2737), + [anon_sym_CR_LF] = ACTIONS(2737), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2737), + [anon_sym_DOT] = ACTIONS(2737), + [anon_sym_as] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_COMMA] = ACTIONS(2737), + [anon_sym_RBRACE] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(2737), + [anon_sym_RPAREN] = ACTIONS(2737), + [anon_sym_PIPE] = ACTIONS(2737), + [anon_sym_fn] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2737), + [anon_sym_SLASH] = ACTIONS(2737), + [anon_sym_PERCENT] = ACTIONS(2737), + [anon_sym_LT] = ACTIONS(2737), + [anon_sym_GT] = ACTIONS(2737), + [anon_sym_EQ_EQ] = ACTIONS(2737), + [anon_sym_BANG_EQ] = ACTIONS(2737), + [anon_sym_LT_EQ] = ACTIONS(2737), + [anon_sym_GT_EQ] = ACTIONS(2737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2737), + [anon_sym_LBRACK] = ACTIONS(2735), + [anon_sym_struct] = ACTIONS(2737), + [anon_sym_mut] = ACTIONS(2737), + [anon_sym_PLUS_PLUS] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2737), + [anon_sym_QMARK] = ACTIONS(2737), + [anon_sym_BANG] = ACTIONS(2737), + [anon_sym_go] = ACTIONS(2737), + [anon_sym_spawn] = ACTIONS(2737), + [anon_sym_json_DOTdecode] = ACTIONS(2737), + [anon_sym_LBRACK2] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(2737), + [anon_sym_CARET] = ACTIONS(2737), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_LT_DASH] = ACTIONS(2737), + [anon_sym_LT_LT] = ACTIONS(2737), + [anon_sym_GT_GT] = ACTIONS(2737), + [anon_sym_GT_GT_GT] = ACTIONS(2737), + [anon_sym_AMP_CARET] = ACTIONS(2737), + [anon_sym_AMP_AMP] = ACTIONS(2737), + [anon_sym_PIPE_PIPE] = ACTIONS(2737), + [anon_sym_or] = ACTIONS(2737), + [sym_none] = ACTIONS(2737), + [sym_true] = ACTIONS(2737), + [sym_false] = ACTIONS(2737), + [sym_nil] = ACTIONS(2737), + [anon_sym_QMARK_DOT] = ACTIONS(2737), + [anon_sym_POUND_LBRACK] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_DOLLARif] = ACTIONS(2737), + [anon_sym_is] = ACTIONS(2737), + [anon_sym_BANGis] = ACTIONS(2737), + [anon_sym_in] = ACTIONS(2737), + [anon_sym_BANGin] = ACTIONS(2737), + [anon_sym_match] = ACTIONS(2737), + [anon_sym_select] = ACTIONS(2737), + [anon_sym_lock] = ACTIONS(2737), + [anon_sym_rlock] = ACTIONS(2737), + [anon_sym_unsafe] = ACTIONS(2737), + [anon_sym_sql] = ACTIONS(2737), + [sym_int_literal] = ACTIONS(2737), + [sym_float_literal] = ACTIONS(2737), + [sym_rune_literal] = ACTIONS(2737), + [anon_sym_SQUOTE] = ACTIONS(2737), + [anon_sym_DQUOTE] = ACTIONS(2737), + [anon_sym_c_SQUOTE] = ACTIONS(2737), + [anon_sym_c_DQUOTE] = ACTIONS(2737), + [anon_sym_r_SQUOTE] = ACTIONS(2737), + [anon_sym_r_DQUOTE] = ACTIONS(2737), + [sym_pseudo_compile_time_identifier] = ACTIONS(2737), + [anon_sym_shared] = ACTIONS(2737), + [anon_sym_map_LBRACK] = ACTIONS(2737), + [anon_sym_chan] = ACTIONS(2737), + [anon_sym_thread] = ACTIONS(2737), + [anon_sym_atomic] = ACTIONS(2737), }, [1146] = { [sym_line_comment] = STATE(1146), [sym_block_comment] = STATE(1146), - [sym_identifier] = ACTIONS(2149), - [anon_sym_LF] = ACTIONS(2149), - [anon_sym_CR] = ACTIONS(2149), - [anon_sym_CR_LF] = ACTIONS(2149), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LF] = ACTIONS(2715), + [anon_sym_CR] = ACTIONS(2715), + [anon_sym_CR_LF] = ACTIONS(2715), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_DOT] = ACTIONS(2149), - [anon_sym_as] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_COMMA] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(2149), - [anon_sym_PIPE] = ACTIONS(2149), - [anon_sym_fn] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_PERCENT] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_GT] = ACTIONS(2149), - [anon_sym_EQ_EQ] = ACTIONS(2149), - [anon_sym_BANG_EQ] = ACTIONS(2149), - [anon_sym_LT_EQ] = ACTIONS(2149), - [anon_sym_GT_EQ] = ACTIONS(2149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2149), - [anon_sym_mut] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [anon_sym_QMARK] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_go] = ACTIONS(2149), - [anon_sym_spawn] = ACTIONS(2149), - [anon_sym_json_DOTdecode] = ACTIONS(2149), - [anon_sym_LBRACK2] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_LT_DASH] = ACTIONS(2149), - [anon_sym_LT_LT] = ACTIONS(2149), - [anon_sym_GT_GT] = ACTIONS(2149), - [anon_sym_GT_GT_GT] = ACTIONS(2149), - [anon_sym_AMP_CARET] = ACTIONS(2149), - [anon_sym_AMP_AMP] = ACTIONS(2149), - [anon_sym_PIPE_PIPE] = ACTIONS(2149), - [anon_sym_or] = ACTIONS(2149), - [sym_none] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_nil] = ACTIONS(2149), - [anon_sym_QMARK_DOT] = ACTIONS(2149), - [anon_sym_POUND_LBRACK] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_DOLLARif] = ACTIONS(2149), - [anon_sym_is] = ACTIONS(2149), - [anon_sym_BANGis] = ACTIONS(2149), - [anon_sym_in] = ACTIONS(2149), - [anon_sym_BANGin] = ACTIONS(2149), - [anon_sym_match] = ACTIONS(2149), - [anon_sym_select] = ACTIONS(2149), - [anon_sym_lock] = ACTIONS(2149), - [anon_sym_rlock] = ACTIONS(2149), - [anon_sym_unsafe] = ACTIONS(2149), - [anon_sym_sql] = ACTIONS(2149), - [sym_int_literal] = ACTIONS(2149), - [sym_float_literal] = ACTIONS(2149), - [sym_rune_literal] = ACTIONS(2149), - [sym_pseudo_compile_time_identifier] = ACTIONS(2149), - [anon_sym_shared] = ACTIONS(2149), - [anon_sym_map_LBRACK] = ACTIONS(2149), - [anon_sym_chan] = ACTIONS(2149), - [anon_sym_thread] = ACTIONS(2149), - [anon_sym_atomic] = ACTIONS(2149), - [sym___double_quote] = ACTIONS(2149), - [sym___single_quote] = ACTIONS(2149), - [sym___c_double_quote] = ACTIONS(2149), - [sym___c_single_quote] = ACTIONS(2149), - [sym___r_double_quote] = ACTIONS(2149), - [sym___r_single_quote] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_DOT] = ACTIONS(2715), + [anon_sym_as] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2715), + [anon_sym_RBRACE] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_RPAREN] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_PLUS] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_SLASH] = ACTIONS(2715), + [anon_sym_PERCENT] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_GT] = ACTIONS(2715), + [anon_sym_EQ_EQ] = ACTIONS(2715), + [anon_sym_BANG_EQ] = ACTIONS(2715), + [anon_sym_LT_EQ] = ACTIONS(2715), + [anon_sym_GT_EQ] = ACTIONS(2715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_QMARK] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_go] = ACTIONS(2715), + [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_json_DOTdecode] = ACTIONS(2715), + [anon_sym_LBRACK2] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_CARET] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_LT_DASH] = ACTIONS(2715), + [anon_sym_LT_LT] = ACTIONS(2715), + [anon_sym_GT_GT] = ACTIONS(2715), + [anon_sym_GT_GT_GT] = ACTIONS(2715), + [anon_sym_AMP_CARET] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_PIPE_PIPE] = ACTIONS(2715), + [anon_sym_or] = ACTIONS(2715), + [sym_none] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), + [sym_nil] = ACTIONS(2715), + [anon_sym_QMARK_DOT] = ACTIONS(2715), + [anon_sym_POUND_LBRACK] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_DOLLARif] = ACTIONS(2715), + [anon_sym_is] = ACTIONS(2715), + [anon_sym_BANGis] = ACTIONS(2715), + [anon_sym_in] = ACTIONS(2715), + [anon_sym_BANGin] = ACTIONS(2715), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_select] = ACTIONS(2715), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_sql] = ACTIONS(2715), + [sym_int_literal] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2715), + [sym_rune_literal] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [anon_sym_c_SQUOTE] = ACTIONS(2715), + [anon_sym_c_DQUOTE] = ACTIONS(2715), + [anon_sym_r_SQUOTE] = ACTIONS(2715), + [anon_sym_r_DQUOTE] = ACTIONS(2715), + [sym_pseudo_compile_time_identifier] = ACTIONS(2715), + [anon_sym_shared] = ACTIONS(2715), + [anon_sym_map_LBRACK] = ACTIONS(2715), + [anon_sym_chan] = ACTIONS(2715), + [anon_sym_thread] = ACTIONS(2715), + [anon_sym_atomic] = ACTIONS(2715), }, [1147] = { [sym_line_comment] = STATE(1147), [sym_block_comment] = STATE(1147), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), + [sym_identifier] = ACTIONS(2847), + [anon_sym_LF] = ACTIONS(2847), + [anon_sym_CR] = ACTIONS(2847), + [anon_sym_CR_LF] = ACTIONS(2847), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [sym_pseudo_compile_time_identifier] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2847), + [anon_sym_DOT] = ACTIONS(2847), + [anon_sym_as] = ACTIONS(2847), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_COMMA] = ACTIONS(2847), + [anon_sym_RBRACE] = ACTIONS(2847), + [anon_sym_LPAREN] = ACTIONS(2847), + [anon_sym_RPAREN] = ACTIONS(2847), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_fn] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2847), + [anon_sym_DASH] = ACTIONS(2847), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_SLASH] = ACTIONS(2847), + [anon_sym_PERCENT] = ACTIONS(2847), + [anon_sym_LT] = ACTIONS(2847), + [anon_sym_GT] = ACTIONS(2847), + [anon_sym_EQ_EQ] = ACTIONS(2847), + [anon_sym_BANG_EQ] = ACTIONS(2847), + [anon_sym_LT_EQ] = ACTIONS(2847), + [anon_sym_GT_EQ] = ACTIONS(2847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2847), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(2847), + [anon_sym_mut] = ACTIONS(2847), + [anon_sym_PLUS_PLUS] = ACTIONS(2847), + [anon_sym_DASH_DASH] = ACTIONS(2847), + [anon_sym_QMARK] = ACTIONS(2847), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2847), + [anon_sym_spawn] = ACTIONS(2847), + [anon_sym_json_DOTdecode] = ACTIONS(2847), + [anon_sym_LBRACK2] = ACTIONS(2847), + [anon_sym_TILDE] = ACTIONS(2847), + [anon_sym_CARET] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_LT_DASH] = ACTIONS(2847), + [anon_sym_LT_LT] = ACTIONS(2847), + [anon_sym_GT_GT] = ACTIONS(2847), + [anon_sym_GT_GT_GT] = ACTIONS(2847), + [anon_sym_AMP_CARET] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2847), + [anon_sym_PIPE_PIPE] = ACTIONS(2847), + [anon_sym_or] = ACTIONS(2847), + [sym_none] = ACTIONS(2847), + [sym_true] = ACTIONS(2847), + [sym_false] = ACTIONS(2847), + [sym_nil] = ACTIONS(2847), + [anon_sym_QMARK_DOT] = ACTIONS(2847), + [anon_sym_POUND_LBRACK] = ACTIONS(2847), + [anon_sym_if] = ACTIONS(2847), + [anon_sym_DOLLARif] = ACTIONS(2847), + [anon_sym_is] = ACTIONS(2847), + [anon_sym_BANGis] = ACTIONS(2847), + [anon_sym_in] = ACTIONS(2847), + [anon_sym_BANGin] = ACTIONS(2847), + [anon_sym_match] = ACTIONS(2847), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2847), + [anon_sym_rlock] = ACTIONS(2847), + [anon_sym_unsafe] = ACTIONS(2847), + [anon_sym_sql] = ACTIONS(2847), + [sym_int_literal] = ACTIONS(2847), + [sym_float_literal] = ACTIONS(2847), + [sym_rune_literal] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2847), + [anon_sym_c_SQUOTE] = ACTIONS(2847), + [anon_sym_c_DQUOTE] = ACTIONS(2847), + [anon_sym_r_SQUOTE] = ACTIONS(2847), + [anon_sym_r_DQUOTE] = ACTIONS(2847), + [sym_pseudo_compile_time_identifier] = ACTIONS(2847), + [anon_sym_shared] = ACTIONS(2847), + [anon_sym_map_LBRACK] = ACTIONS(2847), + [anon_sym_chan] = ACTIONS(2847), + [anon_sym_thread] = ACTIONS(2847), + [anon_sym_atomic] = ACTIONS(2847), }, [1148] = { [sym_line_comment] = STATE(1148), [sym_block_comment] = STATE(1148), - [sym_identifier] = ACTIONS(2788), - [anon_sym_LF] = ACTIONS(2788), - [anon_sym_CR] = ACTIONS(2788), - [anon_sym_CR_LF] = ACTIONS(2788), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LF] = ACTIONS(2159), + [anon_sym_CR] = ACTIONS(2159), + [anon_sym_CR_LF] = ACTIONS(2159), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_DOT] = ACTIONS(2788), - [anon_sym_as] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_COMMA] = ACTIONS(2788), - [anon_sym_RBRACE] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2788), - [anon_sym_RPAREN] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_fn] = ACTIONS(2788), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_SLASH] = ACTIONS(2788), - [anon_sym_PERCENT] = ACTIONS(2788), - [anon_sym_LT] = ACTIONS(2788), - [anon_sym_GT] = ACTIONS(2788), - [anon_sym_EQ_EQ] = ACTIONS(2788), - [anon_sym_BANG_EQ] = ACTIONS(2788), - [anon_sym_LT_EQ] = ACTIONS(2788), - [anon_sym_GT_EQ] = ACTIONS(2788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2788), - [anon_sym_mut] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_QMARK] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_go] = ACTIONS(2788), - [anon_sym_spawn] = ACTIONS(2788), - [anon_sym_json_DOTdecode] = ACTIONS(2788), - [anon_sym_LBRACK2] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_CARET] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2788), - [anon_sym_LT_DASH] = ACTIONS(2788), - [anon_sym_LT_LT] = ACTIONS(2788), - [anon_sym_GT_GT] = ACTIONS(2788), - [anon_sym_GT_GT_GT] = ACTIONS(2788), - [anon_sym_AMP_CARET] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_PIPE_PIPE] = ACTIONS(2788), - [anon_sym_or] = ACTIONS(2788), - [sym_none] = ACTIONS(2788), - [sym_true] = ACTIONS(2788), - [sym_false] = ACTIONS(2788), - [sym_nil] = ACTIONS(2788), - [anon_sym_QMARK_DOT] = ACTIONS(2788), - [anon_sym_POUND_LBRACK] = ACTIONS(2788), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_DOLLARif] = ACTIONS(2788), - [anon_sym_is] = ACTIONS(2788), - [anon_sym_BANGis] = ACTIONS(2788), - [anon_sym_in] = ACTIONS(2788), - [anon_sym_BANGin] = ACTIONS(2788), - [anon_sym_match] = ACTIONS(2788), - [anon_sym_select] = ACTIONS(2788), - [anon_sym_lock] = ACTIONS(2788), - [anon_sym_rlock] = ACTIONS(2788), - [anon_sym_unsafe] = ACTIONS(2788), - [anon_sym_sql] = ACTIONS(2788), - [sym_int_literal] = ACTIONS(2788), - [sym_float_literal] = ACTIONS(2788), - [sym_rune_literal] = ACTIONS(2788), - [sym_pseudo_compile_time_identifier] = ACTIONS(2788), - [anon_sym_shared] = ACTIONS(2788), - [anon_sym_map_LBRACK] = ACTIONS(2788), - [anon_sym_chan] = ACTIONS(2788), - [anon_sym_thread] = ACTIONS(2788), - [anon_sym_atomic] = ACTIONS(2788), - [sym___double_quote] = ACTIONS(2788), - [sym___single_quote] = ACTIONS(2788), - [sym___c_double_quote] = ACTIONS(2788), - [sym___c_single_quote] = ACTIONS(2788), - [sym___r_double_quote] = ACTIONS(2788), - [sym___r_single_quote] = ACTIONS(2788), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_DOT] = ACTIONS(2159), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_RPAREN] = ACTIONS(2159), + [anon_sym_PIPE] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(2159), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2159), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_PERCENT] = ACTIONS(2159), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_GT] = ACTIONS(2159), + [anon_sym_EQ_EQ] = ACTIONS(2159), + [anon_sym_BANG_EQ] = ACTIONS(2159), + [anon_sym_LT_EQ] = ACTIONS(2159), + [anon_sym_GT_EQ] = ACTIONS(2159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(2159), + [anon_sym_mut] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [anon_sym_QMARK] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(2159), + [anon_sym_spawn] = ACTIONS(2159), + [anon_sym_json_DOTdecode] = ACTIONS(2159), + [anon_sym_LBRACK2] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_CARET] = ACTIONS(2159), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_LT_DASH] = ACTIONS(2159), + [anon_sym_LT_LT] = ACTIONS(2159), + [anon_sym_GT_GT] = ACTIONS(2159), + [anon_sym_GT_GT_GT] = ACTIONS(2159), + [anon_sym_AMP_CARET] = ACTIONS(2159), + [anon_sym_AMP_AMP] = ACTIONS(2159), + [anon_sym_PIPE_PIPE] = ACTIONS(2159), + [anon_sym_or] = ACTIONS(2159), + [sym_none] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_nil] = ACTIONS(2159), + [anon_sym_QMARK_DOT] = ACTIONS(2159), + [anon_sym_POUND_LBRACK] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_DOLLARif] = ACTIONS(2159), + [anon_sym_is] = ACTIONS(2159), + [anon_sym_BANGis] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2159), + [anon_sym_BANGin] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_select] = ACTIONS(2159), + [anon_sym_lock] = ACTIONS(2159), + [anon_sym_rlock] = ACTIONS(2159), + [anon_sym_unsafe] = ACTIONS(2159), + [anon_sym_sql] = ACTIONS(2159), + [sym_int_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_rune_literal] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_c_SQUOTE] = ACTIONS(2159), + [anon_sym_c_DQUOTE] = ACTIONS(2159), + [anon_sym_r_SQUOTE] = ACTIONS(2159), + [anon_sym_r_DQUOTE] = ACTIONS(2159), + [sym_pseudo_compile_time_identifier] = ACTIONS(2159), + [anon_sym_shared] = ACTIONS(2159), + [anon_sym_map_LBRACK] = ACTIONS(2159), + [anon_sym_chan] = ACTIONS(2159), + [anon_sym_thread] = ACTIONS(2159), + [anon_sym_atomic] = ACTIONS(2159), }, [1149] = { [sym_line_comment] = STATE(1149), [sym_block_comment] = STATE(1149), - [sym_identifier] = ACTIONS(2798), - [anon_sym_LF] = ACTIONS(2798), - [anon_sym_CR] = ACTIONS(2798), - [anon_sym_CR_LF] = ACTIONS(2798), + [sym_identifier] = ACTIONS(2097), + [anon_sym_LF] = ACTIONS(2097), + [anon_sym_CR] = ACTIONS(2097), + [anon_sym_CR_LF] = ACTIONS(2097), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_as] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2798), - [anon_sym_RBRACE] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_RPAREN] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_fn] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2798), - [anon_sym_SLASH] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_GT] = ACTIONS(2798), - [anon_sym_EQ_EQ] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2798), - [anon_sym_LT_EQ] = ACTIONS(2798), - [anon_sym_GT_EQ] = ACTIONS(2798), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2796), - [anon_sym_struct] = ACTIONS(2798), - [anon_sym_mut] = ACTIONS(2798), - [anon_sym_PLUS_PLUS] = ACTIONS(2798), - [anon_sym_DASH_DASH] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2798), - [anon_sym_go] = ACTIONS(2798), - [anon_sym_spawn] = ACTIONS(2798), - [anon_sym_json_DOTdecode] = ACTIONS(2798), - [anon_sym_LBRACK2] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2798), - [anon_sym_CARET] = ACTIONS(2798), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_LT_LT] = ACTIONS(2798), - [anon_sym_GT_GT] = ACTIONS(2798), - [anon_sym_GT_GT_GT] = ACTIONS(2798), - [anon_sym_AMP_CARET] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_or] = ACTIONS(2798), - [sym_none] = ACTIONS(2798), - [sym_true] = ACTIONS(2798), - [sym_false] = ACTIONS(2798), - [sym_nil] = ACTIONS(2798), - [anon_sym_QMARK_DOT] = ACTIONS(2798), - [anon_sym_POUND_LBRACK] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_DOLLARif] = ACTIONS(2798), - [anon_sym_is] = ACTIONS(2798), - [anon_sym_BANGis] = ACTIONS(2798), - [anon_sym_in] = ACTIONS(2798), - [anon_sym_BANGin] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_select] = ACTIONS(2798), - [anon_sym_lock] = ACTIONS(2798), - [anon_sym_rlock] = ACTIONS(2798), - [anon_sym_unsafe] = ACTIONS(2798), - [anon_sym_sql] = ACTIONS(2798), - [sym_int_literal] = ACTIONS(2798), - [sym_float_literal] = ACTIONS(2798), - [sym_rune_literal] = ACTIONS(2798), - [sym_pseudo_compile_time_identifier] = ACTIONS(2798), - [anon_sym_shared] = ACTIONS(2798), - [anon_sym_map_LBRACK] = ACTIONS(2798), - [anon_sym_chan] = ACTIONS(2798), - [anon_sym_thread] = ACTIONS(2798), - [anon_sym_atomic] = ACTIONS(2798), - [sym___double_quote] = ACTIONS(2798), - [sym___single_quote] = ACTIONS(2798), - [sym___c_double_quote] = ACTIONS(2798), - [sym___c_single_quote] = ACTIONS(2798), - [sym___r_double_quote] = ACTIONS(2798), - [sym___r_single_quote] = ACTIONS(2798), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym_DOT] = ACTIONS(2097), + [anon_sym_as] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_COMMA] = ACTIONS(2097), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_RPAREN] = ACTIONS(2097), + [anon_sym_PIPE] = ACTIONS(2097), + [anon_sym_fn] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2097), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_PERCENT] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_GT] = ACTIONS(2097), + [anon_sym_EQ_EQ] = ACTIONS(2097), + [anon_sym_BANG_EQ] = ACTIONS(2097), + [anon_sym_LT_EQ] = ACTIONS(2097), + [anon_sym_GT_EQ] = ACTIONS(2097), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2095), + [anon_sym_struct] = ACTIONS(2097), + [anon_sym_mut] = ACTIONS(2097), + [anon_sym_PLUS_PLUS] = ACTIONS(2097), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [anon_sym_QMARK] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_go] = ACTIONS(2097), + [anon_sym_spawn] = ACTIONS(2097), + [anon_sym_json_DOTdecode] = ACTIONS(2097), + [anon_sym_LBRACK2] = ACTIONS(2097), + [anon_sym_TILDE] = ACTIONS(2097), + [anon_sym_CARET] = ACTIONS(2097), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2097), + [anon_sym_LT_LT] = ACTIONS(2097), + [anon_sym_GT_GT] = ACTIONS(2097), + [anon_sym_GT_GT_GT] = ACTIONS(2097), + [anon_sym_AMP_CARET] = ACTIONS(2097), + [anon_sym_AMP_AMP] = ACTIONS(2097), + [anon_sym_PIPE_PIPE] = ACTIONS(2097), + [anon_sym_or] = ACTIONS(2097), + [sym_none] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [sym_nil] = ACTIONS(2097), + [anon_sym_QMARK_DOT] = ACTIONS(2097), + [anon_sym_POUND_LBRACK] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_DOLLARif] = ACTIONS(2097), + [anon_sym_is] = ACTIONS(2097), + [anon_sym_BANGis] = ACTIONS(2097), + [anon_sym_in] = ACTIONS(2097), + [anon_sym_BANGin] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_select] = ACTIONS(2097), + [anon_sym_lock] = ACTIONS(2097), + [anon_sym_rlock] = ACTIONS(2097), + [anon_sym_unsafe] = ACTIONS(2097), + [anon_sym_sql] = ACTIONS(2097), + [sym_int_literal] = ACTIONS(2097), + [sym_float_literal] = ACTIONS(2097), + [sym_rune_literal] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2097), + [anon_sym_c_SQUOTE] = ACTIONS(2097), + [anon_sym_c_DQUOTE] = ACTIONS(2097), + [anon_sym_r_SQUOTE] = ACTIONS(2097), + [anon_sym_r_DQUOTE] = ACTIONS(2097), + [sym_pseudo_compile_time_identifier] = ACTIONS(2097), + [anon_sym_shared] = ACTIONS(2097), + [anon_sym_map_LBRACK] = ACTIONS(2097), + [anon_sym_chan] = ACTIONS(2097), + [anon_sym_thread] = ACTIONS(2097), + [anon_sym_atomic] = ACTIONS(2097), }, [1150] = { [sym_line_comment] = STATE(1150), [sym_block_comment] = STATE(1150), - [sym_identifier] = ACTIONS(2676), - [anon_sym_LF] = ACTIONS(2676), - [anon_sym_CR] = ACTIONS(2676), - [anon_sym_CR_LF] = ACTIONS(2676), + [sym_identifier] = ACTIONS(2197), + [anon_sym_LF] = ACTIONS(2197), + [anon_sym_CR] = ACTIONS(2197), + [anon_sym_CR_LF] = ACTIONS(2197), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_COMMA] = ACTIONS(2676), - [anon_sym_RBRACE] = ACTIONS(2676), - [anon_sym_LPAREN] = ACTIONS(2676), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_fn] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(2676), - [anon_sym_SLASH] = ACTIONS(2676), - [anon_sym_PERCENT] = ACTIONS(2676), - [anon_sym_LT] = ACTIONS(2676), - [anon_sym_GT] = ACTIONS(2676), - [anon_sym_EQ_EQ] = ACTIONS(2676), - [anon_sym_BANG_EQ] = ACTIONS(2676), - [anon_sym_LT_EQ] = ACTIONS(2676), - [anon_sym_GT_EQ] = ACTIONS(2676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2676), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_struct] = ACTIONS(2676), - [anon_sym_mut] = ACTIONS(2676), - [anon_sym_PLUS_PLUS] = ACTIONS(2676), - [anon_sym_DASH_DASH] = ACTIONS(2676), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(2676), - [anon_sym_go] = ACTIONS(2676), - [anon_sym_spawn] = ACTIONS(2676), - [anon_sym_json_DOTdecode] = ACTIONS(2676), - [anon_sym_LBRACK2] = ACTIONS(2676), - [anon_sym_TILDE] = ACTIONS(2676), - [anon_sym_CARET] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2676), - [anon_sym_LT_DASH] = ACTIONS(2676), - [anon_sym_LT_LT] = ACTIONS(2676), - [anon_sym_GT_GT] = ACTIONS(2676), - [anon_sym_GT_GT_GT] = ACTIONS(2676), - [anon_sym_AMP_CARET] = ACTIONS(2676), - [anon_sym_AMP_AMP] = ACTIONS(2676), - [anon_sym_PIPE_PIPE] = ACTIONS(2676), - [anon_sym_or] = ACTIONS(2676), - [sym_none] = ACTIONS(2676), - [sym_true] = ACTIONS(2676), - [sym_false] = ACTIONS(2676), - [sym_nil] = ACTIONS(2676), - [anon_sym_QMARK_DOT] = ACTIONS(2676), - [anon_sym_POUND_LBRACK] = ACTIONS(2676), - [anon_sym_if] = ACTIONS(2676), - [anon_sym_DOLLARif] = ACTIONS(2676), - [anon_sym_is] = ACTIONS(2676), - [anon_sym_BANGis] = ACTIONS(2676), - [anon_sym_in] = ACTIONS(2676), - [anon_sym_BANGin] = ACTIONS(2676), - [anon_sym_match] = ACTIONS(2676), - [anon_sym_select] = ACTIONS(2676), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2676), - [anon_sym_sql] = ACTIONS(2676), - [sym_int_literal] = ACTIONS(2676), - [sym_float_literal] = ACTIONS(2676), - [sym_rune_literal] = ACTIONS(2676), - [sym_pseudo_compile_time_identifier] = ACTIONS(2676), - [anon_sym_shared] = ACTIONS(2676), - [anon_sym_map_LBRACK] = ACTIONS(2676), - [anon_sym_chan] = ACTIONS(2676), - [anon_sym_thread] = ACTIONS(2676), - [anon_sym_atomic] = ACTIONS(2676), - [sym___double_quote] = ACTIONS(2676), - [sym___single_quote] = ACTIONS(2676), - [sym___c_double_quote] = ACTIONS(2676), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2676), - [sym___r_single_quote] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_DOT] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_COMMA] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_RPAREN] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2197), + [anon_sym_fn] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_PERCENT] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_GT] = ACTIONS(2197), + [anon_sym_EQ_EQ] = ACTIONS(2197), + [anon_sym_BANG_EQ] = ACTIONS(2197), + [anon_sym_LT_EQ] = ACTIONS(2197), + [anon_sym_GT_EQ] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2197), + [anon_sym_mut] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [anon_sym_QMARK] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_go] = ACTIONS(2197), + [anon_sym_spawn] = ACTIONS(2197), + [anon_sym_json_DOTdecode] = ACTIONS(2197), + [anon_sym_LBRACK2] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_CARET] = ACTIONS(2197), + [anon_sym_AMP] = ACTIONS(2197), + [anon_sym_LT_DASH] = ACTIONS(2197), + [anon_sym_LT_LT] = ACTIONS(2197), + [anon_sym_GT_GT] = ACTIONS(2197), + [anon_sym_GT_GT_GT] = ACTIONS(2197), + [anon_sym_AMP_CARET] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(2197), + [anon_sym_PIPE_PIPE] = ACTIONS(2197), + [anon_sym_or] = ACTIONS(2197), + [sym_none] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_nil] = ACTIONS(2197), + [anon_sym_QMARK_DOT] = ACTIONS(2197), + [anon_sym_POUND_LBRACK] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_DOLLARif] = ACTIONS(2197), + [anon_sym_is] = ACTIONS(2197), + [anon_sym_BANGis] = ACTIONS(2197), + [anon_sym_in] = ACTIONS(2197), + [anon_sym_BANGin] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_select] = ACTIONS(2197), + [anon_sym_lock] = ACTIONS(2197), + [anon_sym_rlock] = ACTIONS(2197), + [anon_sym_unsafe] = ACTIONS(2197), + [anon_sym_sql] = ACTIONS(2197), + [sym_int_literal] = ACTIONS(2197), + [sym_float_literal] = ACTIONS(2197), + [sym_rune_literal] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_c_SQUOTE] = ACTIONS(2197), + [anon_sym_c_DQUOTE] = ACTIONS(2197), + [anon_sym_r_SQUOTE] = ACTIONS(2197), + [anon_sym_r_DQUOTE] = ACTIONS(2197), + [sym_pseudo_compile_time_identifier] = ACTIONS(2197), + [anon_sym_shared] = ACTIONS(2197), + [anon_sym_map_LBRACK] = ACTIONS(2197), + [anon_sym_chan] = ACTIONS(2197), + [anon_sym_thread] = ACTIONS(2197), + [anon_sym_atomic] = ACTIONS(2197), }, [1151] = { [sym_line_comment] = STATE(1151), [sym_block_comment] = STATE(1151), - [sym_identifier] = ACTIONS(2115), - [anon_sym_LF] = ACTIONS(2115), - [anon_sym_CR] = ACTIONS(2115), - [anon_sym_CR_LF] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2193), + [anon_sym_LF] = ACTIONS(2193), + [anon_sym_CR] = ACTIONS(2193), + [anon_sym_CR_LF] = ACTIONS(2193), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(2115), - [anon_sym_as] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2115), - [anon_sym_COMMA] = ACTIONS(2115), - [anon_sym_RBRACE] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2115), - [anon_sym_RPAREN] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_fn] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_SLASH] = ACTIONS(2115), - [anon_sym_PERCENT] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_GT] = ACTIONS(2115), - [anon_sym_EQ_EQ] = ACTIONS(2115), - [anon_sym_BANG_EQ] = ACTIONS(2115), - [anon_sym_LT_EQ] = ACTIONS(2115), - [anon_sym_GT_EQ] = ACTIONS(2115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_struct] = ACTIONS(2115), - [anon_sym_mut] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_QMARK] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_go] = ACTIONS(2115), - [anon_sym_spawn] = ACTIONS(2115), - [anon_sym_json_DOTdecode] = ACTIONS(2115), - [anon_sym_LBRACK2] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_DASH] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(2115), - [anon_sym_GT_GT] = ACTIONS(2115), - [anon_sym_GT_GT_GT] = ACTIONS(2115), - [anon_sym_AMP_CARET] = ACTIONS(2115), - [anon_sym_AMP_AMP] = ACTIONS(2115), - [anon_sym_PIPE_PIPE] = ACTIONS(2115), - [anon_sym_or] = ACTIONS(2115), - [sym_none] = ACTIONS(2115), - [sym_true] = ACTIONS(2115), - [sym_false] = ACTIONS(2115), - [sym_nil] = ACTIONS(2115), - [anon_sym_QMARK_DOT] = ACTIONS(2115), - [anon_sym_POUND_LBRACK] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(2115), - [anon_sym_DOLLARif] = ACTIONS(2115), - [anon_sym_is] = ACTIONS(2115), - [anon_sym_BANGis] = ACTIONS(2115), - [anon_sym_in] = ACTIONS(2115), - [anon_sym_BANGin] = ACTIONS(2115), - [anon_sym_match] = ACTIONS(2115), - [anon_sym_select] = ACTIONS(2115), - [anon_sym_lock] = ACTIONS(2115), - [anon_sym_rlock] = ACTIONS(2115), - [anon_sym_unsafe] = ACTIONS(2115), - [anon_sym_sql] = ACTIONS(2115), - [sym_int_literal] = ACTIONS(2115), - [sym_float_literal] = ACTIONS(2115), - [sym_rune_literal] = ACTIONS(2115), - [sym_pseudo_compile_time_identifier] = ACTIONS(2115), - [anon_sym_shared] = ACTIONS(2115), - [anon_sym_map_LBRACK] = ACTIONS(2115), - [anon_sym_chan] = ACTIONS(2115), - [anon_sym_thread] = ACTIONS(2115), - [anon_sym_atomic] = ACTIONS(2115), - [sym___double_quote] = ACTIONS(2115), - [sym___single_quote] = ACTIONS(2115), - [sym___c_double_quote] = ACTIONS(2115), - [sym___c_single_quote] = ACTIONS(2115), - [sym___r_double_quote] = ACTIONS(2115), - [sym___r_single_quote] = ACTIONS(2115), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_DOT] = ACTIONS(2193), + [anon_sym_as] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_COMMA] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_RPAREN] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_fn] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_PERCENT] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_GT] = ACTIONS(2193), + [anon_sym_EQ_EQ] = ACTIONS(2193), + [anon_sym_BANG_EQ] = ACTIONS(2193), + [anon_sym_LT_EQ] = ACTIONS(2193), + [anon_sym_GT_EQ] = ACTIONS(2193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2193), + [anon_sym_mut] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [anon_sym_QMARK] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_go] = ACTIONS(2193), + [anon_sym_spawn] = ACTIONS(2193), + [anon_sym_json_DOTdecode] = ACTIONS(2193), + [anon_sym_LBRACK2] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_LT_DASH] = ACTIONS(2193), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_GT_GT] = ACTIONS(2193), + [anon_sym_GT_GT_GT] = ACTIONS(2193), + [anon_sym_AMP_CARET] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2193), + [anon_sym_PIPE_PIPE] = ACTIONS(2193), + [anon_sym_or] = ACTIONS(2193), + [sym_none] = ACTIONS(2193), + [sym_true] = ACTIONS(2193), + [sym_false] = ACTIONS(2193), + [sym_nil] = ACTIONS(2193), + [anon_sym_QMARK_DOT] = ACTIONS(2193), + [anon_sym_POUND_LBRACK] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_DOLLARif] = ACTIONS(2193), + [anon_sym_is] = ACTIONS(2193), + [anon_sym_BANGis] = ACTIONS(2193), + [anon_sym_in] = ACTIONS(2193), + [anon_sym_BANGin] = ACTIONS(2193), + [anon_sym_match] = ACTIONS(2193), + [anon_sym_select] = ACTIONS(2193), + [anon_sym_lock] = ACTIONS(2193), + [anon_sym_rlock] = ACTIONS(2193), + [anon_sym_unsafe] = ACTIONS(2193), + [anon_sym_sql] = ACTIONS(2193), + [sym_int_literal] = ACTIONS(2193), + [sym_float_literal] = ACTIONS(2193), + [sym_rune_literal] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [anon_sym_c_SQUOTE] = ACTIONS(2193), + [anon_sym_c_DQUOTE] = ACTIONS(2193), + [anon_sym_r_SQUOTE] = ACTIONS(2193), + [anon_sym_r_DQUOTE] = ACTIONS(2193), + [sym_pseudo_compile_time_identifier] = ACTIONS(2193), + [anon_sym_shared] = ACTIONS(2193), + [anon_sym_map_LBRACK] = ACTIONS(2193), + [anon_sym_chan] = ACTIONS(2193), + [anon_sym_thread] = ACTIONS(2193), + [anon_sym_atomic] = ACTIONS(2193), }, [1152] = { [sym_line_comment] = STATE(1152), [sym_block_comment] = STATE(1152), - [sym_identifier] = ACTIONS(2802), - [anon_sym_LF] = ACTIONS(2802), - [anon_sym_CR] = ACTIONS(2802), - [anon_sym_CR_LF] = ACTIONS(2802), + [sym_identifier] = ACTIONS(2859), + [anon_sym_LF] = ACTIONS(2859), + [anon_sym_CR] = ACTIONS(2859), + [anon_sym_CR_LF] = ACTIONS(2859), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_as] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2802), - [anon_sym_RBRACE] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_RPAREN] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_fn] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_SLASH] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2802), - [anon_sym_GT] = ACTIONS(2802), - [anon_sym_EQ_EQ] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2802), - [anon_sym_LT_EQ] = ACTIONS(2802), - [anon_sym_GT_EQ] = ACTIONS(2802), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_struct] = ACTIONS(2802), - [anon_sym_mut] = ACTIONS(2802), - [anon_sym_PLUS_PLUS] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_go] = ACTIONS(2802), - [anon_sym_spawn] = ACTIONS(2802), - [anon_sym_json_DOTdecode] = ACTIONS(2802), - [anon_sym_LBRACK2] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2802), - [anon_sym_CARET] = ACTIONS(2802), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_LT_LT] = ACTIONS(2802), - [anon_sym_GT_GT] = ACTIONS(2802), - [anon_sym_GT_GT_GT] = ACTIONS(2802), - [anon_sym_AMP_CARET] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_or] = ACTIONS(2802), - [sym_none] = ACTIONS(2802), - [sym_true] = ACTIONS(2802), - [sym_false] = ACTIONS(2802), - [sym_nil] = ACTIONS(2802), - [anon_sym_QMARK_DOT] = ACTIONS(2802), - [anon_sym_POUND_LBRACK] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_DOLLARif] = ACTIONS(2802), - [anon_sym_is] = ACTIONS(2802), - [anon_sym_BANGis] = ACTIONS(2802), - [anon_sym_in] = ACTIONS(2802), - [anon_sym_BANGin] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_select] = ACTIONS(2802), - [anon_sym_lock] = ACTIONS(2802), - [anon_sym_rlock] = ACTIONS(2802), - [anon_sym_unsafe] = ACTIONS(2802), - [anon_sym_sql] = ACTIONS(2802), - [sym_int_literal] = ACTIONS(2802), - [sym_float_literal] = ACTIONS(2802), - [sym_rune_literal] = ACTIONS(2802), - [sym_pseudo_compile_time_identifier] = ACTIONS(2802), - [anon_sym_shared] = ACTIONS(2802), - [anon_sym_map_LBRACK] = ACTIONS(2802), - [anon_sym_chan] = ACTIONS(2802), - [anon_sym_thread] = ACTIONS(2802), - [anon_sym_atomic] = ACTIONS(2802), - [sym___double_quote] = ACTIONS(2802), - [sym___single_quote] = ACTIONS(2802), - [sym___c_double_quote] = ACTIONS(2802), - [sym___c_single_quote] = ACTIONS(2802), - [sym___r_double_quote] = ACTIONS(2802), - [sym___r_single_quote] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_DOT] = ACTIONS(2859), + [anon_sym_as] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_COMMA] = ACTIONS(2859), + [anon_sym_RBRACE] = ACTIONS(2859), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_RPAREN] = ACTIONS(2859), + [anon_sym_PIPE] = ACTIONS(2859), + [anon_sym_fn] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_SLASH] = ACTIONS(2859), + [anon_sym_PERCENT] = ACTIONS(2859), + [anon_sym_LT] = ACTIONS(2859), + [anon_sym_GT] = ACTIONS(2859), + [anon_sym_EQ_EQ] = ACTIONS(2859), + [anon_sym_BANG_EQ] = ACTIONS(2859), + [anon_sym_LT_EQ] = ACTIONS(2859), + [anon_sym_GT_EQ] = ACTIONS(2859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2859), + [anon_sym_mut] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_QMARK] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_go] = ACTIONS(2859), + [anon_sym_spawn] = ACTIONS(2859), + [anon_sym_json_DOTdecode] = ACTIONS(2859), + [anon_sym_LBRACK2] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_CARET] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2859), + [anon_sym_LT_DASH] = ACTIONS(2859), + [anon_sym_LT_LT] = ACTIONS(2859), + [anon_sym_GT_GT] = ACTIONS(2859), + [anon_sym_GT_GT_GT] = ACTIONS(2859), + [anon_sym_AMP_CARET] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_PIPE_PIPE] = ACTIONS(2859), + [anon_sym_or] = ACTIONS(2859), + [sym_none] = ACTIONS(2859), + [sym_true] = ACTIONS(2859), + [sym_false] = ACTIONS(2859), + [sym_nil] = ACTIONS(2859), + [anon_sym_QMARK_DOT] = ACTIONS(2859), + [anon_sym_POUND_LBRACK] = ACTIONS(2859), + [anon_sym_if] = ACTIONS(2859), + [anon_sym_DOLLARif] = ACTIONS(2859), + [anon_sym_is] = ACTIONS(2859), + [anon_sym_BANGis] = ACTIONS(2859), + [anon_sym_in] = ACTIONS(2859), + [anon_sym_BANGin] = ACTIONS(2859), + [anon_sym_match] = ACTIONS(2859), + [anon_sym_select] = ACTIONS(2859), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [anon_sym_unsafe] = ACTIONS(2859), + [anon_sym_sql] = ACTIONS(2859), + [sym_int_literal] = ACTIONS(2859), + [sym_float_literal] = ACTIONS(2859), + [sym_rune_literal] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [anon_sym_c_SQUOTE] = ACTIONS(2859), + [anon_sym_c_DQUOTE] = ACTIONS(2859), + [anon_sym_r_SQUOTE] = ACTIONS(2859), + [anon_sym_r_DQUOTE] = ACTIONS(2859), + [sym_pseudo_compile_time_identifier] = ACTIONS(2859), + [anon_sym_shared] = ACTIONS(2859), + [anon_sym_map_LBRACK] = ACTIONS(2859), + [anon_sym_chan] = ACTIONS(2859), + [anon_sym_thread] = ACTIONS(2859), + [anon_sym_atomic] = ACTIONS(2859), }, [1153] = { [sym_line_comment] = STATE(1153), [sym_block_comment] = STATE(1153), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LF] = ACTIONS(3050), - [anon_sym_CR] = ACTIONS(3050), - [anon_sym_CR_LF] = ACTIONS(3050), + [sym_identifier] = ACTIONS(2431), + [anon_sym_LF] = ACTIONS(2431), + [anon_sym_CR] = ACTIONS(2431), + [anon_sym_CR_LF] = ACTIONS(2431), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3050), - [anon_sym_DOT] = ACTIONS(3050), - [anon_sym_as] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3050), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3050), - [anon_sym_RPAREN] = ACTIONS(3050), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_fn] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_EQ_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_LT_EQ] = ACTIONS(3050), - [anon_sym_GT_EQ] = ACTIONS(3050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_struct] = ACTIONS(3050), - [anon_sym_mut] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3050), - [anon_sym_DASH_DASH] = ACTIONS(3050), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3050), - [anon_sym_go] = ACTIONS(3050), - [anon_sym_spawn] = ACTIONS(3050), - [anon_sym_json_DOTdecode] = ACTIONS(3050), - [anon_sym_LBRACK2] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3050), - [anon_sym_CARET] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3050), - [anon_sym_LT_DASH] = ACTIONS(3050), - [anon_sym_LT_LT] = ACTIONS(3050), - [anon_sym_GT_GT] = ACTIONS(3050), - [anon_sym_GT_GT_GT] = ACTIONS(3050), - [anon_sym_AMP_CARET] = ACTIONS(3050), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3050), - [sym_none] = ACTIONS(3050), - [sym_true] = ACTIONS(3050), - [sym_false] = ACTIONS(3050), - [sym_nil] = ACTIONS(3050), - [anon_sym_QMARK_DOT] = ACTIONS(3050), - [anon_sym_POUND_LBRACK] = ACTIONS(3050), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_DOLLARif] = ACTIONS(3050), - [anon_sym_is] = ACTIONS(3050), - [anon_sym_BANGis] = ACTIONS(3050), - [anon_sym_in] = ACTIONS(3050), - [anon_sym_BANGin] = ACTIONS(3050), - [anon_sym_match] = ACTIONS(3050), - [anon_sym_select] = ACTIONS(3050), - [anon_sym_lock] = ACTIONS(3050), - [anon_sym_rlock] = ACTIONS(3050), - [anon_sym_unsafe] = ACTIONS(3050), - [anon_sym_sql] = ACTIONS(3050), - [sym_int_literal] = ACTIONS(3050), - [sym_float_literal] = ACTIONS(3050), - [sym_rune_literal] = ACTIONS(3050), - [sym_pseudo_compile_time_identifier] = ACTIONS(3050), - [anon_sym_shared] = ACTIONS(3050), - [anon_sym_map_LBRACK] = ACTIONS(3050), - [anon_sym_chan] = ACTIONS(3050), - [anon_sym_thread] = ACTIONS(3050), - [anon_sym_atomic] = ACTIONS(3050), - [sym___double_quote] = ACTIONS(3050), - [sym___single_quote] = ACTIONS(3050), - [sym___c_double_quote] = ACTIONS(3050), - [sym___c_single_quote] = ACTIONS(3050), - [sym___r_double_quote] = ACTIONS(3050), - [sym___r_single_quote] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_as] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_COMMA] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_RPAREN] = ACTIONS(2431), + [anon_sym_PIPE] = ACTIONS(2431), + [anon_sym_fn] = ACTIONS(2431), + [anon_sym_PLUS] = ACTIONS(2431), + [anon_sym_DASH] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2431), + [anon_sym_SLASH] = ACTIONS(2431), + [anon_sym_PERCENT] = ACTIONS(2431), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_GT] = ACTIONS(2431), + [anon_sym_EQ_EQ] = ACTIONS(2431), + [anon_sym_BANG_EQ] = ACTIONS(2431), + [anon_sym_LT_EQ] = ACTIONS(2431), + [anon_sym_GT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2431), + [anon_sym_mut] = ACTIONS(2431), + [anon_sym_PLUS_PLUS] = ACTIONS(2431), + [anon_sym_DASH_DASH] = ACTIONS(2431), + [anon_sym_QMARK] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_go] = ACTIONS(2431), + [anon_sym_spawn] = ACTIONS(2431), + [anon_sym_json_DOTdecode] = ACTIONS(2431), + [anon_sym_LBRACK2] = ACTIONS(2431), + [anon_sym_TILDE] = ACTIONS(2431), + [anon_sym_CARET] = ACTIONS(2431), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2431), + [anon_sym_LT_LT] = ACTIONS(2431), + [anon_sym_GT_GT] = ACTIONS(2431), + [anon_sym_GT_GT_GT] = ACTIONS(2431), + [anon_sym_AMP_CARET] = ACTIONS(2431), + [anon_sym_AMP_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2431), + [anon_sym_or] = ACTIONS(2431), + [sym_none] = ACTIONS(2431), + [sym_true] = ACTIONS(2431), + [sym_false] = ACTIONS(2431), + [sym_nil] = ACTIONS(2431), + [anon_sym_QMARK_DOT] = ACTIONS(2431), + [anon_sym_POUND_LBRACK] = ACTIONS(2431), + [anon_sym_if] = ACTIONS(2431), + [anon_sym_DOLLARif] = ACTIONS(2431), + [anon_sym_is] = ACTIONS(2431), + [anon_sym_BANGis] = ACTIONS(2431), + [anon_sym_in] = ACTIONS(2431), + [anon_sym_BANGin] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_select] = ACTIONS(2431), + [anon_sym_lock] = ACTIONS(2431), + [anon_sym_rlock] = ACTIONS(2431), + [anon_sym_unsafe] = ACTIONS(2431), + [anon_sym_sql] = ACTIONS(2431), + [sym_int_literal] = ACTIONS(2431), + [sym_float_literal] = ACTIONS(2431), + [sym_rune_literal] = ACTIONS(2431), + [anon_sym_SQUOTE] = ACTIONS(2431), + [anon_sym_DQUOTE] = ACTIONS(2431), + [anon_sym_c_SQUOTE] = ACTIONS(2431), + [anon_sym_c_DQUOTE] = ACTIONS(2431), + [anon_sym_r_SQUOTE] = ACTIONS(2431), + [anon_sym_r_DQUOTE] = ACTIONS(2431), + [sym_pseudo_compile_time_identifier] = ACTIONS(2431), + [anon_sym_shared] = ACTIONS(2431), + [anon_sym_map_LBRACK] = ACTIONS(2431), + [anon_sym_chan] = ACTIONS(2431), + [anon_sym_thread] = ACTIONS(2431), + [anon_sym_atomic] = ACTIONS(2431), }, [1154] = { [sym_line_comment] = STATE(1154), [sym_block_comment] = STATE(1154), - [sym_identifier] = ACTIONS(3746), - [anon_sym_LF] = ACTIONS(3749), - [anon_sym_CR] = ACTIONS(3749), - [anon_sym_CR_LF] = ACTIONS(3749), + [sym_identifier] = ACTIONS(2843), + [anon_sym_LF] = ACTIONS(2843), + [anon_sym_CR] = ACTIONS(2843), + [anon_sym_CR_LF] = ACTIONS(2843), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3749), - [anon_sym_DOT] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_COMMA] = ACTIONS(3749), - [anon_sym_RBRACE] = ACTIONS(3746), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_fn] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2513), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_GT] = ACTIONS(2513), - [anon_sym_EQ_EQ] = ACTIONS(2513), - [anon_sym_BANG_EQ] = ACTIONS(2513), - [anon_sym_LT_EQ] = ACTIONS(2513), - [anon_sym_GT_EQ] = ACTIONS(2513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3752), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_COLON] = ACTIONS(3754), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_QMARK] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_go] = ACTIONS(2513), - [anon_sym_spawn] = ACTIONS(2513), - [anon_sym_json_DOTdecode] = ACTIONS(2513), - [anon_sym_LBRACK2] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_LT_DASH] = ACTIONS(2513), - [anon_sym_LT_LT] = ACTIONS(2513), - [anon_sym_GT_GT] = ACTIONS(2513), - [anon_sym_GT_GT_GT] = ACTIONS(2513), - [anon_sym_AMP_CARET] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2513), - [anon_sym_or] = ACTIONS(2513), - [sym_none] = ACTIONS(2513), - [sym_true] = ACTIONS(2513), - [sym_false] = ACTIONS(2513), - [sym_nil] = ACTIONS(2513), - [anon_sym_QMARK_DOT] = ACTIONS(2513), - [anon_sym_POUND_LBRACK] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_DOLLARif] = ACTIONS(2513), - [anon_sym_is] = ACTIONS(2513), - [anon_sym_BANGis] = ACTIONS(2513), - [anon_sym_in] = ACTIONS(2513), - [anon_sym_BANGin] = ACTIONS(2513), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_select] = ACTIONS(2513), - [anon_sym_lock] = ACTIONS(2513), - [anon_sym_rlock] = ACTIONS(2513), - [anon_sym_unsafe] = ACTIONS(2513), - [anon_sym_sql] = ACTIONS(2513), - [sym_int_literal] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2513), - [sym_rune_literal] = ACTIONS(2513), - [sym_pseudo_compile_time_identifier] = ACTIONS(2513), - [anon_sym_shared] = ACTIONS(2513), - [anon_sym_map_LBRACK] = ACTIONS(2513), - [anon_sym_chan] = ACTIONS(2513), - [anon_sym_thread] = ACTIONS(2513), - [anon_sym_atomic] = ACTIONS(2513), - [sym___double_quote] = ACTIONS(2513), - [sym___single_quote] = ACTIONS(2513), - [sym___c_double_quote] = ACTIONS(2513), - [sym___c_single_quote] = ACTIONS(2513), - [sym___r_double_quote] = ACTIONS(2513), - [sym___r_single_quote] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2843), + [anon_sym_DOT] = ACTIONS(2843), + [anon_sym_as] = ACTIONS(2843), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_COMMA] = ACTIONS(2843), + [anon_sym_RBRACE] = ACTIONS(2843), + [anon_sym_LPAREN] = ACTIONS(2843), + [anon_sym_RPAREN] = ACTIONS(2843), + [anon_sym_PIPE] = ACTIONS(2843), + [anon_sym_fn] = ACTIONS(2843), + [anon_sym_PLUS] = ACTIONS(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_SLASH] = ACTIONS(2843), + [anon_sym_PERCENT] = ACTIONS(2843), + [anon_sym_LT] = ACTIONS(2843), + [anon_sym_GT] = ACTIONS(2843), + [anon_sym_EQ_EQ] = ACTIONS(2843), + [anon_sym_BANG_EQ] = ACTIONS(2843), + [anon_sym_LT_EQ] = ACTIONS(2843), + [anon_sym_GT_EQ] = ACTIONS(2843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_struct] = ACTIONS(2843), + [anon_sym_mut] = ACTIONS(2843), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_QMARK] = ACTIONS(2843), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_go] = ACTIONS(2843), + [anon_sym_spawn] = ACTIONS(2843), + [anon_sym_json_DOTdecode] = ACTIONS(2843), + [anon_sym_LBRACK2] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2843), + [anon_sym_LT_DASH] = ACTIONS(2843), + [anon_sym_LT_LT] = ACTIONS(2843), + [anon_sym_GT_GT] = ACTIONS(2843), + [anon_sym_GT_GT_GT] = ACTIONS(2843), + [anon_sym_AMP_CARET] = ACTIONS(2843), + [anon_sym_AMP_AMP] = ACTIONS(2843), + [anon_sym_PIPE_PIPE] = ACTIONS(2843), + [anon_sym_or] = ACTIONS(2843), + [sym_none] = ACTIONS(2843), + [sym_true] = ACTIONS(2843), + [sym_false] = ACTIONS(2843), + [sym_nil] = ACTIONS(2843), + [anon_sym_QMARK_DOT] = ACTIONS(2843), + [anon_sym_POUND_LBRACK] = ACTIONS(2843), + [anon_sym_if] = ACTIONS(2843), + [anon_sym_DOLLARif] = ACTIONS(2843), + [anon_sym_is] = ACTIONS(2843), + [anon_sym_BANGis] = ACTIONS(2843), + [anon_sym_in] = ACTIONS(2843), + [anon_sym_BANGin] = ACTIONS(2843), + [anon_sym_match] = ACTIONS(2843), + [anon_sym_select] = ACTIONS(2843), + [anon_sym_lock] = ACTIONS(2843), + [anon_sym_rlock] = ACTIONS(2843), + [anon_sym_unsafe] = ACTIONS(2843), + [anon_sym_sql] = ACTIONS(2843), + [sym_int_literal] = ACTIONS(2843), + [sym_float_literal] = ACTIONS(2843), + [sym_rune_literal] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2843), + [anon_sym_c_SQUOTE] = ACTIONS(2843), + [anon_sym_c_DQUOTE] = ACTIONS(2843), + [anon_sym_r_SQUOTE] = ACTIONS(2843), + [anon_sym_r_DQUOTE] = ACTIONS(2843), + [sym_pseudo_compile_time_identifier] = ACTIONS(2843), + [anon_sym_shared] = ACTIONS(2843), + [anon_sym_map_LBRACK] = ACTIONS(2843), + [anon_sym_chan] = ACTIONS(2843), + [anon_sym_thread] = ACTIONS(2843), + [anon_sym_atomic] = ACTIONS(2843), }, [1155] = { [sym_line_comment] = STATE(1155), [sym_block_comment] = STATE(1155), - [sym_identifier] = ACTIONS(2668), - [anon_sym_LF] = ACTIONS(2668), - [anon_sym_CR] = ACTIONS(2668), - [anon_sym_CR_LF] = ACTIONS(2668), + [sym_identifier] = ACTIONS(2155), + [anon_sym_LF] = ACTIONS(2155), + [anon_sym_CR] = ACTIONS(2155), + [anon_sym_CR_LF] = ACTIONS(2155), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2668), - [anon_sym_DOT] = ACTIONS(2668), - [anon_sym_as] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(2668), - [anon_sym_COMMA] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2668), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_RPAREN] = ACTIONS(2668), - [anon_sym_PIPE] = ACTIONS(2668), - [anon_sym_fn] = ACTIONS(2668), - [anon_sym_PLUS] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2668), - [anon_sym_STAR] = ACTIONS(2668), - [anon_sym_SLASH] = ACTIONS(2668), - [anon_sym_PERCENT] = ACTIONS(2668), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_EQ_EQ] = ACTIONS(2668), - [anon_sym_BANG_EQ] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2668), - [anon_sym_GT_EQ] = ACTIONS(2668), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_struct] = ACTIONS(2668), - [anon_sym_mut] = ACTIONS(2668), - [anon_sym_PLUS_PLUS] = ACTIONS(2668), - [anon_sym_DASH_DASH] = ACTIONS(2668), - [anon_sym_QMARK] = ACTIONS(2668), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_go] = ACTIONS(2668), - [anon_sym_spawn] = ACTIONS(2668), - [anon_sym_json_DOTdecode] = ACTIONS(2668), - [anon_sym_LBRACK2] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_CARET] = ACTIONS(2668), - [anon_sym_AMP] = ACTIONS(2668), - [anon_sym_LT_DASH] = ACTIONS(2668), - [anon_sym_LT_LT] = ACTIONS(2668), - [anon_sym_GT_GT] = ACTIONS(2668), - [anon_sym_GT_GT_GT] = ACTIONS(2668), - [anon_sym_AMP_CARET] = ACTIONS(2668), - [anon_sym_AMP_AMP] = ACTIONS(2668), - [anon_sym_PIPE_PIPE] = ACTIONS(2668), - [anon_sym_or] = ACTIONS(2668), - [sym_none] = ACTIONS(2668), - [sym_true] = ACTIONS(2668), - [sym_false] = ACTIONS(2668), - [sym_nil] = ACTIONS(2668), - [anon_sym_QMARK_DOT] = ACTIONS(2668), - [anon_sym_POUND_LBRACK] = ACTIONS(2668), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2668), - [anon_sym_is] = ACTIONS(2668), - [anon_sym_BANGis] = ACTIONS(2668), - [anon_sym_in] = ACTIONS(2668), - [anon_sym_BANGin] = ACTIONS(2668), - [anon_sym_match] = ACTIONS(2668), - [anon_sym_select] = ACTIONS(2668), - [anon_sym_lock] = ACTIONS(2668), - [anon_sym_rlock] = ACTIONS(2668), - [anon_sym_unsafe] = ACTIONS(2668), - [anon_sym_sql] = ACTIONS(2668), - [sym_int_literal] = ACTIONS(2668), - [sym_float_literal] = ACTIONS(2668), - [sym_rune_literal] = ACTIONS(2668), - [sym_pseudo_compile_time_identifier] = ACTIONS(2668), - [anon_sym_shared] = ACTIONS(2668), - [anon_sym_map_LBRACK] = ACTIONS(2668), - [anon_sym_chan] = ACTIONS(2668), - [anon_sym_thread] = ACTIONS(2668), - [anon_sym_atomic] = ACTIONS(2668), - [sym___double_quote] = ACTIONS(2668), - [sym___single_quote] = ACTIONS(2668), - [sym___c_double_quote] = ACTIONS(2668), - [sym___c_single_quote] = ACTIONS(2668), - [sym___r_double_quote] = ACTIONS(2668), - [sym___r_single_quote] = ACTIONS(2668), + [anon_sym_SEMI] = ACTIONS(2155), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_as] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_COMMA] = ACTIONS(2155), + [anon_sym_RBRACE] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_RPAREN] = ACTIONS(2155), + [anon_sym_PIPE] = ACTIONS(2155), + [anon_sym_fn] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2155), + [anon_sym_SLASH] = ACTIONS(2155), + [anon_sym_PERCENT] = ACTIONS(2155), + [anon_sym_LT] = ACTIONS(2155), + [anon_sym_GT] = ACTIONS(2155), + [anon_sym_EQ_EQ] = ACTIONS(2155), + [anon_sym_BANG_EQ] = ACTIONS(2155), + [anon_sym_LT_EQ] = ACTIONS(2155), + [anon_sym_GT_EQ] = ACTIONS(2155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2155), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_struct] = ACTIONS(2155), + [anon_sym_mut] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(2155), + [anon_sym_DASH_DASH] = ACTIONS(2155), + [anon_sym_QMARK] = ACTIONS(2155), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_go] = ACTIONS(2155), + [anon_sym_spawn] = ACTIONS(2155), + [anon_sym_json_DOTdecode] = ACTIONS(2155), + [anon_sym_LBRACK2] = ACTIONS(2155), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_LT_DASH] = ACTIONS(2155), + [anon_sym_LT_LT] = ACTIONS(2155), + [anon_sym_GT_GT] = ACTIONS(2155), + [anon_sym_GT_GT_GT] = ACTIONS(2155), + [anon_sym_AMP_CARET] = ACTIONS(2155), + [anon_sym_AMP_AMP] = ACTIONS(2155), + [anon_sym_PIPE_PIPE] = ACTIONS(2155), + [anon_sym_or] = ACTIONS(2155), + [sym_none] = ACTIONS(2155), + [sym_true] = ACTIONS(2155), + [sym_false] = ACTIONS(2155), + [sym_nil] = ACTIONS(2155), + [anon_sym_QMARK_DOT] = ACTIONS(2155), + [anon_sym_POUND_LBRACK] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_DOLLARif] = ACTIONS(2155), + [anon_sym_is] = ACTIONS(2155), + [anon_sym_BANGis] = ACTIONS(2155), + [anon_sym_in] = ACTIONS(2155), + [anon_sym_BANGin] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_select] = ACTIONS(2155), + [anon_sym_lock] = ACTIONS(2155), + [anon_sym_rlock] = ACTIONS(2155), + [anon_sym_unsafe] = ACTIONS(2155), + [anon_sym_sql] = ACTIONS(2155), + [sym_int_literal] = ACTIONS(2155), + [sym_float_literal] = ACTIONS(2155), + [sym_rune_literal] = ACTIONS(2155), + [anon_sym_SQUOTE] = ACTIONS(2155), + [anon_sym_DQUOTE] = ACTIONS(2155), + [anon_sym_c_SQUOTE] = ACTIONS(2155), + [anon_sym_c_DQUOTE] = ACTIONS(2155), + [anon_sym_r_SQUOTE] = ACTIONS(2155), + [anon_sym_r_DQUOTE] = ACTIONS(2155), + [sym_pseudo_compile_time_identifier] = ACTIONS(2155), + [anon_sym_shared] = ACTIONS(2155), + [anon_sym_map_LBRACK] = ACTIONS(2155), + [anon_sym_chan] = ACTIONS(2155), + [anon_sym_thread] = ACTIONS(2155), + [anon_sym_atomic] = ACTIONS(2155), }, [1156] = { [sym_line_comment] = STATE(1156), [sym_block_comment] = STATE(1156), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LF] = ACTIONS(2910), - [anon_sym_CR] = ACTIONS(2910), - [anon_sym_CR_LF] = ACTIONS(2910), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LF] = ACTIONS(3066), + [anon_sym_CR] = ACTIONS(3066), + [anon_sym_CR_LF] = ACTIONS(3066), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2910), - [anon_sym_DOT] = ACTIONS(2910), - [anon_sym_as] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_RBRACE] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2910), - [anon_sym_RPAREN] = ACTIONS(2910), - [anon_sym_PIPE] = ACTIONS(2910), - [anon_sym_fn] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_PERCENT] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_GT] = ACTIONS(2910), - [anon_sym_EQ_EQ] = ACTIONS(2910), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_LT_EQ] = ACTIONS(2910), - [anon_sym_GT_EQ] = ACTIONS(2910), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_struct] = ACTIONS(2910), - [anon_sym_mut] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_QMARK] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_go] = ACTIONS(2910), - [anon_sym_spawn] = ACTIONS(2910), - [anon_sym_json_DOTdecode] = ACTIONS(2910), - [anon_sym_LBRACK2] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_CARET] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_LT_DASH] = ACTIONS(2910), - [anon_sym_LT_LT] = ACTIONS(2910), - [anon_sym_GT_GT] = ACTIONS(2910), - [anon_sym_GT_GT_GT] = ACTIONS(2910), - [anon_sym_AMP_CARET] = ACTIONS(2910), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_PIPE_PIPE] = ACTIONS(2910), - [anon_sym_or] = ACTIONS(2910), - [sym_none] = ACTIONS(2910), - [sym_true] = ACTIONS(2910), - [sym_false] = ACTIONS(2910), - [sym_nil] = ACTIONS(2910), - [anon_sym_QMARK_DOT] = ACTIONS(2910), - [anon_sym_POUND_LBRACK] = ACTIONS(2910), - [anon_sym_if] = ACTIONS(2910), - [anon_sym_DOLLARif] = ACTIONS(2910), - [anon_sym_is] = ACTIONS(2910), - [anon_sym_BANGis] = ACTIONS(2910), - [anon_sym_in] = ACTIONS(2910), - [anon_sym_BANGin] = ACTIONS(2910), - [anon_sym_match] = ACTIONS(2910), - [anon_sym_select] = ACTIONS(2910), - [anon_sym_lock] = ACTIONS(2910), - [anon_sym_rlock] = ACTIONS(2910), - [anon_sym_unsafe] = ACTIONS(2910), - [anon_sym_sql] = ACTIONS(2910), - [sym_int_literal] = ACTIONS(2910), - [sym_float_literal] = ACTIONS(2910), - [sym_rune_literal] = ACTIONS(2910), - [sym_pseudo_compile_time_identifier] = ACTIONS(2910), - [anon_sym_shared] = ACTIONS(2910), - [anon_sym_map_LBRACK] = ACTIONS(2910), - [anon_sym_chan] = ACTIONS(2910), - [anon_sym_thread] = ACTIONS(2910), - [anon_sym_atomic] = ACTIONS(2910), - [sym___double_quote] = ACTIONS(2910), - [sym___single_quote] = ACTIONS(2910), - [sym___c_double_quote] = ACTIONS(2910), - [sym___c_single_quote] = ACTIONS(2910), - [sym___r_double_quote] = ACTIONS(2910), - [sym___r_single_quote] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(3066), + [anon_sym_DOT] = ACTIONS(3066), + [anon_sym_as] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_RBRACE] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(3066), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_SLASH] = ACTIONS(3066), + [anon_sym_PERCENT] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_EQ_EQ] = ACTIONS(3066), + [anon_sym_BANG_EQ] = ACTIONS(3066), + [anon_sym_LT_EQ] = ACTIONS(3066), + [anon_sym_GT_EQ] = ACTIONS(3066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_go] = ACTIONS(3066), + [anon_sym_spawn] = ACTIONS(3066), + [anon_sym_json_DOTdecode] = ACTIONS(3066), + [anon_sym_LBRACK2] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3066), + [anon_sym_CARET] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3066), + [anon_sym_LT_DASH] = ACTIONS(3066), + [anon_sym_LT_LT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(3066), + [anon_sym_GT_GT_GT] = ACTIONS(3066), + [anon_sym_AMP_CARET] = ACTIONS(3066), + [anon_sym_AMP_AMP] = ACTIONS(3066), + [anon_sym_PIPE_PIPE] = ACTIONS(3066), + [anon_sym_or] = ACTIONS(3066), + [sym_none] = ACTIONS(3066), + [sym_true] = ACTIONS(3066), + [sym_false] = ACTIONS(3066), + [sym_nil] = ACTIONS(3066), + [anon_sym_QMARK_DOT] = ACTIONS(3066), + [anon_sym_POUND_LBRACK] = ACTIONS(3066), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_DOLLARif] = ACTIONS(3066), + [anon_sym_is] = ACTIONS(3066), + [anon_sym_BANGis] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(3066), + [anon_sym_BANGin] = ACTIONS(3066), + [anon_sym_match] = ACTIONS(3066), + [anon_sym_select] = ACTIONS(3066), + [anon_sym_lock] = ACTIONS(3066), + [anon_sym_rlock] = ACTIONS(3066), + [anon_sym_unsafe] = ACTIONS(3066), + [anon_sym_sql] = ACTIONS(3066), + [sym_int_literal] = ACTIONS(3066), + [sym_float_literal] = ACTIONS(3066), + [sym_rune_literal] = ACTIONS(3066), + [anon_sym_SQUOTE] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3066), + [anon_sym_c_SQUOTE] = ACTIONS(3066), + [anon_sym_c_DQUOTE] = ACTIONS(3066), + [anon_sym_r_SQUOTE] = ACTIONS(3066), + [anon_sym_r_DQUOTE] = ACTIONS(3066), + [sym_pseudo_compile_time_identifier] = ACTIONS(3066), + [anon_sym_shared] = ACTIONS(3066), + [anon_sym_map_LBRACK] = ACTIONS(3066), + [anon_sym_chan] = ACTIONS(3066), + [anon_sym_thread] = ACTIONS(3066), + [anon_sym_atomic] = ACTIONS(3066), }, [1157] = { [sym_line_comment] = STATE(1157), [sym_block_comment] = STATE(1157), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LF] = ACTIONS(2886), - [anon_sym_CR] = ACTIONS(2886), - [anon_sym_CR_LF] = ACTIONS(2886), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LF] = ACTIONS(2201), + [anon_sym_CR] = ACTIONS(2201), + [anon_sym_CR_LF] = ACTIONS(2201), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2886), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2886), - [anon_sym_RBRACE] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_RPAREN] = ACTIONS(2886), - [anon_sym_PIPE] = ACTIONS(2886), - [anon_sym_fn] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_SLASH] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2886), - [anon_sym_GT] = ACTIONS(2886), - [anon_sym_EQ_EQ] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2886), - [anon_sym_LT_EQ] = ACTIONS(2886), - [anon_sym_GT_EQ] = ACTIONS(2886), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_struct] = ACTIONS(2886), - [anon_sym_mut] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2886), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_go] = ACTIONS(2886), - [anon_sym_spawn] = ACTIONS(2886), - [anon_sym_json_DOTdecode] = ACTIONS(2886), - [anon_sym_LBRACK2] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2886), - [anon_sym_CARET] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_LT_LT] = ACTIONS(2886), - [anon_sym_GT_GT] = ACTIONS(2886), - [anon_sym_GT_GT_GT] = ACTIONS(2886), - [anon_sym_AMP_CARET] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_or] = ACTIONS(2886), - [sym_none] = ACTIONS(2886), - [sym_true] = ACTIONS(2886), - [sym_false] = ACTIONS(2886), - [sym_nil] = ACTIONS(2886), - [anon_sym_QMARK_DOT] = ACTIONS(2886), - [anon_sym_POUND_LBRACK] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_DOLLARif] = ACTIONS(2886), - [anon_sym_is] = ACTIONS(2886), - [anon_sym_BANGis] = ACTIONS(2886), - [anon_sym_in] = ACTIONS(2886), - [anon_sym_BANGin] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_select] = ACTIONS(2886), - [anon_sym_lock] = ACTIONS(2886), - [anon_sym_rlock] = ACTIONS(2886), - [anon_sym_unsafe] = ACTIONS(2886), - [anon_sym_sql] = ACTIONS(2886), - [sym_int_literal] = ACTIONS(2886), - [sym_float_literal] = ACTIONS(2886), - [sym_rune_literal] = ACTIONS(2886), - [sym_pseudo_compile_time_identifier] = ACTIONS(2886), - [anon_sym_shared] = ACTIONS(2886), - [anon_sym_map_LBRACK] = ACTIONS(2886), - [anon_sym_chan] = ACTIONS(2886), - [anon_sym_thread] = ACTIONS(2886), - [anon_sym_atomic] = ACTIONS(2886), - [sym___double_quote] = ACTIONS(2886), - [sym___single_quote] = ACTIONS(2886), - [sym___c_double_quote] = ACTIONS(2886), - [sym___c_single_quote] = ACTIONS(2886), - [sym___r_double_quote] = ACTIONS(2886), - [sym___r_single_quote] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(2201), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_as] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_COMMA] = ACTIONS(2201), + [anon_sym_RBRACE] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2201), + [anon_sym_RPAREN] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_fn] = ACTIONS(2201), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(2201), + [anon_sym_SLASH] = ACTIONS(2201), + [anon_sym_PERCENT] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2201), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_struct] = ACTIONS(2201), + [anon_sym_mut] = ACTIONS(2201), + [anon_sym_PLUS_PLUS] = ACTIONS(2201), + [anon_sym_DASH_DASH] = ACTIONS(2201), + [anon_sym_QMARK] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2201), + [anon_sym_go] = ACTIONS(2201), + [anon_sym_spawn] = ACTIONS(2201), + [anon_sym_json_DOTdecode] = ACTIONS(2201), + [anon_sym_LBRACK2] = ACTIONS(2201), + [anon_sym_TILDE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2201), + [anon_sym_AMP] = ACTIONS(2201), + [anon_sym_LT_DASH] = ACTIONS(2201), + [anon_sym_LT_LT] = ACTIONS(2201), + [anon_sym_GT_GT] = ACTIONS(2201), + [anon_sym_GT_GT_GT] = ACTIONS(2201), + [anon_sym_AMP_CARET] = ACTIONS(2201), + [anon_sym_AMP_AMP] = ACTIONS(2201), + [anon_sym_PIPE_PIPE] = ACTIONS(2201), + [anon_sym_or] = ACTIONS(2201), + [sym_none] = ACTIONS(2201), + [sym_true] = ACTIONS(2201), + [sym_false] = ACTIONS(2201), + [sym_nil] = ACTIONS(2201), + [anon_sym_QMARK_DOT] = ACTIONS(2201), + [anon_sym_POUND_LBRACK] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_DOLLARif] = ACTIONS(2201), + [anon_sym_is] = ACTIONS(2201), + [anon_sym_BANGis] = ACTIONS(2201), + [anon_sym_in] = ACTIONS(2201), + [anon_sym_BANGin] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_select] = ACTIONS(2201), + [anon_sym_lock] = ACTIONS(2201), + [anon_sym_rlock] = ACTIONS(2201), + [anon_sym_unsafe] = ACTIONS(2201), + [anon_sym_sql] = ACTIONS(2201), + [sym_int_literal] = ACTIONS(2201), + [sym_float_literal] = ACTIONS(2201), + [sym_rune_literal] = ACTIONS(2201), + [anon_sym_SQUOTE] = ACTIONS(2201), + [anon_sym_DQUOTE] = ACTIONS(2201), + [anon_sym_c_SQUOTE] = ACTIONS(2201), + [anon_sym_c_DQUOTE] = ACTIONS(2201), + [anon_sym_r_SQUOTE] = ACTIONS(2201), + [anon_sym_r_DQUOTE] = ACTIONS(2201), + [sym_pseudo_compile_time_identifier] = ACTIONS(2201), + [anon_sym_shared] = ACTIONS(2201), + [anon_sym_map_LBRACK] = ACTIONS(2201), + [anon_sym_chan] = ACTIONS(2201), + [anon_sym_thread] = ACTIONS(2201), + [anon_sym_atomic] = ACTIONS(2201), }, [1158] = { [sym_line_comment] = STATE(1158), [sym_block_comment] = STATE(1158), - [sym_identifier] = ACTIONS(2824), - [anon_sym_LF] = ACTIONS(2824), - [anon_sym_CR] = ACTIONS(2824), - [anon_sym_CR_LF] = ACTIONS(2824), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LF] = ACTIONS(2237), + [anon_sym_CR] = ACTIONS(2237), + [anon_sym_CR_LF] = ACTIONS(2237), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2824), - [anon_sym_DOT] = ACTIONS(2824), - [anon_sym_as] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_RBRACE] = ACTIONS(2824), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym_RPAREN] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_fn] = ACTIONS(2824), - [anon_sym_PLUS] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_SLASH] = ACTIONS(2824), - [anon_sym_PERCENT] = ACTIONS(2824), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_GT] = ACTIONS(2824), - [anon_sym_EQ_EQ] = ACTIONS(2824), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_LT_EQ] = ACTIONS(2824), - [anon_sym_GT_EQ] = ACTIONS(2824), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2824), - [anon_sym_mut] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_go] = ACTIONS(2824), - [anon_sym_spawn] = ACTIONS(2824), - [anon_sym_json_DOTdecode] = ACTIONS(2824), - [anon_sym_LBRACK2] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_CARET] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2824), - [anon_sym_LT_DASH] = ACTIONS(2824), - [anon_sym_LT_LT] = ACTIONS(2824), - [anon_sym_GT_GT] = ACTIONS(2824), - [anon_sym_GT_GT_GT] = ACTIONS(2824), - [anon_sym_AMP_CARET] = ACTIONS(2824), - [anon_sym_AMP_AMP] = ACTIONS(2824), - [anon_sym_PIPE_PIPE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2824), - [sym_none] = ACTIONS(2824), - [sym_true] = ACTIONS(2824), - [sym_false] = ACTIONS(2824), - [sym_nil] = ACTIONS(2824), - [anon_sym_QMARK_DOT] = ACTIONS(2824), - [anon_sym_POUND_LBRACK] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_DOLLARif] = ACTIONS(2824), - [anon_sym_is] = ACTIONS(2824), - [anon_sym_BANGis] = ACTIONS(2824), - [anon_sym_in] = ACTIONS(2824), - [anon_sym_BANGin] = ACTIONS(2824), - [anon_sym_match] = ACTIONS(2824), - [anon_sym_select] = ACTIONS(2824), - [anon_sym_lock] = ACTIONS(2824), - [anon_sym_rlock] = ACTIONS(2824), - [anon_sym_unsafe] = ACTIONS(2824), - [anon_sym_sql] = ACTIONS(2824), - [sym_int_literal] = ACTIONS(2824), - [sym_float_literal] = ACTIONS(2824), - [sym_rune_literal] = ACTIONS(2824), - [sym_pseudo_compile_time_identifier] = ACTIONS(2824), - [anon_sym_shared] = ACTIONS(2824), - [anon_sym_map_LBRACK] = ACTIONS(2824), - [anon_sym_chan] = ACTIONS(2824), - [anon_sym_thread] = ACTIONS(2824), - [anon_sym_atomic] = ACTIONS(2824), - [sym___double_quote] = ACTIONS(2824), - [sym___single_quote] = ACTIONS(2824), - [sym___c_double_quote] = ACTIONS(2824), - [sym___c_single_quote] = ACTIONS(2824), - [sym___r_double_quote] = ACTIONS(2824), - [sym___r_single_quote] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_DOT] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_COMMA] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_RPAREN] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_PERCENT] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_GT] = ACTIONS(2237), + [anon_sym_EQ_EQ] = ACTIONS(2237), + [anon_sym_BANG_EQ] = ACTIONS(2237), + [anon_sym_LT_EQ] = ACTIONS(2237), + [anon_sym_GT_EQ] = ACTIONS(2237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_mut] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_QMARK] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_go] = ACTIONS(2237), + [anon_sym_spawn] = ACTIONS(2237), + [anon_sym_json_DOTdecode] = ACTIONS(2237), + [anon_sym_LBRACK2] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_CARET] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_LT_DASH] = ACTIONS(2237), + [anon_sym_LT_LT] = ACTIONS(2237), + [anon_sym_GT_GT] = ACTIONS(2237), + [anon_sym_GT_GT_GT] = ACTIONS(2237), + [anon_sym_AMP_CARET] = ACTIONS(2237), + [anon_sym_AMP_AMP] = ACTIONS(2237), + [anon_sym_PIPE_PIPE] = ACTIONS(2237), + [anon_sym_or] = ACTIONS(2237), + [sym_none] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_nil] = ACTIONS(2237), + [anon_sym_QMARK_DOT] = ACTIONS(2237), + [anon_sym_POUND_LBRACK] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_DOLLARif] = ACTIONS(2237), + [anon_sym_is] = ACTIONS(2237), + [anon_sym_BANGis] = ACTIONS(2237), + [anon_sym_in] = ACTIONS(2237), + [anon_sym_BANGin] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_select] = ACTIONS(2237), + [anon_sym_lock] = ACTIONS(2237), + [anon_sym_rlock] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_sql] = ACTIONS(2237), + [sym_int_literal] = ACTIONS(2237), + [sym_float_literal] = ACTIONS(2237), + [sym_rune_literal] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2237), + [anon_sym_c_SQUOTE] = ACTIONS(2237), + [anon_sym_c_DQUOTE] = ACTIONS(2237), + [anon_sym_r_SQUOTE] = ACTIONS(2237), + [anon_sym_r_DQUOTE] = ACTIONS(2237), + [sym_pseudo_compile_time_identifier] = ACTIONS(2237), + [anon_sym_shared] = ACTIONS(2237), + [anon_sym_map_LBRACK] = ACTIONS(2237), + [anon_sym_chan] = ACTIONS(2237), + [anon_sym_thread] = ACTIONS(2237), + [anon_sym_atomic] = ACTIONS(2237), }, [1159] = { [sym_line_comment] = STATE(1159), [sym_block_comment] = STATE(1159), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), + [sym_identifier] = ACTIONS(2821), + [anon_sym_LF] = ACTIONS(2821), + [anon_sym_CR] = ACTIONS(2821), + [anon_sym_CR_LF] = ACTIONS(2821), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1889), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1889), - [anon_sym_AMP_CARET] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1889), - [anon_sym_POUND_LBRACK] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym_DOT] = ACTIONS(2821), + [anon_sym_as] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_COMMA] = ACTIONS(2821), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(2821), + [anon_sym_RPAREN] = ACTIONS(2821), + [anon_sym_PIPE] = ACTIONS(2821), + [anon_sym_fn] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_SLASH] = ACTIONS(2821), + [anon_sym_PERCENT] = ACTIONS(2821), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(2821), + [anon_sym_EQ_EQ] = ACTIONS(2821), + [anon_sym_BANG_EQ] = ACTIONS(2821), + [anon_sym_LT_EQ] = ACTIONS(2821), + [anon_sym_GT_EQ] = ACTIONS(2821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2821), + [anon_sym_mut] = ACTIONS(2821), + [anon_sym_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_DASH_DASH] = ACTIONS(2821), + [anon_sym_QMARK] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_go] = ACTIONS(2821), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(2821), + [anon_sym_LBRACK2] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_CARET] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_LT_DASH] = ACTIONS(2821), + [anon_sym_LT_LT] = ACTIONS(2821), + [anon_sym_GT_GT] = ACTIONS(2821), + [anon_sym_GT_GT_GT] = ACTIONS(2821), + [anon_sym_AMP_CARET] = ACTIONS(2821), + [anon_sym_AMP_AMP] = ACTIONS(2821), + [anon_sym_PIPE_PIPE] = ACTIONS(2821), + [anon_sym_or] = ACTIONS(2821), + [sym_none] = ACTIONS(2821), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_nil] = ACTIONS(2821), + [anon_sym_QMARK_DOT] = ACTIONS(2821), + [anon_sym_POUND_LBRACK] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_DOLLARif] = ACTIONS(2821), + [anon_sym_is] = ACTIONS(2821), + [anon_sym_BANGis] = ACTIONS(2821), + [anon_sym_in] = ACTIONS(2821), + [anon_sym_BANGin] = ACTIONS(2821), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2821), + [anon_sym_lock] = ACTIONS(2821), + [anon_sym_rlock] = ACTIONS(2821), + [anon_sym_unsafe] = ACTIONS(2821), + [anon_sym_sql] = ACTIONS(2821), + [sym_int_literal] = ACTIONS(2821), + [sym_float_literal] = ACTIONS(2821), + [sym_rune_literal] = ACTIONS(2821), + [anon_sym_SQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [anon_sym_c_SQUOTE] = ACTIONS(2821), + [anon_sym_c_DQUOTE] = ACTIONS(2821), + [anon_sym_r_SQUOTE] = ACTIONS(2821), + [anon_sym_r_DQUOTE] = ACTIONS(2821), + [sym_pseudo_compile_time_identifier] = ACTIONS(2821), + [anon_sym_shared] = ACTIONS(2821), + [anon_sym_map_LBRACK] = ACTIONS(2821), + [anon_sym_chan] = ACTIONS(2821), + [anon_sym_thread] = ACTIONS(2821), + [anon_sym_atomic] = ACTIONS(2821), }, [1160] = { [sym_line_comment] = STATE(1160), [sym_block_comment] = STATE(1160), - [sym_identifier] = ACTIONS(2828), - [anon_sym_LF] = ACTIONS(2828), - [anon_sym_CR] = ACTIONS(2828), - [anon_sym_CR_LF] = ACTIONS(2828), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LF] = ACTIONS(2779), + [anon_sym_CR] = ACTIONS(2779), + [anon_sym_CR_LF] = ACTIONS(2779), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2828), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_as] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_RBRACE] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym_RPAREN] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_EQ_EQ] = ACTIONS(2828), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_LT_EQ] = ACTIONS(2828), - [anon_sym_GT_EQ] = ACTIONS(2828), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_mut] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_go] = ACTIONS(2828), - [anon_sym_spawn] = ACTIONS(2828), - [anon_sym_json_DOTdecode] = ACTIONS(2828), - [anon_sym_LBRACK2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_CARET] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_LT_DASH] = ACTIONS(2828), - [anon_sym_LT_LT] = ACTIONS(2828), - [anon_sym_GT_GT] = ACTIONS(2828), - [anon_sym_GT_GT_GT] = ACTIONS(2828), - [anon_sym_AMP_CARET] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_PIPE_PIPE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2828), - [sym_none] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_nil] = ACTIONS(2828), - [anon_sym_QMARK_DOT] = ACTIONS(2828), - [anon_sym_POUND_LBRACK] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_DOLLARif] = ACTIONS(2828), - [anon_sym_is] = ACTIONS(2828), - [anon_sym_BANGis] = ACTIONS(2828), - [anon_sym_in] = ACTIONS(2828), - [anon_sym_BANGin] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_select] = ACTIONS(2828), - [anon_sym_lock] = ACTIONS(2828), - [anon_sym_rlock] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_sql] = ACTIONS(2828), - [sym_int_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2828), - [sym_rune_literal] = ACTIONS(2828), - [sym_pseudo_compile_time_identifier] = ACTIONS(2828), - [anon_sym_shared] = ACTIONS(2828), - [anon_sym_map_LBRACK] = ACTIONS(2828), - [anon_sym_chan] = ACTIONS(2828), - [anon_sym_thread] = ACTIONS(2828), - [anon_sym_atomic] = ACTIONS(2828), - [sym___double_quote] = ACTIONS(2828), - [sym___single_quote] = ACTIONS(2828), - [sym___c_double_quote] = ACTIONS(2828), - [sym___c_single_quote] = ACTIONS(2828), - [sym___r_double_quote] = ACTIONS(2828), - [sym___r_single_quote] = ACTIONS(2828), + [anon_sym_SEMI] = ACTIONS(2779), + [anon_sym_DOT] = ACTIONS(2779), + [anon_sym_as] = ACTIONS(2779), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_COMMA] = ACTIONS(2779), + [anon_sym_RBRACE] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(2779), + [anon_sym_RPAREN] = ACTIONS(2779), + [anon_sym_PIPE] = ACTIONS(2779), + [anon_sym_fn] = ACTIONS(2779), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_SLASH] = ACTIONS(2779), + [anon_sym_PERCENT] = ACTIONS(2779), + [anon_sym_LT] = ACTIONS(2779), + [anon_sym_GT] = ACTIONS(2779), + [anon_sym_EQ_EQ] = ACTIONS(2779), + [anon_sym_BANG_EQ] = ACTIONS(2779), + [anon_sym_LT_EQ] = ACTIONS(2779), + [anon_sym_GT_EQ] = ACTIONS(2779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_mut] = ACTIONS(2779), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_QMARK] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2779), + [anon_sym_json_DOTdecode] = ACTIONS(2779), + [anon_sym_LBRACK2] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_LT_DASH] = ACTIONS(2779), + [anon_sym_LT_LT] = ACTIONS(2779), + [anon_sym_GT_GT] = ACTIONS(2779), + [anon_sym_GT_GT_GT] = ACTIONS(2779), + [anon_sym_AMP_CARET] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2779), + [anon_sym_PIPE_PIPE] = ACTIONS(2779), + [anon_sym_or] = ACTIONS(2779), + [sym_none] = ACTIONS(2779), + [sym_true] = ACTIONS(2779), + [sym_false] = ACTIONS(2779), + [sym_nil] = ACTIONS(2779), + [anon_sym_QMARK_DOT] = ACTIONS(2779), + [anon_sym_POUND_LBRACK] = ACTIONS(2779), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_DOLLARif] = ACTIONS(2779), + [anon_sym_is] = ACTIONS(2779), + [anon_sym_BANGis] = ACTIONS(2779), + [anon_sym_in] = ACTIONS(2779), + [anon_sym_BANGin] = ACTIONS(2779), + [anon_sym_match] = ACTIONS(2779), + [anon_sym_select] = ACTIONS(2779), + [anon_sym_lock] = ACTIONS(2779), + [anon_sym_rlock] = ACTIONS(2779), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2779), + [sym_int_literal] = ACTIONS(2779), + [sym_float_literal] = ACTIONS(2779), + [sym_rune_literal] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2779), + [anon_sym_DQUOTE] = ACTIONS(2779), + [anon_sym_c_SQUOTE] = ACTIONS(2779), + [anon_sym_c_DQUOTE] = ACTIONS(2779), + [anon_sym_r_SQUOTE] = ACTIONS(2779), + [anon_sym_r_DQUOTE] = ACTIONS(2779), + [sym_pseudo_compile_time_identifier] = ACTIONS(2779), + [anon_sym_shared] = ACTIONS(2779), + [anon_sym_map_LBRACK] = ACTIONS(2779), + [anon_sym_chan] = ACTIONS(2779), + [anon_sym_thread] = ACTIONS(2779), + [anon_sym_atomic] = ACTIONS(2779), }, [1161] = { [sym_line_comment] = STATE(1161), [sym_block_comment] = STATE(1161), - [sym_identifier] = ACTIONS(2680), - [anon_sym_LF] = ACTIONS(2680), - [anon_sym_CR] = ACTIONS(2680), - [anon_sym_CR_LF] = ACTIONS(2680), + [sym_identifier] = ACTIONS(2171), + [anon_sym_LF] = ACTIONS(2171), + [anon_sym_CR] = ACTIONS(2171), + [anon_sym_CR_LF] = ACTIONS(2171), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_DOT] = ACTIONS(2680), - [anon_sym_as] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_COMMA] = ACTIONS(2680), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2680), - [anon_sym_RPAREN] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_fn] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_STAR] = ACTIONS(2680), - [anon_sym_SLASH] = ACTIONS(2680), - [anon_sym_PERCENT] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2680), - [anon_sym_GT] = ACTIONS(2680), - [anon_sym_EQ_EQ] = ACTIONS(2680), - [anon_sym_BANG_EQ] = ACTIONS(2680), - [anon_sym_LT_EQ] = ACTIONS(2680), - [anon_sym_GT_EQ] = ACTIONS(2680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_struct] = ACTIONS(2680), - [anon_sym_mut] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2680), - [anon_sym_DASH_DASH] = ACTIONS(2680), - [anon_sym_QMARK] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2680), - [anon_sym_go] = ACTIONS(2680), - [anon_sym_spawn] = ACTIONS(2680), - [anon_sym_json_DOTdecode] = ACTIONS(2680), - [anon_sym_LBRACK2] = ACTIONS(2680), - [anon_sym_TILDE] = ACTIONS(2680), - [anon_sym_CARET] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2680), - [anon_sym_LT_DASH] = ACTIONS(2680), - [anon_sym_LT_LT] = ACTIONS(2680), - [anon_sym_GT_GT] = ACTIONS(2680), - [anon_sym_GT_GT_GT] = ACTIONS(2680), - [anon_sym_AMP_CARET] = ACTIONS(2680), - [anon_sym_AMP_AMP] = ACTIONS(2680), - [anon_sym_PIPE_PIPE] = ACTIONS(2680), - [anon_sym_or] = ACTIONS(2680), - [sym_none] = ACTIONS(2680), - [sym_true] = ACTIONS(2680), - [sym_false] = ACTIONS(2680), - [sym_nil] = ACTIONS(2680), - [anon_sym_QMARK_DOT] = ACTIONS(2680), - [anon_sym_POUND_LBRACK] = ACTIONS(2680), - [anon_sym_if] = ACTIONS(2680), - [anon_sym_DOLLARif] = ACTIONS(2680), - [anon_sym_is] = ACTIONS(2680), - [anon_sym_BANGis] = ACTIONS(2680), - [anon_sym_in] = ACTIONS(2680), - [anon_sym_BANGin] = ACTIONS(2680), - [anon_sym_match] = ACTIONS(2680), - [anon_sym_select] = ACTIONS(2680), - [anon_sym_lock] = ACTIONS(2680), - [anon_sym_rlock] = ACTIONS(2680), - [anon_sym_unsafe] = ACTIONS(2680), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2680), - [sym_float_literal] = ACTIONS(2680), - [sym_rune_literal] = ACTIONS(2680), - [sym_pseudo_compile_time_identifier] = ACTIONS(2680), - [anon_sym_shared] = ACTIONS(2680), - [anon_sym_map_LBRACK] = ACTIONS(2680), - [anon_sym_chan] = ACTIONS(2680), - [anon_sym_thread] = ACTIONS(2680), - [anon_sym_atomic] = ACTIONS(2680), - [sym___double_quote] = ACTIONS(2680), - [sym___single_quote] = ACTIONS(2680), - [sym___c_double_quote] = ACTIONS(2680), - [sym___c_single_quote] = ACTIONS(2680), - [sym___r_double_quote] = ACTIONS(2680), - [sym___r_single_quote] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(2171), + [anon_sym_as] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_COMMA] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_RPAREN] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2171), + [anon_sym_fn] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_GT] = ACTIONS(2171), + [anon_sym_EQ_EQ] = ACTIONS(2171), + [anon_sym_BANG_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_struct] = ACTIONS(2171), + [anon_sym_mut] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_go] = ACTIONS(2171), + [anon_sym_spawn] = ACTIONS(2171), + [anon_sym_json_DOTdecode] = ACTIONS(2171), + [anon_sym_LBRACK2] = ACTIONS(2171), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2171), + [anon_sym_LT_LT] = ACTIONS(2171), + [anon_sym_GT_GT] = ACTIONS(2171), + [anon_sym_GT_GT_GT] = ACTIONS(2171), + [anon_sym_AMP_CARET] = ACTIONS(2171), + [anon_sym_AMP_AMP] = ACTIONS(2171), + [anon_sym_PIPE_PIPE] = ACTIONS(2171), + [anon_sym_or] = ACTIONS(2171), + [sym_none] = ACTIONS(2171), + [sym_true] = ACTIONS(2171), + [sym_false] = ACTIONS(2171), + [sym_nil] = ACTIONS(2171), + [anon_sym_QMARK_DOT] = ACTIONS(2171), + [anon_sym_POUND_LBRACK] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(2171), + [anon_sym_DOLLARif] = ACTIONS(2171), + [anon_sym_is] = ACTIONS(2171), + [anon_sym_BANGis] = ACTIONS(2171), + [anon_sym_in] = ACTIONS(2171), + [anon_sym_BANGin] = ACTIONS(2171), + [anon_sym_match] = ACTIONS(2171), + [anon_sym_select] = ACTIONS(2171), + [anon_sym_lock] = ACTIONS(2171), + [anon_sym_rlock] = ACTIONS(2171), + [anon_sym_unsafe] = ACTIONS(2171), + [anon_sym_sql] = ACTIONS(2171), + [sym_int_literal] = ACTIONS(2171), + [sym_float_literal] = ACTIONS(2171), + [sym_rune_literal] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_c_SQUOTE] = ACTIONS(2171), + [anon_sym_c_DQUOTE] = ACTIONS(2171), + [anon_sym_r_SQUOTE] = ACTIONS(2171), + [anon_sym_r_DQUOTE] = ACTIONS(2171), + [sym_pseudo_compile_time_identifier] = ACTIONS(2171), + [anon_sym_shared] = ACTIONS(2171), + [anon_sym_map_LBRACK] = ACTIONS(2171), + [anon_sym_chan] = ACTIONS(2171), + [anon_sym_thread] = ACTIONS(2171), + [anon_sym_atomic] = ACTIONS(2171), }, [1162] = { [sym_line_comment] = STATE(1162), [sym_block_comment] = STATE(1162), - [sym_identifier] = ACTIONS(2836), - [anon_sym_LF] = ACTIONS(2836), - [anon_sym_CR] = ACTIONS(2836), - [anon_sym_CR_LF] = ACTIONS(2836), + [sym_identifier] = ACTIONS(2423), + [anon_sym_LF] = ACTIONS(2423), + [anon_sym_CR] = ACTIONS(2423), + [anon_sym_CR_LF] = ACTIONS(2423), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_DOT] = ACTIONS(2836), - [anon_sym_as] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2836), - [anon_sym_RPAREN] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_fn] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2836), - [anon_sym_SLASH] = ACTIONS(2836), - [anon_sym_PERCENT] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_GT] = ACTIONS(2836), - [anon_sym_EQ_EQ] = ACTIONS(2836), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_LT_EQ] = ACTIONS(2836), - [anon_sym_GT_EQ] = ACTIONS(2836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_mut] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_QMARK] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_go] = ACTIONS(2836), - [anon_sym_spawn] = ACTIONS(2836), - [anon_sym_json_DOTdecode] = ACTIONS(2836), - [anon_sym_LBRACK2] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2836), - [anon_sym_CARET] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_LT_DASH] = ACTIONS(2836), - [anon_sym_LT_LT] = ACTIONS(2836), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_GT_GT_GT] = ACTIONS(2836), - [anon_sym_AMP_CARET] = ACTIONS(2836), - [anon_sym_AMP_AMP] = ACTIONS(2836), - [anon_sym_PIPE_PIPE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2836), - [sym_none] = ACTIONS(2836), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [sym_nil] = ACTIONS(2836), - [anon_sym_QMARK_DOT] = ACTIONS(2836), - [anon_sym_POUND_LBRACK] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_DOLLARif] = ACTIONS(2836), - [anon_sym_is] = ACTIONS(2836), - [anon_sym_BANGis] = ACTIONS(2836), - [anon_sym_in] = ACTIONS(2836), - [anon_sym_BANGin] = ACTIONS(2836), - [anon_sym_match] = ACTIONS(2836), - [anon_sym_select] = ACTIONS(2836), - [anon_sym_lock] = ACTIONS(2836), - [anon_sym_rlock] = ACTIONS(2836), - [anon_sym_unsafe] = ACTIONS(2836), - [anon_sym_sql] = ACTIONS(2836), - [sym_int_literal] = ACTIONS(2836), - [sym_float_literal] = ACTIONS(2836), - [sym_rune_literal] = ACTIONS(2836), - [sym_pseudo_compile_time_identifier] = ACTIONS(2836), - [anon_sym_shared] = ACTIONS(2836), - [anon_sym_map_LBRACK] = ACTIONS(2836), - [anon_sym_chan] = ACTIONS(2836), - [anon_sym_thread] = ACTIONS(2836), - [anon_sym_atomic] = ACTIONS(2836), - [sym___double_quote] = ACTIONS(2836), - [sym___single_quote] = ACTIONS(2836), - [sym___c_double_quote] = ACTIONS(2836), - [sym___c_single_quote] = ACTIONS(2836), - [sym___r_double_quote] = ACTIONS(2836), - [sym___r_single_quote] = ACTIONS(2836), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_DOT] = ACTIONS(2423), + [anon_sym_as] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_COMMA] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_RPAREN] = ACTIONS(2423), + [anon_sym_PIPE] = ACTIONS(2423), + [anon_sym_fn] = ACTIONS(2423), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_LT] = ACTIONS(2423), + [anon_sym_GT] = ACTIONS(2423), + [anon_sym_EQ_EQ] = ACTIONS(2423), + [anon_sym_BANG_EQ] = ACTIONS(2423), + [anon_sym_LT_EQ] = ACTIONS(2423), + [anon_sym_GT_EQ] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(2423), + [anon_sym_mut] = ACTIONS(2423), + [anon_sym_PLUS_PLUS] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(2423), + [anon_sym_QMARK] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2423), + [anon_sym_spawn] = ACTIONS(2423), + [anon_sym_json_DOTdecode] = ACTIONS(2423), + [anon_sym_LBRACK2] = ACTIONS(2423), + [anon_sym_TILDE] = ACTIONS(2423), + [anon_sym_CARET] = ACTIONS(2423), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2423), + [anon_sym_LT_LT] = ACTIONS(2423), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_GT_GT_GT] = ACTIONS(2423), + [anon_sym_AMP_CARET] = ACTIONS(2423), + [anon_sym_AMP_AMP] = ACTIONS(2423), + [anon_sym_PIPE_PIPE] = ACTIONS(2423), + [anon_sym_or] = ACTIONS(2423), + [sym_none] = ACTIONS(2423), + [sym_true] = ACTIONS(2423), + [sym_false] = ACTIONS(2423), + [sym_nil] = ACTIONS(2423), + [anon_sym_QMARK_DOT] = ACTIONS(2423), + [anon_sym_POUND_LBRACK] = ACTIONS(2423), + [anon_sym_if] = ACTIONS(2423), + [anon_sym_DOLLARif] = ACTIONS(2423), + [anon_sym_is] = ACTIONS(2423), + [anon_sym_BANGis] = ACTIONS(2423), + [anon_sym_in] = ACTIONS(2423), + [anon_sym_BANGin] = ACTIONS(2423), + [anon_sym_match] = ACTIONS(2423), + [anon_sym_select] = ACTIONS(2423), + [anon_sym_lock] = ACTIONS(2423), + [anon_sym_rlock] = ACTIONS(2423), + [anon_sym_unsafe] = ACTIONS(2423), + [anon_sym_sql] = ACTIONS(2423), + [sym_int_literal] = ACTIONS(2423), + [sym_float_literal] = ACTIONS(2423), + [sym_rune_literal] = ACTIONS(2423), + [anon_sym_SQUOTE] = ACTIONS(2423), + [anon_sym_DQUOTE] = ACTIONS(2423), + [anon_sym_c_SQUOTE] = ACTIONS(2423), + [anon_sym_c_DQUOTE] = ACTIONS(2423), + [anon_sym_r_SQUOTE] = ACTIONS(2423), + [anon_sym_r_DQUOTE] = ACTIONS(2423), + [sym_pseudo_compile_time_identifier] = ACTIONS(2423), + [anon_sym_shared] = ACTIONS(2423), + [anon_sym_map_LBRACK] = ACTIONS(2423), + [anon_sym_chan] = ACTIONS(2423), + [anon_sym_thread] = ACTIONS(2423), + [anon_sym_atomic] = ACTIONS(2423), }, [1163] = { [sym_line_comment] = STATE(1163), [sym_block_comment] = STATE(1163), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), + [sym_identifier] = ACTIONS(2167), + [anon_sym_LF] = ACTIONS(2167), + [anon_sym_CR] = ACTIONS(2167), + [anon_sym_CR_LF] = ACTIONS(2167), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_RPAREN] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2704), - [anon_sym_POUND_LBRACK] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2704), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [sym_pseudo_compile_time_identifier] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_DOT] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_COMMA] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_RPAREN] = ACTIONS(2167), + [anon_sym_PIPE] = ACTIONS(2167), + [anon_sym_fn] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_PERCENT] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2167), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_LT_EQ] = ACTIONS(2167), + [anon_sym_GT_EQ] = ACTIONS(2167), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_mut] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_QMARK] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_go] = ACTIONS(2167), + [anon_sym_spawn] = ACTIONS(2167), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_LT_DASH] = ACTIONS(2167), + [anon_sym_LT_LT] = ACTIONS(2167), + [anon_sym_GT_GT] = ACTIONS(2167), + [anon_sym_GT_GT_GT] = ACTIONS(2167), + [anon_sym_AMP_CARET] = ACTIONS(2167), + [anon_sym_AMP_AMP] = ACTIONS(2167), + [anon_sym_PIPE_PIPE] = ACTIONS(2167), + [anon_sym_or] = ACTIONS(2167), + [sym_none] = ACTIONS(2167), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_nil] = ACTIONS(2167), + [anon_sym_QMARK_DOT] = ACTIONS(2167), + [anon_sym_POUND_LBRACK] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_DOLLARif] = ACTIONS(2167), + [anon_sym_is] = ACTIONS(2167), + [anon_sym_BANGis] = ACTIONS(2167), + [anon_sym_in] = ACTIONS(2167), + [anon_sym_BANGin] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_select] = ACTIONS(2167), + [anon_sym_lock] = ACTIONS(2167), + [anon_sym_rlock] = ACTIONS(2167), + [anon_sym_unsafe] = ACTIONS(2167), + [anon_sym_sql] = ACTIONS(2167), + [sym_int_literal] = ACTIONS(2167), + [sym_float_literal] = ACTIONS(2167), + [sym_rune_literal] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_c_SQUOTE] = ACTIONS(2167), + [anon_sym_c_DQUOTE] = ACTIONS(2167), + [anon_sym_r_SQUOTE] = ACTIONS(2167), + [anon_sym_r_DQUOTE] = ACTIONS(2167), + [sym_pseudo_compile_time_identifier] = ACTIONS(2167), + [anon_sym_shared] = ACTIONS(2167), + [anon_sym_map_LBRACK] = ACTIONS(2167), + [anon_sym_chan] = ACTIONS(2167), + [anon_sym_thread] = ACTIONS(2167), + [anon_sym_atomic] = ACTIONS(2167), }, [1164] = { [sym_line_comment] = STATE(1164), [sym_block_comment] = STATE(1164), - [sym_identifier] = ACTIONS(2538), - [anon_sym_LF] = ACTIONS(2538), - [anon_sym_CR] = ACTIONS(2538), - [anon_sym_CR_LF] = ACTIONS(2538), + [sym_identifier] = ACTIONS(2775), + [anon_sym_LF] = ACTIONS(2775), + [anon_sym_CR] = ACTIONS(2775), + [anon_sym_CR_LF] = ACTIONS(2775), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2538), - [anon_sym_DOT] = ACTIONS(2538), - [anon_sym_as] = ACTIONS(2538), - [anon_sym_LBRACE] = ACTIONS(2538), - [anon_sym_COMMA] = ACTIONS(2538), - [anon_sym_RBRACE] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(2538), - [anon_sym_RPAREN] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_fn] = ACTIONS(2538), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(2538), - [anon_sym_PERCENT] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_GT] = ACTIONS(2538), - [anon_sym_EQ_EQ] = ACTIONS(2538), - [anon_sym_BANG_EQ] = ACTIONS(2538), - [anon_sym_LT_EQ] = ACTIONS(2538), - [anon_sym_GT_EQ] = ACTIONS(2538), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), - [anon_sym_mut] = ACTIONS(2538), - [anon_sym_PLUS_PLUS] = ACTIONS(2538), - [anon_sym_DASH_DASH] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(2538), - [anon_sym_BANG] = ACTIONS(2538), - [anon_sym_go] = ACTIONS(2538), - [anon_sym_spawn] = ACTIONS(2538), - [anon_sym_json_DOTdecode] = ACTIONS(2538), - [anon_sym_LBRACK2] = ACTIONS(2538), - [anon_sym_TILDE] = ACTIONS(2538), - [anon_sym_CARET] = ACTIONS(2538), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2538), - [anon_sym_LT_LT] = ACTIONS(2538), - [anon_sym_GT_GT] = ACTIONS(2538), - [anon_sym_GT_GT_GT] = ACTIONS(2538), - [anon_sym_AMP_CARET] = ACTIONS(2538), - [anon_sym_AMP_AMP] = ACTIONS(2538), - [anon_sym_PIPE_PIPE] = ACTIONS(2538), - [anon_sym_or] = ACTIONS(2538), - [sym_none] = ACTIONS(2538), - [sym_true] = ACTIONS(2538), - [sym_false] = ACTIONS(2538), - [sym_nil] = ACTIONS(2538), - [anon_sym_QMARK_DOT] = ACTIONS(2538), - [anon_sym_POUND_LBRACK] = ACTIONS(2538), - [anon_sym_if] = ACTIONS(2538), - [anon_sym_DOLLARif] = ACTIONS(2538), - [anon_sym_is] = ACTIONS(2538), - [anon_sym_BANGis] = ACTIONS(2538), - [anon_sym_in] = ACTIONS(2538), - [anon_sym_BANGin] = ACTIONS(2538), - [anon_sym_match] = ACTIONS(2538), - [anon_sym_select] = ACTIONS(2538), - [anon_sym_lock] = ACTIONS(2538), - [anon_sym_rlock] = ACTIONS(2538), - [anon_sym_unsafe] = ACTIONS(2538), - [anon_sym_sql] = ACTIONS(2538), - [sym_int_literal] = ACTIONS(2538), - [sym_float_literal] = ACTIONS(2538), - [sym_rune_literal] = ACTIONS(2538), - [sym_pseudo_compile_time_identifier] = ACTIONS(2538), - [anon_sym_shared] = ACTIONS(2538), - [anon_sym_map_LBRACK] = ACTIONS(2538), - [anon_sym_chan] = ACTIONS(2538), - [anon_sym_thread] = ACTIONS(2538), - [anon_sym_atomic] = ACTIONS(2538), - [sym___double_quote] = ACTIONS(2538), - [sym___single_quote] = ACTIONS(2538), - [sym___c_double_quote] = ACTIONS(2538), - [sym___c_single_quote] = ACTIONS(2538), - [sym___r_double_quote] = ACTIONS(2538), - [sym___r_single_quote] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_DOT] = ACTIONS(2775), + [anon_sym_as] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_COMMA] = ACTIONS(2775), + [anon_sym_RBRACE] = ACTIONS(2775), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym_RPAREN] = ACTIONS(2775), + [anon_sym_PIPE] = ACTIONS(2775), + [anon_sym_fn] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2775), + [anon_sym_PERCENT] = ACTIONS(2775), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_GT] = ACTIONS(2775), + [anon_sym_EQ_EQ] = ACTIONS(2775), + [anon_sym_BANG_EQ] = ACTIONS(2775), + [anon_sym_LT_EQ] = ACTIONS(2775), + [anon_sym_GT_EQ] = ACTIONS(2775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2775), + [anon_sym_mut] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_QMARK] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_go] = ACTIONS(2775), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(2775), + [anon_sym_LBRACK2] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_CARET] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_LT_DASH] = ACTIONS(2775), + [anon_sym_LT_LT] = ACTIONS(2775), + [anon_sym_GT_GT] = ACTIONS(2775), + [anon_sym_GT_GT_GT] = ACTIONS(2775), + [anon_sym_AMP_CARET] = ACTIONS(2775), + [anon_sym_AMP_AMP] = ACTIONS(2775), + [anon_sym_PIPE_PIPE] = ACTIONS(2775), + [anon_sym_or] = ACTIONS(2775), + [sym_none] = ACTIONS(2775), + [sym_true] = ACTIONS(2775), + [sym_false] = ACTIONS(2775), + [sym_nil] = ACTIONS(2775), + [anon_sym_QMARK_DOT] = ACTIONS(2775), + [anon_sym_POUND_LBRACK] = ACTIONS(2775), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_DOLLARif] = ACTIONS(2775), + [anon_sym_is] = ACTIONS(2775), + [anon_sym_BANGis] = ACTIONS(2775), + [anon_sym_in] = ACTIONS(2775), + [anon_sym_BANGin] = ACTIONS(2775), + [anon_sym_match] = ACTIONS(2775), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2775), + [anon_sym_rlock] = ACTIONS(2775), + [anon_sym_unsafe] = ACTIONS(2775), + [anon_sym_sql] = ACTIONS(2775), + [sym_int_literal] = ACTIONS(2775), + [sym_float_literal] = ACTIONS(2775), + [sym_rune_literal] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [anon_sym_c_SQUOTE] = ACTIONS(2775), + [anon_sym_c_DQUOTE] = ACTIONS(2775), + [anon_sym_r_SQUOTE] = ACTIONS(2775), + [anon_sym_r_DQUOTE] = ACTIONS(2775), + [sym_pseudo_compile_time_identifier] = ACTIONS(2775), + [anon_sym_shared] = ACTIONS(2775), + [anon_sym_map_LBRACK] = ACTIONS(2775), + [anon_sym_chan] = ACTIONS(2775), + [anon_sym_thread] = ACTIONS(2775), + [anon_sym_atomic] = ACTIONS(2775), }, [1165] = { [sym_line_comment] = STATE(1165), [sym_block_comment] = STATE(1165), - [sym_identifier] = ACTIONS(2890), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_CR] = ACTIONS(2890), - [anon_sym_CR_LF] = ACTIONS(2890), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2890), - [anon_sym_DOT] = ACTIONS(2890), - [anon_sym_as] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(2890), - [anon_sym_RBRACE] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_RPAREN] = ACTIONS(2890), - [anon_sym_PIPE] = ACTIONS(2890), - [anon_sym_fn] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_SLASH] = ACTIONS(2890), - [anon_sym_PERCENT] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_GT] = ACTIONS(2890), - [anon_sym_EQ_EQ] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2890), - [anon_sym_LT_EQ] = ACTIONS(2890), - [anon_sym_GT_EQ] = ACTIONS(2890), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_struct] = ACTIONS(2890), - [anon_sym_mut] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2890), - [anon_sym_DASH_DASH] = ACTIONS(2890), - [anon_sym_QMARK] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2890), - [anon_sym_go] = ACTIONS(2890), - [anon_sym_spawn] = ACTIONS(2890), - [anon_sym_json_DOTdecode] = ACTIONS(2890), - [anon_sym_LBRACK2] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2890), - [anon_sym_CARET] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_LT_DASH] = ACTIONS(2890), - [anon_sym_LT_LT] = ACTIONS(2890), - [anon_sym_GT_GT] = ACTIONS(2890), - [anon_sym_GT_GT_GT] = ACTIONS(2890), - [anon_sym_AMP_CARET] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_or] = ACTIONS(2890), - [sym_none] = ACTIONS(2890), - [sym_true] = ACTIONS(2890), - [sym_false] = ACTIONS(2890), - [sym_nil] = ACTIONS(2890), - [anon_sym_QMARK_DOT] = ACTIONS(2890), - [anon_sym_POUND_LBRACK] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_DOLLARif] = ACTIONS(2890), - [anon_sym_is] = ACTIONS(2890), - [anon_sym_BANGis] = ACTIONS(2890), - [anon_sym_in] = ACTIONS(2890), - [anon_sym_BANGin] = ACTIONS(2890), - [anon_sym_match] = ACTIONS(2890), - [anon_sym_select] = ACTIONS(2890), - [anon_sym_lock] = ACTIONS(2890), - [anon_sym_rlock] = ACTIONS(2890), - [anon_sym_unsafe] = ACTIONS(2890), - [anon_sym_sql] = ACTIONS(2890), - [sym_int_literal] = ACTIONS(2890), - [sym_float_literal] = ACTIONS(2890), - [sym_rune_literal] = ACTIONS(2890), - [sym_pseudo_compile_time_identifier] = ACTIONS(2890), - [anon_sym_shared] = ACTIONS(2890), - [anon_sym_map_LBRACK] = ACTIONS(2890), - [anon_sym_chan] = ACTIONS(2890), - [anon_sym_thread] = ACTIONS(2890), - [anon_sym_atomic] = ACTIONS(2890), - [sym___double_quote] = ACTIONS(2890), - [sym___single_quote] = ACTIONS(2890), - [sym___c_double_quote] = ACTIONS(2890), - [sym___c_single_quote] = ACTIONS(2890), - [sym___r_double_quote] = ACTIONS(2890), - [sym___r_single_quote] = ACTIONS(2890), + [sym_reference_expression] = STATE(4428), + [sym_type_reference_expression] = STATE(1899), + [sym_plain_type] = STATE(1974), + [sym__plain_type_without_special] = STATE(1918), + [sym_anon_struct_type] = STATE(1996), + [sym_multi_return_type] = STATE(1918), + [sym_result_type] = STATE(1918), + [sym_option_type] = STATE(1918), + [sym_qualified_type] = STATE(1899), + [sym_fixed_array_type] = STATE(1996), + [sym_array_type] = STATE(1996), + [sym_pointer_type] = STATE(1996), + [sym_wrong_pointer_type] = STATE(1996), + [sym_map_type] = STATE(1996), + [sym_channel_type] = STATE(1996), + [sym_shared_type] = STATE(1996), + [sym_thread_type] = STATE(1996), + [sym_atomic_type] = STATE(1996), + [sym_generic_type] = STATE(1996), + [sym_function_type] = STATE(1996), + [sym_identifier] = ACTIONS(3748), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(599), + [anon_sym_GT_EQ] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(3756), + [anon_sym_COLON] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(3758), + [anon_sym_BANG] = ACTIONS(3760), + [anon_sym_LBRACK2] = ACTIONS(3762), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(3764), + [anon_sym_LT_DASH] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(599), + [anon_sym_STAR_EQ] = ACTIONS(599), + [anon_sym_SLASH_EQ] = ACTIONS(599), + [anon_sym_PERCENT_EQ] = ACTIONS(599), + [anon_sym_LT_LT_EQ] = ACTIONS(599), + [anon_sym_GT_GT_EQ] = ACTIONS(599), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(599), + [anon_sym_AMP_EQ] = ACTIONS(599), + [anon_sym_AMP_CARET_EQ] = ACTIONS(599), + [anon_sym_PLUS_EQ] = ACTIONS(599), + [anon_sym_DASH_EQ] = ACTIONS(599), + [anon_sym_PIPE_EQ] = ACTIONS(599), + [anon_sym_CARET_EQ] = ACTIONS(599), + [anon_sym_shared] = ACTIONS(3766), + [anon_sym_map_LBRACK] = ACTIONS(3768), + [anon_sym_chan] = ACTIONS(3770), + [anon_sym_thread] = ACTIONS(3772), + [anon_sym_atomic] = ACTIONS(3774), }, [1166] = { [sym_line_comment] = STATE(1166), [sym_block_comment] = STATE(1166), - [sym_identifier] = ACTIONS(2710), - [anon_sym_LF] = ACTIONS(2710), - [anon_sym_CR] = ACTIONS(2710), - [anon_sym_CR_LF] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2123), + [anon_sym_LF] = ACTIONS(2123), + [anon_sym_CR] = ACTIONS(2123), + [anon_sym_CR_LF] = ACTIONS(2123), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_DOT] = ACTIONS(2710), - [anon_sym_as] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_COMMA] = ACTIONS(2710), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_fn] = ACTIONS(2710), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_STAR] = ACTIONS(2710), - [anon_sym_SLASH] = ACTIONS(2710), - [anon_sym_PERCENT] = ACTIONS(2710), - [anon_sym_LT] = ACTIONS(2710), - [anon_sym_GT] = ACTIONS(2710), - [anon_sym_EQ_EQ] = ACTIONS(2710), - [anon_sym_BANG_EQ] = ACTIONS(2710), - [anon_sym_LT_EQ] = ACTIONS(2710), - [anon_sym_GT_EQ] = ACTIONS(2710), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(2710), - [anon_sym_PLUS_PLUS] = ACTIONS(2710), - [anon_sym_DASH_DASH] = ACTIONS(2710), - [anon_sym_QMARK] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(2710), - [anon_sym_go] = ACTIONS(2710), - [anon_sym_spawn] = ACTIONS(2710), - [anon_sym_json_DOTdecode] = ACTIONS(2710), - [anon_sym_LBRACK2] = ACTIONS(2710), - [anon_sym_TILDE] = ACTIONS(2710), - [anon_sym_CARET] = ACTIONS(2710), - [anon_sym_AMP] = ACTIONS(2710), - [anon_sym_LT_DASH] = ACTIONS(2710), - [anon_sym_LT_LT] = ACTIONS(2710), - [anon_sym_GT_GT] = ACTIONS(2710), - [anon_sym_GT_GT_GT] = ACTIONS(2710), - [anon_sym_AMP_CARET] = ACTIONS(2710), - [anon_sym_AMP_AMP] = ACTIONS(2710), - [anon_sym_PIPE_PIPE] = ACTIONS(2710), - [anon_sym_or] = ACTIONS(2710), - [sym_none] = ACTIONS(2710), - [sym_true] = ACTIONS(2710), - [sym_false] = ACTIONS(2710), - [sym_nil] = ACTIONS(2710), - [anon_sym_QMARK_DOT] = ACTIONS(2710), - [anon_sym_POUND_LBRACK] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_DOLLARif] = ACTIONS(2710), - [anon_sym_is] = ACTIONS(2710), - [anon_sym_BANGis] = ACTIONS(2710), - [anon_sym_in] = ACTIONS(2710), - [anon_sym_BANGin] = ACTIONS(2710), - [anon_sym_match] = ACTIONS(2710), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2710), - [anon_sym_rlock] = ACTIONS(2710), - [anon_sym_unsafe] = ACTIONS(2710), - [anon_sym_sql] = ACTIONS(2710), - [sym_int_literal] = ACTIONS(2710), - [sym_float_literal] = ACTIONS(2710), - [sym_rune_literal] = ACTIONS(2710), - [sym_pseudo_compile_time_identifier] = ACTIONS(2710), - [anon_sym_shared] = ACTIONS(2710), - [anon_sym_map_LBRACK] = ACTIONS(2710), - [anon_sym_chan] = ACTIONS(2710), - [anon_sym_thread] = ACTIONS(2710), - [anon_sym_atomic] = ACTIONS(2710), - [sym___double_quote] = ACTIONS(2710), - [sym___single_quote] = ACTIONS(2710), - [sym___c_double_quote] = ACTIONS(2710), - [sym___c_single_quote] = ACTIONS(2710), - [sym___r_double_quote] = ACTIONS(2710), - [sym___r_single_quote] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2123), + [anon_sym_DOT] = ACTIONS(2123), + [anon_sym_as] = ACTIONS(2123), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_COMMA] = ACTIONS(2123), + [anon_sym_RBRACE] = ACTIONS(2123), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_RPAREN] = ACTIONS(2123), + [anon_sym_PIPE] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(2123), + [anon_sym_PLUS] = ACTIONS(2123), + [anon_sym_DASH] = ACTIONS(2123), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_SLASH] = ACTIONS(2123), + [anon_sym_PERCENT] = ACTIONS(2123), + [anon_sym_LT] = ACTIONS(2123), + [anon_sym_GT] = ACTIONS(2123), + [anon_sym_EQ_EQ] = ACTIONS(2123), + [anon_sym_BANG_EQ] = ACTIONS(2123), + [anon_sym_LT_EQ] = ACTIONS(2123), + [anon_sym_GT_EQ] = ACTIONS(2123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), + [anon_sym_LBRACK] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_mut] = ACTIONS(2123), + [anon_sym_PLUS_PLUS] = ACTIONS(2123), + [anon_sym_DASH_DASH] = ACTIONS(2123), + [anon_sym_QMARK] = ACTIONS(2123), + [anon_sym_BANG] = ACTIONS(2123), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2123), + [anon_sym_json_DOTdecode] = ACTIONS(2123), + [anon_sym_LBRACK2] = ACTIONS(2123), + [anon_sym_TILDE] = ACTIONS(2123), + [anon_sym_CARET] = ACTIONS(2123), + [anon_sym_AMP] = ACTIONS(2123), + [anon_sym_LT_DASH] = ACTIONS(2123), + [anon_sym_LT_LT] = ACTIONS(2123), + [anon_sym_GT_GT] = ACTIONS(2123), + [anon_sym_GT_GT_GT] = ACTIONS(2123), + [anon_sym_AMP_CARET] = ACTIONS(2123), + [anon_sym_AMP_AMP] = ACTIONS(2123), + [anon_sym_PIPE_PIPE] = ACTIONS(2123), + [anon_sym_or] = ACTIONS(2123), + [sym_none] = ACTIONS(2123), + [sym_true] = ACTIONS(2123), + [sym_false] = ACTIONS(2123), + [sym_nil] = ACTIONS(2123), + [anon_sym_QMARK_DOT] = ACTIONS(2123), + [anon_sym_POUND_LBRACK] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2123), + [anon_sym_DOLLARif] = ACTIONS(2123), + [anon_sym_is] = ACTIONS(2123), + [anon_sym_BANGis] = ACTIONS(2123), + [anon_sym_in] = ACTIONS(2123), + [anon_sym_BANGin] = ACTIONS(2123), + [anon_sym_match] = ACTIONS(2123), + [anon_sym_select] = ACTIONS(2123), + [anon_sym_lock] = ACTIONS(2123), + [anon_sym_rlock] = ACTIONS(2123), + [anon_sym_unsafe] = ACTIONS(2123), + [anon_sym_sql] = ACTIONS(2123), + [sym_int_literal] = ACTIONS(2123), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(2123), + [anon_sym_c_SQUOTE] = ACTIONS(2123), + [anon_sym_c_DQUOTE] = ACTIONS(2123), + [anon_sym_r_SQUOTE] = ACTIONS(2123), + [anon_sym_r_DQUOTE] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(2123), + [anon_sym_shared] = ACTIONS(2123), + [anon_sym_map_LBRACK] = ACTIONS(2123), + [anon_sym_chan] = ACTIONS(2123), + [anon_sym_thread] = ACTIONS(2123), + [anon_sym_atomic] = ACTIONS(2123), }, [1167] = { [sym_line_comment] = STATE(1167), [sym_block_comment] = STATE(1167), - [sym_identifier] = ACTIONS(2684), - [anon_sym_LF] = ACTIONS(2684), - [anon_sym_CR] = ACTIONS(2684), - [anon_sym_CR_LF] = ACTIONS(2684), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_DOT] = ACTIONS(2684), - [anon_sym_as] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_COMMA] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_fn] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(2684), - [anon_sym_SLASH] = ACTIONS(2684), - [anon_sym_PERCENT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2684), - [anon_sym_GT] = ACTIONS(2684), - [anon_sym_EQ_EQ] = ACTIONS(2684), - [anon_sym_BANG_EQ] = ACTIONS(2684), - [anon_sym_LT_EQ] = ACTIONS(2684), - [anon_sym_GT_EQ] = ACTIONS(2684), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(2684), - [anon_sym_mut] = ACTIONS(2684), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_QMARK] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2684), - [anon_sym_spawn] = ACTIONS(2684), - [anon_sym_json_DOTdecode] = ACTIONS(2684), - [anon_sym_LBRACK2] = ACTIONS(2684), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_CARET] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2684), - [anon_sym_LT_DASH] = ACTIONS(2684), - [anon_sym_LT_LT] = ACTIONS(2684), - [anon_sym_GT_GT] = ACTIONS(2684), - [anon_sym_GT_GT_GT] = ACTIONS(2684), - [anon_sym_AMP_CARET] = ACTIONS(2684), - [anon_sym_AMP_AMP] = ACTIONS(2684), - [anon_sym_PIPE_PIPE] = ACTIONS(2684), - [anon_sym_or] = ACTIONS(2684), - [sym_none] = ACTIONS(2684), - [sym_true] = ACTIONS(2684), - [sym_false] = ACTIONS(2684), - [sym_nil] = ACTIONS(2684), - [anon_sym_QMARK_DOT] = ACTIONS(2684), - [anon_sym_POUND_LBRACK] = ACTIONS(2684), - [anon_sym_if] = ACTIONS(2684), - [anon_sym_DOLLARif] = ACTIONS(2684), - [anon_sym_is] = ACTIONS(2684), - [anon_sym_BANGis] = ACTIONS(2684), - [anon_sym_in] = ACTIONS(2684), - [anon_sym_BANGin] = ACTIONS(2684), - [anon_sym_match] = ACTIONS(2684), - [anon_sym_select] = ACTIONS(2684), - [anon_sym_lock] = ACTIONS(2684), - [anon_sym_rlock] = ACTIONS(2684), - [anon_sym_unsafe] = ACTIONS(2684), - [anon_sym_sql] = ACTIONS(2684), - [sym_int_literal] = ACTIONS(2684), - [sym_float_literal] = ACTIONS(2684), - [sym_rune_literal] = ACTIONS(2684), - [sym_pseudo_compile_time_identifier] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(2684), - [anon_sym_map_LBRACK] = ACTIONS(2684), - [anon_sym_chan] = ACTIONS(2684), - [anon_sym_thread] = ACTIONS(2684), - [anon_sym_atomic] = ACTIONS(2684), - [sym___double_quote] = ACTIONS(2684), - [sym___single_quote] = ACTIONS(2684), - [sym___c_double_quote] = ACTIONS(2684), - [sym___c_single_quote] = ACTIONS(2684), - [sym___r_double_quote] = ACTIONS(2684), - [sym___r_single_quote] = ACTIONS(2684), + [sym_reference_expression] = STATE(4428), + [sym_type_reference_expression] = STATE(1899), + [sym_plain_type] = STATE(1923), + [sym__plain_type_without_special] = STATE(1918), + [sym_anon_struct_type] = STATE(1996), + [sym_multi_return_type] = STATE(1918), + [sym_result_type] = STATE(1918), + [sym_option_type] = STATE(1918), + [sym_qualified_type] = STATE(1899), + [sym_fixed_array_type] = STATE(1996), + [sym_array_type] = STATE(1996), + [sym_pointer_type] = STATE(1996), + [sym_wrong_pointer_type] = STATE(1996), + [sym_map_type] = STATE(1996), + [sym_channel_type] = STATE(1996), + [sym_shared_type] = STATE(1996), + [sym_thread_type] = STATE(1996), + [sym_atomic_type] = STATE(1996), + [sym_generic_type] = STATE(1996), + [sym_function_type] = STATE(1996), + [sym_identifier] = ACTIONS(3748), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(595), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(3756), + [anon_sym_COLON] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_QMARK] = ACTIONS(3758), + [anon_sym_BANG] = ACTIONS(3760), + [anon_sym_LBRACK2] = ACTIONS(3762), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(3764), + [anon_sym_LT_DASH] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(595), + [anon_sym_POUND_LBRACK] = ACTIONS(595), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(595), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(595), + [anon_sym_STAR_EQ] = ACTIONS(595), + [anon_sym_SLASH_EQ] = ACTIONS(595), + [anon_sym_PERCENT_EQ] = ACTIONS(595), + [anon_sym_LT_LT_EQ] = ACTIONS(595), + [anon_sym_GT_GT_EQ] = ACTIONS(595), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(595), + [anon_sym_AMP_EQ] = ACTIONS(595), + [anon_sym_AMP_CARET_EQ] = ACTIONS(595), + [anon_sym_PLUS_EQ] = ACTIONS(595), + [anon_sym_DASH_EQ] = ACTIONS(595), + [anon_sym_PIPE_EQ] = ACTIONS(595), + [anon_sym_CARET_EQ] = ACTIONS(595), + [anon_sym_shared] = ACTIONS(3766), + [anon_sym_map_LBRACK] = ACTIONS(3768), + [anon_sym_chan] = ACTIONS(3770), + [anon_sym_thread] = ACTIONS(3772), + [anon_sym_atomic] = ACTIONS(3774), }, [1168] = { [sym_line_comment] = STATE(1168), [sym_block_comment] = STATE(1168), - [sym_identifier] = ACTIONS(2714), - [anon_sym_LF] = ACTIONS(2714), - [anon_sym_CR] = ACTIONS(2714), - [anon_sym_CR_LF] = ACTIONS(2714), + [sym_identifier] = ACTIONS(2837), + [anon_sym_LF] = ACTIONS(2837), + [anon_sym_CR] = ACTIONS(2837), + [anon_sym_CR_LF] = ACTIONS(2837), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_DOT] = ACTIONS(2714), - [anon_sym_as] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_COMMA] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_fn] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_STAR] = ACTIONS(2714), - [anon_sym_SLASH] = ACTIONS(2714), - [anon_sym_PERCENT] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2714), - [anon_sym_GT] = ACTIONS(2714), - [anon_sym_EQ_EQ] = ACTIONS(2714), - [anon_sym_BANG_EQ] = ACTIONS(2714), - [anon_sym_LT_EQ] = ACTIONS(2714), - [anon_sym_GT_EQ] = ACTIONS(2714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_struct] = ACTIONS(2714), - [anon_sym_mut] = ACTIONS(2714), - [anon_sym_PLUS_PLUS] = ACTIONS(2714), - [anon_sym_DASH_DASH] = ACTIONS(2714), - [anon_sym_QMARK] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(2714), - [anon_sym_go] = ACTIONS(2714), - [anon_sym_spawn] = ACTIONS(2714), - [anon_sym_json_DOTdecode] = ACTIONS(2714), - [anon_sym_LBRACK2] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2714), - [anon_sym_CARET] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_LT_DASH] = ACTIONS(2714), - [anon_sym_LT_LT] = ACTIONS(2714), - [anon_sym_GT_GT] = ACTIONS(2714), - [anon_sym_GT_GT_GT] = ACTIONS(2714), - [anon_sym_AMP_CARET] = ACTIONS(2714), - [anon_sym_AMP_AMP] = ACTIONS(2714), - [anon_sym_PIPE_PIPE] = ACTIONS(2714), - [anon_sym_or] = ACTIONS(2714), - [sym_none] = ACTIONS(2714), - [sym_true] = ACTIONS(2714), - [sym_false] = ACTIONS(2714), - [sym_nil] = ACTIONS(2714), - [anon_sym_QMARK_DOT] = ACTIONS(2714), - [anon_sym_POUND_LBRACK] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_is] = ACTIONS(2714), - [anon_sym_BANGis] = ACTIONS(2714), - [anon_sym_in] = ACTIONS(2714), - [anon_sym_BANGin] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2714), - [anon_sym_select] = ACTIONS(2714), - [anon_sym_lock] = ACTIONS(2714), - [anon_sym_rlock] = ACTIONS(2714), - [anon_sym_unsafe] = ACTIONS(2714), - [anon_sym_sql] = ACTIONS(2714), - [sym_int_literal] = ACTIONS(2714), - [sym_float_literal] = ACTIONS(2714), - [sym_rune_literal] = ACTIONS(2714), - [sym_pseudo_compile_time_identifier] = ACTIONS(2714), - [anon_sym_shared] = ACTIONS(2714), - [anon_sym_map_LBRACK] = ACTIONS(2714), - [anon_sym_chan] = ACTIONS(2714), - [anon_sym_thread] = ACTIONS(2714), - [anon_sym_atomic] = ACTIONS(2714), - [sym___double_quote] = ACTIONS(2714), - [sym___single_quote] = ACTIONS(2714), - [sym___c_double_quote] = ACTIONS(2714), - [sym___c_single_quote] = ACTIONS(2714), - [sym___r_double_quote] = ACTIONS(2714), - [sym___r_single_quote] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2837), + [anon_sym_DOT] = ACTIONS(2837), + [anon_sym_as] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_COMMA] = ACTIONS(2837), + [anon_sym_RBRACE] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2837), + [anon_sym_RPAREN] = ACTIONS(2837), + [anon_sym_PIPE] = ACTIONS(2837), + [anon_sym_fn] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2837), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2837), + [anon_sym_LT] = ACTIONS(2837), + [anon_sym_GT] = ACTIONS(2837), + [anon_sym_EQ_EQ] = ACTIONS(2837), + [anon_sym_BANG_EQ] = ACTIONS(2837), + [anon_sym_LT_EQ] = ACTIONS(2837), + [anon_sym_GT_EQ] = ACTIONS(2837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_mut] = ACTIONS(2837), + [anon_sym_PLUS_PLUS] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(2837), + [anon_sym_QMARK] = ACTIONS(2837), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_go] = ACTIONS(2837), + [anon_sym_spawn] = ACTIONS(2837), + [anon_sym_json_DOTdecode] = ACTIONS(2837), + [anon_sym_LBRACK2] = ACTIONS(2837), + [anon_sym_TILDE] = ACTIONS(2837), + [anon_sym_CARET] = ACTIONS(2837), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_LT_DASH] = ACTIONS(2837), + [anon_sym_LT_LT] = ACTIONS(2837), + [anon_sym_GT_GT] = ACTIONS(2837), + [anon_sym_GT_GT_GT] = ACTIONS(2837), + [anon_sym_AMP_CARET] = ACTIONS(2837), + [anon_sym_AMP_AMP] = ACTIONS(2837), + [anon_sym_PIPE_PIPE] = ACTIONS(2837), + [anon_sym_or] = ACTIONS(2837), + [sym_none] = ACTIONS(2837), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_nil] = ACTIONS(2837), + [anon_sym_QMARK_DOT] = ACTIONS(2837), + [anon_sym_POUND_LBRACK] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_DOLLARif] = ACTIONS(2837), + [anon_sym_is] = ACTIONS(2837), + [anon_sym_BANGis] = ACTIONS(2837), + [anon_sym_in] = ACTIONS(2837), + [anon_sym_BANGin] = ACTIONS(2837), + [anon_sym_match] = ACTIONS(2837), + [anon_sym_select] = ACTIONS(2837), + [anon_sym_lock] = ACTIONS(2837), + [anon_sym_rlock] = ACTIONS(2837), + [anon_sym_unsafe] = ACTIONS(2837), + [anon_sym_sql] = ACTIONS(2837), + [sym_int_literal] = ACTIONS(2837), + [sym_float_literal] = ACTIONS(2837), + [sym_rune_literal] = ACTIONS(2837), + [anon_sym_SQUOTE] = ACTIONS(2837), + [anon_sym_DQUOTE] = ACTIONS(2837), + [anon_sym_c_SQUOTE] = ACTIONS(2837), + [anon_sym_c_DQUOTE] = ACTIONS(2837), + [anon_sym_r_SQUOTE] = ACTIONS(2837), + [anon_sym_r_DQUOTE] = ACTIONS(2837), + [sym_pseudo_compile_time_identifier] = ACTIONS(2837), + [anon_sym_shared] = ACTIONS(2837), + [anon_sym_map_LBRACK] = ACTIONS(2837), + [anon_sym_chan] = ACTIONS(2837), + [anon_sym_thread] = ACTIONS(2837), + [anon_sym_atomic] = ACTIONS(2837), }, [1169] = { [sym_line_comment] = STATE(1169), [sym_block_comment] = STATE(1169), - [sym_identifier] = ACTIONS(2894), - [anon_sym_LF] = ACTIONS(2894), - [anon_sym_CR] = ACTIONS(2894), - [anon_sym_CR_LF] = ACTIONS(2894), + [sym_identifier] = ACTIONS(1899), + [anon_sym_LF] = ACTIONS(1899), + [anon_sym_CR] = ACTIONS(1899), + [anon_sym_CR_LF] = ACTIONS(1899), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2894), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_as] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_COMMA] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym_RPAREN] = ACTIONS(2894), - [anon_sym_PIPE] = ACTIONS(2894), - [anon_sym_fn] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_SLASH] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_GT] = ACTIONS(2894), - [anon_sym_EQ_EQ] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2894), - [anon_sym_LT_EQ] = ACTIONS(2894), - [anon_sym_GT_EQ] = ACTIONS(2894), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_struct] = ACTIONS(2894), - [anon_sym_mut] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2894), - [anon_sym_DASH_DASH] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_go] = ACTIONS(2894), - [anon_sym_spawn] = ACTIONS(2894), - [anon_sym_json_DOTdecode] = ACTIONS(2894), - [anon_sym_LBRACK2] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2894), - [anon_sym_CARET] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2894), - [anon_sym_LT_LT] = ACTIONS(2894), - [anon_sym_GT_GT] = ACTIONS(2894), - [anon_sym_GT_GT_GT] = ACTIONS(2894), - [anon_sym_AMP_CARET] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_PIPE_PIPE] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2894), - [sym_none] = ACTIONS(2894), - [sym_true] = ACTIONS(2894), - [sym_false] = ACTIONS(2894), - [sym_nil] = ACTIONS(2894), - [anon_sym_QMARK_DOT] = ACTIONS(2894), - [anon_sym_POUND_LBRACK] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_DOLLARif] = ACTIONS(2894), - [anon_sym_is] = ACTIONS(2894), - [anon_sym_BANGis] = ACTIONS(2894), - [anon_sym_in] = ACTIONS(2894), - [anon_sym_BANGin] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_select] = ACTIONS(2894), - [anon_sym_lock] = ACTIONS(2894), - [anon_sym_rlock] = ACTIONS(2894), - [anon_sym_unsafe] = ACTIONS(2894), - [anon_sym_sql] = ACTIONS(2894), - [sym_int_literal] = ACTIONS(2894), - [sym_float_literal] = ACTIONS(2894), - [sym_rune_literal] = ACTIONS(2894), - [sym_pseudo_compile_time_identifier] = ACTIONS(2894), - [anon_sym_shared] = ACTIONS(2894), - [anon_sym_map_LBRACK] = ACTIONS(2894), - [anon_sym_chan] = ACTIONS(2894), - [anon_sym_thread] = ACTIONS(2894), - [anon_sym_atomic] = ACTIONS(2894), - [sym___double_quote] = ACTIONS(2894), - [sym___single_quote] = ACTIONS(2894), - [sym___c_double_quote] = ACTIONS(2894), - [sym___c_single_quote] = ACTIONS(2894), - [sym___r_double_quote] = ACTIONS(2894), - [sym___r_single_quote] = ACTIONS(2894), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_as] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_RPAREN] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_PERCENT] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1899), + [anon_sym_GT_EQ] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_struct] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_QMARK] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_go] = ACTIONS(1899), + [anon_sym_spawn] = ACTIONS(1899), + [anon_sym_json_DOTdecode] = ACTIONS(1899), + [anon_sym_LBRACK2] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1899), + [anon_sym_LT_LT] = ACTIONS(1899), + [anon_sym_GT_GT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1899), + [anon_sym_AMP_CARET] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(1899), + [anon_sym_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_or] = ACTIONS(1899), + [sym_none] = ACTIONS(1899), + [sym_true] = ACTIONS(1899), + [sym_false] = ACTIONS(1899), + [sym_nil] = ACTIONS(1899), + [anon_sym_QMARK_DOT] = ACTIONS(1899), + [anon_sym_POUND_LBRACK] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_DOLLARif] = ACTIONS(1899), + [anon_sym_is] = ACTIONS(1899), + [anon_sym_BANGis] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_BANGin] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_select] = ACTIONS(1899), + [anon_sym_lock] = ACTIONS(1899), + [anon_sym_rlock] = ACTIONS(1899), + [anon_sym_unsafe] = ACTIONS(1899), + [anon_sym_sql] = ACTIONS(1899), + [sym_int_literal] = ACTIONS(1899), + [sym_float_literal] = ACTIONS(1899), + [sym_rune_literal] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_c_SQUOTE] = ACTIONS(1899), + [anon_sym_c_DQUOTE] = ACTIONS(1899), + [anon_sym_r_SQUOTE] = ACTIONS(1899), + [anon_sym_r_DQUOTE] = ACTIONS(1899), + [sym_pseudo_compile_time_identifier] = ACTIONS(1899), + [anon_sym_shared] = ACTIONS(1899), + [anon_sym_map_LBRACK] = ACTIONS(1899), + [anon_sym_chan] = ACTIONS(1899), + [anon_sym_thread] = ACTIONS(1899), + [anon_sym_atomic] = ACTIONS(1899), }, [1170] = { [sym_line_comment] = STATE(1170), [sym_block_comment] = STATE(1170), - [sym_identifier] = ACTIONS(2898), - [anon_sym_LF] = ACTIONS(2898), - [anon_sym_CR] = ACTIONS(2898), - [anon_sym_CR_LF] = ACTIONS(2898), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2898), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_as] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_COMMA] = ACTIONS(2898), - [anon_sym_RBRACE] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_RPAREN] = ACTIONS(2898), - [anon_sym_PIPE] = ACTIONS(2898), - [anon_sym_fn] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_STAR] = ACTIONS(2898), - [anon_sym_SLASH] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2898), - [anon_sym_GT] = ACTIONS(2898), - [anon_sym_EQ_EQ] = ACTIONS(2898), - [anon_sym_BANG_EQ] = ACTIONS(2898), - [anon_sym_LT_EQ] = ACTIONS(2898), - [anon_sym_GT_EQ] = ACTIONS(2898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_struct] = ACTIONS(2898), - [anon_sym_mut] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2898), - [anon_sym_DASH_DASH] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_go] = ACTIONS(2898), - [anon_sym_spawn] = ACTIONS(2898), - [anon_sym_json_DOTdecode] = ACTIONS(2898), - [anon_sym_LBRACK2] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2898), - [anon_sym_CARET] = ACTIONS(2898), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_LT_DASH] = ACTIONS(2898), - [anon_sym_LT_LT] = ACTIONS(2898), - [anon_sym_GT_GT] = ACTIONS(2898), - [anon_sym_GT_GT_GT] = ACTIONS(2898), - [anon_sym_AMP_CARET] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2898), - [anon_sym_or] = ACTIONS(2898), - [sym_none] = ACTIONS(2898), - [sym_true] = ACTIONS(2898), - [sym_false] = ACTIONS(2898), - [sym_nil] = ACTIONS(2898), - [anon_sym_QMARK_DOT] = ACTIONS(2898), - [anon_sym_POUND_LBRACK] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_DOLLARif] = ACTIONS(2898), - [anon_sym_is] = ACTIONS(2898), - [anon_sym_BANGis] = ACTIONS(2898), - [anon_sym_in] = ACTIONS(2898), - [anon_sym_BANGin] = ACTIONS(2898), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_select] = ACTIONS(2898), - [anon_sym_lock] = ACTIONS(2898), - [anon_sym_rlock] = ACTIONS(2898), - [anon_sym_unsafe] = ACTIONS(2898), - [anon_sym_sql] = ACTIONS(2898), - [sym_int_literal] = ACTIONS(2898), - [sym_float_literal] = ACTIONS(2898), - [sym_rune_literal] = ACTIONS(2898), - [sym_pseudo_compile_time_identifier] = ACTIONS(2898), - [anon_sym_shared] = ACTIONS(2898), - [anon_sym_map_LBRACK] = ACTIONS(2898), - [anon_sym_chan] = ACTIONS(2898), - [anon_sym_thread] = ACTIONS(2898), - [anon_sym_atomic] = ACTIONS(2898), - [sym___double_quote] = ACTIONS(2898), - [sym___single_quote] = ACTIONS(2898), - [sym___c_double_quote] = ACTIONS(2898), - [sym___c_single_quote] = ACTIONS(2898), - [sym___r_double_quote] = ACTIONS(2898), - [sym___r_single_quote] = ACTIONS(2898), + [sym_reference_expression] = STATE(4428), + [sym_type_reference_expression] = STATE(1899), + [sym_plain_type] = STATE(2044), + [sym__plain_type_without_special] = STATE(1918), + [sym_anon_struct_type] = STATE(1996), + [sym_multi_return_type] = STATE(1918), + [sym_result_type] = STATE(1918), + [sym_option_type] = STATE(1918), + [sym_qualified_type] = STATE(1899), + [sym_fixed_array_type] = STATE(1996), + [sym_array_type] = STATE(1996), + [sym_pointer_type] = STATE(1996), + [sym_wrong_pointer_type] = STATE(1996), + [sym_map_type] = STATE(1996), + [sym_channel_type] = STATE(1996), + [sym_shared_type] = STATE(1996), + [sym_thread_type] = STATE(1996), + [sym_atomic_type] = STATE(1996), + [sym_generic_type] = STATE(1996), + [sym_function_type] = STATE(1996), + [sym_identifier] = ACTIONS(3748), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_EQ] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(3754), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(3756), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(3758), + [anon_sym_BANG] = ACTIONS(3760), + [anon_sym_LBRACK2] = ACTIONS(3762), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(3764), + [anon_sym_LT_DASH] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(567), + [anon_sym_AMP_CARET] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_AMP_CARET_EQ] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(3766), + [anon_sym_map_LBRACK] = ACTIONS(3768), + [anon_sym_chan] = ACTIONS(3770), + [anon_sym_thread] = ACTIONS(3772), + [anon_sym_atomic] = ACTIONS(3774), }, [1171] = { [sym_line_comment] = STATE(1171), [sym_block_comment] = STATE(1171), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2345), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(627), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(627), - [anon_sym_AMP_CARET] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(625), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(625), - [anon_sym_POUND_LBRACK] = ACTIONS(625), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(625), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(625), - [anon_sym_STAR_EQ] = ACTIONS(625), - [anon_sym_SLASH_EQ] = ACTIONS(625), - [anon_sym_PERCENT_EQ] = ACTIONS(625), - [anon_sym_LT_LT_EQ] = ACTIONS(625), - [anon_sym_GT_GT_EQ] = ACTIONS(625), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(625), - [anon_sym_AMP_EQ] = ACTIONS(625), - [anon_sym_AMP_CARET_EQ] = ACTIONS(625), - [anon_sym_PLUS_EQ] = ACTIONS(625), - [anon_sym_DASH_EQ] = ACTIONS(625), - [anon_sym_PIPE_EQ] = ACTIONS(625), - [anon_sym_CARET_EQ] = ACTIONS(625), - [anon_sym_COLON_EQ] = ACTIONS(625), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [sym_identifier] = ACTIONS(2427), + [anon_sym_LF] = ACTIONS(2427), + [anon_sym_CR] = ACTIONS(2427), + [anon_sym_CR_LF] = ACTIONS(2427), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_DOT] = ACTIONS(2427), + [anon_sym_as] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_COMMA] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_RPAREN] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2427), + [anon_sym_fn] = ACTIONS(2427), + [anon_sym_PLUS] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2427), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_SLASH] = ACTIONS(2427), + [anon_sym_PERCENT] = ACTIONS(2427), + [anon_sym_LT] = ACTIONS(2427), + [anon_sym_GT] = ACTIONS(2427), + [anon_sym_EQ_EQ] = ACTIONS(2427), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_LT_EQ] = ACTIONS(2427), + [anon_sym_GT_EQ] = ACTIONS(2427), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2427), + [anon_sym_mut] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(2427), + [anon_sym_DASH_DASH] = ACTIONS(2427), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_go] = ACTIONS(2427), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(2427), + [anon_sym_LBRACK2] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_CARET] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2427), + [anon_sym_LT_DASH] = ACTIONS(2427), + [anon_sym_LT_LT] = ACTIONS(2427), + [anon_sym_GT_GT] = ACTIONS(2427), + [anon_sym_GT_GT_GT] = ACTIONS(2427), + [anon_sym_AMP_CARET] = ACTIONS(2427), + [anon_sym_AMP_AMP] = ACTIONS(2427), + [anon_sym_PIPE_PIPE] = ACTIONS(2427), + [anon_sym_or] = ACTIONS(2427), + [sym_none] = ACTIONS(2427), + [sym_true] = ACTIONS(2427), + [sym_false] = ACTIONS(2427), + [sym_nil] = ACTIONS(2427), + [anon_sym_QMARK_DOT] = ACTIONS(2427), + [anon_sym_POUND_LBRACK] = ACTIONS(2427), + [anon_sym_if] = ACTIONS(2427), + [anon_sym_DOLLARif] = ACTIONS(2427), + [anon_sym_is] = ACTIONS(2427), + [anon_sym_BANGis] = ACTIONS(2427), + [anon_sym_in] = ACTIONS(2427), + [anon_sym_BANGin] = ACTIONS(2427), + [anon_sym_match] = ACTIONS(2427), + [anon_sym_select] = ACTIONS(2427), + [anon_sym_lock] = ACTIONS(2427), + [anon_sym_rlock] = ACTIONS(2427), + [anon_sym_unsafe] = ACTIONS(2427), + [anon_sym_sql] = ACTIONS(2427), + [sym_int_literal] = ACTIONS(2427), + [sym_float_literal] = ACTIONS(2427), + [sym_rune_literal] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(2427), + [anon_sym_c_SQUOTE] = ACTIONS(2427), + [anon_sym_c_DQUOTE] = ACTIONS(2427), + [anon_sym_r_SQUOTE] = ACTIONS(2427), + [anon_sym_r_DQUOTE] = ACTIONS(2427), + [sym_pseudo_compile_time_identifier] = ACTIONS(2427), + [anon_sym_shared] = ACTIONS(2427), + [anon_sym_map_LBRACK] = ACTIONS(2427), + [anon_sym_chan] = ACTIONS(2427), + [anon_sym_thread] = ACTIONS(2427), + [anon_sym_atomic] = ACTIONS(2427), }, [1172] = { [sym_line_comment] = STATE(1172), [sym_block_comment] = STATE(1172), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LF] = ACTIONS(2137), - [anon_sym_CR] = ACTIONS(2137), - [anon_sym_CR_LF] = ACTIONS(2137), + [sym_identifier] = ACTIONS(2133), + [anon_sym_LF] = ACTIONS(2133), + [anon_sym_CR] = ACTIONS(2133), + [anon_sym_CR_LF] = ACTIONS(2133), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_COMMA] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_RPAREN] = ACTIONS(2137), - [anon_sym_PIPE] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_SLASH] = ACTIONS(2137), - [anon_sym_PERCENT] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_GT] = ACTIONS(2137), - [anon_sym_EQ_EQ] = ACTIONS(2137), - [anon_sym_BANG_EQ] = ACTIONS(2137), - [anon_sym_LT_EQ] = ACTIONS(2137), - [anon_sym_GT_EQ] = ACTIONS(2137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_mut] = ACTIONS(2137), - [anon_sym_PLUS_PLUS] = ACTIONS(2137), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_QMARK] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_go] = ACTIONS(2137), - [anon_sym_spawn] = ACTIONS(2137), - [anon_sym_json_DOTdecode] = ACTIONS(2137), - [anon_sym_LBRACK2] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_LT_DASH] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(2137), - [anon_sym_GT_GT] = ACTIONS(2137), - [anon_sym_GT_GT_GT] = ACTIONS(2137), - [anon_sym_AMP_CARET] = ACTIONS(2137), - [anon_sym_AMP_AMP] = ACTIONS(2137), - [anon_sym_PIPE_PIPE] = ACTIONS(2137), - [anon_sym_or] = ACTIONS(2137), - [sym_none] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_nil] = ACTIONS(2137), - [anon_sym_QMARK_DOT] = ACTIONS(2137), - [anon_sym_POUND_LBRACK] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_DOLLARif] = ACTIONS(2137), - [anon_sym_is] = ACTIONS(2137), - [anon_sym_BANGis] = ACTIONS(2137), - [anon_sym_in] = ACTIONS(2137), - [anon_sym_BANGin] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_select] = ACTIONS(2137), - [anon_sym_lock] = ACTIONS(2137), - [anon_sym_rlock] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_sql] = ACTIONS(2137), - [sym_int_literal] = ACTIONS(2137), - [sym_float_literal] = ACTIONS(2137), - [sym_rune_literal] = ACTIONS(2137), - [sym_pseudo_compile_time_identifier] = ACTIONS(2137), - [anon_sym_shared] = ACTIONS(2137), - [anon_sym_map_LBRACK] = ACTIONS(2137), - [anon_sym_chan] = ACTIONS(2137), - [anon_sym_thread] = ACTIONS(2137), - [anon_sym_atomic] = ACTIONS(2137), - [sym___double_quote] = ACTIONS(2137), - [sym___single_quote] = ACTIONS(2137), - [sym___c_double_quote] = ACTIONS(2137), - [sym___c_single_quote] = ACTIONS(2137), - [sym___r_double_quote] = ACTIONS(2137), - [sym___r_single_quote] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2133), + [anon_sym_DOT] = ACTIONS(2133), + [anon_sym_as] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_COMMA] = ACTIONS(2133), + [anon_sym_RBRACE] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_RPAREN] = ACTIONS(2133), + [anon_sym_PIPE] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2133), + [anon_sym_SLASH] = ACTIONS(2133), + [anon_sym_PERCENT] = ACTIONS(2133), + [anon_sym_LT] = ACTIONS(2133), + [anon_sym_GT] = ACTIONS(2133), + [anon_sym_EQ_EQ] = ACTIONS(2133), + [anon_sym_BANG_EQ] = ACTIONS(2133), + [anon_sym_LT_EQ] = ACTIONS(2133), + [anon_sym_GT_EQ] = ACTIONS(2133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2133), + [anon_sym_mut] = ACTIONS(2133), + [anon_sym_PLUS_PLUS] = ACTIONS(2133), + [anon_sym_DASH_DASH] = ACTIONS(2133), + [anon_sym_QMARK] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2133), + [anon_sym_go] = ACTIONS(2133), + [anon_sym_spawn] = ACTIONS(2133), + [anon_sym_json_DOTdecode] = ACTIONS(2133), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2133), + [anon_sym_CARET] = ACTIONS(2133), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(2133), + [anon_sym_LT_LT] = ACTIONS(2133), + [anon_sym_GT_GT] = ACTIONS(2133), + [anon_sym_GT_GT_GT] = ACTIONS(2133), + [anon_sym_AMP_CARET] = ACTIONS(2133), + [anon_sym_AMP_AMP] = ACTIONS(2133), + [anon_sym_PIPE_PIPE] = ACTIONS(2133), + [anon_sym_or] = ACTIONS(2133), + [sym_none] = ACTIONS(2133), + [sym_true] = ACTIONS(2133), + [sym_false] = ACTIONS(2133), + [sym_nil] = ACTIONS(2133), + [anon_sym_QMARK_DOT] = ACTIONS(2133), + [anon_sym_POUND_LBRACK] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_DOLLARif] = ACTIONS(2133), + [anon_sym_is] = ACTIONS(2133), + [anon_sym_BANGis] = ACTIONS(2133), + [anon_sym_in] = ACTIONS(2133), + [anon_sym_BANGin] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2133), + [anon_sym_rlock] = ACTIONS(2133), + [anon_sym_unsafe] = ACTIONS(2133), + [anon_sym_sql] = ACTIONS(2133), + [sym_int_literal] = ACTIONS(2133), + [sym_float_literal] = ACTIONS(2133), + [sym_rune_literal] = ACTIONS(2133), + [anon_sym_SQUOTE] = ACTIONS(2133), + [anon_sym_DQUOTE] = ACTIONS(2133), + [anon_sym_c_SQUOTE] = ACTIONS(2133), + [anon_sym_c_DQUOTE] = ACTIONS(2133), + [anon_sym_r_SQUOTE] = ACTIONS(2133), + [anon_sym_r_DQUOTE] = ACTIONS(2133), + [sym_pseudo_compile_time_identifier] = ACTIONS(2133), + [anon_sym_shared] = ACTIONS(2133), + [anon_sym_map_LBRACK] = ACTIONS(2133), + [anon_sym_chan] = ACTIONS(2133), + [anon_sym_thread] = ACTIONS(2133), + [anon_sym_atomic] = ACTIONS(2133), }, [1173] = { [sym_line_comment] = STATE(1173), [sym_block_comment] = STATE(1173), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LF] = ACTIONS(2475), - [anon_sym_CR] = ACTIONS(2475), - [anon_sym_CR_LF] = ACTIONS(2475), + [sym_identifier] = ACTIONS(2119), + [anon_sym_LF] = ACTIONS(2119), + [anon_sym_CR] = ACTIONS(2119), + [anon_sym_CR_LF] = ACTIONS(2119), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2475), - [anon_sym_DOT] = ACTIONS(2475), - [anon_sym_as] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_RBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_RPAREN] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2475), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_SLASH] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_EQ_EQ] = ACTIONS(2475), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_LT_EQ] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2475), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2475), - [anon_sym_QMARK] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_go] = ACTIONS(2475), - [anon_sym_spawn] = ACTIONS(2475), - [anon_sym_json_DOTdecode] = ACTIONS(2475), - [anon_sym_LBRACK2] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_LT_DASH] = ACTIONS(2475), - [anon_sym_LT_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2475), - [anon_sym_GT_GT_GT] = ACTIONS(2475), - [anon_sym_AMP_CARET] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_PIPE_PIPE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2475), - [sym_none] = ACTIONS(2475), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_nil] = ACTIONS(2475), - [anon_sym_QMARK_DOT] = ACTIONS(2475), - [anon_sym_POUND_LBRACK] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_DOLLARif] = ACTIONS(2475), - [anon_sym_is] = ACTIONS(2475), - [anon_sym_BANGis] = ACTIONS(2475), - [anon_sym_in] = ACTIONS(2475), - [anon_sym_BANGin] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_lock] = ACTIONS(2475), - [anon_sym_rlock] = ACTIONS(2475), - [anon_sym_unsafe] = ACTIONS(2475), - [anon_sym_sql] = ACTIONS(2475), - [sym_int_literal] = ACTIONS(2475), - [sym_float_literal] = ACTIONS(2475), - [sym_rune_literal] = ACTIONS(2475), - [sym_pseudo_compile_time_identifier] = ACTIONS(2475), - [anon_sym_shared] = ACTIONS(2475), - [anon_sym_map_LBRACK] = ACTIONS(2475), - [anon_sym_chan] = ACTIONS(2475), - [anon_sym_thread] = ACTIONS(2475), - [anon_sym_atomic] = ACTIONS(2475), - [sym___double_quote] = ACTIONS(2475), - [sym___single_quote] = ACTIONS(2475), - [sym___c_double_quote] = ACTIONS(2475), - [sym___c_single_quote] = ACTIONS(2475), - [sym___r_double_quote] = ACTIONS(2475), - [sym___r_single_quote] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_DOT] = ACTIONS(2119), + [anon_sym_as] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_COMMA] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym_RPAREN] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2119), + [anon_sym_fn] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2119), + [anon_sym_DASH] = ACTIONS(2119), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_SLASH] = ACTIONS(2119), + [anon_sym_PERCENT] = ACTIONS(2119), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_GT] = ACTIONS(2119), + [anon_sym_EQ_EQ] = ACTIONS(2119), + [anon_sym_BANG_EQ] = ACTIONS(2119), + [anon_sym_LT_EQ] = ACTIONS(2119), + [anon_sym_GT_EQ] = ACTIONS(2119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2117), + [anon_sym_struct] = ACTIONS(2119), + [anon_sym_mut] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_QMARK] = ACTIONS(2119), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_go] = ACTIONS(2119), + [anon_sym_spawn] = ACTIONS(2119), + [anon_sym_json_DOTdecode] = ACTIONS(2119), + [anon_sym_LBRACK2] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2119), + [anon_sym_LT_LT] = ACTIONS(2119), + [anon_sym_GT_GT] = ACTIONS(2119), + [anon_sym_GT_GT_GT] = ACTIONS(2119), + [anon_sym_AMP_CARET] = ACTIONS(2119), + [anon_sym_AMP_AMP] = ACTIONS(2119), + [anon_sym_PIPE_PIPE] = ACTIONS(2119), + [anon_sym_or] = ACTIONS(2119), + [sym_none] = ACTIONS(2119), + [sym_true] = ACTIONS(2119), + [sym_false] = ACTIONS(2119), + [sym_nil] = ACTIONS(2119), + [anon_sym_QMARK_DOT] = ACTIONS(2119), + [anon_sym_POUND_LBRACK] = ACTIONS(2119), + [anon_sym_if] = ACTIONS(2119), + [anon_sym_DOLLARif] = ACTIONS(2119), + [anon_sym_is] = ACTIONS(2119), + [anon_sym_BANGis] = ACTIONS(2119), + [anon_sym_in] = ACTIONS(2119), + [anon_sym_BANGin] = ACTIONS(2119), + [anon_sym_match] = ACTIONS(2119), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2119), + [anon_sym_rlock] = ACTIONS(2119), + [anon_sym_unsafe] = ACTIONS(2119), + [anon_sym_sql] = ACTIONS(2119), + [sym_int_literal] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), + [sym_rune_literal] = ACTIONS(2119), + [anon_sym_SQUOTE] = ACTIONS(2119), + [anon_sym_DQUOTE] = ACTIONS(2119), + [anon_sym_c_SQUOTE] = ACTIONS(2119), + [anon_sym_c_DQUOTE] = ACTIONS(2119), + [anon_sym_r_SQUOTE] = ACTIONS(2119), + [anon_sym_r_DQUOTE] = ACTIONS(2119), + [sym_pseudo_compile_time_identifier] = ACTIONS(2119), + [anon_sym_shared] = ACTIONS(2119), + [anon_sym_map_LBRACK] = ACTIONS(2119), + [anon_sym_chan] = ACTIONS(2119), + [anon_sym_thread] = ACTIONS(2119), + [anon_sym_atomic] = ACTIONS(2119), }, [1174] = { [sym_line_comment] = STATE(1174), [sym_block_comment] = STATE(1174), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LF] = ACTIONS(1987), - [anon_sym_CR] = ACTIONS(1987), - [anon_sym_CR_LF] = ACTIONS(1987), + [sym_identifier] = ACTIONS(2233), + [anon_sym_LF] = ACTIONS(2233), + [anon_sym_CR] = ACTIONS(2233), + [anon_sym_CR_LF] = ACTIONS(2233), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1987), - [anon_sym_DOT] = ACTIONS(1987), - [anon_sym_as] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_COMMA] = ACTIONS(1987), - [anon_sym_RBRACE] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_RPAREN] = ACTIONS(1987), - [anon_sym_PIPE] = ACTIONS(1987), - [anon_sym_fn] = ACTIONS(1987), - [anon_sym_PLUS] = ACTIONS(1987), - [anon_sym_DASH] = ACTIONS(1987), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_SLASH] = ACTIONS(1987), - [anon_sym_PERCENT] = ACTIONS(1987), - [anon_sym_LT] = ACTIONS(1987), - [anon_sym_GT] = ACTIONS(1987), - [anon_sym_EQ_EQ] = ACTIONS(1987), - [anon_sym_BANG_EQ] = ACTIONS(1987), - [anon_sym_LT_EQ] = ACTIONS(1987), - [anon_sym_GT_EQ] = ACTIONS(1987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_struct] = ACTIONS(1987), - [anon_sym_mut] = ACTIONS(1987), - [anon_sym_PLUS_PLUS] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1987), - [anon_sym_QMARK] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1987), - [anon_sym_go] = ACTIONS(1987), - [anon_sym_spawn] = ACTIONS(1987), - [anon_sym_json_DOTdecode] = ACTIONS(1987), - [anon_sym_LBRACK2] = ACTIONS(1987), - [anon_sym_TILDE] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1987), - [anon_sym_AMP] = ACTIONS(1987), - [anon_sym_LT_DASH] = ACTIONS(1987), - [anon_sym_LT_LT] = ACTIONS(1987), - [anon_sym_GT_GT] = ACTIONS(1987), - [anon_sym_GT_GT_GT] = ACTIONS(1987), - [anon_sym_AMP_CARET] = ACTIONS(1987), - [anon_sym_AMP_AMP] = ACTIONS(1987), - [anon_sym_PIPE_PIPE] = ACTIONS(1987), - [anon_sym_or] = ACTIONS(1987), - [sym_none] = ACTIONS(1987), - [sym_true] = ACTIONS(1987), - [sym_false] = ACTIONS(1987), - [sym_nil] = ACTIONS(1987), - [anon_sym_QMARK_DOT] = ACTIONS(1987), - [anon_sym_POUND_LBRACK] = ACTIONS(1987), - [anon_sym_if] = ACTIONS(1987), - [anon_sym_DOLLARif] = ACTIONS(1987), - [anon_sym_is] = ACTIONS(1987), - [anon_sym_BANGis] = ACTIONS(1987), - [anon_sym_in] = ACTIONS(1987), - [anon_sym_BANGin] = ACTIONS(1987), - [anon_sym_match] = ACTIONS(1987), - [anon_sym_select] = ACTIONS(1987), - [anon_sym_lock] = ACTIONS(1987), - [anon_sym_rlock] = ACTIONS(1987), - [anon_sym_unsafe] = ACTIONS(1987), - [anon_sym_sql] = ACTIONS(1987), - [sym_int_literal] = ACTIONS(1987), - [sym_float_literal] = ACTIONS(1987), - [sym_rune_literal] = ACTIONS(1987), - [sym_pseudo_compile_time_identifier] = ACTIONS(1987), - [anon_sym_shared] = ACTIONS(1987), - [anon_sym_map_LBRACK] = ACTIONS(1987), - [anon_sym_chan] = ACTIONS(1987), - [anon_sym_thread] = ACTIONS(1987), - [anon_sym_atomic] = ACTIONS(1987), - [sym___double_quote] = ACTIONS(1987), - [sym___single_quote] = ACTIONS(1987), - [sym___c_double_quote] = ACTIONS(1987), - [sym___c_single_quote] = ACTIONS(1987), - [sym___r_double_quote] = ACTIONS(1987), - [sym___r_single_quote] = ACTIONS(1987), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_DOT] = ACTIONS(2233), + [anon_sym_as] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_COMMA] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_RPAREN] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(2233), + [anon_sym_fn] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_STAR] = ACTIONS(2233), + [anon_sym_SLASH] = ACTIONS(2233), + [anon_sym_PERCENT] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_GT] = ACTIONS(2233), + [anon_sym_EQ_EQ] = ACTIONS(2233), + [anon_sym_BANG_EQ] = ACTIONS(2233), + [anon_sym_LT_EQ] = ACTIONS(2233), + [anon_sym_GT_EQ] = ACTIONS(2233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_struct] = ACTIONS(2233), + [anon_sym_mut] = ACTIONS(2233), + [anon_sym_PLUS_PLUS] = ACTIONS(2233), + [anon_sym_DASH_DASH] = ACTIONS(2233), + [anon_sym_QMARK] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2233), + [anon_sym_go] = ACTIONS(2233), + [anon_sym_spawn] = ACTIONS(2233), + [anon_sym_json_DOTdecode] = ACTIONS(2233), + [anon_sym_LBRACK2] = ACTIONS(2233), + [anon_sym_TILDE] = ACTIONS(2233), + [anon_sym_CARET] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2233), + [anon_sym_LT_DASH] = ACTIONS(2233), + [anon_sym_LT_LT] = ACTIONS(2233), + [anon_sym_GT_GT] = ACTIONS(2233), + [anon_sym_GT_GT_GT] = ACTIONS(2233), + [anon_sym_AMP_CARET] = ACTIONS(2233), + [anon_sym_AMP_AMP] = ACTIONS(2233), + [anon_sym_PIPE_PIPE] = ACTIONS(2233), + [anon_sym_or] = ACTIONS(2233), + [sym_none] = ACTIONS(2233), + [sym_true] = ACTIONS(2233), + [sym_false] = ACTIONS(2233), + [sym_nil] = ACTIONS(2233), + [anon_sym_QMARK_DOT] = ACTIONS(2233), + [anon_sym_POUND_LBRACK] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_DOLLARif] = ACTIONS(2233), + [anon_sym_is] = ACTIONS(2233), + [anon_sym_BANGis] = ACTIONS(2233), + [anon_sym_in] = ACTIONS(2233), + [anon_sym_BANGin] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_select] = ACTIONS(2233), + [anon_sym_lock] = ACTIONS(2233), + [anon_sym_rlock] = ACTIONS(2233), + [anon_sym_unsafe] = ACTIONS(2233), + [anon_sym_sql] = ACTIONS(2233), + [sym_int_literal] = ACTIONS(2233), + [sym_float_literal] = ACTIONS(2233), + [sym_rune_literal] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_DQUOTE] = ACTIONS(2233), + [anon_sym_c_SQUOTE] = ACTIONS(2233), + [anon_sym_c_DQUOTE] = ACTIONS(2233), + [anon_sym_r_SQUOTE] = ACTIONS(2233), + [anon_sym_r_DQUOTE] = ACTIONS(2233), + [sym_pseudo_compile_time_identifier] = ACTIONS(2233), + [anon_sym_shared] = ACTIONS(2233), + [anon_sym_map_LBRACK] = ACTIONS(2233), + [anon_sym_chan] = ACTIONS(2233), + [anon_sym_thread] = ACTIONS(2233), + [anon_sym_atomic] = ACTIONS(2233), }, [1175] = { [sym_line_comment] = STATE(1175), [sym_block_comment] = STATE(1175), - [sym_identifier] = ACTIONS(2125), - [anon_sym_LF] = ACTIONS(2125), - [anon_sym_CR] = ACTIONS(2125), - [anon_sym_CR_LF] = ACTIONS(2125), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LF] = ACTIONS(2241), + [anon_sym_CR] = ACTIONS(2241), + [anon_sym_CR_LF] = ACTIONS(2241), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_DOT] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_COMMA] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_RPAREN] = ACTIONS(2125), - [anon_sym_PIPE] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2125), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_PERCENT] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_GT] = ACTIONS(2125), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2125), - [anon_sym_GT_EQ] = ACTIONS(2125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2123), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_mut] = ACTIONS(2125), - [anon_sym_PLUS_PLUS] = ACTIONS(2125), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [anon_sym_QMARK] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_go] = ACTIONS(2125), - [anon_sym_spawn] = ACTIONS(2125), - [anon_sym_json_DOTdecode] = ACTIONS(2125), - [anon_sym_LBRACK2] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_CARET] = ACTIONS(2125), - [anon_sym_AMP] = ACTIONS(2125), - [anon_sym_LT_DASH] = ACTIONS(2125), - [anon_sym_LT_LT] = ACTIONS(2125), - [anon_sym_GT_GT] = ACTIONS(2125), - [anon_sym_GT_GT_GT] = ACTIONS(2125), - [anon_sym_AMP_CARET] = ACTIONS(2125), - [anon_sym_AMP_AMP] = ACTIONS(2125), - [anon_sym_PIPE_PIPE] = ACTIONS(2125), - [anon_sym_or] = ACTIONS(2125), - [sym_none] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_nil] = ACTIONS(2125), - [anon_sym_QMARK_DOT] = ACTIONS(2125), - [anon_sym_POUND_LBRACK] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_DOLLARif] = ACTIONS(2125), - [anon_sym_is] = ACTIONS(2125), - [anon_sym_BANGis] = ACTIONS(2125), - [anon_sym_in] = ACTIONS(2125), - [anon_sym_BANGin] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_select] = ACTIONS(2125), - [anon_sym_lock] = ACTIONS(2125), - [anon_sym_rlock] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(2125), - [sym_int_literal] = ACTIONS(2125), - [sym_float_literal] = ACTIONS(2125), - [sym_rune_literal] = ACTIONS(2125), - [sym_pseudo_compile_time_identifier] = ACTIONS(2125), - [anon_sym_shared] = ACTIONS(2125), - [anon_sym_map_LBRACK] = ACTIONS(2125), - [anon_sym_chan] = ACTIONS(2125), - [anon_sym_thread] = ACTIONS(2125), - [anon_sym_atomic] = ACTIONS(2125), - [sym___double_quote] = ACTIONS(2125), - [sym___single_quote] = ACTIONS(2125), - [sym___c_double_quote] = ACTIONS(2125), - [sym___c_single_quote] = ACTIONS(2125), - [sym___r_double_quote] = ACTIONS(2125), - [sym___r_single_quote] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2241), + [anon_sym_DOT] = ACTIONS(2241), + [anon_sym_as] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [anon_sym_COMMA] = ACTIONS(2241), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_RPAREN] = ACTIONS(2241), + [anon_sym_PIPE] = ACTIONS(2241), + [anon_sym_fn] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_SLASH] = ACTIONS(2241), + [anon_sym_PERCENT] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_GT] = ACTIONS(2241), + [anon_sym_EQ_EQ] = ACTIONS(2241), + [anon_sym_BANG_EQ] = ACTIONS(2241), + [anon_sym_LT_EQ] = ACTIONS(2241), + [anon_sym_GT_EQ] = ACTIONS(2241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_struct] = ACTIONS(2241), + [anon_sym_mut] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_QMARK] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_go] = ACTIONS(2241), + [anon_sym_spawn] = ACTIONS(2241), + [anon_sym_json_DOTdecode] = ACTIONS(2241), + [anon_sym_LBRACK2] = ACTIONS(2241), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2241), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_LT_DASH] = ACTIONS(2241), + [anon_sym_LT_LT] = ACTIONS(2241), + [anon_sym_GT_GT] = ACTIONS(2241), + [anon_sym_GT_GT_GT] = ACTIONS(2241), + [anon_sym_AMP_CARET] = ACTIONS(2241), + [anon_sym_AMP_AMP] = ACTIONS(2241), + [anon_sym_PIPE_PIPE] = ACTIONS(2241), + [anon_sym_or] = ACTIONS(2241), + [sym_none] = ACTIONS(2241), + [sym_true] = ACTIONS(2241), + [sym_false] = ACTIONS(2241), + [sym_nil] = ACTIONS(2241), + [anon_sym_QMARK_DOT] = ACTIONS(2241), + [anon_sym_POUND_LBRACK] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_DOLLARif] = ACTIONS(2241), + [anon_sym_is] = ACTIONS(2241), + [anon_sym_BANGis] = ACTIONS(2241), + [anon_sym_in] = ACTIONS(2241), + [anon_sym_BANGin] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_select] = ACTIONS(2241), + [anon_sym_lock] = ACTIONS(2241), + [anon_sym_rlock] = ACTIONS(2241), + [anon_sym_unsafe] = ACTIONS(2241), + [anon_sym_sql] = ACTIONS(2241), + [sym_int_literal] = ACTIONS(2241), + [sym_float_literal] = ACTIONS(2241), + [sym_rune_literal] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(2241), + [anon_sym_c_SQUOTE] = ACTIONS(2241), + [anon_sym_c_DQUOTE] = ACTIONS(2241), + [anon_sym_r_SQUOTE] = ACTIONS(2241), + [anon_sym_r_DQUOTE] = ACTIONS(2241), + [sym_pseudo_compile_time_identifier] = ACTIONS(2241), + [anon_sym_shared] = ACTIONS(2241), + [anon_sym_map_LBRACK] = ACTIONS(2241), + [anon_sym_chan] = ACTIONS(2241), + [anon_sym_thread] = ACTIONS(2241), + [anon_sym_atomic] = ACTIONS(2241), }, [1176] = { [sym_line_comment] = STATE(1176), [sym_block_comment] = STATE(1176), - [sym_identifier] = ACTIONS(2191), - [anon_sym_LF] = ACTIONS(2191), - [anon_sym_CR] = ACTIONS(2191), - [anon_sym_CR_LF] = ACTIONS(2191), + [sym_identifier] = ACTIONS(2257), + [anon_sym_LF] = ACTIONS(2257), + [anon_sym_CR] = ACTIONS(2257), + [anon_sym_CR_LF] = ACTIONS(2257), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2191), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_as] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_COMMA] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_RPAREN] = ACTIONS(2191), - [anon_sym_PIPE] = ACTIONS(2191), - [anon_sym_fn] = ACTIONS(2191), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_SLASH] = ACTIONS(2191), - [anon_sym_PERCENT] = ACTIONS(2191), - [anon_sym_LT] = ACTIONS(2191), - [anon_sym_GT] = ACTIONS(2191), - [anon_sym_EQ_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ] = ACTIONS(2191), - [anon_sym_LT_EQ] = ACTIONS(2191), - [anon_sym_GT_EQ] = ACTIONS(2191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_struct] = ACTIONS(2191), - [anon_sym_mut] = ACTIONS(2191), - [anon_sym_PLUS_PLUS] = ACTIONS(2191), - [anon_sym_DASH_DASH] = ACTIONS(2191), - [anon_sym_QMARK] = ACTIONS(2191), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_go] = ACTIONS(2191), - [anon_sym_spawn] = ACTIONS(2191), - [anon_sym_json_DOTdecode] = ACTIONS(2191), - [anon_sym_LBRACK2] = ACTIONS(2191), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(2191), - [anon_sym_LT_LT] = ACTIONS(2191), - [anon_sym_GT_GT] = ACTIONS(2191), - [anon_sym_GT_GT_GT] = ACTIONS(2191), - [anon_sym_AMP_CARET] = ACTIONS(2191), - [anon_sym_AMP_AMP] = ACTIONS(2191), - [anon_sym_PIPE_PIPE] = ACTIONS(2191), - [anon_sym_or] = ACTIONS(2191), - [sym_none] = ACTIONS(2191), - [sym_true] = ACTIONS(2191), - [sym_false] = ACTIONS(2191), - [sym_nil] = ACTIONS(2191), - [anon_sym_QMARK_DOT] = ACTIONS(2191), - [anon_sym_POUND_LBRACK] = ACTIONS(2191), - [anon_sym_if] = ACTIONS(2191), - [anon_sym_DOLLARif] = ACTIONS(2191), - [anon_sym_is] = ACTIONS(2191), - [anon_sym_BANGis] = ACTIONS(2191), - [anon_sym_in] = ACTIONS(2191), - [anon_sym_BANGin] = ACTIONS(2191), - [anon_sym_match] = ACTIONS(2191), - [anon_sym_select] = ACTIONS(2191), - [anon_sym_lock] = ACTIONS(2191), - [anon_sym_rlock] = ACTIONS(2191), - [anon_sym_unsafe] = ACTIONS(2191), - [anon_sym_sql] = ACTIONS(2191), - [sym_int_literal] = ACTIONS(2191), - [sym_float_literal] = ACTIONS(2191), - [sym_rune_literal] = ACTIONS(2191), - [sym_pseudo_compile_time_identifier] = ACTIONS(2191), - [anon_sym_shared] = ACTIONS(2191), - [anon_sym_map_LBRACK] = ACTIONS(2191), - [anon_sym_chan] = ACTIONS(2191), - [anon_sym_thread] = ACTIONS(2191), - [anon_sym_atomic] = ACTIONS(2191), - [sym___double_quote] = ACTIONS(2191), - [sym___single_quote] = ACTIONS(2191), - [sym___c_double_quote] = ACTIONS(2191), - [sym___c_single_quote] = ACTIONS(2191), - [sym___r_double_quote] = ACTIONS(2191), - [sym___r_single_quote] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2257), + [anon_sym_DOT] = ACTIONS(2257), + [anon_sym_as] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_COMMA] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_RPAREN] = ACTIONS(2257), + [anon_sym_PIPE] = ACTIONS(2257), + [anon_sym_fn] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_SLASH] = ACTIONS(2257), + [anon_sym_PERCENT] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_GT] = ACTIONS(2257), + [anon_sym_EQ_EQ] = ACTIONS(2257), + [anon_sym_BANG_EQ] = ACTIONS(2257), + [anon_sym_LT_EQ] = ACTIONS(2257), + [anon_sym_GT_EQ] = ACTIONS(2257), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2257), + [anon_sym_mut] = ACTIONS(2257), + [anon_sym_PLUS_PLUS] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_QMARK] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_go] = ACTIONS(2257), + [anon_sym_spawn] = ACTIONS(2257), + [anon_sym_json_DOTdecode] = ACTIONS(2257), + [anon_sym_LBRACK2] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_LT_DASH] = ACTIONS(2257), + [anon_sym_LT_LT] = ACTIONS(2257), + [anon_sym_GT_GT] = ACTIONS(2257), + [anon_sym_GT_GT_GT] = ACTIONS(2257), + [anon_sym_AMP_CARET] = ACTIONS(2257), + [anon_sym_AMP_AMP] = ACTIONS(2257), + [anon_sym_PIPE_PIPE] = ACTIONS(2257), + [anon_sym_or] = ACTIONS(2257), + [sym_none] = ACTIONS(2257), + [sym_true] = ACTIONS(2257), + [sym_false] = ACTIONS(2257), + [sym_nil] = ACTIONS(2257), + [anon_sym_QMARK_DOT] = ACTIONS(2257), + [anon_sym_POUND_LBRACK] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_DOLLARif] = ACTIONS(2257), + [anon_sym_is] = ACTIONS(2257), + [anon_sym_BANGis] = ACTIONS(2257), + [anon_sym_in] = ACTIONS(2257), + [anon_sym_BANGin] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_select] = ACTIONS(2257), + [anon_sym_lock] = ACTIONS(2257), + [anon_sym_rlock] = ACTIONS(2257), + [anon_sym_unsafe] = ACTIONS(2257), + [anon_sym_sql] = ACTIONS(2257), + [sym_int_literal] = ACTIONS(2257), + [sym_float_literal] = ACTIONS(2257), + [sym_rune_literal] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2257), + [anon_sym_c_SQUOTE] = ACTIONS(2257), + [anon_sym_c_DQUOTE] = ACTIONS(2257), + [anon_sym_r_SQUOTE] = ACTIONS(2257), + [anon_sym_r_DQUOTE] = ACTIONS(2257), + [sym_pseudo_compile_time_identifier] = ACTIONS(2257), + [anon_sym_shared] = ACTIONS(2257), + [anon_sym_map_LBRACK] = ACTIONS(2257), + [anon_sym_chan] = ACTIONS(2257), + [anon_sym_thread] = ACTIONS(2257), + [anon_sym_atomic] = ACTIONS(2257), }, [1177] = { [sym_line_comment] = STATE(1177), [sym_block_comment] = STATE(1177), - [sym_identifier] = ACTIONS(2688), - [anon_sym_LF] = ACTIONS(2688), - [anon_sym_CR] = ACTIONS(2688), - [anon_sym_CR_LF] = ACTIONS(2688), + [sym_identifier] = ACTIONS(2189), + [anon_sym_LF] = ACTIONS(2189), + [anon_sym_CR] = ACTIONS(2189), + [anon_sym_CR_LF] = ACTIONS(2189), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_DOT] = ACTIONS(2688), - [anon_sym_as] = ACTIONS(2688), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_COMMA] = ACTIONS(2688), - [anon_sym_RBRACE] = ACTIONS(2688), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_fn] = ACTIONS(2688), - [anon_sym_PLUS] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2688), - [anon_sym_STAR] = ACTIONS(2688), - [anon_sym_SLASH] = ACTIONS(2688), - [anon_sym_PERCENT] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2688), - [anon_sym_GT] = ACTIONS(2688), - [anon_sym_EQ_EQ] = ACTIONS(2688), - [anon_sym_BANG_EQ] = ACTIONS(2688), - [anon_sym_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_EQ] = ACTIONS(2688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_struct] = ACTIONS(2688), - [anon_sym_mut] = ACTIONS(2688), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_QMARK] = ACTIONS(2688), - [anon_sym_BANG] = ACTIONS(2688), - [anon_sym_go] = ACTIONS(2688), - [anon_sym_spawn] = ACTIONS(2688), - [anon_sym_json_DOTdecode] = ACTIONS(2688), - [anon_sym_LBRACK2] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2688), - [anon_sym_CARET] = ACTIONS(2688), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_LT_DASH] = ACTIONS(2688), - [anon_sym_LT_LT] = ACTIONS(2688), - [anon_sym_GT_GT] = ACTIONS(2688), - [anon_sym_GT_GT_GT] = ACTIONS(2688), - [anon_sym_AMP_CARET] = ACTIONS(2688), - [anon_sym_AMP_AMP] = ACTIONS(2688), - [anon_sym_PIPE_PIPE] = ACTIONS(2688), - [anon_sym_or] = ACTIONS(2688), - [sym_none] = ACTIONS(2688), - [sym_true] = ACTIONS(2688), - [sym_false] = ACTIONS(2688), - [sym_nil] = ACTIONS(2688), - [anon_sym_QMARK_DOT] = ACTIONS(2688), - [anon_sym_POUND_LBRACK] = ACTIONS(2688), - [anon_sym_if] = ACTIONS(2688), - [anon_sym_DOLLARif] = ACTIONS(2688), - [anon_sym_is] = ACTIONS(2688), - [anon_sym_BANGis] = ACTIONS(2688), - [anon_sym_in] = ACTIONS(2688), - [anon_sym_BANGin] = ACTIONS(2688), - [anon_sym_match] = ACTIONS(2688), - [anon_sym_select] = ACTIONS(2688), - [anon_sym_lock] = ACTIONS(2688), - [anon_sym_rlock] = ACTIONS(2688), - [anon_sym_unsafe] = ACTIONS(2688), - [anon_sym_sql] = ACTIONS(2688), - [sym_int_literal] = ACTIONS(2688), - [sym_float_literal] = ACTIONS(2688), - [sym_rune_literal] = ACTIONS(2688), - [sym_pseudo_compile_time_identifier] = ACTIONS(2688), - [anon_sym_shared] = ACTIONS(2688), - [anon_sym_map_LBRACK] = ACTIONS(2688), - [anon_sym_chan] = ACTIONS(2688), - [anon_sym_thread] = ACTIONS(2688), - [anon_sym_atomic] = ACTIONS(2688), - [sym___double_quote] = ACTIONS(2688), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2688), - [sym___c_single_quote] = ACTIONS(2688), - [sym___r_double_quote] = ACTIONS(2688), - [sym___r_single_quote] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_DOT] = ACTIONS(2189), + [anon_sym_as] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_COMMA] = ACTIONS(2189), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_RPAREN] = ACTIONS(2189), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_fn] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_PERCENT] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_GT] = ACTIONS(2189), + [anon_sym_EQ_EQ] = ACTIONS(2189), + [anon_sym_BANG_EQ] = ACTIONS(2189), + [anon_sym_LT_EQ] = ACTIONS(2189), + [anon_sym_GT_EQ] = ACTIONS(2189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_struct] = ACTIONS(2189), + [anon_sym_mut] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_QMARK] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_go] = ACTIONS(2189), + [anon_sym_spawn] = ACTIONS(2189), + [anon_sym_json_DOTdecode] = ACTIONS(2189), + [anon_sym_LBRACK2] = ACTIONS(2189), + [anon_sym_TILDE] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2189), + [anon_sym_AMP] = ACTIONS(2189), + [anon_sym_LT_DASH] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(2189), + [anon_sym_GT_GT] = ACTIONS(2189), + [anon_sym_GT_GT_GT] = ACTIONS(2189), + [anon_sym_AMP_CARET] = ACTIONS(2189), + [anon_sym_AMP_AMP] = ACTIONS(2189), + [anon_sym_PIPE_PIPE] = ACTIONS(2189), + [anon_sym_or] = ACTIONS(2189), + [sym_none] = ACTIONS(2189), + [sym_true] = ACTIONS(2189), + [sym_false] = ACTIONS(2189), + [sym_nil] = ACTIONS(2189), + [anon_sym_QMARK_DOT] = ACTIONS(2189), + [anon_sym_POUND_LBRACK] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_DOLLARif] = ACTIONS(2189), + [anon_sym_is] = ACTIONS(2189), + [anon_sym_BANGis] = ACTIONS(2189), + [anon_sym_in] = ACTIONS(2189), + [anon_sym_BANGin] = ACTIONS(2189), + [anon_sym_match] = ACTIONS(2189), + [anon_sym_select] = ACTIONS(2189), + [anon_sym_lock] = ACTIONS(2189), + [anon_sym_rlock] = ACTIONS(2189), + [anon_sym_unsafe] = ACTIONS(2189), + [anon_sym_sql] = ACTIONS(2189), + [sym_int_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_rune_literal] = ACTIONS(2189), + [anon_sym_SQUOTE] = ACTIONS(2189), + [anon_sym_DQUOTE] = ACTIONS(2189), + [anon_sym_c_SQUOTE] = ACTIONS(2189), + [anon_sym_c_DQUOTE] = ACTIONS(2189), + [anon_sym_r_SQUOTE] = ACTIONS(2189), + [anon_sym_r_DQUOTE] = ACTIONS(2189), + [sym_pseudo_compile_time_identifier] = ACTIONS(2189), + [anon_sym_shared] = ACTIONS(2189), + [anon_sym_map_LBRACK] = ACTIONS(2189), + [anon_sym_chan] = ACTIONS(2189), + [anon_sym_thread] = ACTIONS(2189), + [anon_sym_atomic] = ACTIONS(2189), }, [1178] = { [sym_line_comment] = STATE(1178), [sym_block_comment] = STATE(1178), - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), + [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(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_RBRACE] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [sym_pseudo_compile_time_identifier] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_DOT] = ACTIONS(2439), + [anon_sym_as] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_COMMA] = ACTIONS(2439), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_RPAREN] = ACTIONS(2439), + [anon_sym_PIPE] = ACTIONS(2439), + [anon_sym_fn] = ACTIONS(2439), + [anon_sym_PLUS] = ACTIONS(2439), + [anon_sym_DASH] = ACTIONS(2439), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_SLASH] = ACTIONS(2439), + [anon_sym_PERCENT] = ACTIONS(2439), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_GT] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2439), + [anon_sym_BANG_EQ] = ACTIONS(2439), + [anon_sym_LT_EQ] = ACTIONS(2439), + [anon_sym_GT_EQ] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2439), + [anon_sym_LBRACK] = ACTIONS(2437), + [anon_sym_struct] = ACTIONS(2439), + [anon_sym_mut] = ACTIONS(2439), + [anon_sym_PLUS_PLUS] = ACTIONS(2439), + [anon_sym_DASH_DASH] = ACTIONS(2439), + [anon_sym_QMARK] = ACTIONS(2439), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2439), + [anon_sym_json_DOTdecode] = ACTIONS(2439), + [anon_sym_LBRACK2] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2439), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2439), + [anon_sym_LT_DASH] = ACTIONS(2439), + [anon_sym_LT_LT] = ACTIONS(2439), + [anon_sym_GT_GT] = ACTIONS(2439), + [anon_sym_GT_GT_GT] = ACTIONS(2439), + [anon_sym_AMP_CARET] = ACTIONS(2439), + [anon_sym_AMP_AMP] = ACTIONS(2439), + [anon_sym_PIPE_PIPE] = ACTIONS(2439), + [anon_sym_or] = ACTIONS(2439), + [sym_none] = ACTIONS(2439), + [sym_true] = ACTIONS(2439), + [sym_false] = ACTIONS(2439), + [sym_nil] = ACTIONS(2439), + [anon_sym_QMARK_DOT] = ACTIONS(2439), + [anon_sym_POUND_LBRACK] = ACTIONS(2439), + [anon_sym_if] = ACTIONS(2439), + [anon_sym_DOLLARif] = ACTIONS(2439), + [anon_sym_is] = ACTIONS(2439), + [anon_sym_BANGis] = ACTIONS(2439), + [anon_sym_in] = ACTIONS(2439), + [anon_sym_BANGin] = ACTIONS(2439), + [anon_sym_match] = ACTIONS(2439), + [anon_sym_select] = ACTIONS(2439), + [anon_sym_lock] = ACTIONS(2439), + [anon_sym_rlock] = ACTIONS(2439), + [anon_sym_unsafe] = ACTIONS(2439), + [anon_sym_sql] = ACTIONS(2439), + [sym_int_literal] = ACTIONS(2439), + [sym_float_literal] = ACTIONS(2439), + [sym_rune_literal] = ACTIONS(2439), + [anon_sym_SQUOTE] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(2439), + [anon_sym_c_SQUOTE] = ACTIONS(2439), + [anon_sym_c_DQUOTE] = ACTIONS(2439), + [anon_sym_r_SQUOTE] = ACTIONS(2439), + [anon_sym_r_DQUOTE] = ACTIONS(2439), + [sym_pseudo_compile_time_identifier] = ACTIONS(2439), + [anon_sym_shared] = ACTIONS(2439), + [anon_sym_map_LBRACK] = ACTIONS(2439), + [anon_sym_chan] = ACTIONS(2439), + [anon_sym_thread] = ACTIONS(2439), + [anon_sym_atomic] = ACTIONS(2439), }, [1179] = { [sym_line_comment] = STATE(1179), [sym_block_comment] = STATE(1179), - [sym_identifier] = ACTIONS(2724), - [anon_sym_LF] = ACTIONS(2724), - [anon_sym_CR] = ACTIONS(2724), - [anon_sym_CR_LF] = ACTIONS(2724), + [sym_identifier] = ACTIONS(2891), + [anon_sym_LF] = ACTIONS(2891), + [anon_sym_CR] = ACTIONS(2891), + [anon_sym_CR_LF] = ACTIONS(2891), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_DOT] = ACTIONS(2724), - [anon_sym_as] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_COMMA] = ACTIONS(2724), - [anon_sym_RBRACE] = ACTIONS(2724), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_fn] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_STAR] = ACTIONS(2724), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_PERCENT] = ACTIONS(2724), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_GT] = ACTIONS(2724), - [anon_sym_EQ_EQ] = ACTIONS(2724), - [anon_sym_BANG_EQ] = ACTIONS(2724), - [anon_sym_LT_EQ] = ACTIONS(2724), - [anon_sym_GT_EQ] = ACTIONS(2724), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2724), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_struct] = ACTIONS(2724), - [anon_sym_mut] = ACTIONS(2724), - [anon_sym_PLUS_PLUS] = ACTIONS(2724), - [anon_sym_DASH_DASH] = ACTIONS(2724), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_BANG] = ACTIONS(2724), - [anon_sym_go] = ACTIONS(2724), - [anon_sym_spawn] = ACTIONS(2724), - [anon_sym_json_DOTdecode] = ACTIONS(2724), - [anon_sym_LBRACK2] = ACTIONS(2724), - [anon_sym_TILDE] = ACTIONS(2724), - [anon_sym_CARET] = ACTIONS(2724), - [anon_sym_AMP] = ACTIONS(2724), - [anon_sym_LT_DASH] = ACTIONS(2724), - [anon_sym_LT_LT] = ACTIONS(2724), - [anon_sym_GT_GT] = ACTIONS(2724), - [anon_sym_GT_GT_GT] = ACTIONS(2724), - [anon_sym_AMP_CARET] = ACTIONS(2724), - [anon_sym_AMP_AMP] = ACTIONS(2724), - [anon_sym_PIPE_PIPE] = ACTIONS(2724), - [anon_sym_or] = ACTIONS(2724), - [sym_none] = ACTIONS(2724), - [sym_true] = ACTIONS(2724), - [sym_false] = ACTIONS(2724), - [sym_nil] = ACTIONS(2724), - [anon_sym_QMARK_DOT] = ACTIONS(2724), - [anon_sym_POUND_LBRACK] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_DOLLARif] = ACTIONS(2724), - [anon_sym_is] = ACTIONS(2724), - [anon_sym_BANGis] = ACTIONS(2724), - [anon_sym_in] = ACTIONS(2724), - [anon_sym_BANGin] = ACTIONS(2724), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2724), - [anon_sym_lock] = ACTIONS(2724), - [anon_sym_rlock] = ACTIONS(2724), - [anon_sym_unsafe] = ACTIONS(2724), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(2724), - [sym_float_literal] = ACTIONS(2724), - [sym_rune_literal] = ACTIONS(2724), - [sym_pseudo_compile_time_identifier] = ACTIONS(2724), - [anon_sym_shared] = ACTIONS(2724), - [anon_sym_map_LBRACK] = ACTIONS(2724), - [anon_sym_chan] = ACTIONS(2724), - [anon_sym_thread] = ACTIONS(2724), - [anon_sym_atomic] = ACTIONS(2724), - [sym___double_quote] = ACTIONS(2724), - [sym___single_quote] = ACTIONS(2724), - [sym___c_double_quote] = ACTIONS(2724), - [sym___c_single_quote] = ACTIONS(2724), - [sym___r_double_quote] = ACTIONS(2724), - [sym___r_single_quote] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2891), + [anon_sym_DOT] = ACTIONS(2891), + [anon_sym_as] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2891), + [anon_sym_COMMA] = ACTIONS(2891), + [anon_sym_RBRACE] = ACTIONS(2891), + [anon_sym_LPAREN] = ACTIONS(2891), + [anon_sym_RPAREN] = ACTIONS(2891), + [anon_sym_PIPE] = ACTIONS(2891), + [anon_sym_fn] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2891), + [anon_sym_SLASH] = ACTIONS(2891), + [anon_sym_PERCENT] = ACTIONS(2891), + [anon_sym_LT] = ACTIONS(2891), + [anon_sym_GT] = ACTIONS(2891), + [anon_sym_EQ_EQ] = ACTIONS(2891), + [anon_sym_BANG_EQ] = ACTIONS(2891), + [anon_sym_LT_EQ] = ACTIONS(2891), + [anon_sym_GT_EQ] = ACTIONS(2891), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2889), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_mut] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_QMARK] = ACTIONS(2891), + [anon_sym_BANG] = ACTIONS(2891), + [anon_sym_go] = ACTIONS(2891), + [anon_sym_spawn] = ACTIONS(2891), + [anon_sym_json_DOTdecode] = ACTIONS(2891), + [anon_sym_LBRACK2] = ACTIONS(2891), + [anon_sym_TILDE] = ACTIONS(2891), + [anon_sym_CARET] = ACTIONS(2891), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2891), + [anon_sym_LT_LT] = ACTIONS(2891), + [anon_sym_GT_GT] = ACTIONS(2891), + [anon_sym_GT_GT_GT] = ACTIONS(2891), + [anon_sym_AMP_CARET] = ACTIONS(2891), + [anon_sym_AMP_AMP] = ACTIONS(2891), + [anon_sym_PIPE_PIPE] = ACTIONS(2891), + [anon_sym_or] = ACTIONS(2891), + [sym_none] = ACTIONS(2891), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [sym_nil] = ACTIONS(2891), + [anon_sym_QMARK_DOT] = ACTIONS(2891), + [anon_sym_POUND_LBRACK] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_DOLLARif] = ACTIONS(2891), + [anon_sym_is] = ACTIONS(2891), + [anon_sym_BANGis] = ACTIONS(2891), + [anon_sym_in] = ACTIONS(2891), + [anon_sym_BANGin] = ACTIONS(2891), + [anon_sym_match] = ACTIONS(2891), + [anon_sym_select] = ACTIONS(2891), + [anon_sym_lock] = ACTIONS(2891), + [anon_sym_rlock] = ACTIONS(2891), + [anon_sym_unsafe] = ACTIONS(2891), + [anon_sym_sql] = ACTIONS(2891), + [sym_int_literal] = ACTIONS(2891), + [sym_float_literal] = ACTIONS(2891), + [sym_rune_literal] = ACTIONS(2891), + [anon_sym_SQUOTE] = ACTIONS(2891), + [anon_sym_DQUOTE] = ACTIONS(2891), + [anon_sym_c_SQUOTE] = ACTIONS(2891), + [anon_sym_c_DQUOTE] = ACTIONS(2891), + [anon_sym_r_SQUOTE] = ACTIONS(2891), + [anon_sym_r_DQUOTE] = ACTIONS(2891), + [sym_pseudo_compile_time_identifier] = ACTIONS(2891), + [anon_sym_shared] = ACTIONS(2891), + [anon_sym_map_LBRACK] = ACTIONS(2891), + [anon_sym_chan] = ACTIONS(2891), + [anon_sym_thread] = ACTIONS(2891), + [anon_sym_atomic] = ACTIONS(2891), }, [1180] = { [sym_line_comment] = STATE(1180), [sym_block_comment] = STATE(1180), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LF] = ACTIONS(3068), - [anon_sym_CR] = ACTIONS(3068), - [anon_sym_CR_LF] = ACTIONS(3068), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LF] = ACTIONS(2185), + [anon_sym_CR] = ACTIONS(2185), + [anon_sym_CR_LF] = ACTIONS(2185), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_as] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_COMMA] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_RPAREN] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_SLASH] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_GT] = ACTIONS(3068), - [anon_sym_EQ_EQ] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3068), - [anon_sym_LT_EQ] = ACTIONS(3068), - [anon_sym_GT_EQ] = ACTIONS(3068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(3068), - [anon_sym_mut] = ACTIONS(3068), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3068), - [anon_sym_spawn] = ACTIONS(3068), - [anon_sym_json_DOTdecode] = ACTIONS(3068), - [anon_sym_LBRACK2] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_CARET] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_LT_DASH] = ACTIONS(3068), - [anon_sym_LT_LT] = ACTIONS(3068), - [anon_sym_GT_GT] = ACTIONS(3068), - [anon_sym_GT_GT_GT] = ACTIONS(3068), - [anon_sym_AMP_CARET] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3068), - [sym_none] = ACTIONS(3068), - [sym_true] = ACTIONS(3068), - [sym_false] = ACTIONS(3068), - [sym_nil] = ACTIONS(3068), - [anon_sym_QMARK_DOT] = ACTIONS(3068), - [anon_sym_POUND_LBRACK] = ACTIONS(3068), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_DOLLARif] = ACTIONS(3068), - [anon_sym_is] = ACTIONS(3068), - [anon_sym_BANGis] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_BANGin] = ACTIONS(3068), - [anon_sym_match] = ACTIONS(3068), - [anon_sym_select] = ACTIONS(3068), - [anon_sym_lock] = ACTIONS(3068), - [anon_sym_rlock] = ACTIONS(3068), - [anon_sym_unsafe] = ACTIONS(3068), - [anon_sym_sql] = ACTIONS(3068), - [sym_int_literal] = ACTIONS(3068), - [sym_float_literal] = ACTIONS(3068), - [sym_rune_literal] = ACTIONS(3068), - [sym_pseudo_compile_time_identifier] = ACTIONS(3068), - [anon_sym_shared] = ACTIONS(3068), - [anon_sym_map_LBRACK] = ACTIONS(3068), - [anon_sym_chan] = ACTIONS(3068), - [anon_sym_thread] = ACTIONS(3068), - [anon_sym_atomic] = ACTIONS(3068), - [sym___double_quote] = ACTIONS(3068), - [sym___single_quote] = ACTIONS(3068), - [sym___c_double_quote] = ACTIONS(3068), - [sym___c_single_quote] = ACTIONS(3068), - [sym___r_double_quote] = ACTIONS(3068), - [sym___r_single_quote] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_DOT] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_COMMA] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_RPAREN] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_EQ_EQ] = ACTIONS(2185), + [anon_sym_BANG_EQ] = ACTIONS(2185), + [anon_sym_LT_EQ] = ACTIONS(2185), + [anon_sym_GT_EQ] = ACTIONS(2185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_mut] = ACTIONS(2185), + [anon_sym_PLUS_PLUS] = ACTIONS(2185), + [anon_sym_DASH_DASH] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2185), + [anon_sym_go] = ACTIONS(2185), + [anon_sym_spawn] = ACTIONS(2185), + [anon_sym_json_DOTdecode] = ACTIONS(2185), + [anon_sym_LBRACK2] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_CARET] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_LT_DASH] = ACTIONS(2185), + [anon_sym_LT_LT] = ACTIONS(2185), + [anon_sym_GT_GT] = ACTIONS(2185), + [anon_sym_GT_GT_GT] = ACTIONS(2185), + [anon_sym_AMP_CARET] = ACTIONS(2185), + [anon_sym_AMP_AMP] = ACTIONS(2185), + [anon_sym_PIPE_PIPE] = ACTIONS(2185), + [anon_sym_or] = ACTIONS(2185), + [sym_none] = ACTIONS(2185), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), + [sym_nil] = ACTIONS(2185), + [anon_sym_QMARK_DOT] = ACTIONS(2185), + [anon_sym_POUND_LBRACK] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_DOLLARif] = ACTIONS(2185), + [anon_sym_is] = ACTIONS(2185), + [anon_sym_BANGis] = ACTIONS(2185), + [anon_sym_in] = ACTIONS(2185), + [anon_sym_BANGin] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_select] = ACTIONS(2185), + [anon_sym_lock] = ACTIONS(2185), + [anon_sym_rlock] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_sql] = ACTIONS(2185), + [sym_int_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), + [sym_rune_literal] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_c_SQUOTE] = ACTIONS(2185), + [anon_sym_c_DQUOTE] = ACTIONS(2185), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2185), + [sym_pseudo_compile_time_identifier] = ACTIONS(2185), + [anon_sym_shared] = ACTIONS(2185), + [anon_sym_map_LBRACK] = ACTIONS(2185), + [anon_sym_chan] = ACTIONS(2185), + [anon_sym_thread] = ACTIONS(2185), + [anon_sym_atomic] = ACTIONS(2185), }, [1181] = { [sym_line_comment] = STATE(1181), [sym_block_comment] = STATE(1181), - [sym_identifier] = ACTIONS(2778), - [anon_sym_LF] = ACTIONS(2778), - [anon_sym_CR] = ACTIONS(2778), - [anon_sym_CR_LF] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LF] = ACTIONS(2101), + [anon_sym_CR] = ACTIONS(2101), + [anon_sym_CR_LF] = ACTIONS(2101), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2778), - [anon_sym_DOT] = ACTIONS(2778), - [anon_sym_as] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_COMMA] = ACTIONS(2778), - [anon_sym_RBRACE] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym_RPAREN] = ACTIONS(2778), - [anon_sym_PIPE] = ACTIONS(2778), - [anon_sym_fn] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2778), - [anon_sym_SLASH] = ACTIONS(2778), - [anon_sym_PERCENT] = ACTIONS(2778), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_GT] = ACTIONS(2778), - [anon_sym_EQ_EQ] = ACTIONS(2778), - [anon_sym_BANG_EQ] = ACTIONS(2778), - [anon_sym_LT_EQ] = ACTIONS(2778), - [anon_sym_GT_EQ] = ACTIONS(2778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_mut] = ACTIONS(2778), - [anon_sym_PLUS_PLUS] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2778), - [anon_sym_QMARK] = ACTIONS(2778), - [anon_sym_BANG] = ACTIONS(2778), - [anon_sym_go] = ACTIONS(2778), - [anon_sym_spawn] = ACTIONS(2778), - [anon_sym_json_DOTdecode] = ACTIONS(2778), - [anon_sym_LBRACK2] = ACTIONS(2778), - [anon_sym_TILDE] = ACTIONS(2778), - [anon_sym_CARET] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_LT_DASH] = ACTIONS(2778), - [anon_sym_LT_LT] = ACTIONS(2778), - [anon_sym_GT_GT] = ACTIONS(2778), - [anon_sym_GT_GT_GT] = ACTIONS(2778), - [anon_sym_AMP_CARET] = ACTIONS(2778), - [anon_sym_AMP_AMP] = ACTIONS(2778), - [anon_sym_PIPE_PIPE] = ACTIONS(2778), - [anon_sym_or] = ACTIONS(2778), - [sym_none] = ACTIONS(2778), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [sym_nil] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(2778), - [anon_sym_POUND_LBRACK] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_DOLLARif] = ACTIONS(2778), - [anon_sym_is] = ACTIONS(2778), - [anon_sym_BANGis] = ACTIONS(2778), - [anon_sym_in] = ACTIONS(2778), - [anon_sym_BANGin] = ACTIONS(2778), - [anon_sym_match] = ACTIONS(2778), - [anon_sym_select] = ACTIONS(2778), - [anon_sym_lock] = ACTIONS(2778), - [anon_sym_rlock] = ACTIONS(2778), - [anon_sym_unsafe] = ACTIONS(2778), - [anon_sym_sql] = ACTIONS(2778), - [sym_int_literal] = ACTIONS(2778), - [sym_float_literal] = ACTIONS(2778), - [sym_rune_literal] = ACTIONS(2778), - [sym_pseudo_compile_time_identifier] = ACTIONS(2778), - [anon_sym_shared] = ACTIONS(2778), - [anon_sym_map_LBRACK] = ACTIONS(2778), - [anon_sym_chan] = ACTIONS(2778), - [anon_sym_thread] = ACTIONS(2778), - [anon_sym_atomic] = ACTIONS(2778), - [sym___double_quote] = ACTIONS(2778), - [sym___single_quote] = ACTIONS(2778), - [sym___c_double_quote] = ACTIONS(2778), - [sym___c_single_quote] = ACTIONS(2778), - [sym___r_double_quote] = ACTIONS(2778), - [sym___r_single_quote] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2101), + [anon_sym_DOT] = ACTIONS(2101), + [anon_sym_as] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_COMMA] = ACTIONS(2101), + [anon_sym_RBRACE] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_RPAREN] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_fn] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_SLASH] = ACTIONS(2101), + [anon_sym_PERCENT] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_GT] = ACTIONS(2101), + [anon_sym_EQ_EQ] = ACTIONS(2101), + [anon_sym_BANG_EQ] = ACTIONS(2101), + [anon_sym_LT_EQ] = ACTIONS(2101), + [anon_sym_GT_EQ] = ACTIONS(2101), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2099), + [anon_sym_struct] = ACTIONS(2101), + [anon_sym_mut] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(2101), + [anon_sym_DASH_DASH] = ACTIONS(2101), + [anon_sym_QMARK] = ACTIONS(2101), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_go] = ACTIONS(2101), + [anon_sym_spawn] = ACTIONS(2101), + [anon_sym_json_DOTdecode] = ACTIONS(2101), + [anon_sym_LBRACK2] = ACTIONS(2101), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_CARET] = ACTIONS(2101), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_LT_DASH] = ACTIONS(2101), + [anon_sym_LT_LT] = ACTIONS(2101), + [anon_sym_GT_GT] = ACTIONS(2101), + [anon_sym_GT_GT_GT] = ACTIONS(2101), + [anon_sym_AMP_CARET] = ACTIONS(2101), + [anon_sym_AMP_AMP] = ACTIONS(2101), + [anon_sym_PIPE_PIPE] = ACTIONS(2101), + [anon_sym_or] = ACTIONS(2101), + [sym_none] = ACTIONS(2101), + [sym_true] = ACTIONS(2101), + [sym_false] = ACTIONS(2101), + [sym_nil] = ACTIONS(2101), + [anon_sym_QMARK_DOT] = ACTIONS(2101), + [anon_sym_POUND_LBRACK] = ACTIONS(2101), + [anon_sym_if] = ACTIONS(2101), + [anon_sym_DOLLARif] = ACTIONS(2101), + [anon_sym_is] = ACTIONS(2101), + [anon_sym_BANGis] = ACTIONS(2101), + [anon_sym_in] = ACTIONS(2101), + [anon_sym_BANGin] = ACTIONS(2101), + [anon_sym_match] = ACTIONS(2101), + [anon_sym_select] = ACTIONS(2101), + [anon_sym_lock] = ACTIONS(2101), + [anon_sym_rlock] = ACTIONS(2101), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(2101), + [sym_int_literal] = ACTIONS(2101), + [sym_float_literal] = ACTIONS(2101), + [sym_rune_literal] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2101), + [anon_sym_DQUOTE] = ACTIONS(2101), + [anon_sym_c_SQUOTE] = ACTIONS(2101), + [anon_sym_c_DQUOTE] = ACTIONS(2101), + [anon_sym_r_SQUOTE] = ACTIONS(2101), + [anon_sym_r_DQUOTE] = ACTIONS(2101), + [sym_pseudo_compile_time_identifier] = ACTIONS(2101), + [anon_sym_shared] = ACTIONS(2101), + [anon_sym_map_LBRACK] = ACTIONS(2101), + [anon_sym_chan] = ACTIONS(2101), + [anon_sym_thread] = ACTIONS(2101), + [anon_sym_atomic] = ACTIONS(2101), }, [1182] = { [sym_line_comment] = STATE(1182), [sym_block_comment] = STATE(1182), - [sym_identifier] = ACTIONS(2744), - [anon_sym_LF] = ACTIONS(2744), - [anon_sym_CR] = ACTIONS(2744), - [anon_sym_CR_LF] = ACTIONS(2744), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LF] = ACTIONS(2453), + [anon_sym_CR] = ACTIONS(2453), + [anon_sym_CR_LF] = ACTIONS(2453), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_DOT] = ACTIONS(2744), - [anon_sym_as] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_COMMA] = ACTIONS(2744), - [anon_sym_RBRACE] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_fn] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2744), - [anon_sym_SLASH] = ACTIONS(2744), - [anon_sym_PERCENT] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2744), - [anon_sym_GT] = ACTIONS(2744), - [anon_sym_EQ_EQ] = ACTIONS(2744), - [anon_sym_BANG_EQ] = ACTIONS(2744), - [anon_sym_LT_EQ] = ACTIONS(2744), - [anon_sym_GT_EQ] = ACTIONS(2744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_struct] = ACTIONS(2744), - [anon_sym_mut] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2744), - [anon_sym_DASH_DASH] = ACTIONS(2744), - [anon_sym_QMARK] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2744), - [anon_sym_go] = ACTIONS(2744), - [anon_sym_spawn] = ACTIONS(2744), - [anon_sym_json_DOTdecode] = ACTIONS(2744), - [anon_sym_LBRACK2] = ACTIONS(2744), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2744), - [anon_sym_LT_DASH] = ACTIONS(2744), - [anon_sym_LT_LT] = ACTIONS(2744), - [anon_sym_GT_GT] = ACTIONS(2744), - [anon_sym_GT_GT_GT] = ACTIONS(2744), - [anon_sym_AMP_CARET] = ACTIONS(2744), - [anon_sym_AMP_AMP] = ACTIONS(2744), - [anon_sym_PIPE_PIPE] = ACTIONS(2744), - [anon_sym_or] = ACTIONS(2744), - [sym_none] = ACTIONS(2744), - [sym_true] = ACTIONS(2744), - [sym_false] = ACTIONS(2744), - [sym_nil] = ACTIONS(2744), - [anon_sym_QMARK_DOT] = ACTIONS(2744), - [anon_sym_POUND_LBRACK] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_DOLLARif] = ACTIONS(2744), - [anon_sym_is] = ACTIONS(2744), - [anon_sym_BANGis] = ACTIONS(2744), - [anon_sym_in] = ACTIONS(2744), - [anon_sym_BANGin] = ACTIONS(2744), - [anon_sym_match] = ACTIONS(2744), - [anon_sym_select] = ACTIONS(2744), - [anon_sym_lock] = ACTIONS(2744), - [anon_sym_rlock] = ACTIONS(2744), - [anon_sym_unsafe] = ACTIONS(2744), - [anon_sym_sql] = ACTIONS(2744), - [sym_int_literal] = ACTIONS(2744), - [sym_float_literal] = ACTIONS(2744), - [sym_rune_literal] = ACTIONS(2744), - [sym_pseudo_compile_time_identifier] = ACTIONS(2744), - [anon_sym_shared] = ACTIONS(2744), - [anon_sym_map_LBRACK] = ACTIONS(2744), - [anon_sym_chan] = ACTIONS(2744), - [anon_sym_thread] = ACTIONS(2744), - [anon_sym_atomic] = ACTIONS(2744), - [sym___double_quote] = ACTIONS(2744), - [sym___single_quote] = ACTIONS(2744), - [sym___c_double_quote] = ACTIONS(2744), - [sym___c_single_quote] = ACTIONS(2744), - [sym___r_double_quote] = ACTIONS(2744), - [sym___r_single_quote] = ACTIONS(2744), + [anon_sym_SEMI] = ACTIONS(2453), + [anon_sym_DOT] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_RPAREN] = ACTIONS(2453), + [anon_sym_PIPE] = ACTIONS(2453), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_PLUS] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(2453), + [anon_sym_SLASH] = ACTIONS(2453), + [anon_sym_PERCENT] = ACTIONS(2453), + [anon_sym_LT] = ACTIONS(2453), + [anon_sym_GT] = ACTIONS(2453), + [anon_sym_EQ_EQ] = ACTIONS(2453), + [anon_sym_BANG_EQ] = ACTIONS(2453), + [anon_sym_LT_EQ] = ACTIONS(2453), + [anon_sym_GT_EQ] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2451), + [anon_sym_struct] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_PLUS_PLUS] = ACTIONS(2453), + [anon_sym_DASH_DASH] = ACTIONS(2453), + [anon_sym_QMARK] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2453), + [anon_sym_go] = ACTIONS(2453), + [anon_sym_spawn] = ACTIONS(2453), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2453), + [anon_sym_TILDE] = ACTIONS(2453), + [anon_sym_CARET] = ACTIONS(2453), + [anon_sym_AMP] = ACTIONS(2453), + [anon_sym_LT_DASH] = ACTIONS(2453), + [anon_sym_LT_LT] = ACTIONS(2453), + [anon_sym_GT_GT] = ACTIONS(2453), + [anon_sym_GT_GT_GT] = ACTIONS(2453), + [anon_sym_AMP_CARET] = ACTIONS(2453), + [anon_sym_AMP_AMP] = ACTIONS(2453), + [anon_sym_PIPE_PIPE] = ACTIONS(2453), + [anon_sym_or] = ACTIONS(2453), + [sym_none] = ACTIONS(2453), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nil] = ACTIONS(2453), + [anon_sym_QMARK_DOT] = ACTIONS(2453), + [anon_sym_POUND_LBRACK] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_DOLLARif] = ACTIONS(2453), + [anon_sym_is] = ACTIONS(2453), + [anon_sym_BANGis] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(2453), + [anon_sym_BANGin] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_select] = ACTIONS(2453), + [anon_sym_lock] = ACTIONS(2453), + [anon_sym_rlock] = ACTIONS(2453), + [anon_sym_unsafe] = ACTIONS(2453), + [anon_sym_sql] = ACTIONS(2453), + [sym_int_literal] = ACTIONS(2453), + [sym_float_literal] = ACTIONS(2453), + [sym_rune_literal] = ACTIONS(2453), + [anon_sym_SQUOTE] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [anon_sym_c_SQUOTE] = ACTIONS(2453), + [anon_sym_c_DQUOTE] = ACTIONS(2453), + [anon_sym_r_SQUOTE] = ACTIONS(2453), + [anon_sym_r_DQUOTE] = ACTIONS(2453), + [sym_pseudo_compile_time_identifier] = ACTIONS(2453), + [anon_sym_shared] = ACTIONS(2453), + [anon_sym_map_LBRACK] = ACTIONS(2453), + [anon_sym_chan] = ACTIONS(2453), + [anon_sym_thread] = ACTIONS(2453), + [anon_sym_atomic] = ACTIONS(2453), }, [1183] = { [sym_line_comment] = STATE(1183), [sym_block_comment] = STATE(1183), - [sym_identifier] = ACTIONS(2229), - [anon_sym_LF] = ACTIONS(2229), - [anon_sym_CR] = ACTIONS(2229), - [anon_sym_CR_LF] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LF] = ACTIONS(2457), + [anon_sym_CR] = ACTIONS(2457), + [anon_sym_CR_LF] = ACTIONS(2457), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2229), - [anon_sym_DOT] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_COMMA] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_RPAREN] = ACTIONS(2229), - [anon_sym_PIPE] = ACTIONS(2229), - [anon_sym_fn] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_STAR] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_PERCENT] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_GT] = ACTIONS(2229), - [anon_sym_EQ_EQ] = ACTIONS(2229), - [anon_sym_BANG_EQ] = ACTIONS(2229), - [anon_sym_LT_EQ] = ACTIONS(2229), - [anon_sym_GT_EQ] = ACTIONS(2229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [anon_sym_QMARK] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_go] = ACTIONS(2229), - [anon_sym_spawn] = ACTIONS(2229), - [anon_sym_json_DOTdecode] = ACTIONS(2229), - [anon_sym_LBRACK2] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_CARET] = ACTIONS(2229), - [anon_sym_AMP] = ACTIONS(2229), - [anon_sym_LT_DASH] = ACTIONS(2229), - [anon_sym_LT_LT] = ACTIONS(2229), - [anon_sym_GT_GT] = ACTIONS(2229), - [anon_sym_GT_GT_GT] = ACTIONS(2229), - [anon_sym_AMP_CARET] = ACTIONS(2229), - [anon_sym_AMP_AMP] = ACTIONS(2229), - [anon_sym_PIPE_PIPE] = ACTIONS(2229), - [anon_sym_or] = ACTIONS(2229), - [sym_none] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_nil] = ACTIONS(2229), - [anon_sym_QMARK_DOT] = ACTIONS(2229), - [anon_sym_POUND_LBRACK] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_DOLLARif] = ACTIONS(2229), - [anon_sym_is] = ACTIONS(2229), - [anon_sym_BANGis] = ACTIONS(2229), - [anon_sym_in] = ACTIONS(2229), - [anon_sym_BANGin] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_select] = ACTIONS(2229), - [anon_sym_lock] = ACTIONS(2229), - [anon_sym_rlock] = ACTIONS(2229), - [anon_sym_unsafe] = ACTIONS(2229), - [anon_sym_sql] = ACTIONS(2229), - [sym_int_literal] = ACTIONS(2229), - [sym_float_literal] = ACTIONS(2229), - [sym_rune_literal] = ACTIONS(2229), - [sym_pseudo_compile_time_identifier] = ACTIONS(2229), - [anon_sym_shared] = ACTIONS(2229), - [anon_sym_map_LBRACK] = ACTIONS(2229), - [anon_sym_chan] = ACTIONS(2229), - [anon_sym_thread] = ACTIONS(2229), - [anon_sym_atomic] = ACTIONS(2229), - [sym___double_quote] = ACTIONS(2229), - [sym___single_quote] = ACTIONS(2229), - [sym___c_double_quote] = ACTIONS(2229), - [sym___c_single_quote] = ACTIONS(2229), - [sym___r_double_quote] = ACTIONS(2229), - [sym___r_single_quote] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_DOT] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_COMMA] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym_RPAREN] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_SLASH] = ACTIONS(2457), + [anon_sym_PERCENT] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_GT] = ACTIONS(2457), + [anon_sym_EQ_EQ] = ACTIONS(2457), + [anon_sym_BANG_EQ] = ACTIONS(2457), + [anon_sym_LT_EQ] = ACTIONS(2457), + [anon_sym_GT_EQ] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_QMARK] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_go] = ACTIONS(2457), + [anon_sym_spawn] = ACTIONS(2457), + [anon_sym_json_DOTdecode] = ACTIONS(2457), + [anon_sym_LBRACK2] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_CARET] = ACTIONS(2457), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2457), + [anon_sym_LT_LT] = ACTIONS(2457), + [anon_sym_GT_GT] = ACTIONS(2457), + [anon_sym_GT_GT_GT] = ACTIONS(2457), + [anon_sym_AMP_CARET] = ACTIONS(2457), + [anon_sym_AMP_AMP] = ACTIONS(2457), + [anon_sym_PIPE_PIPE] = ACTIONS(2457), + [anon_sym_or] = ACTIONS(2457), + [sym_none] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_nil] = ACTIONS(2457), + [anon_sym_QMARK_DOT] = ACTIONS(2457), + [anon_sym_POUND_LBRACK] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_DOLLARif] = ACTIONS(2457), + [anon_sym_is] = ACTIONS(2457), + [anon_sym_BANGis] = ACTIONS(2457), + [anon_sym_in] = ACTIONS(2457), + [anon_sym_BANGin] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_select] = ACTIONS(2457), + [anon_sym_lock] = ACTIONS(2457), + [anon_sym_rlock] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(2457), + [anon_sym_sql] = ACTIONS(2457), + [sym_int_literal] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2457), + [sym_rune_literal] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [anon_sym_c_SQUOTE] = ACTIONS(2457), + [anon_sym_c_DQUOTE] = ACTIONS(2457), + [anon_sym_r_SQUOTE] = ACTIONS(2457), + [anon_sym_r_DQUOTE] = ACTIONS(2457), + [sym_pseudo_compile_time_identifier] = ACTIONS(2457), + [anon_sym_shared] = ACTIONS(2457), + [anon_sym_map_LBRACK] = ACTIONS(2457), + [anon_sym_chan] = ACTIONS(2457), + [anon_sym_thread] = ACTIONS(2457), + [anon_sym_atomic] = ACTIONS(2457), }, [1184] = { [sym_line_comment] = STATE(1184), [sym_block_comment] = STATE(1184), - [sym_identifier] = ACTIONS(2199), - [anon_sym_LF] = ACTIONS(2199), - [anon_sym_CR] = ACTIONS(2199), - [anon_sym_CR_LF] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2887), + [anon_sym_LF] = ACTIONS(2887), + [anon_sym_CR] = ACTIONS(2887), + [anon_sym_CR_LF] = ACTIONS(2887), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_DOT] = ACTIONS(2199), - [anon_sym_as] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_COMMA] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_RPAREN] = ACTIONS(2199), - [anon_sym_PIPE] = ACTIONS(2199), - [anon_sym_fn] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(2199), - [anon_sym_SLASH] = ACTIONS(2199), - [anon_sym_PERCENT] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2199), - [anon_sym_GT] = ACTIONS(2199), - [anon_sym_EQ_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ] = ACTIONS(2199), - [anon_sym_LT_EQ] = ACTIONS(2199), - [anon_sym_GT_EQ] = ACTIONS(2199), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(2199), - [anon_sym_mut] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_QMARK] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_go] = ACTIONS(2199), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(2199), - [anon_sym_LBRACK2] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_LT_DASH] = ACTIONS(2199), - [anon_sym_LT_LT] = ACTIONS(2199), - [anon_sym_GT_GT] = ACTIONS(2199), - [anon_sym_GT_GT_GT] = ACTIONS(2199), - [anon_sym_AMP_CARET] = ACTIONS(2199), - [anon_sym_AMP_AMP] = ACTIONS(2199), - [anon_sym_PIPE_PIPE] = ACTIONS(2199), - [anon_sym_or] = ACTIONS(2199), - [sym_none] = ACTIONS(2199), - [sym_true] = ACTIONS(2199), - [sym_false] = ACTIONS(2199), - [sym_nil] = ACTIONS(2199), - [anon_sym_QMARK_DOT] = ACTIONS(2199), - [anon_sym_POUND_LBRACK] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_DOLLARif] = ACTIONS(2199), - [anon_sym_is] = ACTIONS(2199), - [anon_sym_BANGis] = ACTIONS(2199), - [anon_sym_in] = ACTIONS(2199), - [anon_sym_BANGin] = ACTIONS(2199), - [anon_sym_match] = ACTIONS(2199), - [anon_sym_select] = ACTIONS(2199), - [anon_sym_lock] = ACTIONS(2199), - [anon_sym_rlock] = ACTIONS(2199), - [anon_sym_unsafe] = ACTIONS(2199), - [anon_sym_sql] = ACTIONS(2199), - [sym_int_literal] = ACTIONS(2199), - [sym_float_literal] = ACTIONS(2199), - [sym_rune_literal] = ACTIONS(2199), - [sym_pseudo_compile_time_identifier] = ACTIONS(2199), - [anon_sym_shared] = ACTIONS(2199), - [anon_sym_map_LBRACK] = ACTIONS(2199), - [anon_sym_chan] = ACTIONS(2199), - [anon_sym_thread] = ACTIONS(2199), - [anon_sym_atomic] = ACTIONS(2199), - [sym___double_quote] = ACTIONS(2199), - [sym___single_quote] = ACTIONS(2199), - [sym___c_double_quote] = ACTIONS(2199), - [sym___c_single_quote] = ACTIONS(2199), - [sym___r_double_quote] = ACTIONS(2199), - [sym___r_single_quote] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2887), + [anon_sym_DOT] = ACTIONS(2887), + [anon_sym_as] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_COMMA] = ACTIONS(2887), + [anon_sym_RBRACE] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_RPAREN] = ACTIONS(2887), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_fn] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2887), + [anon_sym_BANG_EQ] = ACTIONS(2887), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_mut] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2887), + [anon_sym_QMARK] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2887), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2887), + [anon_sym_json_DOTdecode] = ACTIONS(2887), + [anon_sym_LBRACK2] = ACTIONS(2887), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_CARET] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_GT_GT_GT] = ACTIONS(2887), + [anon_sym_AMP_CARET] = ACTIONS(2887), + [anon_sym_AMP_AMP] = ACTIONS(2887), + [anon_sym_PIPE_PIPE] = ACTIONS(2887), + [anon_sym_or] = ACTIONS(2887), + [sym_none] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_nil] = ACTIONS(2887), + [anon_sym_QMARK_DOT] = ACTIONS(2887), + [anon_sym_POUND_LBRACK] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_DOLLARif] = ACTIONS(2887), + [anon_sym_is] = ACTIONS(2887), + [anon_sym_BANGis] = ACTIONS(2887), + [anon_sym_in] = ACTIONS(2887), + [anon_sym_BANGin] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2887), + [anon_sym_select] = ACTIONS(2887), + [anon_sym_lock] = ACTIONS(2887), + [anon_sym_rlock] = ACTIONS(2887), + [anon_sym_unsafe] = ACTIONS(2887), + [anon_sym_sql] = ACTIONS(2887), + [sym_int_literal] = ACTIONS(2887), + [sym_float_literal] = ACTIONS(2887), + [sym_rune_literal] = ACTIONS(2887), + [anon_sym_SQUOTE] = ACTIONS(2887), + [anon_sym_DQUOTE] = ACTIONS(2887), + [anon_sym_c_SQUOTE] = ACTIONS(2887), + [anon_sym_c_DQUOTE] = ACTIONS(2887), + [anon_sym_r_SQUOTE] = ACTIONS(2887), + [anon_sym_r_DQUOTE] = ACTIONS(2887), + [sym_pseudo_compile_time_identifier] = ACTIONS(2887), + [anon_sym_shared] = ACTIONS(2887), + [anon_sym_map_LBRACK] = ACTIONS(2887), + [anon_sym_chan] = ACTIONS(2887), + [anon_sym_thread] = ACTIONS(2887), + [anon_sym_atomic] = ACTIONS(2887), }, [1185] = { [sym_line_comment] = STATE(1185), [sym_block_comment] = STATE(1185), - [sym_identifier] = ACTIONS(2862), - [anon_sym_LF] = ACTIONS(2862), - [anon_sym_CR] = ACTIONS(2862), - [anon_sym_CR_LF] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2883), + [anon_sym_LF] = ACTIONS(2883), + [anon_sym_CR] = ACTIONS(2883), + [anon_sym_CR_LF] = ACTIONS(2883), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2862), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_as] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_COMMA] = ACTIONS(2862), - [anon_sym_RBRACE] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_RPAREN] = ACTIONS(2862), - [anon_sym_PIPE] = ACTIONS(2862), - [anon_sym_fn] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2862), - [anon_sym_GT] = ACTIONS(2862), - [anon_sym_EQ_EQ] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_LT_EQ] = ACTIONS(2862), - [anon_sym_GT_EQ] = ACTIONS(2862), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_struct] = ACTIONS(2862), - [anon_sym_mut] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2862), - [anon_sym_DASH_DASH] = ACTIONS(2862), - [anon_sym_QMARK] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2862), - [anon_sym_go] = ACTIONS(2862), - [anon_sym_spawn] = ACTIONS(2862), - [anon_sym_json_DOTdecode] = ACTIONS(2862), - [anon_sym_LBRACK2] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2862), - [anon_sym_CARET] = ACTIONS(2862), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_LT_DASH] = ACTIONS(2862), - [anon_sym_LT_LT] = ACTIONS(2862), - [anon_sym_GT_GT] = ACTIONS(2862), - [anon_sym_GT_GT_GT] = ACTIONS(2862), - [anon_sym_AMP_CARET] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_or] = ACTIONS(2862), - [sym_none] = ACTIONS(2862), - [sym_true] = ACTIONS(2862), - [sym_false] = ACTIONS(2862), - [sym_nil] = ACTIONS(2862), - [anon_sym_QMARK_DOT] = ACTIONS(2862), - [anon_sym_POUND_LBRACK] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_DOLLARif] = ACTIONS(2862), - [anon_sym_is] = ACTIONS(2862), - [anon_sym_BANGis] = ACTIONS(2862), - [anon_sym_in] = ACTIONS(2862), - [anon_sym_BANGin] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_select] = ACTIONS(2862), - [anon_sym_lock] = ACTIONS(2862), - [anon_sym_rlock] = ACTIONS(2862), - [anon_sym_unsafe] = ACTIONS(2862), - [anon_sym_sql] = ACTIONS(2862), - [sym_int_literal] = ACTIONS(2862), - [sym_float_literal] = ACTIONS(2862), - [sym_rune_literal] = ACTIONS(2862), - [sym_pseudo_compile_time_identifier] = ACTIONS(2862), - [anon_sym_shared] = ACTIONS(2862), - [anon_sym_map_LBRACK] = ACTIONS(2862), - [anon_sym_chan] = ACTIONS(2862), - [anon_sym_thread] = ACTIONS(2862), - [anon_sym_atomic] = ACTIONS(2862), - [sym___double_quote] = ACTIONS(2862), - [sym___single_quote] = ACTIONS(2862), - [sym___c_double_quote] = ACTIONS(2862), - [sym___c_single_quote] = ACTIONS(2862), - [sym___r_double_quote] = ACTIONS(2862), - [sym___r_single_quote] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2883), + [anon_sym_DOT] = ACTIONS(2883), + [anon_sym_as] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2883), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_RBRACE] = ACTIONS(2883), + [anon_sym_LPAREN] = ACTIONS(2883), + [anon_sym_RPAREN] = ACTIONS(2883), + [anon_sym_PIPE] = ACTIONS(2883), + [anon_sym_fn] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_PERCENT] = ACTIONS(2883), + [anon_sym_LT] = ACTIONS(2883), + [anon_sym_GT] = ACTIONS(2883), + [anon_sym_EQ_EQ] = ACTIONS(2883), + [anon_sym_BANG_EQ] = ACTIONS(2883), + [anon_sym_LT_EQ] = ACTIONS(2883), + [anon_sym_GT_EQ] = ACTIONS(2883), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2883), + [anon_sym_LBRACK] = ACTIONS(2881), + [anon_sym_struct] = ACTIONS(2883), + [anon_sym_mut] = ACTIONS(2883), + [anon_sym_PLUS_PLUS] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2883), + [anon_sym_QMARK] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2883), + [anon_sym_go] = ACTIONS(2883), + [anon_sym_spawn] = ACTIONS(2883), + [anon_sym_json_DOTdecode] = ACTIONS(2883), + [anon_sym_LBRACK2] = ACTIONS(2883), + [anon_sym_TILDE] = ACTIONS(2883), + [anon_sym_CARET] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_LT_DASH] = ACTIONS(2883), + [anon_sym_LT_LT] = ACTIONS(2883), + [anon_sym_GT_GT] = ACTIONS(2883), + [anon_sym_GT_GT_GT] = ACTIONS(2883), + [anon_sym_AMP_CARET] = ACTIONS(2883), + [anon_sym_AMP_AMP] = ACTIONS(2883), + [anon_sym_PIPE_PIPE] = ACTIONS(2883), + [anon_sym_or] = ACTIONS(2883), + [sym_none] = ACTIONS(2883), + [sym_true] = ACTIONS(2883), + [sym_false] = ACTIONS(2883), + [sym_nil] = ACTIONS(2883), + [anon_sym_QMARK_DOT] = ACTIONS(2883), + [anon_sym_POUND_LBRACK] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_DOLLARif] = ACTIONS(2883), + [anon_sym_is] = ACTIONS(2883), + [anon_sym_BANGis] = ACTIONS(2883), + [anon_sym_in] = ACTIONS(2883), + [anon_sym_BANGin] = ACTIONS(2883), + [anon_sym_match] = ACTIONS(2883), + [anon_sym_select] = ACTIONS(2883), + [anon_sym_lock] = ACTIONS(2883), + [anon_sym_rlock] = ACTIONS(2883), + [anon_sym_unsafe] = ACTIONS(2883), + [anon_sym_sql] = ACTIONS(2883), + [sym_int_literal] = ACTIONS(2883), + [sym_float_literal] = ACTIONS(2883), + [sym_rune_literal] = ACTIONS(2883), + [anon_sym_SQUOTE] = ACTIONS(2883), + [anon_sym_DQUOTE] = ACTIONS(2883), + [anon_sym_c_SQUOTE] = ACTIONS(2883), + [anon_sym_c_DQUOTE] = ACTIONS(2883), + [anon_sym_r_SQUOTE] = ACTIONS(2883), + [anon_sym_r_DQUOTE] = ACTIONS(2883), + [sym_pseudo_compile_time_identifier] = ACTIONS(2883), + [anon_sym_shared] = ACTIONS(2883), + [anon_sym_map_LBRACK] = ACTIONS(2883), + [anon_sym_chan] = ACTIONS(2883), + [anon_sym_thread] = ACTIONS(2883), + [anon_sym_atomic] = ACTIONS(2883), }, [1186] = { [sym_line_comment] = STATE(1186), [sym_block_comment] = STATE(1186), - [sym_identifier] = ACTIONS(2918), - [anon_sym_LF] = ACTIONS(2918), - [anon_sym_CR] = ACTIONS(2918), - [anon_sym_CR_LF] = ACTIONS(2918), + [sym_identifier] = ACTIONS(2463), + [anon_sym_LF] = ACTIONS(2463), + [anon_sym_CR] = ACTIONS(2463), + [anon_sym_CR_LF] = ACTIONS(2463), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_as] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2918), - [anon_sym_RBRACE] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_RPAREN] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_fn] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_GT] = ACTIONS(2918), - [anon_sym_EQ_EQ] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2918), - [anon_sym_LT_EQ] = ACTIONS(2918), - [anon_sym_GT_EQ] = ACTIONS(2918), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_mut] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2918), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_go] = ACTIONS(2918), - [anon_sym_spawn] = ACTIONS(2918), - [anon_sym_json_DOTdecode] = ACTIONS(2918), - [anon_sym_LBRACK2] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2918), - [anon_sym_CARET] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2918), - [anon_sym_LT_LT] = ACTIONS(2918), - [anon_sym_GT_GT] = ACTIONS(2918), - [anon_sym_GT_GT_GT] = ACTIONS(2918), - [anon_sym_AMP_CARET] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_or] = ACTIONS(2918), - [sym_none] = ACTIONS(2918), - [sym_true] = ACTIONS(2918), - [sym_false] = ACTIONS(2918), - [sym_nil] = ACTIONS(2918), - [anon_sym_QMARK_DOT] = ACTIONS(2918), - [anon_sym_POUND_LBRACK] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_DOLLARif] = ACTIONS(2918), - [anon_sym_is] = ACTIONS(2918), - [anon_sym_BANGis] = ACTIONS(2918), - [anon_sym_in] = ACTIONS(2918), - [anon_sym_BANGin] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_select] = ACTIONS(2918), - [anon_sym_lock] = ACTIONS(2918), - [anon_sym_rlock] = ACTIONS(2918), - [anon_sym_unsafe] = ACTIONS(2918), - [anon_sym_sql] = ACTIONS(2918), - [sym_int_literal] = ACTIONS(2918), - [sym_float_literal] = ACTIONS(2918), - [sym_rune_literal] = ACTIONS(2918), - [sym_pseudo_compile_time_identifier] = ACTIONS(2918), - [anon_sym_shared] = ACTIONS(2918), - [anon_sym_map_LBRACK] = ACTIONS(2918), - [anon_sym_chan] = ACTIONS(2918), - [anon_sym_thread] = ACTIONS(2918), - [anon_sym_atomic] = ACTIONS(2918), - [sym___double_quote] = ACTIONS(2918), - [sym___single_quote] = ACTIONS(2918), - [sym___c_double_quote] = ACTIONS(2918), - [sym___c_single_quote] = ACTIONS(2918), - [sym___r_double_quote] = ACTIONS(2918), - [sym___r_single_quote] = ACTIONS(2918), + [anon_sym_SEMI] = ACTIONS(2463), + [anon_sym_DOT] = ACTIONS(2463), + [anon_sym_as] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_COMMA] = ACTIONS(2463), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_RPAREN] = ACTIONS(2463), + [anon_sym_PIPE] = ACTIONS(2463), + [anon_sym_fn] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2463), + [anon_sym_SLASH] = ACTIONS(2463), + [anon_sym_PERCENT] = ACTIONS(2463), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_GT] = ACTIONS(2463), + [anon_sym_EQ_EQ] = ACTIONS(2463), + [anon_sym_BANG_EQ] = ACTIONS(2463), + [anon_sym_LT_EQ] = ACTIONS(2463), + [anon_sym_GT_EQ] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2461), + [anon_sym_struct] = ACTIONS(2463), + [anon_sym_mut] = ACTIONS(2463), + [anon_sym_PLUS_PLUS] = ACTIONS(2463), + [anon_sym_DASH_DASH] = ACTIONS(2463), + [anon_sym_QMARK] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(2463), + [anon_sym_go] = ACTIONS(2463), + [anon_sym_spawn] = ACTIONS(2463), + [anon_sym_json_DOTdecode] = ACTIONS(2463), + [anon_sym_LBRACK2] = ACTIONS(2463), + [anon_sym_TILDE] = ACTIONS(2463), + [anon_sym_CARET] = ACTIONS(2463), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_LT_DASH] = ACTIONS(2463), + [anon_sym_LT_LT] = ACTIONS(2463), + [anon_sym_GT_GT] = ACTIONS(2463), + [anon_sym_GT_GT_GT] = ACTIONS(2463), + [anon_sym_AMP_CARET] = ACTIONS(2463), + [anon_sym_AMP_AMP] = ACTIONS(2463), + [anon_sym_PIPE_PIPE] = ACTIONS(2463), + [anon_sym_or] = ACTIONS(2463), + [sym_none] = ACTIONS(2463), + [sym_true] = ACTIONS(2463), + [sym_false] = ACTIONS(2463), + [sym_nil] = ACTIONS(2463), + [anon_sym_QMARK_DOT] = ACTIONS(2463), + [anon_sym_POUND_LBRACK] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2463), + [anon_sym_DOLLARif] = ACTIONS(2463), + [anon_sym_is] = ACTIONS(2463), + [anon_sym_BANGis] = ACTIONS(2463), + [anon_sym_in] = ACTIONS(2463), + [anon_sym_BANGin] = ACTIONS(2463), + [anon_sym_match] = ACTIONS(2463), + [anon_sym_select] = ACTIONS(2463), + [anon_sym_lock] = ACTIONS(2463), + [anon_sym_rlock] = ACTIONS(2463), + [anon_sym_unsafe] = ACTIONS(2463), + [anon_sym_sql] = ACTIONS(2463), + [sym_int_literal] = ACTIONS(2463), + [sym_float_literal] = ACTIONS(2463), + [sym_rune_literal] = ACTIONS(2463), + [anon_sym_SQUOTE] = ACTIONS(2463), + [anon_sym_DQUOTE] = ACTIONS(2463), + [anon_sym_c_SQUOTE] = ACTIONS(2463), + [anon_sym_c_DQUOTE] = ACTIONS(2463), + [anon_sym_r_SQUOTE] = ACTIONS(2463), + [anon_sym_r_DQUOTE] = ACTIONS(2463), + [sym_pseudo_compile_time_identifier] = ACTIONS(2463), + [anon_sym_shared] = ACTIONS(2463), + [anon_sym_map_LBRACK] = ACTIONS(2463), + [anon_sym_chan] = ACTIONS(2463), + [anon_sym_thread] = ACTIONS(2463), + [anon_sym_atomic] = ACTIONS(2463), }, [1187] = { [sym_line_comment] = STATE(1187), [sym_block_comment] = STATE(1187), - [sym_identifier] = ACTIONS(2874), - [anon_sym_LF] = ACTIONS(2874), - [anon_sym_CR] = ACTIONS(2874), - [anon_sym_CR_LF] = ACTIONS(2874), + [sym_identifier] = ACTIONS(2863), + [anon_sym_LF] = ACTIONS(2863), + [anon_sym_CR] = ACTIONS(2863), + [anon_sym_CR_LF] = ACTIONS(2863), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2874), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_as] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_COMMA] = ACTIONS(2874), - [anon_sym_RBRACE] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_RPAREN] = ACTIONS(2874), - [anon_sym_PIPE] = ACTIONS(2874), - [anon_sym_fn] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_STAR] = ACTIONS(2874), - [anon_sym_SLASH] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2874), - [anon_sym_GT] = ACTIONS(2874), - [anon_sym_EQ_EQ] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2874), - [anon_sym_LT_EQ] = ACTIONS(2874), - [anon_sym_GT_EQ] = ACTIONS(2874), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2872), - [anon_sym_struct] = ACTIONS(2874), - [anon_sym_mut] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2874), - [anon_sym_DASH_DASH] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2874), - [anon_sym_go] = ACTIONS(2874), - [anon_sym_spawn] = ACTIONS(2874), - [anon_sym_json_DOTdecode] = ACTIONS(2874), - [anon_sym_LBRACK2] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2874), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2874), - [anon_sym_LT_LT] = ACTIONS(2874), - [anon_sym_GT_GT] = ACTIONS(2874), - [anon_sym_GT_GT_GT] = ACTIONS(2874), - [anon_sym_AMP_CARET] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_or] = ACTIONS(2874), - [sym_none] = ACTIONS(2874), - [sym_true] = ACTIONS(2874), - [sym_false] = ACTIONS(2874), - [sym_nil] = ACTIONS(2874), - [anon_sym_QMARK_DOT] = ACTIONS(2874), - [anon_sym_POUND_LBRACK] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_DOLLARif] = ACTIONS(2874), - [anon_sym_is] = ACTIONS(2874), - [anon_sym_BANGis] = ACTIONS(2874), - [anon_sym_in] = ACTIONS(2874), - [anon_sym_BANGin] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_select] = ACTIONS(2874), - [anon_sym_lock] = ACTIONS(2874), - [anon_sym_rlock] = ACTIONS(2874), - [anon_sym_unsafe] = ACTIONS(2874), - [anon_sym_sql] = ACTIONS(2874), - [sym_int_literal] = ACTIONS(2874), - [sym_float_literal] = ACTIONS(2874), - [sym_rune_literal] = ACTIONS(2874), - [sym_pseudo_compile_time_identifier] = ACTIONS(2874), - [anon_sym_shared] = ACTIONS(2874), - [anon_sym_map_LBRACK] = ACTIONS(2874), - [anon_sym_chan] = ACTIONS(2874), - [anon_sym_thread] = ACTIONS(2874), - [anon_sym_atomic] = ACTIONS(2874), - [sym___double_quote] = ACTIONS(2874), - [sym___single_quote] = ACTIONS(2874), - [sym___c_double_quote] = ACTIONS(2874), - [sym___c_single_quote] = ACTIONS(2874), - [sym___r_double_quote] = ACTIONS(2874), - [sym___r_single_quote] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_DOT] = ACTIONS(2863), + [anon_sym_as] = ACTIONS(2863), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_COMMA] = ACTIONS(2863), + [anon_sym_RBRACE] = ACTIONS(2863), + [anon_sym_LPAREN] = ACTIONS(2863), + [anon_sym_RPAREN] = ACTIONS(2863), + [anon_sym_PIPE] = ACTIONS(2863), + [anon_sym_fn] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_SLASH] = ACTIONS(2863), + [anon_sym_PERCENT] = ACTIONS(2863), + [anon_sym_LT] = ACTIONS(2863), + [anon_sym_GT] = ACTIONS(2863), + [anon_sym_EQ_EQ] = ACTIONS(2863), + [anon_sym_BANG_EQ] = ACTIONS(2863), + [anon_sym_LT_EQ] = ACTIONS(2863), + [anon_sym_GT_EQ] = ACTIONS(2863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_mut] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_QMARK] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_go] = ACTIONS(2863), + [anon_sym_spawn] = ACTIONS(2863), + [anon_sym_json_DOTdecode] = ACTIONS(2863), + [anon_sym_LBRACK2] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_CARET] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_LT_DASH] = ACTIONS(2863), + [anon_sym_LT_LT] = ACTIONS(2863), + [anon_sym_GT_GT] = ACTIONS(2863), + [anon_sym_GT_GT_GT] = ACTIONS(2863), + [anon_sym_AMP_CARET] = ACTIONS(2863), + [anon_sym_AMP_AMP] = ACTIONS(2863), + [anon_sym_PIPE_PIPE] = ACTIONS(2863), + [anon_sym_or] = ACTIONS(2863), + [sym_none] = ACTIONS(2863), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_nil] = ACTIONS(2863), + [anon_sym_QMARK_DOT] = ACTIONS(2863), + [anon_sym_POUND_LBRACK] = ACTIONS(2863), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_DOLLARif] = ACTIONS(2863), + [anon_sym_is] = ACTIONS(2863), + [anon_sym_BANGis] = ACTIONS(2863), + [anon_sym_in] = ACTIONS(2863), + [anon_sym_BANGin] = ACTIONS(2863), + [anon_sym_match] = ACTIONS(2863), + [anon_sym_select] = ACTIONS(2863), + [anon_sym_lock] = ACTIONS(2863), + [anon_sym_rlock] = ACTIONS(2863), + [anon_sym_unsafe] = ACTIONS(2863), + [anon_sym_sql] = ACTIONS(2863), + [sym_int_literal] = ACTIONS(2863), + [sym_float_literal] = ACTIONS(2863), + [sym_rune_literal] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2863), + [anon_sym_c_SQUOTE] = ACTIONS(2863), + [anon_sym_c_DQUOTE] = ACTIONS(2863), + [anon_sym_r_SQUOTE] = ACTIONS(2863), + [anon_sym_r_DQUOTE] = ACTIONS(2863), + [sym_pseudo_compile_time_identifier] = ACTIONS(2863), + [anon_sym_shared] = ACTIONS(2863), + [anon_sym_map_LBRACK] = ACTIONS(2863), + [anon_sym_chan] = ACTIONS(2863), + [anon_sym_thread] = ACTIONS(2863), + [anon_sym_atomic] = ACTIONS(2863), }, [1188] = { [sym_line_comment] = STATE(1188), [sym_block_comment] = STATE(1188), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2320), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3564), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3756), - [anon_sym_LBRACK2] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_AMP_CARET] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_AMP_CARET_EQ] = ACTIONS(563), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_COLON_EQ] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [sym_identifier] = ACTIONS(2887), + [anon_sym_LF] = ACTIONS(2887), + [anon_sym_CR] = ACTIONS(2887), + [anon_sym_CR_LF] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2887), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_as] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_COMMA] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_RPAREN] = ACTIONS(2887), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_fn] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2887), + [anon_sym_BANG_EQ] = ACTIONS(2887), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_mut] = ACTIONS(2887), + [anon_sym_COLON] = ACTIONS(3776), + [anon_sym_PLUS_PLUS] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2887), + [anon_sym_QMARK] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2887), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2887), + [anon_sym_json_DOTdecode] = ACTIONS(2887), + [anon_sym_LBRACK2] = ACTIONS(2887), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_CARET] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_GT_GT_GT] = ACTIONS(2887), + [anon_sym_AMP_CARET] = ACTIONS(2887), + [anon_sym_AMP_AMP] = ACTIONS(2887), + [anon_sym_PIPE_PIPE] = ACTIONS(2887), + [anon_sym_or] = ACTIONS(2887), + [sym_none] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_nil] = ACTIONS(2887), + [anon_sym_QMARK_DOT] = ACTIONS(2887), + [anon_sym_POUND_LBRACK] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_DOLLARif] = ACTIONS(2887), + [anon_sym_is] = ACTIONS(2887), + [anon_sym_BANGis] = ACTIONS(2887), + [anon_sym_in] = ACTIONS(2887), + [anon_sym_BANGin] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2887), + [anon_sym_select] = ACTIONS(2887), + [anon_sym_lock] = ACTIONS(2887), + [anon_sym_rlock] = ACTIONS(2887), + [anon_sym_unsafe] = ACTIONS(2887), + [anon_sym_sql] = ACTIONS(2887), + [sym_int_literal] = ACTIONS(2887), + [sym_float_literal] = ACTIONS(2887), + [sym_rune_literal] = ACTIONS(2887), + [anon_sym_SQUOTE] = ACTIONS(2887), + [anon_sym_DQUOTE] = ACTIONS(2887), + [anon_sym_c_SQUOTE] = ACTIONS(2887), + [anon_sym_c_DQUOTE] = ACTIONS(2887), + [anon_sym_r_SQUOTE] = ACTIONS(2887), + [anon_sym_r_DQUOTE] = ACTIONS(2887), + [sym_pseudo_compile_time_identifier] = ACTIONS(2887), + [anon_sym_shared] = ACTIONS(2887), + [anon_sym_map_LBRACK] = ACTIONS(2887), + [anon_sym_chan] = ACTIONS(2887), + [anon_sym_thread] = ACTIONS(2887), + [anon_sym_atomic] = ACTIONS(2887), }, [1189] = { [sym_line_comment] = STATE(1189), [sym_block_comment] = STATE(1189), - [sym_identifier] = ACTIONS(2902), - [anon_sym_LF] = ACTIONS(2902), - [anon_sym_CR] = ACTIONS(2902), - [anon_sym_CR_LF] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2763), + [anon_sym_LF] = ACTIONS(2763), + [anon_sym_CR] = ACTIONS(2763), + [anon_sym_CR_LF] = ACTIONS(2763), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2902), - [anon_sym_as] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2902), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_RBRACE] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2902), - [anon_sym_RPAREN] = ACTIONS(2902), - [anon_sym_PIPE] = ACTIONS(2902), - [anon_sym_fn] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_SLASH] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2902), - [anon_sym_BANG_EQ] = ACTIONS(2902), - [anon_sym_LT_EQ] = ACTIONS(2902), - [anon_sym_GT_EQ] = ACTIONS(2902), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_struct] = ACTIONS(2902), - [anon_sym_mut] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(2902), - [anon_sym_QMARK] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_go] = ACTIONS(2902), - [anon_sym_spawn] = ACTIONS(2902), - [anon_sym_json_DOTdecode] = ACTIONS(2902), - [anon_sym_LBRACK2] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [anon_sym_CARET] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_LT_DASH] = ACTIONS(2902), - [anon_sym_LT_LT] = ACTIONS(2902), - [anon_sym_GT_GT] = ACTIONS(2902), - [anon_sym_GT_GT_GT] = ACTIONS(2902), - [anon_sym_AMP_CARET] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_PIPE_PIPE] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2902), - [sym_none] = ACTIONS(2902), - [sym_true] = ACTIONS(2902), - [sym_false] = ACTIONS(2902), - [sym_nil] = ACTIONS(2902), - [anon_sym_QMARK_DOT] = ACTIONS(2902), - [anon_sym_POUND_LBRACK] = ACTIONS(2902), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_DOLLARif] = ACTIONS(2902), - [anon_sym_is] = ACTIONS(2902), - [anon_sym_BANGis] = ACTIONS(2902), - [anon_sym_in] = ACTIONS(2902), - [anon_sym_BANGin] = ACTIONS(2902), - [anon_sym_match] = ACTIONS(2902), - [anon_sym_select] = ACTIONS(2902), - [anon_sym_lock] = ACTIONS(2902), - [anon_sym_rlock] = ACTIONS(2902), - [anon_sym_unsafe] = ACTIONS(2902), - [anon_sym_sql] = ACTIONS(2902), - [sym_int_literal] = ACTIONS(2902), - [sym_float_literal] = ACTIONS(2902), - [sym_rune_literal] = ACTIONS(2902), - [sym_pseudo_compile_time_identifier] = ACTIONS(2902), - [anon_sym_shared] = ACTIONS(2902), - [anon_sym_map_LBRACK] = ACTIONS(2902), - [anon_sym_chan] = ACTIONS(2902), - [anon_sym_thread] = ACTIONS(2902), - [anon_sym_atomic] = ACTIONS(2902), - [sym___double_quote] = ACTIONS(2902), - [sym___single_quote] = ACTIONS(2902), - [sym___c_double_quote] = ACTIONS(2902), - [sym___c_single_quote] = ACTIONS(2902), - [sym___r_double_quote] = ACTIONS(2902), - [sym___r_single_quote] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(2763), + [anon_sym_DOT] = ACTIONS(2763), + [anon_sym_as] = ACTIONS(2763), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_COMMA] = ACTIONS(2763), + [anon_sym_RBRACE] = ACTIONS(2763), + [anon_sym_LPAREN] = ACTIONS(2763), + [anon_sym_RPAREN] = ACTIONS(2763), + [anon_sym_PIPE] = ACTIONS(2763), + [anon_sym_fn] = ACTIONS(2763), + [anon_sym_PLUS] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_SLASH] = ACTIONS(2763), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(2763), + [anon_sym_GT] = ACTIONS(2763), + [anon_sym_EQ_EQ] = ACTIONS(2763), + [anon_sym_BANG_EQ] = ACTIONS(2763), + [anon_sym_LT_EQ] = ACTIONS(2763), + [anon_sym_GT_EQ] = ACTIONS(2763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2763), + [anon_sym_mut] = ACTIONS(2763), + [anon_sym_PLUS_PLUS] = ACTIONS(2763), + [anon_sym_DASH_DASH] = ACTIONS(2763), + [anon_sym_QMARK] = ACTIONS(2763), + [anon_sym_BANG] = ACTIONS(2763), + [anon_sym_go] = ACTIONS(2763), + [anon_sym_spawn] = ACTIONS(2763), + [anon_sym_json_DOTdecode] = ACTIONS(2763), + [anon_sym_LBRACK2] = ACTIONS(2763), + [anon_sym_TILDE] = ACTIONS(2763), + [anon_sym_CARET] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2763), + [anon_sym_LT_LT] = ACTIONS(2763), + [anon_sym_GT_GT] = ACTIONS(2763), + [anon_sym_GT_GT_GT] = ACTIONS(2763), + [anon_sym_AMP_CARET] = ACTIONS(2763), + [anon_sym_AMP_AMP] = ACTIONS(2763), + [anon_sym_PIPE_PIPE] = ACTIONS(2763), + [anon_sym_or] = ACTIONS(2763), + [sym_none] = ACTIONS(2763), + [sym_true] = ACTIONS(2763), + [sym_false] = ACTIONS(2763), + [sym_nil] = ACTIONS(2763), + [anon_sym_QMARK_DOT] = ACTIONS(2763), + [anon_sym_POUND_LBRACK] = ACTIONS(2763), + [anon_sym_if] = ACTIONS(2763), + [anon_sym_DOLLARif] = ACTIONS(2763), + [anon_sym_is] = ACTIONS(2763), + [anon_sym_BANGis] = ACTIONS(2763), + [anon_sym_in] = ACTIONS(2763), + [anon_sym_BANGin] = ACTIONS(2763), + [anon_sym_match] = ACTIONS(2763), + [anon_sym_select] = ACTIONS(2763), + [anon_sym_lock] = ACTIONS(2763), + [anon_sym_rlock] = ACTIONS(2763), + [anon_sym_unsafe] = ACTIONS(2763), + [anon_sym_sql] = ACTIONS(2763), + [sym_int_literal] = ACTIONS(2763), + [sym_float_literal] = ACTIONS(2763), + [sym_rune_literal] = ACTIONS(2763), + [anon_sym_SQUOTE] = ACTIONS(2763), + [anon_sym_DQUOTE] = ACTIONS(2763), + [anon_sym_c_SQUOTE] = ACTIONS(2763), + [anon_sym_c_DQUOTE] = ACTIONS(2763), + [anon_sym_r_SQUOTE] = ACTIONS(2763), + [anon_sym_r_DQUOTE] = ACTIONS(2763), + [sym_pseudo_compile_time_identifier] = ACTIONS(2763), + [anon_sym_shared] = ACTIONS(2763), + [anon_sym_map_LBRACK] = ACTIONS(2763), + [anon_sym_chan] = ACTIONS(2763), + [anon_sym_thread] = ACTIONS(2763), + [anon_sym_atomic] = ACTIONS(2763), }, [1190] = { [sym_line_comment] = STATE(1190), [sym_block_comment] = STATE(1190), - [sym_identifier] = ACTIONS(2906), - [anon_sym_LF] = ACTIONS(2906), - [anon_sym_CR] = ACTIONS(2906), - [anon_sym_CR_LF] = ACTIONS(2906), + [sym_identifier] = ACTIONS(2089), + [anon_sym_LF] = ACTIONS(2089), + [anon_sym_CR] = ACTIONS(2089), + [anon_sym_CR_LF] = ACTIONS(2089), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2906), - [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_as] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2906), - [anon_sym_RBRACE] = ACTIONS(2906), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_RPAREN] = ACTIONS(2906), - [anon_sym_PIPE] = ACTIONS(2906), - [anon_sym_fn] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2906), - [anon_sym_SLASH] = ACTIONS(2906), - [anon_sym_PERCENT] = ACTIONS(2906), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_GT] = ACTIONS(2906), - [anon_sym_EQ_EQ] = ACTIONS(2906), - [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_LT_EQ] = ACTIONS(2906), - [anon_sym_GT_EQ] = ACTIONS(2906), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_struct] = ACTIONS(2906), - [anon_sym_mut] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2906), - [anon_sym_DASH_DASH] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2906), - [anon_sym_go] = ACTIONS(2906), - [anon_sym_spawn] = ACTIONS(2906), - [anon_sym_json_DOTdecode] = ACTIONS(2906), - [anon_sym_LBRACK2] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2906), - [anon_sym_CARET] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2906), - [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_AMP_CARET] = ACTIONS(2906), - [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_PIPE_PIPE] = ACTIONS(2906), - [anon_sym_or] = ACTIONS(2906), - [sym_none] = ACTIONS(2906), - [sym_true] = ACTIONS(2906), - [sym_false] = ACTIONS(2906), - [sym_nil] = ACTIONS(2906), - [anon_sym_QMARK_DOT] = ACTIONS(2906), - [anon_sym_POUND_LBRACK] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_DOLLARif] = ACTIONS(2906), - [anon_sym_is] = ACTIONS(2906), - [anon_sym_BANGis] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2906), - [anon_sym_BANGin] = ACTIONS(2906), - [anon_sym_match] = ACTIONS(2906), - [anon_sym_select] = ACTIONS(2906), - [anon_sym_lock] = ACTIONS(2906), - [anon_sym_rlock] = ACTIONS(2906), - [anon_sym_unsafe] = ACTIONS(2906), - [anon_sym_sql] = ACTIONS(2906), - [sym_int_literal] = ACTIONS(2906), - [sym_float_literal] = ACTIONS(2906), - [sym_rune_literal] = ACTIONS(2906), - [sym_pseudo_compile_time_identifier] = ACTIONS(2906), - [anon_sym_shared] = ACTIONS(2906), - [anon_sym_map_LBRACK] = ACTIONS(2906), - [anon_sym_chan] = ACTIONS(2906), - [anon_sym_thread] = ACTIONS(2906), - [anon_sym_atomic] = ACTIONS(2906), - [sym___double_quote] = ACTIONS(2906), - [sym___single_quote] = ACTIONS(2906), - [sym___c_double_quote] = ACTIONS(2906), - [sym___c_single_quote] = ACTIONS(2906), - [sym___r_double_quote] = ACTIONS(2906), - [sym___r_single_quote] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_DOT] = ACTIONS(2089), + [anon_sym_as] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(2089), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_RPAREN] = ACTIONS(2089), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_fn] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_PERCENT] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_GT] = ACTIONS(2089), + [anon_sym_EQ_EQ] = ACTIONS(2089), + [anon_sym_BANG_EQ] = ACTIONS(2089), + [anon_sym_LT_EQ] = ACTIONS(2089), + [anon_sym_GT_EQ] = ACTIONS(2089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_struct] = ACTIONS(2089), + [anon_sym_mut] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(2089), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_QMARK] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_go] = ACTIONS(2089), + [anon_sym_spawn] = ACTIONS(2089), + [anon_sym_json_DOTdecode] = ACTIONS(2089), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2089), + [anon_sym_CARET] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_LT_DASH] = ACTIONS(2089), + [anon_sym_LT_LT] = ACTIONS(2089), + [anon_sym_GT_GT] = ACTIONS(2089), + [anon_sym_GT_GT_GT] = ACTIONS(2089), + [anon_sym_AMP_CARET] = ACTIONS(2089), + [anon_sym_AMP_AMP] = ACTIONS(2089), + [anon_sym_PIPE_PIPE] = ACTIONS(2089), + [anon_sym_or] = ACTIONS(2089), + [sym_none] = ACTIONS(2089), + [sym_true] = ACTIONS(2089), + [sym_false] = ACTIONS(2089), + [sym_nil] = ACTIONS(2089), + [anon_sym_QMARK_DOT] = ACTIONS(2089), + [anon_sym_POUND_LBRACK] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(2089), + [anon_sym_is] = ACTIONS(2089), + [anon_sym_BANGis] = ACTIONS(2089), + [anon_sym_in] = ACTIONS(2089), + [anon_sym_BANGin] = ACTIONS(2089), + [anon_sym_match] = ACTIONS(2089), + [anon_sym_select] = ACTIONS(2089), + [anon_sym_lock] = ACTIONS(2089), + [anon_sym_rlock] = ACTIONS(2089), + [anon_sym_unsafe] = ACTIONS(2089), + [anon_sym_sql] = ACTIONS(2089), + [sym_int_literal] = ACTIONS(2089), + [sym_float_literal] = ACTIONS(2089), + [sym_rune_literal] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2089), + [anon_sym_c_SQUOTE] = ACTIONS(2089), + [anon_sym_c_DQUOTE] = ACTIONS(2089), + [anon_sym_r_SQUOTE] = ACTIONS(2089), + [anon_sym_r_DQUOTE] = ACTIONS(2089), + [sym_pseudo_compile_time_identifier] = ACTIONS(2089), + [anon_sym_shared] = ACTIONS(2089), + [anon_sym_map_LBRACK] = ACTIONS(2089), + [anon_sym_chan] = ACTIONS(2089), + [anon_sym_thread] = ACTIONS(2089), + [anon_sym_atomic] = ACTIONS(2089), }, [1191] = { [sym_line_comment] = STATE(1191), [sym_block_comment] = STATE(1191), - [sym_identifier] = ACTIONS(2914), - [anon_sym_LF] = ACTIONS(2914), - [anon_sym_CR] = ACTIONS(2914), - [anon_sym_CR_LF] = ACTIONS(2914), + [sym_identifier] = ACTIONS(2055), + [anon_sym_LF] = ACTIONS(2055), + [anon_sym_CR] = ACTIONS(2055), + [anon_sym_CR_LF] = ACTIONS(2055), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2914), - [anon_sym_DOT] = ACTIONS(2914), - [anon_sym_as] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_RBRACE] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym_RPAREN] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2914), - [anon_sym_fn] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_SLASH] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_GT] = ACTIONS(2914), - [anon_sym_EQ_EQ] = ACTIONS(2914), - [anon_sym_BANG_EQ] = ACTIONS(2914), - [anon_sym_LT_EQ] = ACTIONS(2914), - [anon_sym_GT_EQ] = ACTIONS(2914), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_mut] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_QMARK] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_go] = ACTIONS(2914), - [anon_sym_spawn] = ACTIONS(2914), - [anon_sym_json_DOTdecode] = ACTIONS(2914), - [anon_sym_LBRACK2] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [anon_sym_CARET] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_LT_DASH] = ACTIONS(2914), - [anon_sym_LT_LT] = ACTIONS(2914), - [anon_sym_GT_GT] = ACTIONS(2914), - [anon_sym_GT_GT_GT] = ACTIONS(2914), - [anon_sym_AMP_CARET] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_PIPE_PIPE] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2914), - [sym_none] = ACTIONS(2914), - [sym_true] = ACTIONS(2914), - [sym_false] = ACTIONS(2914), - [sym_nil] = ACTIONS(2914), - [anon_sym_QMARK_DOT] = ACTIONS(2914), - [anon_sym_POUND_LBRACK] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_DOLLARif] = ACTIONS(2914), - [anon_sym_is] = ACTIONS(2914), - [anon_sym_BANGis] = ACTIONS(2914), - [anon_sym_in] = ACTIONS(2914), - [anon_sym_BANGin] = ACTIONS(2914), - [anon_sym_match] = ACTIONS(2914), - [anon_sym_select] = ACTIONS(2914), - [anon_sym_lock] = ACTIONS(2914), - [anon_sym_rlock] = ACTIONS(2914), - [anon_sym_unsafe] = ACTIONS(2914), - [anon_sym_sql] = ACTIONS(2914), - [sym_int_literal] = ACTIONS(2914), - [sym_float_literal] = ACTIONS(2914), - [sym_rune_literal] = ACTIONS(2914), - [sym_pseudo_compile_time_identifier] = ACTIONS(2914), - [anon_sym_shared] = ACTIONS(2914), - [anon_sym_map_LBRACK] = ACTIONS(2914), - [anon_sym_chan] = ACTIONS(2914), - [anon_sym_thread] = ACTIONS(2914), - [anon_sym_atomic] = ACTIONS(2914), - [sym___double_quote] = ACTIONS(2914), - [sym___single_quote] = ACTIONS(2914), - [sym___c_double_quote] = ACTIONS(2914), - [sym___c_single_quote] = ACTIONS(2914), - [sym___r_double_quote] = ACTIONS(2914), - [sym___r_single_quote] = ACTIONS(2914), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_COMMA] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_RPAREN] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(2055), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_PERCENT] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_EQ_EQ] = ACTIONS(2055), + [anon_sym_BANG_EQ] = ACTIONS(2055), + [anon_sym_LT_EQ] = ACTIONS(2055), + [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_struct] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2055), + [anon_sym_QMARK] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2055), + [anon_sym_spawn] = ACTIONS(2055), + [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_LBRACK2] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_LT] = ACTIONS(2055), + [anon_sym_GT_GT] = ACTIONS(2055), + [anon_sym_GT_GT_GT] = ACTIONS(2055), + [anon_sym_AMP_CARET] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2055), + [anon_sym_PIPE_PIPE] = ACTIONS(2055), + [anon_sym_or] = ACTIONS(2055), + [sym_none] = ACTIONS(2055), + [sym_true] = ACTIONS(2055), + [sym_false] = ACTIONS(2055), + [sym_nil] = ACTIONS(2055), + [anon_sym_QMARK_DOT] = ACTIONS(2055), + [anon_sym_POUND_LBRACK] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_DOLLARif] = ACTIONS(2055), + [anon_sym_is] = ACTIONS(2055), + [anon_sym_BANGis] = ACTIONS(2055), + [anon_sym_in] = ACTIONS(2055), + [anon_sym_BANGin] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_select] = ACTIONS(2055), + [anon_sym_lock] = ACTIONS(2055), + [anon_sym_rlock] = ACTIONS(2055), + [anon_sym_unsafe] = ACTIONS(2055), + [anon_sym_sql] = ACTIONS(2055), + [sym_int_literal] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), + [sym_rune_literal] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2055), + [anon_sym_c_SQUOTE] = ACTIONS(2055), + [anon_sym_c_DQUOTE] = ACTIONS(2055), + [anon_sym_r_SQUOTE] = ACTIONS(2055), + [anon_sym_r_DQUOTE] = ACTIONS(2055), + [sym_pseudo_compile_time_identifier] = ACTIONS(2055), + [anon_sym_shared] = ACTIONS(2055), + [anon_sym_map_LBRACK] = ACTIONS(2055), + [anon_sym_chan] = ACTIONS(2055), + [anon_sym_thread] = ACTIONS(2055), + [anon_sym_atomic] = ACTIONS(2055), }, [1192] = { [sym_line_comment] = STATE(1192), [sym_block_comment] = STATE(1192), - [sym_identifier] = ACTIONS(2692), - [anon_sym_LF] = ACTIONS(2692), - [anon_sym_CR] = ACTIONS(2692), - [anon_sym_CR_LF] = ACTIONS(2692), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_DOT] = ACTIONS(2692), - [anon_sym_as] = ACTIONS(2692), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_COMMA] = ACTIONS(2692), - [anon_sym_RBRACE] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_fn] = ACTIONS(2692), - [anon_sym_PLUS] = ACTIONS(2692), - [anon_sym_DASH] = ACTIONS(2692), - [anon_sym_STAR] = ACTIONS(2692), - [anon_sym_SLASH] = ACTIONS(2692), - [anon_sym_PERCENT] = ACTIONS(2692), - [anon_sym_LT] = ACTIONS(2692), - [anon_sym_GT] = ACTIONS(2692), - [anon_sym_EQ_EQ] = ACTIONS(2692), - [anon_sym_BANG_EQ] = ACTIONS(2692), - [anon_sym_LT_EQ] = ACTIONS(2692), - [anon_sym_GT_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_struct] = ACTIONS(2692), - [anon_sym_mut] = ACTIONS(2692), - [anon_sym_PLUS_PLUS] = ACTIONS(2692), - [anon_sym_DASH_DASH] = ACTIONS(2692), - [anon_sym_QMARK] = ACTIONS(2692), - [anon_sym_BANG] = ACTIONS(2692), - [anon_sym_go] = ACTIONS(2692), - [anon_sym_spawn] = ACTIONS(2692), - [anon_sym_json_DOTdecode] = ACTIONS(2692), - [anon_sym_LBRACK2] = ACTIONS(2692), - [anon_sym_TILDE] = ACTIONS(2692), - [anon_sym_CARET] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2692), - [anon_sym_LT_DASH] = ACTIONS(2692), - [anon_sym_LT_LT] = ACTIONS(2692), - [anon_sym_GT_GT] = ACTIONS(2692), - [anon_sym_GT_GT_GT] = ACTIONS(2692), - [anon_sym_AMP_CARET] = ACTIONS(2692), - [anon_sym_AMP_AMP] = ACTIONS(2692), - [anon_sym_PIPE_PIPE] = ACTIONS(2692), - [anon_sym_or] = ACTIONS(2692), - [sym_none] = ACTIONS(2692), - [sym_true] = ACTIONS(2692), - [sym_false] = ACTIONS(2692), - [sym_nil] = ACTIONS(2692), - [anon_sym_QMARK_DOT] = ACTIONS(2692), - [anon_sym_POUND_LBRACK] = ACTIONS(2692), - [anon_sym_if] = ACTIONS(2692), - [anon_sym_DOLLARif] = ACTIONS(2692), - [anon_sym_is] = ACTIONS(2692), - [anon_sym_BANGis] = ACTIONS(2692), - [anon_sym_in] = ACTIONS(2692), - [anon_sym_BANGin] = ACTIONS(2692), - [anon_sym_match] = ACTIONS(2692), - [anon_sym_select] = ACTIONS(2692), - [anon_sym_lock] = ACTIONS(2692), - [anon_sym_rlock] = ACTIONS(2692), - [anon_sym_unsafe] = ACTIONS(2692), - [anon_sym_sql] = ACTIONS(2692), - [sym_int_literal] = ACTIONS(2692), - [sym_float_literal] = ACTIONS(2692), - [sym_rune_literal] = ACTIONS(2692), - [sym_pseudo_compile_time_identifier] = ACTIONS(2692), - [anon_sym_shared] = ACTIONS(2692), - [anon_sym_map_LBRACK] = ACTIONS(2692), - [anon_sym_chan] = ACTIONS(2692), - [anon_sym_thread] = ACTIONS(2692), - [anon_sym_atomic] = ACTIONS(2692), - [sym___double_quote] = ACTIONS(2692), - [sym___single_quote] = ACTIONS(2692), - [sym___c_double_quote] = ACTIONS(2692), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2692), - [sym___r_single_quote] = ACTIONS(2692), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2311), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_as] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_COMMA] = ACTIONS(625), + [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(627), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(627), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(625), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_LBRACK2] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_LT_DASH] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(627), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_GT_GT_GT] = ACTIONS(627), + [anon_sym_AMP_CARET] = ACTIONS(627), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [anon_sym_or] = ACTIONS(627), + [anon_sym_QMARK_DOT] = ACTIONS(625), + [anon_sym_POUND_LBRACK] = ACTIONS(625), + [anon_sym_is] = ACTIONS(627), + [anon_sym_BANGis] = ACTIONS(625), + [anon_sym_in] = ACTIONS(627), + [anon_sym_BANGin] = ACTIONS(625), + [anon_sym_STAR_EQ] = ACTIONS(625), + [anon_sym_SLASH_EQ] = ACTIONS(625), + [anon_sym_PERCENT_EQ] = ACTIONS(625), + [anon_sym_LT_LT_EQ] = ACTIONS(625), + [anon_sym_GT_GT_EQ] = ACTIONS(625), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(625), + [anon_sym_AMP_EQ] = ACTIONS(625), + [anon_sym_AMP_CARET_EQ] = ACTIONS(625), + [anon_sym_PLUS_EQ] = ACTIONS(625), + [anon_sym_DASH_EQ] = ACTIONS(625), + [anon_sym_PIPE_EQ] = ACTIONS(625), + [anon_sym_CARET_EQ] = ACTIONS(625), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [1193] = { [sym_line_comment] = STATE(1193), [sym_block_comment] = STATE(1193), - [sym_identifier] = ACTIONS(2143), - [anon_sym_LF] = ACTIONS(2143), - [anon_sym_CR] = ACTIONS(2143), - [anon_sym_CR_LF] = ACTIONS(2143), + [sym_identifier] = ACTIONS(2507), + [anon_sym_LF] = ACTIONS(2507), + [anon_sym_CR] = ACTIONS(2507), + [anon_sym_CR_LF] = ACTIONS(2507), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2143), - [anon_sym_DOT] = ACTIONS(2143), - [anon_sym_as] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_COMMA] = ACTIONS(2143), - [anon_sym_RBRACE] = ACTIONS(2143), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2143), - [anon_sym_PIPE] = ACTIONS(2143), - [anon_sym_fn] = ACTIONS(2143), - [anon_sym_PLUS] = ACTIONS(2143), - [anon_sym_DASH] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(2143), - [anon_sym_SLASH] = ACTIONS(2143), - [anon_sym_PERCENT] = ACTIONS(2143), - [anon_sym_LT] = ACTIONS(2143), - [anon_sym_GT] = ACTIONS(2143), - [anon_sym_EQ_EQ] = ACTIONS(2143), - [anon_sym_BANG_EQ] = ACTIONS(2143), - [anon_sym_LT_EQ] = ACTIONS(2143), - [anon_sym_GT_EQ] = ACTIONS(2143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2143), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2143), - [anon_sym_mut] = ACTIONS(2143), - [anon_sym_PLUS_PLUS] = ACTIONS(2143), - [anon_sym_DASH_DASH] = ACTIONS(2143), - [anon_sym_QMARK] = ACTIONS(2143), - [anon_sym_BANG] = ACTIONS(2143), - [anon_sym_go] = ACTIONS(2143), - [anon_sym_spawn] = ACTIONS(2143), - [anon_sym_json_DOTdecode] = ACTIONS(2143), - [anon_sym_LBRACK2] = ACTIONS(2143), - [anon_sym_TILDE] = ACTIONS(2143), - [anon_sym_CARET] = ACTIONS(2143), - [anon_sym_AMP] = ACTIONS(2143), - [anon_sym_LT_DASH] = ACTIONS(2143), - [anon_sym_LT_LT] = ACTIONS(2143), - [anon_sym_GT_GT] = ACTIONS(2143), - [anon_sym_GT_GT_GT] = ACTIONS(2143), - [anon_sym_AMP_CARET] = ACTIONS(2143), - [anon_sym_AMP_AMP] = ACTIONS(2143), - [anon_sym_PIPE_PIPE] = ACTIONS(2143), - [anon_sym_or] = ACTIONS(2143), - [sym_none] = ACTIONS(2143), - [sym_true] = ACTIONS(2143), - [sym_false] = ACTIONS(2143), - [sym_nil] = ACTIONS(2143), - [anon_sym_QMARK_DOT] = ACTIONS(2143), - [anon_sym_POUND_LBRACK] = ACTIONS(2143), - [anon_sym_if] = ACTIONS(2143), - [anon_sym_DOLLARif] = ACTIONS(2143), - [anon_sym_is] = ACTIONS(2143), - [anon_sym_BANGis] = ACTIONS(2143), - [anon_sym_in] = ACTIONS(2143), - [anon_sym_BANGin] = ACTIONS(2143), - [anon_sym_match] = ACTIONS(2143), - [anon_sym_select] = ACTIONS(2143), - [anon_sym_lock] = ACTIONS(2143), - [anon_sym_rlock] = ACTIONS(2143), - [anon_sym_unsafe] = ACTIONS(2143), - [anon_sym_sql] = ACTIONS(2143), - [sym_int_literal] = ACTIONS(2143), - [sym_float_literal] = ACTIONS(2143), - [sym_rune_literal] = ACTIONS(2143), - [sym_pseudo_compile_time_identifier] = ACTIONS(2143), - [anon_sym_shared] = ACTIONS(2143), - [anon_sym_map_LBRACK] = ACTIONS(2143), - [anon_sym_chan] = ACTIONS(2143), - [anon_sym_thread] = ACTIONS(2143), - [anon_sym_atomic] = ACTIONS(2143), - [sym___double_quote] = ACTIONS(2143), - [sym___single_quote] = ACTIONS(2143), - [sym___c_double_quote] = ACTIONS(2143), - [sym___c_single_quote] = ACTIONS(2143), - [sym___r_double_quote] = ACTIONS(2143), - [sym___r_single_quote] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_DOT] = ACTIONS(2507), + [anon_sym_as] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_COMMA] = ACTIONS(2507), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_RPAREN] = ACTIONS(2507), + [anon_sym_PIPE] = ACTIONS(2507), + [anon_sym_fn] = ACTIONS(2507), + [anon_sym_PLUS] = ACTIONS(2507), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_GT] = ACTIONS(2507), + [anon_sym_EQ_EQ] = ACTIONS(2507), + [anon_sym_BANG_EQ] = ACTIONS(2507), + [anon_sym_LT_EQ] = ACTIONS(2507), + [anon_sym_GT_EQ] = ACTIONS(2507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2507), + [anon_sym_LBRACK] = ACTIONS(2505), + [anon_sym_struct] = ACTIONS(2507), + [anon_sym_mut] = ACTIONS(2507), + [anon_sym_PLUS_PLUS] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2507), + [anon_sym_QMARK] = ACTIONS(2507), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_go] = ACTIONS(2507), + [anon_sym_spawn] = ACTIONS(2507), + [anon_sym_json_DOTdecode] = ACTIONS(2507), + [anon_sym_LBRACK2] = ACTIONS(2507), + [anon_sym_TILDE] = ACTIONS(2507), + [anon_sym_CARET] = ACTIONS(2507), + [anon_sym_AMP] = ACTIONS(2507), + [anon_sym_LT_DASH] = ACTIONS(2507), + [anon_sym_LT_LT] = ACTIONS(2507), + [anon_sym_GT_GT] = ACTIONS(2507), + [anon_sym_GT_GT_GT] = ACTIONS(2507), + [anon_sym_AMP_CARET] = ACTIONS(2507), + [anon_sym_AMP_AMP] = ACTIONS(2507), + [anon_sym_PIPE_PIPE] = ACTIONS(2507), + [anon_sym_or] = ACTIONS(2507), + [sym_none] = ACTIONS(2507), + [sym_true] = ACTIONS(2507), + [sym_false] = ACTIONS(2507), + [sym_nil] = ACTIONS(2507), + [anon_sym_QMARK_DOT] = ACTIONS(2507), + [anon_sym_POUND_LBRACK] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_DOLLARif] = ACTIONS(2507), + [anon_sym_is] = ACTIONS(2507), + [anon_sym_BANGis] = ACTIONS(2507), + [anon_sym_in] = ACTIONS(2507), + [anon_sym_BANGin] = ACTIONS(2507), + [anon_sym_match] = ACTIONS(2507), + [anon_sym_select] = ACTIONS(2507), + [anon_sym_lock] = ACTIONS(2507), + [anon_sym_rlock] = ACTIONS(2507), + [anon_sym_unsafe] = ACTIONS(2507), + [anon_sym_sql] = ACTIONS(2507), + [sym_int_literal] = ACTIONS(2507), + [sym_float_literal] = ACTIONS(2507), + [sym_rune_literal] = ACTIONS(2507), + [anon_sym_SQUOTE] = ACTIONS(2507), + [anon_sym_DQUOTE] = ACTIONS(2507), + [anon_sym_c_SQUOTE] = ACTIONS(2507), + [anon_sym_c_DQUOTE] = ACTIONS(2507), + [anon_sym_r_SQUOTE] = ACTIONS(2507), + [anon_sym_r_DQUOTE] = ACTIONS(2507), + [sym_pseudo_compile_time_identifier] = ACTIONS(2507), + [anon_sym_shared] = ACTIONS(2507), + [anon_sym_map_LBRACK] = ACTIONS(2507), + [anon_sym_chan] = ACTIONS(2507), + [anon_sym_thread] = ACTIONS(2507), + [anon_sym_atomic] = ACTIONS(2507), }, [1194] = { [sym_line_comment] = STATE(1194), [sym_block_comment] = STATE(1194), - [sym_identifier] = ACTIONS(2850), - [anon_sym_LF] = ACTIONS(2850), - [anon_sym_CR] = ACTIONS(2850), - [anon_sym_CR_LF] = ACTIONS(2850), + [sym_identifier] = ACTIONS(2729), + [anon_sym_LF] = ACTIONS(2729), + [anon_sym_CR] = ACTIONS(2729), + [anon_sym_CR_LF] = ACTIONS(2729), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2850), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_as] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2850), - [anon_sym_RBRACE] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_RPAREN] = ACTIONS(2850), - [anon_sym_PIPE] = ACTIONS(2850), - [anon_sym_fn] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_SLASH] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_GT] = ACTIONS(2850), - [anon_sym_EQ_EQ] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_LT_EQ] = ACTIONS(2850), - [anon_sym_GT_EQ] = ACTIONS(2850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_struct] = ACTIONS(2850), - [anon_sym_mut] = ACTIONS(2850), - [anon_sym_PLUS_PLUS] = ACTIONS(2850), - [anon_sym_DASH_DASH] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2850), - [anon_sym_go] = ACTIONS(2850), - [anon_sym_spawn] = ACTIONS(2850), - [anon_sym_json_DOTdecode] = ACTIONS(2850), - [anon_sym_LBRACK2] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_CARET] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_LT_LT] = ACTIONS(2850), - [anon_sym_GT_GT] = ACTIONS(2850), - [anon_sym_GT_GT_GT] = ACTIONS(2850), - [anon_sym_AMP_CARET] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_or] = ACTIONS(2850), - [sym_none] = ACTIONS(2850), - [sym_true] = ACTIONS(2850), - [sym_false] = ACTIONS(2850), - [sym_nil] = ACTIONS(2850), - [anon_sym_QMARK_DOT] = ACTIONS(2850), - [anon_sym_POUND_LBRACK] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_DOLLARif] = ACTIONS(2850), - [anon_sym_is] = ACTIONS(2850), - [anon_sym_BANGis] = ACTIONS(2850), - [anon_sym_in] = ACTIONS(2850), - [anon_sym_BANGin] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_select] = ACTIONS(2850), - [anon_sym_lock] = ACTIONS(2850), - [anon_sym_rlock] = ACTIONS(2850), - [anon_sym_unsafe] = ACTIONS(2850), - [anon_sym_sql] = ACTIONS(2850), - [sym_int_literal] = ACTIONS(2850), - [sym_float_literal] = ACTIONS(2850), - [sym_rune_literal] = ACTIONS(2850), - [sym_pseudo_compile_time_identifier] = ACTIONS(2850), - [anon_sym_shared] = ACTIONS(2850), - [anon_sym_map_LBRACK] = ACTIONS(2850), - [anon_sym_chan] = ACTIONS(2850), - [anon_sym_thread] = ACTIONS(2850), - [anon_sym_atomic] = ACTIONS(2850), - [sym___double_quote] = ACTIONS(2850), - [sym___single_quote] = ACTIONS(2850), - [sym___c_double_quote] = ACTIONS(2850), - [sym___c_single_quote] = ACTIONS(2850), - [sym___r_double_quote] = ACTIONS(2850), - [sym___r_single_quote] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2729), + [anon_sym_DOT] = ACTIONS(2729), + [anon_sym_as] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2729), + [anon_sym_COMMA] = ACTIONS(2729), + [anon_sym_RBRACE] = ACTIONS(2729), + [anon_sym_LPAREN] = ACTIONS(2729), + [anon_sym_RPAREN] = ACTIONS(2729), + [anon_sym_PIPE] = ACTIONS(2729), + [anon_sym_fn] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_SLASH] = ACTIONS(2729), + [anon_sym_PERCENT] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(2729), + [anon_sym_GT] = ACTIONS(2729), + [anon_sym_EQ_EQ] = ACTIONS(2729), + [anon_sym_BANG_EQ] = ACTIONS(2729), + [anon_sym_LT_EQ] = ACTIONS(2729), + [anon_sym_GT_EQ] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), + [anon_sym_LBRACK] = ACTIONS(2727), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_mut] = ACTIONS(2729), + [anon_sym_PLUS_PLUS] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2729), + [anon_sym_QMARK] = ACTIONS(2729), + [anon_sym_BANG] = ACTIONS(2729), + [anon_sym_go] = ACTIONS(2729), + [anon_sym_spawn] = ACTIONS(2729), + [anon_sym_json_DOTdecode] = ACTIONS(2729), + [anon_sym_LBRACK2] = ACTIONS(2729), + [anon_sym_TILDE] = ACTIONS(2729), + [anon_sym_CARET] = ACTIONS(2729), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_LT_DASH] = ACTIONS(2729), + [anon_sym_LT_LT] = ACTIONS(2729), + [anon_sym_GT_GT] = ACTIONS(2729), + [anon_sym_GT_GT_GT] = ACTIONS(2729), + [anon_sym_AMP_CARET] = ACTIONS(2729), + [anon_sym_AMP_AMP] = ACTIONS(2729), + [anon_sym_PIPE_PIPE] = ACTIONS(2729), + [anon_sym_or] = ACTIONS(2729), + [sym_none] = ACTIONS(2729), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_nil] = ACTIONS(2729), + [anon_sym_QMARK_DOT] = ACTIONS(2729), + [anon_sym_POUND_LBRACK] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_DOLLARif] = ACTIONS(2729), + [anon_sym_is] = ACTIONS(2729), + [anon_sym_BANGis] = ACTIONS(2729), + [anon_sym_in] = ACTIONS(2729), + [anon_sym_BANGin] = ACTIONS(2729), + [anon_sym_match] = ACTIONS(2729), + [anon_sym_select] = ACTIONS(2729), + [anon_sym_lock] = ACTIONS(2729), + [anon_sym_rlock] = ACTIONS(2729), + [anon_sym_unsafe] = ACTIONS(2729), + [anon_sym_sql] = ACTIONS(2729), + [sym_int_literal] = ACTIONS(2729), + [sym_float_literal] = ACTIONS(2729), + [sym_rune_literal] = ACTIONS(2729), + [anon_sym_SQUOTE] = ACTIONS(2729), + [anon_sym_DQUOTE] = ACTIONS(2729), + [anon_sym_c_SQUOTE] = ACTIONS(2729), + [anon_sym_c_DQUOTE] = ACTIONS(2729), + [anon_sym_r_SQUOTE] = ACTIONS(2729), + [anon_sym_r_DQUOTE] = ACTIONS(2729), + [sym_pseudo_compile_time_identifier] = ACTIONS(2729), + [anon_sym_shared] = ACTIONS(2729), + [anon_sym_map_LBRACK] = ACTIONS(2729), + [anon_sym_chan] = ACTIONS(2729), + [anon_sym_thread] = ACTIONS(2729), + [anon_sym_atomic] = ACTIONS(2729), }, [1195] = { [sym_line_comment] = STATE(1195), [sym_block_comment] = STATE(1195), - [sym_reference_expression] = STATE(4433), - [sym_type_reference_expression] = STATE(1899), - [sym_plain_type] = STATE(1940), - [sym__plain_type_without_special] = STATE(2006), - [sym_anon_struct_type] = STATE(2005), - [sym_multi_return_type] = STATE(2006), - [sym_result_type] = STATE(2006), - [sym_option_type] = STATE(2006), - [sym_qualified_type] = STATE(1899), - [sym_fixed_array_type] = STATE(2005), - [sym_array_type] = STATE(2005), - [sym_pointer_type] = STATE(2005), - [sym_wrong_pointer_type] = STATE(2005), - [sym_map_type] = STATE(2005), - [sym_channel_type] = STATE(2005), - [sym_shared_type] = STATE(2005), - [sym_thread_type] = STATE(2005), - [sym_atomic_type] = STATE(2005), - [sym_generic_type] = STATE(2005), - [sym_function_type] = STATE(2005), - [sym_identifier] = ACTIONS(3758), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(3760), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3762), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3764), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(3766), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(3768), - [anon_sym_BANG] = ACTIONS(3770), - [anon_sym_LBRACK2] = ACTIONS(3772), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3774), - [anon_sym_LT_DASH] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_STAR_EQ] = ACTIONS(585), - [anon_sym_SLASH_EQ] = ACTIONS(585), - [anon_sym_PERCENT_EQ] = ACTIONS(585), - [anon_sym_LT_LT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(585), - [anon_sym_AMP_EQ] = ACTIONS(585), - [anon_sym_AMP_CARET_EQ] = ACTIONS(585), - [anon_sym_PLUS_EQ] = ACTIONS(585), - [anon_sym_DASH_EQ] = ACTIONS(585), - [anon_sym_PIPE_EQ] = ACTIONS(585), - [anon_sym_CARET_EQ] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(3776), - [anon_sym_map_LBRACK] = ACTIONS(3778), - [anon_sym_chan] = ACTIONS(3780), - [anon_sym_thread] = ACTIONS(3782), - [anon_sym_atomic] = ACTIONS(3784), + [sym_identifier] = ACTIONS(2725), + [anon_sym_LF] = ACTIONS(2725), + [anon_sym_CR] = ACTIONS(2725), + [anon_sym_CR_LF] = ACTIONS(2725), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2725), + [anon_sym_DOT] = ACTIONS(2725), + [anon_sym_as] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_COMMA] = ACTIONS(2725), + [anon_sym_RBRACE] = ACTIONS(2725), + [anon_sym_LPAREN] = ACTIONS(2725), + [anon_sym_RPAREN] = ACTIONS(2725), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_fn] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_SLASH] = ACTIONS(2725), + [anon_sym_PERCENT] = ACTIONS(2725), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_GT] = ACTIONS(2725), + [anon_sym_EQ_EQ] = ACTIONS(2725), + [anon_sym_BANG_EQ] = ACTIONS(2725), + [anon_sym_LT_EQ] = ACTIONS(2725), + [anon_sym_GT_EQ] = ACTIONS(2725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2723), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_mut] = ACTIONS(2725), + [anon_sym_PLUS_PLUS] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2725), + [anon_sym_QMARK] = ACTIONS(2725), + [anon_sym_BANG] = ACTIONS(2725), + [anon_sym_go] = ACTIONS(2725), + [anon_sym_spawn] = ACTIONS(2725), + [anon_sym_json_DOTdecode] = ACTIONS(2725), + [anon_sym_LBRACK2] = ACTIONS(2725), + [anon_sym_TILDE] = ACTIONS(2725), + [anon_sym_CARET] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_LT_DASH] = ACTIONS(2725), + [anon_sym_LT_LT] = ACTIONS(2725), + [anon_sym_GT_GT] = ACTIONS(2725), + [anon_sym_GT_GT_GT] = ACTIONS(2725), + [anon_sym_AMP_CARET] = ACTIONS(2725), + [anon_sym_AMP_AMP] = ACTIONS(2725), + [anon_sym_PIPE_PIPE] = ACTIONS(2725), + [anon_sym_or] = ACTIONS(2725), + [sym_none] = ACTIONS(2725), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [sym_nil] = ACTIONS(2725), + [anon_sym_QMARK_DOT] = ACTIONS(2725), + [anon_sym_POUND_LBRACK] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_DOLLARif] = ACTIONS(2725), + [anon_sym_is] = ACTIONS(2725), + [anon_sym_BANGis] = ACTIONS(2725), + [anon_sym_in] = ACTIONS(2725), + [anon_sym_BANGin] = ACTIONS(2725), + [anon_sym_match] = ACTIONS(2725), + [anon_sym_select] = ACTIONS(2725), + [anon_sym_lock] = ACTIONS(2725), + [anon_sym_rlock] = ACTIONS(2725), + [anon_sym_unsafe] = ACTIONS(2725), + [anon_sym_sql] = ACTIONS(2725), + [sym_int_literal] = ACTIONS(2725), + [sym_float_literal] = ACTIONS(2725), + [sym_rune_literal] = ACTIONS(2725), + [anon_sym_SQUOTE] = ACTIONS(2725), + [anon_sym_DQUOTE] = ACTIONS(2725), + [anon_sym_c_SQUOTE] = ACTIONS(2725), + [anon_sym_c_DQUOTE] = ACTIONS(2725), + [anon_sym_r_SQUOTE] = ACTIONS(2725), + [anon_sym_r_DQUOTE] = ACTIONS(2725), + [sym_pseudo_compile_time_identifier] = ACTIONS(2725), + [anon_sym_shared] = ACTIONS(2725), + [anon_sym_map_LBRACK] = ACTIONS(2725), + [anon_sym_chan] = ACTIONS(2725), + [anon_sym_thread] = ACTIONS(2725), + [anon_sym_atomic] = ACTIONS(2725), }, [1196] = { [sym_line_comment] = STATE(1196), [sym_block_comment] = STATE(1196), - [sym_reference_expression] = STATE(4433), - [sym_type_reference_expression] = STATE(1899), - [sym_plain_type] = STATE(2013), - [sym__plain_type_without_special] = STATE(2006), - [sym_anon_struct_type] = STATE(2005), - [sym_multi_return_type] = STATE(2006), - [sym_result_type] = STATE(2006), - [sym_option_type] = STATE(2006), - [sym_qualified_type] = STATE(1899), - [sym_fixed_array_type] = STATE(2005), - [sym_array_type] = STATE(2005), - [sym_pointer_type] = STATE(2005), - [sym_wrong_pointer_type] = STATE(2005), - [sym_map_type] = STATE(2005), - [sym_channel_type] = STATE(2005), - [sym_shared_type] = STATE(2005), - [sym_thread_type] = STATE(2005), - [sym_atomic_type] = STATE(2005), - [sym_generic_type] = STATE(2005), - [sym_function_type] = STATE(2005), - [sym_identifier] = ACTIONS(3758), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(3760), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3762), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3764), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(3766), - [anon_sym_COLON] = ACTIONS(617), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(3768), - [anon_sym_BANG] = ACTIONS(3770), - [anon_sym_LBRACK2] = ACTIONS(3772), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3774), - [anon_sym_LT_DASH] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_or] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(617), - [anon_sym_POUND_LBRACK] = ACTIONS(617), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(617), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(617), - [anon_sym_STAR_EQ] = ACTIONS(617), - [anon_sym_SLASH_EQ] = ACTIONS(617), - [anon_sym_PERCENT_EQ] = ACTIONS(617), - [anon_sym_LT_LT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(617), - [anon_sym_AMP_EQ] = ACTIONS(617), - [anon_sym_AMP_CARET_EQ] = ACTIONS(617), - [anon_sym_PLUS_EQ] = ACTIONS(617), - [anon_sym_DASH_EQ] = ACTIONS(617), - [anon_sym_PIPE_EQ] = ACTIONS(617), - [anon_sym_CARET_EQ] = ACTIONS(617), - [anon_sym_shared] = ACTIONS(3776), - [anon_sym_map_LBRACK] = ACTIONS(3778), - [anon_sym_chan] = ACTIONS(3780), - [anon_sym_thread] = ACTIONS(3782), - [anon_sym_atomic] = ACTIONS(3784), + [sym_identifier] = ACTIONS(2741), + [anon_sym_LF] = ACTIONS(2741), + [anon_sym_CR] = ACTIONS(2741), + [anon_sym_CR_LF] = ACTIONS(2741), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2741), + [anon_sym_DOT] = ACTIONS(2741), + [anon_sym_as] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_COMMA] = ACTIONS(2741), + [anon_sym_RBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym_RPAREN] = ACTIONS(2741), + [anon_sym_PIPE] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2741), + [anon_sym_SLASH] = ACTIONS(2741), + [anon_sym_PERCENT] = ACTIONS(2741), + [anon_sym_LT] = ACTIONS(2741), + [anon_sym_GT] = ACTIONS(2741), + [anon_sym_EQ_EQ] = ACTIONS(2741), + [anon_sym_BANG_EQ] = ACTIONS(2741), + [anon_sym_LT_EQ] = ACTIONS(2741), + [anon_sym_GT_EQ] = ACTIONS(2741), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_mut] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2741), + [anon_sym_DASH_DASH] = ACTIONS(2741), + [anon_sym_QMARK] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_go] = ACTIONS(2741), + [anon_sym_spawn] = ACTIONS(2741), + [anon_sym_json_DOTdecode] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2741), + [anon_sym_CARET] = ACTIONS(2741), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LT_LT] = ACTIONS(2741), + [anon_sym_GT_GT] = ACTIONS(2741), + [anon_sym_GT_GT_GT] = ACTIONS(2741), + [anon_sym_AMP_CARET] = ACTIONS(2741), + [anon_sym_AMP_AMP] = ACTIONS(2741), + [anon_sym_PIPE_PIPE] = ACTIONS(2741), + [anon_sym_or] = ACTIONS(2741), + [sym_none] = ACTIONS(2741), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_nil] = ACTIONS(2741), + [anon_sym_QMARK_DOT] = ACTIONS(2741), + [anon_sym_POUND_LBRACK] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_DOLLARif] = ACTIONS(2741), + [anon_sym_is] = ACTIONS(2741), + [anon_sym_BANGis] = ACTIONS(2741), + [anon_sym_in] = ACTIONS(2741), + [anon_sym_BANGin] = ACTIONS(2741), + [anon_sym_match] = ACTIONS(2741), + [anon_sym_select] = ACTIONS(2741), + [anon_sym_lock] = ACTIONS(2741), + [anon_sym_rlock] = ACTIONS(2741), + [anon_sym_unsafe] = ACTIONS(2741), + [anon_sym_sql] = ACTIONS(2741), + [sym_int_literal] = ACTIONS(2741), + [sym_float_literal] = ACTIONS(2741), + [sym_rune_literal] = ACTIONS(2741), + [anon_sym_SQUOTE] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2741), + [anon_sym_c_SQUOTE] = ACTIONS(2741), + [anon_sym_c_DQUOTE] = ACTIONS(2741), + [anon_sym_r_SQUOTE] = ACTIONS(2741), + [anon_sym_r_DQUOTE] = ACTIONS(2741), + [sym_pseudo_compile_time_identifier] = ACTIONS(2741), + [anon_sym_shared] = ACTIONS(2741), + [anon_sym_map_LBRACK] = ACTIONS(2741), + [anon_sym_chan] = ACTIONS(2741), + [anon_sym_thread] = ACTIONS(2741), + [anon_sym_atomic] = ACTIONS(2741), }, [1197] = { [sym_line_comment] = STATE(1197), [sym_block_comment] = STATE(1197), - [sym_reference_expression] = STATE(4433), - [sym_type_reference_expression] = STATE(1899), - [sym_plain_type] = STATE(2023), - [sym__plain_type_without_special] = STATE(2006), - [sym_anon_struct_type] = STATE(2005), - [sym_multi_return_type] = STATE(2006), - [sym_result_type] = STATE(2006), - [sym_option_type] = STATE(2006), - [sym_qualified_type] = STATE(1899), - [sym_fixed_array_type] = STATE(2005), - [sym_array_type] = STATE(2005), - [sym_pointer_type] = STATE(2005), - [sym_wrong_pointer_type] = STATE(2005), - [sym_map_type] = STATE(2005), - [sym_channel_type] = STATE(2005), - [sym_shared_type] = STATE(2005), - [sym_thread_type] = STATE(2005), - [sym_atomic_type] = STATE(2005), - [sym_generic_type] = STATE(2005), - [sym_function_type] = STATE(2005), - [sym_identifier] = ACTIONS(3758), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(3760), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(3762), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(3764), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(3766), - [anon_sym_COLON] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(3768), - [anon_sym_BANG] = ACTIONS(3770), - [anon_sym_LBRACK2] = ACTIONS(3772), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(3774), - [anon_sym_LT_DASH] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [anon_sym_PERCENT_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(621), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_AMP_CARET_EQ] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(3776), - [anon_sym_map_LBRACK] = ACTIONS(3778), - [anon_sym_chan] = ACTIONS(3780), - [anon_sym_thread] = ACTIONS(3782), - [anon_sym_atomic] = ACTIONS(3784), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LF] = ACTIONS(2767), + [anon_sym_CR] = ACTIONS(2767), + [anon_sym_CR_LF] = ACTIONS(2767), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_DOT] = ACTIONS(2767), + [anon_sym_as] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_COMMA] = ACTIONS(2767), + [anon_sym_RBRACE] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2767), + [anon_sym_RPAREN] = ACTIONS(2767), + [anon_sym_PIPE] = ACTIONS(2767), + [anon_sym_fn] = ACTIONS(2767), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_SLASH] = ACTIONS(2767), + [anon_sym_PERCENT] = ACTIONS(2767), + [anon_sym_LT] = ACTIONS(2767), + [anon_sym_GT] = ACTIONS(2767), + [anon_sym_EQ_EQ] = ACTIONS(2767), + [anon_sym_BANG_EQ] = ACTIONS(2767), + [anon_sym_LT_EQ] = ACTIONS(2767), + [anon_sym_GT_EQ] = ACTIONS(2767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_struct] = ACTIONS(2767), + [anon_sym_mut] = ACTIONS(2767), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_QMARK] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_go] = ACTIONS(2767), + [anon_sym_spawn] = ACTIONS(2767), + [anon_sym_json_DOTdecode] = ACTIONS(2767), + [anon_sym_LBRACK2] = ACTIONS(2767), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2767), + [anon_sym_LT_DASH] = ACTIONS(2767), + [anon_sym_LT_LT] = ACTIONS(2767), + [anon_sym_GT_GT] = ACTIONS(2767), + [anon_sym_GT_GT_GT] = ACTIONS(2767), + [anon_sym_AMP_CARET] = ACTIONS(2767), + [anon_sym_AMP_AMP] = ACTIONS(2767), + [anon_sym_PIPE_PIPE] = ACTIONS(2767), + [anon_sym_or] = ACTIONS(2767), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_QMARK_DOT] = ACTIONS(2767), + [anon_sym_POUND_LBRACK] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2767), + [anon_sym_DOLLARif] = ACTIONS(2767), + [anon_sym_is] = ACTIONS(2767), + [anon_sym_BANGis] = ACTIONS(2767), + [anon_sym_in] = ACTIONS(2767), + [anon_sym_BANGin] = ACTIONS(2767), + [anon_sym_match] = ACTIONS(2767), + [anon_sym_select] = ACTIONS(2767), + [anon_sym_lock] = ACTIONS(2767), + [anon_sym_rlock] = ACTIONS(2767), + [anon_sym_unsafe] = ACTIONS(2767), + [anon_sym_sql] = ACTIONS(2767), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2767), + [sym_rune_literal] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2767), + [anon_sym_c_SQUOTE] = ACTIONS(2767), + [anon_sym_c_DQUOTE] = ACTIONS(2767), + [anon_sym_r_SQUOTE] = ACTIONS(2767), + [anon_sym_r_DQUOTE] = ACTIONS(2767), + [sym_pseudo_compile_time_identifier] = ACTIONS(2767), + [anon_sym_shared] = ACTIONS(2767), + [anon_sym_map_LBRACK] = ACTIONS(2767), + [anon_sym_chan] = ACTIONS(2767), + [anon_sym_thread] = ACTIONS(2767), + [anon_sym_atomic] = ACTIONS(2767), }, [1198] = { [sym_line_comment] = STATE(1198), [sym_block_comment] = STATE(1198), - [sym_identifier] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2832), - [anon_sym_CR] = ACTIONS(2832), - [anon_sym_CR_LF] = ACTIONS(2832), + [sym_identifier] = ACTIONS(3778), + [anon_sym_LF] = ACTIONS(3781), + [anon_sym_CR] = ACTIONS(3781), + [anon_sym_CR_LF] = ACTIONS(3781), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_as] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_RBRACE] = ACTIONS(2832), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_RPAREN] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_LT_EQ] = ACTIONS(2832), - [anon_sym_GT_EQ] = ACTIONS(2832), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_mut] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_go] = ACTIONS(2832), - [anon_sym_spawn] = ACTIONS(2832), - [anon_sym_json_DOTdecode] = ACTIONS(2832), - [anon_sym_LBRACK2] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_LT_DASH] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2832), - [anon_sym_AMP_CARET] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2832), - [sym_none] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_nil] = ACTIONS(2832), - [anon_sym_QMARK_DOT] = ACTIONS(2832), - [anon_sym_POUND_LBRACK] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_DOLLARif] = ACTIONS(2832), - [anon_sym_is] = ACTIONS(2832), - [anon_sym_BANGis] = ACTIONS(2832), - [anon_sym_in] = ACTIONS(2832), - [anon_sym_BANGin] = ACTIONS(2832), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_select] = ACTIONS(2832), - [anon_sym_lock] = ACTIONS(2832), - [anon_sym_rlock] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_sql] = ACTIONS(2832), - [sym_int_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2832), - [sym_rune_literal] = ACTIONS(2832), - [sym_pseudo_compile_time_identifier] = ACTIONS(2832), - [anon_sym_shared] = ACTIONS(2832), - [anon_sym_map_LBRACK] = ACTIONS(2832), - [anon_sym_chan] = ACTIONS(2832), - [anon_sym_thread] = ACTIONS(2832), - [anon_sym_atomic] = ACTIONS(2832), - [sym___double_quote] = ACTIONS(2832), - [sym___single_quote] = ACTIONS(2832), - [sym___c_double_quote] = ACTIONS(2832), - [sym___c_single_quote] = ACTIONS(2832), - [sym___r_double_quote] = ACTIONS(2832), - [sym___r_single_quote] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(3781), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_as] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_COMMA] = ACTIONS(3781), + [anon_sym_RBRACE] = ACTIONS(3778), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_fn] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2887), + [anon_sym_BANG_EQ] = ACTIONS(2887), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3784), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_mut] = ACTIONS(2887), + [anon_sym_COLON] = ACTIONS(3786), + [anon_sym_PLUS_PLUS] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2887), + [anon_sym_QMARK] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2887), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2887), + [anon_sym_json_DOTdecode] = ACTIONS(2887), + [anon_sym_LBRACK2] = ACTIONS(2887), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_CARET] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_GT_GT_GT] = ACTIONS(2887), + [anon_sym_AMP_CARET] = ACTIONS(2887), + [anon_sym_AMP_AMP] = ACTIONS(2887), + [anon_sym_PIPE_PIPE] = ACTIONS(2887), + [anon_sym_or] = ACTIONS(2887), + [sym_none] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_nil] = ACTIONS(2887), + [anon_sym_QMARK_DOT] = ACTIONS(2887), + [anon_sym_POUND_LBRACK] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_DOLLARif] = ACTIONS(2887), + [anon_sym_is] = ACTIONS(2887), + [anon_sym_BANGis] = ACTIONS(2887), + [anon_sym_in] = ACTIONS(2887), + [anon_sym_BANGin] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2887), + [anon_sym_select] = ACTIONS(2887), + [anon_sym_lock] = ACTIONS(2887), + [anon_sym_rlock] = ACTIONS(2887), + [anon_sym_unsafe] = ACTIONS(2887), + [anon_sym_sql] = ACTIONS(2887), + [sym_int_literal] = ACTIONS(2887), + [sym_float_literal] = ACTIONS(2887), + [sym_rune_literal] = ACTIONS(2887), + [anon_sym_SQUOTE] = ACTIONS(2887), + [anon_sym_DQUOTE] = ACTIONS(2887), + [anon_sym_c_SQUOTE] = ACTIONS(2887), + [anon_sym_c_DQUOTE] = ACTIONS(2887), + [anon_sym_r_SQUOTE] = ACTIONS(2887), + [anon_sym_r_DQUOTE] = ACTIONS(2887), + [sym_pseudo_compile_time_identifier] = ACTIONS(2887), + [anon_sym_shared] = ACTIONS(2887), + [anon_sym_map_LBRACK] = ACTIONS(2887), + [anon_sym_chan] = ACTIONS(2887), + [anon_sym_thread] = ACTIONS(2887), + [anon_sym_atomic] = ACTIONS(2887), }, [1199] = { [sym_line_comment] = STATE(1199), [sym_block_comment] = STATE(1199), - [sym_identifier] = ACTIONS(2794), - [anon_sym_LF] = ACTIONS(2794), - [anon_sym_CR] = ACTIONS(2794), - [anon_sym_CR_LF] = ACTIONS(2794), + [sym_identifier] = ACTIONS(2585), + [anon_sym_LF] = ACTIONS(2585), + [anon_sym_CR] = ACTIONS(2585), + [anon_sym_CR_LF] = ACTIONS(2585), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_DOT] = ACTIONS(2794), - [anon_sym_as] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2794), - [anon_sym_COMMA] = ACTIONS(2794), - [anon_sym_RBRACE] = ACTIONS(2794), - [anon_sym_LPAREN] = ACTIONS(2794), - [anon_sym_RPAREN] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_fn] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_SLASH] = ACTIONS(2794), - [anon_sym_PERCENT] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(2794), - [anon_sym_GT] = ACTIONS(2794), - [anon_sym_EQ_EQ] = ACTIONS(2794), - [anon_sym_BANG_EQ] = ACTIONS(2794), - [anon_sym_LT_EQ] = ACTIONS(2794), - [anon_sym_GT_EQ] = ACTIONS(2794), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(2792), - [anon_sym_struct] = ACTIONS(2794), - [anon_sym_mut] = ACTIONS(2794), - [anon_sym_PLUS_PLUS] = ACTIONS(2794), - [anon_sym_DASH_DASH] = ACTIONS(2794), - [anon_sym_QMARK] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2794), - [anon_sym_go] = ACTIONS(2794), - [anon_sym_spawn] = ACTIONS(2794), - [anon_sym_json_DOTdecode] = ACTIONS(2794), - [anon_sym_LBRACK2] = ACTIONS(2794), - [anon_sym_TILDE] = ACTIONS(2794), - [anon_sym_CARET] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_LT_DASH] = ACTIONS(2794), - [anon_sym_LT_LT] = ACTIONS(2794), - [anon_sym_GT_GT] = ACTIONS(2794), - [anon_sym_GT_GT_GT] = ACTIONS(2794), - [anon_sym_AMP_CARET] = ACTIONS(2794), - [anon_sym_AMP_AMP] = ACTIONS(2794), - [anon_sym_PIPE_PIPE] = ACTIONS(2794), - [anon_sym_or] = ACTIONS(2794), - [sym_none] = ACTIONS(2794), - [sym_true] = ACTIONS(2794), - [sym_false] = ACTIONS(2794), - [sym_nil] = ACTIONS(2794), - [anon_sym_QMARK_DOT] = ACTIONS(2794), - [anon_sym_POUND_LBRACK] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_DOLLARif] = ACTIONS(2794), - [anon_sym_is] = ACTIONS(2794), - [anon_sym_BANGis] = ACTIONS(2794), - [anon_sym_in] = ACTIONS(2794), - [anon_sym_BANGin] = ACTIONS(2794), - [anon_sym_match] = ACTIONS(2794), - [anon_sym_select] = ACTIONS(2794), - [anon_sym_lock] = ACTIONS(2794), - [anon_sym_rlock] = ACTIONS(2794), - [anon_sym_unsafe] = ACTIONS(2794), - [anon_sym_sql] = ACTIONS(2794), - [sym_int_literal] = ACTIONS(2794), - [sym_float_literal] = ACTIONS(2794), - [sym_rune_literal] = ACTIONS(2794), - [sym_pseudo_compile_time_identifier] = ACTIONS(2794), - [anon_sym_shared] = ACTIONS(2794), - [anon_sym_map_LBRACK] = ACTIONS(2794), - [anon_sym_chan] = ACTIONS(2794), - [anon_sym_thread] = ACTIONS(2794), - [anon_sym_atomic] = ACTIONS(2794), - [sym___double_quote] = ACTIONS(2794), - [sym___single_quote] = ACTIONS(2794), - [sym___c_double_quote] = ACTIONS(2794), - [sym___c_single_quote] = ACTIONS(2794), - [sym___r_double_quote] = ACTIONS(2794), - [sym___r_single_quote] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2585), + [anon_sym_DOT] = ACTIONS(2585), + [anon_sym_as] = ACTIONS(2585), + [anon_sym_LBRACE] = ACTIONS(2585), + [anon_sym_COMMA] = ACTIONS(2585), + [anon_sym_RBRACE] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2585), + [anon_sym_RPAREN] = ACTIONS(2585), + [anon_sym_PIPE] = ACTIONS(2585), + [anon_sym_fn] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2585), + [anon_sym_SLASH] = ACTIONS(2585), + [anon_sym_PERCENT] = ACTIONS(2585), + [anon_sym_LT] = ACTIONS(2585), + [anon_sym_GT] = ACTIONS(2585), + [anon_sym_EQ_EQ] = ACTIONS(2585), + [anon_sym_BANG_EQ] = ACTIONS(2585), + [anon_sym_LT_EQ] = ACTIONS(2585), + [anon_sym_GT_EQ] = ACTIONS(2585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_mut] = ACTIONS(2585), + [anon_sym_PLUS_PLUS] = ACTIONS(2585), + [anon_sym_DASH_DASH] = ACTIONS(2585), + [anon_sym_QMARK] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(3788), + [anon_sym_go] = ACTIONS(2585), + [anon_sym_spawn] = ACTIONS(2585), + [anon_sym_json_DOTdecode] = ACTIONS(2585), + [anon_sym_LBRACK2] = ACTIONS(2585), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_CARET] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2585), + [anon_sym_LT_DASH] = ACTIONS(2585), + [anon_sym_LT_LT] = ACTIONS(2585), + [anon_sym_GT_GT] = ACTIONS(2585), + [anon_sym_GT_GT_GT] = ACTIONS(2585), + [anon_sym_AMP_CARET] = ACTIONS(2585), + [anon_sym_AMP_AMP] = ACTIONS(2585), + [anon_sym_PIPE_PIPE] = ACTIONS(2585), + [anon_sym_or] = ACTIONS(2585), + [sym_none] = ACTIONS(2585), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_nil] = ACTIONS(2585), + [anon_sym_QMARK_DOT] = ACTIONS(2585), + [anon_sym_POUND_LBRACK] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_DOLLARif] = ACTIONS(2585), + [anon_sym_is] = ACTIONS(2585), + [anon_sym_BANGis] = ACTIONS(2585), + [anon_sym_in] = ACTIONS(2585), + [anon_sym_BANGin] = ACTIONS(2585), + [anon_sym_match] = ACTIONS(2585), + [anon_sym_select] = ACTIONS(2585), + [anon_sym_lock] = ACTIONS(2585), + [anon_sym_rlock] = ACTIONS(2585), + [anon_sym_unsafe] = ACTIONS(2585), + [anon_sym_sql] = ACTIONS(2585), + [sym_int_literal] = ACTIONS(2585), + [sym_float_literal] = ACTIONS(2585), + [sym_rune_literal] = ACTIONS(2585), + [anon_sym_SQUOTE] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2585), + [anon_sym_c_SQUOTE] = ACTIONS(2585), + [anon_sym_c_DQUOTE] = ACTIONS(2585), + [anon_sym_r_SQUOTE] = ACTIONS(2585), + [anon_sym_r_DQUOTE] = ACTIONS(2585), + [sym_pseudo_compile_time_identifier] = ACTIONS(2585), + [anon_sym_shared] = ACTIONS(2585), + [anon_sym_map_LBRACK] = ACTIONS(2585), + [anon_sym_chan] = ACTIONS(2585), + [anon_sym_thread] = ACTIONS(2585), + [anon_sym_atomic] = ACTIONS(2585), }, [1200] = { [sym_line_comment] = STATE(1200), [sym_block_comment] = STATE(1200), - [sym_identifier] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_CR] = ACTIONS(2740), - [anon_sym_CR_LF] = ACTIONS(2740), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_RBRACE] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2740), - [anon_sym_BANG_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2740), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_CARET] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2740), - [anon_sym_POUND_LBRACK] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2740), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2740), - [sym_rune_literal] = ACTIONS(2740), - [sym_pseudo_compile_time_identifier] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2740), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2740), - [sym___single_quote] = ACTIONS(2740), - [sym___c_double_quote] = ACTIONS(2740), - [sym___c_single_quote] = ACTIONS(2740), - [sym___r_double_quote] = ACTIONS(2740), - [sym___r_single_quote] = ACTIONS(2740), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2311), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_as] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_COMMA] = ACTIONS(625), + [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_EQ] = ACTIONS(627), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(627), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(627), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(625), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_LBRACK2] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_LT_LT] = ACTIONS(627), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_GT_GT_GT] = ACTIONS(627), + [anon_sym_AMP_CARET] = ACTIONS(627), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [anon_sym_or] = ACTIONS(627), + [anon_sym_QMARK_DOT] = ACTIONS(625), + [anon_sym_POUND_LBRACK] = ACTIONS(625), + [anon_sym_is] = ACTIONS(627), + [anon_sym_BANGis] = ACTIONS(625), + [anon_sym_in] = ACTIONS(627), + [anon_sym_BANGin] = ACTIONS(625), + [anon_sym_STAR_EQ] = ACTIONS(625), + [anon_sym_SLASH_EQ] = ACTIONS(625), + [anon_sym_PERCENT_EQ] = ACTIONS(625), + [anon_sym_LT_LT_EQ] = ACTIONS(625), + [anon_sym_GT_GT_EQ] = ACTIONS(625), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(625), + [anon_sym_AMP_EQ] = ACTIONS(625), + [anon_sym_AMP_CARET_EQ] = ACTIONS(625), + [anon_sym_PLUS_EQ] = ACTIONS(625), + [anon_sym_DASH_EQ] = ACTIONS(625), + [anon_sym_PIPE_EQ] = ACTIONS(625), + [anon_sym_CARET_EQ] = ACTIONS(625), + [anon_sym_COLON_EQ] = ACTIONS(625), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [1201] = { [sym_line_comment] = STATE(1201), [sym_block_comment] = STATE(1201), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LF] = ACTIONS(2880), - [anon_sym_CR] = ACTIONS(2880), - [anon_sym_CR_LF] = ACTIONS(2880), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2880), - [anon_sym_DOT] = ACTIONS(2880), - [anon_sym_as] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_RPAREN] = ACTIONS(2880), - [anon_sym_PIPE] = ACTIONS(2880), - [anon_sym_fn] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2880), - [anon_sym_SLASH] = ACTIONS(2880), - [anon_sym_PERCENT] = ACTIONS(2880), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_GT] = ACTIONS(2880), - [anon_sym_EQ_EQ] = ACTIONS(2880), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_LT_EQ] = ACTIONS(2880), - [anon_sym_GT_EQ] = ACTIONS(2880), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2880), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_mut] = ACTIONS(2880), - [anon_sym_PLUS_PLUS] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2880), - [anon_sym_QMARK] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_go] = ACTIONS(2880), - [anon_sym_spawn] = ACTIONS(2880), - [anon_sym_json_DOTdecode] = ACTIONS(2880), - [anon_sym_LBRACK2] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2880), - [anon_sym_CARET] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_LT_DASH] = ACTIONS(2880), - [anon_sym_LT_LT] = ACTIONS(2880), - [anon_sym_GT_GT] = ACTIONS(2880), - [anon_sym_GT_GT_GT] = ACTIONS(2880), - [anon_sym_AMP_CARET] = ACTIONS(2880), - [anon_sym_AMP_AMP] = ACTIONS(2880), - [anon_sym_PIPE_PIPE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2880), - [sym_none] = ACTIONS(2880), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_nil] = ACTIONS(2880), - [anon_sym_QMARK_DOT] = ACTIONS(2880), - [anon_sym_POUND_LBRACK] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_DOLLARif] = ACTIONS(2880), - [anon_sym_is] = ACTIONS(2880), - [anon_sym_BANGis] = ACTIONS(2880), - [anon_sym_in] = ACTIONS(2880), - [anon_sym_BANGin] = ACTIONS(2880), - [anon_sym_match] = ACTIONS(2880), - [anon_sym_select] = ACTIONS(2880), - [anon_sym_lock] = ACTIONS(2880), - [anon_sym_rlock] = ACTIONS(2880), - [anon_sym_unsafe] = ACTIONS(2880), - [anon_sym_sql] = ACTIONS(2880), - [sym_int_literal] = ACTIONS(2880), - [sym_float_literal] = ACTIONS(2880), - [sym_rune_literal] = ACTIONS(2880), - [sym_pseudo_compile_time_identifier] = ACTIONS(2880), - [anon_sym_shared] = ACTIONS(2880), - [anon_sym_map_LBRACK] = ACTIONS(2880), - [anon_sym_chan] = ACTIONS(2880), - [anon_sym_thread] = ACTIONS(2880), - [anon_sym_atomic] = ACTIONS(2880), - [sym___double_quote] = ACTIONS(2880), - [sym___single_quote] = ACTIONS(2880), - [sym___c_double_quote] = ACTIONS(2880), - [sym___c_single_quote] = ACTIONS(2880), - [sym___r_double_quote] = ACTIONS(2880), - [sym___r_single_quote] = ACTIONS(2880), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2386), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_or] = ACTIONS(607), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_is] = ACTIONS(607), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(607), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_STAR_EQ] = ACTIONS(603), + [anon_sym_SLASH_EQ] = ACTIONS(603), + [anon_sym_PERCENT_EQ] = ACTIONS(603), + [anon_sym_LT_LT_EQ] = ACTIONS(603), + [anon_sym_GT_GT_EQ] = ACTIONS(603), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(603), + [anon_sym_AMP_EQ] = ACTIONS(603), + [anon_sym_AMP_CARET_EQ] = ACTIONS(603), + [anon_sym_PLUS_EQ] = ACTIONS(603), + [anon_sym_DASH_EQ] = ACTIONS(603), + [anon_sym_PIPE_EQ] = ACTIONS(603), + [anon_sym_CARET_EQ] = ACTIONS(603), + [anon_sym_COLON_EQ] = ACTIONS(603), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [1202] = { [sym_line_comment] = STATE(1202), [sym_block_comment] = STATE(1202), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2345), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), + [sym_identifier] = ACTIONS(2771), + [anon_sym_LF] = ACTIONS(2771), + [anon_sym_CR] = ACTIONS(2771), + [anon_sym_CR_LF] = ACTIONS(2771), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_as] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_COMMA] = ACTIONS(2771), + [anon_sym_RBRACE] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(2771), + [anon_sym_RPAREN] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2771), + [anon_sym_fn] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_PERCENT] = ACTIONS(2771), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_GT] = ACTIONS(2771), + [anon_sym_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ] = ACTIONS(2771), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2771), + [anon_sym_mut] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_QMARK] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2771), + [anon_sym_spawn] = ACTIONS(2771), + [anon_sym_json_DOTdecode] = ACTIONS(2771), + [anon_sym_LBRACK2] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_CARET] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_LT_DASH] = ACTIONS(2771), + [anon_sym_LT_LT] = ACTIONS(2771), + [anon_sym_GT_GT] = ACTIONS(2771), + [anon_sym_GT_GT_GT] = ACTIONS(2771), + [anon_sym_AMP_CARET] = ACTIONS(2771), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_or] = ACTIONS(2771), + [sym_none] = ACTIONS(2771), + [sym_true] = ACTIONS(2771), + [sym_false] = ACTIONS(2771), + [sym_nil] = ACTIONS(2771), + [anon_sym_QMARK_DOT] = ACTIONS(2771), + [anon_sym_POUND_LBRACK] = ACTIONS(2771), + [anon_sym_if] = ACTIONS(2771), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_is] = ACTIONS(2771), + [anon_sym_BANGis] = ACTIONS(2771), + [anon_sym_in] = ACTIONS(2771), + [anon_sym_BANGin] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2771), + [anon_sym_select] = ACTIONS(2771), + [anon_sym_lock] = ACTIONS(2771), + [anon_sym_rlock] = ACTIONS(2771), + [anon_sym_unsafe] = ACTIONS(2771), + [anon_sym_sql] = ACTIONS(2771), + [sym_int_literal] = ACTIONS(2771), + [sym_float_literal] = ACTIONS(2771), + [sym_rune_literal] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [anon_sym_c_SQUOTE] = ACTIONS(2771), + [anon_sym_c_DQUOTE] = ACTIONS(2771), + [anon_sym_r_SQUOTE] = ACTIONS(2771), + [anon_sym_r_DQUOTE] = ACTIONS(2771), + [sym_pseudo_compile_time_identifier] = ACTIONS(2771), + [anon_sym_shared] = ACTIONS(2771), + [anon_sym_map_LBRACK] = ACTIONS(2771), + [anon_sym_chan] = ACTIONS(2771), + [anon_sym_thread] = ACTIONS(2771), + [anon_sym_atomic] = ACTIONS(2771), + }, + [1203] = { + [sym_line_comment] = STATE(1203), + [sym_block_comment] = STATE(1203), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2311), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(625), [anon_sym_DOT] = ACTIONS(625), [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(563), [anon_sym_COMMA] = ACTIONS(625), [anon_sym_LPAREN] = ACTIONS(625), [anon_sym_EQ] = ACTIONS(627), [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(611), [anon_sym_PLUS] = ACTIONS(627), [anon_sym_DASH] = ACTIONS(627), [anon_sym_STAR] = ACTIONS(627), @@ -156555,8 +156619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(625), [anon_sym_GT_EQ] = ACTIONS(625), [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(625), + [anon_sym_struct] = ACTIONS(615), [anon_sym_PLUS_PLUS] = ACTIONS(625), [anon_sym_DASH_DASH] = ACTIONS(625), [anon_sym_QMARK] = ACTIONS(627), @@ -156564,7 +156627,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK2] = ACTIONS(627), [anon_sym_CARET] = ACTIONS(627), [anon_sym_AMP] = ACTIONS(627), - [anon_sym_LT_DASH] = ACTIONS(625), [anon_sym_LT_LT] = ACTIONS(627), [anon_sym_GT_GT] = ACTIONS(627), [anon_sym_GT_GT_GT] = ACTIONS(627), @@ -156590,2973 +156652,1930 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_EQ] = ACTIONS(625), [anon_sym_PIPE_EQ] = ACTIONS(625), [anon_sym_CARET_EQ] = ACTIONS(625), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - }, - [1203] = { - [sym_line_comment] = STATE(1203), - [sym_block_comment] = STATE(1203), - [sym_identifier] = ACTIONS(2840), - [anon_sym_LF] = ACTIONS(2840), - [anon_sym_CR] = ACTIONS(2840), - [anon_sym_CR_LF] = ACTIONS(2840), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_DOT] = ACTIONS(2840), - [anon_sym_as] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym_RPAREN] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SLASH] = ACTIONS(2840), - [anon_sym_PERCENT] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_GT] = ACTIONS(2840), - [anon_sym_EQ_EQ] = ACTIONS(2840), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_LT_EQ] = ACTIONS(2840), - [anon_sym_GT_EQ] = ACTIONS(2840), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_mut] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_go] = ACTIONS(2840), - [anon_sym_spawn] = ACTIONS(2840), - [anon_sym_json_DOTdecode] = ACTIONS(2840), - [anon_sym_LBRACK2] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_LT_DASH] = ACTIONS(2840), - [anon_sym_LT_LT] = ACTIONS(2840), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_GT_GT_GT] = ACTIONS(2840), - [anon_sym_AMP_CARET] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_PIPE_PIPE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2840), - [sym_none] = ACTIONS(2840), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [sym_nil] = ACTIONS(2840), - [anon_sym_QMARK_DOT] = ACTIONS(2840), - [anon_sym_POUND_LBRACK] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_DOLLARif] = ACTIONS(2840), - [anon_sym_is] = ACTIONS(2840), - [anon_sym_BANGis] = ACTIONS(2840), - [anon_sym_in] = ACTIONS(2840), - [anon_sym_BANGin] = ACTIONS(2840), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_select] = ACTIONS(2840), - [anon_sym_lock] = ACTIONS(2840), - [anon_sym_rlock] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_sql] = ACTIONS(2840), - [sym_int_literal] = ACTIONS(2840), - [sym_float_literal] = ACTIONS(2840), - [sym_rune_literal] = ACTIONS(2840), - [sym_pseudo_compile_time_identifier] = ACTIONS(2840), - [anon_sym_shared] = ACTIONS(2840), - [anon_sym_map_LBRACK] = ACTIONS(2840), - [anon_sym_chan] = ACTIONS(2840), - [anon_sym_thread] = ACTIONS(2840), - [anon_sym_atomic] = ACTIONS(2840), - [sym___double_quote] = ACTIONS(2840), - [sym___single_quote] = ACTIONS(2840), - [sym___c_double_quote] = ACTIONS(2840), - [sym___c_single_quote] = ACTIONS(2840), - [sym___r_double_quote] = ACTIONS(2840), - [sym___r_single_quote] = ACTIONS(2840), + [anon_sym_COLON_EQ] = ACTIONS(625), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [1204] = { [sym_line_comment] = STATE(1204), [sym_block_comment] = STATE(1204), - [sym_identifier] = ACTIONS(2782), - [anon_sym_LF] = ACTIONS(2782), - [anon_sym_CR] = ACTIONS(2782), - [anon_sym_CR_LF] = ACTIONS(2782), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LF] = ACTIONS(2209), + [anon_sym_CR] = ACTIONS(2209), + [anon_sym_CR_LF] = ACTIONS(2209), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2782), - [anon_sym_DOT] = ACTIONS(2782), - [anon_sym_as] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_COMMA] = ACTIONS(2782), - [anon_sym_RBRACE] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_RPAREN] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2782), - [anon_sym_fn] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2782), - [anon_sym_PERCENT] = ACTIONS(2782), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_GT] = ACTIONS(2782), - [anon_sym_EQ_EQ] = ACTIONS(2782), - [anon_sym_BANG_EQ] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(2782), - [anon_sym_GT_EQ] = ACTIONS(2782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2780), - [anon_sym_struct] = ACTIONS(2782), - [anon_sym_mut] = ACTIONS(2782), - [anon_sym_PLUS_PLUS] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2782), - [anon_sym_QMARK] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2782), - [anon_sym_go] = ACTIONS(2782), - [anon_sym_spawn] = ACTIONS(2782), - [anon_sym_json_DOTdecode] = ACTIONS(2782), - [anon_sym_LBRACK2] = ACTIONS(2782), - [anon_sym_TILDE] = ACTIONS(2782), - [anon_sym_CARET] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_LT_DASH] = ACTIONS(2782), - [anon_sym_LT_LT] = ACTIONS(2782), - [anon_sym_GT_GT] = ACTIONS(2782), - [anon_sym_GT_GT_GT] = ACTIONS(2782), - [anon_sym_AMP_CARET] = ACTIONS(2782), - [anon_sym_AMP_AMP] = ACTIONS(2782), - [anon_sym_PIPE_PIPE] = ACTIONS(2782), - [anon_sym_or] = ACTIONS(2782), - [sym_none] = ACTIONS(2782), - [sym_true] = ACTIONS(2782), - [sym_false] = ACTIONS(2782), - [sym_nil] = ACTIONS(2782), - [anon_sym_QMARK_DOT] = ACTIONS(2782), - [anon_sym_POUND_LBRACK] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_DOLLARif] = ACTIONS(2782), - [anon_sym_is] = ACTIONS(2782), - [anon_sym_BANGis] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(2782), - [anon_sym_BANGin] = ACTIONS(2782), - [anon_sym_match] = ACTIONS(2782), - [anon_sym_select] = ACTIONS(2782), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2782), - [anon_sym_sql] = ACTIONS(2782), - [sym_int_literal] = ACTIONS(2782), - [sym_float_literal] = ACTIONS(2782), - [sym_rune_literal] = ACTIONS(2782), - [sym_pseudo_compile_time_identifier] = ACTIONS(2782), - [anon_sym_shared] = ACTIONS(2782), - [anon_sym_map_LBRACK] = ACTIONS(2782), - [anon_sym_chan] = ACTIONS(2782), - [anon_sym_thread] = ACTIONS(2782), - [anon_sym_atomic] = ACTIONS(2782), - [sym___double_quote] = ACTIONS(2782), - [sym___single_quote] = ACTIONS(2782), - [sym___c_double_quote] = ACTIONS(2782), - [sym___c_single_quote] = ACTIONS(2782), - [sym___r_double_quote] = ACTIONS(2782), - [sym___r_single_quote] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_COMMA] = ACTIONS(2209), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_RPAREN] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_fn] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_SLASH] = ACTIONS(2209), + [anon_sym_PERCENT] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_GT] = ACTIONS(2209), + [anon_sym_EQ_EQ] = ACTIONS(2209), + [anon_sym_BANG_EQ] = ACTIONS(2209), + [anon_sym_LT_EQ] = ACTIONS(2209), + [anon_sym_GT_EQ] = ACTIONS(2209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_struct] = ACTIONS(2209), + [anon_sym_mut] = ACTIONS(2209), + [anon_sym_PLUS_PLUS] = ACTIONS(2209), + [anon_sym_DASH_DASH] = ACTIONS(2209), + [anon_sym_QMARK] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2209), + [anon_sym_go] = ACTIONS(2209), + [anon_sym_spawn] = ACTIONS(2209), + [anon_sym_json_DOTdecode] = ACTIONS(2209), + [anon_sym_LBRACK2] = ACTIONS(2209), + [anon_sym_TILDE] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2209), + [anon_sym_AMP] = ACTIONS(2209), + [anon_sym_LT_DASH] = ACTIONS(2209), + [anon_sym_LT_LT] = ACTIONS(2209), + [anon_sym_GT_GT] = ACTIONS(2209), + [anon_sym_GT_GT_GT] = ACTIONS(2209), + [anon_sym_AMP_CARET] = ACTIONS(2209), + [anon_sym_AMP_AMP] = ACTIONS(2209), + [anon_sym_PIPE_PIPE] = ACTIONS(2209), + [anon_sym_or] = ACTIONS(2209), + [sym_none] = ACTIONS(2209), + [sym_true] = ACTIONS(2209), + [sym_false] = ACTIONS(2209), + [sym_nil] = ACTIONS(2209), + [anon_sym_QMARK_DOT] = ACTIONS(2209), + [anon_sym_POUND_LBRACK] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_DOLLARif] = ACTIONS(2209), + [anon_sym_is] = ACTIONS(2209), + [anon_sym_BANGis] = ACTIONS(2209), + [anon_sym_in] = ACTIONS(2209), + [anon_sym_BANGin] = ACTIONS(2209), + [anon_sym_match] = ACTIONS(2209), + [anon_sym_select] = ACTIONS(2209), + [anon_sym_lock] = ACTIONS(2209), + [anon_sym_rlock] = ACTIONS(2209), + [anon_sym_unsafe] = ACTIONS(2209), + [anon_sym_sql] = ACTIONS(2209), + [sym_int_literal] = ACTIONS(2209), + [sym_float_literal] = ACTIONS(2209), + [sym_rune_literal] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_DQUOTE] = ACTIONS(2209), + [anon_sym_c_SQUOTE] = ACTIONS(2209), + [anon_sym_c_DQUOTE] = ACTIONS(2209), + [anon_sym_r_SQUOTE] = ACTIONS(2209), + [anon_sym_r_DQUOTE] = ACTIONS(2209), + [sym_pseudo_compile_time_identifier] = ACTIONS(2209), + [anon_sym_shared] = ACTIONS(2209), + [anon_sym_map_LBRACK] = ACTIONS(2209), + [anon_sym_chan] = ACTIONS(2209), + [anon_sym_thread] = ACTIONS(2209), + [anon_sym_atomic] = ACTIONS(2209), }, [1205] = { [sym_line_comment] = STATE(1205), [sym_block_comment] = STATE(1205), - [sym_identifier] = ACTIONS(2718), - [anon_sym_LF] = ACTIONS(2718), - [anon_sym_CR] = ACTIONS(2718), - [anon_sym_CR_LF] = ACTIONS(2718), + [sym_identifier] = ACTIONS(2213), + [anon_sym_LF] = ACTIONS(2213), + [anon_sym_CR] = ACTIONS(2213), + [anon_sym_CR_LF] = ACTIONS(2213), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_as] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_COMMA] = ACTIONS(2718), - [anon_sym_RBRACE] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2718), - [anon_sym_RPAREN] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_fn] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(2718), - [anon_sym_STAR] = ACTIONS(2718), - [anon_sym_SLASH] = ACTIONS(2718), - [anon_sym_PERCENT] = ACTIONS(2718), - [anon_sym_LT] = ACTIONS(2718), - [anon_sym_GT] = ACTIONS(2718), - [anon_sym_EQ_EQ] = ACTIONS(2718), - [anon_sym_BANG_EQ] = ACTIONS(2718), - [anon_sym_LT_EQ] = ACTIONS(2718), - [anon_sym_GT_EQ] = ACTIONS(2718), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2718), - [anon_sym_LBRACK] = ACTIONS(2716), - [anon_sym_struct] = ACTIONS(2718), - [anon_sym_mut] = ACTIONS(2718), - [anon_sym_PLUS_PLUS] = ACTIONS(2718), - [anon_sym_DASH_DASH] = ACTIONS(2718), - [anon_sym_QMARK] = ACTIONS(2718), - [anon_sym_BANG] = ACTIONS(2718), - [anon_sym_go] = ACTIONS(2718), - [anon_sym_spawn] = ACTIONS(2718), - [anon_sym_json_DOTdecode] = ACTIONS(2718), - [anon_sym_LBRACK2] = ACTIONS(2718), - [anon_sym_TILDE] = ACTIONS(2718), - [anon_sym_CARET] = ACTIONS(2718), - [anon_sym_AMP] = ACTIONS(2718), - [anon_sym_LT_DASH] = ACTIONS(2718), - [anon_sym_LT_LT] = ACTIONS(2718), - [anon_sym_GT_GT] = ACTIONS(2718), - [anon_sym_GT_GT_GT] = ACTIONS(2718), - [anon_sym_AMP_CARET] = ACTIONS(2718), - [anon_sym_AMP_AMP] = ACTIONS(2718), - [anon_sym_PIPE_PIPE] = ACTIONS(2718), - [anon_sym_or] = ACTIONS(2718), - [sym_none] = ACTIONS(2718), - [sym_true] = ACTIONS(2718), - [sym_false] = ACTIONS(2718), - [sym_nil] = ACTIONS(2718), - [anon_sym_QMARK_DOT] = ACTIONS(2718), - [anon_sym_POUND_LBRACK] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2718), - [anon_sym_DOLLARif] = ACTIONS(2718), - [anon_sym_is] = ACTIONS(2718), - [anon_sym_BANGis] = ACTIONS(2718), - [anon_sym_in] = ACTIONS(2718), - [anon_sym_BANGin] = ACTIONS(2718), - [anon_sym_match] = ACTIONS(2718), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2718), - [anon_sym_rlock] = ACTIONS(2718), - [anon_sym_unsafe] = ACTIONS(2718), - [anon_sym_sql] = ACTIONS(2718), - [sym_int_literal] = ACTIONS(2718), - [sym_float_literal] = ACTIONS(2718), - [sym_rune_literal] = ACTIONS(2718), - [sym_pseudo_compile_time_identifier] = ACTIONS(2718), - [anon_sym_shared] = ACTIONS(2718), - [anon_sym_map_LBRACK] = ACTIONS(2718), - [anon_sym_chan] = ACTIONS(2718), - [anon_sym_thread] = ACTIONS(2718), - [anon_sym_atomic] = ACTIONS(2718), - [sym___double_quote] = ACTIONS(2718), - [sym___single_quote] = ACTIONS(2718), - [sym___c_double_quote] = ACTIONS(2718), - [sym___c_single_quote] = ACTIONS(2718), - [sym___r_double_quote] = ACTIONS(2718), - [sym___r_single_quote] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_as] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_COMMA] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_RPAREN] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_fn] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2213), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2213), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_struct] = ACTIONS(2213), + [anon_sym_mut] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [anon_sym_QMARK] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_go] = ACTIONS(2213), + [anon_sym_spawn] = ACTIONS(2213), + [anon_sym_json_DOTdecode] = ACTIONS(2213), + [anon_sym_LBRACK2] = ACTIONS(2213), + [anon_sym_TILDE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_LT_DASH] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_GT_GT_GT] = ACTIONS(2213), + [anon_sym_AMP_CARET] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_or] = ACTIONS(2213), + [sym_none] = ACTIONS(2213), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [sym_nil] = ACTIONS(2213), + [anon_sym_QMARK_DOT] = ACTIONS(2213), + [anon_sym_POUND_LBRACK] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_DOLLARif] = ACTIONS(2213), + [anon_sym_is] = ACTIONS(2213), + [anon_sym_BANGis] = ACTIONS(2213), + [anon_sym_in] = ACTIONS(2213), + [anon_sym_BANGin] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_select] = ACTIONS(2213), + [anon_sym_lock] = ACTIONS(2213), + [anon_sym_rlock] = ACTIONS(2213), + [anon_sym_unsafe] = ACTIONS(2213), + [anon_sym_sql] = ACTIONS(2213), + [sym_int_literal] = ACTIONS(2213), + [sym_float_literal] = ACTIONS(2213), + [sym_rune_literal] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_c_SQUOTE] = ACTIONS(2213), + [anon_sym_c_DQUOTE] = ACTIONS(2213), + [anon_sym_r_SQUOTE] = ACTIONS(2213), + [anon_sym_r_DQUOTE] = ACTIONS(2213), + [sym_pseudo_compile_time_identifier] = ACTIONS(2213), + [anon_sym_shared] = ACTIONS(2213), + [anon_sym_map_LBRACK] = ACTIONS(2213), + [anon_sym_chan] = ACTIONS(2213), + [anon_sym_thread] = ACTIONS(2213), + [anon_sym_atomic] = ACTIONS(2213), }, [1206] = { [sym_line_comment] = STATE(1206), [sym_block_comment] = STATE(1206), - [sym_identifier] = ACTIONS(2501), - [anon_sym_LF] = ACTIONS(2501), - [anon_sym_CR] = ACTIONS(2501), - [anon_sym_CR_LF] = ACTIONS(2501), + [sym_identifier] = ACTIONS(2851), + [anon_sym_LF] = ACTIONS(2851), + [anon_sym_CR] = ACTIONS(2851), + [anon_sym_CR_LF] = ACTIONS(2851), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_DOT] = ACTIONS(2501), - [anon_sym_as] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_COMMA] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2501), - [anon_sym_RPAREN] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_fn] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_SLASH] = ACTIONS(2501), - [anon_sym_PERCENT] = ACTIONS(2501), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_GT] = ACTIONS(2501), - [anon_sym_EQ_EQ] = ACTIONS(2501), - [anon_sym_BANG_EQ] = ACTIONS(2501), - [anon_sym_LT_EQ] = ACTIONS(2501), - [anon_sym_GT_EQ] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_struct] = ACTIONS(2501), - [anon_sym_mut] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2501), - [anon_sym_DASH_DASH] = ACTIONS(2501), - [anon_sym_QMARK] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2501), - [anon_sym_go] = ACTIONS(2501), - [anon_sym_spawn] = ACTIONS(2501), - [anon_sym_json_DOTdecode] = ACTIONS(2501), - [anon_sym_LBRACK2] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2501), - [anon_sym_CARET] = ACTIONS(2501), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2501), - [anon_sym_LT_LT] = ACTIONS(2501), - [anon_sym_GT_GT] = ACTIONS(2501), - [anon_sym_GT_GT_GT] = ACTIONS(2501), - [anon_sym_AMP_CARET] = ACTIONS(2501), - [anon_sym_AMP_AMP] = ACTIONS(2501), - [anon_sym_PIPE_PIPE] = ACTIONS(2501), - [anon_sym_or] = ACTIONS(2501), - [sym_none] = ACTIONS(2501), - [sym_true] = ACTIONS(2501), - [sym_false] = ACTIONS(2501), - [sym_nil] = ACTIONS(2501), - [anon_sym_QMARK_DOT] = ACTIONS(2501), - [anon_sym_POUND_LBRACK] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_DOLLARif] = ACTIONS(2501), - [anon_sym_is] = ACTIONS(2501), - [anon_sym_BANGis] = ACTIONS(2501), - [anon_sym_in] = ACTIONS(2501), - [anon_sym_BANGin] = ACTIONS(2501), - [anon_sym_match] = ACTIONS(2501), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2501), - [anon_sym_rlock] = ACTIONS(2501), - [anon_sym_unsafe] = ACTIONS(2501), - [anon_sym_sql] = ACTIONS(2501), - [sym_int_literal] = ACTIONS(2501), - [sym_float_literal] = ACTIONS(2501), - [sym_rune_literal] = ACTIONS(2501), - [sym_pseudo_compile_time_identifier] = ACTIONS(2501), - [anon_sym_shared] = ACTIONS(2501), - [anon_sym_map_LBRACK] = ACTIONS(2501), - [anon_sym_chan] = ACTIONS(2501), - [anon_sym_thread] = ACTIONS(2501), - [anon_sym_atomic] = ACTIONS(2501), - [sym___double_quote] = ACTIONS(2501), - [sym___single_quote] = ACTIONS(2501), - [sym___c_double_quote] = ACTIONS(2501), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2501), - [sym___r_single_quote] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2851), + [anon_sym_DOT] = ACTIONS(2851), + [anon_sym_as] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_COMMA] = ACTIONS(2851), + [anon_sym_RBRACE] = ACTIONS(2851), + [anon_sym_LPAREN] = ACTIONS(2851), + [anon_sym_RPAREN] = ACTIONS(2851), + [anon_sym_PIPE] = ACTIONS(2851), + [anon_sym_fn] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2851), + [anon_sym_SLASH] = ACTIONS(2851), + [anon_sym_PERCENT] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(2851), + [anon_sym_GT] = ACTIONS(2851), + [anon_sym_EQ_EQ] = ACTIONS(2851), + [anon_sym_BANG_EQ] = ACTIONS(2851), + [anon_sym_LT_EQ] = ACTIONS(2851), + [anon_sym_GT_EQ] = ACTIONS(2851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_struct] = ACTIONS(2851), + [anon_sym_mut] = ACTIONS(2851), + [anon_sym_PLUS_PLUS] = ACTIONS(2851), + [anon_sym_DASH_DASH] = ACTIONS(2851), + [anon_sym_QMARK] = ACTIONS(2851), + [anon_sym_BANG] = ACTIONS(2851), + [anon_sym_go] = ACTIONS(2851), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(2851), + [anon_sym_LBRACK2] = ACTIONS(2851), + [anon_sym_TILDE] = ACTIONS(2851), + [anon_sym_CARET] = ACTIONS(2851), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_LT_DASH] = ACTIONS(2851), + [anon_sym_LT_LT] = ACTIONS(2851), + [anon_sym_GT_GT] = ACTIONS(2851), + [anon_sym_GT_GT_GT] = ACTIONS(2851), + [anon_sym_AMP_CARET] = ACTIONS(2851), + [anon_sym_AMP_AMP] = ACTIONS(2851), + [anon_sym_PIPE_PIPE] = ACTIONS(2851), + [anon_sym_or] = ACTIONS(2851), + [sym_none] = ACTIONS(2851), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [sym_nil] = ACTIONS(2851), + [anon_sym_QMARK_DOT] = ACTIONS(2851), + [anon_sym_POUND_LBRACK] = ACTIONS(2851), + [anon_sym_if] = ACTIONS(2851), + [anon_sym_DOLLARif] = ACTIONS(2851), + [anon_sym_is] = ACTIONS(2851), + [anon_sym_BANGis] = ACTIONS(2851), + [anon_sym_in] = ACTIONS(2851), + [anon_sym_BANGin] = ACTIONS(2851), + [anon_sym_match] = ACTIONS(2851), + [anon_sym_select] = ACTIONS(2851), + [anon_sym_lock] = ACTIONS(2851), + [anon_sym_rlock] = ACTIONS(2851), + [anon_sym_unsafe] = ACTIONS(2851), + [anon_sym_sql] = ACTIONS(2851), + [sym_int_literal] = ACTIONS(2851), + [sym_float_literal] = ACTIONS(2851), + [sym_rune_literal] = ACTIONS(2851), + [anon_sym_SQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [anon_sym_c_SQUOTE] = ACTIONS(2851), + [anon_sym_c_DQUOTE] = ACTIONS(2851), + [anon_sym_r_SQUOTE] = ACTIONS(2851), + [anon_sym_r_DQUOTE] = ACTIONS(2851), + [sym_pseudo_compile_time_identifier] = ACTIONS(2851), + [anon_sym_shared] = ACTIONS(2851), + [anon_sym_map_LBRACK] = ACTIONS(2851), + [anon_sym_chan] = ACTIONS(2851), + [anon_sym_thread] = ACTIONS(2851), + [anon_sym_atomic] = ACTIONS(2851), }, [1207] = { [sym_line_comment] = STATE(1207), [sym_block_comment] = STATE(1207), - [sym_identifier] = ACTIONS(2293), - [anon_sym_LF] = ACTIONS(2293), - [anon_sym_CR] = ACTIONS(2293), - [anon_sym_CR_LF] = ACTIONS(2293), + [sym_identifier] = ACTIONS(2217), + [anon_sym_LF] = ACTIONS(2217), + [anon_sym_CR] = ACTIONS(2217), + [anon_sym_CR_LF] = ACTIONS(2217), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_DOT] = ACTIONS(2293), - [anon_sym_as] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2293), - [anon_sym_COMMA] = ACTIONS(2293), - [anon_sym_RBRACE] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_RPAREN] = ACTIONS(2293), - [anon_sym_PIPE] = ACTIONS(2293), - [anon_sym_fn] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2293), - [anon_sym_SLASH] = ACTIONS(2293), - [anon_sym_PERCENT] = ACTIONS(2293), - [anon_sym_LT] = ACTIONS(2293), - [anon_sym_GT] = ACTIONS(2293), - [anon_sym_EQ_EQ] = ACTIONS(2293), - [anon_sym_BANG_EQ] = ACTIONS(2293), - [anon_sym_LT_EQ] = ACTIONS(2293), - [anon_sym_GT_EQ] = ACTIONS(2293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_struct] = ACTIONS(2293), - [anon_sym_mut] = ACTIONS(2293), - [anon_sym_PLUS_PLUS] = ACTIONS(2293), - [anon_sym_DASH_DASH] = ACTIONS(2293), - [anon_sym_QMARK] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_go] = ACTIONS(2293), - [anon_sym_spawn] = ACTIONS(2293), - [anon_sym_json_DOTdecode] = ACTIONS(2293), - [anon_sym_LBRACK2] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2293), - [anon_sym_CARET] = ACTIONS(2293), - [anon_sym_AMP] = ACTIONS(2293), - [anon_sym_LT_DASH] = ACTIONS(2293), - [anon_sym_LT_LT] = ACTIONS(2293), - [anon_sym_GT_GT] = ACTIONS(2293), - [anon_sym_GT_GT_GT] = ACTIONS(2293), - [anon_sym_AMP_CARET] = ACTIONS(2293), - [anon_sym_AMP_AMP] = ACTIONS(2293), - [anon_sym_PIPE_PIPE] = ACTIONS(2293), - [anon_sym_or] = ACTIONS(2293), - [sym_none] = ACTIONS(2293), - [sym_true] = ACTIONS(2293), - [sym_false] = ACTIONS(2293), - [sym_nil] = ACTIONS(2293), - [anon_sym_QMARK_DOT] = ACTIONS(2293), - [anon_sym_POUND_LBRACK] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_DOLLARif] = ACTIONS(2293), - [anon_sym_is] = ACTIONS(2293), - [anon_sym_BANGis] = ACTIONS(2293), - [anon_sym_in] = ACTIONS(2293), - [anon_sym_BANGin] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(2293), - [anon_sym_select] = ACTIONS(2293), - [anon_sym_lock] = ACTIONS(2293), - [anon_sym_rlock] = ACTIONS(2293), - [anon_sym_unsafe] = ACTIONS(2293), - [anon_sym_sql] = ACTIONS(2293), - [sym_int_literal] = ACTIONS(2293), - [sym_float_literal] = ACTIONS(2293), - [sym_rune_literal] = ACTIONS(2293), - [sym_pseudo_compile_time_identifier] = ACTIONS(2293), - [anon_sym_shared] = ACTIONS(2293), - [anon_sym_map_LBRACK] = ACTIONS(2293), - [anon_sym_chan] = ACTIONS(2293), - [anon_sym_thread] = ACTIONS(2293), - [anon_sym_atomic] = ACTIONS(2293), - [sym___double_quote] = ACTIONS(2293), - [sym___single_quote] = ACTIONS(2293), - [sym___c_double_quote] = ACTIONS(2293), - [sym___c_single_quote] = ACTIONS(2293), - [sym___r_double_quote] = ACTIONS(2293), - [sym___r_single_quote] = ACTIONS(2293), + [anon_sym_SEMI] = ACTIONS(2217), + [anon_sym_DOT] = ACTIONS(2217), + [anon_sym_as] = ACTIONS(2217), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_COMMA] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_RPAREN] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(2217), + [anon_sym_fn] = ACTIONS(2217), + [anon_sym_PLUS] = ACTIONS(2217), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_STAR] = ACTIONS(2217), + [anon_sym_SLASH] = ACTIONS(2217), + [anon_sym_PERCENT] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(2217), + [anon_sym_GT] = ACTIONS(2217), + [anon_sym_EQ_EQ] = ACTIONS(2217), + [anon_sym_BANG_EQ] = ACTIONS(2217), + [anon_sym_LT_EQ] = ACTIONS(2217), + [anon_sym_GT_EQ] = ACTIONS(2217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_struct] = ACTIONS(2217), + [anon_sym_mut] = ACTIONS(2217), + [anon_sym_PLUS_PLUS] = ACTIONS(2217), + [anon_sym_DASH_DASH] = ACTIONS(2217), + [anon_sym_QMARK] = ACTIONS(2217), + [anon_sym_BANG] = ACTIONS(2217), + [anon_sym_go] = ACTIONS(2217), + [anon_sym_spawn] = ACTIONS(2217), + [anon_sym_json_DOTdecode] = ACTIONS(2217), + [anon_sym_LBRACK2] = ACTIONS(2217), + [anon_sym_TILDE] = ACTIONS(2217), + [anon_sym_CARET] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2217), + [anon_sym_LT_DASH] = ACTIONS(2217), + [anon_sym_LT_LT] = ACTIONS(2217), + [anon_sym_GT_GT] = ACTIONS(2217), + [anon_sym_GT_GT_GT] = ACTIONS(2217), + [anon_sym_AMP_CARET] = ACTIONS(2217), + [anon_sym_AMP_AMP] = ACTIONS(2217), + [anon_sym_PIPE_PIPE] = ACTIONS(2217), + [anon_sym_or] = ACTIONS(2217), + [sym_none] = ACTIONS(2217), + [sym_true] = ACTIONS(2217), + [sym_false] = ACTIONS(2217), + [sym_nil] = ACTIONS(2217), + [anon_sym_QMARK_DOT] = ACTIONS(2217), + [anon_sym_POUND_LBRACK] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_DOLLARif] = ACTIONS(2217), + [anon_sym_is] = ACTIONS(2217), + [anon_sym_BANGis] = ACTIONS(2217), + [anon_sym_in] = ACTIONS(2217), + [anon_sym_BANGin] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_select] = ACTIONS(2217), + [anon_sym_lock] = ACTIONS(2217), + [anon_sym_rlock] = ACTIONS(2217), + [anon_sym_unsafe] = ACTIONS(2217), + [anon_sym_sql] = ACTIONS(2217), + [sym_int_literal] = ACTIONS(2217), + [sym_float_literal] = ACTIONS(2217), + [sym_rune_literal] = ACTIONS(2217), + [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_DQUOTE] = ACTIONS(2217), + [anon_sym_c_SQUOTE] = ACTIONS(2217), + [anon_sym_c_DQUOTE] = ACTIONS(2217), + [anon_sym_r_SQUOTE] = ACTIONS(2217), + [anon_sym_r_DQUOTE] = ACTIONS(2217), + [sym_pseudo_compile_time_identifier] = ACTIONS(2217), + [anon_sym_shared] = ACTIONS(2217), + [anon_sym_map_LBRACK] = ACTIONS(2217), + [anon_sym_chan] = ACTIONS(2217), + [anon_sym_thread] = ACTIONS(2217), + [anon_sym_atomic] = ACTIONS(2217), }, [1208] = { [sym_line_comment] = STATE(1208), [sym_block_comment] = STATE(1208), - [sym_identifier] = ACTIONS(2307), - [anon_sym_LF] = ACTIONS(2307), - [anon_sym_CR] = ACTIONS(2307), - [anon_sym_CR_LF] = ACTIONS(2307), + [sym_identifier] = ACTIONS(2801), + [anon_sym_LF] = ACTIONS(2801), + [anon_sym_CR] = ACTIONS(2801), + [anon_sym_CR_LF] = ACTIONS(2801), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2307), - [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_as] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_COMMA] = ACTIONS(2307), - [anon_sym_RBRACE] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_RPAREN] = ACTIONS(2307), - [anon_sym_PIPE] = ACTIONS(2307), - [anon_sym_fn] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_SLASH] = ACTIONS(2307), - [anon_sym_PERCENT] = ACTIONS(2307), - [anon_sym_LT] = ACTIONS(2307), - [anon_sym_GT] = ACTIONS(2307), - [anon_sym_EQ_EQ] = ACTIONS(2307), - [anon_sym_BANG_EQ] = ACTIONS(2307), - [anon_sym_LT_EQ] = ACTIONS(2307), - [anon_sym_GT_EQ] = ACTIONS(2307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_struct] = ACTIONS(2307), - [anon_sym_mut] = ACTIONS(2307), - [anon_sym_PLUS_PLUS] = ACTIONS(2307), - [anon_sym_DASH_DASH] = ACTIONS(2307), - [anon_sym_QMARK] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_go] = ACTIONS(2307), - [anon_sym_spawn] = ACTIONS(2307), - [anon_sym_json_DOTdecode] = ACTIONS(2307), - [anon_sym_LBRACK2] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_CARET] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_LT_DASH] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(2307), - [anon_sym_GT_GT] = ACTIONS(2307), - [anon_sym_GT_GT_GT] = ACTIONS(2307), - [anon_sym_AMP_CARET] = ACTIONS(2307), - [anon_sym_AMP_AMP] = ACTIONS(2307), - [anon_sym_PIPE_PIPE] = ACTIONS(2307), - [anon_sym_or] = ACTIONS(2307), - [sym_none] = ACTIONS(2307), - [sym_true] = ACTIONS(2307), - [sym_false] = ACTIONS(2307), - [sym_nil] = ACTIONS(2307), - [anon_sym_QMARK_DOT] = ACTIONS(2307), - [anon_sym_POUND_LBRACK] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_DOLLARif] = ACTIONS(2307), - [anon_sym_is] = ACTIONS(2307), - [anon_sym_BANGis] = ACTIONS(2307), - [anon_sym_in] = ACTIONS(2307), - [anon_sym_BANGin] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_select] = ACTIONS(2307), - [anon_sym_lock] = ACTIONS(2307), - [anon_sym_rlock] = ACTIONS(2307), - [anon_sym_unsafe] = ACTIONS(2307), - [anon_sym_sql] = ACTIONS(2307), - [sym_int_literal] = ACTIONS(2307), - [sym_float_literal] = ACTIONS(2307), - [sym_rune_literal] = ACTIONS(2307), - [sym_pseudo_compile_time_identifier] = ACTIONS(2307), - [anon_sym_shared] = ACTIONS(2307), - [anon_sym_map_LBRACK] = ACTIONS(2307), - [anon_sym_chan] = ACTIONS(2307), - [anon_sym_thread] = ACTIONS(2307), - [anon_sym_atomic] = ACTIONS(2307), - [sym___double_quote] = ACTIONS(2307), - [sym___single_quote] = ACTIONS(2307), - [sym___c_double_quote] = ACTIONS(2307), - [sym___c_single_quote] = ACTIONS(2307), - [sym___r_double_quote] = ACTIONS(2307), - [sym___r_single_quote] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym_DOT] = ACTIONS(2801), + [anon_sym_as] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2801), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym_RPAREN] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2801), + [anon_sym_fn] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_PERCENT] = ACTIONS(2801), + [anon_sym_LT] = ACTIONS(2801), + [anon_sym_GT] = ACTIONS(2801), + [anon_sym_EQ_EQ] = ACTIONS(2801), + [anon_sym_BANG_EQ] = ACTIONS(2801), + [anon_sym_LT_EQ] = ACTIONS(2801), + [anon_sym_GT_EQ] = ACTIONS(2801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_struct] = ACTIONS(2801), + [anon_sym_mut] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_QMARK] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2801), + [anon_sym_json_DOTdecode] = ACTIONS(2801), + [anon_sym_LBRACK2] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_CARET] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_LT_DASH] = ACTIONS(2801), + [anon_sym_LT_LT] = ACTIONS(2801), + [anon_sym_GT_GT] = ACTIONS(2801), + [anon_sym_GT_GT_GT] = ACTIONS(2801), + [anon_sym_AMP_CARET] = ACTIONS(2801), + [anon_sym_AMP_AMP] = ACTIONS(2801), + [anon_sym_PIPE_PIPE] = ACTIONS(2801), + [anon_sym_or] = ACTIONS(2801), + [sym_none] = ACTIONS(2801), + [sym_true] = ACTIONS(2801), + [sym_false] = ACTIONS(2801), + [sym_nil] = ACTIONS(2801), + [anon_sym_QMARK_DOT] = ACTIONS(2801), + [anon_sym_POUND_LBRACK] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_DOLLARif] = ACTIONS(2801), + [anon_sym_is] = ACTIONS(2801), + [anon_sym_BANGis] = ACTIONS(2801), + [anon_sym_in] = ACTIONS(2801), + [anon_sym_BANGin] = ACTIONS(2801), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_select] = ACTIONS(2801), + [anon_sym_lock] = ACTIONS(2801), + [anon_sym_rlock] = ACTIONS(2801), + [anon_sym_unsafe] = ACTIONS(2801), + [anon_sym_sql] = ACTIONS(2801), + [sym_int_literal] = ACTIONS(2801), + [sym_float_literal] = ACTIONS(2801), + [sym_rune_literal] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_c_SQUOTE] = ACTIONS(2801), + [anon_sym_c_DQUOTE] = ACTIONS(2801), + [anon_sym_r_SQUOTE] = ACTIONS(2801), + [anon_sym_r_DQUOTE] = ACTIONS(2801), + [sym_pseudo_compile_time_identifier] = ACTIONS(2801), + [anon_sym_shared] = ACTIONS(2801), + [anon_sym_map_LBRACK] = ACTIONS(2801), + [anon_sym_chan] = ACTIONS(2801), + [anon_sym_thread] = ACTIONS(2801), + [anon_sym_atomic] = ACTIONS(2801), }, [1209] = { [sym_line_comment] = STATE(1209), [sym_block_comment] = STATE(1209), - [sym_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2806), - [anon_sym_CR] = ACTIONS(2806), - [anon_sym_CR_LF] = ACTIONS(2806), + [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(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_as] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_fn] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_SLASH] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2806), - [anon_sym_GT] = ACTIONS(2806), - [anon_sym_EQ_EQ] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_LT_EQ] = ACTIONS(2806), - [anon_sym_GT_EQ] = ACTIONS(2806), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2804), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_PLUS_PLUS] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2806), - [anon_sym_go] = ACTIONS(2806), - [anon_sym_spawn] = ACTIONS(2806), - [anon_sym_json_DOTdecode] = ACTIONS(2806), - [anon_sym_LBRACK2] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_LT_LT] = ACTIONS(2806), - [anon_sym_GT_GT] = ACTIONS(2806), - [anon_sym_GT_GT_GT] = ACTIONS(2806), - [anon_sym_AMP_CARET] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_or] = ACTIONS(2806), - [sym_none] = ACTIONS(2806), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_nil] = ACTIONS(2806), - [anon_sym_QMARK_DOT] = ACTIONS(2806), - [anon_sym_POUND_LBRACK] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_DOLLARif] = ACTIONS(2806), - [anon_sym_is] = ACTIONS(2806), - [anon_sym_BANGis] = ACTIONS(2806), - [anon_sym_in] = ACTIONS(2806), - [anon_sym_BANGin] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_select] = ACTIONS(2806), - [anon_sym_lock] = ACTIONS(2806), - [anon_sym_rlock] = ACTIONS(2806), - [anon_sym_unsafe] = ACTIONS(2806), - [anon_sym_sql] = ACTIONS(2806), - [sym_int_literal] = ACTIONS(2806), - [sym_float_literal] = ACTIONS(2806), - [sym_rune_literal] = ACTIONS(2806), - [sym_pseudo_compile_time_identifier] = ACTIONS(2806), - [anon_sym_shared] = ACTIONS(2806), - [anon_sym_map_LBRACK] = ACTIONS(2806), - [anon_sym_chan] = ACTIONS(2806), - [anon_sym_thread] = ACTIONS(2806), - [anon_sym_atomic] = ACTIONS(2806), - [sym___double_quote] = ACTIONS(2806), - [sym___single_quote] = ACTIONS(2806), - [sym___c_double_quote] = ACTIONS(2806), - [sym___c_single_quote] = ACTIONS(2806), - [sym___r_double_quote] = ACTIONS(2806), - [sym___r_single_quote] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2093), + [anon_sym_DOT] = ACTIONS(2093), + [anon_sym_as] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_COMMA] = ACTIONS(2093), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_RPAREN] = ACTIONS(2093), + [anon_sym_PIPE] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(2093), + [anon_sym_SLASH] = ACTIONS(2093), + [anon_sym_PERCENT] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_GT] = ACTIONS(2093), + [anon_sym_EQ_EQ] = ACTIONS(2093), + [anon_sym_BANG_EQ] = ACTIONS(2093), + [anon_sym_LT_EQ] = ACTIONS(2093), + [anon_sym_GT_EQ] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_mut] = ACTIONS(2093), + [anon_sym_PLUS_PLUS] = ACTIONS(2093), + [anon_sym_DASH_DASH] = ACTIONS(2093), + [anon_sym_QMARK] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2093), + [anon_sym_json_DOTdecode] = ACTIONS(2093), + [anon_sym_LBRACK2] = ACTIONS(2093), + [anon_sym_TILDE] = ACTIONS(2093), + [anon_sym_CARET] = ACTIONS(2093), + [anon_sym_AMP] = ACTIONS(2093), + [anon_sym_LT_DASH] = ACTIONS(2093), + [anon_sym_LT_LT] = ACTIONS(2093), + [anon_sym_GT_GT] = ACTIONS(2093), + [anon_sym_GT_GT_GT] = ACTIONS(2093), + [anon_sym_AMP_CARET] = ACTIONS(2093), + [anon_sym_AMP_AMP] = ACTIONS(2093), + [anon_sym_PIPE_PIPE] = ACTIONS(2093), + [anon_sym_or] = ACTIONS(2093), + [sym_none] = ACTIONS(2093), + [sym_true] = ACTIONS(2093), + [sym_false] = ACTIONS(2093), + [sym_nil] = ACTIONS(2093), + [anon_sym_QMARK_DOT] = ACTIONS(2093), + [anon_sym_POUND_LBRACK] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_DOLLARif] = ACTIONS(2093), + [anon_sym_is] = ACTIONS(2093), + [anon_sym_BANGis] = ACTIONS(2093), + [anon_sym_in] = ACTIONS(2093), + [anon_sym_BANGin] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_select] = ACTIONS(2093), + [anon_sym_lock] = ACTIONS(2093), + [anon_sym_rlock] = ACTIONS(2093), + [anon_sym_unsafe] = ACTIONS(2093), + [anon_sym_sql] = ACTIONS(2093), + [sym_int_literal] = ACTIONS(2093), + [sym_float_literal] = ACTIONS(2093), + [sym_rune_literal] = ACTIONS(2093), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(2093), + [anon_sym_c_SQUOTE] = ACTIONS(2093), + [anon_sym_c_DQUOTE] = ACTIONS(2093), + [anon_sym_r_SQUOTE] = ACTIONS(2093), + [anon_sym_r_DQUOTE] = ACTIONS(2093), + [sym_pseudo_compile_time_identifier] = ACTIONS(2093), + [anon_sym_shared] = ACTIONS(2093), + [anon_sym_map_LBRACK] = ACTIONS(2093), + [anon_sym_chan] = ACTIONS(2093), + [anon_sym_thread] = ACTIONS(2093), + [anon_sym_atomic] = ACTIONS(2093), }, [1210] = { [sym_line_comment] = STATE(1210), [sym_block_comment] = STATE(1210), - [sym_identifier] = ACTIONS(2532), - [anon_sym_LF] = ACTIONS(2532), - [anon_sym_CR] = ACTIONS(2532), - [anon_sym_CR_LF] = ACTIONS(2532), + [sym_identifier] = ACTIONS(2221), + [anon_sym_LF] = ACTIONS(2221), + [anon_sym_CR] = ACTIONS(2221), + [anon_sym_CR_LF] = ACTIONS(2221), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2532), - [anon_sym_DOT] = ACTIONS(2532), - [anon_sym_as] = ACTIONS(2532), - [anon_sym_LBRACE] = ACTIONS(2532), - [anon_sym_COMMA] = ACTIONS(2532), - [anon_sym_RBRACE] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_RPAREN] = ACTIONS(2532), - [anon_sym_PIPE] = ACTIONS(2532), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2532), - [anon_sym_DASH] = ACTIONS(2532), - [anon_sym_STAR] = ACTIONS(2532), - [anon_sym_SLASH] = ACTIONS(2532), - [anon_sym_PERCENT] = ACTIONS(2532), - [anon_sym_LT] = ACTIONS(2532), - [anon_sym_GT] = ACTIONS(2532), - [anon_sym_EQ_EQ] = ACTIONS(2532), - [anon_sym_BANG_EQ] = ACTIONS(2532), - [anon_sym_LT_EQ] = ACTIONS(2532), - [anon_sym_GT_EQ] = ACTIONS(2532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(2532), - [anon_sym_mut] = ACTIONS(2532), - [anon_sym_PLUS_PLUS] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2532), - [anon_sym_QMARK] = ACTIONS(2532), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2532), - [anon_sym_spawn] = ACTIONS(2532), - [anon_sym_json_DOTdecode] = ACTIONS(2532), - [anon_sym_LBRACK2] = ACTIONS(2532), - [anon_sym_TILDE] = ACTIONS(2532), - [anon_sym_CARET] = ACTIONS(2532), - [anon_sym_AMP] = ACTIONS(2532), - [anon_sym_LT_DASH] = ACTIONS(2532), - [anon_sym_LT_LT] = ACTIONS(2532), - [anon_sym_GT_GT] = ACTIONS(2532), - [anon_sym_GT_GT_GT] = ACTIONS(2532), - [anon_sym_AMP_CARET] = ACTIONS(2532), - [anon_sym_AMP_AMP] = ACTIONS(2532), - [anon_sym_PIPE_PIPE] = ACTIONS(2532), - [anon_sym_or] = ACTIONS(2532), - [sym_none] = ACTIONS(2532), - [sym_true] = ACTIONS(2532), - [sym_false] = ACTIONS(2532), - [sym_nil] = ACTIONS(2532), - [anon_sym_QMARK_DOT] = ACTIONS(2532), - [anon_sym_POUND_LBRACK] = ACTIONS(2532), - [anon_sym_if] = ACTIONS(2532), - [anon_sym_DOLLARif] = ACTIONS(2532), - [anon_sym_is] = ACTIONS(2532), - [anon_sym_BANGis] = ACTIONS(2532), - [anon_sym_in] = ACTIONS(2532), - [anon_sym_BANGin] = ACTIONS(2532), - [anon_sym_match] = ACTIONS(2532), - [anon_sym_select] = ACTIONS(2532), - [anon_sym_lock] = ACTIONS(2532), - [anon_sym_rlock] = ACTIONS(2532), - [anon_sym_unsafe] = ACTIONS(2532), - [anon_sym_sql] = ACTIONS(2532), - [sym_int_literal] = ACTIONS(2532), - [sym_float_literal] = ACTIONS(2532), - [sym_rune_literal] = ACTIONS(2532), - [sym_pseudo_compile_time_identifier] = ACTIONS(2532), - [anon_sym_shared] = ACTIONS(2532), - [anon_sym_map_LBRACK] = ACTIONS(2532), - [anon_sym_chan] = ACTIONS(2532), - [anon_sym_thread] = ACTIONS(2532), - [anon_sym_atomic] = ACTIONS(2532), - [sym___double_quote] = ACTIONS(2532), - [sym___single_quote] = ACTIONS(2532), - [sym___c_double_quote] = ACTIONS(2532), - [sym___c_single_quote] = ACTIONS(2532), - [sym___r_double_quote] = ACTIONS(2532), - [sym___r_single_quote] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_DOT] = ACTIONS(2221), + [anon_sym_as] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_COMMA] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_RPAREN] = ACTIONS(2221), + [anon_sym_PIPE] = ACTIONS(2221), + [anon_sym_fn] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_STAR] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_PERCENT] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_GT] = ACTIONS(2221), + [anon_sym_EQ_EQ] = ACTIONS(2221), + [anon_sym_BANG_EQ] = ACTIONS(2221), + [anon_sym_LT_EQ] = ACTIONS(2221), + [anon_sym_GT_EQ] = ACTIONS(2221), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2221), + [anon_sym_mut] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [anon_sym_QMARK] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_go] = ACTIONS(2221), + [anon_sym_spawn] = ACTIONS(2221), + [anon_sym_json_DOTdecode] = ACTIONS(2221), + [anon_sym_LBRACK2] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_LT_DASH] = ACTIONS(2221), + [anon_sym_LT_LT] = ACTIONS(2221), + [anon_sym_GT_GT] = ACTIONS(2221), + [anon_sym_GT_GT_GT] = ACTIONS(2221), + [anon_sym_AMP_CARET] = ACTIONS(2221), + [anon_sym_AMP_AMP] = ACTIONS(2221), + [anon_sym_PIPE_PIPE] = ACTIONS(2221), + [anon_sym_or] = ACTIONS(2221), + [sym_none] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_nil] = ACTIONS(2221), + [anon_sym_QMARK_DOT] = ACTIONS(2221), + [anon_sym_POUND_LBRACK] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_DOLLARif] = ACTIONS(2221), + [anon_sym_is] = ACTIONS(2221), + [anon_sym_BANGis] = ACTIONS(2221), + [anon_sym_in] = ACTIONS(2221), + [anon_sym_BANGin] = ACTIONS(2221), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_select] = ACTIONS(2221), + [anon_sym_lock] = ACTIONS(2221), + [anon_sym_rlock] = ACTIONS(2221), + [anon_sym_unsafe] = ACTIONS(2221), + [anon_sym_sql] = ACTIONS(2221), + [sym_int_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + [sym_rune_literal] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_c_SQUOTE] = ACTIONS(2221), + [anon_sym_c_DQUOTE] = ACTIONS(2221), + [anon_sym_r_SQUOTE] = ACTIONS(2221), + [anon_sym_r_DQUOTE] = ACTIONS(2221), + [sym_pseudo_compile_time_identifier] = ACTIONS(2221), + [anon_sym_shared] = ACTIONS(2221), + [anon_sym_map_LBRACK] = ACTIONS(2221), + [anon_sym_chan] = ACTIONS(2221), + [anon_sym_thread] = ACTIONS(2221), + [anon_sym_atomic] = ACTIONS(2221), }, [1211] = { [sym_line_comment] = STATE(1211), [sym_block_comment] = STATE(1211), - [sym_identifier] = ACTIONS(2513), - [anon_sym_LF] = ACTIONS(2513), - [anon_sym_CR] = ACTIONS(2513), - [anon_sym_CR_LF] = ACTIONS(2513), + [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(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_DOT] = ACTIONS(2513), - [anon_sym_as] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_COMMA] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_RPAREN] = ACTIONS(2513), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_fn] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2513), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_GT] = ACTIONS(2513), - [anon_sym_EQ_EQ] = ACTIONS(2513), - [anon_sym_BANG_EQ] = ACTIONS(2513), - [anon_sym_LT_EQ] = ACTIONS(2513), - [anon_sym_GT_EQ] = ACTIONS(2513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_QMARK] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_go] = ACTIONS(2513), - [anon_sym_spawn] = ACTIONS(2513), - [anon_sym_json_DOTdecode] = ACTIONS(2513), - [anon_sym_LBRACK2] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_LT_DASH] = ACTIONS(2513), - [anon_sym_LT_LT] = ACTIONS(2513), - [anon_sym_GT_GT] = ACTIONS(2513), - [anon_sym_GT_GT_GT] = ACTIONS(2513), - [anon_sym_AMP_CARET] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2513), - [anon_sym_or] = ACTIONS(2513), - [sym_none] = ACTIONS(2513), - [sym_true] = ACTIONS(2513), - [sym_false] = ACTIONS(2513), - [sym_nil] = ACTIONS(2513), - [anon_sym_QMARK_DOT] = ACTIONS(2513), - [anon_sym_POUND_LBRACK] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_DOLLARif] = ACTIONS(2513), - [anon_sym_is] = ACTIONS(2513), - [anon_sym_BANGis] = ACTIONS(2513), - [anon_sym_in] = ACTIONS(2513), - [anon_sym_BANGin] = ACTIONS(2513), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_select] = ACTIONS(2513), - [anon_sym_lock] = ACTIONS(2513), - [anon_sym_rlock] = ACTIONS(2513), - [anon_sym_unsafe] = ACTIONS(2513), - [anon_sym_sql] = ACTIONS(2513), - [sym_int_literal] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2513), - [sym_rune_literal] = ACTIONS(2513), - [sym_pseudo_compile_time_identifier] = ACTIONS(2513), - [anon_sym_shared] = ACTIONS(2513), - [anon_sym_map_LBRACK] = ACTIONS(2513), - [anon_sym_chan] = ACTIONS(2513), - [anon_sym_thread] = ACTIONS(2513), - [anon_sym_atomic] = ACTIONS(2513), - [sym___double_quote] = ACTIONS(2513), - [sym___single_quote] = ACTIONS(2513), - [sym___c_double_quote] = ACTIONS(2513), - [sym___c_single_quote] = ACTIONS(2513), - [sym___r_double_quote] = ACTIONS(2513), - [sym___r_single_quote] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym_DOT] = ACTIONS(2877), + [anon_sym_as] = ACTIONS(2877), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_COMMA] = ACTIONS(2877), + [anon_sym_RBRACE] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(2877), + [anon_sym_RPAREN] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2877), + [anon_sym_fn] = ACTIONS(2877), + [anon_sym_PLUS] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_SLASH] = ACTIONS(2877), + [anon_sym_PERCENT] = ACTIONS(2877), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_EQ_EQ] = ACTIONS(2877), + [anon_sym_BANG_EQ] = ACTIONS(2877), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2877), + [anon_sym_mut] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_QMARK] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_go] = ACTIONS(2877), + [anon_sym_spawn] = ACTIONS(2877), + [anon_sym_json_DOTdecode] = ACTIONS(2877), + [anon_sym_LBRACK2] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_CARET] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2877), + [anon_sym_LT_DASH] = ACTIONS(2877), + [anon_sym_LT_LT] = ACTIONS(2877), + [anon_sym_GT_GT] = ACTIONS(2877), + [anon_sym_GT_GT_GT] = ACTIONS(2877), + [anon_sym_AMP_CARET] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_PIPE_PIPE] = ACTIONS(2877), + [anon_sym_or] = ACTIONS(2877), + [sym_none] = ACTIONS(2877), + [sym_true] = ACTIONS(2877), + [sym_false] = ACTIONS(2877), + [sym_nil] = ACTIONS(2877), + [anon_sym_QMARK_DOT] = ACTIONS(2877), + [anon_sym_POUND_LBRACK] = ACTIONS(2877), + [anon_sym_if] = ACTIONS(2877), + [anon_sym_DOLLARif] = ACTIONS(2877), + [anon_sym_is] = ACTIONS(2877), + [anon_sym_BANGis] = ACTIONS(2877), + [anon_sym_in] = ACTIONS(2877), + [anon_sym_BANGin] = ACTIONS(2877), + [anon_sym_match] = ACTIONS(2877), + [anon_sym_select] = ACTIONS(2877), + [anon_sym_lock] = ACTIONS(2877), + [anon_sym_rlock] = ACTIONS(2877), + [anon_sym_unsafe] = ACTIONS(2877), + [anon_sym_sql] = ACTIONS(2877), + [sym_int_literal] = ACTIONS(2877), + [sym_float_literal] = ACTIONS(2877), + [sym_rune_literal] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [anon_sym_c_SQUOTE] = ACTIONS(2877), + [anon_sym_c_DQUOTE] = ACTIONS(2877), + [anon_sym_r_SQUOTE] = ACTIONS(2877), + [anon_sym_r_DQUOTE] = ACTIONS(2877), + [sym_pseudo_compile_time_identifier] = ACTIONS(2877), + [anon_sym_shared] = ACTIONS(2877), + [anon_sym_map_LBRACK] = ACTIONS(2877), + [anon_sym_chan] = ACTIONS(2877), + [anon_sym_thread] = ACTIONS(2877), + [anon_sym_atomic] = ACTIONS(2877), }, [1212] = { [sym_line_comment] = STATE(1212), [sym_block_comment] = STATE(1212), - [sym_identifier] = ACTIONS(2522), - [anon_sym_LF] = ACTIONS(2522), - [anon_sym_CR] = ACTIONS(2522), - [anon_sym_CR_LF] = ACTIONS(2522), + [sym_identifier] = ACTIONS(2137), + [anon_sym_LF] = ACTIONS(2137), + [anon_sym_CR] = ACTIONS(2137), + [anon_sym_CR_LF] = ACTIONS(2137), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2522), - [anon_sym_DOT] = ACTIONS(2522), - [anon_sym_as] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_COMMA] = ACTIONS(2522), - [anon_sym_RBRACE] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym_RPAREN] = ACTIONS(2522), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_fn] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2522), - [anon_sym_SLASH] = ACTIONS(2522), - [anon_sym_PERCENT] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_GT] = ACTIONS(2522), - [anon_sym_EQ_EQ] = ACTIONS(2522), - [anon_sym_BANG_EQ] = ACTIONS(2522), - [anon_sym_LT_EQ] = ACTIONS(2522), - [anon_sym_GT_EQ] = ACTIONS(2522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(2522), - [anon_sym_mut] = ACTIONS(2522), - [anon_sym_PLUS_PLUS] = ACTIONS(2522), - [anon_sym_DASH_DASH] = ACTIONS(2522), - [anon_sym_QMARK] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_go] = ACTIONS(2522), - [anon_sym_spawn] = ACTIONS(2522), - [anon_sym_json_DOTdecode] = ACTIONS(2522), - [anon_sym_LBRACK2] = ACTIONS(2522), - [anon_sym_TILDE] = ACTIONS(2522), - [anon_sym_CARET] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_LT_DASH] = ACTIONS(2522), - [anon_sym_LT_LT] = ACTIONS(2522), - [anon_sym_GT_GT] = ACTIONS(2522), - [anon_sym_GT_GT_GT] = ACTIONS(2522), - [anon_sym_AMP_CARET] = ACTIONS(2522), - [anon_sym_AMP_AMP] = ACTIONS(2522), - [anon_sym_PIPE_PIPE] = ACTIONS(2522), - [anon_sym_or] = ACTIONS(2522), - [sym_none] = ACTIONS(2522), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_nil] = ACTIONS(2522), - [anon_sym_QMARK_DOT] = ACTIONS(2522), - [anon_sym_POUND_LBRACK] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_DOLLARif] = ACTIONS(2522), - [anon_sym_is] = ACTIONS(2522), - [anon_sym_BANGis] = ACTIONS(2522), - [anon_sym_in] = ACTIONS(2522), - [anon_sym_BANGin] = ACTIONS(2522), - [anon_sym_match] = ACTIONS(2522), - [anon_sym_select] = ACTIONS(2522), - [anon_sym_lock] = ACTIONS(2522), - [anon_sym_rlock] = ACTIONS(2522), - [anon_sym_unsafe] = ACTIONS(2522), - [anon_sym_sql] = ACTIONS(2522), - [sym_int_literal] = ACTIONS(2522), - [sym_float_literal] = ACTIONS(2522), - [sym_rune_literal] = ACTIONS(2522), - [sym_pseudo_compile_time_identifier] = ACTIONS(2522), - [anon_sym_shared] = ACTIONS(2522), - [anon_sym_map_LBRACK] = ACTIONS(2522), - [anon_sym_chan] = ACTIONS(2522), - [anon_sym_thread] = ACTIONS(2522), - [anon_sym_atomic] = ACTIONS(2522), - [sym___double_quote] = ACTIONS(2522), - [sym___single_quote] = ACTIONS(2522), - [sym___c_double_quote] = ACTIONS(2522), - [sym___c_single_quote] = ACTIONS(2522), - [sym___r_double_quote] = ACTIONS(2522), - [sym___r_single_quote] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_DOT] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(2137), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_RPAREN] = ACTIONS(2137), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_struct] = ACTIONS(2137), + [anon_sym_mut] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_QMARK] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(2137), + [anon_sym_spawn] = ACTIONS(2137), + [anon_sym_json_DOTdecode] = ACTIONS(2137), + [anon_sym_LBRACK2] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_LT_DASH] = ACTIONS(2137), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_AMP_CARET] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_or] = ACTIONS(2139), + [sym_none] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_nil] = ACTIONS(2137), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_POUND_LBRACK] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_DOLLARif] = ACTIONS(2137), + [anon_sym_is] = ACTIONS(2139), + [anon_sym_BANGis] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_BANGin] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2137), + [anon_sym_select] = ACTIONS(2137), + [anon_sym_lock] = ACTIONS(2137), + [anon_sym_rlock] = ACTIONS(2137), + [anon_sym_unsafe] = ACTIONS(2137), + [anon_sym_sql] = ACTIONS(2137), + [sym_int_literal] = ACTIONS(2137), + [sym_float_literal] = ACTIONS(2137), + [sym_rune_literal] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(2137), + [anon_sym_c_SQUOTE] = ACTIONS(2137), + [anon_sym_c_DQUOTE] = ACTIONS(2137), + [anon_sym_r_SQUOTE] = ACTIONS(2137), + [anon_sym_r_DQUOTE] = ACTIONS(2137), + [sym_pseudo_compile_time_identifier] = ACTIONS(2137), + [anon_sym_shared] = ACTIONS(2137), + [anon_sym_map_LBRACK] = ACTIONS(2137), + [anon_sym_chan] = ACTIONS(2137), + [anon_sym_thread] = ACTIONS(2137), + [anon_sym_atomic] = ACTIONS(2137), }, [1213] = { [sym_line_comment] = STATE(1213), [sym_block_comment] = STATE(1213), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LF] = ACTIONS(3058), - [anon_sym_CR] = ACTIONS(3058), - [anon_sym_CR_LF] = ACTIONS(3058), + [sym_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2229), + [anon_sym_CR] = ACTIONS(2229), + [anon_sym_CR_LF] = ACTIONS(2229), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_as] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_RBRACE] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_RPAREN] = ACTIONS(3058), - [anon_sym_PIPE] = ACTIONS(3058), - [anon_sym_fn] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3058), - [anon_sym_EQ_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_LT_EQ] = ACTIONS(3058), - [anon_sym_GT_EQ] = ACTIONS(3058), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_struct] = ACTIONS(3058), - [anon_sym_mut] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3058), - [anon_sym_DASH_DASH] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_BANG] = ACTIONS(3058), - [anon_sym_go] = ACTIONS(3058), - [anon_sym_spawn] = ACTIONS(3058), - [anon_sym_json_DOTdecode] = ACTIONS(3058), - [anon_sym_LBRACK2] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3058), - [anon_sym_CARET] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3058), - [anon_sym_LT_LT] = ACTIONS(3058), - [anon_sym_GT_GT] = ACTIONS(3058), - [anon_sym_GT_GT_GT] = ACTIONS(3058), - [anon_sym_AMP_CARET] = ACTIONS(3058), - [anon_sym_AMP_AMP] = ACTIONS(3058), - [anon_sym_PIPE_PIPE] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3058), - [sym_none] = ACTIONS(3058), - [sym_true] = ACTIONS(3058), - [sym_false] = ACTIONS(3058), - [sym_nil] = ACTIONS(3058), - [anon_sym_QMARK_DOT] = ACTIONS(3058), - [anon_sym_POUND_LBRACK] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_DOLLARif] = ACTIONS(3058), - [anon_sym_is] = ACTIONS(3058), - [anon_sym_BANGis] = ACTIONS(3058), - [anon_sym_in] = ACTIONS(3058), - [anon_sym_BANGin] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_select] = ACTIONS(3058), - [anon_sym_lock] = ACTIONS(3058), - [anon_sym_rlock] = ACTIONS(3058), - [anon_sym_unsafe] = ACTIONS(3058), - [anon_sym_sql] = ACTIONS(3058), - [sym_int_literal] = ACTIONS(3058), - [sym_float_literal] = ACTIONS(3058), - [sym_rune_literal] = ACTIONS(3058), - [sym_pseudo_compile_time_identifier] = ACTIONS(3058), - [anon_sym_shared] = ACTIONS(3058), - [anon_sym_map_LBRACK] = ACTIONS(3058), - [anon_sym_chan] = ACTIONS(3058), - [anon_sym_thread] = ACTIONS(3058), - [anon_sym_atomic] = ACTIONS(3058), - [sym___double_quote] = ACTIONS(3058), - [sym___single_quote] = ACTIONS(3058), - [sym___c_double_quote] = ACTIONS(3058), - [sym___c_single_quote] = ACTIONS(3058), - [sym___r_double_quote] = ACTIONS(3058), - [sym___r_single_quote] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_COMMA] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_RPAREN] = ACTIONS(2229), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_fn] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_SLASH] = ACTIONS(2229), + [anon_sym_PERCENT] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_GT] = ACTIONS(2229), + [anon_sym_EQ_EQ] = ACTIONS(2229), + [anon_sym_BANG_EQ] = ACTIONS(2229), + [anon_sym_LT_EQ] = ACTIONS(2229), + [anon_sym_GT_EQ] = ACTIONS(2229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_struct] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_PLUS_PLUS] = ACTIONS(2229), + [anon_sym_DASH_DASH] = ACTIONS(2229), + [anon_sym_QMARK] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_go] = ACTIONS(2229), + [anon_sym_spawn] = ACTIONS(2229), + [anon_sym_json_DOTdecode] = ACTIONS(2229), + [anon_sym_LBRACK2] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_LT_DASH] = ACTIONS(2229), + [anon_sym_LT_LT] = ACTIONS(2229), + [anon_sym_GT_GT] = ACTIONS(2229), + [anon_sym_GT_GT_GT] = ACTIONS(2229), + [anon_sym_AMP_CARET] = ACTIONS(2229), + [anon_sym_AMP_AMP] = ACTIONS(2229), + [anon_sym_PIPE_PIPE] = ACTIONS(2229), + [anon_sym_or] = ACTIONS(2229), + [sym_none] = ACTIONS(2229), + [sym_true] = ACTIONS(2229), + [sym_false] = ACTIONS(2229), + [sym_nil] = ACTIONS(2229), + [anon_sym_QMARK_DOT] = ACTIONS(2229), + [anon_sym_POUND_LBRACK] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_DOLLARif] = ACTIONS(2229), + [anon_sym_is] = ACTIONS(2229), + [anon_sym_BANGis] = ACTIONS(2229), + [anon_sym_in] = ACTIONS(2229), + [anon_sym_BANGin] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_select] = ACTIONS(2229), + [anon_sym_lock] = ACTIONS(2229), + [anon_sym_rlock] = ACTIONS(2229), + [anon_sym_unsafe] = ACTIONS(2229), + [anon_sym_sql] = ACTIONS(2229), + [sym_int_literal] = ACTIONS(2229), + [sym_float_literal] = ACTIONS(2229), + [sym_rune_literal] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [anon_sym_c_SQUOTE] = ACTIONS(2229), + [anon_sym_c_DQUOTE] = ACTIONS(2229), + [anon_sym_r_SQUOTE] = ACTIONS(2229), + [anon_sym_r_DQUOTE] = ACTIONS(2229), + [sym_pseudo_compile_time_identifier] = ACTIONS(2229), + [anon_sym_shared] = ACTIONS(2229), + [anon_sym_map_LBRACK] = ACTIONS(2229), + [anon_sym_chan] = ACTIONS(2229), + [anon_sym_thread] = ACTIONS(2229), + [anon_sym_atomic] = ACTIONS(2229), }, [1214] = { [sym_line_comment] = STATE(1214), [sym_block_comment] = STATE(1214), - [sym_identifier] = ACTIONS(2509), - [anon_sym_LF] = ACTIONS(2509), - [anon_sym_CR] = ACTIONS(2509), - [anon_sym_CR_LF] = ACTIONS(2509), + [sym_identifier] = ACTIONS(2265), + [anon_sym_LF] = ACTIONS(2265), + [anon_sym_CR] = ACTIONS(2265), + [anon_sym_CR_LF] = ACTIONS(2265), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2509), - [anon_sym_DOT] = ACTIONS(2509), - [anon_sym_as] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_COMMA] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2509), - [anon_sym_RPAREN] = ACTIONS(2509), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_fn] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_SLASH] = ACTIONS(2509), - [anon_sym_PERCENT] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_GT] = ACTIONS(2509), - [anon_sym_EQ_EQ] = ACTIONS(2509), - [anon_sym_BANG_EQ] = ACTIONS(2509), - [anon_sym_LT_EQ] = ACTIONS(2509), - [anon_sym_GT_EQ] = ACTIONS(2509), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2509), - [anon_sym_mut] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2509), - [anon_sym_DASH_DASH] = ACTIONS(2509), - [anon_sym_QMARK] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_go] = ACTIONS(2509), - [anon_sym_spawn] = ACTIONS(2509), - [anon_sym_json_DOTdecode] = ACTIONS(2509), - [anon_sym_LBRACK2] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2509), - [anon_sym_CARET] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2509), - [anon_sym_LT_DASH] = ACTIONS(2509), - [anon_sym_LT_LT] = ACTIONS(2509), - [anon_sym_GT_GT] = ACTIONS(2509), - [anon_sym_GT_GT_GT] = ACTIONS(2509), - [anon_sym_AMP_CARET] = ACTIONS(2509), - [anon_sym_AMP_AMP] = ACTIONS(2509), - [anon_sym_PIPE_PIPE] = ACTIONS(2509), - [anon_sym_or] = ACTIONS(2509), - [sym_none] = ACTIONS(2509), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_nil] = ACTIONS(2509), - [anon_sym_QMARK_DOT] = ACTIONS(2509), - [anon_sym_POUND_LBRACK] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_DOLLARif] = ACTIONS(2509), - [anon_sym_is] = ACTIONS(2509), - [anon_sym_BANGis] = ACTIONS(2509), - [anon_sym_in] = ACTIONS(2509), - [anon_sym_BANGin] = ACTIONS(2509), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_select] = ACTIONS(2509), - [anon_sym_lock] = ACTIONS(2509), - [anon_sym_rlock] = ACTIONS(2509), - [anon_sym_unsafe] = ACTIONS(2509), - [anon_sym_sql] = ACTIONS(2509), - [sym_int_literal] = ACTIONS(2509), - [sym_float_literal] = ACTIONS(2509), - [sym_rune_literal] = ACTIONS(2509), - [sym_pseudo_compile_time_identifier] = ACTIONS(2509), - [anon_sym_shared] = ACTIONS(2509), - [anon_sym_map_LBRACK] = ACTIONS(2509), - [anon_sym_chan] = ACTIONS(2509), - [anon_sym_thread] = ACTIONS(2509), - [anon_sym_atomic] = ACTIONS(2509), - [sym___double_quote] = ACTIONS(2509), - [sym___single_quote] = ACTIONS(2509), - [sym___c_double_quote] = ACTIONS(2509), - [sym___c_single_quote] = ACTIONS(2509), - [sym___r_double_quote] = ACTIONS(2509), - [sym___r_single_quote] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2265), + [anon_sym_DOT] = ACTIONS(2265), + [anon_sym_as] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2265), + [anon_sym_COMMA] = ACTIONS(2265), + [anon_sym_RBRACE] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2265), + [anon_sym_RPAREN] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(2265), + [anon_sym_fn] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2265), + [anon_sym_SLASH] = ACTIONS(2265), + [anon_sym_PERCENT] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_GT] = ACTIONS(2265), + [anon_sym_EQ_EQ] = ACTIONS(2265), + [anon_sym_BANG_EQ] = ACTIONS(2265), + [anon_sym_LT_EQ] = ACTIONS(2265), + [anon_sym_GT_EQ] = ACTIONS(2265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_struct] = ACTIONS(2265), + [anon_sym_mut] = ACTIONS(2265), + [anon_sym_PLUS_PLUS] = ACTIONS(2265), + [anon_sym_DASH_DASH] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(2265), + [anon_sym_go] = ACTIONS(2265), + [anon_sym_spawn] = ACTIONS(2265), + [anon_sym_json_DOTdecode] = ACTIONS(2265), + [anon_sym_LBRACK2] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_CARET] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_LT_DASH] = ACTIONS(2265), + [anon_sym_LT_LT] = ACTIONS(2265), + [anon_sym_GT_GT] = ACTIONS(2265), + [anon_sym_GT_GT_GT] = ACTIONS(2265), + [anon_sym_AMP_CARET] = ACTIONS(2265), + [anon_sym_AMP_AMP] = ACTIONS(2265), + [anon_sym_PIPE_PIPE] = ACTIONS(2265), + [anon_sym_or] = ACTIONS(2265), + [sym_none] = ACTIONS(2265), + [sym_true] = ACTIONS(2265), + [sym_false] = ACTIONS(2265), + [sym_nil] = ACTIONS(2265), + [anon_sym_QMARK_DOT] = ACTIONS(2265), + [anon_sym_POUND_LBRACK] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_DOLLARif] = ACTIONS(2265), + [anon_sym_is] = ACTIONS(2265), + [anon_sym_BANGis] = ACTIONS(2265), + [anon_sym_in] = ACTIONS(2265), + [anon_sym_BANGin] = ACTIONS(2265), + [anon_sym_match] = ACTIONS(2265), + [anon_sym_select] = ACTIONS(2265), + [anon_sym_lock] = ACTIONS(2265), + [anon_sym_rlock] = ACTIONS(2265), + [anon_sym_unsafe] = ACTIONS(2265), + [anon_sym_sql] = ACTIONS(2265), + [sym_int_literal] = ACTIONS(2265), + [sym_float_literal] = ACTIONS(2265), + [sym_rune_literal] = ACTIONS(2265), + [anon_sym_SQUOTE] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2265), + [anon_sym_c_SQUOTE] = ACTIONS(2265), + [anon_sym_c_DQUOTE] = ACTIONS(2265), + [anon_sym_r_SQUOTE] = ACTIONS(2265), + [anon_sym_r_DQUOTE] = ACTIONS(2265), + [sym_pseudo_compile_time_identifier] = ACTIONS(2265), + [anon_sym_shared] = ACTIONS(2265), + [anon_sym_map_LBRACK] = ACTIONS(2265), + [anon_sym_chan] = ACTIONS(2265), + [anon_sym_thread] = ACTIONS(2265), + [anon_sym_atomic] = ACTIONS(2265), }, [1215] = { [sym_line_comment] = STATE(1215), [sym_block_comment] = STATE(1215), - [sym_identifier] = ACTIONS(2311), - [anon_sym_LF] = ACTIONS(2311), - [anon_sym_CR] = ACTIONS(2311), - [anon_sym_CR_LF] = ACTIONS(2311), + [sym_identifier] = ACTIONS(1809), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_CR] = ACTIONS(1809), + [anon_sym_CR_LF] = ACTIONS(1809), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2311), - [anon_sym_DOT] = ACTIONS(2311), - [anon_sym_as] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2311), - [anon_sym_COMMA] = ACTIONS(2311), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_RPAREN] = ACTIONS(2311), - [anon_sym_PIPE] = ACTIONS(2311), - [anon_sym_fn] = ACTIONS(2311), - [anon_sym_PLUS] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2311), - [anon_sym_STAR] = ACTIONS(2311), - [anon_sym_SLASH] = ACTIONS(2311), - [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_GT] = ACTIONS(2311), - [anon_sym_EQ_EQ] = ACTIONS(2311), - [anon_sym_BANG_EQ] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(2311), - [anon_sym_GT_EQ] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2309), - [anon_sym_struct] = ACTIONS(2311), - [anon_sym_mut] = ACTIONS(2311), - [anon_sym_PLUS_PLUS] = ACTIONS(2311), - [anon_sym_DASH_DASH] = ACTIONS(2311), - [anon_sym_QMARK] = ACTIONS(2311), - [anon_sym_BANG] = ACTIONS(2311), - [anon_sym_go] = ACTIONS(2311), - [anon_sym_spawn] = ACTIONS(2311), - [anon_sym_json_DOTdecode] = ACTIONS(2311), - [anon_sym_LBRACK2] = ACTIONS(2311), - [anon_sym_TILDE] = ACTIONS(2311), - [anon_sym_CARET] = ACTIONS(2311), - [anon_sym_AMP] = ACTIONS(2311), - [anon_sym_LT_DASH] = ACTIONS(2311), - [anon_sym_LT_LT] = ACTIONS(2311), - [anon_sym_GT_GT] = ACTIONS(2311), - [anon_sym_GT_GT_GT] = ACTIONS(2311), - [anon_sym_AMP_CARET] = ACTIONS(2311), - [anon_sym_AMP_AMP] = ACTIONS(2311), - [anon_sym_PIPE_PIPE] = ACTIONS(2311), - [anon_sym_or] = ACTIONS(2311), - [sym_none] = ACTIONS(2311), - [sym_true] = ACTIONS(2311), - [sym_false] = ACTIONS(2311), - [sym_nil] = ACTIONS(2311), - [anon_sym_QMARK_DOT] = ACTIONS(2311), - [anon_sym_POUND_LBRACK] = ACTIONS(2311), - [anon_sym_if] = ACTIONS(2311), - [anon_sym_DOLLARif] = ACTIONS(2311), - [anon_sym_is] = ACTIONS(2311), - [anon_sym_BANGis] = ACTIONS(2311), - [anon_sym_in] = ACTIONS(2311), - [anon_sym_BANGin] = ACTIONS(2311), - [anon_sym_match] = ACTIONS(2311), - [anon_sym_select] = ACTIONS(2311), - [anon_sym_lock] = ACTIONS(2311), - [anon_sym_rlock] = ACTIONS(2311), - [anon_sym_unsafe] = ACTIONS(2311), - [anon_sym_sql] = ACTIONS(2311), - [sym_int_literal] = ACTIONS(2311), - [sym_float_literal] = ACTIONS(2311), - [sym_rune_literal] = ACTIONS(2311), - [sym_pseudo_compile_time_identifier] = ACTIONS(2311), - [anon_sym_shared] = ACTIONS(2311), - [anon_sym_map_LBRACK] = ACTIONS(2311), - [anon_sym_chan] = ACTIONS(2311), - [anon_sym_thread] = ACTIONS(2311), - [anon_sym_atomic] = ACTIONS(2311), - [sym___double_quote] = ACTIONS(2311), - [sym___single_quote] = ACTIONS(2311), - [sym___c_double_quote] = ACTIONS(2311), - [sym___c_single_quote] = ACTIONS(2311), - [sym___r_double_quote] = ACTIONS(2311), - [sym___r_single_quote] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(1809), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_as] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_RPAREN] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1809), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_AMP_CARET] = ACTIONS(1809), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_or] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_QMARK_DOT] = ACTIONS(1809), + [anon_sym_POUND_LBRACK] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_is] = ACTIONS(1809), + [anon_sym_BANGis] = ACTIONS(1809), + [anon_sym_in] = ACTIONS(1809), + [anon_sym_BANGin] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_rune_literal] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_c_SQUOTE] = ACTIONS(1809), + [anon_sym_c_DQUOTE] = ACTIONS(1809), + [anon_sym_r_SQUOTE] = ACTIONS(1809), + [anon_sym_r_DQUOTE] = ACTIONS(1809), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1809), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), }, [1216] = { [sym_line_comment] = STATE(1216), [sym_block_comment] = STATE(1216), - [sym_identifier] = ACTIONS(2303), - [anon_sym_LF] = ACTIONS(2303), - [anon_sym_CR] = ACTIONS(2303), - [anon_sym_CR_LF] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2809), + [anon_sym_LF] = ACTIONS(2809), + [anon_sym_CR] = ACTIONS(2809), + [anon_sym_CR_LF] = ACTIONS(2809), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2303), - [anon_sym_DOT] = ACTIONS(2303), - [anon_sym_as] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2303), - [anon_sym_COMMA] = ACTIONS(2303), - [anon_sym_RBRACE] = ACTIONS(2303), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_RPAREN] = ACTIONS(2303), - [anon_sym_PIPE] = ACTIONS(2303), - [anon_sym_fn] = ACTIONS(2303), - [anon_sym_PLUS] = ACTIONS(2303), - [anon_sym_DASH] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2303), - [anon_sym_SLASH] = ACTIONS(2303), - [anon_sym_PERCENT] = ACTIONS(2303), - [anon_sym_LT] = ACTIONS(2303), - [anon_sym_GT] = ACTIONS(2303), - [anon_sym_EQ_EQ] = ACTIONS(2303), - [anon_sym_BANG_EQ] = ACTIONS(2303), - [anon_sym_LT_EQ] = ACTIONS(2303), - [anon_sym_GT_EQ] = ACTIONS(2303), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2301), - [anon_sym_struct] = ACTIONS(2303), - [anon_sym_mut] = ACTIONS(2303), - [anon_sym_PLUS_PLUS] = ACTIONS(2303), - [anon_sym_DASH_DASH] = ACTIONS(2303), - [anon_sym_QMARK] = ACTIONS(2303), - [anon_sym_BANG] = ACTIONS(2303), - [anon_sym_go] = ACTIONS(2303), - [anon_sym_spawn] = ACTIONS(2303), - [anon_sym_json_DOTdecode] = ACTIONS(2303), - [anon_sym_LBRACK2] = ACTIONS(2303), - [anon_sym_TILDE] = ACTIONS(2303), - [anon_sym_CARET] = ACTIONS(2303), - [anon_sym_AMP] = ACTIONS(2303), - [anon_sym_LT_DASH] = ACTIONS(2303), - [anon_sym_LT_LT] = ACTIONS(2303), - [anon_sym_GT_GT] = ACTIONS(2303), - [anon_sym_GT_GT_GT] = ACTIONS(2303), - [anon_sym_AMP_CARET] = ACTIONS(2303), - [anon_sym_AMP_AMP] = ACTIONS(2303), - [anon_sym_PIPE_PIPE] = ACTIONS(2303), - [anon_sym_or] = ACTIONS(2303), - [sym_none] = ACTIONS(2303), - [sym_true] = ACTIONS(2303), - [sym_false] = ACTIONS(2303), - [sym_nil] = ACTIONS(2303), - [anon_sym_QMARK_DOT] = ACTIONS(2303), - [anon_sym_POUND_LBRACK] = ACTIONS(2303), - [anon_sym_if] = ACTIONS(2303), - [anon_sym_DOLLARif] = ACTIONS(2303), - [anon_sym_is] = ACTIONS(2303), - [anon_sym_BANGis] = ACTIONS(2303), - [anon_sym_in] = ACTIONS(2303), - [anon_sym_BANGin] = ACTIONS(2303), - [anon_sym_match] = ACTIONS(2303), - [anon_sym_select] = ACTIONS(2303), - [anon_sym_lock] = ACTIONS(2303), - [anon_sym_rlock] = ACTIONS(2303), - [anon_sym_unsafe] = ACTIONS(2303), - [anon_sym_sql] = ACTIONS(2303), - [sym_int_literal] = ACTIONS(2303), - [sym_float_literal] = ACTIONS(2303), - [sym_rune_literal] = ACTIONS(2303), - [sym_pseudo_compile_time_identifier] = ACTIONS(2303), - [anon_sym_shared] = ACTIONS(2303), - [anon_sym_map_LBRACK] = ACTIONS(2303), - [anon_sym_chan] = ACTIONS(2303), - [anon_sym_thread] = ACTIONS(2303), - [anon_sym_atomic] = ACTIONS(2303), - [sym___double_quote] = ACTIONS(2303), - [sym___single_quote] = ACTIONS(2303), - [sym___c_double_quote] = ACTIONS(2303), - [sym___c_single_quote] = ACTIONS(2303), - [sym___r_double_quote] = ACTIONS(2303), - [sym___r_single_quote] = ACTIONS(2303), + [anon_sym_SEMI] = ACTIONS(2809), + [anon_sym_DOT] = ACTIONS(2809), + [anon_sym_as] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_COMMA] = ACTIONS(2809), + [anon_sym_RBRACE] = ACTIONS(2809), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym_RPAREN] = ACTIONS(2809), + [anon_sym_PIPE] = ACTIONS(2809), + [anon_sym_fn] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_PERCENT] = ACTIONS(2809), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_GT] = ACTIONS(2809), + [anon_sym_EQ_EQ] = ACTIONS(2809), + [anon_sym_BANG_EQ] = ACTIONS(2809), + [anon_sym_LT_EQ] = ACTIONS(2809), + [anon_sym_GT_EQ] = ACTIONS(2809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_struct] = ACTIONS(2809), + [anon_sym_mut] = ACTIONS(2809), + [anon_sym_PLUS_PLUS] = ACTIONS(2809), + [anon_sym_DASH_DASH] = ACTIONS(2809), + [anon_sym_QMARK] = ACTIONS(2809), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_go] = ACTIONS(2809), + [anon_sym_spawn] = ACTIONS(2809), + [anon_sym_json_DOTdecode] = ACTIONS(2809), + [anon_sym_LBRACK2] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_CARET] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_LT_DASH] = ACTIONS(2809), + [anon_sym_LT_LT] = ACTIONS(2809), + [anon_sym_GT_GT] = ACTIONS(2809), + [anon_sym_GT_GT_GT] = ACTIONS(2809), + [anon_sym_AMP_CARET] = ACTIONS(2809), + [anon_sym_AMP_AMP] = ACTIONS(2809), + [anon_sym_PIPE_PIPE] = ACTIONS(2809), + [anon_sym_or] = ACTIONS(2809), + [sym_none] = ACTIONS(2809), + [sym_true] = ACTIONS(2809), + [sym_false] = ACTIONS(2809), + [sym_nil] = ACTIONS(2809), + [anon_sym_QMARK_DOT] = ACTIONS(2809), + [anon_sym_POUND_LBRACK] = ACTIONS(2809), + [anon_sym_if] = ACTIONS(2809), + [anon_sym_DOLLARif] = ACTIONS(2809), + [anon_sym_is] = ACTIONS(2809), + [anon_sym_BANGis] = ACTIONS(2809), + [anon_sym_in] = ACTIONS(2809), + [anon_sym_BANGin] = ACTIONS(2809), + [anon_sym_match] = ACTIONS(2809), + [anon_sym_select] = ACTIONS(2809), + [anon_sym_lock] = ACTIONS(2809), + [anon_sym_rlock] = ACTIONS(2809), + [anon_sym_unsafe] = ACTIONS(2809), + [anon_sym_sql] = ACTIONS(2809), + [sym_int_literal] = ACTIONS(2809), + [sym_float_literal] = ACTIONS(2809), + [sym_rune_literal] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2809), + [anon_sym_c_SQUOTE] = ACTIONS(2809), + [anon_sym_c_DQUOTE] = ACTIONS(2809), + [anon_sym_r_SQUOTE] = ACTIONS(2809), + [anon_sym_r_DQUOTE] = ACTIONS(2809), + [sym_pseudo_compile_time_identifier] = ACTIONS(2809), + [anon_sym_shared] = ACTIONS(2809), + [anon_sym_map_LBRACK] = ACTIONS(2809), + [anon_sym_chan] = ACTIONS(2809), + [anon_sym_thread] = ACTIONS(2809), + [anon_sym_atomic] = ACTIONS(2809), }, [1217] = { [sym_line_comment] = STATE(1217), [sym_block_comment] = STATE(1217), - [sym_identifier] = ACTIONS(2768), - [anon_sym_LF] = ACTIONS(2768), - [anon_sym_CR] = ACTIONS(2768), - [anon_sym_CR_LF] = ACTIONS(2768), + [sym_identifier] = ACTIONS(2245), + [anon_sym_LF] = ACTIONS(2245), + [anon_sym_CR] = ACTIONS(2245), + [anon_sym_CR_LF] = ACTIONS(2245), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_as] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_COMMA] = ACTIONS(2768), - [anon_sym_RBRACE] = ACTIONS(2768), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_RPAREN] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_fn] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2768), - [anon_sym_BANG_EQ] = ACTIONS(2768), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2768), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_mut] = ACTIONS(2768), - [anon_sym_PLUS_PLUS] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2768), - [anon_sym_BANG] = ACTIONS(2768), - [anon_sym_go] = ACTIONS(2768), - [anon_sym_spawn] = ACTIONS(2768), - [anon_sym_json_DOTdecode] = ACTIONS(2768), - [anon_sym_LBRACK2] = ACTIONS(2768), - [anon_sym_TILDE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_LT_DASH] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym_GT_GT_GT] = ACTIONS(2768), - [anon_sym_AMP_CARET] = ACTIONS(2768), - [anon_sym_AMP_AMP] = ACTIONS(2768), - [anon_sym_PIPE_PIPE] = ACTIONS(2768), - [anon_sym_or] = ACTIONS(2768), - [sym_none] = ACTIONS(2768), - [sym_true] = ACTIONS(2768), - [sym_false] = ACTIONS(2768), - [sym_nil] = ACTIONS(2768), - [anon_sym_QMARK_DOT] = ACTIONS(2768), - [anon_sym_POUND_LBRACK] = ACTIONS(2768), - [anon_sym_if] = ACTIONS(2768), - [anon_sym_DOLLARif] = ACTIONS(2768), - [anon_sym_is] = ACTIONS(2768), - [anon_sym_BANGis] = ACTIONS(2768), - [anon_sym_in] = ACTIONS(2768), - [anon_sym_BANGin] = ACTIONS(2768), - [anon_sym_match] = ACTIONS(2768), - [anon_sym_select] = ACTIONS(2768), - [anon_sym_lock] = ACTIONS(2768), - [anon_sym_rlock] = ACTIONS(2768), - [anon_sym_unsafe] = ACTIONS(2768), - [anon_sym_sql] = ACTIONS(2768), - [sym_int_literal] = ACTIONS(2768), - [sym_float_literal] = ACTIONS(2768), - [sym_rune_literal] = ACTIONS(2768), - [sym_pseudo_compile_time_identifier] = ACTIONS(2768), - [anon_sym_shared] = ACTIONS(2768), - [anon_sym_map_LBRACK] = ACTIONS(2768), - [anon_sym_chan] = ACTIONS(2768), - [anon_sym_thread] = ACTIONS(2768), - [anon_sym_atomic] = ACTIONS(2768), - [sym___double_quote] = ACTIONS(2768), - [sym___single_quote] = ACTIONS(2768), - [sym___c_double_quote] = ACTIONS(2768), - [sym___c_single_quote] = ACTIONS(2768), - [sym___r_double_quote] = ACTIONS(2768), - [sym___r_single_quote] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_DOT] = ACTIONS(2245), + [anon_sym_as] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_COMMA] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_fn] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_SLASH] = ACTIONS(2245), + [anon_sym_PERCENT] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_GT] = ACTIONS(2245), + [anon_sym_EQ_EQ] = ACTIONS(2245), + [anon_sym_BANG_EQ] = ACTIONS(2245), + [anon_sym_LT_EQ] = ACTIONS(2245), + [anon_sym_GT_EQ] = ACTIONS(2245), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_struct] = ACTIONS(2245), + [anon_sym_mut] = ACTIONS(2245), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_QMARK] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_go] = ACTIONS(2245), + [anon_sym_spawn] = ACTIONS(2245), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_LT_DASH] = ACTIONS(2245), + [anon_sym_LT_LT] = ACTIONS(2245), + [anon_sym_GT_GT] = ACTIONS(2245), + [anon_sym_GT_GT_GT] = ACTIONS(2245), + [anon_sym_AMP_CARET] = ACTIONS(2245), + [anon_sym_AMP_AMP] = ACTIONS(2245), + [anon_sym_PIPE_PIPE] = ACTIONS(2245), + [anon_sym_or] = ACTIONS(2245), + [sym_none] = ACTIONS(2245), + [sym_true] = ACTIONS(2245), + [sym_false] = ACTIONS(2245), + [sym_nil] = ACTIONS(2245), + [anon_sym_QMARK_DOT] = ACTIONS(2245), + [anon_sym_POUND_LBRACK] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_DOLLARif] = ACTIONS(2245), + [anon_sym_is] = ACTIONS(2245), + [anon_sym_BANGis] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(2245), + [anon_sym_BANGin] = ACTIONS(2245), + [anon_sym_match] = ACTIONS(2245), + [anon_sym_select] = ACTIONS(2245), + [anon_sym_lock] = ACTIONS(2245), + [anon_sym_rlock] = ACTIONS(2245), + [anon_sym_unsafe] = ACTIONS(2245), + [anon_sym_sql] = ACTIONS(2245), + [sym_int_literal] = ACTIONS(2245), + [sym_float_literal] = ACTIONS(2245), + [sym_rune_literal] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [anon_sym_c_SQUOTE] = ACTIONS(2245), + [anon_sym_c_DQUOTE] = ACTIONS(2245), + [anon_sym_r_SQUOTE] = ACTIONS(2245), + [anon_sym_r_DQUOTE] = ACTIONS(2245), + [sym_pseudo_compile_time_identifier] = ACTIONS(2245), + [anon_sym_shared] = ACTIONS(2245), + [anon_sym_map_LBRACK] = ACTIONS(2245), + [anon_sym_chan] = ACTIONS(2245), + [anon_sym_thread] = ACTIONS(2245), + [anon_sym_atomic] = ACTIONS(2245), }, [1218] = { [sym_line_comment] = STATE(1218), [sym_block_comment] = STATE(1218), - [sym_identifier] = ACTIONS(2297), - [anon_sym_LF] = ACTIONS(2297), - [anon_sym_CR] = ACTIONS(2297), - [anon_sym_CR_LF] = ACTIONS(2297), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LF] = ACTIONS(2147), + [anon_sym_CR] = ACTIONS(2147), + [anon_sym_CR_LF] = ACTIONS(2147), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2297), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_RPAREN] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_fn] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2295), - [anon_sym_struct] = ACTIONS(2297), - [anon_sym_mut] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [anon_sym_QMARK] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_go] = ACTIONS(2297), - [anon_sym_spawn] = ACTIONS(2297), - [anon_sym_json_DOTdecode] = ACTIONS(2297), - [anon_sym_LBRACK2] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_LT_DASH] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_AMP_CARET] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_or] = ACTIONS(2297), - [sym_none] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_nil] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_POUND_LBRACK] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_DOLLARif] = ACTIONS(2297), - [anon_sym_is] = ACTIONS(2297), - [anon_sym_BANGis] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_BANGin] = ACTIONS(2297), - [anon_sym_match] = ACTIONS(2297), - [anon_sym_select] = ACTIONS(2297), - [anon_sym_lock] = ACTIONS(2297), - [anon_sym_rlock] = ACTIONS(2297), - [anon_sym_unsafe] = ACTIONS(2297), - [anon_sym_sql] = ACTIONS(2297), - [sym_int_literal] = ACTIONS(2297), - [sym_float_literal] = ACTIONS(2297), - [sym_rune_literal] = ACTIONS(2297), - [sym_pseudo_compile_time_identifier] = ACTIONS(2297), - [anon_sym_shared] = ACTIONS(2297), - [anon_sym_map_LBRACK] = ACTIONS(2297), - [anon_sym_chan] = ACTIONS(2297), - [anon_sym_thread] = ACTIONS(2297), - [anon_sym_atomic] = ACTIONS(2297), - [sym___double_quote] = ACTIONS(2297), - [sym___single_quote] = ACTIONS(2297), - [sym___c_double_quote] = ACTIONS(2297), - [sym___c_single_quote] = ACTIONS(2297), - [sym___r_double_quote] = ACTIONS(2297), - [sym___r_single_quote] = ACTIONS(2297), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_RPAREN] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(2147), + [anon_sym_DASH_DASH] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2147), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_AMP_CARET] = ACTIONS(2147), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_POUND_LBRACK] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2147), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), + [sym_rune_literal] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_c_SQUOTE] = ACTIONS(2147), + [anon_sym_c_DQUOTE] = ACTIONS(2147), + [anon_sym_r_SQUOTE] = ACTIONS(2147), + [anon_sym_r_DQUOTE] = ACTIONS(2147), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2147), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), }, [1219] = { [sym_line_comment] = STATE(1219), [sym_block_comment] = STATE(1219), - [sym_identifier] = ACTIONS(2750), - [anon_sym_LF] = ACTIONS(2750), - [anon_sym_CR] = ACTIONS(2750), - [anon_sym_CR_LF] = ACTIONS(2750), + [sym_identifier] = ACTIONS(2029), + [anon_sym_LF] = ACTIONS(2029), + [anon_sym_CR] = ACTIONS(2029), + [anon_sym_CR_LF] = ACTIONS(2029), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_DOT] = ACTIONS(2750), - [anon_sym_as] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2750), - [anon_sym_COMMA] = ACTIONS(2750), - [anon_sym_RBRACE] = ACTIONS(2750), - [anon_sym_LPAREN] = ACTIONS(2750), - [anon_sym_RPAREN] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_fn] = ACTIONS(2750), - [anon_sym_PLUS] = ACTIONS(2750), - [anon_sym_DASH] = ACTIONS(2750), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_SLASH] = ACTIONS(2750), - [anon_sym_PERCENT] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(2750), - [anon_sym_GT] = ACTIONS(2750), - [anon_sym_EQ_EQ] = ACTIONS(2750), - [anon_sym_BANG_EQ] = ACTIONS(2750), - [anon_sym_LT_EQ] = ACTIONS(2750), - [anon_sym_GT_EQ] = ACTIONS(2750), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2750), - [anon_sym_LBRACK] = ACTIONS(2748), - [anon_sym_struct] = ACTIONS(2750), - [anon_sym_mut] = ACTIONS(2750), - [anon_sym_PLUS_PLUS] = ACTIONS(2750), - [anon_sym_DASH_DASH] = ACTIONS(2750), - [anon_sym_QMARK] = ACTIONS(2750), - [anon_sym_BANG] = ACTIONS(2750), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2750), - [anon_sym_json_DOTdecode] = ACTIONS(2750), - [anon_sym_LBRACK2] = ACTIONS(2750), - [anon_sym_TILDE] = ACTIONS(2750), - [anon_sym_CARET] = ACTIONS(2750), - [anon_sym_AMP] = ACTIONS(2750), - [anon_sym_LT_DASH] = ACTIONS(2750), - [anon_sym_LT_LT] = ACTIONS(2750), - [anon_sym_GT_GT] = ACTIONS(2750), - [anon_sym_GT_GT_GT] = ACTIONS(2750), - [anon_sym_AMP_CARET] = ACTIONS(2750), - [anon_sym_AMP_AMP] = ACTIONS(2750), - [anon_sym_PIPE_PIPE] = ACTIONS(2750), - [anon_sym_or] = ACTIONS(2750), - [sym_none] = ACTIONS(2750), - [sym_true] = ACTIONS(2750), - [sym_false] = ACTIONS(2750), - [sym_nil] = ACTIONS(2750), - [anon_sym_QMARK_DOT] = ACTIONS(2750), - [anon_sym_POUND_LBRACK] = ACTIONS(2750), - [anon_sym_if] = ACTIONS(2750), - [anon_sym_DOLLARif] = ACTIONS(2750), - [anon_sym_is] = ACTIONS(2750), - [anon_sym_BANGis] = ACTIONS(2750), - [anon_sym_in] = ACTIONS(2750), - [anon_sym_BANGin] = ACTIONS(2750), - [anon_sym_match] = ACTIONS(2750), - [anon_sym_select] = ACTIONS(2750), - [anon_sym_lock] = ACTIONS(2750), - [anon_sym_rlock] = ACTIONS(2750), - [anon_sym_unsafe] = ACTIONS(2750), - [anon_sym_sql] = ACTIONS(2750), - [sym_int_literal] = ACTIONS(2750), - [sym_float_literal] = ACTIONS(2750), - [sym_rune_literal] = ACTIONS(2750), - [sym_pseudo_compile_time_identifier] = ACTIONS(2750), - [anon_sym_shared] = ACTIONS(2750), - [anon_sym_map_LBRACK] = ACTIONS(2750), - [anon_sym_chan] = ACTIONS(2750), - [anon_sym_thread] = ACTIONS(2750), - [anon_sym_atomic] = ACTIONS(2750), - [sym___double_quote] = ACTIONS(2750), - [sym___single_quote] = ACTIONS(2750), - [sym___c_double_quote] = ACTIONS(2750), - [sym___c_single_quote] = ACTIONS(2750), - [sym___r_double_quote] = ACTIONS(2750), - [sym___r_single_quote] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2029), + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_as] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(2029), + [anon_sym_COMMA] = ACTIONS(2029), + [anon_sym_RBRACE] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_RPAREN] = ACTIONS(2029), + [anon_sym_PIPE] = ACTIONS(2029), + [anon_sym_fn] = ACTIONS(2029), + [anon_sym_PLUS] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2029), + [anon_sym_SLASH] = ACTIONS(2029), + [anon_sym_PERCENT] = ACTIONS(2029), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2029), + [anon_sym_EQ_EQ] = ACTIONS(2029), + [anon_sym_BANG_EQ] = ACTIONS(2029), + [anon_sym_LT_EQ] = ACTIONS(2029), + [anon_sym_GT_EQ] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2029), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_struct] = ACTIONS(2029), + [anon_sym_mut] = ACTIONS(2029), + [anon_sym_PLUS_PLUS] = ACTIONS(2029), + [anon_sym_DASH_DASH] = ACTIONS(2029), + [anon_sym_QMARK] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(2029), + [anon_sym_go] = ACTIONS(2029), + [anon_sym_spawn] = ACTIONS(2029), + [anon_sym_json_DOTdecode] = ACTIONS(2029), + [anon_sym_LBRACK2] = ACTIONS(2029), + [anon_sym_TILDE] = ACTIONS(2029), + [anon_sym_CARET] = ACTIONS(2029), + [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_LT_DASH] = ACTIONS(2029), + [anon_sym_LT_LT] = ACTIONS(2029), + [anon_sym_GT_GT] = ACTIONS(2029), + [anon_sym_GT_GT_GT] = ACTIONS(2029), + [anon_sym_AMP_CARET] = ACTIONS(2029), + [anon_sym_AMP_AMP] = ACTIONS(2029), + [anon_sym_PIPE_PIPE] = ACTIONS(2029), + [anon_sym_or] = ACTIONS(2029), + [sym_none] = ACTIONS(2029), + [sym_true] = ACTIONS(2029), + [sym_false] = ACTIONS(2029), + [sym_nil] = ACTIONS(2029), + [anon_sym_QMARK_DOT] = ACTIONS(2029), + [anon_sym_POUND_LBRACK] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_DOLLARif] = ACTIONS(2029), + [anon_sym_is] = ACTIONS(2029), + [anon_sym_BANGis] = ACTIONS(2029), + [anon_sym_in] = ACTIONS(2029), + [anon_sym_BANGin] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_select] = ACTIONS(2029), + [anon_sym_lock] = ACTIONS(2029), + [anon_sym_rlock] = ACTIONS(2029), + [anon_sym_unsafe] = ACTIONS(2029), + [anon_sym_sql] = ACTIONS(2029), + [sym_int_literal] = ACTIONS(2029), + [sym_float_literal] = ACTIONS(2029), + [sym_rune_literal] = ACTIONS(2029), + [anon_sym_SQUOTE] = ACTIONS(2029), + [anon_sym_DQUOTE] = ACTIONS(2029), + [anon_sym_c_SQUOTE] = ACTIONS(2029), + [anon_sym_c_DQUOTE] = ACTIONS(2029), + [anon_sym_r_SQUOTE] = ACTIONS(2029), + [anon_sym_r_DQUOTE] = ACTIONS(2029), + [sym_pseudo_compile_time_identifier] = ACTIONS(2029), + [anon_sym_shared] = ACTIONS(2029), + [anon_sym_map_LBRACK] = ACTIONS(2029), + [anon_sym_chan] = ACTIONS(2029), + [anon_sym_thread] = ACTIONS(2029), + [anon_sym_atomic] = ACTIONS(2029), }, [1220] = { [sym_line_comment] = STATE(1220), [sym_block_comment] = STATE(1220), - [sym_identifier] = ACTIONS(3746), - [anon_sym_LF] = ACTIONS(3749), - [anon_sym_CR] = ACTIONS(3749), - [anon_sym_CR_LF] = ACTIONS(3749), + [sym_identifier] = ACTIONS(2813), + [anon_sym_LF] = ACTIONS(2813), + [anon_sym_CR] = ACTIONS(2813), + [anon_sym_CR_LF] = ACTIONS(2813), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3749), - [anon_sym_DOT] = ACTIONS(3786), - [anon_sym_as] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_COMMA] = ACTIONS(3749), - [anon_sym_RBRACE] = ACTIONS(3746), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_fn] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2513), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_GT] = ACTIONS(2513), - [anon_sym_EQ_EQ] = ACTIONS(2513), - [anon_sym_BANG_EQ] = ACTIONS(2513), - [anon_sym_LT_EQ] = ACTIONS(2513), - [anon_sym_GT_EQ] = ACTIONS(2513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3752), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_COLON] = ACTIONS(3754), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_QMARK] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_go] = ACTIONS(2513), - [anon_sym_spawn] = ACTIONS(2513), - [anon_sym_json_DOTdecode] = ACTIONS(2513), - [anon_sym_LBRACK2] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_LT_DASH] = ACTIONS(2513), - [anon_sym_LT_LT] = ACTIONS(2513), - [anon_sym_GT_GT] = ACTIONS(2513), - [anon_sym_GT_GT_GT] = ACTIONS(2513), - [anon_sym_AMP_CARET] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2513), - [anon_sym_or] = ACTIONS(2513), - [sym_none] = ACTIONS(2513), - [sym_true] = ACTIONS(2513), - [sym_false] = ACTIONS(2513), - [sym_nil] = ACTIONS(2513), - [anon_sym_QMARK_DOT] = ACTIONS(2513), - [anon_sym_POUND_LBRACK] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_DOLLARif] = ACTIONS(2513), - [anon_sym_is] = ACTIONS(2513), - [anon_sym_BANGis] = ACTIONS(2513), - [anon_sym_in] = ACTIONS(2513), - [anon_sym_BANGin] = ACTIONS(2513), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_select] = ACTIONS(2513), - [anon_sym_lock] = ACTIONS(2513), - [anon_sym_rlock] = ACTIONS(2513), - [anon_sym_unsafe] = ACTIONS(2513), - [anon_sym_sql] = ACTIONS(2513), - [sym_int_literal] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2513), - [sym_rune_literal] = ACTIONS(2513), - [sym_pseudo_compile_time_identifier] = ACTIONS(2513), - [anon_sym_shared] = ACTIONS(2513), - [anon_sym_map_LBRACK] = ACTIONS(2513), - [anon_sym_chan] = ACTIONS(2513), - [anon_sym_thread] = ACTIONS(2513), - [anon_sym_atomic] = ACTIONS(2513), - [sym___double_quote] = ACTIONS(2513), - [sym___single_quote] = ACTIONS(2513), - [sym___c_double_quote] = ACTIONS(2513), - [sym___c_single_quote] = ACTIONS(2513), - [sym___r_double_quote] = ACTIONS(2513), - [sym___r_single_quote] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2813), + [anon_sym_DOT] = ACTIONS(2813), + [anon_sym_as] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_COMMA] = ACTIONS(2813), + [anon_sym_RBRACE] = ACTIONS(2813), + [anon_sym_LPAREN] = ACTIONS(2813), + [anon_sym_RPAREN] = ACTIONS(2813), + [anon_sym_PIPE] = ACTIONS(2813), + [anon_sym_fn] = ACTIONS(2813), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_SLASH] = ACTIONS(2813), + [anon_sym_PERCENT] = ACTIONS(2813), + [anon_sym_LT] = ACTIONS(2813), + [anon_sym_GT] = ACTIONS(2813), + [anon_sym_EQ_EQ] = ACTIONS(2813), + [anon_sym_BANG_EQ] = ACTIONS(2813), + [anon_sym_LT_EQ] = ACTIONS(2813), + [anon_sym_GT_EQ] = ACTIONS(2813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_struct] = ACTIONS(2813), + [anon_sym_mut] = ACTIONS(2813), + [anon_sym_PLUS_PLUS] = ACTIONS(2813), + [anon_sym_DASH_DASH] = ACTIONS(2813), + [anon_sym_QMARK] = ACTIONS(2813), + [anon_sym_BANG] = ACTIONS(2813), + [anon_sym_go] = ACTIONS(2813), + [anon_sym_spawn] = ACTIONS(2813), + [anon_sym_json_DOTdecode] = ACTIONS(2813), + [anon_sym_LBRACK2] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_LT_DASH] = ACTIONS(2813), + [anon_sym_LT_LT] = ACTIONS(2813), + [anon_sym_GT_GT] = ACTIONS(2813), + [anon_sym_GT_GT_GT] = ACTIONS(2813), + [anon_sym_AMP_CARET] = ACTIONS(2813), + [anon_sym_AMP_AMP] = ACTIONS(2813), + [anon_sym_PIPE_PIPE] = ACTIONS(2813), + [anon_sym_or] = ACTIONS(2813), + [sym_none] = ACTIONS(2813), + [sym_true] = ACTIONS(2813), + [sym_false] = ACTIONS(2813), + [sym_nil] = ACTIONS(2813), + [anon_sym_QMARK_DOT] = ACTIONS(2813), + [anon_sym_POUND_LBRACK] = ACTIONS(2813), + [anon_sym_if] = ACTIONS(2813), + [anon_sym_DOLLARif] = ACTIONS(2813), + [anon_sym_is] = ACTIONS(2813), + [anon_sym_BANGis] = ACTIONS(2813), + [anon_sym_in] = ACTIONS(2813), + [anon_sym_BANGin] = ACTIONS(2813), + [anon_sym_match] = ACTIONS(2813), + [anon_sym_select] = ACTIONS(2813), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [anon_sym_unsafe] = ACTIONS(2813), + [anon_sym_sql] = ACTIONS(2813), + [sym_int_literal] = ACTIONS(2813), + [sym_float_literal] = ACTIONS(2813), + [sym_rune_literal] = ACTIONS(2813), + [anon_sym_SQUOTE] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2813), + [anon_sym_c_SQUOTE] = ACTIONS(2813), + [anon_sym_c_DQUOTE] = ACTIONS(2813), + [anon_sym_r_SQUOTE] = ACTIONS(2813), + [anon_sym_r_DQUOTE] = ACTIONS(2813), + [sym_pseudo_compile_time_identifier] = ACTIONS(2813), + [anon_sym_shared] = ACTIONS(2813), + [anon_sym_map_LBRACK] = ACTIONS(2813), + [anon_sym_chan] = ACTIONS(2813), + [anon_sym_thread] = ACTIONS(2813), + [anon_sym_atomic] = ACTIONS(2813), }, [1221] = { [sym_line_comment] = STATE(1221), [sym_block_comment] = STATE(1221), - [sym_identifier] = ACTIONS(2211), - [anon_sym_LF] = ACTIONS(2211), - [anon_sym_CR] = ACTIONS(2211), - [anon_sym_CR_LF] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2817), + [anon_sym_LF] = ACTIONS(2817), + [anon_sym_CR] = ACTIONS(2817), + [anon_sym_CR_LF] = ACTIONS(2817), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2211), - [anon_sym_DOT] = ACTIONS(2211), - [anon_sym_as] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_COMMA] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_RPAREN] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2211), - [anon_sym_fn] = ACTIONS(2211), - [anon_sym_PLUS] = ACTIONS(2211), - [anon_sym_DASH] = ACTIONS(2211), - [anon_sym_STAR] = ACTIONS(2211), - [anon_sym_SLASH] = ACTIONS(2211), - [anon_sym_PERCENT] = ACTIONS(2211), - [anon_sym_LT] = ACTIONS(2211), - [anon_sym_GT] = ACTIONS(2211), - [anon_sym_EQ_EQ] = ACTIONS(2211), - [anon_sym_BANG_EQ] = ACTIONS(2211), - [anon_sym_LT_EQ] = ACTIONS(2211), - [anon_sym_GT_EQ] = ACTIONS(2211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(2211), - [anon_sym_mut] = ACTIONS(2211), - [anon_sym_PLUS_PLUS] = ACTIONS(2211), - [anon_sym_DASH_DASH] = ACTIONS(2211), - [anon_sym_QMARK] = ACTIONS(2211), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2211), - [anon_sym_spawn] = ACTIONS(2211), - [anon_sym_json_DOTdecode] = ACTIONS(2211), - [anon_sym_LBRACK2] = ACTIONS(2211), - [anon_sym_TILDE] = ACTIONS(2211), - [anon_sym_CARET] = ACTIONS(2211), - [anon_sym_AMP] = ACTIONS(2211), - [anon_sym_LT_DASH] = ACTIONS(2211), - [anon_sym_LT_LT] = ACTIONS(2211), - [anon_sym_GT_GT] = ACTIONS(2211), - [anon_sym_GT_GT_GT] = ACTIONS(2211), - [anon_sym_AMP_CARET] = ACTIONS(2211), - [anon_sym_AMP_AMP] = ACTIONS(2211), - [anon_sym_PIPE_PIPE] = ACTIONS(2211), - [anon_sym_or] = ACTIONS(2211), - [sym_none] = ACTIONS(2211), - [sym_true] = ACTIONS(2211), - [sym_false] = ACTIONS(2211), - [sym_nil] = ACTIONS(2211), - [anon_sym_QMARK_DOT] = ACTIONS(2211), - [anon_sym_POUND_LBRACK] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2211), - [anon_sym_DOLLARif] = ACTIONS(2211), - [anon_sym_is] = ACTIONS(2211), - [anon_sym_BANGis] = ACTIONS(2211), - [anon_sym_in] = ACTIONS(2211), - [anon_sym_BANGin] = ACTIONS(2211), - [anon_sym_match] = ACTIONS(2211), - [anon_sym_select] = ACTIONS(2211), - [anon_sym_lock] = ACTIONS(2211), - [anon_sym_rlock] = ACTIONS(2211), - [anon_sym_unsafe] = ACTIONS(2211), - [anon_sym_sql] = ACTIONS(2211), - [sym_int_literal] = ACTIONS(2211), - [sym_float_literal] = ACTIONS(2211), - [sym_rune_literal] = ACTIONS(2211), - [sym_pseudo_compile_time_identifier] = ACTIONS(2211), - [anon_sym_shared] = ACTIONS(2211), - [anon_sym_map_LBRACK] = ACTIONS(2211), - [anon_sym_chan] = ACTIONS(2211), - [anon_sym_thread] = ACTIONS(2211), - [anon_sym_atomic] = ACTIONS(2211), - [sym___double_quote] = ACTIONS(2211), - [sym___single_quote] = ACTIONS(2211), - [sym___c_double_quote] = ACTIONS(2211), - [sym___c_single_quote] = ACTIONS(2211), - [sym___r_double_quote] = ACTIONS(2211), - [sym___r_single_quote] = ACTIONS(2211), + [anon_sym_SEMI] = ACTIONS(2817), + [anon_sym_DOT] = ACTIONS(2817), + [anon_sym_as] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_COMMA] = ACTIONS(2817), + [anon_sym_RBRACE] = ACTIONS(2817), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_RPAREN] = ACTIONS(2817), + [anon_sym_PIPE] = ACTIONS(2817), + [anon_sym_fn] = ACTIONS(2817), + [anon_sym_PLUS] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_SLASH] = ACTIONS(2817), + [anon_sym_PERCENT] = ACTIONS(2817), + [anon_sym_LT] = ACTIONS(2817), + [anon_sym_GT] = ACTIONS(2817), + [anon_sym_EQ_EQ] = ACTIONS(2817), + [anon_sym_BANG_EQ] = ACTIONS(2817), + [anon_sym_LT_EQ] = ACTIONS(2817), + [anon_sym_GT_EQ] = ACTIONS(2817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2817), + [anon_sym_mut] = ACTIONS(2817), + [anon_sym_PLUS_PLUS] = ACTIONS(2817), + [anon_sym_DASH_DASH] = ACTIONS(2817), + [anon_sym_QMARK] = ACTIONS(2817), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2817), + [anon_sym_spawn] = ACTIONS(2817), + [anon_sym_json_DOTdecode] = ACTIONS(2817), + [anon_sym_LBRACK2] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_CARET] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_LT_DASH] = ACTIONS(2817), + [anon_sym_LT_LT] = ACTIONS(2817), + [anon_sym_GT_GT] = ACTIONS(2817), + [anon_sym_GT_GT_GT] = ACTIONS(2817), + [anon_sym_AMP_CARET] = ACTIONS(2817), + [anon_sym_AMP_AMP] = ACTIONS(2817), + [anon_sym_PIPE_PIPE] = ACTIONS(2817), + [anon_sym_or] = ACTIONS(2817), + [sym_none] = ACTIONS(2817), + [sym_true] = ACTIONS(2817), + [sym_false] = ACTIONS(2817), + [sym_nil] = ACTIONS(2817), + [anon_sym_QMARK_DOT] = ACTIONS(2817), + [anon_sym_POUND_LBRACK] = ACTIONS(2817), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_DOLLARif] = ACTIONS(2817), + [anon_sym_is] = ACTIONS(2817), + [anon_sym_BANGis] = ACTIONS(2817), + [anon_sym_in] = ACTIONS(2817), + [anon_sym_BANGin] = ACTIONS(2817), + [anon_sym_match] = ACTIONS(2817), + [anon_sym_select] = ACTIONS(2817), + [anon_sym_lock] = ACTIONS(2817), + [anon_sym_rlock] = ACTIONS(2817), + [anon_sym_unsafe] = ACTIONS(2817), + [anon_sym_sql] = ACTIONS(2817), + [sym_int_literal] = ACTIONS(2817), + [sym_float_literal] = ACTIONS(2817), + [sym_rune_literal] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [anon_sym_c_SQUOTE] = ACTIONS(2817), + [anon_sym_c_DQUOTE] = ACTIONS(2817), + [anon_sym_r_SQUOTE] = ACTIONS(2817), + [anon_sym_r_DQUOTE] = ACTIONS(2817), + [sym_pseudo_compile_time_identifier] = ACTIONS(2817), + [anon_sym_shared] = ACTIONS(2817), + [anon_sym_map_LBRACK] = ACTIONS(2817), + [anon_sym_chan] = ACTIONS(2817), + [anon_sym_thread] = ACTIONS(2817), + [anon_sym_atomic] = ACTIONS(2817), }, [1222] = { [sym_line_comment] = STATE(1222), [sym_block_comment] = STATE(1222), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2345), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(627), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(627), - [anon_sym_AMP_CARET] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(625), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(625), - [anon_sym_POUND_LBRACK] = ACTIONS(625), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(625), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(625), - [anon_sym_STAR_EQ] = ACTIONS(625), - [anon_sym_SLASH_EQ] = ACTIONS(625), - [anon_sym_PERCENT_EQ] = ACTIONS(625), - [anon_sym_LT_LT_EQ] = ACTIONS(625), - [anon_sym_GT_GT_EQ] = ACTIONS(625), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(625), - [anon_sym_AMP_EQ] = ACTIONS(625), - [anon_sym_AMP_CARET_EQ] = ACTIONS(625), - [anon_sym_PLUS_EQ] = ACTIONS(625), - [anon_sym_DASH_EQ] = ACTIONS(625), - [anon_sym_PIPE_EQ] = ACTIONS(625), - [anon_sym_CARET_EQ] = ACTIONS(625), - [anon_sym_COLON_EQ] = ACTIONS(625), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LF] = ACTIONS(2855), + [anon_sym_CR] = ACTIONS(2855), + [anon_sym_CR_LF] = ACTIONS(2855), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2855), + [anon_sym_DOT] = ACTIONS(2855), + [anon_sym_as] = ACTIONS(2855), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_COMMA] = ACTIONS(2855), + [anon_sym_RBRACE] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2855), + [anon_sym_RPAREN] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2855), + [anon_sym_fn] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(2855), + [anon_sym_SLASH] = ACTIONS(2855), + [anon_sym_PERCENT] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_GT] = ACTIONS(2855), + [anon_sym_EQ_EQ] = ACTIONS(2855), + [anon_sym_BANG_EQ] = ACTIONS(2855), + [anon_sym_LT_EQ] = ACTIONS(2855), + [anon_sym_GT_EQ] = ACTIONS(2855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_mut] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2855), + [anon_sym_QMARK] = ACTIONS(2855), + [anon_sym_BANG] = ACTIONS(2855), + [anon_sym_go] = ACTIONS(2855), + [anon_sym_spawn] = ACTIONS(2855), + [anon_sym_json_DOTdecode] = ACTIONS(2855), + [anon_sym_LBRACK2] = ACTIONS(2855), + [anon_sym_TILDE] = ACTIONS(2855), + [anon_sym_CARET] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_LT_DASH] = ACTIONS(2855), + [anon_sym_LT_LT] = ACTIONS(2855), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_GT_GT_GT] = ACTIONS(2855), + [anon_sym_AMP_CARET] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_or] = ACTIONS(2855), + [sym_none] = ACTIONS(2855), + [sym_true] = ACTIONS(2855), + [sym_false] = ACTIONS(2855), + [sym_nil] = ACTIONS(2855), + [anon_sym_QMARK_DOT] = ACTIONS(2855), + [anon_sym_POUND_LBRACK] = ACTIONS(2855), + [anon_sym_if] = ACTIONS(2855), + [anon_sym_DOLLARif] = ACTIONS(2855), + [anon_sym_is] = ACTIONS(2855), + [anon_sym_BANGis] = ACTIONS(2855), + [anon_sym_in] = ACTIONS(2855), + [anon_sym_BANGin] = ACTIONS(2855), + [anon_sym_match] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2855), + [anon_sym_lock] = ACTIONS(2855), + [anon_sym_rlock] = ACTIONS(2855), + [anon_sym_unsafe] = ACTIONS(2855), + [anon_sym_sql] = ACTIONS(2855), + [sym_int_literal] = ACTIONS(2855), + [sym_float_literal] = ACTIONS(2855), + [sym_rune_literal] = ACTIONS(2855), + [anon_sym_SQUOTE] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [anon_sym_c_SQUOTE] = ACTIONS(2855), + [anon_sym_c_DQUOTE] = ACTIONS(2855), + [anon_sym_r_SQUOTE] = ACTIONS(2855), + [anon_sym_r_DQUOTE] = ACTIONS(2855), + [sym_pseudo_compile_time_identifier] = ACTIONS(2855), + [anon_sym_shared] = ACTIONS(2855), + [anon_sym_map_LBRACK] = ACTIONS(2855), + [anon_sym_chan] = ACTIONS(2855), + [anon_sym_thread] = ACTIONS(2855), + [anon_sym_atomic] = ACTIONS(2855), }, [1223] = { [sym_line_comment] = STATE(1223), [sym_block_comment] = STATE(1223), - [sym_identifier] = ACTIONS(2756), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_CR] = ACTIONS(2756), - [anon_sym_CR_LF] = ACTIONS(2756), + [sym_identifier] = ACTIONS(3778), + [anon_sym_LF] = ACTIONS(3781), + [anon_sym_CR] = ACTIONS(3781), + [anon_sym_CR_LF] = ACTIONS(3781), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_DOT] = ACTIONS(2756), - [anon_sym_as] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(2756), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_fn] = ACTIONS(2756), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_GT] = ACTIONS(2756), - [anon_sym_EQ_EQ] = ACTIONS(2756), - [anon_sym_BANG_EQ] = ACTIONS(2756), - [anon_sym_LT_EQ] = ACTIONS(2756), - [anon_sym_GT_EQ] = ACTIONS(2756), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_struct] = ACTIONS(2756), - [anon_sym_mut] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_QMARK] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_go] = ACTIONS(2756), - [anon_sym_spawn] = ACTIONS(2756), - [anon_sym_json_DOTdecode] = ACTIONS(2756), - [anon_sym_LBRACK2] = ACTIONS(2756), - [anon_sym_TILDE] = ACTIONS(2756), - [anon_sym_CARET] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2756), - [anon_sym_LT_DASH] = ACTIONS(2756), - [anon_sym_LT_LT] = ACTIONS(2756), - [anon_sym_GT_GT] = ACTIONS(2756), - [anon_sym_GT_GT_GT] = ACTIONS(2756), - [anon_sym_AMP_CARET] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_PIPE_PIPE] = ACTIONS(2756), - [anon_sym_or] = ACTIONS(2756), - [sym_none] = ACTIONS(2756), - [sym_true] = ACTIONS(2756), - [sym_false] = ACTIONS(2756), - [sym_nil] = ACTIONS(2756), - [anon_sym_QMARK_DOT] = ACTIONS(2756), - [anon_sym_POUND_LBRACK] = ACTIONS(2756), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_DOLLARif] = ACTIONS(2756), - [anon_sym_is] = ACTIONS(2756), - [anon_sym_BANGis] = ACTIONS(2756), - [anon_sym_in] = ACTIONS(2756), - [anon_sym_BANGin] = ACTIONS(2756), - [anon_sym_match] = ACTIONS(2756), - [anon_sym_select] = ACTIONS(2756), - [anon_sym_lock] = ACTIONS(2756), - [anon_sym_rlock] = ACTIONS(2756), - [anon_sym_unsafe] = ACTIONS(2756), - [anon_sym_sql] = ACTIONS(2756), - [sym_int_literal] = ACTIONS(2756), - [sym_float_literal] = ACTIONS(2756), - [sym_rune_literal] = ACTIONS(2756), - [sym_pseudo_compile_time_identifier] = ACTIONS(2756), - [anon_sym_shared] = ACTIONS(2756), - [anon_sym_map_LBRACK] = ACTIONS(2756), - [anon_sym_chan] = ACTIONS(2756), - [anon_sym_thread] = ACTIONS(2756), - [anon_sym_atomic] = ACTIONS(2756), - [sym___double_quote] = ACTIONS(2756), - [sym___single_quote] = ACTIONS(2756), - [sym___c_double_quote] = ACTIONS(2756), - [sym___c_single_quote] = ACTIONS(2756), - [sym___r_double_quote] = ACTIONS(2756), - [sym___r_single_quote] = ACTIONS(2756), + [anon_sym_SEMI] = ACTIONS(3781), + [anon_sym_DOT] = ACTIONS(3792), + [anon_sym_as] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_COMMA] = ACTIONS(3781), + [anon_sym_RBRACE] = ACTIONS(3778), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_fn] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2887), + [anon_sym_BANG_EQ] = ACTIONS(2887), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3784), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_mut] = ACTIONS(2887), + [anon_sym_COLON] = ACTIONS(3786), + [anon_sym_PLUS_PLUS] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2887), + [anon_sym_QMARK] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2887), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2887), + [anon_sym_json_DOTdecode] = ACTIONS(2887), + [anon_sym_LBRACK2] = ACTIONS(2887), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_CARET] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_GT_GT_GT] = ACTIONS(2887), + [anon_sym_AMP_CARET] = ACTIONS(2887), + [anon_sym_AMP_AMP] = ACTIONS(2887), + [anon_sym_PIPE_PIPE] = ACTIONS(2887), + [anon_sym_or] = ACTIONS(2887), + [sym_none] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_nil] = ACTIONS(2887), + [anon_sym_QMARK_DOT] = ACTIONS(2887), + [anon_sym_POUND_LBRACK] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_DOLLARif] = ACTIONS(2887), + [anon_sym_is] = ACTIONS(2887), + [anon_sym_BANGis] = ACTIONS(2887), + [anon_sym_in] = ACTIONS(2887), + [anon_sym_BANGin] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2887), + [anon_sym_select] = ACTIONS(2887), + [anon_sym_lock] = ACTIONS(2887), + [anon_sym_rlock] = ACTIONS(2887), + [anon_sym_unsafe] = ACTIONS(2887), + [anon_sym_sql] = ACTIONS(2887), + [sym_int_literal] = ACTIONS(2887), + [sym_float_literal] = ACTIONS(2887), + [sym_rune_literal] = ACTIONS(2887), + [anon_sym_SQUOTE] = ACTIONS(2887), + [anon_sym_DQUOTE] = ACTIONS(2887), + [anon_sym_c_SQUOTE] = ACTIONS(2887), + [anon_sym_c_DQUOTE] = ACTIONS(2887), + [anon_sym_r_SQUOTE] = ACTIONS(2887), + [anon_sym_r_DQUOTE] = ACTIONS(2887), + [sym_pseudo_compile_time_identifier] = ACTIONS(2887), + [anon_sym_shared] = ACTIONS(2887), + [anon_sym_map_LBRACK] = ACTIONS(2887), + [anon_sym_chan] = ACTIONS(2887), + [anon_sym_thread] = ACTIONS(2887), + [anon_sym_atomic] = ACTIONS(2887), }, [1224] = { [sym_line_comment] = STATE(1224), [sym_block_comment] = STATE(1224), - [sym_identifier] = ACTIONS(2203), - [anon_sym_LF] = ACTIONS(2203), - [anon_sym_CR] = ACTIONS(2203), - [anon_sym_CR_LF] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2719), + [anon_sym_LF] = ACTIONS(2719), + [anon_sym_CR] = ACTIONS(2719), + [anon_sym_CR_LF] = ACTIONS(2719), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_DOT] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_COMMA] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_RPAREN] = ACTIONS(2203), - [anon_sym_PIPE] = ACTIONS(2203), - [anon_sym_fn] = ACTIONS(2203), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2203), - [anon_sym_SLASH] = ACTIONS(2203), - [anon_sym_PERCENT] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_GT] = ACTIONS(2203), - [anon_sym_EQ_EQ] = ACTIONS(2203), - [anon_sym_BANG_EQ] = ACTIONS(2203), - [anon_sym_LT_EQ] = ACTIONS(2203), - [anon_sym_GT_EQ] = ACTIONS(2203), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_struct] = ACTIONS(2203), - [anon_sym_mut] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [anon_sym_QMARK] = ACTIONS(2203), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_go] = ACTIONS(2203), - [anon_sym_spawn] = ACTIONS(2203), - [anon_sym_json_DOTdecode] = ACTIONS(2203), - [anon_sym_LBRACK2] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_CARET] = ACTIONS(2203), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2203), - [anon_sym_LT_LT] = ACTIONS(2203), - [anon_sym_GT_GT] = ACTIONS(2203), - [anon_sym_GT_GT_GT] = ACTIONS(2203), - [anon_sym_AMP_CARET] = ACTIONS(2203), - [anon_sym_AMP_AMP] = ACTIONS(2203), - [anon_sym_PIPE_PIPE] = ACTIONS(2203), - [anon_sym_or] = ACTIONS(2203), - [sym_none] = ACTIONS(2203), - [sym_true] = ACTIONS(2203), - [sym_false] = ACTIONS(2203), - [sym_nil] = ACTIONS(2203), - [anon_sym_QMARK_DOT] = ACTIONS(2203), - [anon_sym_POUND_LBRACK] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_DOLLARif] = ACTIONS(2203), - [anon_sym_is] = ACTIONS(2203), - [anon_sym_BANGis] = ACTIONS(2203), - [anon_sym_in] = ACTIONS(2203), - [anon_sym_BANGin] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_select] = ACTIONS(2203), - [anon_sym_lock] = ACTIONS(2203), - [anon_sym_rlock] = ACTIONS(2203), - [anon_sym_unsafe] = ACTIONS(2203), - [anon_sym_sql] = ACTIONS(2203), - [sym_int_literal] = ACTIONS(2203), - [sym_float_literal] = ACTIONS(2203), - [sym_rune_literal] = ACTIONS(2203), - [sym_pseudo_compile_time_identifier] = ACTIONS(2203), - [anon_sym_shared] = ACTIONS(2203), - [anon_sym_map_LBRACK] = ACTIONS(2203), - [anon_sym_chan] = ACTIONS(2203), - [anon_sym_thread] = ACTIONS(2203), - [anon_sym_atomic] = ACTIONS(2203), - [sym___double_quote] = ACTIONS(2203), - [sym___single_quote] = ACTIONS(2203), - [sym___c_double_quote] = ACTIONS(2203), - [sym___c_single_quote] = ACTIONS(2203), - [sym___r_double_quote] = ACTIONS(2203), - [sym___r_single_quote] = ACTIONS(2203), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_DOT] = ACTIONS(2719), + [anon_sym_as] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_COMMA] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2719), + [anon_sym_PIPE] = ACTIONS(2719), + [anon_sym_fn] = ACTIONS(2719), + [anon_sym_PLUS] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2719), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_SLASH] = ACTIONS(2719), + [anon_sym_PERCENT] = ACTIONS(2719), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_GT] = ACTIONS(2719), + [anon_sym_EQ_EQ] = ACTIONS(2719), + [anon_sym_BANG_EQ] = ACTIONS(2719), + [anon_sym_LT_EQ] = ACTIONS(2719), + [anon_sym_GT_EQ] = ACTIONS(2719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2719), + [anon_sym_mut] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_QMARK] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_go] = ACTIONS(2719), + [anon_sym_spawn] = ACTIONS(2719), + [anon_sym_json_DOTdecode] = ACTIONS(2719), + [anon_sym_LBRACK2] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_CARET] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2719), + [anon_sym_LT_DASH] = ACTIONS(2719), + [anon_sym_LT_LT] = ACTIONS(2719), + [anon_sym_GT_GT] = ACTIONS(2719), + [anon_sym_GT_GT_GT] = ACTIONS(2719), + [anon_sym_AMP_CARET] = ACTIONS(2719), + [anon_sym_AMP_AMP] = ACTIONS(2719), + [anon_sym_PIPE_PIPE] = ACTIONS(2719), + [anon_sym_or] = ACTIONS(2719), + [sym_none] = ACTIONS(2719), + [sym_true] = ACTIONS(2719), + [sym_false] = ACTIONS(2719), + [sym_nil] = ACTIONS(2719), + [anon_sym_QMARK_DOT] = ACTIONS(2719), + [anon_sym_POUND_LBRACK] = ACTIONS(2719), + [anon_sym_if] = ACTIONS(2719), + [anon_sym_DOLLARif] = ACTIONS(2719), + [anon_sym_is] = ACTIONS(2719), + [anon_sym_BANGis] = ACTIONS(2719), + [anon_sym_in] = ACTIONS(2719), + [anon_sym_BANGin] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_select] = ACTIONS(2719), + [anon_sym_lock] = ACTIONS(2719), + [anon_sym_rlock] = ACTIONS(2719), + [anon_sym_unsafe] = ACTIONS(2719), + [anon_sym_sql] = ACTIONS(2719), + [sym_int_literal] = ACTIONS(2719), + [sym_float_literal] = ACTIONS(2719), + [sym_rune_literal] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [anon_sym_c_SQUOTE] = ACTIONS(2719), + [anon_sym_c_DQUOTE] = ACTIONS(2719), + [anon_sym_r_SQUOTE] = ACTIONS(2719), + [anon_sym_r_DQUOTE] = ACTIONS(2719), + [sym_pseudo_compile_time_identifier] = ACTIONS(2719), + [anon_sym_shared] = ACTIONS(2719), + [anon_sym_map_LBRACK] = ACTIONS(2719), + [anon_sym_chan] = ACTIONS(2719), + [anon_sym_thread] = ACTIONS(2719), + [anon_sym_atomic] = ACTIONS(2719), }, [1225] = { [sym_line_comment] = STATE(1225), [sym_block_comment] = STATE(1225), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_RPAREN] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1881), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_QMARK] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_GT_GT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_AMP_CARET] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_or] = ACTIONS(1881), - [sym_none] = ACTIONS(1881), - [sym_true] = ACTIONS(1881), - [sym_false] = ACTIONS(1881), - [sym_nil] = ACTIONS(1881), - [anon_sym_QMARK_DOT] = ACTIONS(1881), - [anon_sym_POUND_LBRACK] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_BANGin] = ACTIONS(1881), - [anon_sym_match] = ACTIONS(1881), - [anon_sym_select] = ACTIONS(1881), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1881), - [anon_sym_sql] = ACTIONS(1881), - [sym_int_literal] = ACTIONS(1881), - [sym_float_literal] = ACTIONS(1881), - [sym_rune_literal] = ACTIONS(1881), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1881), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1881), - [sym___single_quote] = ACTIONS(1881), - [sym___c_double_quote] = ACTIONS(1881), - [sym___c_single_quote] = ACTIONS(1881), - [sym___r_double_quote] = ACTIONS(1881), - [sym___r_single_quote] = ACTIONS(1881), - }, - [1226] = { - [sym_line_comment] = STATE(1226), - [sym_block_comment] = STATE(1226), - [sym_identifier] = ACTIONS(3062), - [anon_sym_LF] = ACTIONS(3062), - [anon_sym_CR] = ACTIONS(3062), - [anon_sym_CR_LF] = ACTIONS(3062), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3062), - [anon_sym_DOT] = ACTIONS(3062), - [anon_sym_as] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3062), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_RBRACE] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3062), - [anon_sym_RPAREN] = ACTIONS(3062), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_fn] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_EQ_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_LT_EQ] = ACTIONS(3062), - [anon_sym_GT_EQ] = ACTIONS(3062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_struct] = ACTIONS(3062), - [anon_sym_mut] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3062), - [anon_sym_DASH_DASH] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_go] = ACTIONS(3062), - [anon_sym_spawn] = ACTIONS(3062), - [anon_sym_json_DOTdecode] = ACTIONS(3062), - [anon_sym_LBRACK2] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3062), - [anon_sym_LT_DASH] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3062), - [anon_sym_GT_GT] = ACTIONS(3062), - [anon_sym_GT_GT_GT] = ACTIONS(3062), - [anon_sym_AMP_CARET] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_PIPE_PIPE] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3062), - [sym_none] = ACTIONS(3062), - [sym_true] = ACTIONS(3062), - [sym_false] = ACTIONS(3062), - [sym_nil] = ACTIONS(3062), - [anon_sym_QMARK_DOT] = ACTIONS(3062), - [anon_sym_POUND_LBRACK] = ACTIONS(3062), - [anon_sym_if] = ACTIONS(3062), - [anon_sym_DOLLARif] = ACTIONS(3062), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_BANGis] = ACTIONS(3062), - [anon_sym_in] = ACTIONS(3062), - [anon_sym_BANGin] = ACTIONS(3062), - [anon_sym_match] = ACTIONS(3062), - [anon_sym_select] = ACTIONS(3062), - [anon_sym_lock] = ACTIONS(3062), - [anon_sym_rlock] = ACTIONS(3062), - [anon_sym_unsafe] = ACTIONS(3062), - [anon_sym_sql] = ACTIONS(3062), - [sym_int_literal] = ACTIONS(3062), - [sym_float_literal] = ACTIONS(3062), - [sym_rune_literal] = ACTIONS(3062), - [sym_pseudo_compile_time_identifier] = ACTIONS(3062), - [anon_sym_shared] = ACTIONS(3062), - [anon_sym_map_LBRACK] = ACTIONS(3062), - [anon_sym_chan] = ACTIONS(3062), - [anon_sym_thread] = ACTIONS(3062), - [anon_sym_atomic] = ACTIONS(3062), - [sym___double_quote] = ACTIONS(3062), - [sym___single_quote] = ACTIONS(3062), - [sym___c_double_quote] = ACTIONS(3062), - [sym___c_single_quote] = ACTIONS(3062), - [sym___r_double_quote] = ACTIONS(3062), - [sym___r_single_quote] = ACTIONS(3062), - }, - [1227] = { - [sym_line_comment] = STATE(1227), - [sym_block_comment] = STATE(1227), - [sym_identifier] = ACTIONS(2736), - [anon_sym_LF] = ACTIONS(2736), - [anon_sym_CR] = ACTIONS(2736), - [anon_sym_CR_LF] = ACTIONS(2736), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_as] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_COMMA] = ACTIONS(2736), - [anon_sym_RBRACE] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_fn] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_PERCENT] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2736), - [anon_sym_EQ_EQ] = ACTIONS(2736), - [anon_sym_BANG_EQ] = ACTIONS(2736), - [anon_sym_LT_EQ] = ACTIONS(2736), - [anon_sym_GT_EQ] = ACTIONS(2736), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_mut] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_go] = ACTIONS(2736), - [anon_sym_spawn] = ACTIONS(2736), - [anon_sym_json_DOTdecode] = ACTIONS(2736), - [anon_sym_LBRACK2] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_CARET] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_LT_DASH] = ACTIONS(2736), - [anon_sym_LT_LT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_GT_GT_GT] = ACTIONS(2736), - [anon_sym_AMP_CARET] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(2736), - [anon_sym_or] = ACTIONS(2736), - [sym_none] = ACTIONS(2736), - [sym_true] = ACTIONS(2736), - [sym_false] = ACTIONS(2736), - [sym_nil] = ACTIONS(2736), - [anon_sym_QMARK_DOT] = ACTIONS(2736), - [anon_sym_POUND_LBRACK] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_DOLLARif] = ACTIONS(2736), - [anon_sym_is] = ACTIONS(2736), - [anon_sym_BANGis] = ACTIONS(2736), - [anon_sym_in] = ACTIONS(2736), - [anon_sym_BANGin] = ACTIONS(2736), - [anon_sym_match] = ACTIONS(2736), - [anon_sym_select] = ACTIONS(2736), - [anon_sym_lock] = ACTIONS(2736), - [anon_sym_rlock] = ACTIONS(2736), - [anon_sym_unsafe] = ACTIONS(2736), - [anon_sym_sql] = ACTIONS(2736), - [sym_int_literal] = ACTIONS(2736), - [sym_float_literal] = ACTIONS(2736), - [sym_rune_literal] = ACTIONS(2736), - [sym_pseudo_compile_time_identifier] = ACTIONS(2736), - [anon_sym_shared] = ACTIONS(2736), - [anon_sym_map_LBRACK] = ACTIONS(2736), - [anon_sym_chan] = ACTIONS(2736), - [anon_sym_thread] = ACTIONS(2736), - [anon_sym_atomic] = ACTIONS(2736), - [sym___double_quote] = ACTIONS(2736), - [sym___single_quote] = ACTIONS(2736), - [sym___c_double_quote] = ACTIONS(2736), - [sym___c_single_quote] = ACTIONS(2736), - [sym___r_double_quote] = ACTIONS(2736), - [sym___r_single_quote] = ACTIONS(2736), - }, - [1228] = { - [sym_line_comment] = STATE(1228), - [sym_block_comment] = STATE(1228), - [sym_identifier] = ACTIONS(2315), - [anon_sym_LF] = ACTIONS(2315), - [anon_sym_CR] = ACTIONS(2315), - [anon_sym_CR_LF] = ACTIONS(2315), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2315), - [anon_sym_DOT] = ACTIONS(2315), - [anon_sym_as] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2315), - [anon_sym_COMMA] = ACTIONS(2315), - [anon_sym_RBRACE] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_RPAREN] = ACTIONS(2315), - [anon_sym_PIPE] = ACTIONS(2315), - [anon_sym_fn] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2315), - [anon_sym_STAR] = ACTIONS(2315), - [anon_sym_SLASH] = ACTIONS(2315), - [anon_sym_PERCENT] = ACTIONS(2315), - [anon_sym_LT] = ACTIONS(2315), - [anon_sym_GT] = ACTIONS(2315), - [anon_sym_EQ_EQ] = ACTIONS(2315), - [anon_sym_BANG_EQ] = ACTIONS(2315), - [anon_sym_LT_EQ] = ACTIONS(2315), - [anon_sym_GT_EQ] = ACTIONS(2315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2315), - [anon_sym_LBRACK] = ACTIONS(2313), - [anon_sym_struct] = ACTIONS(2315), - [anon_sym_mut] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(2315), - [anon_sym_DASH_DASH] = ACTIONS(2315), - [anon_sym_QMARK] = ACTIONS(2315), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_go] = ACTIONS(2315), - [anon_sym_spawn] = ACTIONS(2315), - [anon_sym_json_DOTdecode] = ACTIONS(2315), - [anon_sym_LBRACK2] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_LT_DASH] = ACTIONS(2315), - [anon_sym_LT_LT] = ACTIONS(2315), - [anon_sym_GT_GT] = ACTIONS(2315), - [anon_sym_GT_GT_GT] = ACTIONS(2315), - [anon_sym_AMP_CARET] = ACTIONS(2315), - [anon_sym_AMP_AMP] = ACTIONS(2315), - [anon_sym_PIPE_PIPE] = ACTIONS(2315), - [anon_sym_or] = ACTIONS(2315), - [sym_none] = ACTIONS(2315), - [sym_true] = ACTIONS(2315), - [sym_false] = ACTIONS(2315), - [sym_nil] = ACTIONS(2315), - [anon_sym_QMARK_DOT] = ACTIONS(2315), - [anon_sym_POUND_LBRACK] = ACTIONS(2315), - [anon_sym_if] = ACTIONS(2315), - [anon_sym_DOLLARif] = ACTIONS(2315), - [anon_sym_is] = ACTIONS(2315), - [anon_sym_BANGis] = ACTIONS(2315), - [anon_sym_in] = ACTIONS(2315), - [anon_sym_BANGin] = ACTIONS(2315), - [anon_sym_match] = ACTIONS(2315), - [anon_sym_select] = ACTIONS(2315), - [anon_sym_lock] = ACTIONS(2315), - [anon_sym_rlock] = ACTIONS(2315), - [anon_sym_unsafe] = ACTIONS(2315), - [anon_sym_sql] = ACTIONS(2315), - [sym_int_literal] = ACTIONS(2315), - [sym_float_literal] = ACTIONS(2315), - [sym_rune_literal] = ACTIONS(2315), - [sym_pseudo_compile_time_identifier] = ACTIONS(2315), - [anon_sym_shared] = ACTIONS(2315), - [anon_sym_map_LBRACK] = ACTIONS(2315), - [anon_sym_chan] = ACTIONS(2315), - [anon_sym_thread] = ACTIONS(2315), - [anon_sym_atomic] = ACTIONS(2315), - [sym___double_quote] = ACTIONS(2315), - [sym___single_quote] = ACTIONS(2315), - [sym___c_double_quote] = ACTIONS(2315), - [sym___c_single_quote] = ACTIONS(2315), - [sym___r_double_quote] = ACTIONS(2315), - [sym___r_single_quote] = ACTIONS(2315), - }, - [1229] = { - [sym_line_comment] = STATE(1229), - [sym_block_comment] = STATE(1229), - [sym_identifier] = ACTIONS(2672), - [anon_sym_LF] = ACTIONS(2672), - [anon_sym_CR] = ACTIONS(2672), - [anon_sym_CR_LF] = ACTIONS(2672), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2672), - [anon_sym_DOT] = ACTIONS(2672), - [anon_sym_as] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_COMMA] = ACTIONS(2672), - [anon_sym_RBRACE] = ACTIONS(2672), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_RPAREN] = ACTIONS(2672), - [anon_sym_PIPE] = ACTIONS(2672), - [anon_sym_fn] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2672), - [anon_sym_STAR] = ACTIONS(2672), - [anon_sym_SLASH] = ACTIONS(2672), - [anon_sym_PERCENT] = ACTIONS(2672), - [anon_sym_LT] = ACTIONS(2672), - [anon_sym_GT] = ACTIONS(2672), - [anon_sym_EQ_EQ] = ACTIONS(2672), - [anon_sym_BANG_EQ] = ACTIONS(2672), - [anon_sym_LT_EQ] = ACTIONS(2672), - [anon_sym_GT_EQ] = ACTIONS(2672), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_struct] = ACTIONS(2672), - [anon_sym_mut] = ACTIONS(2672), - [anon_sym_PLUS_PLUS] = ACTIONS(2672), - [anon_sym_DASH_DASH] = ACTIONS(2672), - [anon_sym_QMARK] = ACTIONS(2672), - [anon_sym_BANG] = ACTIONS(2672), - [anon_sym_go] = ACTIONS(2672), - [anon_sym_spawn] = ACTIONS(2672), - [anon_sym_json_DOTdecode] = ACTIONS(2672), - [anon_sym_LBRACK2] = ACTIONS(2672), - [anon_sym_TILDE] = ACTIONS(2672), - [anon_sym_CARET] = ACTIONS(2672), - [anon_sym_AMP] = ACTIONS(2672), - [anon_sym_LT_DASH] = ACTIONS(2672), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_GT_GT_GT] = ACTIONS(2672), - [anon_sym_AMP_CARET] = ACTIONS(2672), - [anon_sym_AMP_AMP] = ACTIONS(2672), - [anon_sym_PIPE_PIPE] = ACTIONS(2672), - [anon_sym_or] = ACTIONS(2672), - [sym_none] = ACTIONS(2672), - [sym_true] = ACTIONS(2672), - [sym_false] = ACTIONS(2672), - [sym_nil] = ACTIONS(2672), - [anon_sym_QMARK_DOT] = ACTIONS(2672), - [anon_sym_POUND_LBRACK] = ACTIONS(2672), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_DOLLARif] = ACTIONS(2672), - [anon_sym_is] = ACTIONS(2672), - [anon_sym_BANGis] = ACTIONS(2672), - [anon_sym_in] = ACTIONS(2672), - [anon_sym_BANGin] = ACTIONS(2672), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2672), - [anon_sym_lock] = ACTIONS(2672), - [anon_sym_rlock] = ACTIONS(2672), - [anon_sym_unsafe] = ACTIONS(2672), - [anon_sym_sql] = ACTIONS(2672), - [sym_int_literal] = ACTIONS(2672), - [sym_float_literal] = ACTIONS(2672), - [sym_rune_literal] = ACTIONS(2672), - [sym_pseudo_compile_time_identifier] = ACTIONS(2672), - [anon_sym_shared] = ACTIONS(2672), - [anon_sym_map_LBRACK] = ACTIONS(2672), - [anon_sym_chan] = ACTIONS(2672), - [anon_sym_thread] = ACTIONS(2672), - [anon_sym_atomic] = ACTIONS(2672), - [sym___double_quote] = ACTIONS(2672), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2672), - [sym___c_single_quote] = ACTIONS(2672), - [sym___r_double_quote] = ACTIONS(2672), - [sym___r_single_quote] = ACTIONS(2672), - }, - [1230] = { - [sym_line_comment] = STATE(1230), - [sym_block_comment] = STATE(1230), - [sym_identifier] = ACTIONS(2217), - [anon_sym_LF] = ACTIONS(2217), - [anon_sym_CR] = ACTIONS(2217), - [anon_sym_CR_LF] = ACTIONS(2217), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2217), - [anon_sym_DOT] = ACTIONS(2219), - [anon_sym_as] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2217), - [anon_sym_COMMA] = ACTIONS(2217), - [anon_sym_RBRACE] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_RPAREN] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2219), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_GT] = ACTIONS(2219), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2219), - [anon_sym_GT_EQ] = ACTIONS(2219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_mut] = ACTIONS(2217), - [anon_sym_PLUS_PLUS] = ACTIONS(2219), - [anon_sym_DASH_DASH] = ACTIONS(2219), - [anon_sym_QMARK] = ACTIONS(2219), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_go] = ACTIONS(2217), - [anon_sym_spawn] = ACTIONS(2217), - [anon_sym_json_DOTdecode] = ACTIONS(2217), - [anon_sym_LBRACK2] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2219), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2219), - [anon_sym_AMP_CARET] = ACTIONS(2219), - [anon_sym_AMP_AMP] = ACTIONS(2219), - [anon_sym_PIPE_PIPE] = ACTIONS(2219), - [anon_sym_or] = ACTIONS(2219), - [sym_none] = ACTIONS(2217), - [sym_true] = ACTIONS(2217), - [sym_false] = ACTIONS(2217), - [sym_nil] = ACTIONS(2217), - [anon_sym_QMARK_DOT] = ACTIONS(2219), - [anon_sym_POUND_LBRACK] = ACTIONS(2219), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_DOLLARif] = ACTIONS(2217), - [anon_sym_is] = ACTIONS(2219), - [anon_sym_BANGis] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_BANGin] = ACTIONS(2219), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_select] = ACTIONS(2217), - [anon_sym_lock] = ACTIONS(2217), - [anon_sym_rlock] = ACTIONS(2217), - [anon_sym_unsafe] = ACTIONS(2217), - [anon_sym_sql] = ACTIONS(2217), - [sym_int_literal] = ACTIONS(2217), - [sym_float_literal] = ACTIONS(2217), - [sym_rune_literal] = ACTIONS(2217), - [sym_pseudo_compile_time_identifier] = ACTIONS(2217), - [anon_sym_shared] = ACTIONS(2217), - [anon_sym_map_LBRACK] = ACTIONS(2217), - [anon_sym_chan] = ACTIONS(2217), - [anon_sym_thread] = ACTIONS(2217), - [anon_sym_atomic] = ACTIONS(2217), - [sym___double_quote] = ACTIONS(2217), - [sym___single_quote] = ACTIONS(2217), - [sym___c_double_quote] = ACTIONS(2217), - [sym___c_single_quote] = ACTIONS(2217), - [sym___r_double_quote] = ACTIONS(2217), - [sym___r_single_quote] = ACTIONS(2217), - }, - [1231] = { - [sym_line_comment] = STATE(1231), - [sym_block_comment] = STATE(1231), - [sym_identifier] = ACTIONS(2463), - [anon_sym_LF] = ACTIONS(2463), - [anon_sym_CR] = ACTIONS(2463), - [anon_sym_CR_LF] = ACTIONS(2463), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_DOT] = ACTIONS(2463), - [anon_sym_as] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_COMMA] = ACTIONS(2463), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_RPAREN] = ACTIONS(2463), - [anon_sym_PIPE] = ACTIONS(2463), - [anon_sym_fn] = ACTIONS(2463), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(2463), - [anon_sym_STAR] = ACTIONS(2463), - [anon_sym_SLASH] = ACTIONS(2463), - [anon_sym_PERCENT] = ACTIONS(2463), - [anon_sym_LT] = ACTIONS(2463), - [anon_sym_GT] = ACTIONS(2463), - [anon_sym_EQ_EQ] = ACTIONS(2463), - [anon_sym_BANG_EQ] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(2463), - [anon_sym_GT_EQ] = ACTIONS(2463), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2463), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_struct] = ACTIONS(2463), - [anon_sym_mut] = ACTIONS(2463), - [anon_sym_PLUS_PLUS] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2463), - [anon_sym_QMARK] = ACTIONS(2463), - [anon_sym_BANG] = ACTIONS(2463), - [anon_sym_go] = ACTIONS(2463), - [anon_sym_spawn] = ACTIONS(2463), - [anon_sym_json_DOTdecode] = ACTIONS(2463), - [anon_sym_LBRACK2] = ACTIONS(2463), - [anon_sym_TILDE] = ACTIONS(2463), - [anon_sym_CARET] = ACTIONS(2463), - [anon_sym_AMP] = ACTIONS(2463), - [anon_sym_LT_DASH] = ACTIONS(2463), - [anon_sym_LT_LT] = ACTIONS(2463), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_GT_GT_GT] = ACTIONS(2463), - [anon_sym_AMP_CARET] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(2463), - [anon_sym_PIPE_PIPE] = ACTIONS(2463), - [anon_sym_or] = ACTIONS(2463), - [sym_none] = ACTIONS(2463), - [sym_true] = ACTIONS(2463), - [sym_false] = ACTIONS(2463), - [sym_nil] = ACTIONS(2463), - [anon_sym_QMARK_DOT] = ACTIONS(2463), - [anon_sym_POUND_LBRACK] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_DOLLARif] = ACTIONS(2463), - [anon_sym_is] = ACTIONS(2463), - [anon_sym_BANGis] = ACTIONS(2463), - [anon_sym_in] = ACTIONS(2463), - [anon_sym_BANGin] = ACTIONS(2463), - [anon_sym_match] = ACTIONS(2463), - [anon_sym_select] = ACTIONS(2463), - [anon_sym_lock] = ACTIONS(2463), - [anon_sym_rlock] = ACTIONS(2463), - [anon_sym_unsafe] = ACTIONS(2463), - [anon_sym_sql] = ACTIONS(2463), - [sym_int_literal] = ACTIONS(2463), - [sym_float_literal] = ACTIONS(2463), - [sym_rune_literal] = ACTIONS(2463), - [sym_pseudo_compile_time_identifier] = ACTIONS(2463), - [anon_sym_shared] = ACTIONS(2463), - [anon_sym_map_LBRACK] = ACTIONS(2463), - [anon_sym_chan] = ACTIONS(2463), - [anon_sym_thread] = ACTIONS(2463), - [anon_sym_atomic] = ACTIONS(2463), - [sym___double_quote] = ACTIONS(2463), - [sym___single_quote] = ACTIONS(2463), - [sym___c_double_quote] = ACTIONS(2463), - [sym___c_single_quote] = ACTIONS(2463), - [sym___r_double_quote] = ACTIONS(2463), - [sym___r_single_quote] = ACTIONS(2463), - }, - [1232] = { - [sym_line_comment] = STATE(1232), - [sym_block_comment] = STATE(1232), - [sym_identifier] = ACTIONS(2467), - [anon_sym_LF] = ACTIONS(2467), - [anon_sym_CR] = ACTIONS(2467), - [anon_sym_CR_LF] = ACTIONS(2467), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2467), - [anon_sym_DOT] = ACTIONS(2467), - [anon_sym_as] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_COMMA] = ACTIONS(2467), - [anon_sym_RBRACE] = ACTIONS(2467), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_RPAREN] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(2467), - [anon_sym_fn] = ACTIONS(2467), - [anon_sym_PLUS] = ACTIONS(2467), - [anon_sym_DASH] = ACTIONS(2467), - [anon_sym_STAR] = ACTIONS(2467), - [anon_sym_SLASH] = ACTIONS(2467), - [anon_sym_PERCENT] = ACTIONS(2467), - [anon_sym_LT] = ACTIONS(2467), - [anon_sym_GT] = ACTIONS(2467), - [anon_sym_EQ_EQ] = ACTIONS(2467), - [anon_sym_BANG_EQ] = ACTIONS(2467), - [anon_sym_LT_EQ] = ACTIONS(2467), - [anon_sym_GT_EQ] = ACTIONS(2467), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2467), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_struct] = ACTIONS(2467), - [anon_sym_mut] = ACTIONS(2467), - [anon_sym_PLUS_PLUS] = ACTIONS(2467), - [anon_sym_DASH_DASH] = ACTIONS(2467), - [anon_sym_QMARK] = ACTIONS(2467), - [anon_sym_BANG] = ACTIONS(2467), - [anon_sym_go] = ACTIONS(2467), - [anon_sym_spawn] = ACTIONS(2467), - [anon_sym_json_DOTdecode] = ACTIONS(2467), - [anon_sym_LBRACK2] = ACTIONS(2467), - [anon_sym_TILDE] = ACTIONS(2467), - [anon_sym_CARET] = ACTIONS(2467), - [anon_sym_AMP] = ACTIONS(2467), - [anon_sym_LT_DASH] = ACTIONS(2467), - [anon_sym_LT_LT] = ACTIONS(2467), - [anon_sym_GT_GT] = ACTIONS(2467), - [anon_sym_GT_GT_GT] = ACTIONS(2467), - [anon_sym_AMP_CARET] = ACTIONS(2467), - [anon_sym_AMP_AMP] = ACTIONS(2467), - [anon_sym_PIPE_PIPE] = ACTIONS(2467), - [anon_sym_or] = ACTIONS(2467), - [sym_none] = ACTIONS(2467), - [sym_true] = ACTIONS(2467), - [sym_false] = ACTIONS(2467), - [sym_nil] = ACTIONS(2467), - [anon_sym_QMARK_DOT] = ACTIONS(2467), - [anon_sym_POUND_LBRACK] = ACTIONS(2467), - [anon_sym_if] = ACTIONS(2467), - [anon_sym_DOLLARif] = ACTIONS(2467), - [anon_sym_is] = ACTIONS(2467), - [anon_sym_BANGis] = ACTIONS(2467), - [anon_sym_in] = ACTIONS(2467), - [anon_sym_BANGin] = ACTIONS(2467), - [anon_sym_match] = ACTIONS(2467), - [anon_sym_select] = ACTIONS(2467), - [anon_sym_lock] = ACTIONS(2467), - [anon_sym_rlock] = ACTIONS(2467), - [anon_sym_unsafe] = ACTIONS(2467), - [anon_sym_sql] = ACTIONS(2467), - [sym_int_literal] = ACTIONS(2467), - [sym_float_literal] = ACTIONS(2467), - [sym_rune_literal] = ACTIONS(2467), - [sym_pseudo_compile_time_identifier] = ACTIONS(2467), - [anon_sym_shared] = ACTIONS(2467), - [anon_sym_map_LBRACK] = ACTIONS(2467), - [anon_sym_chan] = ACTIONS(2467), - [anon_sym_thread] = ACTIONS(2467), - [anon_sym_atomic] = ACTIONS(2467), - [sym___double_quote] = ACTIONS(2467), - [sym___single_quote] = ACTIONS(2467), - [sym___c_double_quote] = ACTIONS(2467), - [sym___c_single_quote] = ACTIONS(2467), - [sym___r_double_quote] = ACTIONS(2467), - [sym___r_single_quote] = ACTIONS(2467), - }, - [1233] = { - [sym_line_comment] = STATE(1233), - [sym_block_comment] = STATE(1233), - [sym_identifier] = ACTIONS(2513), - [anon_sym_LF] = ACTIONS(2513), - [anon_sym_CR] = ACTIONS(2513), - [anon_sym_CR_LF] = ACTIONS(2513), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_DOT] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_COMMA] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_RPAREN] = ACTIONS(2513), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_fn] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2513), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_GT] = ACTIONS(2513), - [anon_sym_EQ_EQ] = ACTIONS(2513), - [anon_sym_BANG_EQ] = ACTIONS(2513), - [anon_sym_LT_EQ] = ACTIONS(2513), - [anon_sym_GT_EQ] = ACTIONS(2513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_QMARK] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_go] = ACTIONS(2513), - [anon_sym_spawn] = ACTIONS(2513), - [anon_sym_json_DOTdecode] = ACTIONS(2513), - [anon_sym_LBRACK2] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_LT_DASH] = ACTIONS(2513), - [anon_sym_LT_LT] = ACTIONS(2513), - [anon_sym_GT_GT] = ACTIONS(2513), - [anon_sym_GT_GT_GT] = ACTIONS(2513), - [anon_sym_AMP_CARET] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2513), - [anon_sym_or] = ACTIONS(2513), - [sym_none] = ACTIONS(2513), - [sym_true] = ACTIONS(2513), - [sym_false] = ACTIONS(2513), - [sym_nil] = ACTIONS(2513), - [anon_sym_QMARK_DOT] = ACTIONS(2513), - [anon_sym_POUND_LBRACK] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_DOLLARif] = ACTIONS(2513), - [anon_sym_is] = ACTIONS(2513), - [anon_sym_BANGis] = ACTIONS(2513), - [anon_sym_in] = ACTIONS(2513), - [anon_sym_BANGin] = ACTIONS(2513), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_select] = ACTIONS(2513), - [anon_sym_lock] = ACTIONS(2513), - [anon_sym_rlock] = ACTIONS(2513), - [anon_sym_unsafe] = ACTIONS(2513), - [anon_sym_sql] = ACTIONS(2513), - [sym_int_literal] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2513), - [sym_rune_literal] = ACTIONS(2513), - [sym_pseudo_compile_time_identifier] = ACTIONS(2513), - [anon_sym_shared] = ACTIONS(2513), - [anon_sym_map_LBRACK] = ACTIONS(2513), - [anon_sym_chan] = ACTIONS(2513), - [anon_sym_thread] = ACTIONS(2513), - [anon_sym_atomic] = ACTIONS(2513), - [sym___double_quote] = ACTIONS(2513), - [sym___single_quote] = ACTIONS(2513), - [sym___c_double_quote] = ACTIONS(2513), - [sym___c_single_quote] = ACTIONS(2513), - [sym___r_double_quote] = ACTIONS(2513), - [sym___r_single_quote] = ACTIONS(2513), - }, - [1234] = { - [sym_line_comment] = STATE(1234), - [sym_block_comment] = STATE(1234), - [sym_identifier] = ACTIONS(2505), - [anon_sym_LF] = ACTIONS(2505), - [anon_sym_CR] = ACTIONS(2505), - [anon_sym_CR_LF] = ACTIONS(2505), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_DOT] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_COMMA] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_RPAREN] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2505), - [anon_sym_fn] = ACTIONS(2505), - [anon_sym_PLUS] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_GT] = ACTIONS(2505), - [anon_sym_EQ_EQ] = ACTIONS(2505), - [anon_sym_BANG_EQ] = ACTIONS(2505), - [anon_sym_LT_EQ] = ACTIONS(2505), - [anon_sym_GT_EQ] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2505), - [anon_sym_mut] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2505), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_QMARK] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_go] = ACTIONS(2505), - [anon_sym_spawn] = ACTIONS(2505), - [anon_sym_json_DOTdecode] = ACTIONS(2505), - [anon_sym_LBRACK2] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_CARET] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2505), - [anon_sym_LT_DASH] = ACTIONS(2505), - [anon_sym_LT_LT] = ACTIONS(2505), - [anon_sym_GT_GT] = ACTIONS(2505), - [anon_sym_GT_GT_GT] = ACTIONS(2505), - [anon_sym_AMP_CARET] = ACTIONS(2505), - [anon_sym_AMP_AMP] = ACTIONS(2505), - [anon_sym_PIPE_PIPE] = ACTIONS(2505), - [anon_sym_or] = ACTIONS(2505), - [sym_none] = ACTIONS(2505), - [sym_true] = ACTIONS(2505), - [sym_false] = ACTIONS(2505), - [sym_nil] = ACTIONS(2505), - [anon_sym_QMARK_DOT] = ACTIONS(2505), - [anon_sym_POUND_LBRACK] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_DOLLARif] = ACTIONS(2505), - [anon_sym_is] = ACTIONS(2505), - [anon_sym_BANGis] = ACTIONS(2505), - [anon_sym_in] = ACTIONS(2505), - [anon_sym_BANGin] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2505), - [anon_sym_select] = ACTIONS(2505), - [anon_sym_lock] = ACTIONS(2505), - [anon_sym_rlock] = ACTIONS(2505), - [anon_sym_unsafe] = ACTIONS(2505), - [anon_sym_sql] = ACTIONS(2505), - [sym_int_literal] = ACTIONS(2505), - [sym_float_literal] = ACTIONS(2505), - [sym_rune_literal] = ACTIONS(2505), - [sym_pseudo_compile_time_identifier] = ACTIONS(2505), - [anon_sym_shared] = ACTIONS(2505), - [anon_sym_map_LBRACK] = ACTIONS(2505), - [anon_sym_chan] = ACTIONS(2505), - [anon_sym_thread] = ACTIONS(2505), - [anon_sym_atomic] = ACTIONS(2505), - [sym___double_quote] = ACTIONS(2505), - [sym___single_quote] = ACTIONS(2505), - [sym___c_double_quote] = ACTIONS(2505), - [sym___c_single_quote] = ACTIONS(2505), - [sym___r_double_quote] = ACTIONS(2505), - [sym___r_single_quote] = ACTIONS(2505), - }, - [1235] = { - [sym_line_comment] = STATE(1235), - [sym_block_comment] = STATE(1235), - [sym_identifier] = ACTIONS(2696), - [anon_sym_LF] = ACTIONS(2696), - [anon_sym_CR] = ACTIONS(2696), - [anon_sym_CR_LF] = ACTIONS(2696), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_DOT] = ACTIONS(2696), - [anon_sym_as] = ACTIONS(2696), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_COMMA] = ACTIONS(2696), - [anon_sym_RBRACE] = ACTIONS(2696), - [anon_sym_LPAREN] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_fn] = ACTIONS(2696), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2696), - [anon_sym_SLASH] = ACTIONS(2696), - [anon_sym_PERCENT] = ACTIONS(2696), - [anon_sym_LT] = ACTIONS(2696), - [anon_sym_GT] = ACTIONS(2696), - [anon_sym_EQ_EQ] = ACTIONS(2696), - [anon_sym_BANG_EQ] = ACTIONS(2696), - [anon_sym_LT_EQ] = ACTIONS(2696), - [anon_sym_GT_EQ] = ACTIONS(2696), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(2694), - [anon_sym_struct] = ACTIONS(2696), - [anon_sym_mut] = ACTIONS(2696), - [anon_sym_PLUS_PLUS] = ACTIONS(2696), - [anon_sym_DASH_DASH] = ACTIONS(2696), - [anon_sym_QMARK] = ACTIONS(2696), - [anon_sym_BANG] = ACTIONS(2696), - [anon_sym_go] = ACTIONS(2696), - [anon_sym_spawn] = ACTIONS(2696), - [anon_sym_json_DOTdecode] = ACTIONS(2696), - [anon_sym_LBRACK2] = ACTIONS(2696), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2696), - [anon_sym_LT_DASH] = ACTIONS(2696), - [anon_sym_LT_LT] = ACTIONS(2696), - [anon_sym_GT_GT] = ACTIONS(2696), - [anon_sym_GT_GT_GT] = ACTIONS(2696), - [anon_sym_AMP_CARET] = ACTIONS(2696), - [anon_sym_AMP_AMP] = ACTIONS(2696), - [anon_sym_PIPE_PIPE] = ACTIONS(2696), - [anon_sym_or] = ACTIONS(2696), - [sym_none] = ACTIONS(2696), - [sym_true] = ACTIONS(2696), - [sym_false] = ACTIONS(2696), - [sym_nil] = ACTIONS(2696), - [anon_sym_QMARK_DOT] = ACTIONS(2696), - [anon_sym_POUND_LBRACK] = ACTIONS(2696), - [anon_sym_if] = ACTIONS(2696), - [anon_sym_DOLLARif] = ACTIONS(2696), - [anon_sym_is] = ACTIONS(2696), - [anon_sym_BANGis] = ACTIONS(2696), - [anon_sym_in] = ACTIONS(2696), - [anon_sym_BANGin] = ACTIONS(2696), - [anon_sym_match] = ACTIONS(2696), - [anon_sym_select] = ACTIONS(2696), - [anon_sym_lock] = ACTIONS(2696), - [anon_sym_rlock] = ACTIONS(2696), - [anon_sym_unsafe] = ACTIONS(2696), - [anon_sym_sql] = ACTIONS(2696), - [sym_int_literal] = ACTIONS(2696), - [sym_float_literal] = ACTIONS(2696), - [sym_rune_literal] = ACTIONS(2696), - [sym_pseudo_compile_time_identifier] = ACTIONS(2696), - [anon_sym_shared] = ACTIONS(2696), - [anon_sym_map_LBRACK] = ACTIONS(2696), - [anon_sym_chan] = ACTIONS(2696), - [anon_sym_thread] = ACTIONS(2696), - [anon_sym_atomic] = ACTIONS(2696), - [sym___double_quote] = ACTIONS(2696), - [sym___single_quote] = ACTIONS(2696), - [sym___c_double_quote] = ACTIONS(2696), - [sym___c_single_quote] = ACTIONS(2696), - [sym___r_double_quote] = ACTIONS(2696), - [sym___r_single_quote] = ACTIONS(2696), - }, - [1236] = { - [sym_line_comment] = STATE(1236), - [sym_block_comment] = STATE(1236), - [sym_identifier] = ACTIONS(2854), - [anon_sym_LF] = ACTIONS(2854), - [anon_sym_CR] = ACTIONS(2854), - [anon_sym_CR_LF] = ACTIONS(2854), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LF] = ACTIONS(2115), + [anon_sym_CR] = ACTIONS(2115), + [anon_sym_CR_LF] = ACTIONS(2115), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_as] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2854), - [anon_sym_RBRACE] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_RPAREN] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_fn] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_SLASH] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_GT] = ACTIONS(2854), - [anon_sym_EQ_EQ] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2854), - [anon_sym_LT_EQ] = ACTIONS(2854), - [anon_sym_GT_EQ] = ACTIONS(2854), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2852), - [anon_sym_struct] = ACTIONS(2854), - [anon_sym_mut] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2854), - [anon_sym_go] = ACTIONS(2854), - [anon_sym_spawn] = ACTIONS(2854), - [anon_sym_json_DOTdecode] = ACTIONS(2854), - [anon_sym_LBRACK2] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2854), - [anon_sym_CARET] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_LT_LT] = ACTIONS(2854), - [anon_sym_GT_GT] = ACTIONS(2854), - [anon_sym_GT_GT_GT] = ACTIONS(2854), - [anon_sym_AMP_CARET] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_or] = ACTIONS(2854), - [sym_none] = ACTIONS(2854), - [sym_true] = ACTIONS(2854), - [sym_false] = ACTIONS(2854), - [sym_nil] = ACTIONS(2854), - [anon_sym_QMARK_DOT] = ACTIONS(2854), - [anon_sym_POUND_LBRACK] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_DOLLARif] = ACTIONS(2854), - [anon_sym_is] = ACTIONS(2854), - [anon_sym_BANGis] = ACTIONS(2854), - [anon_sym_in] = ACTIONS(2854), - [anon_sym_BANGin] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_select] = ACTIONS(2854), - [anon_sym_lock] = ACTIONS(2854), - [anon_sym_rlock] = ACTIONS(2854), - [anon_sym_unsafe] = ACTIONS(2854), - [anon_sym_sql] = ACTIONS(2854), - [sym_int_literal] = ACTIONS(2854), - [sym_float_literal] = ACTIONS(2854), - [sym_rune_literal] = ACTIONS(2854), - [sym_pseudo_compile_time_identifier] = ACTIONS(2854), - [anon_sym_shared] = ACTIONS(2854), - [anon_sym_map_LBRACK] = ACTIONS(2854), - [anon_sym_chan] = ACTIONS(2854), - [anon_sym_thread] = ACTIONS(2854), - [anon_sym_atomic] = ACTIONS(2854), - [sym___double_quote] = ACTIONS(2854), - [sym___single_quote] = ACTIONS(2854), - [sym___c_double_quote] = ACTIONS(2854), - [sym___c_single_quote] = ACTIONS(2854), - [sym___r_double_quote] = ACTIONS(2854), - [sym___r_single_quote] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_DOT] = ACTIONS(2115), + [anon_sym_as] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_COMMA] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_RPAREN] = ACTIONS(2115), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_fn] = ACTIONS(2115), + [anon_sym_PLUS] = ACTIONS(2115), + [anon_sym_DASH] = ACTIONS(2115), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_SLASH] = ACTIONS(2115), + [anon_sym_PERCENT] = ACTIONS(2115), + [anon_sym_LT] = ACTIONS(2115), + [anon_sym_GT] = ACTIONS(2115), + [anon_sym_EQ_EQ] = ACTIONS(2115), + [anon_sym_BANG_EQ] = ACTIONS(2115), + [anon_sym_LT_EQ] = ACTIONS(2115), + [anon_sym_GT_EQ] = ACTIONS(2115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2115), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_struct] = ACTIONS(2115), + [anon_sym_mut] = ACTIONS(2115), + [anon_sym_PLUS_PLUS] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2115), + [anon_sym_QMARK] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_go] = ACTIONS(2115), + [anon_sym_spawn] = ACTIONS(2115), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_CARET] = ACTIONS(2115), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2115), + [anon_sym_LT_LT] = ACTIONS(2115), + [anon_sym_GT_GT] = ACTIONS(2115), + [anon_sym_GT_GT_GT] = ACTIONS(2115), + [anon_sym_AMP_CARET] = ACTIONS(2115), + [anon_sym_AMP_AMP] = ACTIONS(2115), + [anon_sym_PIPE_PIPE] = ACTIONS(2115), + [anon_sym_or] = ACTIONS(2115), + [sym_none] = ACTIONS(2115), + [sym_true] = ACTIONS(2115), + [sym_false] = ACTIONS(2115), + [sym_nil] = ACTIONS(2115), + [anon_sym_QMARK_DOT] = ACTIONS(2115), + [anon_sym_POUND_LBRACK] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2115), + [anon_sym_DOLLARif] = ACTIONS(2115), + [anon_sym_is] = ACTIONS(2115), + [anon_sym_BANGis] = ACTIONS(2115), + [anon_sym_in] = ACTIONS(2115), + [anon_sym_BANGin] = ACTIONS(2115), + [anon_sym_match] = ACTIONS(2115), + [anon_sym_select] = ACTIONS(2115), + [anon_sym_lock] = ACTIONS(2115), + [anon_sym_rlock] = ACTIONS(2115), + [anon_sym_unsafe] = ACTIONS(2115), + [anon_sym_sql] = ACTIONS(2115), + [sym_int_literal] = ACTIONS(2115), + [sym_float_literal] = ACTIONS(2115), + [sym_rune_literal] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2115), + [anon_sym_DQUOTE] = ACTIONS(2115), + [anon_sym_c_SQUOTE] = ACTIONS(2115), + [anon_sym_c_DQUOTE] = ACTIONS(2115), + [anon_sym_r_SQUOTE] = ACTIONS(2115), + [anon_sym_r_DQUOTE] = ACTIONS(2115), + [sym_pseudo_compile_time_identifier] = ACTIONS(2115), + [anon_sym_shared] = ACTIONS(2115), + [anon_sym_map_LBRACK] = ACTIONS(2115), + [anon_sym_chan] = ACTIONS(2115), + [anon_sym_thread] = ACTIONS(2115), + [anon_sym_atomic] = ACTIONS(2115), }, - [1237] = { - [sym_line_comment] = STATE(1237), - [sym_block_comment] = STATE(1237), + [1226] = { + [sym_line_comment] = STATE(1226), + [sym_block_comment] = STATE(1226), [sym_identifier] = ACTIONS(2471), [anon_sym_LF] = ACTIONS(2471), [anon_sym_CR] = ACTIONS(2471), @@ -159628,1100 +158647,2145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [sym___double_quote] = ACTIONS(2471), - [sym___single_quote] = ACTIONS(2471), - [sym___c_double_quote] = ACTIONS(2471), - [sym___c_single_quote] = ACTIONS(2471), - [sym___r_double_quote] = ACTIONS(2471), - [sym___r_single_quote] = ACTIONS(2471), + }, + [1227] = { + [sym_line_comment] = STATE(1227), + [sym_block_comment] = STATE(1227), + [sym_identifier] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_CR] = ACTIONS(2175), + [anon_sym_CR_LF] = ACTIONS(2175), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_AMP_CARET] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_POUND_LBRACK] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_c_SQUOTE] = ACTIONS(2175), + [anon_sym_c_DQUOTE] = ACTIONS(2175), + [anon_sym_r_SQUOTE] = ACTIONS(2175), + [anon_sym_r_DQUOTE] = ACTIONS(2175), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2175), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), + }, + [1228] = { + [sym_line_comment] = STATE(1228), + [sym_block_comment] = STATE(1228), + [sym_identifier] = ACTIONS(2887), + [anon_sym_LF] = ACTIONS(2887), + [anon_sym_CR] = ACTIONS(2887), + [anon_sym_CR_LF] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2887), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_as] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_COMMA] = ACTIONS(2887), + [anon_sym_RBRACE] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_RPAREN] = ACTIONS(2887), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_fn] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2887), + [anon_sym_BANG_EQ] = ACTIONS(2887), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_mut] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2887), + [anon_sym_QMARK] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2887), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2887), + [anon_sym_json_DOTdecode] = ACTIONS(2887), + [anon_sym_LBRACK2] = ACTIONS(2887), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_CARET] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_GT_GT_GT] = ACTIONS(2887), + [anon_sym_AMP_CARET] = ACTIONS(2887), + [anon_sym_AMP_AMP] = ACTIONS(2887), + [anon_sym_PIPE_PIPE] = ACTIONS(2887), + [anon_sym_or] = ACTIONS(2887), + [sym_none] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_nil] = ACTIONS(2887), + [anon_sym_QMARK_DOT] = ACTIONS(2887), + [anon_sym_POUND_LBRACK] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_DOLLARif] = ACTIONS(2887), + [anon_sym_is] = ACTIONS(2887), + [anon_sym_BANGis] = ACTIONS(2887), + [anon_sym_in] = ACTIONS(2887), + [anon_sym_BANGin] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2887), + [anon_sym_select] = ACTIONS(2887), + [anon_sym_lock] = ACTIONS(2887), + [anon_sym_rlock] = ACTIONS(2887), + [anon_sym_unsafe] = ACTIONS(2887), + [anon_sym_sql] = ACTIONS(2887), + [sym_int_literal] = ACTIONS(2887), + [sym_float_literal] = ACTIONS(2887), + [sym_rune_literal] = ACTIONS(2887), + [anon_sym_SQUOTE] = ACTIONS(2887), + [anon_sym_DQUOTE] = ACTIONS(2887), + [anon_sym_c_SQUOTE] = ACTIONS(2887), + [anon_sym_c_DQUOTE] = ACTIONS(2887), + [anon_sym_r_SQUOTE] = ACTIONS(2887), + [anon_sym_r_DQUOTE] = ACTIONS(2887), + [sym_pseudo_compile_time_identifier] = ACTIONS(2887), + [anon_sym_shared] = ACTIONS(2887), + [anon_sym_map_LBRACK] = ACTIONS(2887), + [anon_sym_chan] = ACTIONS(2887), + [anon_sym_thread] = ACTIONS(2887), + [anon_sym_atomic] = ACTIONS(2887), + }, + [1229] = { + [sym_line_comment] = STATE(1229), + [sym_block_comment] = STATE(1229), + [sym_identifier] = ACTIONS(3025), + [anon_sym_LF] = ACTIONS(3025), + [anon_sym_CR] = ACTIONS(3025), + [anon_sym_CR_LF] = ACTIONS(3025), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3025), + [anon_sym_DOT] = ACTIONS(3025), + [anon_sym_as] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3025), + [anon_sym_COMMA] = ACTIONS(3025), + [anon_sym_RBRACE] = ACTIONS(3025), + [anon_sym_LPAREN] = ACTIONS(3025), + [anon_sym_RPAREN] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3025), + [anon_sym_fn] = ACTIONS(3025), + [anon_sym_PLUS] = ACTIONS(3025), + [anon_sym_DASH] = ACTIONS(3025), + [anon_sym_STAR] = ACTIONS(3025), + [anon_sym_SLASH] = ACTIONS(3025), + [anon_sym_PERCENT] = ACTIONS(3025), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_EQ_EQ] = ACTIONS(3025), + [anon_sym_BANG_EQ] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3025), + [anon_sym_GT_EQ] = ACTIONS(3025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_mut] = ACTIONS(3025), + [anon_sym_PLUS_PLUS] = ACTIONS(3025), + [anon_sym_DASH_DASH] = ACTIONS(3025), + [anon_sym_QMARK] = ACTIONS(3025), + [anon_sym_BANG] = ACTIONS(3025), + [anon_sym_go] = ACTIONS(3025), + [anon_sym_spawn] = ACTIONS(3025), + [anon_sym_json_DOTdecode] = ACTIONS(3025), + [anon_sym_LBRACK2] = ACTIONS(3025), + [anon_sym_TILDE] = ACTIONS(3025), + [anon_sym_CARET] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_LT_DASH] = ACTIONS(3025), + [anon_sym_LT_LT] = ACTIONS(3025), + [anon_sym_GT_GT] = ACTIONS(3025), + [anon_sym_GT_GT_GT] = ACTIONS(3025), + [anon_sym_AMP_CARET] = ACTIONS(3025), + [anon_sym_AMP_AMP] = ACTIONS(3025), + [anon_sym_PIPE_PIPE] = ACTIONS(3025), + [anon_sym_or] = ACTIONS(3025), + [sym_none] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [sym_nil] = ACTIONS(3025), + [anon_sym_QMARK_DOT] = ACTIONS(3025), + [anon_sym_POUND_LBRACK] = ACTIONS(3025), + [anon_sym_if] = ACTIONS(3025), + [anon_sym_DOLLARif] = ACTIONS(3025), + [anon_sym_is] = ACTIONS(3025), + [anon_sym_BANGis] = ACTIONS(3025), + [anon_sym_in] = ACTIONS(3025), + [anon_sym_BANGin] = ACTIONS(3025), + [anon_sym_match] = ACTIONS(3025), + [anon_sym_select] = ACTIONS(3025), + [anon_sym_lock] = ACTIONS(3025), + [anon_sym_rlock] = ACTIONS(3025), + [anon_sym_unsafe] = ACTIONS(3025), + [anon_sym_sql] = ACTIONS(3025), + [sym_int_literal] = ACTIONS(3025), + [sym_float_literal] = ACTIONS(3025), + [sym_rune_literal] = ACTIONS(3025), + [anon_sym_SQUOTE] = ACTIONS(3025), + [anon_sym_DQUOTE] = ACTIONS(3025), + [anon_sym_c_SQUOTE] = ACTIONS(3025), + [anon_sym_c_DQUOTE] = ACTIONS(3025), + [anon_sym_r_SQUOTE] = ACTIONS(3025), + [anon_sym_r_DQUOTE] = ACTIONS(3025), + [sym_pseudo_compile_time_identifier] = ACTIONS(3025), + [anon_sym_shared] = ACTIONS(3025), + [anon_sym_map_LBRACK] = ACTIONS(3025), + [anon_sym_chan] = ACTIONS(3025), + [anon_sym_thread] = ACTIONS(3025), + [anon_sym_atomic] = ACTIONS(3025), + }, + [1230] = { + [sym_line_comment] = STATE(1230), + [sym_block_comment] = STATE(1230), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LF] = ACTIONS(3029), + [anon_sym_CR] = ACTIONS(3029), + [anon_sym_CR_LF] = ACTIONS(3029), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3029), + [anon_sym_as] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_RBRACE] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym_RPAREN] = ACTIONS(3029), + [anon_sym_PIPE] = ACTIONS(3029), + [anon_sym_fn] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_SLASH] = ACTIONS(3029), + [anon_sym_PERCENT] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_GT] = ACTIONS(3029), + [anon_sym_EQ_EQ] = ACTIONS(3029), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_LT_EQ] = ACTIONS(3029), + [anon_sym_GT_EQ] = ACTIONS(3029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3029), + [anon_sym_mut] = ACTIONS(3029), + [anon_sym_PLUS_PLUS] = ACTIONS(3029), + [anon_sym_DASH_DASH] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_go] = ACTIONS(3029), + [anon_sym_spawn] = ACTIONS(3029), + [anon_sym_json_DOTdecode] = ACTIONS(3029), + [anon_sym_LBRACK2] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_LT_DASH] = ACTIONS(3029), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_GT_GT_GT] = ACTIONS(3029), + [anon_sym_AMP_CARET] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_PIPE_PIPE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3029), + [sym_none] = ACTIONS(3029), + [sym_true] = ACTIONS(3029), + [sym_false] = ACTIONS(3029), + [sym_nil] = ACTIONS(3029), + [anon_sym_QMARK_DOT] = ACTIONS(3029), + [anon_sym_POUND_LBRACK] = ACTIONS(3029), + [anon_sym_if] = ACTIONS(3029), + [anon_sym_DOLLARif] = ACTIONS(3029), + [anon_sym_is] = ACTIONS(3029), + [anon_sym_BANGis] = ACTIONS(3029), + [anon_sym_in] = ACTIONS(3029), + [anon_sym_BANGin] = ACTIONS(3029), + [anon_sym_match] = ACTIONS(3029), + [anon_sym_select] = ACTIONS(3029), + [anon_sym_lock] = ACTIONS(3029), + [anon_sym_rlock] = ACTIONS(3029), + [anon_sym_unsafe] = ACTIONS(3029), + [anon_sym_sql] = ACTIONS(3029), + [sym_int_literal] = ACTIONS(3029), + [sym_float_literal] = ACTIONS(3029), + [sym_rune_literal] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3029), + [anon_sym_DQUOTE] = ACTIONS(3029), + [anon_sym_c_SQUOTE] = ACTIONS(3029), + [anon_sym_c_DQUOTE] = ACTIONS(3029), + [anon_sym_r_SQUOTE] = ACTIONS(3029), + [anon_sym_r_DQUOTE] = ACTIONS(3029), + [sym_pseudo_compile_time_identifier] = ACTIONS(3029), + [anon_sym_shared] = ACTIONS(3029), + [anon_sym_map_LBRACK] = ACTIONS(3029), + [anon_sym_chan] = ACTIONS(3029), + [anon_sym_thread] = ACTIONS(3029), + [anon_sym_atomic] = ACTIONS(3029), + }, + [1231] = { + [sym_line_comment] = STATE(1231), + [sym_block_comment] = STATE(1231), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LF] = ACTIONS(3046), + [anon_sym_CR] = ACTIONS(3046), + [anon_sym_CR_LF] = ACTIONS(3046), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_as] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_RPAREN] = ACTIONS(3046), + [anon_sym_PIPE] = ACTIONS(3046), + [anon_sym_fn] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_SLASH] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(3046), + [anon_sym_GT] = ACTIONS(3046), + [anon_sym_EQ_EQ] = ACTIONS(3046), + [anon_sym_BANG_EQ] = ACTIONS(3046), + [anon_sym_LT_EQ] = ACTIONS(3046), + [anon_sym_GT_EQ] = ACTIONS(3046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_mut] = ACTIONS(3046), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_go] = ACTIONS(3046), + [anon_sym_spawn] = ACTIONS(3046), + [anon_sym_json_DOTdecode] = ACTIONS(3046), + [anon_sym_LBRACK2] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_CARET] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_LT_DASH] = ACTIONS(3046), + [anon_sym_LT_LT] = ACTIONS(3046), + [anon_sym_GT_GT] = ACTIONS(3046), + [anon_sym_GT_GT_GT] = ACTIONS(3046), + [anon_sym_AMP_CARET] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_PIPE_PIPE] = ACTIONS(3046), + [anon_sym_or] = ACTIONS(3046), + [sym_none] = ACTIONS(3046), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_nil] = ACTIONS(3046), + [anon_sym_QMARK_DOT] = ACTIONS(3046), + [anon_sym_POUND_LBRACK] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_DOLLARif] = ACTIONS(3046), + [anon_sym_is] = ACTIONS(3046), + [anon_sym_BANGis] = ACTIONS(3046), + [anon_sym_in] = ACTIONS(3046), + [anon_sym_BANGin] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_select] = ACTIONS(3046), + [anon_sym_lock] = ACTIONS(3046), + [anon_sym_rlock] = ACTIONS(3046), + [anon_sym_unsafe] = ACTIONS(3046), + [anon_sym_sql] = ACTIONS(3046), + [sym_int_literal] = ACTIONS(3046), + [sym_float_literal] = ACTIONS(3046), + [sym_rune_literal] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_c_SQUOTE] = ACTIONS(3046), + [anon_sym_c_DQUOTE] = ACTIONS(3046), + [anon_sym_r_SQUOTE] = ACTIONS(3046), + [anon_sym_r_DQUOTE] = ACTIONS(3046), + [sym_pseudo_compile_time_identifier] = ACTIONS(3046), + [anon_sym_shared] = ACTIONS(3046), + [anon_sym_map_LBRACK] = ACTIONS(3046), + [anon_sym_chan] = ACTIONS(3046), + [anon_sym_thread] = ACTIONS(3046), + [anon_sym_atomic] = ACTIONS(3046), + }, + [1232] = { + [sym_line_comment] = STATE(1232), + [sym_block_comment] = STATE(1232), + [sym_identifier] = ACTIONS(2151), + [anon_sym_LF] = ACTIONS(2151), + [anon_sym_CR] = ACTIONS(2151), + [anon_sym_CR_LF] = ACTIONS(2151), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_DOT] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_COMMA] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_RPAREN] = ACTIONS(2151), + [anon_sym_PIPE] = ACTIONS(2151), + [anon_sym_fn] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_PERCENT] = ACTIONS(2151), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_GT] = ACTIONS(2151), + [anon_sym_EQ_EQ] = ACTIONS(2151), + [anon_sym_BANG_EQ] = ACTIONS(2151), + [anon_sym_LT_EQ] = ACTIONS(2151), + [anon_sym_GT_EQ] = ACTIONS(2151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_struct] = ACTIONS(2151), + [anon_sym_mut] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(2151), + [anon_sym_DASH_DASH] = ACTIONS(2151), + [anon_sym_QMARK] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_go] = ACTIONS(2151), + [anon_sym_spawn] = ACTIONS(2151), + [anon_sym_json_DOTdecode] = ACTIONS(2151), + [anon_sym_LBRACK2] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_LT_DASH] = ACTIONS(2151), + [anon_sym_LT_LT] = ACTIONS(2151), + [anon_sym_GT_GT] = ACTIONS(2151), + [anon_sym_GT_GT_GT] = ACTIONS(2151), + [anon_sym_AMP_CARET] = ACTIONS(2151), + [anon_sym_AMP_AMP] = ACTIONS(2151), + [anon_sym_PIPE_PIPE] = ACTIONS(2151), + [anon_sym_or] = ACTIONS(2151), + [sym_none] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_nil] = ACTIONS(2151), + [anon_sym_QMARK_DOT] = ACTIONS(2151), + [anon_sym_POUND_LBRACK] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_DOLLARif] = ACTIONS(2151), + [anon_sym_is] = ACTIONS(2151), + [anon_sym_BANGis] = ACTIONS(2151), + [anon_sym_in] = ACTIONS(2151), + [anon_sym_BANGin] = ACTIONS(2151), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_select] = ACTIONS(2151), + [anon_sym_lock] = ACTIONS(2151), + [anon_sym_rlock] = ACTIONS(2151), + [anon_sym_unsafe] = ACTIONS(2151), + [anon_sym_sql] = ACTIONS(2151), + [sym_int_literal] = ACTIONS(2151), + [sym_float_literal] = ACTIONS(2151), + [sym_rune_literal] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2151), + [anon_sym_c_SQUOTE] = ACTIONS(2151), + [anon_sym_c_DQUOTE] = ACTIONS(2151), + [anon_sym_r_SQUOTE] = ACTIONS(2151), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(2151), + [anon_sym_shared] = ACTIONS(2151), + [anon_sym_map_LBRACK] = ACTIONS(2151), + [anon_sym_chan] = ACTIONS(2151), + [anon_sym_thread] = ACTIONS(2151), + [anon_sym_atomic] = ACTIONS(2151), + }, + [1233] = { + [sym_line_comment] = STATE(1233), + [sym_block_comment] = STATE(1233), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2833), + [anon_sym_CR] = ACTIONS(2833), + [anon_sym_CR_LF] = ACTIONS(2833), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_COMMA] = ACTIONS(2833), + [anon_sym_RBRACE] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_RPAREN] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2833), + [anon_sym_BANG_EQ] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2833), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2833), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2833), + [anon_sym_AMP_CARET] = ACTIONS(2833), + [anon_sym_AMP_AMP] = ACTIONS(2833), + [anon_sym_PIPE_PIPE] = ACTIONS(2833), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2833), + [anon_sym_POUND_LBRACK] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2833), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), + [sym_rune_literal] = ACTIONS(2833), + [anon_sym_SQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_c_SQUOTE] = ACTIONS(2833), + [anon_sym_c_DQUOTE] = ACTIONS(2833), + [anon_sym_r_SQUOTE] = ACTIONS(2833), + [anon_sym_r_DQUOTE] = ACTIONS(2833), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2833), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), + }, + [1234] = { + [sym_line_comment] = STATE(1234), + [sym_block_comment] = STATE(1234), + [sym_identifier] = ACTIONS(2707), + [anon_sym_LF] = ACTIONS(2707), + [anon_sym_CR] = ACTIONS(2707), + [anon_sym_CR_LF] = ACTIONS(2707), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_DOT] = ACTIONS(2707), + [anon_sym_as] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_COMMA] = ACTIONS(2707), + [anon_sym_RBRACE] = ACTIONS(2707), + [anon_sym_LPAREN] = ACTIONS(2707), + [anon_sym_RPAREN] = ACTIONS(2707), + [anon_sym_PIPE] = ACTIONS(2707), + [anon_sym_fn] = ACTIONS(2707), + [anon_sym_PLUS] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2707), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_SLASH] = ACTIONS(2707), + [anon_sym_PERCENT] = ACTIONS(2707), + [anon_sym_LT] = ACTIONS(2707), + [anon_sym_GT] = ACTIONS(2707), + [anon_sym_EQ_EQ] = ACTIONS(2707), + [anon_sym_BANG_EQ] = ACTIONS(2707), + [anon_sym_LT_EQ] = ACTIONS(2707), + [anon_sym_GT_EQ] = ACTIONS(2707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2707), + [anon_sym_mut] = ACTIONS(2707), + [anon_sym_PLUS_PLUS] = ACTIONS(2707), + [anon_sym_DASH_DASH] = ACTIONS(2707), + [anon_sym_QMARK] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_go] = ACTIONS(2707), + [anon_sym_spawn] = ACTIONS(2707), + [anon_sym_json_DOTdecode] = ACTIONS(2707), + [anon_sym_LBRACK2] = ACTIONS(2707), + [anon_sym_TILDE] = ACTIONS(2707), + [anon_sym_CARET] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2707), + [anon_sym_LT_DASH] = ACTIONS(2707), + [anon_sym_LT_LT] = ACTIONS(2707), + [anon_sym_GT_GT] = ACTIONS(2707), + [anon_sym_GT_GT_GT] = ACTIONS(2707), + [anon_sym_AMP_CARET] = ACTIONS(2707), + [anon_sym_AMP_AMP] = ACTIONS(2707), + [anon_sym_PIPE_PIPE] = ACTIONS(2707), + [anon_sym_or] = ACTIONS(2707), + [sym_none] = ACTIONS(2707), + [sym_true] = ACTIONS(2707), + [sym_false] = ACTIONS(2707), + [sym_nil] = ACTIONS(2707), + [anon_sym_QMARK_DOT] = ACTIONS(2707), + [anon_sym_POUND_LBRACK] = ACTIONS(2707), + [anon_sym_if] = ACTIONS(2707), + [anon_sym_DOLLARif] = ACTIONS(2707), + [anon_sym_is] = ACTIONS(2707), + [anon_sym_BANGis] = ACTIONS(2707), + [anon_sym_in] = ACTIONS(2707), + [anon_sym_BANGin] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(2707), + [anon_sym_select] = ACTIONS(2707), + [anon_sym_lock] = ACTIONS(2707), + [anon_sym_rlock] = ACTIONS(2707), + [anon_sym_unsafe] = ACTIONS(2707), + [anon_sym_sql] = ACTIONS(2707), + [sym_int_literal] = ACTIONS(2707), + [sym_float_literal] = ACTIONS(2707), + [sym_rune_literal] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2707), + [anon_sym_c_SQUOTE] = ACTIONS(2707), + [anon_sym_c_DQUOTE] = ACTIONS(2707), + [anon_sym_r_SQUOTE] = ACTIONS(2707), + [anon_sym_r_DQUOTE] = ACTIONS(2707), + [sym_pseudo_compile_time_identifier] = ACTIONS(2707), + [anon_sym_shared] = ACTIONS(2707), + [anon_sym_map_LBRACK] = ACTIONS(2707), + [anon_sym_chan] = ACTIONS(2707), + [anon_sym_thread] = ACTIONS(2707), + [anon_sym_atomic] = ACTIONS(2707), + }, + [1235] = { + [sym_line_comment] = STATE(1235), + [sym_block_comment] = STATE(1235), + [sym_identifier] = ACTIONS(2475), + [anon_sym_LF] = ACTIONS(2475), + [anon_sym_CR] = ACTIONS(2475), + [anon_sym_CR_LF] = ACTIONS(2475), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2475), + [anon_sym_DOT] = ACTIONS(2475), + [anon_sym_as] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_COMMA] = ACTIONS(2475), + [anon_sym_RBRACE] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_RPAREN] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_SLASH] = ACTIONS(2475), + [anon_sym_PERCENT] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_EQ_EQ] = ACTIONS(2475), + [anon_sym_BANG_EQ] = ACTIONS(2475), + [anon_sym_LT_EQ] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_mut] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(2475), + [anon_sym_DASH_DASH] = ACTIONS(2475), + [anon_sym_QMARK] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_go] = ACTIONS(2475), + [anon_sym_spawn] = ACTIONS(2475), + [anon_sym_json_DOTdecode] = ACTIONS(2475), + [anon_sym_LBRACK2] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_LT_DASH] = ACTIONS(2475), + [anon_sym_LT_LT] = ACTIONS(2475), + [anon_sym_GT_GT] = ACTIONS(2475), + [anon_sym_GT_GT_GT] = ACTIONS(2475), + [anon_sym_AMP_CARET] = ACTIONS(2475), + [anon_sym_AMP_AMP] = ACTIONS(2475), + [anon_sym_PIPE_PIPE] = ACTIONS(2475), + [anon_sym_or] = ACTIONS(2475), + [sym_none] = ACTIONS(2475), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_nil] = ACTIONS(2475), + [anon_sym_QMARK_DOT] = ACTIONS(2475), + [anon_sym_POUND_LBRACK] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_DOLLARif] = ACTIONS(2475), + [anon_sym_is] = ACTIONS(2475), + [anon_sym_BANGis] = ACTIONS(2475), + [anon_sym_in] = ACTIONS(2475), + [anon_sym_BANGin] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_lock] = ACTIONS(2475), + [anon_sym_rlock] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_sql] = ACTIONS(2475), + [sym_int_literal] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2475), + [sym_rune_literal] = ACTIONS(2475), + [anon_sym_SQUOTE] = ACTIONS(2475), + [anon_sym_DQUOTE] = ACTIONS(2475), + [anon_sym_c_SQUOTE] = ACTIONS(2475), + [anon_sym_c_DQUOTE] = ACTIONS(2475), + [anon_sym_r_SQUOTE] = ACTIONS(2475), + [anon_sym_r_DQUOTE] = ACTIONS(2475), + [sym_pseudo_compile_time_identifier] = ACTIONS(2475), + [anon_sym_shared] = ACTIONS(2475), + [anon_sym_map_LBRACK] = ACTIONS(2475), + [anon_sym_chan] = ACTIONS(2475), + [anon_sym_thread] = ACTIONS(2475), + [anon_sym_atomic] = ACTIONS(2475), + }, + [1236] = { + [sym_line_comment] = STATE(1236), + [sym_block_comment] = STATE(1236), + [sym_identifier] = ACTIONS(2163), + [anon_sym_LF] = ACTIONS(2163), + [anon_sym_CR] = ACTIONS(2163), + [anon_sym_CR_LF] = ACTIONS(2163), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_DOT] = ACTIONS(2163), + [anon_sym_as] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_fn] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2163), + [anon_sym_PERCENT] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2163), + [anon_sym_GT] = ACTIONS(2163), + [anon_sym_EQ_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ] = ACTIONS(2163), + [anon_sym_LT_EQ] = ACTIONS(2163), + [anon_sym_GT_EQ] = ACTIONS(2163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2163), + [anon_sym_mut] = ACTIONS(2163), + [anon_sym_PLUS_PLUS] = ACTIONS(2163), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [anon_sym_QMARK] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_go] = ACTIONS(2163), + [anon_sym_spawn] = ACTIONS(2163), + [anon_sym_json_DOTdecode] = ACTIONS(2163), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_CARET] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2163), + [anon_sym_LT_DASH] = ACTIONS(2163), + [anon_sym_LT_LT] = ACTIONS(2163), + [anon_sym_GT_GT] = ACTIONS(2163), + [anon_sym_GT_GT_GT] = ACTIONS(2163), + [anon_sym_AMP_CARET] = ACTIONS(2163), + [anon_sym_AMP_AMP] = ACTIONS(2163), + [anon_sym_PIPE_PIPE] = ACTIONS(2163), + [anon_sym_or] = ACTIONS(2163), + [sym_none] = ACTIONS(2163), + [sym_true] = ACTIONS(2163), + [sym_false] = ACTIONS(2163), + [sym_nil] = ACTIONS(2163), + [anon_sym_QMARK_DOT] = ACTIONS(2163), + [anon_sym_POUND_LBRACK] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_DOLLARif] = ACTIONS(2163), + [anon_sym_is] = ACTIONS(2163), + [anon_sym_BANGis] = ACTIONS(2163), + [anon_sym_in] = ACTIONS(2163), + [anon_sym_BANGin] = ACTIONS(2163), + [anon_sym_match] = ACTIONS(2163), + [anon_sym_select] = ACTIONS(2163), + [anon_sym_lock] = ACTIONS(2163), + [anon_sym_rlock] = ACTIONS(2163), + [anon_sym_unsafe] = ACTIONS(2163), + [anon_sym_sql] = ACTIONS(2163), + [sym_int_literal] = ACTIONS(2163), + [sym_float_literal] = ACTIONS(2163), + [sym_rune_literal] = ACTIONS(2163), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [anon_sym_c_SQUOTE] = ACTIONS(2163), + [anon_sym_c_DQUOTE] = ACTIONS(2163), + [anon_sym_r_SQUOTE] = ACTIONS(2163), + [anon_sym_r_DQUOTE] = ACTIONS(2163), + [sym_pseudo_compile_time_identifier] = ACTIONS(2163), + [anon_sym_shared] = ACTIONS(2163), + [anon_sym_map_LBRACK] = ACTIONS(2163), + [anon_sym_chan] = ACTIONS(2163), + [anon_sym_thread] = ACTIONS(2163), + [anon_sym_atomic] = ACTIONS(2163), + }, + [1237] = { + [sym_line_comment] = STATE(1237), + [sym_block_comment] = STATE(1237), + [sym_identifier] = ACTIONS(2749), + [anon_sym_LF] = ACTIONS(2749), + [anon_sym_CR] = ACTIONS(2749), + [anon_sym_CR_LF] = ACTIONS(2749), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_DOT] = ACTIONS(2749), + [anon_sym_as] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_COMMA] = ACTIONS(2749), + [anon_sym_RBRACE] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(2749), + [anon_sym_RPAREN] = ACTIONS(2749), + [anon_sym_PIPE] = ACTIONS(2749), + [anon_sym_fn] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_SLASH] = ACTIONS(2749), + [anon_sym_PERCENT] = ACTIONS(2749), + [anon_sym_LT] = ACTIONS(2749), + [anon_sym_GT] = ACTIONS(2749), + [anon_sym_EQ_EQ] = ACTIONS(2749), + [anon_sym_BANG_EQ] = ACTIONS(2749), + [anon_sym_LT_EQ] = ACTIONS(2749), + [anon_sym_GT_EQ] = ACTIONS(2749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2749), + [anon_sym_mut] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_QMARK] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_go] = ACTIONS(2749), + [anon_sym_spawn] = ACTIONS(2749), + [anon_sym_json_DOTdecode] = ACTIONS(2749), + [anon_sym_LBRACK2] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_CARET] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_LT_DASH] = ACTIONS(2749), + [anon_sym_LT_LT] = ACTIONS(2749), + [anon_sym_GT_GT] = ACTIONS(2749), + [anon_sym_GT_GT_GT] = ACTIONS(2749), + [anon_sym_AMP_CARET] = ACTIONS(2749), + [anon_sym_AMP_AMP] = ACTIONS(2749), + [anon_sym_PIPE_PIPE] = ACTIONS(2749), + [anon_sym_or] = ACTIONS(2749), + [sym_none] = ACTIONS(2749), + [sym_true] = ACTIONS(2749), + [sym_false] = ACTIONS(2749), + [sym_nil] = ACTIONS(2749), + [anon_sym_QMARK_DOT] = ACTIONS(2749), + [anon_sym_POUND_LBRACK] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_DOLLARif] = ACTIONS(2749), + [anon_sym_is] = ACTIONS(2749), + [anon_sym_BANGis] = ACTIONS(2749), + [anon_sym_in] = ACTIONS(2749), + [anon_sym_BANGin] = ACTIONS(2749), + [anon_sym_match] = ACTIONS(2749), + [anon_sym_select] = ACTIONS(2749), + [anon_sym_lock] = ACTIONS(2749), + [anon_sym_rlock] = ACTIONS(2749), + [anon_sym_unsafe] = ACTIONS(2749), + [anon_sym_sql] = ACTIONS(2749), + [sym_int_literal] = ACTIONS(2749), + [sym_float_literal] = ACTIONS(2749), + [sym_rune_literal] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [anon_sym_c_SQUOTE] = ACTIONS(2749), + [anon_sym_c_DQUOTE] = ACTIONS(2749), + [anon_sym_r_SQUOTE] = ACTIONS(2749), + [anon_sym_r_DQUOTE] = ACTIONS(2749), + [sym_pseudo_compile_time_identifier] = ACTIONS(2749), + [anon_sym_shared] = ACTIONS(2749), + [anon_sym_map_LBRACK] = ACTIONS(2749), + [anon_sym_chan] = ACTIONS(2749), + [anon_sym_thread] = ACTIONS(2749), + [anon_sym_atomic] = ACTIONS(2749), }, [1238] = { [sym_line_comment] = STATE(1238), [sym_block_comment] = STATE(1238), - [sym_identifier] = ACTIONS(2858), - [anon_sym_LF] = ACTIONS(2858), - [anon_sym_CR] = ACTIONS(2858), - [anon_sym_CR_LF] = ACTIONS(2858), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LF] = ACTIONS(2547), + [anon_sym_CR] = ACTIONS(2547), + [anon_sym_CR_LF] = ACTIONS(2547), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2858), - [anon_sym_RBRACE] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_RPAREN] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(2858), - [anon_sym_fn] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2858), - [anon_sym_GT] = ACTIONS(2858), - [anon_sym_EQ_EQ] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2858), - [anon_sym_LT_EQ] = ACTIONS(2858), - [anon_sym_GT_EQ] = ACTIONS(2858), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2856), - [anon_sym_struct] = ACTIONS(2858), - [anon_sym_mut] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_go] = ACTIONS(2858), - [anon_sym_spawn] = ACTIONS(2858), - [anon_sym_json_DOTdecode] = ACTIONS(2858), - [anon_sym_LBRACK2] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_CARET] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_LT_LT] = ACTIONS(2858), - [anon_sym_GT_GT] = ACTIONS(2858), - [anon_sym_GT_GT_GT] = ACTIONS(2858), - [anon_sym_AMP_CARET] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_or] = ACTIONS(2858), - [sym_none] = ACTIONS(2858), - [sym_true] = ACTIONS(2858), - [sym_false] = ACTIONS(2858), - [sym_nil] = ACTIONS(2858), - [anon_sym_QMARK_DOT] = ACTIONS(2858), - [anon_sym_POUND_LBRACK] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_DOLLARif] = ACTIONS(2858), - [anon_sym_is] = ACTIONS(2858), - [anon_sym_BANGis] = ACTIONS(2858), - [anon_sym_in] = ACTIONS(2858), - [anon_sym_BANGin] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_select] = ACTIONS(2858), - [anon_sym_lock] = ACTIONS(2858), - [anon_sym_rlock] = ACTIONS(2858), - [anon_sym_unsafe] = ACTIONS(2858), - [anon_sym_sql] = ACTIONS(2858), - [sym_int_literal] = ACTIONS(2858), - [sym_float_literal] = ACTIONS(2858), - [sym_rune_literal] = ACTIONS(2858), - [sym_pseudo_compile_time_identifier] = ACTIONS(2858), - [anon_sym_shared] = ACTIONS(2858), - [anon_sym_map_LBRACK] = ACTIONS(2858), - [anon_sym_chan] = ACTIONS(2858), - [anon_sym_thread] = ACTIONS(2858), - [anon_sym_atomic] = ACTIONS(2858), - [sym___double_quote] = ACTIONS(2858), - [sym___single_quote] = ACTIONS(2858), - [sym___c_double_quote] = ACTIONS(2858), - [sym___c_single_quote] = ACTIONS(2858), - [sym___r_double_quote] = ACTIONS(2858), - [sym___r_single_quote] = ACTIONS(2858), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_DOT] = ACTIONS(2547), + [anon_sym_as] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_COMMA] = ACTIONS(2547), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2547), + [anon_sym_RPAREN] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_fn] = ACTIONS(2547), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_SLASH] = ACTIONS(2547), + [anon_sym_PERCENT] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), + [anon_sym_EQ_EQ] = ACTIONS(2547), + [anon_sym_BANG_EQ] = ACTIONS(2547), + [anon_sym_LT_EQ] = ACTIONS(2547), + [anon_sym_GT_EQ] = ACTIONS(2547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_struct] = ACTIONS(2547), + [anon_sym_mut] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_QMARK] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_go] = ACTIONS(2547), + [anon_sym_spawn] = ACTIONS(2547), + [anon_sym_json_DOTdecode] = ACTIONS(2547), + [anon_sym_LBRACK2] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(2547), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_LT_DASH] = ACTIONS(2547), + [anon_sym_LT_LT] = ACTIONS(2547), + [anon_sym_GT_GT] = ACTIONS(2547), + [anon_sym_GT_GT_GT] = ACTIONS(2547), + [anon_sym_AMP_CARET] = ACTIONS(2547), + [anon_sym_AMP_AMP] = ACTIONS(2547), + [anon_sym_PIPE_PIPE] = ACTIONS(2547), + [anon_sym_or] = ACTIONS(2547), + [sym_none] = ACTIONS(2547), + [sym_true] = ACTIONS(2547), + [sym_false] = ACTIONS(2547), + [sym_nil] = ACTIONS(2547), + [anon_sym_QMARK_DOT] = ACTIONS(2547), + [anon_sym_POUND_LBRACK] = ACTIONS(2547), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_DOLLARif] = ACTIONS(2547), + [anon_sym_is] = ACTIONS(2547), + [anon_sym_BANGis] = ACTIONS(2547), + [anon_sym_in] = ACTIONS(2547), + [anon_sym_BANGin] = ACTIONS(2547), + [anon_sym_match] = ACTIONS(2547), + [anon_sym_select] = ACTIONS(2547), + [anon_sym_lock] = ACTIONS(2547), + [anon_sym_rlock] = ACTIONS(2547), + [anon_sym_unsafe] = ACTIONS(2547), + [anon_sym_sql] = ACTIONS(2547), + [sym_int_literal] = ACTIONS(2547), + [sym_float_literal] = ACTIONS(2547), + [sym_rune_literal] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2547), + [anon_sym_c_SQUOTE] = ACTIONS(2547), + [anon_sym_c_DQUOTE] = ACTIONS(2547), + [anon_sym_r_SQUOTE] = ACTIONS(2547), + [anon_sym_r_DQUOTE] = ACTIONS(2547), + [sym_pseudo_compile_time_identifier] = ACTIONS(2547), + [anon_sym_shared] = ACTIONS(2547), + [anon_sym_map_LBRACK] = ACTIONS(2547), + [anon_sym_chan] = ACTIONS(2547), + [anon_sym_thread] = ACTIONS(2547), + [anon_sym_atomic] = ACTIONS(2547), }, [1239] = { [sym_line_comment] = STATE(1239), [sym_block_comment] = STATE(1239), - [sym_identifier] = ACTIONS(2728), - [anon_sym_LF] = ACTIONS(2728), - [anon_sym_CR] = ACTIONS(2728), - [anon_sym_CR_LF] = ACTIONS(2728), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LF] = ACTIONS(2805), + [anon_sym_CR] = ACTIONS(2805), + [anon_sym_CR_LF] = ACTIONS(2805), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_DOT] = ACTIONS(2728), - [anon_sym_as] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_COMMA] = ACTIONS(2728), - [anon_sym_RBRACE] = ACTIONS(2728), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_fn] = ACTIONS(2728), - [anon_sym_PLUS] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2728), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2728), - [anon_sym_PERCENT] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2728), - [anon_sym_GT] = ACTIONS(2728), - [anon_sym_EQ_EQ] = ACTIONS(2728), - [anon_sym_BANG_EQ] = ACTIONS(2728), - [anon_sym_LT_EQ] = ACTIONS(2728), - [anon_sym_GT_EQ] = ACTIONS(2728), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_struct] = ACTIONS(2728), - [anon_sym_mut] = ACTIONS(2728), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_QMARK] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2728), - [anon_sym_go] = ACTIONS(2728), - [anon_sym_spawn] = ACTIONS(2728), - [anon_sym_json_DOTdecode] = ACTIONS(2728), - [anon_sym_LBRACK2] = ACTIONS(2728), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_CARET] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2728), - [anon_sym_LT_DASH] = ACTIONS(2728), - [anon_sym_LT_LT] = ACTIONS(2728), - [anon_sym_GT_GT] = ACTIONS(2728), - [anon_sym_GT_GT_GT] = ACTIONS(2728), - [anon_sym_AMP_CARET] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [anon_sym_or] = ACTIONS(2728), - [sym_none] = ACTIONS(2728), - [sym_true] = ACTIONS(2728), - [sym_false] = ACTIONS(2728), - [sym_nil] = ACTIONS(2728), - [anon_sym_QMARK_DOT] = ACTIONS(2728), - [anon_sym_POUND_LBRACK] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2728), - [anon_sym_DOLLARif] = ACTIONS(2728), - [anon_sym_is] = ACTIONS(2728), - [anon_sym_BANGis] = ACTIONS(2728), - [anon_sym_in] = ACTIONS(2728), - [anon_sym_BANGin] = ACTIONS(2728), - [anon_sym_match] = ACTIONS(2728), - [anon_sym_select] = ACTIONS(2728), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2728), - [anon_sym_sql] = ACTIONS(2728), - [sym_int_literal] = ACTIONS(2728), - [sym_float_literal] = ACTIONS(2728), - [sym_rune_literal] = ACTIONS(2728), - [sym_pseudo_compile_time_identifier] = ACTIONS(2728), - [anon_sym_shared] = ACTIONS(2728), - [anon_sym_map_LBRACK] = ACTIONS(2728), - [anon_sym_chan] = ACTIONS(2728), - [anon_sym_thread] = ACTIONS(2728), - [anon_sym_atomic] = ACTIONS(2728), - [sym___double_quote] = ACTIONS(2728), - [sym___single_quote] = ACTIONS(2728), - [sym___c_double_quote] = ACTIONS(2728), - [sym___c_single_quote] = ACTIONS(2728), - [sym___r_double_quote] = ACTIONS(2728), - [sym___r_single_quote] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2805), + [anon_sym_DOT] = ACTIONS(2805), + [anon_sym_as] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2805), + [anon_sym_COMMA] = ACTIONS(2805), + [anon_sym_RBRACE] = ACTIONS(2805), + [anon_sym_LPAREN] = ACTIONS(2805), + [anon_sym_RPAREN] = ACTIONS(2805), + [anon_sym_PIPE] = ACTIONS(2805), + [anon_sym_fn] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2805), + [anon_sym_SLASH] = ACTIONS(2805), + [anon_sym_PERCENT] = ACTIONS(2805), + [anon_sym_LT] = ACTIONS(2805), + [anon_sym_GT] = ACTIONS(2805), + [anon_sym_EQ_EQ] = ACTIONS(2805), + [anon_sym_BANG_EQ] = ACTIONS(2805), + [anon_sym_LT_EQ] = ACTIONS(2805), + [anon_sym_GT_EQ] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2805), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2805), + [anon_sym_mut] = ACTIONS(2805), + [anon_sym_PLUS_PLUS] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2805), + [anon_sym_QMARK] = ACTIONS(2805), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_go] = ACTIONS(2805), + [anon_sym_spawn] = ACTIONS(2805), + [anon_sym_json_DOTdecode] = ACTIONS(2805), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_CARET] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2805), + [anon_sym_LT_LT] = ACTIONS(2805), + [anon_sym_GT_GT] = ACTIONS(2805), + [anon_sym_GT_GT_GT] = ACTIONS(2805), + [anon_sym_AMP_CARET] = ACTIONS(2805), + [anon_sym_AMP_AMP] = ACTIONS(2805), + [anon_sym_PIPE_PIPE] = ACTIONS(2805), + [anon_sym_or] = ACTIONS(2805), + [sym_none] = ACTIONS(2805), + [sym_true] = ACTIONS(2805), + [sym_false] = ACTIONS(2805), + [sym_nil] = ACTIONS(2805), + [anon_sym_QMARK_DOT] = ACTIONS(2805), + [anon_sym_POUND_LBRACK] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_DOLLARif] = ACTIONS(2805), + [anon_sym_is] = ACTIONS(2805), + [anon_sym_BANGis] = ACTIONS(2805), + [anon_sym_in] = ACTIONS(2805), + [anon_sym_BANGin] = ACTIONS(2805), + [anon_sym_match] = ACTIONS(2805), + [anon_sym_select] = ACTIONS(2805), + [anon_sym_lock] = ACTIONS(2805), + [anon_sym_rlock] = ACTIONS(2805), + [anon_sym_unsafe] = ACTIONS(2805), + [anon_sym_sql] = ACTIONS(2805), + [sym_int_literal] = ACTIONS(2805), + [sym_float_literal] = ACTIONS(2805), + [sym_rune_literal] = ACTIONS(2805), + [anon_sym_SQUOTE] = ACTIONS(2805), + [anon_sym_DQUOTE] = ACTIONS(2805), + [anon_sym_c_SQUOTE] = ACTIONS(2805), + [anon_sym_c_DQUOTE] = ACTIONS(2805), + [anon_sym_r_SQUOTE] = ACTIONS(2805), + [anon_sym_r_DQUOTE] = ACTIONS(2805), + [sym_pseudo_compile_time_identifier] = ACTIONS(2805), + [anon_sym_shared] = ACTIONS(2805), + [anon_sym_map_LBRACK] = ACTIONS(2805), + [anon_sym_chan] = ACTIONS(2805), + [anon_sym_thread] = ACTIONS(2805), + [anon_sym_atomic] = ACTIONS(2805), }, [1240] = { [sym_line_comment] = STATE(1240), [sym_block_comment] = STATE(1240), - [sym_identifier] = ACTIONS(3054), - [anon_sym_LF] = ACTIONS(3054), - [anon_sym_CR] = ACTIONS(3054), - [anon_sym_CR_LF] = ACTIONS(3054), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LF] = ACTIONS(2159), + [anon_sym_CR] = ACTIONS(2159), + [anon_sym_CR_LF] = ACTIONS(2159), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_as] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_RPAREN] = ACTIONS(3054), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_fn] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_mut] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3054), - [anon_sym_DASH_DASH] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_BANG] = ACTIONS(3054), - [anon_sym_go] = ACTIONS(3054), - [anon_sym_spawn] = ACTIONS(3054), - [anon_sym_json_DOTdecode] = ACTIONS(3054), - [anon_sym_LBRACK2] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3054), - [anon_sym_CARET] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_LT_LT] = ACTIONS(3054), - [anon_sym_GT_GT] = ACTIONS(3054), - [anon_sym_GT_GT_GT] = ACTIONS(3054), - [anon_sym_AMP_CARET] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3054), - [sym_none] = ACTIONS(3054), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [sym_nil] = ACTIONS(3054), - [anon_sym_QMARK_DOT] = ACTIONS(3054), - [anon_sym_POUND_LBRACK] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_DOLLARif] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3054), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_select] = ACTIONS(3054), - [anon_sym_lock] = ACTIONS(3054), - [anon_sym_rlock] = ACTIONS(3054), - [anon_sym_unsafe] = ACTIONS(3054), - [anon_sym_sql] = ACTIONS(3054), - [sym_int_literal] = ACTIONS(3054), - [sym_float_literal] = ACTIONS(3054), - [sym_rune_literal] = ACTIONS(3054), - [sym_pseudo_compile_time_identifier] = ACTIONS(3054), - [anon_sym_shared] = ACTIONS(3054), - [anon_sym_map_LBRACK] = ACTIONS(3054), - [anon_sym_chan] = ACTIONS(3054), - [anon_sym_thread] = ACTIONS(3054), - [anon_sym_atomic] = ACTIONS(3054), - [sym___double_quote] = ACTIONS(3054), - [sym___single_quote] = ACTIONS(3054), - [sym___c_double_quote] = ACTIONS(3054), - [sym___c_single_quote] = ACTIONS(3054), - [sym___r_double_quote] = ACTIONS(3054), - [sym___r_single_quote] = ACTIONS(3054), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_DOT] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_RPAREN] = ACTIONS(2159), + [anon_sym_PIPE] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(2159), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2159), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_PERCENT] = ACTIONS(2159), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_GT] = ACTIONS(2159), + [anon_sym_EQ_EQ] = ACTIONS(2159), + [anon_sym_BANG_EQ] = ACTIONS(2159), + [anon_sym_LT_EQ] = ACTIONS(2159), + [anon_sym_GT_EQ] = ACTIONS(2159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(2159), + [anon_sym_mut] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(2159), + [anon_sym_DASH_DASH] = ACTIONS(2159), + [anon_sym_QMARK] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(2159), + [anon_sym_spawn] = ACTIONS(2159), + [anon_sym_json_DOTdecode] = ACTIONS(2159), + [anon_sym_LBRACK2] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_CARET] = ACTIONS(2159), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_LT_DASH] = ACTIONS(2159), + [anon_sym_LT_LT] = ACTIONS(2159), + [anon_sym_GT_GT] = ACTIONS(2159), + [anon_sym_GT_GT_GT] = ACTIONS(2159), + [anon_sym_AMP_CARET] = ACTIONS(2159), + [anon_sym_AMP_AMP] = ACTIONS(2159), + [anon_sym_PIPE_PIPE] = ACTIONS(2159), + [anon_sym_or] = ACTIONS(2159), + [sym_none] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_nil] = ACTIONS(2159), + [anon_sym_QMARK_DOT] = ACTIONS(2159), + [anon_sym_POUND_LBRACK] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_DOLLARif] = ACTIONS(2159), + [anon_sym_is] = ACTIONS(2159), + [anon_sym_BANGis] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2159), + [anon_sym_BANGin] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_select] = ACTIONS(2159), + [anon_sym_lock] = ACTIONS(2159), + [anon_sym_rlock] = ACTIONS(2159), + [anon_sym_unsafe] = ACTIONS(2159), + [anon_sym_sql] = ACTIONS(2159), + [sym_int_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_rune_literal] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_c_SQUOTE] = ACTIONS(2159), + [anon_sym_c_DQUOTE] = ACTIONS(2159), + [anon_sym_r_SQUOTE] = ACTIONS(2159), + [anon_sym_r_DQUOTE] = ACTIONS(2159), + [sym_pseudo_compile_time_identifier] = ACTIONS(2159), + [anon_sym_shared] = ACTIONS(2159), + [anon_sym_map_LBRACK] = ACTIONS(2159), + [anon_sym_chan] = ACTIONS(2159), + [anon_sym_thread] = ACTIONS(2159), + [anon_sym_atomic] = ACTIONS(2159), }, [1241] = { [sym_line_comment] = STATE(1241), [sym_block_comment] = STATE(1241), - [sym_identifier] = ACTIONS(1809), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_CR] = ACTIONS(1809), - [anon_sym_CR_LF] = ACTIONS(1809), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LF] = ACTIONS(3052), + [anon_sym_CR] = ACTIONS(3052), + [anon_sym_CR_LF] = ACTIONS(3052), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_RPAREN] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1809), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1809), - [anon_sym_AMP_CARET] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_PIPE_PIPE] = ACTIONS(1809), - [anon_sym_or] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1809), - [anon_sym_POUND_LBRACK] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_is] = ACTIONS(1809), - [anon_sym_BANGis] = ACTIONS(1809), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_BANGin] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), - [sym_rune_literal] = ACTIONS(1809), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1809), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), - [sym___double_quote] = ACTIONS(1809), - [sym___single_quote] = ACTIONS(1809), - [sym___c_double_quote] = ACTIONS(1809), - [sym___c_single_quote] = ACTIONS(1809), - [sym___r_double_quote] = ACTIONS(1809), - [sym___r_single_quote] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_as] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_RPAREN] = ACTIONS(3052), + [anon_sym_PIPE] = ACTIONS(3052), + [anon_sym_fn] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3052), + [anon_sym_SLASH] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3052), + [anon_sym_GT] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3050), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_mut] = ACTIONS(3052), + [anon_sym_PLUS_PLUS] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3052), + [anon_sym_go] = ACTIONS(3052), + [anon_sym_spawn] = ACTIONS(3052), + [anon_sym_json_DOTdecode] = ACTIONS(3052), + [anon_sym_LBRACK2] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3052), + [anon_sym_CARET] = ACTIONS(3052), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_LT_LT] = ACTIONS(3052), + [anon_sym_GT_GT] = ACTIONS(3052), + [anon_sym_GT_GT_GT] = ACTIONS(3052), + [anon_sym_AMP_CARET] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [sym_none] = ACTIONS(3052), + [sym_true] = ACTIONS(3052), + [sym_false] = ACTIONS(3052), + [sym_nil] = ACTIONS(3052), + [anon_sym_QMARK_DOT] = ACTIONS(3052), + [anon_sym_POUND_LBRACK] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_DOLLARif] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3052), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_in] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_select] = ACTIONS(3052), + [anon_sym_lock] = ACTIONS(3052), + [anon_sym_rlock] = ACTIONS(3052), + [anon_sym_unsafe] = ACTIONS(3052), + [anon_sym_sql] = ACTIONS(3052), + [sym_int_literal] = ACTIONS(3052), + [sym_float_literal] = ACTIONS(3052), + [sym_rune_literal] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_c_SQUOTE] = ACTIONS(3052), + [anon_sym_c_DQUOTE] = ACTIONS(3052), + [anon_sym_r_SQUOTE] = ACTIONS(3052), + [anon_sym_r_DQUOTE] = ACTIONS(3052), + [sym_pseudo_compile_time_identifier] = ACTIONS(3052), + [anon_sym_shared] = ACTIONS(3052), + [anon_sym_map_LBRACK] = ACTIONS(3052), + [anon_sym_chan] = ACTIONS(3052), + [anon_sym_thread] = ACTIONS(3052), + [anon_sym_atomic] = ACTIONS(3052), }, [1242] = { [sym_line_comment] = STATE(1242), [sym_block_comment] = STATE(1242), - [sym_identifier] = ACTIONS(2443), - [anon_sym_LF] = ACTIONS(2443), - [anon_sym_CR] = ACTIONS(2443), - [anon_sym_CR_LF] = ACTIONS(2443), + [sym_identifier] = ACTIONS(3056), + [anon_sym_LF] = ACTIONS(3056), + [anon_sym_CR] = ACTIONS(3056), + [anon_sym_CR_LF] = ACTIONS(3056), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_DOT] = ACTIONS(2443), - [anon_sym_as] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_COMMA] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_fn] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2443), - [anon_sym_STAR] = ACTIONS(2443), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2443), - [anon_sym_LT] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2441), - [anon_sym_struct] = ACTIONS(2443), - [anon_sym_mut] = ACTIONS(2443), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_QMARK] = ACTIONS(2443), - [anon_sym_BANG] = ACTIONS(2443), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2443), - [anon_sym_json_DOTdecode] = ACTIONS(2443), - [anon_sym_LBRACK2] = ACTIONS(2443), - [anon_sym_TILDE] = ACTIONS(2443), - [anon_sym_CARET] = ACTIONS(2443), - [anon_sym_AMP] = ACTIONS(2443), - [anon_sym_LT_DASH] = ACTIONS(2443), - [anon_sym_LT_LT] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(2443), - [anon_sym_GT_GT_GT] = ACTIONS(2443), - [anon_sym_AMP_CARET] = ACTIONS(2443), - [anon_sym_AMP_AMP] = ACTIONS(2443), - [anon_sym_PIPE_PIPE] = ACTIONS(2443), - [anon_sym_or] = ACTIONS(2443), - [sym_none] = ACTIONS(2443), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_nil] = ACTIONS(2443), - [anon_sym_QMARK_DOT] = ACTIONS(2443), - [anon_sym_POUND_LBRACK] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_DOLLARif] = ACTIONS(2443), - [anon_sym_is] = ACTIONS(2443), - [anon_sym_BANGis] = ACTIONS(2443), - [anon_sym_in] = ACTIONS(2443), - [anon_sym_BANGin] = ACTIONS(2443), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_select] = ACTIONS(2443), - [anon_sym_lock] = ACTIONS(2443), - [anon_sym_rlock] = ACTIONS(2443), - [anon_sym_unsafe] = ACTIONS(2443), - [anon_sym_sql] = ACTIONS(2443), - [sym_int_literal] = ACTIONS(2443), - [sym_float_literal] = ACTIONS(2443), - [sym_rune_literal] = ACTIONS(2443), - [sym_pseudo_compile_time_identifier] = ACTIONS(2443), - [anon_sym_shared] = ACTIONS(2443), - [anon_sym_map_LBRACK] = ACTIONS(2443), - [anon_sym_chan] = ACTIONS(2443), - [anon_sym_thread] = ACTIONS(2443), - [anon_sym_atomic] = ACTIONS(2443), - [sym___double_quote] = ACTIONS(2443), - [sym___single_quote] = ACTIONS(2443), - [sym___c_double_quote] = ACTIONS(2443), - [sym___c_single_quote] = ACTIONS(2443), - [sym___r_double_quote] = ACTIONS(2443), - [sym___r_single_quote] = ACTIONS(2443), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3056), + [anon_sym_as] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3056), + [anon_sym_RPAREN] = ACTIONS(3056), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_fn] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3056), + [anon_sym_SLASH] = ACTIONS(3056), + [anon_sym_PERCENT] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT_EQ] = ACTIONS(3056), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_mut] = ACTIONS(3056), + [anon_sym_PLUS_PLUS] = ACTIONS(3056), + [anon_sym_DASH_DASH] = ACTIONS(3056), + [anon_sym_QMARK] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3056), + [anon_sym_go] = ACTIONS(3056), + [anon_sym_spawn] = ACTIONS(3056), + [anon_sym_json_DOTdecode] = ACTIONS(3056), + [anon_sym_LBRACK2] = ACTIONS(3056), + [anon_sym_TILDE] = ACTIONS(3056), + [anon_sym_CARET] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym_LT_DASH] = ACTIONS(3056), + [anon_sym_LT_LT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(3056), + [anon_sym_GT_GT_GT] = ACTIONS(3056), + [anon_sym_AMP_CARET] = ACTIONS(3056), + [anon_sym_AMP_AMP] = ACTIONS(3056), + [anon_sym_PIPE_PIPE] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3056), + [sym_none] = ACTIONS(3056), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [sym_nil] = ACTIONS(3056), + [anon_sym_QMARK_DOT] = ACTIONS(3056), + [anon_sym_POUND_LBRACK] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_DOLLARif] = ACTIONS(3056), + [anon_sym_is] = ACTIONS(3056), + [anon_sym_BANGis] = ACTIONS(3056), + [anon_sym_in] = ACTIONS(3056), + [anon_sym_BANGin] = ACTIONS(3056), + [anon_sym_match] = ACTIONS(3056), + [anon_sym_select] = ACTIONS(3056), + [anon_sym_lock] = ACTIONS(3056), + [anon_sym_rlock] = ACTIONS(3056), + [anon_sym_unsafe] = ACTIONS(3056), + [anon_sym_sql] = ACTIONS(3056), + [sym_int_literal] = ACTIONS(3056), + [sym_float_literal] = ACTIONS(3056), + [sym_rune_literal] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3056), + [anon_sym_c_SQUOTE] = ACTIONS(3056), + [anon_sym_c_DQUOTE] = ACTIONS(3056), + [anon_sym_r_SQUOTE] = ACTIONS(3056), + [anon_sym_r_DQUOTE] = ACTIONS(3056), + [sym_pseudo_compile_time_identifier] = ACTIONS(3056), + [anon_sym_shared] = ACTIONS(3056), + [anon_sym_map_LBRACK] = ACTIONS(3056), + [anon_sym_chan] = ACTIONS(3056), + [anon_sym_thread] = ACTIONS(3056), + [anon_sym_atomic] = ACTIONS(3056), }, [1243] = { [sym_line_comment] = STATE(1243), [sym_block_comment] = STATE(1243), - [sym_identifier] = ACTIONS(3044), - [anon_sym_LF] = ACTIONS(3044), - [anon_sym_CR] = ACTIONS(3044), - [anon_sym_CR_LF] = ACTIONS(3044), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LF] = ACTIONS(2181), + [anon_sym_CR] = ACTIONS(2181), + [anon_sym_CR_LF] = ACTIONS(2181), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3044), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_as] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3044), - [anon_sym_RBRACE] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_RPAREN] = ACTIONS(3044), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_fn] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_SLASH] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3044), - [anon_sym_GT] = ACTIONS(3044), - [anon_sym_EQ_EQ] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_EQ] = ACTIONS(3044), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3044), - [anon_sym_LBRACK] = ACTIONS(3042), - [anon_sym_struct] = ACTIONS(3044), - [anon_sym_mut] = ACTIONS(3044), - [anon_sym_PLUS_PLUS] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_BANG] = ACTIONS(3044), - [anon_sym_go] = ACTIONS(3044), - [anon_sym_spawn] = ACTIONS(3044), - [anon_sym_json_DOTdecode] = ACTIONS(3044), - [anon_sym_LBRACK2] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3044), - [anon_sym_CARET] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_LT_LT] = ACTIONS(3044), - [anon_sym_GT_GT] = ACTIONS(3044), - [anon_sym_GT_GT_GT] = ACTIONS(3044), - [anon_sym_AMP_CARET] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_or] = ACTIONS(3044), - [sym_none] = ACTIONS(3044), - [sym_true] = ACTIONS(3044), - [sym_false] = ACTIONS(3044), - [sym_nil] = ACTIONS(3044), - [anon_sym_QMARK_DOT] = ACTIONS(3044), - [anon_sym_POUND_LBRACK] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_DOLLARif] = ACTIONS(3044), - [anon_sym_is] = ACTIONS(3044), - [anon_sym_BANGis] = ACTIONS(3044), - [anon_sym_in] = ACTIONS(3044), - [anon_sym_BANGin] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_select] = ACTIONS(3044), - [anon_sym_lock] = ACTIONS(3044), - [anon_sym_rlock] = ACTIONS(3044), - [anon_sym_unsafe] = ACTIONS(3044), - [anon_sym_sql] = ACTIONS(3044), - [sym_int_literal] = ACTIONS(3044), - [sym_float_literal] = ACTIONS(3044), - [sym_rune_literal] = ACTIONS(3044), - [sym_pseudo_compile_time_identifier] = ACTIONS(3044), - [anon_sym_shared] = ACTIONS(3044), - [anon_sym_map_LBRACK] = ACTIONS(3044), - [anon_sym_chan] = ACTIONS(3044), - [anon_sym_thread] = ACTIONS(3044), - [anon_sym_atomic] = ACTIONS(3044), - [sym___double_quote] = ACTIONS(3044), - [sym___single_quote] = ACTIONS(3044), - [sym___c_double_quote] = ACTIONS(3044), - [sym___c_single_quote] = ACTIONS(3044), - [sym___r_double_quote] = ACTIONS(3044), - [sym___r_single_quote] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(2181), + [anon_sym_DOT] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_COMMA] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_RPAREN] = ACTIONS(2181), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_SLASH] = ACTIONS(2181), + [anon_sym_PERCENT] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_GT] = ACTIONS(2181), + [anon_sym_EQ_EQ] = ACTIONS(2181), + [anon_sym_BANG_EQ] = ACTIONS(2181), + [anon_sym_LT_EQ] = ACTIONS(2181), + [anon_sym_GT_EQ] = ACTIONS(2181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_mut] = ACTIONS(2181), + [anon_sym_PLUS_PLUS] = ACTIONS(2181), + [anon_sym_DASH_DASH] = ACTIONS(2181), + [anon_sym_QMARK] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2181), + [anon_sym_go] = ACTIONS(2181), + [anon_sym_spawn] = ACTIONS(2181), + [anon_sym_json_DOTdecode] = ACTIONS(2181), + [anon_sym_LBRACK2] = ACTIONS(2181), + [anon_sym_TILDE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2181), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_LT_DASH] = ACTIONS(2181), + [anon_sym_LT_LT] = ACTIONS(2181), + [anon_sym_GT_GT] = ACTIONS(2181), + [anon_sym_GT_GT_GT] = ACTIONS(2181), + [anon_sym_AMP_CARET] = ACTIONS(2181), + [anon_sym_AMP_AMP] = ACTIONS(2181), + [anon_sym_PIPE_PIPE] = ACTIONS(2181), + [anon_sym_or] = ACTIONS(2181), + [sym_none] = ACTIONS(2181), + [sym_true] = ACTIONS(2181), + [sym_false] = ACTIONS(2181), + [sym_nil] = ACTIONS(2181), + [anon_sym_QMARK_DOT] = ACTIONS(2181), + [anon_sym_POUND_LBRACK] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_DOLLARif] = ACTIONS(2181), + [anon_sym_is] = ACTIONS(2181), + [anon_sym_BANGis] = ACTIONS(2181), + [anon_sym_in] = ACTIONS(2181), + [anon_sym_BANGin] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_select] = ACTIONS(2181), + [anon_sym_lock] = ACTIONS(2181), + [anon_sym_rlock] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_sql] = ACTIONS(2181), + [sym_int_literal] = ACTIONS(2181), + [sym_float_literal] = ACTIONS(2181), + [sym_rune_literal] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_DQUOTE] = ACTIONS(2181), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2181), + [anon_sym_r_SQUOTE] = ACTIONS(2181), + [anon_sym_r_DQUOTE] = ACTIONS(2181), + [sym_pseudo_compile_time_identifier] = ACTIONS(2181), + [anon_sym_shared] = ACTIONS(2181), + [anon_sym_map_LBRACK] = ACTIONS(2181), + [anon_sym_chan] = ACTIONS(2181), + [anon_sym_thread] = ACTIONS(2181), + [anon_sym_atomic] = ACTIONS(2181), }, [1244] = { [sym_line_comment] = STATE(1244), [sym_block_comment] = STATE(1244), - [sym_identifier] = ACTIONS(2846), - [anon_sym_LF] = ACTIONS(2846), - [anon_sym_CR] = ACTIONS(2846), - [anon_sym_CR_LF] = ACTIONS(2846), + [sym_identifier] = ACTIONS(2269), + [anon_sym_LF] = ACTIONS(2269), + [anon_sym_CR] = ACTIONS(2269), + [anon_sym_CR_LF] = ACTIONS(2269), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2846), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2846), - [anon_sym_RBRACE] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_RPAREN] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_fn] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_GT] = ACTIONS(2846), - [anon_sym_EQ_EQ] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2846), - [anon_sym_LT_EQ] = ACTIONS(2846), - [anon_sym_GT_EQ] = ACTIONS(2846), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2846), - [anon_sym_mut] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_go] = ACTIONS(2846), - [anon_sym_spawn] = ACTIONS(2846), - [anon_sym_json_DOTdecode] = ACTIONS(2846), - [anon_sym_LBRACK2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_CARET] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_LT_LT] = ACTIONS(2846), - [anon_sym_GT_GT] = ACTIONS(2846), - [anon_sym_GT_GT_GT] = ACTIONS(2846), - [anon_sym_AMP_CARET] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_or] = ACTIONS(2846), - [sym_none] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_nil] = ACTIONS(2846), - [anon_sym_QMARK_DOT] = ACTIONS(2846), - [anon_sym_POUND_LBRACK] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_DOLLARif] = ACTIONS(2846), - [anon_sym_is] = ACTIONS(2846), - [anon_sym_BANGis] = ACTIONS(2846), - [anon_sym_in] = ACTIONS(2846), - [anon_sym_BANGin] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_select] = ACTIONS(2846), - [anon_sym_lock] = ACTIONS(2846), - [anon_sym_rlock] = ACTIONS(2846), - [anon_sym_unsafe] = ACTIONS(2846), - [anon_sym_sql] = ACTIONS(2846), - [sym_int_literal] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2846), - [sym_rune_literal] = ACTIONS(2846), - [sym_pseudo_compile_time_identifier] = ACTIONS(2846), - [anon_sym_shared] = ACTIONS(2846), - [anon_sym_map_LBRACK] = ACTIONS(2846), - [anon_sym_chan] = ACTIONS(2846), - [anon_sym_thread] = ACTIONS(2846), - [anon_sym_atomic] = ACTIONS(2846), - [sym___double_quote] = ACTIONS(2846), - [sym___single_quote] = ACTIONS(2846), - [sym___c_double_quote] = ACTIONS(2846), - [sym___c_single_quote] = ACTIONS(2846), - [sym___r_double_quote] = ACTIONS(2846), - [sym___r_single_quote] = ACTIONS(2846), + [anon_sym_SEMI] = ACTIONS(2269), + [anon_sym_DOT] = ACTIONS(2269), + [anon_sym_as] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2269), + [anon_sym_COMMA] = ACTIONS(2269), + [anon_sym_RBRACE] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2269), + [anon_sym_RPAREN] = ACTIONS(2269), + [anon_sym_PIPE] = ACTIONS(2269), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2269), + [anon_sym_SLASH] = ACTIONS(2269), + [anon_sym_PERCENT] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_GT] = ACTIONS(2269), + [anon_sym_EQ_EQ] = ACTIONS(2269), + [anon_sym_BANG_EQ] = ACTIONS(2269), + [anon_sym_LT_EQ] = ACTIONS(2269), + [anon_sym_GT_EQ] = ACTIONS(2269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2269), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_mut] = ACTIONS(2269), + [anon_sym_PLUS_PLUS] = ACTIONS(2269), + [anon_sym_DASH_DASH] = ACTIONS(2269), + [anon_sym_QMARK] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2269), + [anon_sym_go] = ACTIONS(2269), + [anon_sym_spawn] = ACTIONS(2269), + [anon_sym_json_DOTdecode] = ACTIONS(2269), + [anon_sym_LBRACK2] = ACTIONS(2269), + [anon_sym_TILDE] = ACTIONS(2269), + [anon_sym_CARET] = ACTIONS(2269), + [anon_sym_AMP] = ACTIONS(2269), + [anon_sym_LT_DASH] = ACTIONS(2269), + [anon_sym_LT_LT] = ACTIONS(2269), + [anon_sym_GT_GT] = ACTIONS(2269), + [anon_sym_GT_GT_GT] = ACTIONS(2269), + [anon_sym_AMP_CARET] = ACTIONS(2269), + [anon_sym_AMP_AMP] = ACTIONS(2269), + [anon_sym_PIPE_PIPE] = ACTIONS(2269), + [anon_sym_or] = ACTIONS(2269), + [sym_none] = ACTIONS(2269), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_nil] = ACTIONS(2269), + [anon_sym_QMARK_DOT] = ACTIONS(2269), + [anon_sym_POUND_LBRACK] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_DOLLARif] = ACTIONS(2269), + [anon_sym_is] = ACTIONS(2269), + [anon_sym_BANGis] = ACTIONS(2269), + [anon_sym_in] = ACTIONS(2269), + [anon_sym_BANGin] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_select] = ACTIONS(2269), + [anon_sym_lock] = ACTIONS(2269), + [anon_sym_rlock] = ACTIONS(2269), + [anon_sym_unsafe] = ACTIONS(2269), + [anon_sym_sql] = ACTIONS(2269), + [sym_int_literal] = ACTIONS(2269), + [sym_float_literal] = ACTIONS(2269), + [sym_rune_literal] = ACTIONS(2269), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_DQUOTE] = ACTIONS(2269), + [anon_sym_c_SQUOTE] = ACTIONS(2269), + [anon_sym_c_DQUOTE] = ACTIONS(2269), + [anon_sym_r_SQUOTE] = ACTIONS(2269), + [anon_sym_r_DQUOTE] = ACTIONS(2269), + [sym_pseudo_compile_time_identifier] = ACTIONS(2269), + [anon_sym_shared] = ACTIONS(2269), + [anon_sym_map_LBRACK] = ACTIONS(2269), + [anon_sym_chan] = ACTIONS(2269), + [anon_sym_thread] = ACTIONS(2269), + [anon_sym_atomic] = ACTIONS(2269), }, [1245] = { [sym_line_comment] = STATE(1245), [sym_block_comment] = STATE(1245), - [sym_identifier] = ACTIONS(2449), - [anon_sym_LF] = ACTIONS(2449), - [anon_sym_CR] = ACTIONS(2449), - [anon_sym_CR_LF] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2261), + [anon_sym_LF] = ACTIONS(2261), + [anon_sym_CR] = ACTIONS(2261), + [anon_sym_CR_LF] = ACTIONS(2261), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_DOT] = ACTIONS(2449), - [anon_sym_as] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_COMMA] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2449), - [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_PIPE] = ACTIONS(2449), - [anon_sym_fn] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2449), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_LT_EQ] = ACTIONS(2449), - [anon_sym_GT_EQ] = ACTIONS(2449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_struct] = ACTIONS(2449), - [anon_sym_mut] = ACTIONS(2449), - [anon_sym_PLUS_PLUS] = ACTIONS(2449), - [anon_sym_DASH_DASH] = ACTIONS(2449), - [anon_sym_QMARK] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2449), - [anon_sym_go] = ACTIONS(2449), - [anon_sym_spawn] = ACTIONS(2449), - [anon_sym_json_DOTdecode] = ACTIONS(2449), - [anon_sym_LBRACK2] = ACTIONS(2449), - [anon_sym_TILDE] = ACTIONS(2449), - [anon_sym_CARET] = ACTIONS(2449), - [anon_sym_AMP] = ACTIONS(2449), - [anon_sym_LT_DASH] = ACTIONS(2449), - [anon_sym_LT_LT] = ACTIONS(2449), - [anon_sym_GT_GT] = ACTIONS(2449), - [anon_sym_GT_GT_GT] = ACTIONS(2449), - [anon_sym_AMP_CARET] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_PIPE_PIPE] = ACTIONS(2449), - [anon_sym_or] = ACTIONS(2449), - [sym_none] = ACTIONS(2449), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_nil] = ACTIONS(2449), - [anon_sym_QMARK_DOT] = ACTIONS(2449), - [anon_sym_POUND_LBRACK] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_DOLLARif] = ACTIONS(2449), - [anon_sym_is] = ACTIONS(2449), - [anon_sym_BANGis] = ACTIONS(2449), - [anon_sym_in] = ACTIONS(2449), - [anon_sym_BANGin] = ACTIONS(2449), - [anon_sym_match] = ACTIONS(2449), - [anon_sym_select] = ACTIONS(2449), - [anon_sym_lock] = ACTIONS(2449), - [anon_sym_rlock] = ACTIONS(2449), - [anon_sym_unsafe] = ACTIONS(2449), - [anon_sym_sql] = ACTIONS(2449), - [sym_int_literal] = ACTIONS(2449), - [sym_float_literal] = ACTIONS(2449), - [sym_rune_literal] = ACTIONS(2449), - [sym_pseudo_compile_time_identifier] = ACTIONS(2449), - [anon_sym_shared] = ACTIONS(2449), - [anon_sym_map_LBRACK] = ACTIONS(2449), - [anon_sym_chan] = ACTIONS(2449), - [anon_sym_thread] = ACTIONS(2449), - [anon_sym_atomic] = ACTIONS(2449), - [sym___double_quote] = ACTIONS(2449), - [sym___single_quote] = ACTIONS(2449), - [sym___c_double_quote] = ACTIONS(2449), - [sym___c_single_quote] = ACTIONS(2449), - [sym___r_double_quote] = ACTIONS(2449), - [sym___r_single_quote] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2261), + [anon_sym_DOT] = ACTIONS(2261), + [anon_sym_as] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2261), + [anon_sym_COMMA] = ACTIONS(2261), + [anon_sym_RBRACE] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_RPAREN] = ACTIONS(2261), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_fn] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(2261), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_PERCENT] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_GT] = ACTIONS(2261), + [anon_sym_EQ_EQ] = ACTIONS(2261), + [anon_sym_BANG_EQ] = ACTIONS(2261), + [anon_sym_LT_EQ] = ACTIONS(2261), + [anon_sym_GT_EQ] = ACTIONS(2261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_struct] = ACTIONS(2261), + [anon_sym_mut] = ACTIONS(2261), + [anon_sym_PLUS_PLUS] = ACTIONS(2261), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_QMARK] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2261), + [anon_sym_go] = ACTIONS(2261), + [anon_sym_spawn] = ACTIONS(2261), + [anon_sym_json_DOTdecode] = ACTIONS(2261), + [anon_sym_LBRACK2] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2261), + [anon_sym_CARET] = ACTIONS(2261), + [anon_sym_AMP] = ACTIONS(2261), + [anon_sym_LT_DASH] = ACTIONS(2261), + [anon_sym_LT_LT] = ACTIONS(2261), + [anon_sym_GT_GT] = ACTIONS(2261), + [anon_sym_GT_GT_GT] = ACTIONS(2261), + [anon_sym_AMP_CARET] = ACTIONS(2261), + [anon_sym_AMP_AMP] = ACTIONS(2261), + [anon_sym_PIPE_PIPE] = ACTIONS(2261), + [anon_sym_or] = ACTIONS(2261), + [sym_none] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_nil] = ACTIONS(2261), + [anon_sym_QMARK_DOT] = ACTIONS(2261), + [anon_sym_POUND_LBRACK] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_DOLLARif] = ACTIONS(2261), + [anon_sym_is] = ACTIONS(2261), + [anon_sym_BANGis] = ACTIONS(2261), + [anon_sym_in] = ACTIONS(2261), + [anon_sym_BANGin] = ACTIONS(2261), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_select] = ACTIONS(2261), + [anon_sym_lock] = ACTIONS(2261), + [anon_sym_rlock] = ACTIONS(2261), + [anon_sym_unsafe] = ACTIONS(2261), + [anon_sym_sql] = ACTIONS(2261), + [sym_int_literal] = ACTIONS(2261), + [sym_float_literal] = ACTIONS(2261), + [sym_rune_literal] = ACTIONS(2261), + [anon_sym_SQUOTE] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2261), + [anon_sym_c_SQUOTE] = ACTIONS(2261), + [anon_sym_c_DQUOTE] = ACTIONS(2261), + [anon_sym_r_SQUOTE] = ACTIONS(2261), + [anon_sym_r_DQUOTE] = ACTIONS(2261), + [sym_pseudo_compile_time_identifier] = ACTIONS(2261), + [anon_sym_shared] = ACTIONS(2261), + [anon_sym_map_LBRACK] = ACTIONS(2261), + [anon_sym_chan] = ACTIONS(2261), + [anon_sym_thread] = ACTIONS(2261), + [anon_sym_atomic] = ACTIONS(2261), }, [1246] = { [sym_line_comment] = STATE(1246), [sym_block_comment] = STATE(1246), - [sym_identifier] = ACTIONS(2233), - [anon_sym_LF] = ACTIONS(2233), - [anon_sym_CR] = ACTIONS(2233), - [anon_sym_CR_LF] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LF] = ACTIONS(2253), + [anon_sym_CR] = ACTIONS(2253), + [anon_sym_CR_LF] = ACTIONS(2253), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_as] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_COMMA] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_RPAREN] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_fn] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_SLASH] = ACTIONS(2233), - [anon_sym_PERCENT] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2233), - [anon_sym_BANG_EQ] = ACTIONS(2233), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_struct] = ACTIONS(2233), - [anon_sym_mut] = ACTIONS(2233), - [anon_sym_PLUS_PLUS] = ACTIONS(2233), - [anon_sym_DASH_DASH] = ACTIONS(2233), - [anon_sym_QMARK] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2233), - [anon_sym_go] = ACTIONS(2233), - [anon_sym_spawn] = ACTIONS(2233), - [anon_sym_json_DOTdecode] = ACTIONS(2233), - [anon_sym_LBRACK2] = ACTIONS(2233), - [anon_sym_TILDE] = ACTIONS(2233), - [anon_sym_CARET] = ACTIONS(2233), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_LT_DASH] = ACTIONS(2233), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2233), - [anon_sym_GT_GT_GT] = ACTIONS(2233), - [anon_sym_AMP_CARET] = ACTIONS(2233), - [anon_sym_AMP_AMP] = ACTIONS(2233), - [anon_sym_PIPE_PIPE] = ACTIONS(2233), - [anon_sym_or] = ACTIONS(2233), - [sym_none] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_nil] = ACTIONS(2233), - [anon_sym_QMARK_DOT] = ACTIONS(2233), - [anon_sym_POUND_LBRACK] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_DOLLARif] = ACTIONS(2233), - [anon_sym_is] = ACTIONS(2233), - [anon_sym_BANGis] = ACTIONS(2233), - [anon_sym_in] = ACTIONS(2233), - [anon_sym_BANGin] = ACTIONS(2233), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_select] = ACTIONS(2233), - [anon_sym_lock] = ACTIONS(2233), - [anon_sym_rlock] = ACTIONS(2233), - [anon_sym_unsafe] = ACTIONS(2233), - [anon_sym_sql] = ACTIONS(2233), - [sym_int_literal] = ACTIONS(2233), - [sym_float_literal] = ACTIONS(2233), - [sym_rune_literal] = ACTIONS(2233), - [sym_pseudo_compile_time_identifier] = ACTIONS(2233), - [anon_sym_shared] = ACTIONS(2233), - [anon_sym_map_LBRACK] = ACTIONS(2233), - [anon_sym_chan] = ACTIONS(2233), - [anon_sym_thread] = ACTIONS(2233), - [anon_sym_atomic] = ACTIONS(2233), - [sym___double_quote] = ACTIONS(2233), - [sym___single_quote] = ACTIONS(2233), - [sym___c_double_quote] = ACTIONS(2233), - [sym___c_single_quote] = ACTIONS(2233), - [sym___r_double_quote] = ACTIONS(2233), - [sym___r_single_quote] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_DOT] = ACTIONS(2253), + [anon_sym_as] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_COMMA] = ACTIONS(2253), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_RPAREN] = ACTIONS(2253), + [anon_sym_PIPE] = ACTIONS(2253), + [anon_sym_fn] = ACTIONS(2253), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_STAR] = ACTIONS(2253), + [anon_sym_SLASH] = ACTIONS(2253), + [anon_sym_PERCENT] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_GT] = ACTIONS(2253), + [anon_sym_EQ_EQ] = ACTIONS(2253), + [anon_sym_BANG_EQ] = ACTIONS(2253), + [anon_sym_LT_EQ] = ACTIONS(2253), + [anon_sym_GT_EQ] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2251), + [anon_sym_struct] = ACTIONS(2253), + [anon_sym_mut] = ACTIONS(2253), + [anon_sym_PLUS_PLUS] = ACTIONS(2253), + [anon_sym_DASH_DASH] = ACTIONS(2253), + [anon_sym_QMARK] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2253), + [anon_sym_go] = ACTIONS(2253), + [anon_sym_spawn] = ACTIONS(2253), + [anon_sym_json_DOTdecode] = ACTIONS(2253), + [anon_sym_LBRACK2] = ACTIONS(2253), + [anon_sym_TILDE] = ACTIONS(2253), + [anon_sym_CARET] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(2253), + [anon_sym_LT_DASH] = ACTIONS(2253), + [anon_sym_LT_LT] = ACTIONS(2253), + [anon_sym_GT_GT] = ACTIONS(2253), + [anon_sym_GT_GT_GT] = ACTIONS(2253), + [anon_sym_AMP_CARET] = ACTIONS(2253), + [anon_sym_AMP_AMP] = ACTIONS(2253), + [anon_sym_PIPE_PIPE] = ACTIONS(2253), + [anon_sym_or] = ACTIONS(2253), + [sym_none] = ACTIONS(2253), + [sym_true] = ACTIONS(2253), + [sym_false] = ACTIONS(2253), + [sym_nil] = ACTIONS(2253), + [anon_sym_QMARK_DOT] = ACTIONS(2253), + [anon_sym_POUND_LBRACK] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_DOLLARif] = ACTIONS(2253), + [anon_sym_is] = ACTIONS(2253), + [anon_sym_BANGis] = ACTIONS(2253), + [anon_sym_in] = ACTIONS(2253), + [anon_sym_BANGin] = ACTIONS(2253), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_select] = ACTIONS(2253), + [anon_sym_lock] = ACTIONS(2253), + [anon_sym_rlock] = ACTIONS(2253), + [anon_sym_unsafe] = ACTIONS(2253), + [anon_sym_sql] = ACTIONS(2253), + [sym_int_literal] = ACTIONS(2253), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2253), + [anon_sym_c_SQUOTE] = ACTIONS(2253), + [anon_sym_c_DQUOTE] = ACTIONS(2253), + [anon_sym_r_SQUOTE] = ACTIONS(2253), + [anon_sym_r_DQUOTE] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(2253), + [anon_sym_shared] = ACTIONS(2253), + [anon_sym_map_LBRACK] = ACTIONS(2253), + [anon_sym_chan] = ACTIONS(2253), + [anon_sym_thread] = ACTIONS(2253), + [anon_sym_atomic] = ACTIONS(2253), }, [1247] = { [sym_line_comment] = STATE(1247), [sym_block_comment] = STATE(1247), - [sym_reference_expression] = STATE(4370), - [sym_type_reference_expression] = STATE(1909), - [sym_plain_type] = STATE(1973), - [sym__plain_type_without_special] = STATE(1945), - [sym_anon_struct_type] = STATE(1949), - [sym_multi_return_type] = STATE(1945), - [sym_result_type] = STATE(1945), - [sym_option_type] = STATE(1945), - [sym_qualified_type] = STATE(1909), - [sym_fixed_array_type] = STATE(1949), - [sym_array_type] = STATE(1949), - [sym_pointer_type] = STATE(1949), - [sym_wrong_pointer_type] = STATE(1949), - [sym_map_type] = STATE(1949), - [sym_channel_type] = STATE(1949), - [sym_shared_type] = STATE(1949), - [sym_thread_type] = STATE(1949), - [sym_atomic_type] = STATE(1949), - [sym_generic_type] = STATE(1949), - [sym_function_type] = STATE(1949), - [sym_identifier] = ACTIONS(3789), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(3791), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3793), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3795), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(3797), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(3799), - [anon_sym_BANG] = ACTIONS(3801), - [anon_sym_LBRACK2] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_STAR_EQ] = ACTIONS(585), - [anon_sym_SLASH_EQ] = ACTIONS(585), - [anon_sym_PERCENT_EQ] = ACTIONS(585), - [anon_sym_LT_LT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(585), - [anon_sym_AMP_EQ] = ACTIONS(585), - [anon_sym_AMP_CARET_EQ] = ACTIONS(585), - [anon_sym_PLUS_EQ] = ACTIONS(585), - [anon_sym_DASH_EQ] = ACTIONS(585), - [anon_sym_PIPE_EQ] = ACTIONS(585), - [anon_sym_CARET_EQ] = ACTIONS(585), - [anon_sym_COLON_EQ] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(3807), - [anon_sym_map_LBRACK] = ACTIONS(3809), - [anon_sym_chan] = ACTIONS(3811), - [anon_sym_thread] = ACTIONS(3813), - [anon_sym_atomic] = ACTIONS(3815), + [sym_identifier] = ACTIONS(2249), + [anon_sym_LF] = ACTIONS(2249), + [anon_sym_CR] = ACTIONS(2249), + [anon_sym_CR_LF] = ACTIONS(2249), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_DOT] = ACTIONS(2249), + [anon_sym_as] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_COMMA] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_RPAREN] = ACTIONS(2249), + [anon_sym_PIPE] = ACTIONS(2249), + [anon_sym_fn] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_PERCENT] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_GT] = ACTIONS(2249), + [anon_sym_EQ_EQ] = ACTIONS(2249), + [anon_sym_BANG_EQ] = ACTIONS(2249), + [anon_sym_LT_EQ] = ACTIONS(2249), + [anon_sym_GT_EQ] = ACTIONS(2249), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_mut] = ACTIONS(2249), + [anon_sym_PLUS_PLUS] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2249), + [anon_sym_QMARK] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_go] = ACTIONS(2249), + [anon_sym_spawn] = ACTIONS(2249), + [anon_sym_json_DOTdecode] = ACTIONS(2249), + [anon_sym_LBRACK2] = ACTIONS(2249), + [anon_sym_TILDE] = ACTIONS(2249), + [anon_sym_CARET] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2249), + [anon_sym_LT_LT] = ACTIONS(2249), + [anon_sym_GT_GT] = ACTIONS(2249), + [anon_sym_GT_GT_GT] = ACTIONS(2249), + [anon_sym_AMP_CARET] = ACTIONS(2249), + [anon_sym_AMP_AMP] = ACTIONS(2249), + [anon_sym_PIPE_PIPE] = ACTIONS(2249), + [anon_sym_or] = ACTIONS(2249), + [sym_none] = ACTIONS(2249), + [sym_true] = ACTIONS(2249), + [sym_false] = ACTIONS(2249), + [sym_nil] = ACTIONS(2249), + [anon_sym_QMARK_DOT] = ACTIONS(2249), + [anon_sym_POUND_LBRACK] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_DOLLARif] = ACTIONS(2249), + [anon_sym_is] = ACTIONS(2249), + [anon_sym_BANGis] = ACTIONS(2249), + [anon_sym_in] = ACTIONS(2249), + [anon_sym_BANGin] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_select] = ACTIONS(2249), + [anon_sym_lock] = ACTIONS(2249), + [anon_sym_rlock] = ACTIONS(2249), + [anon_sym_unsafe] = ACTIONS(2249), + [anon_sym_sql] = ACTIONS(2249), + [sym_int_literal] = ACTIONS(2249), + [sym_float_literal] = ACTIONS(2249), + [sym_rune_literal] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_c_SQUOTE] = ACTIONS(2249), + [anon_sym_c_DQUOTE] = ACTIONS(2249), + [anon_sym_r_SQUOTE] = ACTIONS(2249), + [anon_sym_r_DQUOTE] = ACTIONS(2249), + [sym_pseudo_compile_time_identifier] = ACTIONS(2249), + [anon_sym_shared] = ACTIONS(2249), + [anon_sym_map_LBRACK] = ACTIONS(2249), + [anon_sym_chan] = ACTIONS(2249), + [anon_sym_thread] = ACTIONS(2249), + [anon_sym_atomic] = ACTIONS(2249), }, [1248] = { [sym_line_comment] = STATE(1248), [sym_block_comment] = STATE(1248), - [sym_reference_expression] = STATE(4370), - [sym_type_reference_expression] = STATE(1909), - [sym_plain_type] = STATE(2038), - [sym__plain_type_without_special] = STATE(1945), - [sym_anon_struct_type] = STATE(1949), - [sym_multi_return_type] = STATE(1945), - [sym_result_type] = STATE(1945), - [sym_option_type] = STATE(1945), - [sym_qualified_type] = STATE(1909), - [sym_fixed_array_type] = STATE(1949), - [sym_array_type] = STATE(1949), - [sym_pointer_type] = STATE(1949), - [sym_wrong_pointer_type] = STATE(1949), - [sym_map_type] = STATE(1949), - [sym_channel_type] = STATE(1949), - [sym_shared_type] = STATE(1949), - [sym_thread_type] = STATE(1949), - [sym_atomic_type] = STATE(1949), - [sym_generic_type] = STATE(1949), - [sym_function_type] = STATE(1949), - [sym_identifier] = ACTIONS(3789), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(3791), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3793), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3795), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(3797), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(3799), - [anon_sym_BANG] = ACTIONS(3801), - [anon_sym_LBRACK2] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_or] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(617), - [anon_sym_POUND_LBRACK] = ACTIONS(617), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(617), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(617), - [anon_sym_STAR_EQ] = ACTIONS(617), - [anon_sym_SLASH_EQ] = ACTIONS(617), - [anon_sym_PERCENT_EQ] = ACTIONS(617), - [anon_sym_LT_LT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(617), - [anon_sym_AMP_EQ] = ACTIONS(617), - [anon_sym_AMP_CARET_EQ] = ACTIONS(617), - [anon_sym_PLUS_EQ] = ACTIONS(617), - [anon_sym_DASH_EQ] = ACTIONS(617), - [anon_sym_PIPE_EQ] = ACTIONS(617), - [anon_sym_CARET_EQ] = ACTIONS(617), - [anon_sym_COLON_EQ] = ACTIONS(617), - [anon_sym_shared] = ACTIONS(3807), - [anon_sym_map_LBRACK] = ACTIONS(3809), - [anon_sym_chan] = ACTIONS(3811), - [anon_sym_thread] = ACTIONS(3813), - [anon_sym_atomic] = ACTIONS(3815), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LF] = ACTIONS(2105), + [anon_sym_CR] = ACTIONS(2105), + [anon_sym_CR_LF] = ACTIONS(2105), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_RPAREN] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2105), + [anon_sym_GT_EQ] = ACTIONS(2105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_PLUS_PLUS] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2105), + [anon_sym_QMARK] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_go] = ACTIONS(2105), + [anon_sym_spawn] = ACTIONS(2105), + [anon_sym_json_DOTdecode] = ACTIONS(2105), + [anon_sym_LBRACK2] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_LT_DASH] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_AMP_CARET] = ACTIONS(2105), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_or] = ACTIONS(2105), + [sym_none] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_nil] = ACTIONS(2105), + [anon_sym_QMARK_DOT] = ACTIONS(2105), + [anon_sym_POUND_LBRACK] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_DOLLARif] = ACTIONS(2105), + [anon_sym_is] = ACTIONS(2105), + [anon_sym_BANGis] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_BANGin] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_select] = ACTIONS(2105), + [anon_sym_lock] = ACTIONS(2105), + [anon_sym_rlock] = ACTIONS(2105), + [anon_sym_unsafe] = ACTIONS(2105), + [anon_sym_sql] = ACTIONS(2105), + [sym_int_literal] = ACTIONS(2105), + [sym_float_literal] = ACTIONS(2105), + [sym_rune_literal] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [anon_sym_c_SQUOTE] = ACTIONS(2105), + [anon_sym_c_DQUOTE] = ACTIONS(2105), + [anon_sym_r_SQUOTE] = ACTIONS(2105), + [anon_sym_r_DQUOTE] = ACTIONS(2105), + [sym_pseudo_compile_time_identifier] = ACTIONS(2105), + [anon_sym_shared] = ACTIONS(2105), + [anon_sym_map_LBRACK] = ACTIONS(2105), + [anon_sym_chan] = ACTIONS(2105), + [anon_sym_thread] = ACTIONS(2105), + [anon_sym_atomic] = ACTIONS(2105), }, [1249] = { [sym_line_comment] = STATE(1249), [sym_block_comment] = STATE(1249), - [sym_reference_expression] = STATE(4370), - [sym_type_reference_expression] = STATE(1909), - [sym_plain_type] = STATE(2046), - [sym__plain_type_without_special] = STATE(1945), - [sym_anon_struct_type] = STATE(1949), - [sym_multi_return_type] = STATE(1945), - [sym_result_type] = STATE(1945), - [sym_option_type] = STATE(1945), - [sym_qualified_type] = STATE(1909), - [sym_fixed_array_type] = STATE(1949), - [sym_array_type] = STATE(1949), - [sym_pointer_type] = STATE(1949), - [sym_wrong_pointer_type] = STATE(1949), - [sym_map_type] = STATE(1949), - [sym_channel_type] = STATE(1949), - [sym_shared_type] = STATE(1949), - [sym_thread_type] = STATE(1949), - [sym_atomic_type] = STATE(1949), - [sym_generic_type] = STATE(1949), - [sym_function_type] = STATE(1949), - [sym_identifier] = ACTIONS(3789), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(3791), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(3793), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(3795), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(3797), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(3799), - [anon_sym_BANG] = ACTIONS(3801), - [anon_sym_LBRACK2] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [anon_sym_PERCENT_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(621), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_AMP_CARET_EQ] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_COLON_EQ] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(3807), - [anon_sym_map_LBRACK] = ACTIONS(3809), - [anon_sym_chan] = ACTIONS(3811), - [anon_sym_thread] = ACTIONS(3813), - [anon_sym_atomic] = ACTIONS(3815), + [sym_identifier] = ACTIONS(2127), + [anon_sym_LF] = ACTIONS(2127), + [anon_sym_CR] = ACTIONS(2127), + [anon_sym_CR_LF] = ACTIONS(2127), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_DOT] = ACTIONS(2127), + [anon_sym_as] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_COMMA] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_RPAREN] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2127), + [anon_sym_fn] = ACTIONS(2127), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_SLASH] = ACTIONS(2127), + [anon_sym_PERCENT] = ACTIONS(2127), + [anon_sym_LT] = ACTIONS(2127), + [anon_sym_GT] = ACTIONS(2127), + [anon_sym_EQ_EQ] = ACTIONS(2127), + [anon_sym_BANG_EQ] = ACTIONS(2127), + [anon_sym_LT_EQ] = ACTIONS(2127), + [anon_sym_GT_EQ] = ACTIONS(2127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2127), + [anon_sym_mut] = ACTIONS(2127), + [anon_sym_PLUS_PLUS] = ACTIONS(2127), + [anon_sym_DASH_DASH] = ACTIONS(2127), + [anon_sym_QMARK] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_go] = ACTIONS(2127), + [anon_sym_spawn] = ACTIONS(2127), + [anon_sym_json_DOTdecode] = ACTIONS(2127), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2127), + [anon_sym_CARET] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2127), + [anon_sym_LT_DASH] = ACTIONS(2127), + [anon_sym_LT_LT] = ACTIONS(2127), + [anon_sym_GT_GT] = ACTIONS(2127), + [anon_sym_GT_GT_GT] = ACTIONS(2127), + [anon_sym_AMP_CARET] = ACTIONS(2127), + [anon_sym_AMP_AMP] = ACTIONS(2127), + [anon_sym_PIPE_PIPE] = ACTIONS(2127), + [anon_sym_or] = ACTIONS(2127), + [sym_none] = ACTIONS(2127), + [sym_true] = ACTIONS(2127), + [sym_false] = ACTIONS(2127), + [sym_nil] = ACTIONS(2127), + [anon_sym_QMARK_DOT] = ACTIONS(2127), + [anon_sym_POUND_LBRACK] = ACTIONS(2127), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_DOLLARif] = ACTIONS(2127), + [anon_sym_is] = ACTIONS(2127), + [anon_sym_BANGis] = ACTIONS(2127), + [anon_sym_in] = ACTIONS(2127), + [anon_sym_BANGin] = ACTIONS(2127), + [anon_sym_match] = ACTIONS(2127), + [anon_sym_select] = ACTIONS(2127), + [anon_sym_lock] = ACTIONS(2127), + [anon_sym_rlock] = ACTIONS(2127), + [anon_sym_unsafe] = ACTIONS(2127), + [anon_sym_sql] = ACTIONS(2127), + [sym_int_literal] = ACTIONS(2127), + [sym_float_literal] = ACTIONS(2127), + [sym_rune_literal] = ACTIONS(2127), + [anon_sym_SQUOTE] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(2127), + [anon_sym_c_SQUOTE] = ACTIONS(2127), + [anon_sym_c_DQUOTE] = ACTIONS(2127), + [anon_sym_r_SQUOTE] = ACTIONS(2127), + [anon_sym_r_DQUOTE] = ACTIONS(2127), + [sym_pseudo_compile_time_identifier] = ACTIONS(2127), + [anon_sym_shared] = ACTIONS(2127), + [anon_sym_map_LBRACK] = ACTIONS(2127), + [anon_sym_chan] = ACTIONS(2127), + [anon_sym_thread] = ACTIONS(2127), + [anon_sym_atomic] = ACTIONS(2127), }, [1250] = { [sym_line_comment] = STATE(1250), [sym_block_comment] = STATE(1250), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2320), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2386), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_COLON] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3795), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_LT_DASH] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_or] = ACTIONS(607), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_is] = ACTIONS(607), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(607), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_STAR_EQ] = ACTIONS(603), + [anon_sym_SLASH_EQ] = ACTIONS(603), + [anon_sym_PERCENT_EQ] = ACTIONS(603), + [anon_sym_LT_LT_EQ] = ACTIONS(603), + [anon_sym_GT_GT_EQ] = ACTIONS(603), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(603), + [anon_sym_AMP_EQ] = ACTIONS(603), + [anon_sym_AMP_CARET_EQ] = ACTIONS(603), + [anon_sym_PLUS_EQ] = ACTIONS(603), + [anon_sym_DASH_EQ] = ACTIONS(603), + [anon_sym_PIPE_EQ] = ACTIONS(603), + [anon_sym_CARET_EQ] = ACTIONS(603), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [1251] = { + [sym_line_comment] = STATE(1251), + [sym_block_comment] = STATE(1251), + [sym_reference_expression] = STATE(4365), + [sym_type_reference_expression] = STATE(1904), + [sym_plain_type] = STATE(2037), + [sym__plain_type_without_special] = STATE(1978), + [sym_anon_struct_type] = STATE(1980), + [sym_multi_return_type] = STATE(1978), + [sym_result_type] = STATE(1978), + [sym_option_type] = STATE(1978), + [sym_qualified_type] = STATE(1904), + [sym_fixed_array_type] = STATE(1980), + [sym_array_type] = STATE(1980), + [sym_pointer_type] = STATE(1980), + [sym_wrong_pointer_type] = STATE(1980), + [sym_map_type] = STATE(1980), + [sym_channel_type] = STATE(1980), + [sym_shared_type] = STATE(1980), + [sym_thread_type] = STATE(1980), + [sym_atomic_type] = STATE(1980), + [sym_generic_type] = STATE(1980), + [sym_function_type] = STATE(1980), + [sym_identifier] = ACTIONS(3797), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(563), [anon_sym_DOT] = ACTIONS(563), [anon_sym_as] = ACTIONS(567), [anon_sym_LBRACE] = ACTIONS(563), [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3799), [anon_sym_EQ] = ACTIONS(567), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(3801), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(3803), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(567), [anon_sym_LT] = ACTIONS(567), @@ -160731,16 +160795,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(563), [anon_sym_GT_EQ] = ACTIONS(563), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(3805), [anon_sym_PLUS_PLUS] = ACTIONS(563), [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(3807), + [anon_sym_BANG] = ACTIONS(3809), + [anon_sym_LBRACK2] = ACTIONS(3811), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), - [anon_sym_LT_DASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(3813), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), [anon_sym_GT_GT_GT] = ACTIONS(567), @@ -160766,632 +160828,460 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_EQ] = ACTIONS(563), [anon_sym_PIPE_EQ] = ACTIONS(563), [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - }, - [1251] = { - [sym_line_comment] = STATE(1251), - [sym_block_comment] = STATE(1251), - [sym_identifier] = ACTIONS(2455), - [anon_sym_LF] = ACTIONS(2455), - [anon_sym_CR] = ACTIONS(2455), - [anon_sym_CR_LF] = ACTIONS(2455), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2455), - [anon_sym_DOT] = ACTIONS(2455), - [anon_sym_as] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_COMMA] = ACTIONS(2455), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2455), - [anon_sym_PIPE] = ACTIONS(2455), - [anon_sym_fn] = ACTIONS(2455), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(2455), - [anon_sym_SLASH] = ACTIONS(2455), - [anon_sym_PERCENT] = ACTIONS(2455), - [anon_sym_LT] = ACTIONS(2455), - [anon_sym_GT] = ACTIONS(2455), - [anon_sym_EQ_EQ] = ACTIONS(2455), - [anon_sym_BANG_EQ] = ACTIONS(2455), - [anon_sym_LT_EQ] = ACTIONS(2455), - [anon_sym_GT_EQ] = ACTIONS(2455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2455), - [anon_sym_LBRACK] = ACTIONS(2453), - [anon_sym_struct] = ACTIONS(2455), - [anon_sym_mut] = ACTIONS(2455), - [anon_sym_PLUS_PLUS] = ACTIONS(2455), - [anon_sym_DASH_DASH] = ACTIONS(2455), - [anon_sym_QMARK] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2455), - [anon_sym_go] = ACTIONS(2455), - [anon_sym_spawn] = ACTIONS(2455), - [anon_sym_json_DOTdecode] = ACTIONS(2455), - [anon_sym_LBRACK2] = ACTIONS(2455), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_CARET] = ACTIONS(2455), - [anon_sym_AMP] = ACTIONS(2455), - [anon_sym_LT_DASH] = ACTIONS(2455), - [anon_sym_LT_LT] = ACTIONS(2455), - [anon_sym_GT_GT] = ACTIONS(2455), - [anon_sym_GT_GT_GT] = ACTIONS(2455), - [anon_sym_AMP_CARET] = ACTIONS(2455), - [anon_sym_AMP_AMP] = ACTIONS(2455), - [anon_sym_PIPE_PIPE] = ACTIONS(2455), - [anon_sym_or] = ACTIONS(2455), - [sym_none] = ACTIONS(2455), - [sym_true] = ACTIONS(2455), - [sym_false] = ACTIONS(2455), - [sym_nil] = ACTIONS(2455), - [anon_sym_QMARK_DOT] = ACTIONS(2455), - [anon_sym_POUND_LBRACK] = ACTIONS(2455), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_DOLLARif] = ACTIONS(2455), - [anon_sym_is] = ACTIONS(2455), - [anon_sym_BANGis] = ACTIONS(2455), - [anon_sym_in] = ACTIONS(2455), - [anon_sym_BANGin] = ACTIONS(2455), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_select] = ACTIONS(2455), - [anon_sym_lock] = ACTIONS(2455), - [anon_sym_rlock] = ACTIONS(2455), - [anon_sym_unsafe] = ACTIONS(2455), - [anon_sym_sql] = ACTIONS(2455), - [sym_int_literal] = ACTIONS(2455), - [sym_float_literal] = ACTIONS(2455), - [sym_rune_literal] = ACTIONS(2455), - [sym_pseudo_compile_time_identifier] = ACTIONS(2455), - [anon_sym_shared] = ACTIONS(2455), - [anon_sym_map_LBRACK] = ACTIONS(2455), - [anon_sym_chan] = ACTIONS(2455), - [anon_sym_thread] = ACTIONS(2455), - [anon_sym_atomic] = ACTIONS(2455), - [sym___double_quote] = ACTIONS(2455), - [sym___single_quote] = ACTIONS(2455), - [sym___c_double_quote] = ACTIONS(2455), - [sym___c_single_quote] = ACTIONS(2455), - [sym___r_double_quote] = ACTIONS(2455), - [sym___r_single_quote] = ACTIONS(2455), + [anon_sym_COLON_EQ] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(3815), + [anon_sym_map_LBRACK] = ACTIONS(3817), + [anon_sym_chan] = ACTIONS(3819), + [anon_sym_thread] = ACTIONS(3821), + [anon_sym_atomic] = ACTIONS(3823), }, [1252] = { [sym_line_comment] = STATE(1252), [sym_block_comment] = STATE(1252), - [sym_identifier] = ACTIONS(2513), - [anon_sym_LF] = ACTIONS(2513), - [anon_sym_CR] = ACTIONS(2513), - [anon_sym_CR_LF] = ACTIONS(2513), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_DOT] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_COMMA] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_RPAREN] = ACTIONS(2513), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_fn] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2513), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_GT] = ACTIONS(2513), - [anon_sym_EQ_EQ] = ACTIONS(2513), - [anon_sym_BANG_EQ] = ACTIONS(2513), - [anon_sym_LT_EQ] = ACTIONS(2513), - [anon_sym_GT_EQ] = ACTIONS(2513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_COLON] = ACTIONS(3819), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_QMARK] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_go] = ACTIONS(2513), - [anon_sym_spawn] = ACTIONS(2513), - [anon_sym_json_DOTdecode] = ACTIONS(2513), - [anon_sym_LBRACK2] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_LT_DASH] = ACTIONS(2513), - [anon_sym_LT_LT] = ACTIONS(2513), - [anon_sym_GT_GT] = ACTIONS(2513), - [anon_sym_GT_GT_GT] = ACTIONS(2513), - [anon_sym_AMP_CARET] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2513), - [anon_sym_or] = ACTIONS(2513), - [sym_none] = ACTIONS(2513), - [sym_true] = ACTIONS(2513), - [sym_false] = ACTIONS(2513), - [sym_nil] = ACTIONS(2513), - [anon_sym_QMARK_DOT] = ACTIONS(2513), - [anon_sym_POUND_LBRACK] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_DOLLARif] = ACTIONS(2513), - [anon_sym_is] = ACTIONS(2513), - [anon_sym_BANGis] = ACTIONS(2513), - [anon_sym_in] = ACTIONS(2513), - [anon_sym_BANGin] = ACTIONS(2513), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_select] = ACTIONS(2513), - [anon_sym_lock] = ACTIONS(2513), - [anon_sym_rlock] = ACTIONS(2513), - [anon_sym_unsafe] = ACTIONS(2513), - [anon_sym_sql] = ACTIONS(2513), - [sym_int_literal] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2513), - [sym_rune_literal] = ACTIONS(2513), - [sym_pseudo_compile_time_identifier] = ACTIONS(2513), - [anon_sym_shared] = ACTIONS(2513), - [anon_sym_map_LBRACK] = ACTIONS(2513), - [anon_sym_chan] = ACTIONS(2513), - [anon_sym_thread] = ACTIONS(2513), - [anon_sym_atomic] = ACTIONS(2513), - [sym___double_quote] = ACTIONS(2513), - [sym___single_quote] = ACTIONS(2513), - [sym___c_double_quote] = ACTIONS(2513), - [sym___c_single_quote] = ACTIONS(2513), - [sym___r_double_quote] = ACTIONS(2513), - [sym___r_single_quote] = ACTIONS(2513), + [sym_reference_expression] = STATE(4365), + [sym_type_reference_expression] = STATE(1904), + [sym_plain_type] = STATE(2032), + [sym__plain_type_without_special] = STATE(1978), + [sym_anon_struct_type] = STATE(1980), + [sym_multi_return_type] = STATE(1978), + [sym_result_type] = STATE(1978), + [sym_option_type] = STATE(1978), + [sym_qualified_type] = STATE(1904), + [sym_fixed_array_type] = STATE(1980), + [sym_array_type] = STATE(1980), + [sym_pointer_type] = STATE(1980), + [sym_wrong_pointer_type] = STATE(1980), + [sym_map_type] = STATE(1980), + [sym_channel_type] = STATE(1980), + [sym_shared_type] = STATE(1980), + [sym_thread_type] = STATE(1980), + [sym_atomic_type] = STATE(1980), + [sym_generic_type] = STATE(1980), + [sym_function_type] = STATE(1980), + [sym_identifier] = ACTIONS(3797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(595), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(3799), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(3801), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(3803), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(3805), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_QMARK] = ACTIONS(3807), + [anon_sym_BANG] = ACTIONS(3809), + [anon_sym_LBRACK2] = ACTIONS(3811), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(3813), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(595), + [anon_sym_POUND_LBRACK] = ACTIONS(595), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(595), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(595), + [anon_sym_STAR_EQ] = ACTIONS(595), + [anon_sym_SLASH_EQ] = ACTIONS(595), + [anon_sym_PERCENT_EQ] = ACTIONS(595), + [anon_sym_LT_LT_EQ] = ACTIONS(595), + [anon_sym_GT_GT_EQ] = ACTIONS(595), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(595), + [anon_sym_AMP_EQ] = ACTIONS(595), + [anon_sym_AMP_CARET_EQ] = ACTIONS(595), + [anon_sym_PLUS_EQ] = ACTIONS(595), + [anon_sym_DASH_EQ] = ACTIONS(595), + [anon_sym_PIPE_EQ] = ACTIONS(595), + [anon_sym_CARET_EQ] = ACTIONS(595), + [anon_sym_COLON_EQ] = ACTIONS(595), + [anon_sym_shared] = ACTIONS(3815), + [anon_sym_map_LBRACK] = ACTIONS(3817), + [anon_sym_chan] = ACTIONS(3819), + [anon_sym_thread] = ACTIONS(3821), + [anon_sym_atomic] = ACTIONS(3823), }, [1253] = { [sym_line_comment] = STATE(1253), [sym_block_comment] = STATE(1253), - [sym_identifier] = ACTIONS(2459), - [anon_sym_LF] = ACTIONS(2459), - [anon_sym_CR] = ACTIONS(2459), - [anon_sym_CR_LF] = ACTIONS(2459), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2459), - [anon_sym_DOT] = ACTIONS(2459), - [anon_sym_as] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [anon_sym_COMMA] = ACTIONS(2459), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_RPAREN] = ACTIONS(2459), - [anon_sym_PIPE] = ACTIONS(2459), - [anon_sym_fn] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2459), - [anon_sym_SLASH] = ACTIONS(2459), - [anon_sym_PERCENT] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2459), - [anon_sym_GT] = ACTIONS(2459), - [anon_sym_EQ_EQ] = ACTIONS(2459), - [anon_sym_BANG_EQ] = ACTIONS(2459), - [anon_sym_LT_EQ] = ACTIONS(2459), - [anon_sym_GT_EQ] = ACTIONS(2459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2459), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_mut] = ACTIONS(2459), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [anon_sym_QMARK] = ACTIONS(2459), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_go] = ACTIONS(2459), - [anon_sym_spawn] = ACTIONS(2459), - [anon_sym_json_DOTdecode] = ACTIONS(2459), - [anon_sym_LBRACK2] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_CARET] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_LT_DASH] = ACTIONS(2459), - [anon_sym_LT_LT] = ACTIONS(2459), - [anon_sym_GT_GT] = ACTIONS(2459), - [anon_sym_GT_GT_GT] = ACTIONS(2459), - [anon_sym_AMP_CARET] = ACTIONS(2459), - [anon_sym_AMP_AMP] = ACTIONS(2459), - [anon_sym_PIPE_PIPE] = ACTIONS(2459), - [anon_sym_or] = ACTIONS(2459), - [sym_none] = ACTIONS(2459), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_nil] = ACTIONS(2459), - [anon_sym_QMARK_DOT] = ACTIONS(2459), - [anon_sym_POUND_LBRACK] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_DOLLARif] = ACTIONS(2459), - [anon_sym_is] = ACTIONS(2459), - [anon_sym_BANGis] = ACTIONS(2459), - [anon_sym_in] = ACTIONS(2459), - [anon_sym_BANGin] = ACTIONS(2459), - [anon_sym_match] = ACTIONS(2459), - [anon_sym_select] = ACTIONS(2459), - [anon_sym_lock] = ACTIONS(2459), - [anon_sym_rlock] = ACTIONS(2459), - [anon_sym_unsafe] = ACTIONS(2459), - [anon_sym_sql] = ACTIONS(2459), - [sym_int_literal] = ACTIONS(2459), - [sym_float_literal] = ACTIONS(2459), - [sym_rune_literal] = ACTIONS(2459), - [sym_pseudo_compile_time_identifier] = ACTIONS(2459), - [anon_sym_shared] = ACTIONS(2459), - [anon_sym_map_LBRACK] = ACTIONS(2459), - [anon_sym_chan] = ACTIONS(2459), - [anon_sym_thread] = ACTIONS(2459), - [anon_sym_atomic] = ACTIONS(2459), - [sym___double_quote] = ACTIONS(2459), - [sym___single_quote] = ACTIONS(2459), - [sym___c_double_quote] = ACTIONS(2459), - [sym___c_single_quote] = ACTIONS(2459), - [sym___r_double_quote] = ACTIONS(2459), - [sym___r_single_quote] = ACTIONS(2459), + [sym_reference_expression] = STATE(4365), + [sym_type_reference_expression] = STATE(1904), + [sym_plain_type] = STATE(1922), + [sym__plain_type_without_special] = STATE(1978), + [sym_anon_struct_type] = STATE(1980), + [sym_multi_return_type] = STATE(1978), + [sym_result_type] = STATE(1978), + [sym_option_type] = STATE(1978), + [sym_qualified_type] = STATE(1904), + [sym_fixed_array_type] = STATE(1980), + [sym_array_type] = STATE(1980), + [sym_pointer_type] = STATE(1980), + [sym_wrong_pointer_type] = STATE(1980), + [sym_map_type] = STATE(1980), + [sym_channel_type] = STATE(1980), + [sym_shared_type] = STATE(1980), + [sym_thread_type] = STATE(1980), + [sym_atomic_type] = STATE(1980), + [sym_generic_type] = STATE(1980), + [sym_function_type] = STATE(1980), + [sym_identifier] = ACTIONS(3797), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(3799), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3801), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3803), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(599), + [anon_sym_GT_EQ] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(3805), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(3807), + [anon_sym_BANG] = ACTIONS(3809), + [anon_sym_LBRACK2] = ACTIONS(3811), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(3813), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(599), + [anon_sym_STAR_EQ] = ACTIONS(599), + [anon_sym_SLASH_EQ] = ACTIONS(599), + [anon_sym_PERCENT_EQ] = ACTIONS(599), + [anon_sym_LT_LT_EQ] = ACTIONS(599), + [anon_sym_GT_GT_EQ] = ACTIONS(599), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(599), + [anon_sym_AMP_EQ] = ACTIONS(599), + [anon_sym_AMP_CARET_EQ] = ACTIONS(599), + [anon_sym_PLUS_EQ] = ACTIONS(599), + [anon_sym_DASH_EQ] = ACTIONS(599), + [anon_sym_PIPE_EQ] = ACTIONS(599), + [anon_sym_CARET_EQ] = ACTIONS(599), + [anon_sym_COLON_EQ] = ACTIONS(599), + [anon_sym_shared] = ACTIONS(3815), + [anon_sym_map_LBRACK] = ACTIONS(3817), + [anon_sym_chan] = ACTIONS(3819), + [anon_sym_thread] = ACTIONS(3821), + [anon_sym_atomic] = ACTIONS(3823), }, [1254] = { [sym_line_comment] = STATE(1254), [sym_block_comment] = STATE(1254), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_identifier] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_COMMA] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1765), - [anon_sym_PERCENT] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_RBRACK] = ACTIONS(1763), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_COLON] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1763), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_CARET] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1763), - [anon_sym_GT_GT] = ACTIONS(1765), - [anon_sym_GT_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_CARET] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_BANGin] = ACTIONS(1763), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1763), - [sym_rune_literal] = ACTIONS(1763), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1763), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1763), - [sym___single_quote] = ACTIONS(1763), - [sym___c_double_quote] = ACTIONS(1763), - [sym___c_single_quote] = ACTIONS(1763), - [sym___r_double_quote] = ACTIONS(1763), - [sym___r_single_quote] = ACTIONS(1763), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LF] = ACTIONS(2139), + [anon_sym_CR] = ACTIONS(2139), + [anon_sym_CR_LF] = ACTIONS(2139), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_RPAREN] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_mut] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(2139), + [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_QMARK] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(2139), + [anon_sym_spawn] = ACTIONS(2139), + [anon_sym_json_DOTdecode] = ACTIONS(2139), + [anon_sym_LBRACK2] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_LT_DASH] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_AMP_CARET] = ACTIONS(2139), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_or] = ACTIONS(2139), + [sym_none] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_nil] = ACTIONS(2139), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_POUND_LBRACK] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_DOLLARif] = ACTIONS(2139), + [anon_sym_is] = ACTIONS(2139), + [anon_sym_BANGis] = ACTIONS(2139), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_BANGin] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_select] = ACTIONS(2139), + [anon_sym_lock] = ACTIONS(2139), + [anon_sym_rlock] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_sql] = ACTIONS(2139), + [sym_int_literal] = ACTIONS(2139), + [sym_float_literal] = ACTIONS(2139), + [sym_rune_literal] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_c_SQUOTE] = ACTIONS(2139), + [anon_sym_c_DQUOTE] = ACTIONS(2139), + [anon_sym_r_SQUOTE] = ACTIONS(2139), + [anon_sym_r_DQUOTE] = ACTIONS(2139), + [sym_pseudo_compile_time_identifier] = ACTIONS(2139), + [anon_sym_shared] = ACTIONS(2139), + [anon_sym_map_LBRACK] = ACTIONS(2139), + [anon_sym_chan] = ACTIONS(2139), + [anon_sym_thread] = ACTIONS(2139), + [anon_sym_atomic] = ACTIONS(2139), }, [1255] = { [sym_line_comment] = STATE(1255), [sym_block_comment] = STATE(1255), - [sym_identifier] = ACTIONS(2219), - [anon_sym_LF] = ACTIONS(2219), - [anon_sym_CR] = ACTIONS(2219), - [anon_sym_CR_LF] = ACTIONS(2219), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_DOT] = ACTIONS(2219), - [anon_sym_as] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_COMMA] = ACTIONS(2219), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_RPAREN] = ACTIONS(2219), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_fn] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2219), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_GT] = ACTIONS(2219), - [anon_sym_EQ_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2219), - [anon_sym_GT_EQ] = ACTIONS(2219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2219), - [anon_sym_mut] = ACTIONS(2219), - [anon_sym_PLUS_PLUS] = ACTIONS(2219), - [anon_sym_DASH_DASH] = ACTIONS(2219), - [anon_sym_QMARK] = ACTIONS(2219), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_go] = ACTIONS(2219), - [anon_sym_spawn] = ACTIONS(2219), - [anon_sym_json_DOTdecode] = ACTIONS(2219), - [anon_sym_LBRACK2] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2219), - [anon_sym_CARET] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2219), - [anon_sym_LT_LT] = ACTIONS(2219), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2219), - [anon_sym_AMP_CARET] = ACTIONS(2219), - [anon_sym_AMP_AMP] = ACTIONS(2219), - [anon_sym_PIPE_PIPE] = ACTIONS(2219), - [anon_sym_or] = ACTIONS(2219), - [sym_none] = ACTIONS(2219), - [sym_true] = ACTIONS(2219), - [sym_false] = ACTIONS(2219), - [sym_nil] = ACTIONS(2219), - [anon_sym_QMARK_DOT] = ACTIONS(2219), - [anon_sym_POUND_LBRACK] = ACTIONS(2219), - [anon_sym_if] = ACTIONS(2219), - [anon_sym_DOLLARif] = ACTIONS(2219), - [anon_sym_is] = ACTIONS(2219), - [anon_sym_BANGis] = ACTIONS(2219), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_BANGin] = ACTIONS(2219), - [anon_sym_match] = ACTIONS(2219), - [anon_sym_select] = ACTIONS(2219), - [anon_sym_lock] = ACTIONS(2219), - [anon_sym_rlock] = ACTIONS(2219), - [anon_sym_unsafe] = ACTIONS(2219), - [anon_sym_sql] = ACTIONS(2219), - [sym_int_literal] = ACTIONS(2219), - [sym_float_literal] = ACTIONS(2219), - [sym_rune_literal] = ACTIONS(2219), - [sym_pseudo_compile_time_identifier] = ACTIONS(2219), - [anon_sym_shared] = ACTIONS(2219), - [anon_sym_map_LBRACK] = ACTIONS(2219), - [anon_sym_chan] = ACTIONS(2219), - [anon_sym_thread] = ACTIONS(2219), - [anon_sym_atomic] = ACTIONS(2219), - [sym___double_quote] = ACTIONS(2219), - [sym___single_quote] = ACTIONS(2219), - [sym___c_double_quote] = ACTIONS(2219), - [sym___c_single_quote] = ACTIONS(2219), - [sym___r_double_quote] = ACTIONS(2219), - [sym___r_single_quote] = ACTIONS(2219), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_identifier] = ACTIONS(1791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_PIPE] = ACTIONS(1791), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(1791), + [anon_sym_PERCENT] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_EQ_EQ] = ACTIONS(1789), + [anon_sym_BANG_EQ] = ACTIONS(1789), + [anon_sym_LT_EQ] = ACTIONS(1789), + [anon_sym_GT_EQ] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_RBRACK] = ACTIONS(1789), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_COLON] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1789), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_CARET] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym_LT_DASH] = ACTIONS(1789), + [anon_sym_LT_LT] = ACTIONS(1789), + [anon_sym_GT_GT] = ACTIONS(1791), + [anon_sym_GT_GT_GT] = ACTIONS(1789), + [anon_sym_AMP_CARET] = ACTIONS(1789), + [anon_sym_AMP_AMP] = ACTIONS(1789), + [anon_sym_PIPE_PIPE] = ACTIONS(1789), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1789), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_BANGin] = ACTIONS(1789), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1789), + [sym_rune_literal] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_c_SQUOTE] = ACTIONS(1789), + [anon_sym_c_DQUOTE] = ACTIONS(1789), + [anon_sym_r_SQUOTE] = ACTIONS(1789), + [anon_sym_r_DQUOTE] = ACTIONS(1789), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1789), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), }, [1256] = { [sym_line_comment] = STATE(1256), [sym_block_comment] = STATE(1256), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_identifier] = ACTIONS(1785), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_identifier] = ACTIONS(1783), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_COMMA] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(1783), - [anon_sym_SLASH] = ACTIONS(1785), - [anon_sym_PERCENT] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_GT_EQ] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_RBRACK] = ACTIONS(1783), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_mut] = ACTIONS(1785), - [anon_sym_COLON] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1783), - [anon_sym_DASH_DASH] = ACTIONS(1783), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(1785), - [anon_sym_spawn] = ACTIONS(1785), - [anon_sym_json_DOTdecode] = ACTIONS(1783), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1783), - [anon_sym_LT_LT] = ACTIONS(1783), - [anon_sym_GT_GT] = ACTIONS(1785), - [anon_sym_GT_GT_GT] = ACTIONS(1783), - [anon_sym_AMP_CARET] = ACTIONS(1783), - [anon_sym_AMP_AMP] = ACTIONS(1783), - [anon_sym_PIPE_PIPE] = ACTIONS(1783), - [anon_sym_or] = ACTIONS(1785), - [sym_none] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_nil] = ACTIONS(1785), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_DOLLARif] = ACTIONS(1785), - [anon_sym_is] = ACTIONS(1785), - [anon_sym_BANGis] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_BANGin] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_select] = ACTIONS(1785), - [anon_sym_lock] = ACTIONS(1785), - [anon_sym_rlock] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_sql] = ACTIONS(1785), - [sym_int_literal] = ACTIONS(1785), - [sym_float_literal] = ACTIONS(1783), - [sym_rune_literal] = ACTIONS(1783), - [sym_pseudo_compile_time_identifier] = ACTIONS(1785), - [anon_sym_shared] = ACTIONS(1785), - [anon_sym_map_LBRACK] = ACTIONS(1783), - [anon_sym_chan] = ACTIONS(1785), - [anon_sym_thread] = ACTIONS(1785), - [anon_sym_atomic] = ACTIONS(1785), - [sym___double_quote] = ACTIONS(1783), - [sym___single_quote] = ACTIONS(1783), - [sym___c_double_quote] = ACTIONS(1783), - [sym___c_single_quote] = ACTIONS(1783), - [sym___r_double_quote] = ACTIONS(1783), - [sym___r_single_quote] = ACTIONS(1783), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_COMMA] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_fn] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_STAR] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_PERCENT] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_EQ_EQ] = ACTIONS(1781), + [anon_sym_BANG_EQ] = ACTIONS(1781), + [anon_sym_LT_EQ] = ACTIONS(1781), + [anon_sym_GT_EQ] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_RBRACK] = ACTIONS(1781), + [anon_sym_struct] = ACTIONS(1783), + [anon_sym_mut] = ACTIONS(1783), + [anon_sym_COLON] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(1783), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1781), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(1781), + [anon_sym_CARET] = ACTIONS(1781), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_LT_DASH] = ACTIONS(1781), + [anon_sym_LT_LT] = ACTIONS(1781), + [anon_sym_GT_GT] = ACTIONS(1783), + [anon_sym_GT_GT_GT] = ACTIONS(1781), + [anon_sym_AMP_CARET] = ACTIONS(1781), + [anon_sym_AMP_AMP] = ACTIONS(1781), + [anon_sym_PIPE_PIPE] = ACTIONS(1781), + [anon_sym_or] = ACTIONS(1783), + [sym_none] = ACTIONS(1783), + [sym_true] = ACTIONS(1783), + [sym_false] = ACTIONS(1783), + [sym_nil] = ACTIONS(1783), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_DOLLARif] = ACTIONS(1783), + [anon_sym_is] = ACTIONS(1783), + [anon_sym_BANGis] = ACTIONS(1781), + [anon_sym_in] = ACTIONS(1783), + [anon_sym_BANGin] = ACTIONS(1781), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_select] = ACTIONS(1783), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1783), + [anon_sym_sql] = ACTIONS(1783), + [sym_int_literal] = ACTIONS(1783), + [sym_float_literal] = ACTIONS(1781), + [sym_rune_literal] = ACTIONS(1781), + [anon_sym_SQUOTE] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [anon_sym_c_SQUOTE] = ACTIONS(1781), + [anon_sym_c_DQUOTE] = ACTIONS(1781), + [anon_sym_r_SQUOTE] = ACTIONS(1781), + [anon_sym_r_DQUOTE] = ACTIONS(1781), + [sym_pseudo_compile_time_identifier] = ACTIONS(1783), + [anon_sym_shared] = ACTIONS(1783), + [anon_sym_map_LBRACK] = ACTIONS(1781), + [anon_sym_chan] = ACTIONS(1783), + [anon_sym_thread] = ACTIONS(1783), + [anon_sym_atomic] = ACTIONS(1783), }, [1257] = { [sym_line_comment] = STATE(1257), [sym_block_comment] = STATE(1257), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2320), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3564), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3837), - [anon_sym_LBRACK2] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_AMP_CARET] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_AMP_CARET_EQ] = ACTIONS(563), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_COLON_EQ] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - }, - [1258] = { - [sym_line_comment] = STATE(1258), - [sym_block_comment] = STATE(1258), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), [sym_identifier] = ACTIONS(1769), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_DOT] = ACTIONS(3825), [anon_sym_as] = ACTIONS(1769), [anon_sym_LBRACE] = ACTIONS(1767), [anon_sym_COMMA] = ACTIONS(1767), [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_LPAREN] = ACTIONS(3827), [anon_sym_PIPE] = ACTIONS(1769), [anon_sym_fn] = ACTIONS(1769), [anon_sym_PLUS] = ACTIONS(1769), @@ -161405,19 +161295,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1767), [anon_sym_LT_EQ] = ACTIONS(1767), [anon_sym_GT_EQ] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_LBRACK] = ACTIONS(3829), [anon_sym_RBRACK] = ACTIONS(1767), [anon_sym_struct] = ACTIONS(1769), [anon_sym_mut] = ACTIONS(1769), [anon_sym_COLON] = ACTIONS(1767), [anon_sym_PLUS_PLUS] = ACTIONS(1767), [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), [anon_sym_go] = ACTIONS(1769), [anon_sym_spawn] = ACTIONS(1769), [anon_sym_json_DOTdecode] = ACTIONS(1767), - [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_LBRACK2] = ACTIONS(3835), [anon_sym_TILDE] = ACTIONS(1767), [anon_sym_CARET] = ACTIONS(1767), [anon_sym_AMP] = ACTIONS(1769), @@ -161433,8 +161323,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1769), [sym_false] = ACTIONS(1769), [sym_nil] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), [anon_sym_if] = ACTIONS(1769), [anon_sym_DOLLARif] = ACTIONS(1769), [anon_sym_is] = ACTIONS(1769), @@ -161450,278 +161340,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1769), [sym_float_literal] = ACTIONS(1767), [sym_rune_literal] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_c_SQUOTE] = ACTIONS(1767), + [anon_sym_c_DQUOTE] = ACTIONS(1767), + [anon_sym_r_SQUOTE] = ACTIONS(1767), + [anon_sym_r_DQUOTE] = ACTIONS(1767), [sym_pseudo_compile_time_identifier] = ACTIONS(1769), [anon_sym_shared] = ACTIONS(1769), [anon_sym_map_LBRACK] = ACTIONS(1767), [anon_sym_chan] = ACTIONS(1769), [anon_sym_thread] = ACTIONS(1769), [anon_sym_atomic] = ACTIONS(1769), - [sym___double_quote] = ACTIONS(1767), - [sym___single_quote] = ACTIONS(1767), - [sym___c_double_quote] = ACTIONS(1767), - [sym___c_single_quote] = ACTIONS(1767), - [sym___r_double_quote] = ACTIONS(1767), - [sym___r_single_quote] = ACTIONS(1767), + }, + [1258] = { + [sym_line_comment] = STATE(1258), + [sym_block_comment] = STATE(1258), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2386), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3841), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_or] = ACTIONS(607), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_is] = ACTIONS(607), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(607), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_STAR_EQ] = ACTIONS(603), + [anon_sym_SLASH_EQ] = ACTIONS(603), + [anon_sym_PERCENT_EQ] = ACTIONS(603), + [anon_sym_LT_LT_EQ] = ACTIONS(603), + [anon_sym_GT_GT_EQ] = ACTIONS(603), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(603), + [anon_sym_AMP_EQ] = ACTIONS(603), + [anon_sym_AMP_CARET_EQ] = ACTIONS(603), + [anon_sym_PLUS_EQ] = ACTIONS(603), + [anon_sym_DASH_EQ] = ACTIONS(603), + [anon_sym_PIPE_EQ] = ACTIONS(603), + [anon_sym_CARET_EQ] = ACTIONS(603), + [anon_sym_COLON_EQ] = ACTIONS(603), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [1259] = { [sym_line_comment] = STATE(1259), [sym_block_comment] = STATE(1259), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_format_specifier] = STATE(4105), - [sym_identifier] = ACTIONS(3839), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_format_specifier] = STATE(4426), + [sym_identifier] = ACTIONS(3843), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3843), - [anon_sym_RBRACE] = ACTIONS(3843), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3845), - [anon_sym_fn] = ACTIONS(3839), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(3847), - [anon_sym_SLASH] = ACTIONS(3849), - [anon_sym_PERCENT] = ACTIONS(3847), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_EQ_EQ] = ACTIONS(3853), - [anon_sym_BANG_EQ] = ACTIONS(3853), - [anon_sym_LT_EQ] = ACTIONS(3853), - [anon_sym_GT_EQ] = ACTIONS(3853), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_struct] = ACTIONS(3839), - [anon_sym_mut] = ACTIONS(3839), - [anon_sym_COLON] = ACTIONS(3855), - [anon_sym_PLUS_PLUS] = ACTIONS(3857), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(3839), - [anon_sym_spawn] = ACTIONS(3839), - [anon_sym_json_DOTdecode] = ACTIONS(3843), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3849), - [anon_sym_LT_DASH] = ACTIONS(3843), - [anon_sym_LT_LT] = ACTIONS(3847), - [anon_sym_GT_GT] = ACTIONS(3849), - [anon_sym_GT_GT_GT] = ACTIONS(3847), - [anon_sym_AMP_CARET] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3863), - [anon_sym_PIPE_PIPE] = ACTIONS(3865), - [anon_sym_or] = ACTIONS(3867), - [sym_none] = ACTIONS(3839), - [sym_true] = ACTIONS(3839), - [sym_false] = ACTIONS(3839), - [sym_nil] = ACTIONS(3839), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(3839), - [anon_sym_DOLLARif] = ACTIONS(3839), - [anon_sym_is] = ACTIONS(3869), - [anon_sym_BANGis] = ACTIONS(3871), - [anon_sym_in] = ACTIONS(3873), - [anon_sym_BANGin] = ACTIONS(3875), - [anon_sym_match] = ACTIONS(3839), - [anon_sym_select] = ACTIONS(3839), - [anon_sym_lock] = ACTIONS(3839), - [anon_sym_rlock] = ACTIONS(3839), - [anon_sym_unsafe] = ACTIONS(3839), - [anon_sym_sql] = ACTIONS(3839), - [sym_int_literal] = ACTIONS(3839), - [sym_float_literal] = ACTIONS(3843), - [sym_rune_literal] = ACTIONS(3843), - [sym_pseudo_compile_time_identifier] = ACTIONS(3839), - [anon_sym_shared] = ACTIONS(3839), - [anon_sym_map_LBRACK] = ACTIONS(3843), - [anon_sym_chan] = ACTIONS(3839), - [anon_sym_thread] = ACTIONS(3839), - [anon_sym_atomic] = ACTIONS(3839), - [sym___double_quote] = ACTIONS(3843), - [sym___single_quote] = ACTIONS(3843), - [sym___c_double_quote] = ACTIONS(3843), - [sym___c_single_quote] = ACTIONS(3843), - [sym___r_double_quote] = ACTIONS(3843), - [sym___r_single_quote] = ACTIONS(3843), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(3845), + [anon_sym_LBRACE] = ACTIONS(3847), + [anon_sym_RBRACE] = ACTIONS(3847), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_fn] = ACTIONS(3843), + [anon_sym_PLUS] = ACTIONS(3849), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_STAR] = ACTIONS(3851), + [anon_sym_SLASH] = ACTIONS(3853), + [anon_sym_PERCENT] = ACTIONS(3851), + [anon_sym_LT] = ACTIONS(3855), + [anon_sym_GT] = ACTIONS(3855), + [anon_sym_EQ_EQ] = ACTIONS(3857), + [anon_sym_BANG_EQ] = ACTIONS(3857), + [anon_sym_LT_EQ] = ACTIONS(3857), + [anon_sym_GT_EQ] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_struct] = ACTIONS(3843), + [anon_sym_mut] = ACTIONS(3843), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_PLUS_PLUS] = ACTIONS(3861), + [anon_sym_DASH_DASH] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(3843), + [anon_sym_spawn] = ACTIONS(3843), + [anon_sym_json_DOTdecode] = ACTIONS(3847), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(3847), + [anon_sym_CARET] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_LT_DASH] = ACTIONS(3847), + [anon_sym_LT_LT] = ACTIONS(3851), + [anon_sym_GT_GT] = ACTIONS(3853), + [anon_sym_GT_GT_GT] = ACTIONS(3851), + [anon_sym_AMP_CARET] = ACTIONS(3851), + [anon_sym_AMP_AMP] = ACTIONS(3867), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_or] = ACTIONS(3871), + [sym_none] = ACTIONS(3843), + [sym_true] = ACTIONS(3843), + [sym_false] = ACTIONS(3843), + [sym_nil] = ACTIONS(3843), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(3843), + [anon_sym_DOLLARif] = ACTIONS(3843), + [anon_sym_is] = ACTIONS(3873), + [anon_sym_BANGis] = ACTIONS(3875), + [anon_sym_in] = ACTIONS(3877), + [anon_sym_BANGin] = ACTIONS(3879), + [anon_sym_match] = ACTIONS(3843), + [anon_sym_select] = ACTIONS(3843), + [anon_sym_lock] = ACTIONS(3843), + [anon_sym_rlock] = ACTIONS(3843), + [anon_sym_unsafe] = ACTIONS(3843), + [anon_sym_sql] = ACTIONS(3843), + [sym_int_literal] = ACTIONS(3843), + [sym_float_literal] = ACTIONS(3847), + [sym_rune_literal] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_c_SQUOTE] = ACTIONS(3847), + [anon_sym_c_DQUOTE] = ACTIONS(3847), + [anon_sym_r_SQUOTE] = ACTIONS(3847), + [anon_sym_r_DQUOTE] = ACTIONS(3847), + [sym_pseudo_compile_time_identifier] = ACTIONS(3843), + [anon_sym_shared] = ACTIONS(3843), + [anon_sym_map_LBRACK] = ACTIONS(3847), + [anon_sym_chan] = ACTIONS(3843), + [anon_sym_thread] = ACTIONS(3843), + [anon_sym_atomic] = ACTIONS(3843), }, [1260] = { [sym_line_comment] = STATE(1260), [sym_block_comment] = STATE(1260), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_format_specifier] = STATE(4072), - [sym_identifier] = ACTIONS(3839), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3843), - [anon_sym_RBRACE] = ACTIONS(3843), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3845), - [anon_sym_fn] = ACTIONS(3839), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(3847), - [anon_sym_SLASH] = ACTIONS(3849), - [anon_sym_PERCENT] = ACTIONS(3847), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_EQ_EQ] = ACTIONS(3853), - [anon_sym_BANG_EQ] = ACTIONS(3853), - [anon_sym_LT_EQ] = ACTIONS(3853), - [anon_sym_GT_EQ] = ACTIONS(3853), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_struct] = ACTIONS(3839), - [anon_sym_mut] = ACTIONS(3839), - [anon_sym_COLON] = ACTIONS(3855), - [anon_sym_PLUS_PLUS] = ACTIONS(3857), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(3839), - [anon_sym_spawn] = ACTIONS(3839), - [anon_sym_json_DOTdecode] = ACTIONS(3843), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3849), - [anon_sym_LT_DASH] = ACTIONS(3843), - [anon_sym_LT_LT] = ACTIONS(3847), - [anon_sym_GT_GT] = ACTIONS(3849), - [anon_sym_GT_GT_GT] = ACTIONS(3847), - [anon_sym_AMP_CARET] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3863), - [anon_sym_PIPE_PIPE] = ACTIONS(3865), - [anon_sym_or] = ACTIONS(3867), - [sym_none] = ACTIONS(3839), - [sym_true] = ACTIONS(3839), - [sym_false] = ACTIONS(3839), - [sym_nil] = ACTIONS(3839), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(3839), - [anon_sym_DOLLARif] = ACTIONS(3839), - [anon_sym_is] = ACTIONS(3869), - [anon_sym_BANGis] = ACTIONS(3871), - [anon_sym_in] = ACTIONS(3873), - [anon_sym_BANGin] = ACTIONS(3875), - [anon_sym_match] = ACTIONS(3839), - [anon_sym_select] = ACTIONS(3839), - [anon_sym_lock] = ACTIONS(3839), - [anon_sym_rlock] = ACTIONS(3839), - [anon_sym_unsafe] = ACTIONS(3839), - [anon_sym_sql] = ACTIONS(3839), - [sym_int_literal] = ACTIONS(3839), - [sym_float_literal] = ACTIONS(3843), - [sym_rune_literal] = ACTIONS(3843), - [sym_pseudo_compile_time_identifier] = ACTIONS(3839), - [anon_sym_shared] = ACTIONS(3839), - [anon_sym_map_LBRACK] = ACTIONS(3843), - [anon_sym_chan] = ACTIONS(3839), - [anon_sym_thread] = ACTIONS(3839), - [anon_sym_atomic] = ACTIONS(3839), - [sym___double_quote] = ACTIONS(3843), - [sym___single_quote] = ACTIONS(3843), - [sym___c_double_quote] = ACTIONS(3843), - [sym___c_single_quote] = ACTIONS(3843), - [sym___r_double_quote] = ACTIONS(3843), - [sym___r_single_quote] = ACTIONS(3843), - }, - [1261] = { - [sym_line_comment] = STATE(1261), - [sym_block_comment] = STATE(1261), - [sym_else_branch] = STATE(1381), - [sym_identifier] = ACTIONS(1799), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_COMMA] = ACTIONS(1797), - [anon_sym_RBRACE] = ACTIONS(1797), - [anon_sym_LPAREN] = ACTIONS(1797), - [anon_sym_PIPE] = ACTIONS(1799), - [anon_sym_fn] = ACTIONS(1799), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_SLASH] = ACTIONS(1799), - [anon_sym_PERCENT] = ACTIONS(1797), - [anon_sym_LT] = ACTIONS(1799), - [anon_sym_GT] = ACTIONS(1799), - [anon_sym_EQ_EQ] = ACTIONS(1797), - [anon_sym_BANG_EQ] = ACTIONS(1797), - [anon_sym_LT_EQ] = ACTIONS(1797), - [anon_sym_GT_EQ] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1797), - [anon_sym_RBRACK] = ACTIONS(1797), - [anon_sym_struct] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_COLON] = ACTIONS(1797), - [anon_sym_PLUS_PLUS] = ACTIONS(1797), - [anon_sym_DASH_DASH] = ACTIONS(1797), - [anon_sym_QMARK] = ACTIONS(1799), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_go] = ACTIONS(1799), - [anon_sym_spawn] = ACTIONS(1799), - [anon_sym_json_DOTdecode] = ACTIONS(1797), - [anon_sym_LBRACK2] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_LT_DASH] = ACTIONS(1797), - [anon_sym_LT_LT] = ACTIONS(1797), - [anon_sym_GT_GT] = ACTIONS(1799), - [anon_sym_GT_GT_GT] = ACTIONS(1797), - [anon_sym_AMP_CARET] = ACTIONS(1797), - [anon_sym_AMP_AMP] = ACTIONS(1797), - [anon_sym_PIPE_PIPE] = ACTIONS(1797), - [anon_sym_or] = ACTIONS(1799), - [sym_none] = ACTIONS(1799), - [sym_true] = ACTIONS(1799), - [sym_false] = ACTIONS(1799), - [sym_nil] = ACTIONS(1799), - [anon_sym_QMARK_DOT] = ACTIONS(1797), - [anon_sym_POUND_LBRACK] = ACTIONS(1797), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(3877), - [anon_sym_DOLLARif] = ACTIONS(1799), - [anon_sym_is] = ACTIONS(1799), - [anon_sym_BANGis] = ACTIONS(1797), - [anon_sym_in] = ACTIONS(1799), - [anon_sym_BANGin] = ACTIONS(1797), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_select] = ACTIONS(1799), - [anon_sym_lock] = ACTIONS(1799), - [anon_sym_rlock] = ACTIONS(1799), - [anon_sym_unsafe] = ACTIONS(1799), - [anon_sym_sql] = ACTIONS(1799), - [sym_int_literal] = ACTIONS(1799), - [sym_float_literal] = ACTIONS(1797), - [sym_rune_literal] = ACTIONS(1797), - [sym_pseudo_compile_time_identifier] = ACTIONS(1799), - [anon_sym_shared] = ACTIONS(1799), - [anon_sym_map_LBRACK] = ACTIONS(1797), - [anon_sym_chan] = ACTIONS(1799), - [anon_sym_thread] = ACTIONS(1799), - [anon_sym_atomic] = ACTIONS(1799), - [sym___double_quote] = ACTIONS(1797), - [sym___single_quote] = ACTIONS(1797), - [sym___c_double_quote] = ACTIONS(1797), - [sym___c_single_quote] = ACTIONS(1797), - [sym___r_double_quote] = ACTIONS(1797), - [sym___r_single_quote] = ACTIONS(1797), - }, - [1262] = { - [sym_line_comment] = STATE(1262), - [sym_block_comment] = STATE(1262), - [sym_else_branch] = STATE(1379), + [sym_else_branch] = STATE(1356), [sym_identifier] = ACTIONS(1805), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -161735,1085 +161541,331 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_fn] = ACTIONS(1805), [anon_sym_PLUS] = ACTIONS(1805), [anon_sym_DASH] = ACTIONS(1805), - [anon_sym_STAR] = ACTIONS(1803), - [anon_sym_SLASH] = ACTIONS(1805), - [anon_sym_PERCENT] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1805), - [anon_sym_GT] = ACTIONS(1805), - [anon_sym_EQ_EQ] = ACTIONS(1803), - [anon_sym_BANG_EQ] = ACTIONS(1803), - [anon_sym_LT_EQ] = ACTIONS(1803), - [anon_sym_GT_EQ] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_RBRACK] = ACTIONS(1803), - [anon_sym_struct] = ACTIONS(1805), - [anon_sym_mut] = ACTIONS(1805), - [anon_sym_COLON] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1803), - [anon_sym_DASH_DASH] = ACTIONS(1803), - [anon_sym_QMARK] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_go] = ACTIONS(1805), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1803), - [anon_sym_LBRACK2] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1805), - [anon_sym_LT_DASH] = ACTIONS(1803), - [anon_sym_LT_LT] = ACTIONS(1803), - [anon_sym_GT_GT] = ACTIONS(1805), - [anon_sym_GT_GT_GT] = ACTIONS(1803), - [anon_sym_AMP_CARET] = ACTIONS(1803), - [anon_sym_AMP_AMP] = ACTIONS(1803), - [anon_sym_PIPE_PIPE] = ACTIONS(1803), - [anon_sym_or] = ACTIONS(1805), - [sym_none] = ACTIONS(1805), - [sym_true] = ACTIONS(1805), - [sym_false] = ACTIONS(1805), - [sym_nil] = ACTIONS(1805), - [anon_sym_QMARK_DOT] = ACTIONS(1803), - [anon_sym_POUND_LBRACK] = ACTIONS(1803), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_else] = ACTIONS(3877), - [anon_sym_DOLLARif] = ACTIONS(1805), - [anon_sym_is] = ACTIONS(1805), - [anon_sym_BANGis] = ACTIONS(1803), - [anon_sym_in] = ACTIONS(1805), - [anon_sym_BANGin] = ACTIONS(1803), - [anon_sym_match] = ACTIONS(1805), - [anon_sym_select] = ACTIONS(1805), - [anon_sym_lock] = ACTIONS(1805), - [anon_sym_rlock] = ACTIONS(1805), - [anon_sym_unsafe] = ACTIONS(1805), - [anon_sym_sql] = ACTIONS(1805), - [sym_int_literal] = ACTIONS(1805), - [sym_float_literal] = ACTIONS(1803), - [sym_rune_literal] = ACTIONS(1803), - [sym_pseudo_compile_time_identifier] = ACTIONS(1805), - [anon_sym_shared] = ACTIONS(1805), - [anon_sym_map_LBRACK] = ACTIONS(1803), - [anon_sym_chan] = ACTIONS(1805), - [anon_sym_thread] = ACTIONS(1805), - [anon_sym_atomic] = ACTIONS(1805), - [sym___double_quote] = ACTIONS(1803), - [sym___single_quote] = ACTIONS(1803), - [sym___c_double_quote] = ACTIONS(1803), - [sym___c_single_quote] = ACTIONS(1803), - [sym___r_double_quote] = ACTIONS(1803), - [sym___r_single_quote] = ACTIONS(1803), - }, - [1263] = { - [sym_line_comment] = STATE(1263), - [sym_block_comment] = STATE(1263), - [sym_identifier] = ACTIONS(1913), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1913), - [anon_sym_as] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_COMMA] = ACTIONS(1911), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1913), - [anon_sym_fn] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1913), - [anon_sym_PERCENT] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1913), - [anon_sym_EQ_EQ] = ACTIONS(1911), - [anon_sym_BANG_EQ] = ACTIONS(1911), - [anon_sym_LT_EQ] = ACTIONS(1911), - [anon_sym_GT_EQ] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_RBRACK] = ACTIONS(1911), - [anon_sym_struct] = ACTIONS(1913), - [anon_sym_mut] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_PLUS_PLUS] = ACTIONS(1911), - [anon_sym_DASH_DASH] = ACTIONS(1911), - [anon_sym_QMARK] = ACTIONS(1913), - [anon_sym_BANG] = ACTIONS(1913), - [anon_sym_go] = ACTIONS(1913), - [anon_sym_spawn] = ACTIONS(1913), - [anon_sym_json_DOTdecode] = ACTIONS(1911), - [anon_sym_LBRACK2] = ACTIONS(1913), - [anon_sym_TILDE] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym_AMP] = ACTIONS(1913), - [anon_sym_LT_DASH] = ACTIONS(1911), - [anon_sym_LT_LT] = ACTIONS(1911), - [anon_sym_GT_GT] = ACTIONS(1913), - [anon_sym_GT_GT_GT] = ACTIONS(1911), - [anon_sym_AMP_CARET] = ACTIONS(1911), - [anon_sym_AMP_AMP] = ACTIONS(1911), - [anon_sym_PIPE_PIPE] = ACTIONS(1911), - [anon_sym_or] = ACTIONS(1913), - [sym_none] = ACTIONS(1913), - [sym_true] = ACTIONS(1913), - [sym_false] = ACTIONS(1913), - [sym_nil] = ACTIONS(1913), - [anon_sym_QMARK_DOT] = ACTIONS(1911), - [anon_sym_POUND_LBRACK] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_DOLLARif] = ACTIONS(1913), - [anon_sym_DOLLARelse] = ACTIONS(3879), - [anon_sym_is] = ACTIONS(1913), - [anon_sym_BANGis] = ACTIONS(1911), - [anon_sym_in] = ACTIONS(1913), - [anon_sym_BANGin] = ACTIONS(1911), - [anon_sym_match] = ACTIONS(1913), - [anon_sym_select] = ACTIONS(1913), - [anon_sym_lock] = ACTIONS(1913), - [anon_sym_rlock] = ACTIONS(1913), - [anon_sym_unsafe] = ACTIONS(1913), - [anon_sym_sql] = ACTIONS(1913), - [sym_int_literal] = ACTIONS(1913), - [sym_float_literal] = ACTIONS(1911), - [sym_rune_literal] = ACTIONS(1911), - [sym_pseudo_compile_time_identifier] = ACTIONS(1913), - [anon_sym_shared] = ACTIONS(1913), - [anon_sym_map_LBRACK] = ACTIONS(1911), - [anon_sym_chan] = ACTIONS(1913), - [anon_sym_thread] = ACTIONS(1913), - [anon_sym_atomic] = ACTIONS(1913), - [sym___double_quote] = ACTIONS(1911), - [sym___single_quote] = ACTIONS(1911), - [sym___c_double_quote] = ACTIONS(1911), - [sym___c_single_quote] = ACTIONS(1911), - [sym___r_double_quote] = ACTIONS(1911), - [sym___r_single_quote] = ACTIONS(1911), - }, - [1264] = { - [sym_line_comment] = STATE(1264), - [sym_block_comment] = STATE(1264), - [sym_identifier] = ACTIONS(2736), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_as] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_COMMA] = ACTIONS(2734), - [anon_sym_RBRACE] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_fn] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2734), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_PERCENT] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2736), - [anon_sym_EQ_EQ] = ACTIONS(2734), - [anon_sym_BANG_EQ] = ACTIONS(2734), - [anon_sym_LT_EQ] = ACTIONS(2734), - [anon_sym_GT_EQ] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_RBRACK] = ACTIONS(2734), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_mut] = ACTIONS(2736), - [anon_sym_COLON] = ACTIONS(2734), - [anon_sym_PLUS_PLUS] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2734), - [anon_sym_QMARK] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_go] = ACTIONS(2736), - [anon_sym_spawn] = ACTIONS(2736), - [anon_sym_json_DOTdecode] = ACTIONS(2734), - [anon_sym_LBRACK2] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2734), - [anon_sym_CARET] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_LT_DASH] = ACTIONS(2734), - [anon_sym_LT_LT] = ACTIONS(2734), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_GT_GT_GT] = ACTIONS(2734), - [anon_sym_AMP_CARET] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [anon_sym_or] = ACTIONS(2736), - [sym_none] = ACTIONS(2736), - [sym_true] = ACTIONS(2736), - [sym_false] = ACTIONS(2736), - [sym_nil] = ACTIONS(2736), - [anon_sym_QMARK_DOT] = ACTIONS(2734), - [anon_sym_POUND_LBRACK] = ACTIONS(2734), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_DOLLARif] = ACTIONS(2736), - [anon_sym_is] = ACTIONS(2736), - [anon_sym_BANGis] = ACTIONS(2734), - [anon_sym_in] = ACTIONS(2736), - [anon_sym_BANGin] = ACTIONS(2734), - [anon_sym_match] = ACTIONS(2736), - [anon_sym_select] = ACTIONS(2736), - [anon_sym_lock] = ACTIONS(2736), - [anon_sym_rlock] = ACTIONS(2736), - [anon_sym_unsafe] = ACTIONS(2736), - [anon_sym_sql] = ACTIONS(2736), - [sym_int_literal] = ACTIONS(2736), - [sym_float_literal] = ACTIONS(2734), - [sym_rune_literal] = ACTIONS(2734), - [sym_pseudo_compile_time_identifier] = ACTIONS(2736), - [anon_sym_shared] = ACTIONS(2736), - [anon_sym_map_LBRACK] = ACTIONS(2734), - [anon_sym_chan] = ACTIONS(2736), - [anon_sym_thread] = ACTIONS(2736), - [anon_sym_atomic] = ACTIONS(2736), - [sym___double_quote] = ACTIONS(2734), - [sym___single_quote] = ACTIONS(2734), - [sym___c_double_quote] = ACTIONS(2734), - [sym___c_single_quote] = ACTIONS(2734), - [sym___r_double_quote] = ACTIONS(2734), - [sym___r_single_quote] = ACTIONS(2734), - }, - [1265] = { - [sym_line_comment] = STATE(1265), - [sym_block_comment] = STATE(1265), - [sym_identifier] = ACTIONS(2802), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2800), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_as] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_RBRACE] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_fn] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_STAR] = ACTIONS(2800), - [anon_sym_SLASH] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2800), - [anon_sym_LT] = ACTIONS(2802), - [anon_sym_GT] = ACTIONS(2802), - [anon_sym_EQ_EQ] = ACTIONS(2800), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_LT_EQ] = ACTIONS(2800), - [anon_sym_GT_EQ] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_RBRACK] = ACTIONS(2800), - [anon_sym_struct] = ACTIONS(2802), - [anon_sym_mut] = ACTIONS(2802), - [anon_sym_COLON] = ACTIONS(2800), - [anon_sym_PLUS_PLUS] = ACTIONS(2800), - [anon_sym_DASH_DASH] = ACTIONS(2800), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_go] = ACTIONS(2802), - [anon_sym_spawn] = ACTIONS(2802), - [anon_sym_json_DOTdecode] = ACTIONS(2800), - [anon_sym_LBRACK2] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2800), - [anon_sym_CARET] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2800), - [anon_sym_LT_LT] = ACTIONS(2800), - [anon_sym_GT_GT] = ACTIONS(2802), - [anon_sym_GT_GT_GT] = ACTIONS(2800), - [anon_sym_AMP_CARET] = ACTIONS(2800), - [anon_sym_AMP_AMP] = ACTIONS(2800), - [anon_sym_PIPE_PIPE] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2802), - [sym_none] = ACTIONS(2802), - [sym_true] = ACTIONS(2802), - [sym_false] = ACTIONS(2802), - [sym_nil] = ACTIONS(2802), - [anon_sym_QMARK_DOT] = ACTIONS(2800), - [anon_sym_POUND_LBRACK] = ACTIONS(2800), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_DOLLARif] = ACTIONS(2802), - [anon_sym_is] = ACTIONS(2802), - [anon_sym_BANGis] = ACTIONS(2800), - [anon_sym_in] = ACTIONS(2802), - [anon_sym_BANGin] = ACTIONS(2800), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_select] = ACTIONS(2802), - [anon_sym_lock] = ACTIONS(2802), - [anon_sym_rlock] = ACTIONS(2802), - [anon_sym_unsafe] = ACTIONS(2802), - [anon_sym_sql] = ACTIONS(2802), - [sym_int_literal] = ACTIONS(2802), - [sym_float_literal] = ACTIONS(2800), - [sym_rune_literal] = ACTIONS(2800), - [sym_pseudo_compile_time_identifier] = ACTIONS(2802), - [anon_sym_shared] = ACTIONS(2802), - [anon_sym_map_LBRACK] = ACTIONS(2800), - [anon_sym_chan] = ACTIONS(2802), - [anon_sym_thread] = ACTIONS(2802), - [anon_sym_atomic] = ACTIONS(2802), - [sym___double_quote] = ACTIONS(2800), - [sym___single_quote] = ACTIONS(2800), - [sym___c_double_quote] = ACTIONS(2800), - [sym___c_single_quote] = ACTIONS(2800), - [sym___r_double_quote] = ACTIONS(2800), - [sym___r_single_quote] = ACTIONS(2800), - }, - [1266] = { - [sym_line_comment] = STATE(1266), - [sym_block_comment] = STATE(1266), - [sym_identifier] = ACTIONS(2798), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_as] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_COMMA] = ACTIONS(2796), - [anon_sym_RBRACE] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_fn] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_SLASH] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2796), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_GT] = ACTIONS(2798), - [anon_sym_EQ_EQ] = ACTIONS(2796), - [anon_sym_BANG_EQ] = ACTIONS(2796), - [anon_sym_LT_EQ] = ACTIONS(2796), - [anon_sym_GT_EQ] = ACTIONS(2796), - [anon_sym_LBRACK] = ACTIONS(2796), - [anon_sym_RBRACK] = ACTIONS(2796), - [anon_sym_struct] = ACTIONS(2798), - [anon_sym_mut] = ACTIONS(2798), - [anon_sym_COLON] = ACTIONS(2796), - [anon_sym_PLUS_PLUS] = ACTIONS(2796), - [anon_sym_DASH_DASH] = ACTIONS(2796), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2798), - [anon_sym_go] = ACTIONS(2798), - [anon_sym_spawn] = ACTIONS(2798), - [anon_sym_json_DOTdecode] = ACTIONS(2796), - [anon_sym_LBRACK2] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2796), - [anon_sym_CARET] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2796), - [anon_sym_LT_LT] = ACTIONS(2796), - [anon_sym_GT_GT] = ACTIONS(2798), - [anon_sym_GT_GT_GT] = ACTIONS(2796), - [anon_sym_AMP_CARET] = ACTIONS(2796), - [anon_sym_AMP_AMP] = ACTIONS(2796), - [anon_sym_PIPE_PIPE] = ACTIONS(2796), - [anon_sym_or] = ACTIONS(2798), - [sym_none] = ACTIONS(2798), - [sym_true] = ACTIONS(2798), - [sym_false] = ACTIONS(2798), - [sym_nil] = ACTIONS(2798), - [anon_sym_QMARK_DOT] = ACTIONS(2796), - [anon_sym_POUND_LBRACK] = ACTIONS(2796), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_DOLLARif] = ACTIONS(2798), - [anon_sym_is] = ACTIONS(2798), - [anon_sym_BANGis] = ACTIONS(2796), - [anon_sym_in] = ACTIONS(2798), - [anon_sym_BANGin] = ACTIONS(2796), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_select] = ACTIONS(2798), - [anon_sym_lock] = ACTIONS(2798), - [anon_sym_rlock] = ACTIONS(2798), - [anon_sym_unsafe] = ACTIONS(2798), - [anon_sym_sql] = ACTIONS(2798), - [sym_int_literal] = ACTIONS(2798), - [sym_float_literal] = ACTIONS(2796), - [sym_rune_literal] = ACTIONS(2796), - [sym_pseudo_compile_time_identifier] = ACTIONS(2798), - [anon_sym_shared] = ACTIONS(2798), - [anon_sym_map_LBRACK] = ACTIONS(2796), - [anon_sym_chan] = ACTIONS(2798), - [anon_sym_thread] = ACTIONS(2798), - [anon_sym_atomic] = ACTIONS(2798), - [sym___double_quote] = ACTIONS(2796), - [sym___single_quote] = ACTIONS(2796), - [sym___c_double_quote] = ACTIONS(2796), - [sym___c_single_quote] = ACTIONS(2796), - [sym___r_double_quote] = ACTIONS(2796), - [sym___r_single_quote] = ACTIONS(2796), - }, - [1267] = { - [sym_line_comment] = STATE(1267), - [sym_block_comment] = STATE(1267), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_identifier] = ACTIONS(1795), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3845), - [anon_sym_fn] = ACTIONS(1795), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(3847), - [anon_sym_SLASH] = ACTIONS(3849), - [anon_sym_PERCENT] = ACTIONS(3847), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_EQ_EQ] = ACTIONS(3853), - [anon_sym_BANG_EQ] = ACTIONS(3853), - [anon_sym_LT_EQ] = ACTIONS(3853), - [anon_sym_GT_EQ] = ACTIONS(3853), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_struct] = ACTIONS(1795), - [anon_sym_mut] = ACTIONS(1795), - [anon_sym_COLON] = ACTIONS(1793), - [anon_sym_PLUS_PLUS] = ACTIONS(3857), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(1795), - [anon_sym_spawn] = ACTIONS(1795), - [anon_sym_json_DOTdecode] = ACTIONS(1793), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3849), - [anon_sym_LT_DASH] = ACTIONS(1793), - [anon_sym_LT_LT] = ACTIONS(3847), - [anon_sym_GT_GT] = ACTIONS(3849), - [anon_sym_GT_GT_GT] = ACTIONS(3847), - [anon_sym_AMP_CARET] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3863), - [anon_sym_PIPE_PIPE] = ACTIONS(3865), - [anon_sym_or] = ACTIONS(3867), - [sym_none] = ACTIONS(1795), - [sym_true] = ACTIONS(1795), - [sym_false] = ACTIONS(1795), - [sym_nil] = ACTIONS(1795), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(1795), - [anon_sym_DOLLARif] = ACTIONS(1795), - [anon_sym_is] = ACTIONS(3869), - [anon_sym_BANGis] = ACTIONS(3871), - [anon_sym_in] = ACTIONS(3873), - [anon_sym_BANGin] = ACTIONS(3875), - [anon_sym_match] = ACTIONS(1795), - [anon_sym_select] = ACTIONS(1795), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1795), - [anon_sym_sql] = ACTIONS(1795), - [sym_int_literal] = ACTIONS(1795), - [sym_float_literal] = ACTIONS(1793), - [sym_rune_literal] = ACTIONS(1793), - [sym_pseudo_compile_time_identifier] = ACTIONS(1795), - [anon_sym_shared] = ACTIONS(1795), - [anon_sym_map_LBRACK] = ACTIONS(1793), - [anon_sym_chan] = ACTIONS(1795), - [anon_sym_thread] = ACTIONS(1795), - [anon_sym_atomic] = ACTIONS(1795), - [sym___double_quote] = ACTIONS(1793), - [sym___single_quote] = ACTIONS(1793), - [sym___c_double_quote] = ACTIONS(1793), - [sym___c_single_quote] = ACTIONS(1793), - [sym___r_double_quote] = ACTIONS(1793), - [sym___r_single_quote] = ACTIONS(1793), - }, - [1268] = { - [sym_line_comment] = STATE(1268), - [sym_block_comment] = STATE(1268), - [sym_identifier] = ACTIONS(2788), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_DOT] = ACTIONS(2788), - [anon_sym_as] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_RBRACE] = ACTIONS(2786), - [anon_sym_LPAREN] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_fn] = ACTIONS(2788), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2786), - [anon_sym_SLASH] = ACTIONS(2788), - [anon_sym_PERCENT] = ACTIONS(2786), - [anon_sym_LT] = ACTIONS(2788), - [anon_sym_GT] = ACTIONS(2788), - [anon_sym_EQ_EQ] = ACTIONS(2786), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_LT_EQ] = ACTIONS(2786), - [anon_sym_GT_EQ] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_RBRACK] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2788), - [anon_sym_mut] = ACTIONS(2788), - [anon_sym_COLON] = ACTIONS(2786), - [anon_sym_PLUS_PLUS] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2786), - [anon_sym_QMARK] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_go] = ACTIONS(2788), - [anon_sym_spawn] = ACTIONS(2788), - [anon_sym_json_DOTdecode] = ACTIONS(2786), - [anon_sym_LBRACK2] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_CARET] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2788), - [anon_sym_LT_DASH] = ACTIONS(2786), - [anon_sym_LT_LT] = ACTIONS(2786), - [anon_sym_GT_GT] = ACTIONS(2788), - [anon_sym_GT_GT_GT] = ACTIONS(2786), - [anon_sym_AMP_CARET] = ACTIONS(2786), - [anon_sym_AMP_AMP] = ACTIONS(2786), - [anon_sym_PIPE_PIPE] = ACTIONS(2786), - [anon_sym_or] = ACTIONS(2788), - [sym_none] = ACTIONS(2788), - [sym_true] = ACTIONS(2788), - [sym_false] = ACTIONS(2788), - [sym_nil] = ACTIONS(2788), - [anon_sym_QMARK_DOT] = ACTIONS(2786), - [anon_sym_POUND_LBRACK] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_DOLLARif] = ACTIONS(2788), - [anon_sym_is] = ACTIONS(2788), - [anon_sym_BANGis] = ACTIONS(2786), - [anon_sym_in] = ACTIONS(2788), - [anon_sym_BANGin] = ACTIONS(2786), - [anon_sym_match] = ACTIONS(2788), - [anon_sym_select] = ACTIONS(2788), - [anon_sym_lock] = ACTIONS(2788), - [anon_sym_rlock] = ACTIONS(2788), - [anon_sym_unsafe] = ACTIONS(2788), - [anon_sym_sql] = ACTIONS(2788), - [sym_int_literal] = ACTIONS(2788), - [sym_float_literal] = ACTIONS(2786), - [sym_rune_literal] = ACTIONS(2786), - [sym_pseudo_compile_time_identifier] = ACTIONS(2788), - [anon_sym_shared] = ACTIONS(2788), - [anon_sym_map_LBRACK] = ACTIONS(2786), - [anon_sym_chan] = ACTIONS(2788), - [anon_sym_thread] = ACTIONS(2788), - [anon_sym_atomic] = ACTIONS(2788), - [sym___double_quote] = ACTIONS(2786), - [sym___single_quote] = ACTIONS(2786), - [sym___c_double_quote] = ACTIONS(2786), - [sym___c_single_quote] = ACTIONS(2786), - [sym___r_double_quote] = ACTIONS(2786), - [sym___r_single_quote] = ACTIONS(2786), - }, - [1269] = { - [sym_line_comment] = STATE(1269), - [sym_block_comment] = STATE(1269), - [sym_identifier] = ACTIONS(1843), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1843), - [anon_sym_as] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_COMMA] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_fn] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1843), - [anon_sym_PERCENT] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1843), - [anon_sym_GT] = ACTIONS(1843), - [anon_sym_EQ_EQ] = ACTIONS(1841), - [anon_sym_BANG_EQ] = ACTIONS(1841), - [anon_sym_LT_EQ] = ACTIONS(1841), - [anon_sym_GT_EQ] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_RBRACK] = ACTIONS(1841), - [anon_sym_struct] = ACTIONS(1843), - [anon_sym_mut] = ACTIONS(1843), - [anon_sym_COLON] = ACTIONS(1841), - [anon_sym_PLUS_PLUS] = ACTIONS(1841), - [anon_sym_DASH_DASH] = ACTIONS(1841), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_go] = ACTIONS(1843), - [anon_sym_spawn] = ACTIONS(1843), - [anon_sym_json_DOTdecode] = ACTIONS(1841), - [anon_sym_LBRACK2] = ACTIONS(1843), - [anon_sym_TILDE] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1841), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_LT_DASH] = ACTIONS(1841), - [anon_sym_LT_LT] = ACTIONS(1841), - [anon_sym_GT_GT] = ACTIONS(1843), - [anon_sym_GT_GT_GT] = ACTIONS(1841), - [anon_sym_AMP_CARET] = ACTIONS(1841), - [anon_sym_AMP_AMP] = ACTIONS(1841), - [anon_sym_PIPE_PIPE] = ACTIONS(1841), - [anon_sym_or] = ACTIONS(1843), - [sym_none] = ACTIONS(1843), - [sym_true] = ACTIONS(1843), - [sym_false] = ACTIONS(1843), - [sym_nil] = ACTIONS(1843), - [anon_sym_QMARK_DOT] = ACTIONS(1841), - [anon_sym_POUND_LBRACK] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_DOLLARif] = ACTIONS(1843), - [anon_sym_DOLLARelse] = ACTIONS(3881), - [anon_sym_is] = ACTIONS(1843), - [anon_sym_BANGis] = ACTIONS(1841), - [anon_sym_in] = ACTIONS(1843), - [anon_sym_BANGin] = ACTIONS(1841), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_select] = ACTIONS(1843), - [anon_sym_lock] = ACTIONS(1843), - [anon_sym_rlock] = ACTIONS(1843), - [anon_sym_unsafe] = ACTIONS(1843), - [anon_sym_sql] = ACTIONS(1843), - [sym_int_literal] = ACTIONS(1843), - [sym_float_literal] = ACTIONS(1841), - [sym_rune_literal] = ACTIONS(1841), - [sym_pseudo_compile_time_identifier] = ACTIONS(1843), - [anon_sym_shared] = ACTIONS(1843), - [anon_sym_map_LBRACK] = ACTIONS(1841), - [anon_sym_chan] = ACTIONS(1843), - [anon_sym_thread] = ACTIONS(1843), - [anon_sym_atomic] = ACTIONS(1843), - [sym___double_quote] = ACTIONS(1841), - [sym___single_quote] = ACTIONS(1841), - [sym___c_double_quote] = ACTIONS(1841), - [sym___c_single_quote] = ACTIONS(1841), - [sym___r_double_quote] = ACTIONS(1841), - [sym___r_single_quote] = ACTIONS(1841), - }, - [1270] = { - [sym_line_comment] = STATE(1270), - [sym_block_comment] = STATE(1270), - [sym_identifier] = ACTIONS(1813), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_as] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_COMMA] = ACTIONS(1811), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_PIPE] = ACTIONS(1813), - [anon_sym_fn] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_SLASH] = ACTIONS(1813), - [anon_sym_PERCENT] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_GT] = ACTIONS(1813), - [anon_sym_EQ_EQ] = ACTIONS(1811), - [anon_sym_BANG_EQ] = ACTIONS(1811), - [anon_sym_LT_EQ] = ACTIONS(1811), - [anon_sym_GT_EQ] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_RBRACK] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_mut] = ACTIONS(1813), - [anon_sym_COLON] = ACTIONS(1811), - [anon_sym_PLUS_PLUS] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1811), - [anon_sym_QMARK] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_go] = ACTIONS(1813), - [anon_sym_spawn] = ACTIONS(1813), - [anon_sym_json_DOTdecode] = ACTIONS(1811), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_LT_DASH] = ACTIONS(1811), - [anon_sym_LT_LT] = ACTIONS(1811), - [anon_sym_GT_GT] = ACTIONS(1813), - [anon_sym_GT_GT_GT] = ACTIONS(1811), - [anon_sym_AMP_CARET] = ACTIONS(1811), - [anon_sym_AMP_AMP] = ACTIONS(1811), - [anon_sym_PIPE_PIPE] = ACTIONS(1811), - [anon_sym_or] = ACTIONS(1813), - [sym_none] = ACTIONS(1813), - [sym_true] = ACTIONS(1813), - [sym_false] = ACTIONS(1813), - [sym_nil] = ACTIONS(1813), - [anon_sym_QMARK_DOT] = ACTIONS(1811), - [anon_sym_POUND_LBRACK] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_else] = ACTIONS(1813), - [anon_sym_DOLLARif] = ACTIONS(1813), - [anon_sym_is] = ACTIONS(1813), - [anon_sym_BANGis] = ACTIONS(1811), - [anon_sym_in] = ACTIONS(1813), - [anon_sym_BANGin] = ACTIONS(1811), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1813), - [anon_sym_rlock] = ACTIONS(1813), - [anon_sym_unsafe] = ACTIONS(1813), - [anon_sym_sql] = ACTIONS(1813), - [sym_int_literal] = ACTIONS(1813), - [sym_float_literal] = ACTIONS(1811), - [sym_rune_literal] = ACTIONS(1811), - [sym_pseudo_compile_time_identifier] = ACTIONS(1813), - [anon_sym_shared] = ACTIONS(1813), - [anon_sym_map_LBRACK] = ACTIONS(1811), - [anon_sym_chan] = ACTIONS(1813), - [anon_sym_thread] = ACTIONS(1813), - [anon_sym_atomic] = ACTIONS(1813), - [sym___double_quote] = ACTIONS(1811), - [sym___single_quote] = ACTIONS(1811), - [sym___c_double_quote] = ACTIONS(1811), - [sym___c_single_quote] = ACTIONS(1811), - [sym___r_double_quote] = ACTIONS(1811), - [sym___r_single_quote] = ACTIONS(1811), - }, - [1271] = { - [sym_line_comment] = STATE(1271), - [sym_block_comment] = STATE(1271), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_identifier] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_COMMA] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_SLASH] = ACTIONS(3887), - [anon_sym_PERCENT] = ACTIONS(3885), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_RBRACK] = ACTIONS(1763), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1763), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3887), - [anon_sym_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(3885), - [anon_sym_GT_GT] = ACTIONS(3887), - [anon_sym_GT_GT_GT] = ACTIONS(3885), - [anon_sym_AMP_CARET] = ACTIONS(3885), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_BANGin] = ACTIONS(1763), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1763), - [sym_rune_literal] = ACTIONS(1763), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1763), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1763), - [sym___single_quote] = ACTIONS(1763), - [sym___c_double_quote] = ACTIONS(1763), - [sym___c_single_quote] = ACTIONS(1763), - [sym___r_double_quote] = ACTIONS(1763), - [sym___r_single_quote] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_SLASH] = ACTIONS(1805), + [anon_sym_PERCENT] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_EQ_EQ] = ACTIONS(1803), + [anon_sym_BANG_EQ] = ACTIONS(1803), + [anon_sym_LT_EQ] = ACTIONS(1803), + [anon_sym_GT_EQ] = ACTIONS(1803), + [anon_sym_LBRACK] = ACTIONS(1803), + [anon_sym_RBRACK] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1805), + [anon_sym_mut] = ACTIONS(1805), + [anon_sym_COLON] = ACTIONS(1803), + [anon_sym_PLUS_PLUS] = ACTIONS(1803), + [anon_sym_DASH_DASH] = ACTIONS(1803), + [anon_sym_QMARK] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_go] = ACTIONS(1805), + [anon_sym_spawn] = ACTIONS(1805), + [anon_sym_json_DOTdecode] = ACTIONS(1803), + [anon_sym_LBRACK2] = ACTIONS(1805), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1805), + [anon_sym_LT_DASH] = ACTIONS(1803), + [anon_sym_LT_LT] = ACTIONS(1803), + [anon_sym_GT_GT] = ACTIONS(1805), + [anon_sym_GT_GT_GT] = ACTIONS(1803), + [anon_sym_AMP_CARET] = ACTIONS(1803), + [anon_sym_AMP_AMP] = ACTIONS(1803), + [anon_sym_PIPE_PIPE] = ACTIONS(1803), + [anon_sym_or] = ACTIONS(1805), + [sym_none] = ACTIONS(1805), + [sym_true] = ACTIONS(1805), + [sym_false] = ACTIONS(1805), + [sym_nil] = ACTIONS(1805), + [anon_sym_QMARK_DOT] = ACTIONS(1803), + [anon_sym_POUND_LBRACK] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_else] = ACTIONS(3881), + [anon_sym_DOLLARif] = ACTIONS(1805), + [anon_sym_is] = ACTIONS(1805), + [anon_sym_BANGis] = ACTIONS(1803), + [anon_sym_in] = ACTIONS(1805), + [anon_sym_BANGin] = ACTIONS(1803), + [anon_sym_match] = ACTIONS(1805), + [anon_sym_select] = ACTIONS(1805), + [anon_sym_lock] = ACTIONS(1805), + [anon_sym_rlock] = ACTIONS(1805), + [anon_sym_unsafe] = ACTIONS(1805), + [anon_sym_sql] = ACTIONS(1805), + [sym_int_literal] = ACTIONS(1805), + [sym_float_literal] = ACTIONS(1803), + [sym_rune_literal] = ACTIONS(1803), + [anon_sym_SQUOTE] = ACTIONS(1803), + [anon_sym_DQUOTE] = ACTIONS(1803), + [anon_sym_c_SQUOTE] = ACTIONS(1803), + [anon_sym_c_DQUOTE] = ACTIONS(1803), + [anon_sym_r_SQUOTE] = ACTIONS(1803), + [anon_sym_r_DQUOTE] = ACTIONS(1803), + [sym_pseudo_compile_time_identifier] = ACTIONS(1805), + [anon_sym_shared] = ACTIONS(1805), + [anon_sym_map_LBRACK] = ACTIONS(1803), + [anon_sym_chan] = ACTIONS(1805), + [anon_sym_thread] = ACTIONS(1805), + [anon_sym_atomic] = ACTIONS(1805), }, - [1272] = { - [sym_line_comment] = STATE(1272), - [sym_block_comment] = STATE(1272), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_identifier] = ACTIONS(1765), + [1261] = { + [sym_line_comment] = STATE(1261), + [sym_block_comment] = STATE(1261), + [sym_else_branch] = STATE(1364), + [sym_identifier] = ACTIONS(1799), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_COMMA] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_SLASH] = ACTIONS(3887), - [anon_sym_PERCENT] = ACTIONS(3885), - [anon_sym_LT] = ACTIONS(3891), - [anon_sym_GT] = ACTIONS(3891), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_RBRACK] = ACTIONS(1763), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1763), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3887), - [anon_sym_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(3885), - [anon_sym_GT_GT] = ACTIONS(3887), - [anon_sym_GT_GT_GT] = ACTIONS(3885), - [anon_sym_AMP_CARET] = ACTIONS(3885), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(3895), - [anon_sym_BANGin] = ACTIONS(3897), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1763), - [sym_rune_literal] = ACTIONS(1763), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1763), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1763), - [sym___single_quote] = ACTIONS(1763), - [sym___c_double_quote] = ACTIONS(1763), - [sym___c_single_quote] = ACTIONS(1763), - [sym___r_double_quote] = ACTIONS(1763), - [sym___r_single_quote] = ACTIONS(1763), + [anon_sym_DOT] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_COMMA] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_fn] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_SLASH] = ACTIONS(1799), + [anon_sym_PERCENT] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1799), + [anon_sym_GT] = ACTIONS(1799), + [anon_sym_EQ_EQ] = ACTIONS(1797), + [anon_sym_BANG_EQ] = ACTIONS(1797), + [anon_sym_LT_EQ] = ACTIONS(1797), + [anon_sym_GT_EQ] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1797), + [anon_sym_RBRACK] = ACTIONS(1797), + [anon_sym_struct] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_COLON] = ACTIONS(1797), + [anon_sym_PLUS_PLUS] = ACTIONS(1797), + [anon_sym_DASH_DASH] = ACTIONS(1797), + [anon_sym_QMARK] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_go] = ACTIONS(1799), + [anon_sym_spawn] = ACTIONS(1799), + [anon_sym_json_DOTdecode] = ACTIONS(1797), + [anon_sym_LBRACK2] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1797), + [anon_sym_CARET] = ACTIONS(1797), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_LT_DASH] = ACTIONS(1797), + [anon_sym_LT_LT] = ACTIONS(1797), + [anon_sym_GT_GT] = ACTIONS(1799), + [anon_sym_GT_GT_GT] = ACTIONS(1797), + [anon_sym_AMP_CARET] = ACTIONS(1797), + [anon_sym_AMP_AMP] = ACTIONS(1797), + [anon_sym_PIPE_PIPE] = ACTIONS(1797), + [anon_sym_or] = ACTIONS(1799), + [sym_none] = ACTIONS(1799), + [sym_true] = ACTIONS(1799), + [sym_false] = ACTIONS(1799), + [sym_nil] = ACTIONS(1799), + [anon_sym_QMARK_DOT] = ACTIONS(1797), + [anon_sym_POUND_LBRACK] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(3881), + [anon_sym_DOLLARif] = ACTIONS(1799), + [anon_sym_is] = ACTIONS(1799), + [anon_sym_BANGis] = ACTIONS(1797), + [anon_sym_in] = ACTIONS(1799), + [anon_sym_BANGin] = ACTIONS(1797), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_select] = ACTIONS(1799), + [anon_sym_lock] = ACTIONS(1799), + [anon_sym_rlock] = ACTIONS(1799), + [anon_sym_unsafe] = ACTIONS(1799), + [anon_sym_sql] = ACTIONS(1799), + [sym_int_literal] = ACTIONS(1799), + [sym_float_literal] = ACTIONS(1797), + [sym_rune_literal] = ACTIONS(1797), + [anon_sym_SQUOTE] = ACTIONS(1797), + [anon_sym_DQUOTE] = ACTIONS(1797), + [anon_sym_c_SQUOTE] = ACTIONS(1797), + [anon_sym_c_DQUOTE] = ACTIONS(1797), + [anon_sym_r_SQUOTE] = ACTIONS(1797), + [anon_sym_r_DQUOTE] = ACTIONS(1797), + [sym_pseudo_compile_time_identifier] = ACTIONS(1799), + [anon_sym_shared] = ACTIONS(1799), + [anon_sym_map_LBRACK] = ACTIONS(1797), + [anon_sym_chan] = ACTIONS(1799), + [anon_sym_thread] = ACTIONS(1799), + [anon_sym_atomic] = ACTIONS(1799), }, - [1273] = { - [sym_line_comment] = STATE(1273), - [sym_block_comment] = STATE(1273), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_identifier] = ACTIONS(3899), + [1262] = { + [sym_line_comment] = STATE(1262), + [sym_block_comment] = STATE(1262), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_format_specifier] = STATE(4491), + [sym_identifier] = ACTIONS(3843), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3901), - [anon_sym_COMMA] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_fn] = ACTIONS(3899), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_SLASH] = ACTIONS(3887), - [anon_sym_PERCENT] = ACTIONS(3885), - [anon_sym_LT] = ACTIONS(3891), - [anon_sym_GT] = ACTIONS(3891), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_RBRACK] = ACTIONS(3901), - [anon_sym_struct] = ACTIONS(3899), - [anon_sym_mut] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3857), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(3899), - [anon_sym_spawn] = ACTIONS(3899), - [anon_sym_json_DOTdecode] = ACTIONS(3901), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(3901), - [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3887), - [anon_sym_LT_DASH] = ACTIONS(3901), - [anon_sym_LT_LT] = ACTIONS(3885), - [anon_sym_GT_GT] = ACTIONS(3887), - [anon_sym_GT_GT_GT] = ACTIONS(3885), - [anon_sym_AMP_CARET] = ACTIONS(3885), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3867), - [sym_none] = ACTIONS(3899), - [sym_true] = ACTIONS(3899), - [sym_false] = ACTIONS(3899), - [sym_nil] = ACTIONS(3899), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(3899), - [anon_sym_DOLLARif] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(3869), - [anon_sym_BANGis] = ACTIONS(3871), - [anon_sym_in] = ACTIONS(3895), - [anon_sym_BANGin] = ACTIONS(3897), - [anon_sym_match] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_lock] = ACTIONS(3899), - [anon_sym_rlock] = ACTIONS(3899), - [anon_sym_unsafe] = ACTIONS(3899), - [anon_sym_sql] = ACTIONS(3899), - [sym_int_literal] = ACTIONS(3899), - [sym_float_literal] = ACTIONS(3901), - [sym_rune_literal] = ACTIONS(3901), - [sym_pseudo_compile_time_identifier] = ACTIONS(3899), - [anon_sym_shared] = ACTIONS(3899), - [anon_sym_map_LBRACK] = ACTIONS(3901), - [anon_sym_chan] = ACTIONS(3899), - [anon_sym_thread] = ACTIONS(3899), - [anon_sym_atomic] = ACTIONS(3899), - [sym___double_quote] = ACTIONS(3901), - [sym___single_quote] = ACTIONS(3901), - [sym___c_double_quote] = ACTIONS(3901), - [sym___c_single_quote] = ACTIONS(3901), - [sym___r_double_quote] = ACTIONS(3901), - [sym___r_single_quote] = ACTIONS(3901), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(3845), + [anon_sym_LBRACE] = ACTIONS(3847), + [anon_sym_RBRACE] = ACTIONS(3847), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_fn] = ACTIONS(3843), + [anon_sym_PLUS] = ACTIONS(3849), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_STAR] = ACTIONS(3851), + [anon_sym_SLASH] = ACTIONS(3853), + [anon_sym_PERCENT] = ACTIONS(3851), + [anon_sym_LT] = ACTIONS(3855), + [anon_sym_GT] = ACTIONS(3855), + [anon_sym_EQ_EQ] = ACTIONS(3857), + [anon_sym_BANG_EQ] = ACTIONS(3857), + [anon_sym_LT_EQ] = ACTIONS(3857), + [anon_sym_GT_EQ] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_struct] = ACTIONS(3843), + [anon_sym_mut] = ACTIONS(3843), + [anon_sym_COLON] = ACTIONS(3859), + [anon_sym_PLUS_PLUS] = ACTIONS(3861), + [anon_sym_DASH_DASH] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(3843), + [anon_sym_spawn] = ACTIONS(3843), + [anon_sym_json_DOTdecode] = ACTIONS(3847), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(3847), + [anon_sym_CARET] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_LT_DASH] = ACTIONS(3847), + [anon_sym_LT_LT] = ACTIONS(3851), + [anon_sym_GT_GT] = ACTIONS(3853), + [anon_sym_GT_GT_GT] = ACTIONS(3851), + [anon_sym_AMP_CARET] = ACTIONS(3851), + [anon_sym_AMP_AMP] = ACTIONS(3867), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_or] = ACTIONS(3871), + [sym_none] = ACTIONS(3843), + [sym_true] = ACTIONS(3843), + [sym_false] = ACTIONS(3843), + [sym_nil] = ACTIONS(3843), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(3843), + [anon_sym_DOLLARif] = ACTIONS(3843), + [anon_sym_is] = ACTIONS(3873), + [anon_sym_BANGis] = ACTIONS(3875), + [anon_sym_in] = ACTIONS(3877), + [anon_sym_BANGin] = ACTIONS(3879), + [anon_sym_match] = ACTIONS(3843), + [anon_sym_select] = ACTIONS(3843), + [anon_sym_lock] = ACTIONS(3843), + [anon_sym_rlock] = ACTIONS(3843), + [anon_sym_unsafe] = ACTIONS(3843), + [anon_sym_sql] = ACTIONS(3843), + [sym_int_literal] = ACTIONS(3843), + [sym_float_literal] = ACTIONS(3847), + [sym_rune_literal] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_c_SQUOTE] = ACTIONS(3847), + [anon_sym_c_DQUOTE] = ACTIONS(3847), + [anon_sym_r_SQUOTE] = ACTIONS(3847), + [anon_sym_r_DQUOTE] = ACTIONS(3847), + [sym_pseudo_compile_time_identifier] = ACTIONS(3843), + [anon_sym_shared] = ACTIONS(3843), + [anon_sym_map_LBRACK] = ACTIONS(3847), + [anon_sym_chan] = ACTIONS(3843), + [anon_sym_thread] = ACTIONS(3843), + [anon_sym_atomic] = ACTIONS(3843), }, - [1274] = { - [sym_line_comment] = STATE(1274), - [sym_block_comment] = STATE(1274), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_identifier] = ACTIONS(1765), + [1263] = { + [sym_line_comment] = STATE(1263), + [sym_block_comment] = STATE(1263), + [sym_identifier] = ACTIONS(2779), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_COMMA] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_SLASH] = ACTIONS(3887), - [anon_sym_PERCENT] = ACTIONS(3885), - [anon_sym_LT] = ACTIONS(3891), - [anon_sym_GT] = ACTIONS(3891), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_RBRACK] = ACTIONS(1763), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1763), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3887), - [anon_sym_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(3885), - [anon_sym_GT_GT] = ACTIONS(3887), - [anon_sym_GT_GT_GT] = ACTIONS(3885), - [anon_sym_AMP_CARET] = ACTIONS(3885), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(3895), - [anon_sym_BANGin] = ACTIONS(3897), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1763), - [sym_rune_literal] = ACTIONS(1763), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1763), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1763), - [sym___single_quote] = ACTIONS(1763), - [sym___c_double_quote] = ACTIONS(1763), - [sym___c_single_quote] = ACTIONS(1763), - [sym___r_double_quote] = ACTIONS(1763), - [sym___r_single_quote] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(2777), + [anon_sym_DOT] = ACTIONS(2779), + [anon_sym_as] = ACTIONS(2779), + [anon_sym_LBRACE] = ACTIONS(2777), + [anon_sym_COMMA] = ACTIONS(2777), + [anon_sym_RBRACE] = ACTIONS(2777), + [anon_sym_LPAREN] = ACTIONS(2777), + [anon_sym_PIPE] = ACTIONS(2779), + [anon_sym_fn] = ACTIONS(2779), + [anon_sym_PLUS] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2777), + [anon_sym_SLASH] = ACTIONS(2779), + [anon_sym_PERCENT] = ACTIONS(2777), + [anon_sym_LT] = ACTIONS(2779), + [anon_sym_GT] = ACTIONS(2779), + [anon_sym_EQ_EQ] = ACTIONS(2777), + [anon_sym_BANG_EQ] = ACTIONS(2777), + [anon_sym_LT_EQ] = ACTIONS(2777), + [anon_sym_GT_EQ] = ACTIONS(2777), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_RBRACK] = ACTIONS(2777), + [anon_sym_struct] = ACTIONS(2779), + [anon_sym_mut] = ACTIONS(2779), + [anon_sym_COLON] = ACTIONS(2777), + [anon_sym_PLUS_PLUS] = ACTIONS(2777), + [anon_sym_DASH_DASH] = ACTIONS(2777), + [anon_sym_QMARK] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_go] = ACTIONS(2779), + [anon_sym_spawn] = ACTIONS(2779), + [anon_sym_json_DOTdecode] = ACTIONS(2777), + [anon_sym_LBRACK2] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2777), + [anon_sym_CARET] = ACTIONS(2777), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_LT_DASH] = ACTIONS(2777), + [anon_sym_LT_LT] = ACTIONS(2777), + [anon_sym_GT_GT] = ACTIONS(2779), + [anon_sym_GT_GT_GT] = ACTIONS(2777), + [anon_sym_AMP_CARET] = ACTIONS(2777), + [anon_sym_AMP_AMP] = ACTIONS(2777), + [anon_sym_PIPE_PIPE] = ACTIONS(2777), + [anon_sym_or] = ACTIONS(2779), + [sym_none] = ACTIONS(2779), + [sym_true] = ACTIONS(2779), + [sym_false] = ACTIONS(2779), + [sym_nil] = ACTIONS(2779), + [anon_sym_QMARK_DOT] = ACTIONS(2777), + [anon_sym_POUND_LBRACK] = ACTIONS(2777), + [anon_sym_if] = ACTIONS(2779), + [anon_sym_DOLLARif] = ACTIONS(2779), + [anon_sym_is] = ACTIONS(2779), + [anon_sym_BANGis] = ACTIONS(2777), + [anon_sym_in] = ACTIONS(2779), + [anon_sym_BANGin] = ACTIONS(2777), + [anon_sym_match] = ACTIONS(2779), + [anon_sym_select] = ACTIONS(2779), + [anon_sym_lock] = ACTIONS(2779), + [anon_sym_rlock] = ACTIONS(2779), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2779), + [sym_int_literal] = ACTIONS(2779), + [sym_float_literal] = ACTIONS(2777), + [sym_rune_literal] = ACTIONS(2777), + [anon_sym_SQUOTE] = ACTIONS(2777), + [anon_sym_DQUOTE] = ACTIONS(2777), + [anon_sym_c_SQUOTE] = ACTIONS(2777), + [anon_sym_c_DQUOTE] = ACTIONS(2777), + [anon_sym_r_SQUOTE] = ACTIONS(2777), + [anon_sym_r_DQUOTE] = ACTIONS(2777), + [sym_pseudo_compile_time_identifier] = ACTIONS(2779), + [anon_sym_shared] = ACTIONS(2779), + [anon_sym_map_LBRACK] = ACTIONS(2777), + [anon_sym_chan] = ACTIONS(2779), + [anon_sym_thread] = ACTIONS(2779), + [anon_sym_atomic] = ACTIONS(2779), }, - [1275] = { - [sym_line_comment] = STATE(1275), - [sym_block_comment] = STATE(1275), + [1264] = { + [sym_line_comment] = STATE(1264), + [sym_block_comment] = STATE(1264), [sym_identifier] = ACTIONS(1809), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -162882,22 +161934,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1809), [sym_float_literal] = ACTIONS(1807), [sym_rune_literal] = ACTIONS(1807), + [anon_sym_SQUOTE] = ACTIONS(1807), + [anon_sym_DQUOTE] = ACTIONS(1807), + [anon_sym_c_SQUOTE] = ACTIONS(1807), + [anon_sym_c_DQUOTE] = ACTIONS(1807), + [anon_sym_r_SQUOTE] = ACTIONS(1807), + [anon_sym_r_DQUOTE] = ACTIONS(1807), [sym_pseudo_compile_time_identifier] = ACTIONS(1809), [anon_sym_shared] = ACTIONS(1809), [anon_sym_map_LBRACK] = ACTIONS(1807), [anon_sym_chan] = ACTIONS(1809), [anon_sym_thread] = ACTIONS(1809), [anon_sym_atomic] = ACTIONS(1809), - [sym___double_quote] = ACTIONS(1807), - [sym___single_quote] = ACTIONS(1807), - [sym___c_double_quote] = ACTIONS(1807), - [sym___c_single_quote] = ACTIONS(1807), - [sym___r_double_quote] = ACTIONS(1807), - [sym___r_single_quote] = ACTIONS(1807), }, - [1276] = { - [sym_line_comment] = STATE(1276), - [sym_block_comment] = STATE(1276), + [1265] = { + [sym_line_comment] = STATE(1265), + [sym_block_comment] = STATE(1265), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_identifier] = ACTIONS(1791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_PIPE] = ACTIONS(3883), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(3883), + [anon_sym_DASH] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_EQ_EQ] = ACTIONS(1789), + [anon_sym_BANG_EQ] = ACTIONS(1789), + [anon_sym_LT_EQ] = ACTIONS(1789), + [anon_sym_GT_EQ] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_RBRACK] = ACTIONS(1789), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1789), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_CARET] = ACTIONS(3889), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_DASH] = ACTIONS(1789), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_AMP_CARET] = ACTIONS(3885), + [anon_sym_AMP_AMP] = ACTIONS(1789), + [anon_sym_PIPE_PIPE] = ACTIONS(1789), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1789), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_BANGin] = ACTIONS(1789), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1789), + [sym_rune_literal] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_c_SQUOTE] = ACTIONS(1789), + [anon_sym_c_DQUOTE] = ACTIONS(1789), + [anon_sym_r_SQUOTE] = ACTIONS(1789), + [anon_sym_r_DQUOTE] = ACTIONS(1789), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1789), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + }, + [1266] = { + [sym_line_comment] = STATE(1266), + [sym_block_comment] = STATE(1266), [sym_identifier] = ACTIONS(1809), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -162966,165 +162102,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1809), [sym_float_literal] = ACTIONS(1807), [sym_rune_literal] = ACTIONS(1807), + [anon_sym_SQUOTE] = ACTIONS(1807), + [anon_sym_DQUOTE] = ACTIONS(1807), + [anon_sym_c_SQUOTE] = ACTIONS(1807), + [anon_sym_c_DQUOTE] = ACTIONS(1807), + [anon_sym_r_SQUOTE] = ACTIONS(1807), + [anon_sym_r_DQUOTE] = ACTIONS(1807), [sym_pseudo_compile_time_identifier] = ACTIONS(1809), [anon_sym_shared] = ACTIONS(1809), [anon_sym_map_LBRACK] = ACTIONS(1807), [anon_sym_chan] = ACTIONS(1809), [anon_sym_thread] = ACTIONS(1809), [anon_sym_atomic] = ACTIONS(1809), - [sym___double_quote] = ACTIONS(1807), - [sym___single_quote] = ACTIONS(1807), - [sym___c_double_quote] = ACTIONS(1807), - [sym___c_single_quote] = ACTIONS(1807), - [sym___r_double_quote] = ACTIONS(1807), - [sym___r_single_quote] = ACTIONS(1807), - }, - [1277] = { - [sym_line_comment] = STATE(1277), - [sym_block_comment] = STATE(1277), - [sym_identifier] = ACTIONS(2672), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_DOT] = ACTIONS(2672), - [anon_sym_as] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_COMMA] = ACTIONS(2670), - [anon_sym_RBRACE] = ACTIONS(2670), - [anon_sym_LPAREN] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2672), - [anon_sym_fn] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2672), - [anon_sym_STAR] = ACTIONS(2670), - [anon_sym_SLASH] = ACTIONS(2672), - [anon_sym_PERCENT] = ACTIONS(2670), - [anon_sym_LT] = ACTIONS(2672), - [anon_sym_GT] = ACTIONS(2672), - [anon_sym_EQ_EQ] = ACTIONS(2670), - [anon_sym_BANG_EQ] = ACTIONS(2670), - [anon_sym_LT_EQ] = ACTIONS(2670), - [anon_sym_GT_EQ] = ACTIONS(2670), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_RBRACK] = ACTIONS(2670), - [anon_sym_struct] = ACTIONS(2672), - [anon_sym_mut] = ACTIONS(2672), - [anon_sym_COLON] = ACTIONS(2670), - [anon_sym_PLUS_PLUS] = ACTIONS(2670), - [anon_sym_DASH_DASH] = ACTIONS(2670), - [anon_sym_QMARK] = ACTIONS(2672), - [anon_sym_BANG] = ACTIONS(2672), - [anon_sym_go] = ACTIONS(2672), - [anon_sym_spawn] = ACTIONS(2672), - [anon_sym_json_DOTdecode] = ACTIONS(2670), - [anon_sym_LBRACK2] = ACTIONS(2672), - [anon_sym_TILDE] = ACTIONS(2670), - [anon_sym_CARET] = ACTIONS(2670), - [anon_sym_AMP] = ACTIONS(2672), - [anon_sym_LT_DASH] = ACTIONS(2670), - [anon_sym_LT_LT] = ACTIONS(2670), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_GT_GT_GT] = ACTIONS(2670), - [anon_sym_AMP_CARET] = ACTIONS(2670), - [anon_sym_AMP_AMP] = ACTIONS(2670), - [anon_sym_PIPE_PIPE] = ACTIONS(2670), - [anon_sym_or] = ACTIONS(2672), - [sym_none] = ACTIONS(2672), - [sym_true] = ACTIONS(2672), - [sym_false] = ACTIONS(2672), - [sym_nil] = ACTIONS(2672), - [anon_sym_QMARK_DOT] = ACTIONS(2670), - [anon_sym_POUND_LBRACK] = ACTIONS(2670), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_DOLLARif] = ACTIONS(2672), - [anon_sym_is] = ACTIONS(2672), - [anon_sym_BANGis] = ACTIONS(2670), - [anon_sym_in] = ACTIONS(2672), - [anon_sym_BANGin] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2672), - [anon_sym_lock] = ACTIONS(2672), - [anon_sym_rlock] = ACTIONS(2672), - [anon_sym_unsafe] = ACTIONS(2672), - [anon_sym_sql] = ACTIONS(2672), - [sym_int_literal] = ACTIONS(2672), - [sym_float_literal] = ACTIONS(2670), - [sym_rune_literal] = ACTIONS(2670), - [sym_pseudo_compile_time_identifier] = ACTIONS(2672), - [anon_sym_shared] = ACTIONS(2672), - [anon_sym_map_LBRACK] = ACTIONS(2670), - [anon_sym_chan] = ACTIONS(2672), - [anon_sym_thread] = ACTIONS(2672), - [anon_sym_atomic] = ACTIONS(2672), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2670), - [sym___c_double_quote] = ACTIONS(2670), - [sym___c_single_quote] = ACTIONS(2670), - [sym___r_double_quote] = ACTIONS(2670), - [sym___r_single_quote] = ACTIONS(2670), }, - [1278] = { - [sym_line_comment] = STATE(1278), - [sym_block_comment] = STATE(1278), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), + [1267] = { + [sym_line_comment] = STATE(1267), + [sym_block_comment] = STATE(1267), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), [sym_identifier] = ACTIONS(1765), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(3845), [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_COMMA] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_PIPE] = ACTIONS(3849), [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_SLASH] = ACTIONS(3887), - [anon_sym_PERCENT] = ACTIONS(3885), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_RBRACK] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(3849), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_STAR] = ACTIONS(3851), + [anon_sym_SLASH] = ACTIONS(3853), + [anon_sym_PERCENT] = ACTIONS(3851), + [anon_sym_LT] = ACTIONS(3855), + [anon_sym_GT] = ACTIONS(3855), + [anon_sym_EQ_EQ] = ACTIONS(3857), + [anon_sym_BANG_EQ] = ACTIONS(3857), + [anon_sym_LT_EQ] = ACTIONS(3857), + [anon_sym_GT_EQ] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3829), [anon_sym_struct] = ACTIONS(1765), [anon_sym_mut] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_COLON] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(3861), + [anon_sym_DASH_DASH] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), [anon_sym_go] = ACTIONS(1765), [anon_sym_spawn] = ACTIONS(1765), [anon_sym_json_DOTdecode] = ACTIONS(1763), - [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_LBRACK2] = ACTIONS(3835), [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_CARET] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_CARET] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3853), [anon_sym_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(3885), - [anon_sym_GT_GT] = ACTIONS(3887), - [anon_sym_GT_GT_GT] = ACTIONS(3885), - [anon_sym_AMP_CARET] = ACTIONS(3885), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1765), + [anon_sym_LT_LT] = ACTIONS(3851), + [anon_sym_GT_GT] = ACTIONS(3853), + [anon_sym_GT_GT_GT] = ACTIONS(3851), + [anon_sym_AMP_CARET] = ACTIONS(3851), + [anon_sym_AMP_AMP] = ACTIONS(3867), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_or] = ACTIONS(3871), [sym_none] = ACTIONS(1765), [sym_true] = ACTIONS(1765), [sym_false] = ACTIONS(1765), [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), [anon_sym_if] = ACTIONS(1765), [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_BANGin] = ACTIONS(1763), + [anon_sym_is] = ACTIONS(3873), + [anon_sym_BANGis] = ACTIONS(3875), + [anon_sym_in] = ACTIONS(3877), + [anon_sym_BANGin] = ACTIONS(3879), [anon_sym_match] = ACTIONS(1765), [anon_sym_select] = ACTIONS(1765), [anon_sym_lock] = ACTIONS(1765), @@ -163134,203 +162186,455 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1765), [sym_float_literal] = ACTIONS(1763), [sym_rune_literal] = ACTIONS(1763), + [anon_sym_SQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_c_SQUOTE] = ACTIONS(1763), + [anon_sym_c_DQUOTE] = ACTIONS(1763), + [anon_sym_r_SQUOTE] = ACTIONS(1763), + [anon_sym_r_DQUOTE] = ACTIONS(1763), [sym_pseudo_compile_time_identifier] = ACTIONS(1765), [anon_sym_shared] = ACTIONS(1765), [anon_sym_map_LBRACK] = ACTIONS(1763), [anon_sym_chan] = ACTIONS(1765), [anon_sym_thread] = ACTIONS(1765), [anon_sym_atomic] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1763), - [sym___single_quote] = ACTIONS(1763), - [sym___c_double_quote] = ACTIONS(1763), - [sym___c_single_quote] = ACTIONS(1763), - [sym___r_double_quote] = ACTIONS(1763), - [sym___r_single_quote] = ACTIONS(1763), - }, - [1279] = { - [sym_line_comment] = STATE(1279), - [sym_block_comment] = STATE(1279), - [sym_identifier] = ACTIONS(2740), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_COMMA] = ACTIONS(2738), - [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2738), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2738), - [anon_sym_BANG_EQ] = ACTIONS(2738), - [anon_sym_LT_EQ] = ACTIONS(2738), - [anon_sym_GT_EQ] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_RBRACK] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_COLON] = ACTIONS(2738), - [anon_sym_PLUS_PLUS] = ACTIONS(2738), - [anon_sym_DASH_DASH] = ACTIONS(2738), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2738), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2738), - [anon_sym_CARET] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2738), - [anon_sym_LT_LT] = ACTIONS(2738), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2738), - [anon_sym_AMP_CARET] = ACTIONS(2738), - [anon_sym_AMP_AMP] = ACTIONS(2738), - [anon_sym_PIPE_PIPE] = ACTIONS(2738), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2738), - [anon_sym_POUND_LBRACK] = ACTIONS(2738), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2738), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2738), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2738), - [sym_rune_literal] = ACTIONS(2738), - [sym_pseudo_compile_time_identifier] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2738), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2738), - [sym___single_quote] = ACTIONS(2738), - [sym___c_double_quote] = ACTIONS(2738), - [sym___c_single_quote] = ACTIONS(2738), - [sym___r_double_quote] = ACTIONS(2738), - [sym___r_single_quote] = ACTIONS(2738), }, - [1280] = { - [sym_line_comment] = STATE(1280), - [sym_block_comment] = STATE(1280), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_identifier] = ACTIONS(1781), + [1268] = { + [sym_line_comment] = STATE(1268), + [sym_block_comment] = STATE(1268), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_identifier] = ACTIONS(1791), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_COMMA] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(3827), [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_fn] = ACTIONS(1781), + [anon_sym_fn] = ACTIONS(1791), [anon_sym_PLUS] = ACTIONS(3883), [anon_sym_DASH] = ACTIONS(3883), [anon_sym_STAR] = ACTIONS(3885), [anon_sym_SLASH] = ACTIONS(3887), [anon_sym_PERCENT] = ACTIONS(3885), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_EQ_EQ] = ACTIONS(1779), - [anon_sym_BANG_EQ] = ACTIONS(1779), - [anon_sym_LT_EQ] = ACTIONS(1779), - [anon_sym_GT_EQ] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_RBRACK] = ACTIONS(1779), - [anon_sym_struct] = ACTIONS(1781), - [anon_sym_mut] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1779), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1779), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_LT] = ACTIONS(3891), + [anon_sym_GT] = ACTIONS(3891), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_RBRACK] = ACTIONS(1789), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1789), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(1789), [anon_sym_CARET] = ACTIONS(3889), [anon_sym_AMP] = ACTIONS(3887), - [anon_sym_LT_DASH] = ACTIONS(1779), + [anon_sym_LT_DASH] = ACTIONS(1789), [anon_sym_LT_LT] = ACTIONS(3885), [anon_sym_GT_GT] = ACTIONS(3887), [anon_sym_GT_GT_GT] = ACTIONS(3885), [anon_sym_AMP_CARET] = ACTIONS(3885), - [anon_sym_AMP_AMP] = ACTIONS(1779), - [anon_sym_PIPE_PIPE] = ACTIONS(1779), - [anon_sym_or] = ACTIONS(1781), - [sym_none] = ACTIONS(1781), - [sym_true] = ACTIONS(1781), - [sym_false] = ACTIONS(1781), - [sym_nil] = ACTIONS(1781), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_DOLLARif] = ACTIONS(1781), - [anon_sym_is] = ACTIONS(1781), - [anon_sym_BANGis] = ACTIONS(1779), - [anon_sym_in] = ACTIONS(1781), - [anon_sym_BANGin] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1781), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1781), - [anon_sym_rlock] = ACTIONS(1781), - [anon_sym_unsafe] = ACTIONS(1781), - [anon_sym_sql] = ACTIONS(1781), - [sym_int_literal] = ACTIONS(1781), - [sym_float_literal] = ACTIONS(1779), - [sym_rune_literal] = ACTIONS(1779), - [sym_pseudo_compile_time_identifier] = ACTIONS(1781), - [anon_sym_shared] = ACTIONS(1781), - [anon_sym_map_LBRACK] = ACTIONS(1779), - [anon_sym_chan] = ACTIONS(1781), - [anon_sym_thread] = ACTIONS(1781), - [anon_sym_atomic] = ACTIONS(1781), - [sym___double_quote] = ACTIONS(1779), - [sym___single_quote] = ACTIONS(1779), - [sym___c_double_quote] = ACTIONS(1779), - [sym___c_single_quote] = ACTIONS(1779), - [sym___r_double_quote] = ACTIONS(1779), - [sym___r_single_quote] = ACTIONS(1779), + [anon_sym_AMP_AMP] = ACTIONS(1789), + [anon_sym_PIPE_PIPE] = ACTIONS(1789), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1789), + [anon_sym_in] = ACTIONS(3895), + [anon_sym_BANGin] = ACTIONS(3897), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1789), + [sym_rune_literal] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_c_SQUOTE] = ACTIONS(1789), + [anon_sym_c_DQUOTE] = ACTIONS(1789), + [anon_sym_r_SQUOTE] = ACTIONS(1789), + [anon_sym_r_DQUOTE] = ACTIONS(1789), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1789), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), }, - [1281] = { - [sym_line_comment] = STATE(1281), - [sym_block_comment] = STATE(1281), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_identifier] = ACTIONS(1795), + [1269] = { + [sym_line_comment] = STATE(1269), + [sym_block_comment] = STATE(1269), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_identifier] = ACTIONS(1779), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(3845), + [anon_sym_LBRACE] = ACTIONS(1777), + [anon_sym_RBRACE] = ACTIONS(1777), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_fn] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(3849), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_STAR] = ACTIONS(3851), + [anon_sym_SLASH] = ACTIONS(3853), + [anon_sym_PERCENT] = ACTIONS(3851), + [anon_sym_LT] = ACTIONS(3855), + [anon_sym_GT] = ACTIONS(3855), + [anon_sym_EQ_EQ] = ACTIONS(3857), + [anon_sym_BANG_EQ] = ACTIONS(3857), + [anon_sym_LT_EQ] = ACTIONS(3857), + [anon_sym_GT_EQ] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_struct] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_COLON] = ACTIONS(1777), + [anon_sym_PLUS_PLUS] = ACTIONS(3861), + [anon_sym_DASH_DASH] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(1779), + [anon_sym_spawn] = ACTIONS(1779), + [anon_sym_json_DOTdecode] = ACTIONS(1777), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_CARET] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_LT_DASH] = ACTIONS(1777), + [anon_sym_LT_LT] = ACTIONS(3851), + [anon_sym_GT_GT] = ACTIONS(3853), + [anon_sym_GT_GT_GT] = ACTIONS(3851), + [anon_sym_AMP_CARET] = ACTIONS(3851), + [anon_sym_AMP_AMP] = ACTIONS(3867), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_or] = ACTIONS(3871), + [sym_none] = ACTIONS(1779), + [sym_true] = ACTIONS(1779), + [sym_false] = ACTIONS(1779), + [sym_nil] = ACTIONS(1779), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1779), + [anon_sym_is] = ACTIONS(3873), + [anon_sym_BANGis] = ACTIONS(3875), + [anon_sym_in] = ACTIONS(3877), + [anon_sym_BANGin] = ACTIONS(3879), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_select] = ACTIONS(1779), + [anon_sym_lock] = ACTIONS(1779), + [anon_sym_rlock] = ACTIONS(1779), + [anon_sym_unsafe] = ACTIONS(1779), + [anon_sym_sql] = ACTIONS(1779), + [sym_int_literal] = ACTIONS(1779), + [sym_float_literal] = ACTIONS(1777), + [sym_rune_literal] = ACTIONS(1777), + [anon_sym_SQUOTE] = ACTIONS(1777), + [anon_sym_DQUOTE] = ACTIONS(1777), + [anon_sym_c_SQUOTE] = ACTIONS(1777), + [anon_sym_c_DQUOTE] = ACTIONS(1777), + [anon_sym_r_SQUOTE] = ACTIONS(1777), + [anon_sym_r_DQUOTE] = ACTIONS(1777), + [sym_pseudo_compile_time_identifier] = ACTIONS(1779), + [anon_sym_shared] = ACTIONS(1779), + [anon_sym_map_LBRACK] = ACTIONS(1777), + [anon_sym_chan] = ACTIONS(1779), + [anon_sym_thread] = ACTIONS(1779), + [anon_sym_atomic] = ACTIONS(1779), + }, + [1270] = { + [sym_line_comment] = STATE(1270), + [sym_block_comment] = STATE(1270), + [sym_identifier] = ACTIONS(1889), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_PERCENT] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_EQ_EQ] = ACTIONS(1887), + [anon_sym_BANG_EQ] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(1887), + [anon_sym_GT_EQ] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_RBRACK] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_COLON] = ACTIONS(1887), + [anon_sym_PLUS_PLUS] = ACTIONS(1887), + [anon_sym_DASH_DASH] = ACTIONS(1887), + [anon_sym_QMARK] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1889), + [anon_sym_spawn] = ACTIONS(1889), + [anon_sym_json_DOTdecode] = ACTIONS(1887), + [anon_sym_LBRACK2] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_CARET] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1887), + [anon_sym_LT_LT] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT_GT] = ACTIONS(1887), + [anon_sym_AMP_CARET] = ACTIONS(1887), + [anon_sym_AMP_AMP] = ACTIONS(1887), + [anon_sym_PIPE_PIPE] = ACTIONS(1887), + [anon_sym_or] = ACTIONS(1889), + [sym_none] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_nil] = ACTIONS(1889), + [anon_sym_QMARK_DOT] = ACTIONS(1887), + [anon_sym_POUND_LBRACK] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_else] = ACTIONS(1889), + [anon_sym_DOLLARif] = ACTIONS(1889), + [anon_sym_is] = ACTIONS(1889), + [anon_sym_BANGis] = ACTIONS(1887), + [anon_sym_in] = ACTIONS(1889), + [anon_sym_BANGin] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_select] = ACTIONS(1889), + [anon_sym_lock] = ACTIONS(1889), + [anon_sym_rlock] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_sql] = ACTIONS(1889), + [sym_int_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1887), + [sym_rune_literal] = ACTIONS(1887), + [anon_sym_SQUOTE] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [anon_sym_c_SQUOTE] = ACTIONS(1887), + [anon_sym_c_DQUOTE] = ACTIONS(1887), + [anon_sym_r_SQUOTE] = ACTIONS(1887), + [anon_sym_r_DQUOTE] = ACTIONS(1887), + [sym_pseudo_compile_time_identifier] = ACTIONS(1889), + [anon_sym_shared] = ACTIONS(1889), + [anon_sym_map_LBRACK] = ACTIONS(1887), + [anon_sym_chan] = ACTIONS(1889), + [anon_sym_thread] = ACTIONS(1889), + [anon_sym_atomic] = ACTIONS(1889), + }, + [1271] = { + [sym_line_comment] = STATE(1271), + [sym_block_comment] = STATE(1271), + [sym_identifier] = ACTIONS(2775), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2773), + [anon_sym_DOT] = ACTIONS(2775), + [anon_sym_as] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(2773), + [anon_sym_COMMA] = ACTIONS(2773), + [anon_sym_RBRACE] = ACTIONS(2773), + [anon_sym_LPAREN] = ACTIONS(2773), + [anon_sym_PIPE] = ACTIONS(2775), + [anon_sym_fn] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2773), + [anon_sym_SLASH] = ACTIONS(2775), + [anon_sym_PERCENT] = ACTIONS(2773), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_GT] = ACTIONS(2775), + [anon_sym_EQ_EQ] = ACTIONS(2773), + [anon_sym_BANG_EQ] = ACTIONS(2773), + [anon_sym_LT_EQ] = ACTIONS(2773), + [anon_sym_GT_EQ] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_RBRACK] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2775), + [anon_sym_mut] = ACTIONS(2775), + [anon_sym_COLON] = ACTIONS(2773), + [anon_sym_PLUS_PLUS] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2773), + [anon_sym_QMARK] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_go] = ACTIONS(2775), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(2773), + [anon_sym_LBRACK2] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_LT_DASH] = ACTIONS(2773), + [anon_sym_LT_LT] = ACTIONS(2773), + [anon_sym_GT_GT] = ACTIONS(2775), + [anon_sym_GT_GT_GT] = ACTIONS(2773), + [anon_sym_AMP_CARET] = ACTIONS(2773), + [anon_sym_AMP_AMP] = ACTIONS(2773), + [anon_sym_PIPE_PIPE] = ACTIONS(2773), + [anon_sym_or] = ACTIONS(2775), + [sym_none] = ACTIONS(2775), + [sym_true] = ACTIONS(2775), + [sym_false] = ACTIONS(2775), + [sym_nil] = ACTIONS(2775), + [anon_sym_QMARK_DOT] = ACTIONS(2773), + [anon_sym_POUND_LBRACK] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2775), + [anon_sym_DOLLARif] = ACTIONS(2775), + [anon_sym_is] = ACTIONS(2775), + [anon_sym_BANGis] = ACTIONS(2773), + [anon_sym_in] = ACTIONS(2775), + [anon_sym_BANGin] = ACTIONS(2773), + [anon_sym_match] = ACTIONS(2775), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2775), + [anon_sym_rlock] = ACTIONS(2775), + [anon_sym_unsafe] = ACTIONS(2775), + [anon_sym_sql] = ACTIONS(2775), + [sym_int_literal] = ACTIONS(2775), + [sym_float_literal] = ACTIONS(2773), + [sym_rune_literal] = ACTIONS(2773), + [anon_sym_SQUOTE] = ACTIONS(2773), + [anon_sym_DQUOTE] = ACTIONS(2773), + [anon_sym_c_SQUOTE] = ACTIONS(2773), + [anon_sym_c_DQUOTE] = ACTIONS(2773), + [anon_sym_r_SQUOTE] = ACTIONS(2773), + [anon_sym_r_DQUOTE] = ACTIONS(2773), + [sym_pseudo_compile_time_identifier] = ACTIONS(2775), + [anon_sym_shared] = ACTIONS(2775), + [anon_sym_map_LBRACK] = ACTIONS(2773), + [anon_sym_chan] = ACTIONS(2775), + [anon_sym_thread] = ACTIONS(2775), + [anon_sym_atomic] = ACTIONS(2775), + }, + [1272] = { + [sym_line_comment] = STATE(1272), + [sym_block_comment] = STATE(1272), + [sym_identifier] = ACTIONS(2763), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2761), + [anon_sym_DOT] = ACTIONS(2763), + [anon_sym_as] = ACTIONS(2763), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_COMMA] = ACTIONS(2761), + [anon_sym_RBRACE] = ACTIONS(2761), + [anon_sym_LPAREN] = ACTIONS(2761), + [anon_sym_PIPE] = ACTIONS(2763), + [anon_sym_fn] = ACTIONS(2763), + [anon_sym_PLUS] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_SLASH] = ACTIONS(2763), + [anon_sym_PERCENT] = ACTIONS(2761), + [anon_sym_LT] = ACTIONS(2763), + [anon_sym_GT] = ACTIONS(2763), + [anon_sym_EQ_EQ] = ACTIONS(2761), + [anon_sym_BANG_EQ] = ACTIONS(2761), + [anon_sym_LT_EQ] = ACTIONS(2761), + [anon_sym_GT_EQ] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_RBRACK] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2763), + [anon_sym_mut] = ACTIONS(2763), + [anon_sym_COLON] = ACTIONS(2761), + [anon_sym_PLUS_PLUS] = ACTIONS(2761), + [anon_sym_DASH_DASH] = ACTIONS(2761), + [anon_sym_QMARK] = ACTIONS(2763), + [anon_sym_BANG] = ACTIONS(2763), + [anon_sym_go] = ACTIONS(2763), + [anon_sym_spawn] = ACTIONS(2763), + [anon_sym_json_DOTdecode] = ACTIONS(2761), + [anon_sym_LBRACK2] = ACTIONS(2763), + [anon_sym_TILDE] = ACTIONS(2761), + [anon_sym_CARET] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2761), + [anon_sym_LT_LT] = ACTIONS(2761), + [anon_sym_GT_GT] = ACTIONS(2763), + [anon_sym_GT_GT_GT] = ACTIONS(2761), + [anon_sym_AMP_CARET] = ACTIONS(2761), + [anon_sym_AMP_AMP] = ACTIONS(2761), + [anon_sym_PIPE_PIPE] = ACTIONS(2761), + [anon_sym_or] = ACTIONS(2763), + [sym_none] = ACTIONS(2763), + [sym_true] = ACTIONS(2763), + [sym_false] = ACTIONS(2763), + [sym_nil] = ACTIONS(2763), + [anon_sym_QMARK_DOT] = ACTIONS(2761), + [anon_sym_POUND_LBRACK] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2763), + [anon_sym_DOLLARif] = ACTIONS(2763), + [anon_sym_is] = ACTIONS(2763), + [anon_sym_BANGis] = ACTIONS(2761), + [anon_sym_in] = ACTIONS(2763), + [anon_sym_BANGin] = ACTIONS(2761), + [anon_sym_match] = ACTIONS(2763), + [anon_sym_select] = ACTIONS(2763), + [anon_sym_lock] = ACTIONS(2763), + [anon_sym_rlock] = ACTIONS(2763), + [anon_sym_unsafe] = ACTIONS(2763), + [anon_sym_sql] = ACTIONS(2763), + [sym_int_literal] = ACTIONS(2763), + [sym_float_literal] = ACTIONS(2761), + [sym_rune_literal] = ACTIONS(2761), + [anon_sym_SQUOTE] = ACTIONS(2761), + [anon_sym_DQUOTE] = ACTIONS(2761), + [anon_sym_c_SQUOTE] = ACTIONS(2761), + [anon_sym_c_DQUOTE] = ACTIONS(2761), + [anon_sym_r_SQUOTE] = ACTIONS(2761), + [anon_sym_r_DQUOTE] = ACTIONS(2761), + [sym_pseudo_compile_time_identifier] = ACTIONS(2763), + [anon_sym_shared] = ACTIONS(2763), + [anon_sym_map_LBRACK] = ACTIONS(2761), + [anon_sym_chan] = ACTIONS(2763), + [anon_sym_thread] = ACTIONS(2763), + [anon_sym_atomic] = ACTIONS(2763), + }, + [1273] = { + [sym_line_comment] = STATE(1273), + [sym_block_comment] = STATE(1273), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_identifier] = ACTIONS(1791), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_COMMA] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(3827), [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_fn] = ACTIONS(1795), + [anon_sym_fn] = ACTIONS(1791), [anon_sym_PLUS] = ACTIONS(3883), [anon_sym_DASH] = ACTIONS(3883), [anon_sym_STAR] = ACTIONS(3885), @@ -163342,913 +162646,744 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3893), [anon_sym_LT_EQ] = ACTIONS(3893), [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_RBRACK] = ACTIONS(1793), - [anon_sym_struct] = ACTIONS(1795), - [anon_sym_mut] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(3857), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(1795), - [anon_sym_spawn] = ACTIONS(1795), - [anon_sym_json_DOTdecode] = ACTIONS(1793), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_RBRACK] = ACTIONS(1789), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1789), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(1789), [anon_sym_CARET] = ACTIONS(3889), [anon_sym_AMP] = ACTIONS(3887), - [anon_sym_LT_DASH] = ACTIONS(1793), + [anon_sym_LT_DASH] = ACTIONS(1789), [anon_sym_LT_LT] = ACTIONS(3885), [anon_sym_GT_GT] = ACTIONS(3887), [anon_sym_GT_GT_GT] = ACTIONS(3885), [anon_sym_AMP_CARET] = ACTIONS(3885), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3867), - [sym_none] = ACTIONS(1795), - [sym_true] = ACTIONS(1795), - [sym_false] = ACTIONS(1795), - [sym_nil] = ACTIONS(1795), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(1795), - [anon_sym_DOLLARif] = ACTIONS(1795), - [anon_sym_is] = ACTIONS(3869), - [anon_sym_BANGis] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(1789), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1789), [anon_sym_in] = ACTIONS(3895), [anon_sym_BANGin] = ACTIONS(3897), - [anon_sym_match] = ACTIONS(1795), - [anon_sym_select] = ACTIONS(1795), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1795), - [anon_sym_sql] = ACTIONS(1795), - [sym_int_literal] = ACTIONS(1795), - [sym_float_literal] = ACTIONS(1793), - [sym_rune_literal] = ACTIONS(1793), - [sym_pseudo_compile_time_identifier] = ACTIONS(1795), - [anon_sym_shared] = ACTIONS(1795), - [anon_sym_map_LBRACK] = ACTIONS(1793), - [anon_sym_chan] = ACTIONS(1795), - [anon_sym_thread] = ACTIONS(1795), - [anon_sym_atomic] = ACTIONS(1795), - [sym___double_quote] = ACTIONS(1793), - [sym___single_quote] = ACTIONS(1793), - [sym___c_double_quote] = ACTIONS(1793), - [sym___c_single_quote] = ACTIONS(1793), - [sym___r_double_quote] = ACTIONS(1793), - [sym___r_single_quote] = ACTIONS(1793), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1789), + [sym_rune_literal] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_c_SQUOTE] = ACTIONS(1789), + [anon_sym_c_DQUOTE] = ACTIONS(1789), + [anon_sym_r_SQUOTE] = ACTIONS(1789), + [anon_sym_r_DQUOTE] = ACTIONS(1789), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1789), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), }, - [1282] = { - [sym_line_comment] = STATE(1282), - [sym_block_comment] = STATE(1282), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_identifier] = ACTIONS(1773), + [1274] = { + [sym_line_comment] = STATE(1274), + [sym_block_comment] = STATE(1274), + [sym_identifier] = ACTIONS(2079), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2079), + [anon_sym_as] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_COMMA] = ACTIONS(2077), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2077), + [anon_sym_SLASH] = ACTIONS(2079), + [anon_sym_PERCENT] = ACTIONS(2077), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_EQ_EQ] = ACTIONS(2077), + [anon_sym_BANG_EQ] = ACTIONS(2077), + [anon_sym_LT_EQ] = ACTIONS(2077), + [anon_sym_GT_EQ] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_RBRACK] = ACTIONS(2077), + [anon_sym_struct] = ACTIONS(2079), + [anon_sym_mut] = ACTIONS(2079), + [anon_sym_COLON] = ACTIONS(2077), + [anon_sym_PLUS_PLUS] = ACTIONS(2077), + [anon_sym_DASH_DASH] = ACTIONS(2077), + [anon_sym_QMARK] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2079), + [anon_sym_go] = ACTIONS(2079), + [anon_sym_spawn] = ACTIONS(2079), + [anon_sym_json_DOTdecode] = ACTIONS(2077), + [anon_sym_LBRACK2] = ACTIONS(2079), + [anon_sym_TILDE] = ACTIONS(2077), + [anon_sym_CARET] = ACTIONS(2077), + [anon_sym_AMP] = ACTIONS(2079), + [anon_sym_LT_DASH] = ACTIONS(2077), + [anon_sym_LT_LT] = ACTIONS(2077), + [anon_sym_GT_GT] = ACTIONS(2079), + [anon_sym_GT_GT_GT] = ACTIONS(2077), + [anon_sym_AMP_CARET] = ACTIONS(2077), + [anon_sym_AMP_AMP] = ACTIONS(2077), + [anon_sym_PIPE_PIPE] = ACTIONS(2077), + [anon_sym_or] = ACTIONS(2079), + [sym_none] = ACTIONS(2079), + [sym_true] = ACTIONS(2079), + [sym_false] = ACTIONS(2079), + [sym_nil] = ACTIONS(2079), + [anon_sym_QMARK_DOT] = ACTIONS(2077), + [anon_sym_POUND_LBRACK] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_DOLLARif] = ACTIONS(2079), + [anon_sym_DOLLARelse] = ACTIONS(3901), + [anon_sym_is] = ACTIONS(2079), + [anon_sym_BANGis] = ACTIONS(2077), + [anon_sym_in] = ACTIONS(2079), + [anon_sym_BANGin] = ACTIONS(2077), + [anon_sym_match] = ACTIONS(2079), + [anon_sym_select] = ACTIONS(2079), + [anon_sym_lock] = ACTIONS(2079), + [anon_sym_rlock] = ACTIONS(2079), + [anon_sym_unsafe] = ACTIONS(2079), + [anon_sym_sql] = ACTIONS(2079), + [sym_int_literal] = ACTIONS(2079), + [sym_float_literal] = ACTIONS(2077), + [sym_rune_literal] = ACTIONS(2077), + [anon_sym_SQUOTE] = ACTIONS(2077), + [anon_sym_DQUOTE] = ACTIONS(2077), + [anon_sym_c_SQUOTE] = ACTIONS(2077), + [anon_sym_c_DQUOTE] = ACTIONS(2077), + [anon_sym_r_SQUOTE] = ACTIONS(2077), + [anon_sym_r_DQUOTE] = ACTIONS(2077), + [sym_pseudo_compile_time_identifier] = ACTIONS(2079), + [anon_sym_shared] = ACTIONS(2079), + [anon_sym_map_LBRACK] = ACTIONS(2077), + [anon_sym_chan] = ACTIONS(2079), + [anon_sym_thread] = ACTIONS(2079), + [anon_sym_atomic] = ACTIONS(2079), + }, + [1275] = { + [sym_line_comment] = STATE(1275), + [sym_block_comment] = STATE(1275), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_identifier] = ACTIONS(1787), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_COMMA] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(3823), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_COMMA] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(3827), [anon_sym_PIPE] = ACTIONS(3883), - [anon_sym_fn] = ACTIONS(1773), + [anon_sym_fn] = ACTIONS(1787), [anon_sym_PLUS] = ACTIONS(3883), [anon_sym_DASH] = ACTIONS(3883), [anon_sym_STAR] = ACTIONS(3885), [anon_sym_SLASH] = ACTIONS(3887), [anon_sym_PERCENT] = ACTIONS(3885), - [anon_sym_LT] = ACTIONS(3891), - [anon_sym_GT] = ACTIONS(3891), - [anon_sym_EQ_EQ] = ACTIONS(3893), - [anon_sym_BANG_EQ] = ACTIONS(3893), - [anon_sym_LT_EQ] = ACTIONS(3893), - [anon_sym_GT_EQ] = ACTIONS(3893), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_RBRACK] = ACTIONS(1771), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_mut] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(3857), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(1773), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1771), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_RBRACK] = ACTIONS(1785), + [anon_sym_struct] = ACTIONS(1787), + [anon_sym_mut] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(1787), + [anon_sym_spawn] = ACTIONS(1787), + [anon_sym_json_DOTdecode] = ACTIONS(1785), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(1785), [anon_sym_CARET] = ACTIONS(3889), [anon_sym_AMP] = ACTIONS(3887), - [anon_sym_LT_DASH] = ACTIONS(1771), + [anon_sym_LT_DASH] = ACTIONS(1785), [anon_sym_LT_LT] = ACTIONS(3885), [anon_sym_GT_GT] = ACTIONS(3887), [anon_sym_GT_GT_GT] = ACTIONS(3885), [anon_sym_AMP_CARET] = ACTIONS(3885), - [anon_sym_AMP_AMP] = ACTIONS(3905), - [anon_sym_PIPE_PIPE] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3867), - [sym_none] = ACTIONS(1773), - [sym_true] = ACTIONS(1773), - [sym_false] = ACTIONS(1773), - [sym_nil] = ACTIONS(1773), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_DOLLARif] = ACTIONS(1773), - [anon_sym_is] = ACTIONS(3869), - [anon_sym_BANGis] = ACTIONS(3871), - [anon_sym_in] = ACTIONS(3895), - [anon_sym_BANGin] = ACTIONS(3897), - [anon_sym_match] = ACTIONS(1773), - [anon_sym_select] = ACTIONS(1773), - [anon_sym_lock] = ACTIONS(1773), - [anon_sym_rlock] = ACTIONS(1773), - [anon_sym_unsafe] = ACTIONS(1773), - [anon_sym_sql] = ACTIONS(1773), - [sym_int_literal] = ACTIONS(1773), - [sym_float_literal] = ACTIONS(1771), - [sym_rune_literal] = ACTIONS(1771), - [sym_pseudo_compile_time_identifier] = ACTIONS(1773), - [anon_sym_shared] = ACTIONS(1773), - [anon_sym_map_LBRACK] = ACTIONS(1771), - [anon_sym_chan] = ACTIONS(1773), - [anon_sym_thread] = ACTIONS(1773), - [anon_sym_atomic] = ACTIONS(1773), - [sym___double_quote] = ACTIONS(1771), - [sym___single_quote] = ACTIONS(1771), - [sym___c_double_quote] = ACTIONS(1771), - [sym___c_single_quote] = ACTIONS(1771), - [sym___r_double_quote] = ACTIONS(1771), - [sym___r_single_quote] = ACTIONS(1771), - }, - [1283] = { - [sym_line_comment] = STATE(1283), - [sym_block_comment] = STATE(1283), - [sym_identifier] = ACTIONS(1813), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_as] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_COMMA] = ACTIONS(1811), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_PIPE] = ACTIONS(1813), - [anon_sym_fn] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_SLASH] = ACTIONS(1813), - [anon_sym_PERCENT] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_GT] = ACTIONS(1813), - [anon_sym_EQ_EQ] = ACTIONS(1811), - [anon_sym_BANG_EQ] = ACTIONS(1811), - [anon_sym_LT_EQ] = ACTIONS(1811), - [anon_sym_GT_EQ] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_RBRACK] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_mut] = ACTIONS(1813), - [anon_sym_COLON] = ACTIONS(1811), - [anon_sym_PLUS_PLUS] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1811), - [anon_sym_QMARK] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_go] = ACTIONS(1813), - [anon_sym_spawn] = ACTIONS(1813), - [anon_sym_json_DOTdecode] = ACTIONS(1811), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_LT_DASH] = ACTIONS(1811), - [anon_sym_LT_LT] = ACTIONS(1811), - [anon_sym_GT_GT] = ACTIONS(1813), - [anon_sym_GT_GT_GT] = ACTIONS(1811), - [anon_sym_AMP_CARET] = ACTIONS(1811), - [anon_sym_AMP_AMP] = ACTIONS(1811), - [anon_sym_PIPE_PIPE] = ACTIONS(1811), - [anon_sym_or] = ACTIONS(1813), - [sym_none] = ACTIONS(1813), - [sym_true] = ACTIONS(1813), - [sym_false] = ACTIONS(1813), - [sym_nil] = ACTIONS(1813), - [anon_sym_QMARK_DOT] = ACTIONS(1811), - [anon_sym_POUND_LBRACK] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_DOLLARif] = ACTIONS(1813), - [anon_sym_DOLLARelse] = ACTIONS(1813), - [anon_sym_is] = ACTIONS(1813), - [anon_sym_BANGis] = ACTIONS(1811), - [anon_sym_in] = ACTIONS(1813), - [anon_sym_BANGin] = ACTIONS(1811), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1813), - [anon_sym_rlock] = ACTIONS(1813), - [anon_sym_unsafe] = ACTIONS(1813), - [anon_sym_sql] = ACTIONS(1813), - [sym_int_literal] = ACTIONS(1813), - [sym_float_literal] = ACTIONS(1811), - [sym_rune_literal] = ACTIONS(1811), - [sym_pseudo_compile_time_identifier] = ACTIONS(1813), - [anon_sym_shared] = ACTIONS(1813), - [anon_sym_map_LBRACK] = ACTIONS(1811), - [anon_sym_chan] = ACTIONS(1813), - [anon_sym_thread] = ACTIONS(1813), - [anon_sym_atomic] = ACTIONS(1813), - [sym___double_quote] = ACTIONS(1811), - [sym___single_quote] = ACTIONS(1811), - [sym___c_double_quote] = ACTIONS(1811), - [sym___c_single_quote] = ACTIONS(1811), - [sym___r_double_quote] = ACTIONS(1811), - [sym___r_single_quote] = ACTIONS(1811), - }, - [1284] = { - [sym_line_comment] = STATE(1284), - [sym_block_comment] = STATE(1284), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_identifier] = ACTIONS(1781), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3845), - [anon_sym_fn] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(3847), - [anon_sym_SLASH] = ACTIONS(3849), - [anon_sym_PERCENT] = ACTIONS(3847), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_EQ_EQ] = ACTIONS(1779), - [anon_sym_BANG_EQ] = ACTIONS(1779), - [anon_sym_LT_EQ] = ACTIONS(1779), - [anon_sym_GT_EQ] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_struct] = ACTIONS(1781), - [anon_sym_mut] = ACTIONS(1781), - [anon_sym_COLON] = ACTIONS(1779), - [anon_sym_PLUS_PLUS] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1779), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1779), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(1779), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3849), - [anon_sym_LT_DASH] = ACTIONS(1779), - [anon_sym_LT_LT] = ACTIONS(3847), - [anon_sym_GT_GT] = ACTIONS(3849), - [anon_sym_GT_GT_GT] = ACTIONS(3847), - [anon_sym_AMP_CARET] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(1779), - [anon_sym_PIPE_PIPE] = ACTIONS(1779), - [anon_sym_or] = ACTIONS(1781), - [sym_none] = ACTIONS(1781), - [sym_true] = ACTIONS(1781), - [sym_false] = ACTIONS(1781), - [sym_nil] = ACTIONS(1781), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_DOLLARif] = ACTIONS(1781), - [anon_sym_is] = ACTIONS(1781), - [anon_sym_BANGis] = ACTIONS(1779), - [anon_sym_in] = ACTIONS(1781), - [anon_sym_BANGin] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1781), - [anon_sym_select] = ACTIONS(1781), - [anon_sym_lock] = ACTIONS(1781), - [anon_sym_rlock] = ACTIONS(1781), - [anon_sym_unsafe] = ACTIONS(1781), - [anon_sym_sql] = ACTIONS(1781), - [sym_int_literal] = ACTIONS(1781), - [sym_float_literal] = ACTIONS(1779), - [sym_rune_literal] = ACTIONS(1779), - [sym_pseudo_compile_time_identifier] = ACTIONS(1781), - [anon_sym_shared] = ACTIONS(1781), - [anon_sym_map_LBRACK] = ACTIONS(1779), - [anon_sym_chan] = ACTIONS(1781), - [anon_sym_thread] = ACTIONS(1781), - [anon_sym_atomic] = ACTIONS(1781), - [sym___double_quote] = ACTIONS(1779), - [sym___single_quote] = ACTIONS(1779), - [sym___c_double_quote] = ACTIONS(1779), - [sym___c_single_quote] = ACTIONS(1779), - [sym___r_double_quote] = ACTIONS(1779), - [sym___r_single_quote] = ACTIONS(1779), - }, - [1285] = { - [sym_line_comment] = STATE(1285), - [sym_block_comment] = STATE(1285), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_identifier] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(3847), - [anon_sym_SLASH] = ACTIONS(3849), - [anon_sym_PERCENT] = ACTIONS(3847), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_COLON] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1763), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_CARET] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(3849), - [anon_sym_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(3847), - [anon_sym_GT_GT] = ACTIONS(3849), - [anon_sym_GT_GT_GT] = ACTIONS(3847), - [anon_sym_AMP_CARET] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_BANGin] = ACTIONS(1763), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1763), - [sym_rune_literal] = ACTIONS(1763), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1763), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1763), - [sym___single_quote] = ACTIONS(1763), - [sym___c_double_quote] = ACTIONS(1763), - [sym___c_single_quote] = ACTIONS(1763), - [sym___r_double_quote] = ACTIONS(1763), - [sym___r_single_quote] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_or] = ACTIONS(1787), + [sym_none] = ACTIONS(1787), + [sym_true] = ACTIONS(1787), + [sym_false] = ACTIONS(1787), + [sym_nil] = ACTIONS(1787), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_DOLLARif] = ACTIONS(1787), + [anon_sym_is] = ACTIONS(1787), + [anon_sym_BANGis] = ACTIONS(1785), + [anon_sym_in] = ACTIONS(1787), + [anon_sym_BANGin] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1787), + [anon_sym_select] = ACTIONS(1787), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1787), + [anon_sym_sql] = ACTIONS(1787), + [sym_int_literal] = ACTIONS(1787), + [sym_float_literal] = ACTIONS(1785), + [sym_rune_literal] = ACTIONS(1785), + [anon_sym_SQUOTE] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [anon_sym_c_SQUOTE] = ACTIONS(1785), + [anon_sym_c_DQUOTE] = ACTIONS(1785), + [anon_sym_r_SQUOTE] = ACTIONS(1785), + [anon_sym_r_DQUOTE] = ACTIONS(1785), + [sym_pseudo_compile_time_identifier] = ACTIONS(1787), + [anon_sym_shared] = ACTIONS(1787), + [anon_sym_map_LBRACK] = ACTIONS(1785), + [anon_sym_chan] = ACTIONS(1787), + [anon_sym_thread] = ACTIONS(1787), + [anon_sym_atomic] = ACTIONS(1787), }, - [1286] = { - [sym_line_comment] = STATE(1286), - [sym_block_comment] = STATE(1286), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_identifier] = ACTIONS(1765), + [1276] = { + [sym_line_comment] = STATE(1276), + [sym_block_comment] = STATE(1276), + [sym_identifier] = ACTIONS(2041), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3845), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(3847), - [anon_sym_SLASH] = ACTIONS(3849), - [anon_sym_PERCENT] = ACTIONS(3847), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_EQ_EQ] = ACTIONS(3853), - [anon_sym_BANG_EQ] = ACTIONS(3853), - [anon_sym_LT_EQ] = ACTIONS(3853), - [anon_sym_GT_EQ] = ACTIONS(3853), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_COLON] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1763), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3849), - [anon_sym_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(3847), - [anon_sym_GT_GT] = ACTIONS(3849), - [anon_sym_GT_GT_GT] = ACTIONS(3847), - [anon_sym_AMP_CARET] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(3873), - [anon_sym_BANGin] = ACTIONS(3875), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1763), - [sym_rune_literal] = ACTIONS(1763), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1763), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1763), - [sym___single_quote] = ACTIONS(1763), - [sym___c_double_quote] = ACTIONS(1763), - [sym___c_single_quote] = ACTIONS(1763), - [sym___r_double_quote] = ACTIONS(1763), - [sym___r_single_quote] = ACTIONS(1763), + [anon_sym_DOT] = ACTIONS(2041), + [anon_sym_as] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2039), + [anon_sym_COMMA] = ACTIONS(2039), + [anon_sym_RBRACE] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2039), + [anon_sym_PIPE] = ACTIONS(2041), + [anon_sym_fn] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2041), + [anon_sym_STAR] = ACTIONS(2039), + [anon_sym_SLASH] = ACTIONS(2041), + [anon_sym_PERCENT] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2041), + [anon_sym_GT] = ACTIONS(2041), + [anon_sym_EQ_EQ] = ACTIONS(2039), + [anon_sym_BANG_EQ] = ACTIONS(2039), + [anon_sym_LT_EQ] = ACTIONS(2039), + [anon_sym_GT_EQ] = ACTIONS(2039), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_RBRACK] = ACTIONS(2039), + [anon_sym_struct] = ACTIONS(2041), + [anon_sym_mut] = ACTIONS(2041), + [anon_sym_COLON] = ACTIONS(2039), + [anon_sym_PLUS_PLUS] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2039), + [anon_sym_QMARK] = ACTIONS(2041), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_go] = ACTIONS(2041), + [anon_sym_spawn] = ACTIONS(2041), + [anon_sym_json_DOTdecode] = ACTIONS(2039), + [anon_sym_LBRACK2] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2039), + [anon_sym_CARET] = ACTIONS(2039), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_LT_DASH] = ACTIONS(2039), + [anon_sym_LT_LT] = ACTIONS(2039), + [anon_sym_GT_GT] = ACTIONS(2041), + [anon_sym_GT_GT_GT] = ACTIONS(2039), + [anon_sym_AMP_CARET] = ACTIONS(2039), + [anon_sym_AMP_AMP] = ACTIONS(2039), + [anon_sym_PIPE_PIPE] = ACTIONS(2039), + [anon_sym_or] = ACTIONS(2041), + [sym_none] = ACTIONS(2041), + [sym_true] = ACTIONS(2041), + [sym_false] = ACTIONS(2041), + [sym_nil] = ACTIONS(2041), + [anon_sym_QMARK_DOT] = ACTIONS(2039), + [anon_sym_POUND_LBRACK] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_DOLLARif] = ACTIONS(2041), + [anon_sym_DOLLARelse] = ACTIONS(3903), + [anon_sym_is] = ACTIONS(2041), + [anon_sym_BANGis] = ACTIONS(2039), + [anon_sym_in] = ACTIONS(2041), + [anon_sym_BANGin] = ACTIONS(2039), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_select] = ACTIONS(2041), + [anon_sym_lock] = ACTIONS(2041), + [anon_sym_rlock] = ACTIONS(2041), + [anon_sym_unsafe] = ACTIONS(2041), + [anon_sym_sql] = ACTIONS(2041), + [sym_int_literal] = ACTIONS(2041), + [sym_float_literal] = ACTIONS(2039), + [sym_rune_literal] = ACTIONS(2039), + [anon_sym_SQUOTE] = ACTIONS(2039), + [anon_sym_DQUOTE] = ACTIONS(2039), + [anon_sym_c_SQUOTE] = ACTIONS(2039), + [anon_sym_c_DQUOTE] = ACTIONS(2039), + [anon_sym_r_SQUOTE] = ACTIONS(2039), + [anon_sym_r_DQUOTE] = ACTIONS(2039), + [sym_pseudo_compile_time_identifier] = ACTIONS(2041), + [anon_sym_shared] = ACTIONS(2041), + [anon_sym_map_LBRACK] = ACTIONS(2039), + [anon_sym_chan] = ACTIONS(2041), + [anon_sym_thread] = ACTIONS(2041), + [anon_sym_atomic] = ACTIONS(2041), }, - [1287] = { - [sym_line_comment] = STATE(1287), - [sym_block_comment] = STATE(1287), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_identifier] = ACTIONS(1765), + [1277] = { + [sym_line_comment] = STATE(1277), + [sym_block_comment] = STATE(1277), + [sym_type_parameters] = STATE(1308), + [sym_identifier] = ACTIONS(1899), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3845), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(3847), - [anon_sym_SLASH] = ACTIONS(3849), - [anon_sym_PERCENT] = ACTIONS(3847), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_COLON] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1763), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3849), - [anon_sym_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(3847), - [anon_sym_GT_GT] = ACTIONS(3849), - [anon_sym_GT_GT_GT] = ACTIONS(3847), - [anon_sym_AMP_CARET] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_BANGin] = ACTIONS(1763), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1763), - [sym_rune_literal] = ACTIONS(1763), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1763), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1763), - [sym___single_quote] = ACTIONS(1763), - [sym___c_double_quote] = ACTIONS(1763), - [sym___c_single_quote] = ACTIONS(1763), - [sym___r_double_quote] = ACTIONS(1763), - [sym___r_single_quote] = ACTIONS(1763), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_as] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_COMMA] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_PERCENT] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ] = ACTIONS(1897), + [anon_sym_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_EQ] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_RBRACK] = ACTIONS(1897), + [anon_sym_struct] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_COLON] = ACTIONS(1897), + [anon_sym_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_QMARK] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_go] = ACTIONS(1899), + [anon_sym_spawn] = ACTIONS(1899), + [anon_sym_json_DOTdecode] = ACTIONS(1897), + [anon_sym_LBRACK2] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1897), + [anon_sym_CARET] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1897), + [anon_sym_LT_LT] = ACTIONS(1897), + [anon_sym_GT_GT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1897), + [anon_sym_AMP_CARET] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_or] = ACTIONS(1899), + [sym_none] = ACTIONS(1899), + [sym_true] = ACTIONS(1899), + [sym_false] = ACTIONS(1899), + [sym_nil] = ACTIONS(1899), + [anon_sym_QMARK_DOT] = ACTIONS(1897), + [anon_sym_POUND_LBRACK] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_DOLLARif] = ACTIONS(1899), + [anon_sym_is] = ACTIONS(1899), + [anon_sym_BANGis] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_BANGin] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_select] = ACTIONS(1899), + [anon_sym_lock] = ACTIONS(1899), + [anon_sym_rlock] = ACTIONS(1899), + [anon_sym_unsafe] = ACTIONS(1899), + [anon_sym_sql] = ACTIONS(1899), + [sym_int_literal] = ACTIONS(1899), + [sym_float_literal] = ACTIONS(1897), + [sym_rune_literal] = ACTIONS(1897), + [anon_sym_SQUOTE] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_c_SQUOTE] = ACTIONS(1897), + [anon_sym_c_DQUOTE] = ACTIONS(1897), + [anon_sym_r_SQUOTE] = ACTIONS(1897), + [anon_sym_r_DQUOTE] = ACTIONS(1897), + [sym_pseudo_compile_time_identifier] = ACTIONS(1899), + [anon_sym_shared] = ACTIONS(1899), + [anon_sym_map_LBRACK] = ACTIONS(1897), + [anon_sym_chan] = ACTIONS(1899), + [anon_sym_thread] = ACTIONS(1899), + [anon_sym_atomic] = ACTIONS(1899), }, - [1288] = { - [sym_line_comment] = STATE(1288), - [sym_block_comment] = STATE(1288), - [sym_type_parameters] = STATE(1327), - [sym_identifier] = ACTIONS(1881), + [1278] = { + [sym_line_comment] = STATE(1278), + [sym_block_comment] = STATE(1278), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_identifier] = ACTIONS(1791), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1879), - [anon_sym_COMMA] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1879), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1879), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1879), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1879), - [anon_sym_BANG_EQ] = ACTIONS(1879), - [anon_sym_LT_EQ] = ACTIONS(1879), - [anon_sym_GT_EQ] = ACTIONS(1879), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_RBRACK] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_COLON] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_QMARK] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1879), - [anon_sym_LBRACK2] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1879), - [anon_sym_LT_LT] = ACTIONS(1879), - [anon_sym_GT_GT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1879), - [anon_sym_AMP_CARET] = ACTIONS(1879), - [anon_sym_AMP_AMP] = ACTIONS(1879), - [anon_sym_PIPE_PIPE] = ACTIONS(1879), - [anon_sym_or] = ACTIONS(1881), - [sym_none] = ACTIONS(1881), - [sym_true] = ACTIONS(1881), - [sym_false] = ACTIONS(1881), - [sym_nil] = ACTIONS(1881), - [anon_sym_QMARK_DOT] = ACTIONS(1879), - [anon_sym_POUND_LBRACK] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1879), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_BANGin] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1881), - [anon_sym_select] = ACTIONS(1881), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1881), - [anon_sym_sql] = ACTIONS(1881), - [sym_int_literal] = ACTIONS(1881), - [sym_float_literal] = ACTIONS(1879), - [sym_rune_literal] = ACTIONS(1879), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1879), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1879), - [sym___single_quote] = ACTIONS(1879), - [sym___c_double_quote] = ACTIONS(1879), - [sym___c_single_quote] = ACTIONS(1879), - [sym___r_double_quote] = ACTIONS(1879), - [sym___r_single_quote] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_PIPE] = ACTIONS(1791), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(3851), + [anon_sym_SLASH] = ACTIONS(3853), + [anon_sym_PERCENT] = ACTIONS(3851), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_EQ_EQ] = ACTIONS(1789), + [anon_sym_BANG_EQ] = ACTIONS(1789), + [anon_sym_LT_EQ] = ACTIONS(1789), + [anon_sym_GT_EQ] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_COLON] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1789), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_CARET] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_LT_DASH] = ACTIONS(1789), + [anon_sym_LT_LT] = ACTIONS(3851), + [anon_sym_GT_GT] = ACTIONS(3853), + [anon_sym_GT_GT_GT] = ACTIONS(3851), + [anon_sym_AMP_CARET] = ACTIONS(3851), + [anon_sym_AMP_AMP] = ACTIONS(1789), + [anon_sym_PIPE_PIPE] = ACTIONS(1789), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1789), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_BANGin] = ACTIONS(1789), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1789), + [sym_rune_literal] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_c_SQUOTE] = ACTIONS(1789), + [anon_sym_c_DQUOTE] = ACTIONS(1789), + [anon_sym_r_SQUOTE] = ACTIONS(1789), + [anon_sym_r_DQUOTE] = ACTIONS(1789), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1789), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), }, - [1289] = { - [sym_line_comment] = STATE(1289), - [sym_block_comment] = STATE(1289), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_identifier] = ACTIONS(1765), + [1279] = { + [sym_line_comment] = STATE(1279), + [sym_block_comment] = STATE(1279), + [sym_identifier] = ACTIONS(2805), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3845), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(3847), - [anon_sym_SLASH] = ACTIONS(3849), - [anon_sym_PERCENT] = ACTIONS(3847), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_EQ_EQ] = ACTIONS(3853), - [anon_sym_BANG_EQ] = ACTIONS(3853), - [anon_sym_LT_EQ] = ACTIONS(3853), - [anon_sym_GT_EQ] = ACTIONS(3853), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_COLON] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(1765), - [anon_sym_spawn] = ACTIONS(1765), - [anon_sym_json_DOTdecode] = ACTIONS(1763), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3849), - [anon_sym_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(3847), - [anon_sym_GT_GT] = ACTIONS(3849), - [anon_sym_GT_GT_GT] = ACTIONS(3847), - [anon_sym_AMP_CARET] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3863), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_or] = ACTIONS(1765), - [sym_none] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_nil] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_DOLLARif] = ACTIONS(1765), - [anon_sym_is] = ACTIONS(1765), - [anon_sym_BANGis] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(3873), - [anon_sym_BANGin] = ACTIONS(3875), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_select] = ACTIONS(1765), - [anon_sym_lock] = ACTIONS(1765), - [anon_sym_rlock] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1765), - [sym_int_literal] = ACTIONS(1765), - [sym_float_literal] = ACTIONS(1763), - [sym_rune_literal] = ACTIONS(1763), - [sym_pseudo_compile_time_identifier] = ACTIONS(1765), - [anon_sym_shared] = ACTIONS(1765), - [anon_sym_map_LBRACK] = ACTIONS(1763), - [anon_sym_chan] = ACTIONS(1765), - [anon_sym_thread] = ACTIONS(1765), - [anon_sym_atomic] = ACTIONS(1765), - [sym___double_quote] = ACTIONS(1763), - [sym___single_quote] = ACTIONS(1763), - [sym___c_double_quote] = ACTIONS(1763), - [sym___c_single_quote] = ACTIONS(1763), - [sym___r_double_quote] = ACTIONS(1763), - [sym___r_single_quote] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_DOT] = ACTIONS(2805), + [anon_sym_as] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2803), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_RBRACE] = ACTIONS(2803), + [anon_sym_LPAREN] = ACTIONS(2803), + [anon_sym_PIPE] = ACTIONS(2805), + [anon_sym_fn] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_SLASH] = ACTIONS(2805), + [anon_sym_PERCENT] = ACTIONS(2803), + [anon_sym_LT] = ACTIONS(2805), + [anon_sym_GT] = ACTIONS(2805), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_LT_EQ] = ACTIONS(2803), + [anon_sym_GT_EQ] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_RBRACK] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2805), + [anon_sym_mut] = ACTIONS(2805), + [anon_sym_COLON] = ACTIONS(2803), + [anon_sym_PLUS_PLUS] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2803), + [anon_sym_QMARK] = ACTIONS(2805), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_go] = ACTIONS(2805), + [anon_sym_spawn] = ACTIONS(2805), + [anon_sym_json_DOTdecode] = ACTIONS(2803), + [anon_sym_LBRACK2] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_CARET] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2803), + [anon_sym_LT_LT] = ACTIONS(2803), + [anon_sym_GT_GT] = ACTIONS(2805), + [anon_sym_GT_GT_GT] = ACTIONS(2803), + [anon_sym_AMP_CARET] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_PIPE_PIPE] = ACTIONS(2803), + [anon_sym_or] = ACTIONS(2805), + [sym_none] = ACTIONS(2805), + [sym_true] = ACTIONS(2805), + [sym_false] = ACTIONS(2805), + [sym_nil] = ACTIONS(2805), + [anon_sym_QMARK_DOT] = ACTIONS(2803), + [anon_sym_POUND_LBRACK] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_DOLLARif] = ACTIONS(2805), + [anon_sym_is] = ACTIONS(2805), + [anon_sym_BANGis] = ACTIONS(2803), + [anon_sym_in] = ACTIONS(2805), + [anon_sym_BANGin] = ACTIONS(2803), + [anon_sym_match] = ACTIONS(2805), + [anon_sym_select] = ACTIONS(2805), + [anon_sym_lock] = ACTIONS(2805), + [anon_sym_rlock] = ACTIONS(2805), + [anon_sym_unsafe] = ACTIONS(2805), + [anon_sym_sql] = ACTIONS(2805), + [sym_int_literal] = ACTIONS(2805), + [sym_float_literal] = ACTIONS(2803), + [sym_rune_literal] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [anon_sym_c_SQUOTE] = ACTIONS(2803), + [anon_sym_c_DQUOTE] = ACTIONS(2803), + [anon_sym_r_SQUOTE] = ACTIONS(2803), + [anon_sym_r_DQUOTE] = ACTIONS(2803), + [sym_pseudo_compile_time_identifier] = ACTIONS(2805), + [anon_sym_shared] = ACTIONS(2805), + [anon_sym_map_LBRACK] = ACTIONS(2803), + [anon_sym_chan] = ACTIONS(2805), + [anon_sym_thread] = ACTIONS(2805), + [anon_sym_atomic] = ACTIONS(2805), }, - [1290] = { - [sym_line_comment] = STATE(1290), - [sym_block_comment] = STATE(1290), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_identifier] = ACTIONS(1773), + [1280] = { + [sym_line_comment] = STATE(1280), + [sym_block_comment] = STATE(1280), + [sym_identifier] = ACTIONS(2877), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3845), - [anon_sym_fn] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(3847), - [anon_sym_SLASH] = ACTIONS(3849), - [anon_sym_PERCENT] = ACTIONS(3847), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_EQ_EQ] = ACTIONS(3853), - [anon_sym_BANG_EQ] = ACTIONS(3853), - [anon_sym_LT_EQ] = ACTIONS(3853), - [anon_sym_GT_EQ] = ACTIONS(3853), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_mut] = ACTIONS(1773), - [anon_sym_COLON] = ACTIONS(1771), - [anon_sym_PLUS_PLUS] = ACTIONS(3857), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(1773), - [anon_sym_spawn] = ACTIONS(1773), - [anon_sym_json_DOTdecode] = ACTIONS(1771), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(1771), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3849), - [anon_sym_LT_DASH] = ACTIONS(1771), - [anon_sym_LT_LT] = ACTIONS(3847), - [anon_sym_GT_GT] = ACTIONS(3849), - [anon_sym_GT_GT_GT] = ACTIONS(3847), - [anon_sym_AMP_CARET] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3863), - [anon_sym_PIPE_PIPE] = ACTIONS(3865), - [anon_sym_or] = ACTIONS(3867), - [sym_none] = ACTIONS(1773), - [sym_true] = ACTIONS(1773), - [sym_false] = ACTIONS(1773), - [sym_nil] = ACTIONS(1773), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_DOLLARif] = ACTIONS(1773), - [anon_sym_is] = ACTIONS(3869), - [anon_sym_BANGis] = ACTIONS(3871), - [anon_sym_in] = ACTIONS(3873), - [anon_sym_BANGin] = ACTIONS(3875), - [anon_sym_match] = ACTIONS(1773), - [anon_sym_select] = ACTIONS(1773), - [anon_sym_lock] = ACTIONS(1773), - [anon_sym_rlock] = ACTIONS(1773), - [anon_sym_unsafe] = ACTIONS(1773), - [anon_sym_sql] = ACTIONS(1773), - [sym_int_literal] = ACTIONS(1773), - [sym_float_literal] = ACTIONS(1771), - [sym_rune_literal] = ACTIONS(1771), - [sym_pseudo_compile_time_identifier] = ACTIONS(1773), - [anon_sym_shared] = ACTIONS(1773), - [anon_sym_map_LBRACK] = ACTIONS(1771), - [anon_sym_chan] = ACTIONS(1773), - [anon_sym_thread] = ACTIONS(1773), - [anon_sym_atomic] = ACTIONS(1773), - [sym___double_quote] = ACTIONS(1771), - [sym___single_quote] = ACTIONS(1771), - [sym___c_double_quote] = ACTIONS(1771), - [sym___c_single_quote] = ACTIONS(1771), - [sym___r_double_quote] = ACTIONS(1771), - [sym___r_single_quote] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(2875), + [anon_sym_DOT] = ACTIONS(2877), + [anon_sym_as] = ACTIONS(2877), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_COMMA] = ACTIONS(2875), + [anon_sym_RBRACE] = ACTIONS(2875), + [anon_sym_LPAREN] = ACTIONS(2875), + [anon_sym_PIPE] = ACTIONS(2877), + [anon_sym_fn] = ACTIONS(2877), + [anon_sym_PLUS] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2875), + [anon_sym_SLASH] = ACTIONS(2877), + [anon_sym_PERCENT] = ACTIONS(2875), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_EQ_EQ] = ACTIONS(2875), + [anon_sym_BANG_EQ] = ACTIONS(2875), + [anon_sym_LT_EQ] = ACTIONS(2875), + [anon_sym_GT_EQ] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_RBRACK] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2877), + [anon_sym_mut] = ACTIONS(2877), + [anon_sym_COLON] = ACTIONS(2875), + [anon_sym_PLUS_PLUS] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2875), + [anon_sym_QMARK] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_go] = ACTIONS(2877), + [anon_sym_spawn] = ACTIONS(2877), + [anon_sym_json_DOTdecode] = ACTIONS(2875), + [anon_sym_LBRACK2] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2875), + [anon_sym_CARET] = ACTIONS(2875), + [anon_sym_AMP] = ACTIONS(2877), + [anon_sym_LT_DASH] = ACTIONS(2875), + [anon_sym_LT_LT] = ACTIONS(2875), + [anon_sym_GT_GT] = ACTIONS(2877), + [anon_sym_GT_GT_GT] = ACTIONS(2875), + [anon_sym_AMP_CARET] = ACTIONS(2875), + [anon_sym_AMP_AMP] = ACTIONS(2875), + [anon_sym_PIPE_PIPE] = ACTIONS(2875), + [anon_sym_or] = ACTIONS(2877), + [sym_none] = ACTIONS(2877), + [sym_true] = ACTIONS(2877), + [sym_false] = ACTIONS(2877), + [sym_nil] = ACTIONS(2877), + [anon_sym_QMARK_DOT] = ACTIONS(2875), + [anon_sym_POUND_LBRACK] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2877), + [anon_sym_DOLLARif] = ACTIONS(2877), + [anon_sym_is] = ACTIONS(2877), + [anon_sym_BANGis] = ACTIONS(2875), + [anon_sym_in] = ACTIONS(2877), + [anon_sym_BANGin] = ACTIONS(2875), + [anon_sym_match] = ACTIONS(2877), + [anon_sym_select] = ACTIONS(2877), + [anon_sym_lock] = ACTIONS(2877), + [anon_sym_rlock] = ACTIONS(2877), + [anon_sym_unsafe] = ACTIONS(2877), + [anon_sym_sql] = ACTIONS(2877), + [sym_int_literal] = ACTIONS(2877), + [sym_float_literal] = ACTIONS(2875), + [sym_rune_literal] = ACTIONS(2875), + [anon_sym_SQUOTE] = ACTIONS(2875), + [anon_sym_DQUOTE] = ACTIONS(2875), + [anon_sym_c_SQUOTE] = ACTIONS(2875), + [anon_sym_c_DQUOTE] = ACTIONS(2875), + [anon_sym_r_SQUOTE] = ACTIONS(2875), + [anon_sym_r_DQUOTE] = ACTIONS(2875), + [sym_pseudo_compile_time_identifier] = ACTIONS(2877), + [anon_sym_shared] = ACTIONS(2877), + [anon_sym_map_LBRACK] = ACTIONS(2875), + [anon_sym_chan] = ACTIONS(2877), + [anon_sym_thread] = ACTIONS(2877), + [anon_sym_atomic] = ACTIONS(2877), }, - [1291] = { - [sym_line_comment] = STATE(1291), - [sym_block_comment] = STATE(1291), - [sym_identifier] = ACTIONS(2880), + [1281] = { + [sym_line_comment] = STATE(1281), + [sym_block_comment] = STATE(1281), + [sym_identifier] = ACTIONS(2093), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_DOT] = ACTIONS(2880), - [anon_sym_as] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2878), - [anon_sym_RBRACE] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2880), - [anon_sym_fn] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2880), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_GT] = ACTIONS(2880), - [anon_sym_EQ_EQ] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2878), - [anon_sym_LT_EQ] = ACTIONS(2878), - [anon_sym_GT_EQ] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_RBRACK] = ACTIONS(2878), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_mut] = ACTIONS(2880), - [anon_sym_COLON] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_go] = ACTIONS(2880), - [anon_sym_spawn] = ACTIONS(2880), - [anon_sym_json_DOTdecode] = ACTIONS(2878), - [anon_sym_LBRACK2] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_CARET] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_LT_LT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2880), - [anon_sym_GT_GT_GT] = ACTIONS(2878), - [anon_sym_AMP_CARET] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_or] = ACTIONS(2880), - [sym_none] = ACTIONS(2880), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_nil] = ACTIONS(2880), - [anon_sym_QMARK_DOT] = ACTIONS(2878), - [anon_sym_POUND_LBRACK] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_DOLLARif] = ACTIONS(2880), - [anon_sym_is] = ACTIONS(2880), - [anon_sym_BANGis] = ACTIONS(2878), - [anon_sym_in] = ACTIONS(2880), - [anon_sym_BANGin] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2880), - [anon_sym_select] = ACTIONS(2880), - [anon_sym_lock] = ACTIONS(2880), - [anon_sym_rlock] = ACTIONS(2880), - [anon_sym_unsafe] = ACTIONS(2880), - [anon_sym_sql] = ACTIONS(2880), - [sym_int_literal] = ACTIONS(2880), - [sym_float_literal] = ACTIONS(2878), - [sym_rune_literal] = ACTIONS(2878), - [sym_pseudo_compile_time_identifier] = ACTIONS(2880), - [anon_sym_shared] = ACTIONS(2880), - [anon_sym_map_LBRACK] = ACTIONS(2878), - [anon_sym_chan] = ACTIONS(2880), - [anon_sym_thread] = ACTIONS(2880), - [anon_sym_atomic] = ACTIONS(2880), - [sym___double_quote] = ACTIONS(2878), - [sym___single_quote] = ACTIONS(2878), - [sym___c_double_quote] = ACTIONS(2878), - [sym___c_single_quote] = ACTIONS(2878), - [sym___r_double_quote] = ACTIONS(2878), - [sym___r_single_quote] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2091), + [anon_sym_DOT] = ACTIONS(2093), + [anon_sym_as] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2091), + [anon_sym_COMMA] = ACTIONS(2091), + [anon_sym_RBRACE] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(2091), + [anon_sym_SLASH] = ACTIONS(2093), + [anon_sym_PERCENT] = ACTIONS(2091), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_GT] = ACTIONS(2093), + [anon_sym_EQ_EQ] = ACTIONS(2091), + [anon_sym_BANG_EQ] = ACTIONS(2091), + [anon_sym_LT_EQ] = ACTIONS(2091), + [anon_sym_GT_EQ] = ACTIONS(2091), + [anon_sym_LBRACK] = ACTIONS(2091), + [anon_sym_RBRACK] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_mut] = ACTIONS(2093), + [anon_sym_COLON] = ACTIONS(2091), + [anon_sym_PLUS_PLUS] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(2091), + [anon_sym_QMARK] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2093), + [anon_sym_json_DOTdecode] = ACTIONS(2091), + [anon_sym_LBRACK2] = ACTIONS(2093), + [anon_sym_TILDE] = ACTIONS(2091), + [anon_sym_CARET] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2093), + [anon_sym_LT_DASH] = ACTIONS(2091), + [anon_sym_LT_LT] = ACTIONS(2091), + [anon_sym_GT_GT] = ACTIONS(2093), + [anon_sym_GT_GT_GT] = ACTIONS(2091), + [anon_sym_AMP_CARET] = ACTIONS(2091), + [anon_sym_AMP_AMP] = ACTIONS(2091), + [anon_sym_PIPE_PIPE] = ACTIONS(2091), + [anon_sym_or] = ACTIONS(2093), + [sym_none] = ACTIONS(2093), + [sym_true] = ACTIONS(2093), + [sym_false] = ACTIONS(2093), + [sym_nil] = ACTIONS(2093), + [anon_sym_QMARK_DOT] = ACTIONS(2091), + [anon_sym_POUND_LBRACK] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_DOLLARif] = ACTIONS(2093), + [anon_sym_is] = ACTIONS(2093), + [anon_sym_BANGis] = ACTIONS(2091), + [anon_sym_in] = ACTIONS(2093), + [anon_sym_BANGin] = ACTIONS(2091), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_select] = ACTIONS(2093), + [anon_sym_lock] = ACTIONS(2093), + [anon_sym_rlock] = ACTIONS(2093), + [anon_sym_unsafe] = ACTIONS(2093), + [anon_sym_sql] = ACTIONS(2093), + [sym_int_literal] = ACTIONS(2093), + [sym_float_literal] = ACTIONS(2091), + [sym_rune_literal] = ACTIONS(2091), + [anon_sym_SQUOTE] = ACTIONS(2091), + [anon_sym_DQUOTE] = ACTIONS(2091), + [anon_sym_c_SQUOTE] = ACTIONS(2091), + [anon_sym_c_DQUOTE] = ACTIONS(2091), + [anon_sym_r_SQUOTE] = ACTIONS(2091), + [anon_sym_r_DQUOTE] = ACTIONS(2091), + [sym_pseudo_compile_time_identifier] = ACTIONS(2093), + [anon_sym_shared] = ACTIONS(2093), + [anon_sym_map_LBRACK] = ACTIONS(2091), + [anon_sym_chan] = ACTIONS(2093), + [anon_sym_thread] = ACTIONS(2093), + [anon_sym_atomic] = ACTIONS(2093), }, - [1292] = { - [sym_line_comment] = STATE(1292), - [sym_block_comment] = STATE(1292), + [1282] = { + [sym_line_comment] = STATE(1282), + [sym_block_comment] = STATE(1282), [sym_identifier] = ACTIONS(1889), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(1887), [anon_sym_DOT] = ACTIONS(1889), [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1887), [anon_sym_COMMA] = ACTIONS(1887), [anon_sym_RBRACE] = ACTIONS(1887), [anon_sym_LPAREN] = ACTIONS(1887), @@ -164265,7 +163400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1887), [anon_sym_LT_EQ] = ACTIONS(1887), [anon_sym_GT_EQ] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1887), [anon_sym_RBRACK] = ACTIONS(1887), [anon_sym_struct] = ACTIONS(1889), [anon_sym_mut] = ACTIONS(1889), @@ -164297,6 +163432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_LBRACK] = ACTIONS(1887), [anon_sym_if] = ACTIONS(1889), [anon_sym_DOLLARif] = ACTIONS(1889), + [anon_sym_DOLLARelse] = ACTIONS(1889), [anon_sym_is] = ACTIONS(1889), [anon_sym_BANGis] = ACTIONS(1887), [anon_sym_in] = ACTIONS(1889), @@ -164310,6579 +163446,6257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1889), [sym_float_literal] = ACTIONS(1887), [sym_rune_literal] = ACTIONS(1887), + [anon_sym_SQUOTE] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [anon_sym_c_SQUOTE] = ACTIONS(1887), + [anon_sym_c_DQUOTE] = ACTIONS(1887), + [anon_sym_r_SQUOTE] = ACTIONS(1887), + [anon_sym_r_DQUOTE] = ACTIONS(1887), [sym_pseudo_compile_time_identifier] = ACTIONS(1889), [anon_sym_shared] = ACTIONS(1889), [anon_sym_map_LBRACK] = ACTIONS(1887), [anon_sym_chan] = ACTIONS(1889), [anon_sym_thread] = ACTIONS(1889), [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1887), - [sym___single_quote] = ACTIONS(1887), - [sym___c_double_quote] = ACTIONS(1887), - [sym___c_single_quote] = ACTIONS(1887), - [sym___r_double_quote] = ACTIONS(1887), - [sym___r_single_quote] = ACTIONS(1887), + }, + [1283] = { + [sym_line_comment] = STATE(1283), + [sym_block_comment] = STATE(1283), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_identifier] = ACTIONS(1791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(3849), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_STAR] = ACTIONS(3851), + [anon_sym_SLASH] = ACTIONS(3853), + [anon_sym_PERCENT] = ACTIONS(3851), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_EQ_EQ] = ACTIONS(1789), + [anon_sym_BANG_EQ] = ACTIONS(1789), + [anon_sym_LT_EQ] = ACTIONS(1789), + [anon_sym_GT_EQ] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_COLON] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1789), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_CARET] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_LT_DASH] = ACTIONS(1789), + [anon_sym_LT_LT] = ACTIONS(3851), + [anon_sym_GT_GT] = ACTIONS(3853), + [anon_sym_GT_GT_GT] = ACTIONS(3851), + [anon_sym_AMP_CARET] = ACTIONS(3851), + [anon_sym_AMP_AMP] = ACTIONS(1789), + [anon_sym_PIPE_PIPE] = ACTIONS(1789), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1789), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_BANGin] = ACTIONS(1789), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1789), + [sym_rune_literal] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_c_SQUOTE] = ACTIONS(1789), + [anon_sym_c_DQUOTE] = ACTIONS(1789), + [anon_sym_r_SQUOTE] = ACTIONS(1789), + [anon_sym_r_DQUOTE] = ACTIONS(1789), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1789), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + }, + [1284] = { + [sym_line_comment] = STATE(1284), + [sym_block_comment] = STATE(1284), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_identifier] = ACTIONS(1791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(3849), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_STAR] = ACTIONS(3851), + [anon_sym_SLASH] = ACTIONS(3853), + [anon_sym_PERCENT] = ACTIONS(3851), + [anon_sym_LT] = ACTIONS(3855), + [anon_sym_GT] = ACTIONS(3855), + [anon_sym_EQ_EQ] = ACTIONS(3857), + [anon_sym_BANG_EQ] = ACTIONS(3857), + [anon_sym_LT_EQ] = ACTIONS(3857), + [anon_sym_GT_EQ] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_COLON] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1789), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_CARET] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_LT_DASH] = ACTIONS(1789), + [anon_sym_LT_LT] = ACTIONS(3851), + [anon_sym_GT_GT] = ACTIONS(3853), + [anon_sym_GT_GT_GT] = ACTIONS(3851), + [anon_sym_AMP_CARET] = ACTIONS(3851), + [anon_sym_AMP_AMP] = ACTIONS(1789), + [anon_sym_PIPE_PIPE] = ACTIONS(1789), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1789), + [anon_sym_in] = ACTIONS(3877), + [anon_sym_BANGin] = ACTIONS(3879), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1789), + [sym_rune_literal] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_c_SQUOTE] = ACTIONS(1789), + [anon_sym_c_DQUOTE] = ACTIONS(1789), + [anon_sym_r_SQUOTE] = ACTIONS(1789), + [anon_sym_r_DQUOTE] = ACTIONS(1789), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1789), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + }, + [1285] = { + [sym_line_comment] = STATE(1285), + [sym_block_comment] = STATE(1285), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_identifier] = ACTIONS(1779), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(3845), + [anon_sym_LBRACE] = ACTIONS(1777), + [anon_sym_COMMA] = ACTIONS(1777), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_PIPE] = ACTIONS(3883), + [anon_sym_fn] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(3883), + [anon_sym_DASH] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_LT] = ACTIONS(3891), + [anon_sym_GT] = ACTIONS(3891), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_RBRACK] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1779), + [anon_sym_mut] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(3861), + [anon_sym_DASH_DASH] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(1779), + [anon_sym_spawn] = ACTIONS(1779), + [anon_sym_json_DOTdecode] = ACTIONS(1777), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_CARET] = ACTIONS(3889), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_DASH] = ACTIONS(1777), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_AMP_CARET] = ACTIONS(3885), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_or] = ACTIONS(3871), + [sym_none] = ACTIONS(1779), + [sym_true] = ACTIONS(1779), + [sym_false] = ACTIONS(1779), + [sym_nil] = ACTIONS(1779), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1779), + [anon_sym_is] = ACTIONS(3873), + [anon_sym_BANGis] = ACTIONS(3875), + [anon_sym_in] = ACTIONS(3895), + [anon_sym_BANGin] = ACTIONS(3897), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_select] = ACTIONS(1779), + [anon_sym_lock] = ACTIONS(1779), + [anon_sym_rlock] = ACTIONS(1779), + [anon_sym_unsafe] = ACTIONS(1779), + [anon_sym_sql] = ACTIONS(1779), + [sym_int_literal] = ACTIONS(1779), + [sym_float_literal] = ACTIONS(1777), + [sym_rune_literal] = ACTIONS(1777), + [anon_sym_SQUOTE] = ACTIONS(1777), + [anon_sym_DQUOTE] = ACTIONS(1777), + [anon_sym_c_SQUOTE] = ACTIONS(1777), + [anon_sym_c_DQUOTE] = ACTIONS(1777), + [anon_sym_r_SQUOTE] = ACTIONS(1777), + [anon_sym_r_DQUOTE] = ACTIONS(1777), + [sym_pseudo_compile_time_identifier] = ACTIONS(1779), + [anon_sym_shared] = ACTIONS(1779), + [anon_sym_map_LBRACK] = ACTIONS(1777), + [anon_sym_chan] = ACTIONS(1779), + [anon_sym_thread] = ACTIONS(1779), + [anon_sym_atomic] = ACTIONS(1779), + }, + [1286] = { + [sym_line_comment] = STATE(1286), + [sym_block_comment] = STATE(1286), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_identifier] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(3845), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_COMMA] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_PIPE] = ACTIONS(3883), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(3883), + [anon_sym_DASH] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_LT] = ACTIONS(3891), + [anon_sym_GT] = ACTIONS(3891), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_RBRACK] = ACTIONS(1763), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(3861), + [anon_sym_DASH_DASH] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1763), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_CARET] = ACTIONS(3889), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_DASH] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_AMP_CARET] = ACTIONS(3885), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_or] = ACTIONS(3871), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(3873), + [anon_sym_BANGis] = ACTIONS(3875), + [anon_sym_in] = ACTIONS(3895), + [anon_sym_BANGin] = ACTIONS(3897), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1763), + [sym_rune_literal] = ACTIONS(1763), + [anon_sym_SQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_c_SQUOTE] = ACTIONS(1763), + [anon_sym_c_DQUOTE] = ACTIONS(1763), + [anon_sym_r_SQUOTE] = ACTIONS(1763), + [anon_sym_r_DQUOTE] = ACTIONS(1763), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1763), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + }, + [1287] = { + [sym_line_comment] = STATE(1287), + [sym_block_comment] = STATE(1287), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_identifier] = ACTIONS(1787), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_fn] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(3849), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_STAR] = ACTIONS(3851), + [anon_sym_SLASH] = ACTIONS(3853), + [anon_sym_PERCENT] = ACTIONS(3851), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_struct] = ACTIONS(1787), + [anon_sym_mut] = ACTIONS(1787), + [anon_sym_COLON] = ACTIONS(1785), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(1787), + [anon_sym_spawn] = ACTIONS(1787), + [anon_sym_json_DOTdecode] = ACTIONS(1785), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_CARET] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_LT_DASH] = ACTIONS(1785), + [anon_sym_LT_LT] = ACTIONS(3851), + [anon_sym_GT_GT] = ACTIONS(3853), + [anon_sym_GT_GT_GT] = ACTIONS(3851), + [anon_sym_AMP_CARET] = ACTIONS(3851), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_or] = ACTIONS(1787), + [sym_none] = ACTIONS(1787), + [sym_true] = ACTIONS(1787), + [sym_false] = ACTIONS(1787), + [sym_nil] = ACTIONS(1787), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_DOLLARif] = ACTIONS(1787), + [anon_sym_is] = ACTIONS(1787), + [anon_sym_BANGis] = ACTIONS(1785), + [anon_sym_in] = ACTIONS(1787), + [anon_sym_BANGin] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1787), + [anon_sym_select] = ACTIONS(1787), + [anon_sym_lock] = ACTIONS(1787), + [anon_sym_rlock] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1787), + [anon_sym_sql] = ACTIONS(1787), + [sym_int_literal] = ACTIONS(1787), + [sym_float_literal] = ACTIONS(1785), + [sym_rune_literal] = ACTIONS(1785), + [anon_sym_SQUOTE] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [anon_sym_c_SQUOTE] = ACTIONS(1785), + [anon_sym_c_DQUOTE] = ACTIONS(1785), + [anon_sym_r_SQUOTE] = ACTIONS(1785), + [anon_sym_r_DQUOTE] = ACTIONS(1785), + [sym_pseudo_compile_time_identifier] = ACTIONS(1787), + [anon_sym_shared] = ACTIONS(1787), + [anon_sym_map_LBRACK] = ACTIONS(1785), + [anon_sym_chan] = ACTIONS(1787), + [anon_sym_thread] = ACTIONS(1787), + [anon_sym_atomic] = ACTIONS(1787), + }, + [1288] = { + [sym_line_comment] = STATE(1288), + [sym_block_comment] = STATE(1288), + [sym_identifier] = ACTIONS(2055), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_DOT] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(2055), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2053), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_PERCENT] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2060), + [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_struct] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2055), + [anon_sym_spawn] = ACTIONS(2055), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_LBRACK2] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_GT_GT] = ACTIONS(2055), + [anon_sym_GT_GT_GT] = ACTIONS(2053), + [anon_sym_AMP_CARET] = ACTIONS(2053), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2055), + [sym_none] = ACTIONS(2055), + [sym_true] = ACTIONS(2055), + [sym_false] = ACTIONS(2055), + [sym_nil] = ACTIONS(2055), + [anon_sym_QMARK_DOT] = ACTIONS(2053), + [anon_sym_POUND_LBRACK] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_DOLLARif] = ACTIONS(2055), + [anon_sym_is] = ACTIONS(2055), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2055), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_select] = ACTIONS(2055), + [anon_sym_lock] = ACTIONS(2055), + [anon_sym_rlock] = ACTIONS(2055), + [anon_sym_unsafe] = ACTIONS(2055), + [anon_sym_sql] = ACTIONS(2055), + [sym_int_literal] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2055), + [anon_sym_shared] = ACTIONS(2055), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2055), + [anon_sym_thread] = ACTIONS(2055), + [anon_sym_atomic] = ACTIONS(2055), + }, + [1289] = { + [sym_line_comment] = STATE(1289), + [sym_block_comment] = STATE(1289), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_identifier] = ACTIONS(1791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_PIPE] = ACTIONS(1791), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_EQ_EQ] = ACTIONS(1789), + [anon_sym_BANG_EQ] = ACTIONS(1789), + [anon_sym_LT_EQ] = ACTIONS(1789), + [anon_sym_GT_EQ] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_RBRACK] = ACTIONS(1789), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1789), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_CARET] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_DASH] = ACTIONS(1789), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_AMP_CARET] = ACTIONS(3885), + [anon_sym_AMP_AMP] = ACTIONS(1789), + [anon_sym_PIPE_PIPE] = ACTIONS(1789), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1789), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_BANGin] = ACTIONS(1789), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1789), + [sym_rune_literal] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_c_SQUOTE] = ACTIONS(1789), + [anon_sym_c_DQUOTE] = ACTIONS(1789), + [anon_sym_r_SQUOTE] = ACTIONS(1789), + [anon_sym_r_DQUOTE] = ACTIONS(1789), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1789), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), + }, + [1290] = { + [sym_line_comment] = STATE(1290), + [sym_block_comment] = STATE(1290), + [sym_identifier] = ACTIONS(2507), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_DOT] = ACTIONS(2507), + [anon_sym_as] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(2505), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_PIPE] = ACTIONS(2507), + [anon_sym_fn] = ACTIONS(2507), + [anon_sym_PLUS] = ACTIONS(2507), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_GT] = ACTIONS(2507), + [anon_sym_EQ_EQ] = ACTIONS(2505), + [anon_sym_BANG_EQ] = ACTIONS(2505), + [anon_sym_LT_EQ] = ACTIONS(2505), + [anon_sym_GT_EQ] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2505), + [anon_sym_RBRACK] = ACTIONS(2505), + [anon_sym_struct] = ACTIONS(2507), + [anon_sym_mut] = ACTIONS(2507), + [anon_sym_COLON] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_QMARK] = ACTIONS(2507), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_go] = ACTIONS(2507), + [anon_sym_spawn] = ACTIONS(2507), + [anon_sym_json_DOTdecode] = ACTIONS(2505), + [anon_sym_LBRACK2] = ACTIONS(2507), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_CARET] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2507), + [anon_sym_LT_DASH] = ACTIONS(2505), + [anon_sym_LT_LT] = ACTIONS(2505), + [anon_sym_GT_GT] = ACTIONS(2507), + [anon_sym_GT_GT_GT] = ACTIONS(2505), + [anon_sym_AMP_CARET] = ACTIONS(2505), + [anon_sym_AMP_AMP] = ACTIONS(2505), + [anon_sym_PIPE_PIPE] = ACTIONS(2505), + [anon_sym_or] = ACTIONS(2507), + [sym_none] = ACTIONS(2507), + [sym_true] = ACTIONS(2507), + [sym_false] = ACTIONS(2507), + [sym_nil] = ACTIONS(2507), + [anon_sym_QMARK_DOT] = ACTIONS(2505), + [anon_sym_POUND_LBRACK] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_DOLLARif] = ACTIONS(2507), + [anon_sym_is] = ACTIONS(2507), + [anon_sym_BANGis] = ACTIONS(2505), + [anon_sym_in] = ACTIONS(2507), + [anon_sym_BANGin] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2507), + [anon_sym_select] = ACTIONS(2507), + [anon_sym_lock] = ACTIONS(2507), + [anon_sym_rlock] = ACTIONS(2507), + [anon_sym_unsafe] = ACTIONS(2507), + [anon_sym_sql] = ACTIONS(2507), + [sym_int_literal] = ACTIONS(2507), + [sym_float_literal] = ACTIONS(2505), + [sym_rune_literal] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2505), + [anon_sym_c_SQUOTE] = ACTIONS(2505), + [anon_sym_c_DQUOTE] = ACTIONS(2505), + [anon_sym_r_SQUOTE] = ACTIONS(2505), + [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_pseudo_compile_time_identifier] = ACTIONS(2507), + [anon_sym_shared] = ACTIONS(2507), + [anon_sym_map_LBRACK] = ACTIONS(2505), + [anon_sym_chan] = ACTIONS(2507), + [anon_sym_thread] = ACTIONS(2507), + [anon_sym_atomic] = ACTIONS(2507), + }, + [1291] = { + [sym_line_comment] = STATE(1291), + [sym_block_comment] = STATE(1291), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_identifier] = ACTIONS(3907), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(3845), + [anon_sym_LBRACE] = ACTIONS(3909), + [anon_sym_COMMA] = ACTIONS(3911), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_PIPE] = ACTIONS(3883), + [anon_sym_fn] = ACTIONS(3907), + [anon_sym_PLUS] = ACTIONS(3883), + [anon_sym_DASH] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3885), + [anon_sym_LT] = ACTIONS(3891), + [anon_sym_GT] = ACTIONS(3891), + [anon_sym_EQ_EQ] = ACTIONS(3893), + [anon_sym_BANG_EQ] = ACTIONS(3893), + [anon_sym_LT_EQ] = ACTIONS(3893), + [anon_sym_GT_EQ] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_RBRACK] = ACTIONS(3909), + [anon_sym_struct] = ACTIONS(3907), + [anon_sym_mut] = ACTIONS(3907), + [anon_sym_PLUS_PLUS] = ACTIONS(3861), + [anon_sym_DASH_DASH] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(3907), + [anon_sym_spawn] = ACTIONS(3907), + [anon_sym_json_DOTdecode] = ACTIONS(3909), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3889), + [anon_sym_AMP] = ACTIONS(3887), + [anon_sym_LT_DASH] = ACTIONS(3909), + [anon_sym_LT_LT] = ACTIONS(3885), + [anon_sym_GT_GT] = ACTIONS(3887), + [anon_sym_GT_GT_GT] = ACTIONS(3885), + [anon_sym_AMP_CARET] = ACTIONS(3885), + [anon_sym_AMP_AMP] = ACTIONS(3899), + [anon_sym_PIPE_PIPE] = ACTIONS(3905), + [anon_sym_or] = ACTIONS(3871), + [sym_none] = ACTIONS(3907), + [sym_true] = ACTIONS(3907), + [sym_false] = ACTIONS(3907), + [sym_nil] = ACTIONS(3907), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(3907), + [anon_sym_DOLLARif] = ACTIONS(3907), + [anon_sym_is] = ACTIONS(3873), + [anon_sym_BANGis] = ACTIONS(3875), + [anon_sym_in] = ACTIONS(3895), + [anon_sym_BANGin] = ACTIONS(3897), + [anon_sym_match] = ACTIONS(3907), + [anon_sym_select] = ACTIONS(3907), + [anon_sym_lock] = ACTIONS(3907), + [anon_sym_rlock] = ACTIONS(3907), + [anon_sym_unsafe] = ACTIONS(3907), + [anon_sym_sql] = ACTIONS(3907), + [sym_int_literal] = ACTIONS(3907), + [sym_float_literal] = ACTIONS(3909), + [sym_rune_literal] = ACTIONS(3909), + [anon_sym_SQUOTE] = ACTIONS(3909), + [anon_sym_DQUOTE] = ACTIONS(3909), + [anon_sym_c_SQUOTE] = ACTIONS(3909), + [anon_sym_c_DQUOTE] = ACTIONS(3909), + [anon_sym_r_SQUOTE] = ACTIONS(3909), + [anon_sym_r_DQUOTE] = ACTIONS(3909), + [sym_pseudo_compile_time_identifier] = ACTIONS(3907), + [anon_sym_shared] = ACTIONS(3907), + [anon_sym_map_LBRACK] = ACTIONS(3909), + [anon_sym_chan] = ACTIONS(3907), + [anon_sym_thread] = ACTIONS(3907), + [anon_sym_atomic] = ACTIONS(3907), + }, + [1292] = { + [sym_line_comment] = STATE(1292), + [sym_block_comment] = STATE(1292), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_identifier] = ACTIONS(1791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(3849), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_STAR] = ACTIONS(3851), + [anon_sym_SLASH] = ACTIONS(3853), + [anon_sym_PERCENT] = ACTIONS(3851), + [anon_sym_LT] = ACTIONS(3855), + [anon_sym_GT] = ACTIONS(3855), + [anon_sym_EQ_EQ] = ACTIONS(3857), + [anon_sym_BANG_EQ] = ACTIONS(3857), + [anon_sym_LT_EQ] = ACTIONS(3857), + [anon_sym_GT_EQ] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_COLON] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(1791), + [anon_sym_spawn] = ACTIONS(1791), + [anon_sym_json_DOTdecode] = ACTIONS(1789), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_CARET] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_LT_DASH] = ACTIONS(1789), + [anon_sym_LT_LT] = ACTIONS(3851), + [anon_sym_GT_GT] = ACTIONS(3853), + [anon_sym_GT_GT_GT] = ACTIONS(3851), + [anon_sym_AMP_CARET] = ACTIONS(3851), + [anon_sym_AMP_AMP] = ACTIONS(3867), + [anon_sym_PIPE_PIPE] = ACTIONS(1789), + [anon_sym_or] = ACTIONS(1791), + [sym_none] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_nil] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_DOLLARif] = ACTIONS(1791), + [anon_sym_is] = ACTIONS(1791), + [anon_sym_BANGis] = ACTIONS(1789), + [anon_sym_in] = ACTIONS(3877), + [anon_sym_BANGin] = ACTIONS(3879), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1791), + [anon_sym_rlock] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1791), + [sym_int_literal] = ACTIONS(1791), + [sym_float_literal] = ACTIONS(1789), + [sym_rune_literal] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_c_SQUOTE] = ACTIONS(1789), + [anon_sym_c_DQUOTE] = ACTIONS(1789), + [anon_sym_r_SQUOTE] = ACTIONS(1789), + [anon_sym_r_DQUOTE] = ACTIONS(1789), + [sym_pseudo_compile_time_identifier] = ACTIONS(1791), + [anon_sym_shared] = ACTIONS(1791), + [anon_sym_map_LBRACK] = ACTIONS(1789), + [anon_sym_chan] = ACTIONS(1791), + [anon_sym_thread] = ACTIONS(1791), + [anon_sym_atomic] = ACTIONS(1791), }, [1293] = { [sym_line_comment] = STATE(1293), [sym_block_comment] = STATE(1293), - [sym_identifier] = ACTIONS(2509), + [sym_identifier] = ACTIONS(2817), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2509), - [anon_sym_as] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_COMMA] = ACTIONS(2507), - [anon_sym_RBRACE] = ACTIONS(2507), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_fn] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_STAR] = ACTIONS(2507), - [anon_sym_SLASH] = ACTIONS(2509), - [anon_sym_PERCENT] = ACTIONS(2507), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_GT] = ACTIONS(2509), - [anon_sym_EQ_EQ] = ACTIONS(2507), - [anon_sym_BANG_EQ] = ACTIONS(2507), - [anon_sym_LT_EQ] = ACTIONS(2507), - [anon_sym_GT_EQ] = ACTIONS(2507), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_RBRACK] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2509), - [anon_sym_mut] = ACTIONS(2509), - [anon_sym_COLON] = ACTIONS(2507), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_go] = ACTIONS(2509), - [anon_sym_spawn] = ACTIONS(2509), - [anon_sym_json_DOTdecode] = ACTIONS(2507), - [anon_sym_LBRACK2] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_CARET] = ACTIONS(2507), - [anon_sym_AMP] = ACTIONS(2509), - [anon_sym_LT_DASH] = ACTIONS(2507), - [anon_sym_LT_LT] = ACTIONS(2507), - [anon_sym_GT_GT] = ACTIONS(2509), - [anon_sym_GT_GT_GT] = ACTIONS(2507), - [anon_sym_AMP_CARET] = ACTIONS(2507), - [anon_sym_AMP_AMP] = ACTIONS(2507), - [anon_sym_PIPE_PIPE] = ACTIONS(2507), - [anon_sym_or] = ACTIONS(2509), - [sym_none] = ACTIONS(2509), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_nil] = ACTIONS(2509), - [anon_sym_QMARK_DOT] = ACTIONS(2507), - [anon_sym_POUND_LBRACK] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_DOLLARif] = ACTIONS(2509), - [anon_sym_is] = ACTIONS(2509), - [anon_sym_BANGis] = ACTIONS(2507), - [anon_sym_in] = ACTIONS(2509), - [anon_sym_BANGin] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_select] = ACTIONS(2509), - [anon_sym_lock] = ACTIONS(2509), - [anon_sym_rlock] = ACTIONS(2509), - [anon_sym_unsafe] = ACTIONS(2509), - [anon_sym_sql] = ACTIONS(2509), - [sym_int_literal] = ACTIONS(2509), - [sym_float_literal] = ACTIONS(2507), - [sym_rune_literal] = ACTIONS(2507), - [sym_pseudo_compile_time_identifier] = ACTIONS(2509), - [anon_sym_shared] = ACTIONS(2509), - [anon_sym_map_LBRACK] = ACTIONS(2507), - [anon_sym_chan] = ACTIONS(2509), - [anon_sym_thread] = ACTIONS(2509), - [anon_sym_atomic] = ACTIONS(2509), - [sym___double_quote] = ACTIONS(2507), - [sym___single_quote] = ACTIONS(2507), - [sym___c_double_quote] = ACTIONS(2507), - [sym___c_single_quote] = ACTIONS(2507), - [sym___r_double_quote] = ACTIONS(2507), - [sym___r_single_quote] = ACTIONS(2507), + [anon_sym_DOT] = ACTIONS(2817), + [anon_sym_as] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2815), + [anon_sym_COMMA] = ACTIONS(2815), + [anon_sym_RBRACE] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2815), + [anon_sym_PIPE] = ACTIONS(2817), + [anon_sym_fn] = ACTIONS(2817), + [anon_sym_PLUS] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_SLASH] = ACTIONS(2817), + [anon_sym_PERCENT] = ACTIONS(2815), + [anon_sym_LT] = ACTIONS(2817), + [anon_sym_GT] = ACTIONS(2817), + [anon_sym_EQ_EQ] = ACTIONS(2815), + [anon_sym_BANG_EQ] = ACTIONS(2815), + [anon_sym_LT_EQ] = ACTIONS(2815), + [anon_sym_GT_EQ] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_RBRACK] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2817), + [anon_sym_mut] = ACTIONS(2817), + [anon_sym_COLON] = ACTIONS(2815), + [anon_sym_PLUS_PLUS] = ACTIONS(2815), + [anon_sym_DASH_DASH] = ACTIONS(2815), + [anon_sym_QMARK] = ACTIONS(2817), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2817), + [anon_sym_spawn] = ACTIONS(2817), + [anon_sym_json_DOTdecode] = ACTIONS(2815), + [anon_sym_LBRACK2] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2815), + [anon_sym_CARET] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_LT_DASH] = ACTIONS(2815), + [anon_sym_LT_LT] = ACTIONS(2815), + [anon_sym_GT_GT] = ACTIONS(2817), + [anon_sym_GT_GT_GT] = ACTIONS(2815), + [anon_sym_AMP_CARET] = ACTIONS(2815), + [anon_sym_AMP_AMP] = ACTIONS(2815), + [anon_sym_PIPE_PIPE] = ACTIONS(2815), + [anon_sym_or] = ACTIONS(2817), + [sym_none] = ACTIONS(2817), + [sym_true] = ACTIONS(2817), + [sym_false] = ACTIONS(2817), + [sym_nil] = ACTIONS(2817), + [anon_sym_QMARK_DOT] = ACTIONS(2815), + [anon_sym_POUND_LBRACK] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_DOLLARif] = ACTIONS(2817), + [anon_sym_is] = ACTIONS(2817), + [anon_sym_BANGis] = ACTIONS(2815), + [anon_sym_in] = ACTIONS(2817), + [anon_sym_BANGin] = ACTIONS(2815), + [anon_sym_match] = ACTIONS(2817), + [anon_sym_select] = ACTIONS(2817), + [anon_sym_lock] = ACTIONS(2817), + [anon_sym_rlock] = ACTIONS(2817), + [anon_sym_unsafe] = ACTIONS(2817), + [anon_sym_sql] = ACTIONS(2817), + [sym_int_literal] = ACTIONS(2817), + [sym_float_literal] = ACTIONS(2815), + [sym_rune_literal] = ACTIONS(2815), + [anon_sym_SQUOTE] = ACTIONS(2815), + [anon_sym_DQUOTE] = ACTIONS(2815), + [anon_sym_c_SQUOTE] = ACTIONS(2815), + [anon_sym_c_DQUOTE] = ACTIONS(2815), + [anon_sym_r_SQUOTE] = ACTIONS(2815), + [anon_sym_r_DQUOTE] = ACTIONS(2815), + [sym_pseudo_compile_time_identifier] = ACTIONS(2817), + [anon_sym_shared] = ACTIONS(2817), + [anon_sym_map_LBRACK] = ACTIONS(2815), + [anon_sym_chan] = ACTIONS(2817), + [anon_sym_thread] = ACTIONS(2817), + [anon_sym_atomic] = ACTIONS(2817), }, [1294] = { [sym_line_comment] = STATE(1294), [sym_block_comment] = STATE(1294), - [sym_identifier] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2821), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2455), - [anon_sym_as] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_COMMA] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2453), - [anon_sym_PIPE] = ACTIONS(2455), - [anon_sym_fn] = ACTIONS(2455), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_SLASH] = ACTIONS(2455), - [anon_sym_PERCENT] = ACTIONS(2453), - [anon_sym_LT] = ACTIONS(2455), - [anon_sym_GT] = ACTIONS(2455), - [anon_sym_EQ_EQ] = ACTIONS(2453), - [anon_sym_BANG_EQ] = ACTIONS(2453), - [anon_sym_LT_EQ] = ACTIONS(2453), - [anon_sym_GT_EQ] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2453), - [anon_sym_RBRACK] = ACTIONS(2453), - [anon_sym_struct] = ACTIONS(2455), - [anon_sym_mut] = ACTIONS(2455), - [anon_sym_COLON] = ACTIONS(2453), - [anon_sym_PLUS_PLUS] = ACTIONS(2453), - [anon_sym_DASH_DASH] = ACTIONS(2453), - [anon_sym_QMARK] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2455), - [anon_sym_go] = ACTIONS(2455), - [anon_sym_spawn] = ACTIONS(2455), - [anon_sym_json_DOTdecode] = ACTIONS(2453), - [anon_sym_LBRACK2] = ACTIONS(2455), - [anon_sym_TILDE] = ACTIONS(2453), - [anon_sym_CARET] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(2455), - [anon_sym_LT_DASH] = ACTIONS(2453), - [anon_sym_LT_LT] = ACTIONS(2453), - [anon_sym_GT_GT] = ACTIONS(2455), - [anon_sym_GT_GT_GT] = ACTIONS(2453), - [anon_sym_AMP_CARET] = ACTIONS(2453), - [anon_sym_AMP_AMP] = ACTIONS(2453), - [anon_sym_PIPE_PIPE] = ACTIONS(2453), - [anon_sym_or] = ACTIONS(2455), - [sym_none] = ACTIONS(2455), - [sym_true] = ACTIONS(2455), - [sym_false] = ACTIONS(2455), - [sym_nil] = ACTIONS(2455), - [anon_sym_QMARK_DOT] = ACTIONS(2453), - [anon_sym_POUND_LBRACK] = ACTIONS(2453), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_DOLLARif] = ACTIONS(2455), - [anon_sym_is] = ACTIONS(2455), - [anon_sym_BANGis] = ACTIONS(2453), - [anon_sym_in] = ACTIONS(2455), - [anon_sym_BANGin] = ACTIONS(2453), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_select] = ACTIONS(2455), - [anon_sym_lock] = ACTIONS(2455), - [anon_sym_rlock] = ACTIONS(2455), - [anon_sym_unsafe] = ACTIONS(2455), - [anon_sym_sql] = ACTIONS(2455), - [sym_int_literal] = ACTIONS(2455), - [sym_float_literal] = ACTIONS(2453), - [sym_rune_literal] = ACTIONS(2453), - [sym_pseudo_compile_time_identifier] = ACTIONS(2455), - [anon_sym_shared] = ACTIONS(2455), - [anon_sym_map_LBRACK] = ACTIONS(2453), - [anon_sym_chan] = ACTIONS(2455), - [anon_sym_thread] = ACTIONS(2455), - [anon_sym_atomic] = ACTIONS(2455), - [sym___double_quote] = ACTIONS(2453), - [sym___single_quote] = ACTIONS(2453), - [sym___c_double_quote] = ACTIONS(2453), - [sym___c_single_quote] = ACTIONS(2453), - [sym___r_double_quote] = ACTIONS(2453), - [sym___r_single_quote] = ACTIONS(2453), + [anon_sym_DOT] = ACTIONS(2821), + [anon_sym_as] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_COMMA] = ACTIONS(2819), + [anon_sym_RBRACE] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2819), + [anon_sym_PIPE] = ACTIONS(2821), + [anon_sym_fn] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_SLASH] = ACTIONS(2821), + [anon_sym_PERCENT] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(2821), + [anon_sym_EQ_EQ] = ACTIONS(2819), + [anon_sym_BANG_EQ] = ACTIONS(2819), + [anon_sym_LT_EQ] = ACTIONS(2819), + [anon_sym_GT_EQ] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_RBRACK] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2821), + [anon_sym_mut] = ACTIONS(2821), + [anon_sym_COLON] = ACTIONS(2819), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_QMARK] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_go] = ACTIONS(2821), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(2819), + [anon_sym_LBRACK2] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_CARET] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_LT_DASH] = ACTIONS(2819), + [anon_sym_LT_LT] = ACTIONS(2819), + [anon_sym_GT_GT] = ACTIONS(2821), + [anon_sym_GT_GT_GT] = ACTIONS(2819), + [anon_sym_AMP_CARET] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_PIPE_PIPE] = ACTIONS(2819), + [anon_sym_or] = ACTIONS(2821), + [sym_none] = ACTIONS(2821), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_nil] = ACTIONS(2821), + [anon_sym_QMARK_DOT] = ACTIONS(2819), + [anon_sym_POUND_LBRACK] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_DOLLARif] = ACTIONS(2821), + [anon_sym_is] = ACTIONS(2821), + [anon_sym_BANGis] = ACTIONS(2819), + [anon_sym_in] = ACTIONS(2821), + [anon_sym_BANGin] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2821), + [anon_sym_lock] = ACTIONS(2821), + [anon_sym_rlock] = ACTIONS(2821), + [anon_sym_unsafe] = ACTIONS(2821), + [anon_sym_sql] = ACTIONS(2821), + [sym_int_literal] = ACTIONS(2821), + [sym_float_literal] = ACTIONS(2819), + [sym_rune_literal] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [anon_sym_c_SQUOTE] = ACTIONS(2819), + [anon_sym_c_DQUOTE] = ACTIONS(2819), + [anon_sym_r_SQUOTE] = ACTIONS(2819), + [anon_sym_r_DQUOTE] = ACTIONS(2819), + [sym_pseudo_compile_time_identifier] = ACTIONS(2821), + [anon_sym_shared] = ACTIONS(2821), + [anon_sym_map_LBRACK] = ACTIONS(2819), + [anon_sym_chan] = ACTIONS(2821), + [anon_sym_thread] = ACTIONS(2821), + [anon_sym_atomic] = ACTIONS(2821), }, [1295] = { [sym_line_comment] = STATE(1295), [sym_block_comment] = STATE(1295), - [sym_identifier] = ACTIONS(1987), + [sym_identifier] = ACTIONS(2801), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1987), - [anon_sym_as] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_COMMA] = ACTIONS(1989), - [anon_sym_RBRACE] = ACTIONS(1989), - [anon_sym_LPAREN] = ACTIONS(1989), - [anon_sym_PIPE] = ACTIONS(1987), - [anon_sym_fn] = ACTIONS(1987), - [anon_sym_PLUS] = ACTIONS(1987), - [anon_sym_DASH] = ACTIONS(1987), - [anon_sym_STAR] = ACTIONS(1989), - [anon_sym_SLASH] = ACTIONS(1987), - [anon_sym_PERCENT] = ACTIONS(1989), - [anon_sym_LT] = ACTIONS(1987), - [anon_sym_GT] = ACTIONS(1987), - [anon_sym_EQ_EQ] = ACTIONS(1989), - [anon_sym_BANG_EQ] = ACTIONS(1989), - [anon_sym_LT_EQ] = ACTIONS(1989), - [anon_sym_GT_EQ] = ACTIONS(1989), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_RBRACK] = ACTIONS(1989), - [anon_sym_struct] = ACTIONS(1987), - [anon_sym_mut] = ACTIONS(1987), - [anon_sym_COLON] = ACTIONS(1989), - [anon_sym_PLUS_PLUS] = ACTIONS(1989), - [anon_sym_DASH_DASH] = ACTIONS(1989), - [anon_sym_QMARK] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1987), - [anon_sym_go] = ACTIONS(1987), - [anon_sym_spawn] = ACTIONS(1987), - [anon_sym_json_DOTdecode] = ACTIONS(1989), - [anon_sym_LBRACK2] = ACTIONS(1987), - [anon_sym_TILDE] = ACTIONS(1989), - [anon_sym_CARET] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1987), - [anon_sym_LT_DASH] = ACTIONS(1989), - [anon_sym_LT_LT] = ACTIONS(1989), - [anon_sym_GT_GT] = ACTIONS(1987), - [anon_sym_GT_GT_GT] = ACTIONS(1989), - [anon_sym_AMP_CARET] = ACTIONS(1989), - [anon_sym_AMP_AMP] = ACTIONS(1989), - [anon_sym_PIPE_PIPE] = ACTIONS(1989), - [anon_sym_or] = ACTIONS(1987), - [sym_none] = ACTIONS(1987), - [sym_true] = ACTIONS(1987), - [sym_false] = ACTIONS(1987), - [sym_nil] = ACTIONS(1987), - [anon_sym_QMARK_DOT] = ACTIONS(1989), - [anon_sym_POUND_LBRACK] = ACTIONS(1989), - [anon_sym_if] = ACTIONS(1987), - [anon_sym_DOLLARif] = ACTIONS(1987), - [anon_sym_is] = ACTIONS(1987), - [anon_sym_BANGis] = ACTIONS(1989), - [anon_sym_in] = ACTIONS(1987), - [anon_sym_BANGin] = ACTIONS(1989), - [anon_sym_match] = ACTIONS(1987), - [anon_sym_select] = ACTIONS(1987), - [anon_sym_lock] = ACTIONS(1987), - [anon_sym_rlock] = ACTIONS(1987), - [anon_sym_unsafe] = ACTIONS(1987), - [anon_sym_sql] = ACTIONS(1987), - [sym_int_literal] = ACTIONS(1987), - [sym_float_literal] = ACTIONS(1989), - [sym_rune_literal] = ACTIONS(1989), - [sym_pseudo_compile_time_identifier] = ACTIONS(1987), - [anon_sym_shared] = ACTIONS(1987), - [anon_sym_map_LBRACK] = ACTIONS(1989), - [anon_sym_chan] = ACTIONS(1987), - [anon_sym_thread] = ACTIONS(1987), - [anon_sym_atomic] = ACTIONS(1987), - [sym___double_quote] = ACTIONS(1989), - [sym___single_quote] = ACTIONS(1989), - [sym___c_double_quote] = ACTIONS(1989), - [sym___c_single_quote] = ACTIONS(1989), - [sym___r_double_quote] = ACTIONS(1989), - [sym___r_single_quote] = ACTIONS(1989), + [anon_sym_DOT] = ACTIONS(2801), + [anon_sym_as] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2799), + [anon_sym_COMMA] = ACTIONS(2799), + [anon_sym_RBRACE] = ACTIONS(2799), + [anon_sym_LPAREN] = ACTIONS(2799), + [anon_sym_PIPE] = ACTIONS(2801), + [anon_sym_fn] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_PERCENT] = ACTIONS(2799), + [anon_sym_LT] = ACTIONS(2801), + [anon_sym_GT] = ACTIONS(2801), + [anon_sym_EQ_EQ] = ACTIONS(2799), + [anon_sym_BANG_EQ] = ACTIONS(2799), + [anon_sym_LT_EQ] = ACTIONS(2799), + [anon_sym_GT_EQ] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_RBRACK] = ACTIONS(2799), + [anon_sym_struct] = ACTIONS(2801), + [anon_sym_mut] = ACTIONS(2801), + [anon_sym_COLON] = ACTIONS(2799), + [anon_sym_PLUS_PLUS] = ACTIONS(2799), + [anon_sym_DASH_DASH] = ACTIONS(2799), + [anon_sym_QMARK] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_go] = ACTIONS(2801), + [anon_sym_spawn] = ACTIONS(2801), + [anon_sym_json_DOTdecode] = ACTIONS(2799), + [anon_sym_LBRACK2] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2799), + [anon_sym_CARET] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_LT_DASH] = ACTIONS(2799), + [anon_sym_LT_LT] = ACTIONS(2799), + [anon_sym_GT_GT] = ACTIONS(2801), + [anon_sym_GT_GT_GT] = ACTIONS(2799), + [anon_sym_AMP_CARET] = ACTIONS(2799), + [anon_sym_AMP_AMP] = ACTIONS(2799), + [anon_sym_PIPE_PIPE] = ACTIONS(2799), + [anon_sym_or] = ACTIONS(2801), + [sym_none] = ACTIONS(2801), + [sym_true] = ACTIONS(2801), + [sym_false] = ACTIONS(2801), + [sym_nil] = ACTIONS(2801), + [anon_sym_QMARK_DOT] = ACTIONS(2799), + [anon_sym_POUND_LBRACK] = ACTIONS(2799), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_DOLLARif] = ACTIONS(2801), + [anon_sym_is] = ACTIONS(2801), + [anon_sym_BANGis] = ACTIONS(2799), + [anon_sym_in] = ACTIONS(2801), + [anon_sym_BANGin] = ACTIONS(2799), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_select] = ACTIONS(2801), + [anon_sym_lock] = ACTIONS(2801), + [anon_sym_rlock] = ACTIONS(2801), + [anon_sym_unsafe] = ACTIONS(2801), + [anon_sym_sql] = ACTIONS(2801), + [sym_int_literal] = ACTIONS(2801), + [sym_float_literal] = ACTIONS(2799), + [sym_rune_literal] = ACTIONS(2799), + [anon_sym_SQUOTE] = ACTIONS(2799), + [anon_sym_DQUOTE] = ACTIONS(2799), + [anon_sym_c_SQUOTE] = ACTIONS(2799), + [anon_sym_c_DQUOTE] = ACTIONS(2799), + [anon_sym_r_SQUOTE] = ACTIONS(2799), + [anon_sym_r_DQUOTE] = ACTIONS(2799), + [sym_pseudo_compile_time_identifier] = ACTIONS(2801), + [anon_sym_shared] = ACTIONS(2801), + [anon_sym_map_LBRACK] = ACTIONS(2799), + [anon_sym_chan] = ACTIONS(2801), + [anon_sym_thread] = ACTIONS(2801), + [anon_sym_atomic] = ACTIONS(2801), }, [1296] = { [sym_line_comment] = STATE(1296), [sym_block_comment] = STATE(1296), - [sym_identifier] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2427), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_as] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_RBRACE] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym_PIPE] = ACTIONS(2862), - [anon_sym_fn] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2860), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2860), - [anon_sym_LT] = ACTIONS(2862), - [anon_sym_GT] = ACTIONS(2862), - [anon_sym_EQ_EQ] = ACTIONS(2860), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_LT_EQ] = ACTIONS(2860), - [anon_sym_GT_EQ] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_RBRACK] = ACTIONS(2860), - [anon_sym_struct] = ACTIONS(2862), - [anon_sym_mut] = ACTIONS(2862), - [anon_sym_COLON] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [anon_sym_QMARK] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2862), - [anon_sym_go] = ACTIONS(2862), - [anon_sym_spawn] = ACTIONS(2862), - [anon_sym_json_DOTdecode] = ACTIONS(2860), - [anon_sym_LBRACK2] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_CARET] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_LT_DASH] = ACTIONS(2860), - [anon_sym_LT_LT] = ACTIONS(2860), - [anon_sym_GT_GT] = ACTIONS(2862), - [anon_sym_GT_GT_GT] = ACTIONS(2860), - [anon_sym_AMP_CARET] = ACTIONS(2860), - [anon_sym_AMP_AMP] = ACTIONS(2860), - [anon_sym_PIPE_PIPE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2862), - [sym_none] = ACTIONS(2862), - [sym_true] = ACTIONS(2862), - [sym_false] = ACTIONS(2862), - [sym_nil] = ACTIONS(2862), - [anon_sym_QMARK_DOT] = ACTIONS(2860), - [anon_sym_POUND_LBRACK] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_DOLLARif] = ACTIONS(2862), - [anon_sym_is] = ACTIONS(2862), - [anon_sym_BANGis] = ACTIONS(2860), - [anon_sym_in] = ACTIONS(2862), - [anon_sym_BANGin] = ACTIONS(2860), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_select] = ACTIONS(2862), - [anon_sym_lock] = ACTIONS(2862), - [anon_sym_rlock] = ACTIONS(2862), - [anon_sym_unsafe] = ACTIONS(2862), - [anon_sym_sql] = ACTIONS(2862), - [sym_int_literal] = ACTIONS(2862), - [sym_float_literal] = ACTIONS(2860), - [sym_rune_literal] = ACTIONS(2860), - [sym_pseudo_compile_time_identifier] = ACTIONS(2862), - [anon_sym_shared] = ACTIONS(2862), - [anon_sym_map_LBRACK] = ACTIONS(2860), - [anon_sym_chan] = ACTIONS(2862), - [anon_sym_thread] = ACTIONS(2862), - [anon_sym_atomic] = ACTIONS(2862), - [sym___double_quote] = ACTIONS(2860), - [sym___single_quote] = ACTIONS(2860), - [sym___c_double_quote] = ACTIONS(2860), - [sym___c_single_quote] = ACTIONS(2860), - [sym___r_double_quote] = ACTIONS(2860), - [sym___r_single_quote] = ACTIONS(2860), + [anon_sym_DOT] = ACTIONS(2427), + [anon_sym_as] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2425), + [anon_sym_COMMA] = ACTIONS(2425), + [anon_sym_RBRACE] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_PIPE] = ACTIONS(2427), + [anon_sym_fn] = ACTIONS(2427), + [anon_sym_PLUS] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2427), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_SLASH] = ACTIONS(2427), + [anon_sym_PERCENT] = ACTIONS(2425), + [anon_sym_LT] = ACTIONS(2427), + [anon_sym_GT] = ACTIONS(2427), + [anon_sym_EQ_EQ] = ACTIONS(2425), + [anon_sym_BANG_EQ] = ACTIONS(2425), + [anon_sym_LT_EQ] = ACTIONS(2425), + [anon_sym_GT_EQ] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(2425), + [anon_sym_RBRACK] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2427), + [anon_sym_mut] = ACTIONS(2427), + [anon_sym_COLON] = ACTIONS(2425), + [anon_sym_PLUS_PLUS] = ACTIONS(2425), + [anon_sym_DASH_DASH] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_go] = ACTIONS(2427), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(2425), + [anon_sym_LBRACK2] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2425), + [anon_sym_CARET] = ACTIONS(2425), + [anon_sym_AMP] = ACTIONS(2427), + [anon_sym_LT_DASH] = ACTIONS(2425), + [anon_sym_LT_LT] = ACTIONS(2425), + [anon_sym_GT_GT] = ACTIONS(2427), + [anon_sym_GT_GT_GT] = ACTIONS(2425), + [anon_sym_AMP_CARET] = ACTIONS(2425), + [anon_sym_AMP_AMP] = ACTIONS(2425), + [anon_sym_PIPE_PIPE] = ACTIONS(2425), + [anon_sym_or] = ACTIONS(2427), + [sym_none] = ACTIONS(2427), + [sym_true] = ACTIONS(2427), + [sym_false] = ACTIONS(2427), + [sym_nil] = ACTIONS(2427), + [anon_sym_QMARK_DOT] = ACTIONS(2425), + [anon_sym_POUND_LBRACK] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2427), + [anon_sym_DOLLARif] = ACTIONS(2427), + [anon_sym_is] = ACTIONS(2427), + [anon_sym_BANGis] = ACTIONS(2425), + [anon_sym_in] = ACTIONS(2427), + [anon_sym_BANGin] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2427), + [anon_sym_select] = ACTIONS(2427), + [anon_sym_lock] = ACTIONS(2427), + [anon_sym_rlock] = ACTIONS(2427), + [anon_sym_unsafe] = ACTIONS(2427), + [anon_sym_sql] = ACTIONS(2427), + [sym_int_literal] = ACTIONS(2427), + [sym_float_literal] = ACTIONS(2425), + [sym_rune_literal] = ACTIONS(2425), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(2425), + [anon_sym_c_SQUOTE] = ACTIONS(2425), + [anon_sym_c_DQUOTE] = ACTIONS(2425), + [anon_sym_r_SQUOTE] = ACTIONS(2425), + [anon_sym_r_DQUOTE] = ACTIONS(2425), + [sym_pseudo_compile_time_identifier] = ACTIONS(2427), + [anon_sym_shared] = ACTIONS(2427), + [anon_sym_map_LBRACK] = ACTIONS(2425), + [anon_sym_chan] = ACTIONS(2427), + [anon_sym_thread] = ACTIONS(2427), + [anon_sym_atomic] = ACTIONS(2427), }, [1297] = { [sym_line_comment] = STATE(1297), [sym_block_comment] = STATE(1297), - [sym_identifier] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2809), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2199), - [anon_sym_as] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_COMMA] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_PIPE] = ACTIONS(2199), - [anon_sym_fn] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(2197), - [anon_sym_SLASH] = ACTIONS(2199), - [anon_sym_PERCENT] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2199), - [anon_sym_GT] = ACTIONS(2199), - [anon_sym_EQ_EQ] = ACTIONS(2197), - [anon_sym_BANG_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_RBRACK] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(2199), - [anon_sym_mut] = ACTIONS(2199), - [anon_sym_COLON] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [anon_sym_QMARK] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_go] = ACTIONS(2199), - [anon_sym_spawn] = ACTIONS(2199), - [anon_sym_json_DOTdecode] = ACTIONS(2197), - [anon_sym_LBRACK2] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_CARET] = ACTIONS(2197), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_LT_DASH] = ACTIONS(2197), - [anon_sym_LT_LT] = ACTIONS(2197), - [anon_sym_GT_GT] = ACTIONS(2199), - [anon_sym_GT_GT_GT] = ACTIONS(2197), - [anon_sym_AMP_CARET] = ACTIONS(2197), - [anon_sym_AMP_AMP] = ACTIONS(2197), - [anon_sym_PIPE_PIPE] = ACTIONS(2197), - [anon_sym_or] = ACTIONS(2199), - [sym_none] = ACTIONS(2199), - [sym_true] = ACTIONS(2199), - [sym_false] = ACTIONS(2199), - [sym_nil] = ACTIONS(2199), - [anon_sym_QMARK_DOT] = ACTIONS(2197), - [anon_sym_POUND_LBRACK] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_DOLLARif] = ACTIONS(2199), - [anon_sym_is] = ACTIONS(2199), - [anon_sym_BANGis] = ACTIONS(2197), - [anon_sym_in] = ACTIONS(2199), - [anon_sym_BANGin] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2199), - [anon_sym_select] = ACTIONS(2199), - [anon_sym_lock] = ACTIONS(2199), - [anon_sym_rlock] = ACTIONS(2199), - [anon_sym_unsafe] = ACTIONS(2199), - [anon_sym_sql] = ACTIONS(2199), - [sym_int_literal] = ACTIONS(2199), - [sym_float_literal] = ACTIONS(2197), - [sym_rune_literal] = ACTIONS(2197), - [sym_pseudo_compile_time_identifier] = ACTIONS(2199), - [anon_sym_shared] = ACTIONS(2199), - [anon_sym_map_LBRACK] = ACTIONS(2197), - [anon_sym_chan] = ACTIONS(2199), - [anon_sym_thread] = ACTIONS(2199), - [anon_sym_atomic] = ACTIONS(2199), - [sym___double_quote] = ACTIONS(2197), - [sym___single_quote] = ACTIONS(2197), - [sym___c_double_quote] = ACTIONS(2197), - [sym___c_single_quote] = ACTIONS(2197), - [sym___r_double_quote] = ACTIONS(2197), - [sym___r_single_quote] = ACTIONS(2197), + [anon_sym_DOT] = ACTIONS(2809), + [anon_sym_as] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_COMMA] = ACTIONS(2807), + [anon_sym_RBRACE] = ACTIONS(2807), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_PIPE] = ACTIONS(2809), + [anon_sym_fn] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_PERCENT] = ACTIONS(2807), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_GT] = ACTIONS(2809), + [anon_sym_EQ_EQ] = ACTIONS(2807), + [anon_sym_BANG_EQ] = ACTIONS(2807), + [anon_sym_LT_EQ] = ACTIONS(2807), + [anon_sym_GT_EQ] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_RBRACK] = ACTIONS(2807), + [anon_sym_struct] = ACTIONS(2809), + [anon_sym_mut] = ACTIONS(2809), + [anon_sym_COLON] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_QMARK] = ACTIONS(2809), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_go] = ACTIONS(2809), + [anon_sym_spawn] = ACTIONS(2809), + [anon_sym_json_DOTdecode] = ACTIONS(2807), + [anon_sym_LBRACK2] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2807), + [anon_sym_CARET] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_LT_LT] = ACTIONS(2807), + [anon_sym_GT_GT] = ACTIONS(2809), + [anon_sym_GT_GT_GT] = ACTIONS(2807), + [anon_sym_AMP_CARET] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_PIPE_PIPE] = ACTIONS(2807), + [anon_sym_or] = ACTIONS(2809), + [sym_none] = ACTIONS(2809), + [sym_true] = ACTIONS(2809), + [sym_false] = ACTIONS(2809), + [sym_nil] = ACTIONS(2809), + [anon_sym_QMARK_DOT] = ACTIONS(2807), + [anon_sym_POUND_LBRACK] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2809), + [anon_sym_DOLLARif] = ACTIONS(2809), + [anon_sym_is] = ACTIONS(2809), + [anon_sym_BANGis] = ACTIONS(2807), + [anon_sym_in] = ACTIONS(2809), + [anon_sym_BANGin] = ACTIONS(2807), + [anon_sym_match] = ACTIONS(2809), + [anon_sym_select] = ACTIONS(2809), + [anon_sym_lock] = ACTIONS(2809), + [anon_sym_rlock] = ACTIONS(2809), + [anon_sym_unsafe] = ACTIONS(2809), + [anon_sym_sql] = ACTIONS(2809), + [sym_int_literal] = ACTIONS(2809), + [sym_float_literal] = ACTIONS(2807), + [sym_rune_literal] = ACTIONS(2807), + [anon_sym_SQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [anon_sym_c_SQUOTE] = ACTIONS(2807), + [anon_sym_c_DQUOTE] = ACTIONS(2807), + [anon_sym_r_SQUOTE] = ACTIONS(2807), + [anon_sym_r_DQUOTE] = ACTIONS(2807), + [sym_pseudo_compile_time_identifier] = ACTIONS(2809), + [anon_sym_shared] = ACTIONS(2809), + [anon_sym_map_LBRACK] = ACTIONS(2807), + [anon_sym_chan] = ACTIONS(2809), + [anon_sym_thread] = ACTIONS(2809), + [anon_sym_atomic] = ACTIONS(2809), }, [1298] = { [sym_line_comment] = STATE(1298), [sym_block_comment] = STATE(1298), - [sym_identifier] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2859), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_COMMA] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_fn] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2511), - [anon_sym_SLASH] = ACTIONS(2513), - [anon_sym_PERCENT] = ACTIONS(2511), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_GT] = ACTIONS(2513), - [anon_sym_EQ_EQ] = ACTIONS(2511), - [anon_sym_BANG_EQ] = ACTIONS(2511), - [anon_sym_LT_EQ] = ACTIONS(2511), - [anon_sym_GT_EQ] = ACTIONS(2511), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_RBRACK] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_COLON] = ACTIONS(2511), - [anon_sym_PLUS_PLUS] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2511), - [anon_sym_QMARK] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_go] = ACTIONS(2513), - [anon_sym_spawn] = ACTIONS(2513), - [anon_sym_json_DOTdecode] = ACTIONS(2511), - [anon_sym_LBRACK2] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2511), - [anon_sym_CARET] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_LT_DASH] = ACTIONS(2511), - [anon_sym_LT_LT] = ACTIONS(2511), - [anon_sym_GT_GT] = ACTIONS(2513), - [anon_sym_GT_GT_GT] = ACTIONS(2511), - [anon_sym_AMP_CARET] = ACTIONS(2511), - [anon_sym_AMP_AMP] = ACTIONS(2511), - [anon_sym_PIPE_PIPE] = ACTIONS(2511), - [anon_sym_or] = ACTIONS(2513), - [sym_none] = ACTIONS(2513), - [sym_true] = ACTIONS(2513), - [sym_false] = ACTIONS(2513), - [sym_nil] = ACTIONS(2513), - [anon_sym_QMARK_DOT] = ACTIONS(2511), - [anon_sym_POUND_LBRACK] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_DOLLARif] = ACTIONS(2513), - [anon_sym_is] = ACTIONS(2513), - [anon_sym_BANGis] = ACTIONS(2511), - [anon_sym_in] = ACTIONS(2513), - [anon_sym_BANGin] = ACTIONS(2511), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_select] = ACTIONS(2513), - [anon_sym_lock] = ACTIONS(2513), - [anon_sym_rlock] = ACTIONS(2513), - [anon_sym_unsafe] = ACTIONS(2513), - [anon_sym_sql] = ACTIONS(2513), - [sym_int_literal] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2511), - [sym_rune_literal] = ACTIONS(2511), - [sym_pseudo_compile_time_identifier] = ACTIONS(2513), - [anon_sym_shared] = ACTIONS(2513), - [anon_sym_map_LBRACK] = ACTIONS(2511), - [anon_sym_chan] = ACTIONS(2513), - [anon_sym_thread] = ACTIONS(2513), - [anon_sym_atomic] = ACTIONS(2513), - [sym___double_quote] = ACTIONS(2511), - [sym___single_quote] = ACTIONS(2511), - [sym___c_double_quote] = ACTIONS(2511), - [sym___c_single_quote] = ACTIONS(2511), - [sym___r_double_quote] = ACTIONS(2511), - [sym___r_single_quote] = ACTIONS(2511), + [anon_sym_DOT] = ACTIONS(2859), + [anon_sym_as] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2857), + [anon_sym_COMMA] = ACTIONS(2857), + [anon_sym_RBRACE] = ACTIONS(2857), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_PIPE] = ACTIONS(2859), + [anon_sym_fn] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_SLASH] = ACTIONS(2859), + [anon_sym_PERCENT] = ACTIONS(2857), + [anon_sym_LT] = ACTIONS(2859), + [anon_sym_GT] = ACTIONS(2859), + [anon_sym_EQ_EQ] = ACTIONS(2857), + [anon_sym_BANG_EQ] = ACTIONS(2857), + [anon_sym_LT_EQ] = ACTIONS(2857), + [anon_sym_GT_EQ] = ACTIONS(2857), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_RBRACK] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2859), + [anon_sym_mut] = ACTIONS(2859), + [anon_sym_COLON] = ACTIONS(2857), + [anon_sym_PLUS_PLUS] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2857), + [anon_sym_QMARK] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_go] = ACTIONS(2859), + [anon_sym_spawn] = ACTIONS(2859), + [anon_sym_json_DOTdecode] = ACTIONS(2857), + [anon_sym_LBRACK2] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_CARET] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2859), + [anon_sym_LT_DASH] = ACTIONS(2857), + [anon_sym_LT_LT] = ACTIONS(2857), + [anon_sym_GT_GT] = ACTIONS(2859), + [anon_sym_GT_GT_GT] = ACTIONS(2857), + [anon_sym_AMP_CARET] = ACTIONS(2857), + [anon_sym_AMP_AMP] = ACTIONS(2857), + [anon_sym_PIPE_PIPE] = ACTIONS(2857), + [anon_sym_or] = ACTIONS(2859), + [sym_none] = ACTIONS(2859), + [sym_true] = ACTIONS(2859), + [sym_false] = ACTIONS(2859), + [sym_nil] = ACTIONS(2859), + [anon_sym_QMARK_DOT] = ACTIONS(2857), + [anon_sym_POUND_LBRACK] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2859), + [anon_sym_DOLLARif] = ACTIONS(2859), + [anon_sym_is] = ACTIONS(2859), + [anon_sym_BANGis] = ACTIONS(2857), + [anon_sym_in] = ACTIONS(2859), + [anon_sym_BANGin] = ACTIONS(2857), + [anon_sym_match] = ACTIONS(2859), + [anon_sym_select] = ACTIONS(2859), + [anon_sym_lock] = ACTIONS(2859), + [anon_sym_rlock] = ACTIONS(2859), + [anon_sym_unsafe] = ACTIONS(2859), + [anon_sym_sql] = ACTIONS(2859), + [sym_int_literal] = ACTIONS(2859), + [sym_float_literal] = ACTIONS(2857), + [sym_rune_literal] = ACTIONS(2857), + [anon_sym_SQUOTE] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2857), + [anon_sym_c_SQUOTE] = ACTIONS(2857), + [anon_sym_c_DQUOTE] = ACTIONS(2857), + [anon_sym_r_SQUOTE] = ACTIONS(2857), + [anon_sym_r_DQUOTE] = ACTIONS(2857), + [sym_pseudo_compile_time_identifier] = ACTIONS(2859), + [anon_sym_shared] = ACTIONS(2859), + [anon_sym_map_LBRACK] = ACTIONS(2857), + [anon_sym_chan] = ACTIONS(2859), + [anon_sym_thread] = ACTIONS(2859), + [anon_sym_atomic] = ACTIONS(2859), }, [1299] = { [sym_line_comment] = STATE(1299), [sym_block_comment] = STATE(1299), - [sym_identifier] = ACTIONS(2229), + [sym_identifier] = ACTIONS(1899), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_COMMA] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2229), - [anon_sym_fn] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_STAR] = ACTIONS(2227), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_PERCENT] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_GT] = ACTIONS(2229), - [anon_sym_EQ_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ] = ACTIONS(2227), - [anon_sym_LT_EQ] = ACTIONS(2227), - [anon_sym_GT_EQ] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_RBRACK] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_COLON] = ACTIONS(2227), - [anon_sym_PLUS_PLUS] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2227), - [anon_sym_QMARK] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_go] = ACTIONS(2229), - [anon_sym_spawn] = ACTIONS(2229), - [anon_sym_json_DOTdecode] = ACTIONS(2227), - [anon_sym_LBRACK2] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2227), - [anon_sym_CARET] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2229), - [anon_sym_LT_DASH] = ACTIONS(2227), - [anon_sym_LT_LT] = ACTIONS(2227), - [anon_sym_GT_GT] = ACTIONS(2229), - [anon_sym_GT_GT_GT] = ACTIONS(2227), - [anon_sym_AMP_CARET] = ACTIONS(2227), - [anon_sym_AMP_AMP] = ACTIONS(2227), - [anon_sym_PIPE_PIPE] = ACTIONS(2227), - [anon_sym_or] = ACTIONS(2229), - [sym_none] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_nil] = ACTIONS(2229), - [anon_sym_QMARK_DOT] = ACTIONS(2227), - [anon_sym_POUND_LBRACK] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_DOLLARif] = ACTIONS(2229), - [anon_sym_is] = ACTIONS(2229), - [anon_sym_BANGis] = ACTIONS(2227), - [anon_sym_in] = ACTIONS(2229), - [anon_sym_BANGin] = ACTIONS(2227), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_select] = ACTIONS(2229), - [anon_sym_lock] = ACTIONS(2229), - [anon_sym_rlock] = ACTIONS(2229), - [anon_sym_unsafe] = ACTIONS(2229), - [anon_sym_sql] = ACTIONS(2229), - [sym_int_literal] = ACTIONS(2229), - [sym_float_literal] = ACTIONS(2227), - [sym_rune_literal] = ACTIONS(2227), - [sym_pseudo_compile_time_identifier] = ACTIONS(2229), - [anon_sym_shared] = ACTIONS(2229), - [anon_sym_map_LBRACK] = ACTIONS(2227), - [anon_sym_chan] = ACTIONS(2229), - [anon_sym_thread] = ACTIONS(2229), - [anon_sym_atomic] = ACTIONS(2229), - [sym___double_quote] = ACTIONS(2227), - [sym___single_quote] = ACTIONS(2227), - [sym___c_double_quote] = ACTIONS(2227), - [sym___c_single_quote] = ACTIONS(2227), - [sym___r_double_quote] = ACTIONS(2227), - [sym___r_single_quote] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_as] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_COMMA] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_PERCENT] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ] = ACTIONS(1897), + [anon_sym_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_EQ] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_RBRACK] = ACTIONS(1897), + [anon_sym_struct] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_COLON] = ACTIONS(1897), + [anon_sym_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_QMARK] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_go] = ACTIONS(1899), + [anon_sym_spawn] = ACTIONS(1899), + [anon_sym_json_DOTdecode] = ACTIONS(1897), + [anon_sym_LBRACK2] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1897), + [anon_sym_CARET] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1897), + [anon_sym_LT_LT] = ACTIONS(1897), + [anon_sym_GT_GT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1897), + [anon_sym_AMP_CARET] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_or] = ACTIONS(1899), + [sym_none] = ACTIONS(1899), + [sym_true] = ACTIONS(1899), + [sym_false] = ACTIONS(1899), + [sym_nil] = ACTIONS(1899), + [anon_sym_QMARK_DOT] = ACTIONS(1897), + [anon_sym_POUND_LBRACK] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_DOLLARif] = ACTIONS(1899), + [anon_sym_is] = ACTIONS(1899), + [anon_sym_BANGis] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_BANGin] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_select] = ACTIONS(1899), + [anon_sym_lock] = ACTIONS(1899), + [anon_sym_rlock] = ACTIONS(1899), + [anon_sym_unsafe] = ACTIONS(1899), + [anon_sym_sql] = ACTIONS(1899), + [sym_int_literal] = ACTIONS(1899), + [sym_float_literal] = ACTIONS(1897), + [sym_rune_literal] = ACTIONS(1897), + [anon_sym_SQUOTE] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_c_SQUOTE] = ACTIONS(1897), + [anon_sym_c_DQUOTE] = ACTIONS(1897), + [anon_sym_r_SQUOTE] = ACTIONS(1897), + [anon_sym_r_DQUOTE] = ACTIONS(1897), + [sym_pseudo_compile_time_identifier] = ACTIONS(1899), + [anon_sym_shared] = ACTIONS(1899), + [anon_sym_map_LBRACK] = ACTIONS(1897), + [anon_sym_chan] = ACTIONS(1899), + [anon_sym_thread] = ACTIONS(1899), + [anon_sym_atomic] = ACTIONS(1899), }, [1300] = { [sym_line_comment] = STATE(1300), [sym_block_comment] = STATE(1300), - [sym_identifier] = ACTIONS(2914), + [sym_identifier] = ACTIONS(2813), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2914), - [anon_sym_as] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2912), - [anon_sym_RBRACE] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_PIPE] = ACTIONS(2914), - [anon_sym_fn] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2912), - [anon_sym_SLASH] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2912), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_GT] = ACTIONS(2914), - [anon_sym_EQ_EQ] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_LT_EQ] = ACTIONS(2912), - [anon_sym_GT_EQ] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_RBRACK] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_mut] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_go] = ACTIONS(2914), - [anon_sym_spawn] = ACTIONS(2914), - [anon_sym_json_DOTdecode] = ACTIONS(2912), - [anon_sym_LBRACK2] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2912), - [anon_sym_CARET] = ACTIONS(2912), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_LT_LT] = ACTIONS(2912), - [anon_sym_GT_GT] = ACTIONS(2914), - [anon_sym_GT_GT_GT] = ACTIONS(2912), - [anon_sym_AMP_CARET] = ACTIONS(2912), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_or] = ACTIONS(2914), - [sym_none] = ACTIONS(2914), - [sym_true] = ACTIONS(2914), - [sym_false] = ACTIONS(2914), - [sym_nil] = ACTIONS(2914), - [anon_sym_QMARK_DOT] = ACTIONS(2912), - [anon_sym_POUND_LBRACK] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_DOLLARif] = ACTIONS(2914), - [anon_sym_is] = ACTIONS(2914), - [anon_sym_BANGis] = ACTIONS(2912), - [anon_sym_in] = ACTIONS(2914), - [anon_sym_BANGin] = ACTIONS(2912), - [anon_sym_match] = ACTIONS(2914), - [anon_sym_select] = ACTIONS(2914), - [anon_sym_lock] = ACTIONS(2914), - [anon_sym_rlock] = ACTIONS(2914), - [anon_sym_unsafe] = ACTIONS(2914), - [anon_sym_sql] = ACTIONS(2914), - [sym_int_literal] = ACTIONS(2914), - [sym_float_literal] = ACTIONS(2912), - [sym_rune_literal] = ACTIONS(2912), - [sym_pseudo_compile_time_identifier] = ACTIONS(2914), - [anon_sym_shared] = ACTIONS(2914), - [anon_sym_map_LBRACK] = ACTIONS(2912), - [anon_sym_chan] = ACTIONS(2914), - [anon_sym_thread] = ACTIONS(2914), - [anon_sym_atomic] = ACTIONS(2914), - [sym___double_quote] = ACTIONS(2912), - [sym___single_quote] = ACTIONS(2912), - [sym___c_double_quote] = ACTIONS(2912), - [sym___c_single_quote] = ACTIONS(2912), - [sym___r_double_quote] = ACTIONS(2912), - [sym___r_single_quote] = ACTIONS(2912), + [anon_sym_DOT] = ACTIONS(2813), + [anon_sym_as] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2811), + [anon_sym_COMMA] = ACTIONS(2811), + [anon_sym_RBRACE] = ACTIONS(2811), + [anon_sym_LPAREN] = ACTIONS(2811), + [anon_sym_PIPE] = ACTIONS(2813), + [anon_sym_fn] = ACTIONS(2813), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2813), + [anon_sym_PERCENT] = ACTIONS(2811), + [anon_sym_LT] = ACTIONS(2813), + [anon_sym_GT] = ACTIONS(2813), + [anon_sym_EQ_EQ] = ACTIONS(2811), + [anon_sym_BANG_EQ] = ACTIONS(2811), + [anon_sym_LT_EQ] = ACTIONS(2811), + [anon_sym_GT_EQ] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_RBRACK] = ACTIONS(2811), + [anon_sym_struct] = ACTIONS(2813), + [anon_sym_mut] = ACTIONS(2813), + [anon_sym_COLON] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2811), + [anon_sym_QMARK] = ACTIONS(2813), + [anon_sym_BANG] = ACTIONS(2813), + [anon_sym_go] = ACTIONS(2813), + [anon_sym_spawn] = ACTIONS(2813), + [anon_sym_json_DOTdecode] = ACTIONS(2811), + [anon_sym_LBRACK2] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2811), + [anon_sym_CARET] = ACTIONS(2811), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_LT_DASH] = ACTIONS(2811), + [anon_sym_LT_LT] = ACTIONS(2811), + [anon_sym_GT_GT] = ACTIONS(2813), + [anon_sym_GT_GT_GT] = ACTIONS(2811), + [anon_sym_AMP_CARET] = ACTIONS(2811), + [anon_sym_AMP_AMP] = ACTIONS(2811), + [anon_sym_PIPE_PIPE] = ACTIONS(2811), + [anon_sym_or] = ACTIONS(2813), + [sym_none] = ACTIONS(2813), + [sym_true] = ACTIONS(2813), + [sym_false] = ACTIONS(2813), + [sym_nil] = ACTIONS(2813), + [anon_sym_QMARK_DOT] = ACTIONS(2811), + [anon_sym_POUND_LBRACK] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2813), + [anon_sym_DOLLARif] = ACTIONS(2813), + [anon_sym_is] = ACTIONS(2813), + [anon_sym_BANGis] = ACTIONS(2811), + [anon_sym_in] = ACTIONS(2813), + [anon_sym_BANGin] = ACTIONS(2811), + [anon_sym_match] = ACTIONS(2813), + [anon_sym_select] = ACTIONS(2813), + [anon_sym_lock] = ACTIONS(2813), + [anon_sym_rlock] = ACTIONS(2813), + [anon_sym_unsafe] = ACTIONS(2813), + [anon_sym_sql] = ACTIONS(2813), + [sym_int_literal] = ACTIONS(2813), + [sym_float_literal] = ACTIONS(2811), + [sym_rune_literal] = ACTIONS(2811), + [anon_sym_SQUOTE] = ACTIONS(2811), + [anon_sym_DQUOTE] = ACTIONS(2811), + [anon_sym_c_SQUOTE] = ACTIONS(2811), + [anon_sym_c_DQUOTE] = ACTIONS(2811), + [anon_sym_r_SQUOTE] = ACTIONS(2811), + [anon_sym_r_DQUOTE] = ACTIONS(2811), + [sym_pseudo_compile_time_identifier] = ACTIONS(2813), + [anon_sym_shared] = ACTIONS(2813), + [anon_sym_map_LBRACK] = ACTIONS(2811), + [anon_sym_chan] = ACTIONS(2813), + [anon_sym_thread] = ACTIONS(2813), + [anon_sym_atomic] = ACTIONS(2813), }, [1301] = { [sym_line_comment] = STATE(1301), [sym_block_comment] = STATE(1301), - [sym_identifier] = ACTIONS(2918), + [sym_identifier] = ACTIONS(2423), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_as] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2916), - [anon_sym_RBRACE] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_fn] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2916), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_GT] = ACTIONS(2918), - [anon_sym_EQ_EQ] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_LT_EQ] = ACTIONS(2916), - [anon_sym_GT_EQ] = ACTIONS(2916), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_RBRACK] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_mut] = ACTIONS(2918), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_PLUS_PLUS] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_go] = ACTIONS(2918), - [anon_sym_spawn] = ACTIONS(2918), - [anon_sym_json_DOTdecode] = ACTIONS(2916), - [anon_sym_LBRACK2] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_CARET] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_LT_LT] = ACTIONS(2916), - [anon_sym_GT_GT] = ACTIONS(2918), - [anon_sym_GT_GT_GT] = ACTIONS(2916), - [anon_sym_AMP_CARET] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_or] = ACTIONS(2918), - [sym_none] = ACTIONS(2918), - [sym_true] = ACTIONS(2918), - [sym_false] = ACTIONS(2918), - [sym_nil] = ACTIONS(2918), - [anon_sym_QMARK_DOT] = ACTIONS(2916), - [anon_sym_POUND_LBRACK] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_DOLLARif] = ACTIONS(2918), - [anon_sym_is] = ACTIONS(2918), - [anon_sym_BANGis] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(2918), - [anon_sym_BANGin] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_select] = ACTIONS(2918), - [anon_sym_lock] = ACTIONS(2918), - [anon_sym_rlock] = ACTIONS(2918), - [anon_sym_unsafe] = ACTIONS(2918), - [anon_sym_sql] = ACTIONS(2918), - [sym_int_literal] = ACTIONS(2918), - [sym_float_literal] = ACTIONS(2916), - [sym_rune_literal] = ACTIONS(2916), - [sym_pseudo_compile_time_identifier] = ACTIONS(2918), - [anon_sym_shared] = ACTIONS(2918), - [anon_sym_map_LBRACK] = ACTIONS(2916), - [anon_sym_chan] = ACTIONS(2918), - [anon_sym_thread] = ACTIONS(2918), - [anon_sym_atomic] = ACTIONS(2918), - [sym___double_quote] = ACTIONS(2916), - [sym___single_quote] = ACTIONS(2916), - [sym___c_double_quote] = ACTIONS(2916), - [sym___c_single_quote] = ACTIONS(2916), - [sym___r_double_quote] = ACTIONS(2916), - [sym___r_single_quote] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2423), + [anon_sym_as] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_COMMA] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym_PIPE] = ACTIONS(2423), + [anon_sym_fn] = ACTIONS(2423), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2423), + [anon_sym_GT] = ACTIONS(2423), + [anon_sym_EQ_EQ] = ACTIONS(2421), + [anon_sym_BANG_EQ] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(2421), + [anon_sym_GT_EQ] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2421), + [anon_sym_RBRACK] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(2423), + [anon_sym_mut] = ACTIONS(2423), + [anon_sym_COLON] = ACTIONS(2421), + [anon_sym_PLUS_PLUS] = ACTIONS(2421), + [anon_sym_DASH_DASH] = ACTIONS(2421), + [anon_sym_QMARK] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2423), + [anon_sym_spawn] = ACTIONS(2423), + [anon_sym_json_DOTdecode] = ACTIONS(2421), + [anon_sym_LBRACK2] = ACTIONS(2423), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_CARET] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2421), + [anon_sym_LT_LT] = ACTIONS(2421), + [anon_sym_GT_GT] = ACTIONS(2423), + [anon_sym_GT_GT_GT] = ACTIONS(2421), + [anon_sym_AMP_CARET] = ACTIONS(2421), + [anon_sym_AMP_AMP] = ACTIONS(2421), + [anon_sym_PIPE_PIPE] = ACTIONS(2421), + [anon_sym_or] = ACTIONS(2423), + [sym_none] = ACTIONS(2423), + [sym_true] = ACTIONS(2423), + [sym_false] = ACTIONS(2423), + [sym_nil] = ACTIONS(2423), + [anon_sym_QMARK_DOT] = ACTIONS(2421), + [anon_sym_POUND_LBRACK] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2423), + [anon_sym_DOLLARif] = ACTIONS(2423), + [anon_sym_is] = ACTIONS(2423), + [anon_sym_BANGis] = ACTIONS(2421), + [anon_sym_in] = ACTIONS(2423), + [anon_sym_BANGin] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2423), + [anon_sym_select] = ACTIONS(2423), + [anon_sym_lock] = ACTIONS(2423), + [anon_sym_rlock] = ACTIONS(2423), + [anon_sym_unsafe] = ACTIONS(2423), + [anon_sym_sql] = ACTIONS(2423), + [sym_int_literal] = ACTIONS(2423), + [sym_float_literal] = ACTIONS(2421), + [sym_rune_literal] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [anon_sym_c_SQUOTE] = ACTIONS(2421), + [anon_sym_c_DQUOTE] = ACTIONS(2421), + [anon_sym_r_SQUOTE] = ACTIONS(2421), + [anon_sym_r_DQUOTE] = ACTIONS(2421), + [sym_pseudo_compile_time_identifier] = ACTIONS(2423), + [anon_sym_shared] = ACTIONS(2423), + [anon_sym_map_LBRACK] = ACTIONS(2421), + [anon_sym_chan] = ACTIONS(2423), + [anon_sym_thread] = ACTIONS(2423), + [anon_sym_atomic] = ACTIONS(2423), }, [1302] = { [sym_line_comment] = STATE(1302), [sym_block_comment] = STATE(1302), - [sym_identifier] = ACTIONS(2728), + [sym_identifier] = ACTIONS(2273), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2728), - [anon_sym_as] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_COMMA] = ACTIONS(2726), - [anon_sym_RBRACE] = ACTIONS(2726), - [anon_sym_LPAREN] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_fn] = ACTIONS(2728), - [anon_sym_PLUS] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2728), - [anon_sym_STAR] = ACTIONS(2726), - [anon_sym_SLASH] = ACTIONS(2728), - [anon_sym_PERCENT] = ACTIONS(2726), - [anon_sym_LT] = ACTIONS(2728), - [anon_sym_GT] = ACTIONS(2728), - [anon_sym_EQ_EQ] = ACTIONS(2726), - [anon_sym_BANG_EQ] = ACTIONS(2726), - [anon_sym_LT_EQ] = ACTIONS(2726), - [anon_sym_GT_EQ] = ACTIONS(2726), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_RBRACK] = ACTIONS(2726), - [anon_sym_struct] = ACTIONS(2728), - [anon_sym_mut] = ACTIONS(2728), - [anon_sym_COLON] = ACTIONS(2726), - [anon_sym_PLUS_PLUS] = ACTIONS(2726), - [anon_sym_DASH_DASH] = ACTIONS(2726), - [anon_sym_QMARK] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2728), - [anon_sym_go] = ACTIONS(2728), - [anon_sym_spawn] = ACTIONS(2728), - [anon_sym_json_DOTdecode] = ACTIONS(2726), - [anon_sym_LBRACK2] = ACTIONS(2728), - [anon_sym_TILDE] = ACTIONS(2726), - [anon_sym_CARET] = ACTIONS(2726), - [anon_sym_AMP] = ACTIONS(2728), - [anon_sym_LT_DASH] = ACTIONS(2726), - [anon_sym_LT_LT] = ACTIONS(2726), - [anon_sym_GT_GT] = ACTIONS(2728), - [anon_sym_GT_GT_GT] = ACTIONS(2726), - [anon_sym_AMP_CARET] = ACTIONS(2726), - [anon_sym_AMP_AMP] = ACTIONS(2726), - [anon_sym_PIPE_PIPE] = ACTIONS(2726), - [anon_sym_or] = ACTIONS(2728), - [sym_none] = ACTIONS(2728), - [sym_true] = ACTIONS(2728), - [sym_false] = ACTIONS(2728), - [sym_nil] = ACTIONS(2728), - [anon_sym_QMARK_DOT] = ACTIONS(2726), - [anon_sym_POUND_LBRACK] = ACTIONS(2726), - [anon_sym_if] = ACTIONS(2728), - [anon_sym_DOLLARif] = ACTIONS(2728), - [anon_sym_is] = ACTIONS(2728), - [anon_sym_BANGis] = ACTIONS(2726), - [anon_sym_in] = ACTIONS(2728), - [anon_sym_BANGin] = ACTIONS(2726), - [anon_sym_match] = ACTIONS(2728), - [anon_sym_select] = ACTIONS(2728), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2728), - [anon_sym_sql] = ACTIONS(2728), - [sym_int_literal] = ACTIONS(2728), - [sym_float_literal] = ACTIONS(2726), - [sym_rune_literal] = ACTIONS(2726), - [sym_pseudo_compile_time_identifier] = ACTIONS(2728), - [anon_sym_shared] = ACTIONS(2728), - [anon_sym_map_LBRACK] = ACTIONS(2726), - [anon_sym_chan] = ACTIONS(2728), - [anon_sym_thread] = ACTIONS(2728), - [anon_sym_atomic] = ACTIONS(2728), - [sym___double_quote] = ACTIONS(2726), - [sym___single_quote] = ACTIONS(2726), - [sym___c_double_quote] = ACTIONS(2726), - [sym___c_single_quote] = ACTIONS(2726), - [sym___r_double_quote] = ACTIONS(2726), - [sym___r_single_quote] = ACTIONS(2726), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_as] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_COMMA] = ACTIONS(2271), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_PIPE] = ACTIONS(2273), + [anon_sym_fn] = ACTIONS(2273), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_STAR] = ACTIONS(2271), + [anon_sym_SLASH] = ACTIONS(2273), + [anon_sym_PERCENT] = ACTIONS(2271), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_GT] = ACTIONS(2273), + [anon_sym_EQ_EQ] = ACTIONS(2271), + [anon_sym_BANG_EQ] = ACTIONS(2271), + [anon_sym_LT_EQ] = ACTIONS(2271), + [anon_sym_GT_EQ] = ACTIONS(2271), + [anon_sym_LBRACK] = ACTIONS(2271), + [anon_sym_RBRACK] = ACTIONS(2271), + [anon_sym_struct] = ACTIONS(2273), + [anon_sym_mut] = ACTIONS(2273), + [anon_sym_COLON] = ACTIONS(2271), + [anon_sym_PLUS_PLUS] = ACTIONS(2271), + [anon_sym_DASH_DASH] = ACTIONS(2271), + [anon_sym_QMARK] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2273), + [anon_sym_go] = ACTIONS(2273), + [anon_sym_spawn] = ACTIONS(2273), + [anon_sym_json_DOTdecode] = ACTIONS(2271), + [anon_sym_LBRACK2] = ACTIONS(2273), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_CARET] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2273), + [anon_sym_LT_DASH] = ACTIONS(2271), + [anon_sym_LT_LT] = ACTIONS(2271), + [anon_sym_GT_GT] = ACTIONS(2273), + [anon_sym_GT_GT_GT] = ACTIONS(2271), + [anon_sym_AMP_CARET] = ACTIONS(2271), + [anon_sym_AMP_AMP] = ACTIONS(2271), + [anon_sym_PIPE_PIPE] = ACTIONS(2271), + [anon_sym_or] = ACTIONS(2273), + [sym_none] = ACTIONS(2273), + [sym_true] = ACTIONS(2273), + [sym_false] = ACTIONS(2273), + [sym_nil] = ACTIONS(2273), + [anon_sym_QMARK_DOT] = ACTIONS(2271), + [anon_sym_POUND_LBRACK] = ACTIONS(2271), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_DOLLARif] = ACTIONS(2273), + [anon_sym_is] = ACTIONS(2273), + [anon_sym_BANGis] = ACTIONS(2271), + [anon_sym_in] = ACTIONS(2273), + [anon_sym_BANGin] = ACTIONS(2271), + [anon_sym_match] = ACTIONS(2273), + [anon_sym_select] = ACTIONS(2273), + [anon_sym_lock] = ACTIONS(2273), + [anon_sym_rlock] = ACTIONS(2273), + [anon_sym_unsafe] = ACTIONS(2273), + [anon_sym_sql] = ACTIONS(2273), + [sym_int_literal] = ACTIONS(2273), + [sym_float_literal] = ACTIONS(2271), + [sym_rune_literal] = ACTIONS(2271), + [anon_sym_SQUOTE] = ACTIONS(2271), + [anon_sym_DQUOTE] = ACTIONS(2271), + [anon_sym_c_SQUOTE] = ACTIONS(2271), + [anon_sym_c_DQUOTE] = ACTIONS(2271), + [anon_sym_r_SQUOTE] = ACTIONS(2271), + [anon_sym_r_DQUOTE] = ACTIONS(2271), + [sym_pseudo_compile_time_identifier] = ACTIONS(2273), + [anon_sym_shared] = ACTIONS(2273), + [anon_sym_map_LBRACK] = ACTIONS(2271), + [anon_sym_chan] = ACTIONS(2273), + [anon_sym_thread] = ACTIONS(2273), + [anon_sym_atomic] = ACTIONS(2273), }, [1303] = { [sym_line_comment] = STATE(1303), [sym_block_comment] = STATE(1303), - [sym_identifier] = ACTIONS(1881), + [sym_identifier] = ACTIONS(2269), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1879), - [anon_sym_COMMA] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1879), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1879), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1879), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1879), - [anon_sym_BANG_EQ] = ACTIONS(1879), - [anon_sym_LT_EQ] = ACTIONS(1879), - [anon_sym_GT_EQ] = ACTIONS(1879), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_RBRACK] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_COLON] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_QMARK] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1879), - [anon_sym_LBRACK2] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1879), - [anon_sym_LT_LT] = ACTIONS(1879), - [anon_sym_GT_GT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1879), - [anon_sym_AMP_CARET] = ACTIONS(1879), - [anon_sym_AMP_AMP] = ACTIONS(1879), - [anon_sym_PIPE_PIPE] = ACTIONS(1879), - [anon_sym_or] = ACTIONS(1881), - [sym_none] = ACTIONS(1881), - [sym_true] = ACTIONS(1881), - [sym_false] = ACTIONS(1881), - [sym_nil] = ACTIONS(1881), - [anon_sym_QMARK_DOT] = ACTIONS(1879), - [anon_sym_POUND_LBRACK] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_is] = ACTIONS(1881), - [anon_sym_BANGis] = ACTIONS(1879), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_BANGin] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1881), - [anon_sym_select] = ACTIONS(1881), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1881), - [anon_sym_sql] = ACTIONS(1881), - [sym_int_literal] = ACTIONS(1881), - [sym_float_literal] = ACTIONS(1879), - [sym_rune_literal] = ACTIONS(1879), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1879), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1879), - [sym___single_quote] = ACTIONS(1879), - [sym___c_double_quote] = ACTIONS(1879), - [sym___c_single_quote] = ACTIONS(1879), - [sym___r_double_quote] = ACTIONS(1879), - [sym___r_single_quote] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(2269), + [anon_sym_as] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_COMMA] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_PIPE] = ACTIONS(2269), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_SLASH] = ACTIONS(2269), + [anon_sym_PERCENT] = ACTIONS(2267), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_GT] = ACTIONS(2269), + [anon_sym_EQ_EQ] = ACTIONS(2267), + [anon_sym_BANG_EQ] = ACTIONS(2267), + [anon_sym_LT_EQ] = ACTIONS(2267), + [anon_sym_GT_EQ] = ACTIONS(2267), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_RBRACK] = ACTIONS(2267), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_mut] = ACTIONS(2269), + [anon_sym_COLON] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_QMARK] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2269), + [anon_sym_go] = ACTIONS(2269), + [anon_sym_spawn] = ACTIONS(2269), + [anon_sym_json_DOTdecode] = ACTIONS(2267), + [anon_sym_LBRACK2] = ACTIONS(2269), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_CARET] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2269), + [anon_sym_LT_DASH] = ACTIONS(2267), + [anon_sym_LT_LT] = ACTIONS(2267), + [anon_sym_GT_GT] = ACTIONS(2269), + [anon_sym_GT_GT_GT] = ACTIONS(2267), + [anon_sym_AMP_CARET] = ACTIONS(2267), + [anon_sym_AMP_AMP] = ACTIONS(2267), + [anon_sym_PIPE_PIPE] = ACTIONS(2267), + [anon_sym_or] = ACTIONS(2269), + [sym_none] = ACTIONS(2269), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_nil] = ACTIONS(2269), + [anon_sym_QMARK_DOT] = ACTIONS(2267), + [anon_sym_POUND_LBRACK] = ACTIONS(2267), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_DOLLARif] = ACTIONS(2269), + [anon_sym_is] = ACTIONS(2269), + [anon_sym_BANGis] = ACTIONS(2267), + [anon_sym_in] = ACTIONS(2269), + [anon_sym_BANGin] = ACTIONS(2267), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_select] = ACTIONS(2269), + [anon_sym_lock] = ACTIONS(2269), + [anon_sym_rlock] = ACTIONS(2269), + [anon_sym_unsafe] = ACTIONS(2269), + [anon_sym_sql] = ACTIONS(2269), + [sym_int_literal] = ACTIONS(2269), + [sym_float_literal] = ACTIONS(2267), + [sym_rune_literal] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2267), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_c_SQUOTE] = ACTIONS(2267), + [anon_sym_c_DQUOTE] = ACTIONS(2267), + [anon_sym_r_SQUOTE] = ACTIONS(2267), + [anon_sym_r_DQUOTE] = ACTIONS(2267), + [sym_pseudo_compile_time_identifier] = ACTIONS(2269), + [anon_sym_shared] = ACTIONS(2269), + [anon_sym_map_LBRACK] = ACTIONS(2267), + [anon_sym_chan] = ACTIONS(2269), + [anon_sym_thread] = ACTIONS(2269), + [anon_sym_atomic] = ACTIONS(2269), }, [1304] = { [sym_line_comment] = STATE(1304), [sym_block_comment] = STATE(1304), - [sym_identifier] = ACTIONS(2924), + [sym_identifier] = ACTIONS(2261), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2924), - [anon_sym_as] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_COMMA] = ACTIONS(2922), - [anon_sym_RBRACE] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2924), - [anon_sym_fn] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2922), - [anon_sym_SLASH] = ACTIONS(2924), - [anon_sym_PERCENT] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2924), - [anon_sym_GT] = ACTIONS(2924), - [anon_sym_EQ_EQ] = ACTIONS(2922), - [anon_sym_BANG_EQ] = ACTIONS(2922), - [anon_sym_LT_EQ] = ACTIONS(2922), - [anon_sym_GT_EQ] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_RBRACK] = ACTIONS(2922), - [anon_sym_struct] = ACTIONS(2924), - [anon_sym_mut] = ACTIONS(2924), - [anon_sym_COLON] = ACTIONS(2922), - [anon_sym_PLUS_PLUS] = ACTIONS(2922), - [anon_sym_DASH_DASH] = ACTIONS(2922), - [anon_sym_QMARK] = ACTIONS(2924), - [anon_sym_BANG] = ACTIONS(2924), - [anon_sym_go] = ACTIONS(2924), - [anon_sym_spawn] = ACTIONS(2924), - [anon_sym_json_DOTdecode] = ACTIONS(2922), - [anon_sym_LBRACK2] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2922), - [anon_sym_CARET] = ACTIONS(2922), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_LT_DASH] = ACTIONS(2922), - [anon_sym_LT_LT] = ACTIONS(2922), - [anon_sym_GT_GT] = ACTIONS(2924), - [anon_sym_GT_GT_GT] = ACTIONS(2922), - [anon_sym_AMP_CARET] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_or] = ACTIONS(2924), - [sym_none] = ACTIONS(2924), - [sym_true] = ACTIONS(2924), - [sym_false] = ACTIONS(2924), - [sym_nil] = ACTIONS(2924), - [anon_sym_QMARK_DOT] = ACTIONS(2922), - [anon_sym_POUND_LBRACK] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_DOLLARif] = ACTIONS(2924), - [anon_sym_is] = ACTIONS(2924), - [anon_sym_BANGis] = ACTIONS(2922), - [anon_sym_in] = ACTIONS(2924), - [anon_sym_BANGin] = ACTIONS(2922), - [anon_sym_match] = ACTIONS(2924), - [anon_sym_select] = ACTIONS(2924), - [anon_sym_lock] = ACTIONS(2924), - [anon_sym_rlock] = ACTIONS(2924), - [anon_sym_unsafe] = ACTIONS(2924), - [anon_sym_sql] = ACTIONS(2924), - [sym_int_literal] = ACTIONS(2924), - [sym_float_literal] = ACTIONS(2922), - [sym_rune_literal] = ACTIONS(2922), - [sym_pseudo_compile_time_identifier] = ACTIONS(2924), - [anon_sym_shared] = ACTIONS(2924), - [anon_sym_map_LBRACK] = ACTIONS(2922), - [anon_sym_chan] = ACTIONS(2924), - [anon_sym_thread] = ACTIONS(2924), - [anon_sym_atomic] = ACTIONS(2924), - [sym___double_quote] = ACTIONS(2922), - [sym___single_quote] = ACTIONS(2922), - [sym___c_double_quote] = ACTIONS(2922), - [sym___c_single_quote] = ACTIONS(2922), - [sym___r_double_quote] = ACTIONS(2922), - [sym___r_single_quote] = ACTIONS(2922), + [anon_sym_DOT] = ACTIONS(2261), + [anon_sym_as] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_COMMA] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_fn] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_SLASH] = ACTIONS(2261), + [anon_sym_PERCENT] = ACTIONS(2259), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_GT] = ACTIONS(2261), + [anon_sym_EQ_EQ] = ACTIONS(2259), + [anon_sym_BANG_EQ] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(2259), + [anon_sym_GT_EQ] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_RBRACK] = ACTIONS(2259), + [anon_sym_struct] = ACTIONS(2261), + [anon_sym_mut] = ACTIONS(2261), + [anon_sym_COLON] = ACTIONS(2259), + [anon_sym_PLUS_PLUS] = ACTIONS(2259), + [anon_sym_DASH_DASH] = ACTIONS(2259), + [anon_sym_QMARK] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2261), + [anon_sym_go] = ACTIONS(2261), + [anon_sym_spawn] = ACTIONS(2261), + [anon_sym_json_DOTdecode] = ACTIONS(2259), + [anon_sym_LBRACK2] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(2259), + [anon_sym_AMP] = ACTIONS(2261), + [anon_sym_LT_DASH] = ACTIONS(2259), + [anon_sym_LT_LT] = ACTIONS(2259), + [anon_sym_GT_GT] = ACTIONS(2261), + [anon_sym_GT_GT_GT] = ACTIONS(2259), + [anon_sym_AMP_CARET] = ACTIONS(2259), + [anon_sym_AMP_AMP] = ACTIONS(2259), + [anon_sym_PIPE_PIPE] = ACTIONS(2259), + [anon_sym_or] = ACTIONS(2261), + [sym_none] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_nil] = ACTIONS(2261), + [anon_sym_QMARK_DOT] = ACTIONS(2259), + [anon_sym_POUND_LBRACK] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_DOLLARif] = ACTIONS(2261), + [anon_sym_is] = ACTIONS(2261), + [anon_sym_BANGis] = ACTIONS(2259), + [anon_sym_in] = ACTIONS(2261), + [anon_sym_BANGin] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_select] = ACTIONS(2261), + [anon_sym_lock] = ACTIONS(2261), + [anon_sym_rlock] = ACTIONS(2261), + [anon_sym_unsafe] = ACTIONS(2261), + [anon_sym_sql] = ACTIONS(2261), + [sym_int_literal] = ACTIONS(2261), + [sym_float_literal] = ACTIONS(2259), + [sym_rune_literal] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_DQUOTE] = ACTIONS(2259), + [anon_sym_c_SQUOTE] = ACTIONS(2259), + [anon_sym_c_DQUOTE] = ACTIONS(2259), + [anon_sym_r_SQUOTE] = ACTIONS(2259), + [anon_sym_r_DQUOTE] = ACTIONS(2259), + [sym_pseudo_compile_time_identifier] = ACTIONS(2261), + [anon_sym_shared] = ACTIONS(2261), + [anon_sym_map_LBRACK] = ACTIONS(2259), + [anon_sym_chan] = ACTIONS(2261), + [anon_sym_thread] = ACTIONS(2261), + [anon_sym_atomic] = ACTIONS(2261), }, [1305] = { [sym_line_comment] = STATE(1305), [sym_block_comment] = STATE(1305), - [sym_identifier] = ACTIONS(2850), + [sym_identifier] = ACTIONS(2253), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_as] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2848), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_RBRACE] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_PIPE] = ACTIONS(2850), - [anon_sym_fn] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2848), - [anon_sym_SLASH] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2848), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_GT] = ACTIONS(2850), - [anon_sym_EQ_EQ] = ACTIONS(2848), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_LT_EQ] = ACTIONS(2848), - [anon_sym_GT_EQ] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_RBRACK] = ACTIONS(2848), - [anon_sym_struct] = ACTIONS(2850), - [anon_sym_mut] = ACTIONS(2850), - [anon_sym_COLON] = ACTIONS(2848), - [anon_sym_PLUS_PLUS] = ACTIONS(2848), - [anon_sym_DASH_DASH] = ACTIONS(2848), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2850), - [anon_sym_go] = ACTIONS(2850), - [anon_sym_spawn] = ACTIONS(2850), - [anon_sym_json_DOTdecode] = ACTIONS(2848), - [anon_sym_LBRACK2] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2848), - [anon_sym_CARET] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2848), - [anon_sym_LT_LT] = ACTIONS(2848), - [anon_sym_GT_GT] = ACTIONS(2850), - [anon_sym_GT_GT_GT] = ACTIONS(2848), - [anon_sym_AMP_CARET] = ACTIONS(2848), - [anon_sym_AMP_AMP] = ACTIONS(2848), - [anon_sym_PIPE_PIPE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2850), - [sym_none] = ACTIONS(2850), - [sym_true] = ACTIONS(2850), - [sym_false] = ACTIONS(2850), - [sym_nil] = ACTIONS(2850), - [anon_sym_QMARK_DOT] = ACTIONS(2848), - [anon_sym_POUND_LBRACK] = ACTIONS(2848), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_DOLLARif] = ACTIONS(2850), - [anon_sym_is] = ACTIONS(2850), - [anon_sym_BANGis] = ACTIONS(2848), - [anon_sym_in] = ACTIONS(2850), - [anon_sym_BANGin] = ACTIONS(2848), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_select] = ACTIONS(2850), - [anon_sym_lock] = ACTIONS(2850), - [anon_sym_rlock] = ACTIONS(2850), - [anon_sym_unsafe] = ACTIONS(2850), - [anon_sym_sql] = ACTIONS(2850), - [sym_int_literal] = ACTIONS(2850), - [sym_float_literal] = ACTIONS(2848), - [sym_rune_literal] = ACTIONS(2848), - [sym_pseudo_compile_time_identifier] = ACTIONS(2850), - [anon_sym_shared] = ACTIONS(2850), - [anon_sym_map_LBRACK] = ACTIONS(2848), - [anon_sym_chan] = ACTIONS(2850), - [anon_sym_thread] = ACTIONS(2850), - [anon_sym_atomic] = ACTIONS(2850), - [sym___double_quote] = ACTIONS(2848), - [sym___single_quote] = ACTIONS(2848), - [sym___c_double_quote] = ACTIONS(2848), - [sym___c_single_quote] = ACTIONS(2848), - [sym___r_double_quote] = ACTIONS(2848), - [sym___r_single_quote] = ACTIONS(2848), + [anon_sym_DOT] = ACTIONS(2253), + [anon_sym_as] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_COMMA] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_PIPE] = ACTIONS(2253), + [anon_sym_fn] = ACTIONS(2253), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_STAR] = ACTIONS(2251), + [anon_sym_SLASH] = ACTIONS(2253), + [anon_sym_PERCENT] = ACTIONS(2251), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_GT] = ACTIONS(2253), + [anon_sym_EQ_EQ] = ACTIONS(2251), + [anon_sym_BANG_EQ] = ACTIONS(2251), + [anon_sym_LT_EQ] = ACTIONS(2251), + [anon_sym_GT_EQ] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(2251), + [anon_sym_RBRACK] = ACTIONS(2251), + [anon_sym_struct] = ACTIONS(2253), + [anon_sym_mut] = ACTIONS(2253), + [anon_sym_COLON] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(2251), + [anon_sym_DASH_DASH] = ACTIONS(2251), + [anon_sym_QMARK] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2253), + [anon_sym_go] = ACTIONS(2253), + [anon_sym_spawn] = ACTIONS(2253), + [anon_sym_json_DOTdecode] = ACTIONS(2251), + [anon_sym_LBRACK2] = ACTIONS(2253), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_CARET] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2253), + [anon_sym_LT_DASH] = ACTIONS(2251), + [anon_sym_LT_LT] = ACTIONS(2251), + [anon_sym_GT_GT] = ACTIONS(2253), + [anon_sym_GT_GT_GT] = ACTIONS(2251), + [anon_sym_AMP_CARET] = ACTIONS(2251), + [anon_sym_AMP_AMP] = ACTIONS(2251), + [anon_sym_PIPE_PIPE] = ACTIONS(2251), + [anon_sym_or] = ACTIONS(2253), + [sym_none] = ACTIONS(2253), + [sym_true] = ACTIONS(2253), + [sym_false] = ACTIONS(2253), + [sym_nil] = ACTIONS(2253), + [anon_sym_QMARK_DOT] = ACTIONS(2251), + [anon_sym_POUND_LBRACK] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_DOLLARif] = ACTIONS(2253), + [anon_sym_is] = ACTIONS(2253), + [anon_sym_BANGis] = ACTIONS(2251), + [anon_sym_in] = ACTIONS(2253), + [anon_sym_BANGin] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_select] = ACTIONS(2253), + [anon_sym_lock] = ACTIONS(2253), + [anon_sym_rlock] = ACTIONS(2253), + [anon_sym_unsafe] = ACTIONS(2253), + [anon_sym_sql] = ACTIONS(2253), + [sym_int_literal] = ACTIONS(2253), + [sym_float_literal] = ACTIONS(2251), + [sym_rune_literal] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(2251), + [anon_sym_c_SQUOTE] = ACTIONS(2251), + [anon_sym_c_DQUOTE] = ACTIONS(2251), + [anon_sym_r_SQUOTE] = ACTIONS(2251), + [anon_sym_r_DQUOTE] = ACTIONS(2251), + [sym_pseudo_compile_time_identifier] = ACTIONS(2253), + [anon_sym_shared] = ACTIONS(2253), + [anon_sym_map_LBRACK] = ACTIONS(2251), + [anon_sym_chan] = ACTIONS(2253), + [anon_sym_thread] = ACTIONS(2253), + [anon_sym_atomic] = ACTIONS(2253), }, [1306] = { [sym_line_comment] = STATE(1306), [sym_block_comment] = STATE(1306), - [sym_identifier] = ACTIONS(3068), + [sym_identifier] = ACTIONS(2249), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3068), - [anon_sym_as] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_COMMA] = ACTIONS(3066), - [anon_sym_RBRACE] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_PIPE] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_SLASH] = ACTIONS(3068), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_GT] = ACTIONS(3068), - [anon_sym_EQ_EQ] = ACTIONS(3066), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_LT_EQ] = ACTIONS(3066), - [anon_sym_GT_EQ] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_RBRACK] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(3068), - [anon_sym_mut] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3068), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_go] = ACTIONS(3068), - [anon_sym_spawn] = ACTIONS(3068), - [anon_sym_json_DOTdecode] = ACTIONS(3066), - [anon_sym_LBRACK2] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3066), - [anon_sym_CARET] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_LT_DASH] = ACTIONS(3066), - [anon_sym_LT_LT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(3068), - [anon_sym_GT_GT_GT] = ACTIONS(3066), - [anon_sym_AMP_CARET] = ACTIONS(3066), - [anon_sym_AMP_AMP] = ACTIONS(3066), - [anon_sym_PIPE_PIPE] = ACTIONS(3066), - [anon_sym_or] = ACTIONS(3068), - [sym_none] = ACTIONS(3068), - [sym_true] = ACTIONS(3068), - [sym_false] = ACTIONS(3068), - [sym_nil] = ACTIONS(3068), - [anon_sym_QMARK_DOT] = ACTIONS(3066), - [anon_sym_POUND_LBRACK] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_DOLLARif] = ACTIONS(3068), - [anon_sym_is] = ACTIONS(3068), - [anon_sym_BANGis] = ACTIONS(3066), - [anon_sym_in] = ACTIONS(3068), - [anon_sym_BANGin] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3068), - [anon_sym_select] = ACTIONS(3068), - [anon_sym_lock] = ACTIONS(3068), - [anon_sym_rlock] = ACTIONS(3068), - [anon_sym_unsafe] = ACTIONS(3068), - [anon_sym_sql] = ACTIONS(3068), - [sym_int_literal] = ACTIONS(3068), - [sym_float_literal] = ACTIONS(3066), - [sym_rune_literal] = ACTIONS(3066), - [sym_pseudo_compile_time_identifier] = ACTIONS(3068), - [anon_sym_shared] = ACTIONS(3068), - [anon_sym_map_LBRACK] = ACTIONS(3066), - [anon_sym_chan] = ACTIONS(3068), - [anon_sym_thread] = ACTIONS(3068), - [anon_sym_atomic] = ACTIONS(3068), - [sym___double_quote] = ACTIONS(3066), - [sym___single_quote] = ACTIONS(3066), - [sym___c_double_quote] = ACTIONS(3066), - [sym___c_single_quote] = ACTIONS(3066), - [sym___r_double_quote] = ACTIONS(3066), - [sym___r_single_quote] = ACTIONS(3066), + [anon_sym_DOT] = ACTIONS(2249), + [anon_sym_as] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_COMMA] = ACTIONS(2247), + [anon_sym_RBRACE] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2249), + [anon_sym_fn] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_SLASH] = ACTIONS(2249), + [anon_sym_PERCENT] = ACTIONS(2247), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_GT] = ACTIONS(2249), + [anon_sym_EQ_EQ] = ACTIONS(2247), + [anon_sym_BANG_EQ] = ACTIONS(2247), + [anon_sym_LT_EQ] = ACTIONS(2247), + [anon_sym_GT_EQ] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(2247), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_mut] = ACTIONS(2249), + [anon_sym_COLON] = ACTIONS(2247), + [anon_sym_PLUS_PLUS] = ACTIONS(2247), + [anon_sym_DASH_DASH] = ACTIONS(2247), + [anon_sym_QMARK] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_go] = ACTIONS(2249), + [anon_sym_spawn] = ACTIONS(2249), + [anon_sym_json_DOTdecode] = ACTIONS(2247), + [anon_sym_LBRACK2] = ACTIONS(2249), + [anon_sym_TILDE] = ACTIONS(2247), + [anon_sym_CARET] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2247), + [anon_sym_LT_LT] = ACTIONS(2247), + [anon_sym_GT_GT] = ACTIONS(2249), + [anon_sym_GT_GT_GT] = ACTIONS(2247), + [anon_sym_AMP_CARET] = ACTIONS(2247), + [anon_sym_AMP_AMP] = ACTIONS(2247), + [anon_sym_PIPE_PIPE] = ACTIONS(2247), + [anon_sym_or] = ACTIONS(2249), + [sym_none] = ACTIONS(2249), + [sym_true] = ACTIONS(2249), + [sym_false] = ACTIONS(2249), + [sym_nil] = ACTIONS(2249), + [anon_sym_QMARK_DOT] = ACTIONS(2247), + [anon_sym_POUND_LBRACK] = ACTIONS(2247), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_DOLLARif] = ACTIONS(2249), + [anon_sym_is] = ACTIONS(2249), + [anon_sym_BANGis] = ACTIONS(2247), + [anon_sym_in] = ACTIONS(2249), + [anon_sym_BANGin] = ACTIONS(2247), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_select] = ACTIONS(2249), + [anon_sym_lock] = ACTIONS(2249), + [anon_sym_rlock] = ACTIONS(2249), + [anon_sym_unsafe] = ACTIONS(2249), + [anon_sym_sql] = ACTIONS(2249), + [sym_int_literal] = ACTIONS(2249), + [sym_float_literal] = ACTIONS(2247), + [sym_rune_literal] = ACTIONS(2247), + [anon_sym_SQUOTE] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2247), + [anon_sym_c_SQUOTE] = ACTIONS(2247), + [anon_sym_c_DQUOTE] = ACTIONS(2247), + [anon_sym_r_SQUOTE] = ACTIONS(2247), + [anon_sym_r_DQUOTE] = ACTIONS(2247), + [sym_pseudo_compile_time_identifier] = ACTIONS(2249), + [anon_sym_shared] = ACTIONS(2249), + [anon_sym_map_LBRACK] = ACTIONS(2247), + [anon_sym_chan] = ACTIONS(2249), + [anon_sym_thread] = ACTIONS(2249), + [anon_sym_atomic] = ACTIONS(2249), }, [1307] = { [sym_line_comment] = STATE(1307), [sym_block_comment] = STATE(1307), - [sym_identifier] = ACTIONS(2538), + [sym_identifier] = ACTIONS(2855), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2538), - [anon_sym_as] = ACTIONS(2538), - [anon_sym_LBRACE] = ACTIONS(2536), - [anon_sym_COMMA] = ACTIONS(2536), - [anon_sym_RBRACE] = ACTIONS(2536), - [anon_sym_LPAREN] = ACTIONS(2536), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_fn] = ACTIONS(2538), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_SLASH] = ACTIONS(2538), - [anon_sym_PERCENT] = ACTIONS(2536), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_GT] = ACTIONS(2538), - [anon_sym_EQ_EQ] = ACTIONS(2536), - [anon_sym_BANG_EQ] = ACTIONS(2536), - [anon_sym_LT_EQ] = ACTIONS(2536), - [anon_sym_GT_EQ] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2536), - [anon_sym_RBRACK] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), - [anon_sym_mut] = ACTIONS(2538), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_PLUS_PLUS] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(2536), - [anon_sym_QMARK] = ACTIONS(2538), - [anon_sym_BANG] = ACTIONS(2538), - [anon_sym_go] = ACTIONS(2538), - [anon_sym_spawn] = ACTIONS(2538), - [anon_sym_json_DOTdecode] = ACTIONS(2536), - [anon_sym_LBRACK2] = ACTIONS(2538), - [anon_sym_TILDE] = ACTIONS(2536), - [anon_sym_CARET] = ACTIONS(2536), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2536), - [anon_sym_LT_LT] = ACTIONS(2536), - [anon_sym_GT_GT] = ACTIONS(2538), - [anon_sym_GT_GT_GT] = ACTIONS(2536), - [anon_sym_AMP_CARET] = ACTIONS(2536), - [anon_sym_AMP_AMP] = ACTIONS(2536), - [anon_sym_PIPE_PIPE] = ACTIONS(2536), - [anon_sym_or] = ACTIONS(2538), - [sym_none] = ACTIONS(2538), - [sym_true] = ACTIONS(2538), - [sym_false] = ACTIONS(2538), - [sym_nil] = ACTIONS(2538), - [anon_sym_QMARK_DOT] = ACTIONS(2536), - [anon_sym_POUND_LBRACK] = ACTIONS(2536), - [anon_sym_if] = ACTIONS(2538), - [anon_sym_DOLLARif] = ACTIONS(2538), - [anon_sym_is] = ACTIONS(2538), - [anon_sym_BANGis] = ACTIONS(2536), - [anon_sym_in] = ACTIONS(2538), - [anon_sym_BANGin] = ACTIONS(2536), - [anon_sym_match] = ACTIONS(2538), - [anon_sym_select] = ACTIONS(2538), - [anon_sym_lock] = ACTIONS(2538), - [anon_sym_rlock] = ACTIONS(2538), - [anon_sym_unsafe] = ACTIONS(2538), - [anon_sym_sql] = ACTIONS(2538), - [sym_int_literal] = ACTIONS(2538), - [sym_float_literal] = ACTIONS(2536), - [sym_rune_literal] = ACTIONS(2536), - [sym_pseudo_compile_time_identifier] = ACTIONS(2538), - [anon_sym_shared] = ACTIONS(2538), - [anon_sym_map_LBRACK] = ACTIONS(2536), - [anon_sym_chan] = ACTIONS(2538), - [anon_sym_thread] = ACTIONS(2538), - [anon_sym_atomic] = ACTIONS(2538), - [sym___double_quote] = ACTIONS(2536), - [sym___single_quote] = ACTIONS(2536), - [sym___c_double_quote] = ACTIONS(2536), - [sym___c_single_quote] = ACTIONS(2536), - [sym___r_double_quote] = ACTIONS(2536), - [sym___r_single_quote] = ACTIONS(2536), + [anon_sym_DOT] = ACTIONS(2855), + [anon_sym_as] = ACTIONS(2855), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_COMMA] = ACTIONS(2853), + [anon_sym_RBRACE] = ACTIONS(2853), + [anon_sym_LPAREN] = ACTIONS(2853), + [anon_sym_PIPE] = ACTIONS(2855), + [anon_sym_fn] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(2853), + [anon_sym_SLASH] = ACTIONS(2855), + [anon_sym_PERCENT] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_GT] = ACTIONS(2855), + [anon_sym_EQ_EQ] = ACTIONS(2853), + [anon_sym_BANG_EQ] = ACTIONS(2853), + [anon_sym_LT_EQ] = ACTIONS(2853), + [anon_sym_GT_EQ] = ACTIONS(2853), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_RBRACK] = ACTIONS(2853), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_mut] = ACTIONS(2855), + [anon_sym_COLON] = ACTIONS(2853), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_DASH_DASH] = ACTIONS(2853), + [anon_sym_QMARK] = ACTIONS(2855), + [anon_sym_BANG] = ACTIONS(2855), + [anon_sym_go] = ACTIONS(2855), + [anon_sym_spawn] = ACTIONS(2855), + [anon_sym_json_DOTdecode] = ACTIONS(2853), + [anon_sym_LBRACK2] = ACTIONS(2855), + [anon_sym_TILDE] = ACTIONS(2853), + [anon_sym_CARET] = ACTIONS(2853), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_LT_DASH] = ACTIONS(2853), + [anon_sym_LT_LT] = ACTIONS(2853), + [anon_sym_GT_GT] = ACTIONS(2855), + [anon_sym_GT_GT_GT] = ACTIONS(2853), + [anon_sym_AMP_CARET] = ACTIONS(2853), + [anon_sym_AMP_AMP] = ACTIONS(2853), + [anon_sym_PIPE_PIPE] = ACTIONS(2853), + [anon_sym_or] = ACTIONS(2855), + [sym_none] = ACTIONS(2855), + [sym_true] = ACTIONS(2855), + [sym_false] = ACTIONS(2855), + [sym_nil] = ACTIONS(2855), + [anon_sym_QMARK_DOT] = ACTIONS(2853), + [anon_sym_POUND_LBRACK] = ACTIONS(2853), + [anon_sym_if] = ACTIONS(2855), + [anon_sym_DOLLARif] = ACTIONS(2855), + [anon_sym_is] = ACTIONS(2855), + [anon_sym_BANGis] = ACTIONS(2853), + [anon_sym_in] = ACTIONS(2855), + [anon_sym_BANGin] = ACTIONS(2853), + [anon_sym_match] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2855), + [anon_sym_lock] = ACTIONS(2855), + [anon_sym_rlock] = ACTIONS(2855), + [anon_sym_unsafe] = ACTIONS(2855), + [anon_sym_sql] = ACTIONS(2855), + [sym_int_literal] = ACTIONS(2855), + [sym_float_literal] = ACTIONS(2853), + [sym_rune_literal] = ACTIONS(2853), + [anon_sym_SQUOTE] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(2853), + [anon_sym_c_SQUOTE] = ACTIONS(2853), + [anon_sym_c_DQUOTE] = ACTIONS(2853), + [anon_sym_r_SQUOTE] = ACTIONS(2853), + [anon_sym_r_DQUOTE] = ACTIONS(2853), + [sym_pseudo_compile_time_identifier] = ACTIONS(2855), + [anon_sym_shared] = ACTIONS(2855), + [anon_sym_map_LBRACK] = ACTIONS(2853), + [anon_sym_chan] = ACTIONS(2855), + [anon_sym_thread] = ACTIONS(2855), + [anon_sym_atomic] = ACTIONS(2855), }, [1308] = { [sym_line_comment] = STATE(1308), [sym_block_comment] = STATE(1308), - [sym_identifier] = ACTIONS(3062), + [sym_identifier] = ACTIONS(2163), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3062), - [anon_sym_as] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_fn] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_EQ_EQ] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3060), - [anon_sym_LT_EQ] = ACTIONS(3060), - [anon_sym_GT_EQ] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_RBRACK] = ACTIONS(3060), - [anon_sym_struct] = ACTIONS(3062), - [anon_sym_mut] = ACTIONS(3062), - [anon_sym_COLON] = ACTIONS(3060), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_go] = ACTIONS(3062), - [anon_sym_spawn] = ACTIONS(3062), - [anon_sym_json_DOTdecode] = ACTIONS(3060), - [anon_sym_LBRACK2] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3060), - [anon_sym_CARET] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3062), - [anon_sym_LT_DASH] = ACTIONS(3060), - [anon_sym_LT_LT] = ACTIONS(3060), - [anon_sym_GT_GT] = ACTIONS(3062), - [anon_sym_GT_GT_GT] = ACTIONS(3060), - [anon_sym_AMP_CARET] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_PIPE_PIPE] = ACTIONS(3060), - [anon_sym_or] = ACTIONS(3062), - [sym_none] = ACTIONS(3062), - [sym_true] = ACTIONS(3062), - [sym_false] = ACTIONS(3062), - [sym_nil] = ACTIONS(3062), - [anon_sym_QMARK_DOT] = ACTIONS(3060), - [anon_sym_POUND_LBRACK] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3062), - [anon_sym_DOLLARif] = ACTIONS(3062), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_BANGis] = ACTIONS(3060), - [anon_sym_in] = ACTIONS(3062), - [anon_sym_BANGin] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3062), - [anon_sym_select] = ACTIONS(3062), - [anon_sym_lock] = ACTIONS(3062), - [anon_sym_rlock] = ACTIONS(3062), - [anon_sym_unsafe] = ACTIONS(3062), - [anon_sym_sql] = ACTIONS(3062), - [sym_int_literal] = ACTIONS(3062), - [sym_float_literal] = ACTIONS(3060), - [sym_rune_literal] = ACTIONS(3060), - [sym_pseudo_compile_time_identifier] = ACTIONS(3062), - [anon_sym_shared] = ACTIONS(3062), - [anon_sym_map_LBRACK] = ACTIONS(3060), - [anon_sym_chan] = ACTIONS(3062), - [anon_sym_thread] = ACTIONS(3062), - [anon_sym_atomic] = ACTIONS(3062), - [sym___double_quote] = ACTIONS(3060), - [sym___single_quote] = ACTIONS(3060), - [sym___c_double_quote] = ACTIONS(3060), - [sym___c_single_quote] = ACTIONS(3060), - [sym___r_double_quote] = ACTIONS(3060), - [sym___r_single_quote] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(2163), + [anon_sym_as] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_COMMA] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_fn] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_SLASH] = ACTIONS(2163), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2163), + [anon_sym_GT] = ACTIONS(2163), + [anon_sym_EQ_EQ] = ACTIONS(2161), + [anon_sym_BANG_EQ] = ACTIONS(2161), + [anon_sym_LT_EQ] = ACTIONS(2161), + [anon_sym_GT_EQ] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_RBRACK] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2163), + [anon_sym_mut] = ACTIONS(2163), + [anon_sym_COLON] = ACTIONS(2161), + [anon_sym_PLUS_PLUS] = ACTIONS(2161), + [anon_sym_DASH_DASH] = ACTIONS(2161), + [anon_sym_QMARK] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_go] = ACTIONS(2163), + [anon_sym_spawn] = ACTIONS(2163), + [anon_sym_json_DOTdecode] = ACTIONS(2161), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2163), + [anon_sym_LT_DASH] = ACTIONS(2161), + [anon_sym_LT_LT] = ACTIONS(2161), + [anon_sym_GT_GT] = ACTIONS(2163), + [anon_sym_GT_GT_GT] = ACTIONS(2161), + [anon_sym_AMP_CARET] = ACTIONS(2161), + [anon_sym_AMP_AMP] = ACTIONS(2161), + [anon_sym_PIPE_PIPE] = ACTIONS(2161), + [anon_sym_or] = ACTIONS(2163), + [sym_none] = ACTIONS(2163), + [sym_true] = ACTIONS(2163), + [sym_false] = ACTIONS(2163), + [sym_nil] = ACTIONS(2163), + [anon_sym_QMARK_DOT] = ACTIONS(2161), + [anon_sym_POUND_LBRACK] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_DOLLARif] = ACTIONS(2163), + [anon_sym_is] = ACTIONS(2163), + [anon_sym_BANGis] = ACTIONS(2161), + [anon_sym_in] = ACTIONS(2163), + [anon_sym_BANGin] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2163), + [anon_sym_select] = ACTIONS(2163), + [anon_sym_lock] = ACTIONS(2163), + [anon_sym_rlock] = ACTIONS(2163), + [anon_sym_unsafe] = ACTIONS(2163), + [anon_sym_sql] = ACTIONS(2163), + [sym_int_literal] = ACTIONS(2163), + [sym_float_literal] = ACTIONS(2161), + [sym_rune_literal] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(2161), + [anon_sym_c_SQUOTE] = ACTIONS(2161), + [anon_sym_c_DQUOTE] = ACTIONS(2161), + [anon_sym_r_SQUOTE] = ACTIONS(2161), + [anon_sym_r_DQUOTE] = ACTIONS(2161), + [sym_pseudo_compile_time_identifier] = ACTIONS(2163), + [anon_sym_shared] = ACTIONS(2163), + [anon_sym_map_LBRACK] = ACTIONS(2161), + [anon_sym_chan] = ACTIONS(2163), + [anon_sym_thread] = ACTIONS(2163), + [anon_sym_atomic] = ACTIONS(2163), }, [1309] = { [sym_line_comment] = STATE(1309), [sym_block_comment] = STATE(1309), - [sym_identifier] = ACTIONS(2668), + [sym_identifier] = ACTIONS(2863), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2668), - [anon_sym_as] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_COMMA] = ACTIONS(2666), - [anon_sym_RBRACE] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2668), - [anon_sym_fn] = ACTIONS(2668), - [anon_sym_PLUS] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2668), - [anon_sym_STAR] = ACTIONS(2666), - [anon_sym_SLASH] = ACTIONS(2668), - [anon_sym_PERCENT] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_LT_EQ] = ACTIONS(2666), - [anon_sym_GT_EQ] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_RBRACK] = ACTIONS(2666), - [anon_sym_struct] = ACTIONS(2668), - [anon_sym_mut] = ACTIONS(2668), - [anon_sym_COLON] = ACTIONS(2666), - [anon_sym_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2666), - [anon_sym_QMARK] = ACTIONS(2668), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_go] = ACTIONS(2668), - [anon_sym_spawn] = ACTIONS(2668), - [anon_sym_json_DOTdecode] = ACTIONS(2666), - [anon_sym_LBRACK2] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2666), - [anon_sym_CARET] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2668), - [anon_sym_LT_DASH] = ACTIONS(2666), - [anon_sym_LT_LT] = ACTIONS(2666), - [anon_sym_GT_GT] = ACTIONS(2668), - [anon_sym_GT_GT_GT] = ACTIONS(2666), - [anon_sym_AMP_CARET] = ACTIONS(2666), - [anon_sym_AMP_AMP] = ACTIONS(2666), - [anon_sym_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_or] = ACTIONS(2668), - [sym_none] = ACTIONS(2668), - [sym_true] = ACTIONS(2668), - [sym_false] = ACTIONS(2668), - [sym_nil] = ACTIONS(2668), - [anon_sym_QMARK_DOT] = ACTIONS(2666), - [anon_sym_POUND_LBRACK] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2668), - [anon_sym_is] = ACTIONS(2668), - [anon_sym_BANGis] = ACTIONS(2666), - [anon_sym_in] = ACTIONS(2668), - [anon_sym_BANGin] = ACTIONS(2666), - [anon_sym_match] = ACTIONS(2668), - [anon_sym_select] = ACTIONS(2668), - [anon_sym_lock] = ACTIONS(2668), - [anon_sym_rlock] = ACTIONS(2668), - [anon_sym_unsafe] = ACTIONS(2668), - [anon_sym_sql] = ACTIONS(2668), - [sym_int_literal] = ACTIONS(2668), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [sym_pseudo_compile_time_identifier] = ACTIONS(2668), - [anon_sym_shared] = ACTIONS(2668), - [anon_sym_map_LBRACK] = ACTIONS(2666), - [anon_sym_chan] = ACTIONS(2668), - [anon_sym_thread] = ACTIONS(2668), - [anon_sym_atomic] = ACTIONS(2668), - [sym___double_quote] = ACTIONS(2666), - [sym___single_quote] = ACTIONS(2666), - [sym___c_double_quote] = ACTIONS(2666), - [sym___c_single_quote] = ACTIONS(2666), - [sym___r_double_quote] = ACTIONS(2666), - [sym___r_single_quote] = ACTIONS(2666), + [anon_sym_DOT] = ACTIONS(2863), + [anon_sym_as] = ACTIONS(2863), + [anon_sym_LBRACE] = ACTIONS(2861), + [anon_sym_COMMA] = ACTIONS(2861), + [anon_sym_RBRACE] = ACTIONS(2861), + [anon_sym_LPAREN] = ACTIONS(2861), + [anon_sym_PIPE] = ACTIONS(2863), + [anon_sym_fn] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2861), + [anon_sym_SLASH] = ACTIONS(2863), + [anon_sym_PERCENT] = ACTIONS(2861), + [anon_sym_LT] = ACTIONS(2863), + [anon_sym_GT] = ACTIONS(2863), + [anon_sym_EQ_EQ] = ACTIONS(2861), + [anon_sym_BANG_EQ] = ACTIONS(2861), + [anon_sym_LT_EQ] = ACTIONS(2861), + [anon_sym_GT_EQ] = ACTIONS(2861), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_RBRACK] = ACTIONS(2861), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_mut] = ACTIONS(2863), + [anon_sym_COLON] = ACTIONS(2861), + [anon_sym_PLUS_PLUS] = ACTIONS(2861), + [anon_sym_DASH_DASH] = ACTIONS(2861), + [anon_sym_QMARK] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_go] = ACTIONS(2863), + [anon_sym_spawn] = ACTIONS(2863), + [anon_sym_json_DOTdecode] = ACTIONS(2861), + [anon_sym_LBRACK2] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2861), + [anon_sym_CARET] = ACTIONS(2861), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_LT_DASH] = ACTIONS(2861), + [anon_sym_LT_LT] = ACTIONS(2861), + [anon_sym_GT_GT] = ACTIONS(2863), + [anon_sym_GT_GT_GT] = ACTIONS(2861), + [anon_sym_AMP_CARET] = ACTIONS(2861), + [anon_sym_AMP_AMP] = ACTIONS(2861), + [anon_sym_PIPE_PIPE] = ACTIONS(2861), + [anon_sym_or] = ACTIONS(2863), + [sym_none] = ACTIONS(2863), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_nil] = ACTIONS(2863), + [anon_sym_QMARK_DOT] = ACTIONS(2861), + [anon_sym_POUND_LBRACK] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_DOLLARif] = ACTIONS(2863), + [anon_sym_is] = ACTIONS(2863), + [anon_sym_BANGis] = ACTIONS(2861), + [anon_sym_in] = ACTIONS(2863), + [anon_sym_BANGin] = ACTIONS(2861), + [anon_sym_match] = ACTIONS(2863), + [anon_sym_select] = ACTIONS(2863), + [anon_sym_lock] = ACTIONS(2863), + [anon_sym_rlock] = ACTIONS(2863), + [anon_sym_unsafe] = ACTIONS(2863), + [anon_sym_sql] = ACTIONS(2863), + [sym_int_literal] = ACTIONS(2863), + [sym_float_literal] = ACTIONS(2861), + [sym_rune_literal] = ACTIONS(2861), + [anon_sym_SQUOTE] = ACTIONS(2861), + [anon_sym_DQUOTE] = ACTIONS(2861), + [anon_sym_c_SQUOTE] = ACTIONS(2861), + [anon_sym_c_DQUOTE] = ACTIONS(2861), + [anon_sym_r_SQUOTE] = ACTIONS(2861), + [anon_sym_r_DQUOTE] = ACTIONS(2861), + [sym_pseudo_compile_time_identifier] = ACTIONS(2863), + [anon_sym_shared] = ACTIONS(2863), + [anon_sym_map_LBRACK] = ACTIONS(2861), + [anon_sym_chan] = ACTIONS(2863), + [anon_sym_thread] = ACTIONS(2863), + [anon_sym_atomic] = ACTIONS(2863), }, [1310] = { [sym_line_comment] = STATE(1310), [sym_block_comment] = STATE(1310), - [sym_identifier] = ACTIONS(2680), + [sym_identifier] = ACTIONS(2245), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2680), - [anon_sym_as] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_COMMA] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_fn] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_STAR] = ACTIONS(2678), - [anon_sym_SLASH] = ACTIONS(2680), - [anon_sym_PERCENT] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2680), - [anon_sym_GT] = ACTIONS(2680), - [anon_sym_EQ_EQ] = ACTIONS(2678), - [anon_sym_BANG_EQ] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_RBRACK] = ACTIONS(2678), - [anon_sym_struct] = ACTIONS(2680), - [anon_sym_mut] = ACTIONS(2680), - [anon_sym_COLON] = ACTIONS(2678), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_QMARK] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2680), - [anon_sym_go] = ACTIONS(2680), - [anon_sym_spawn] = ACTIONS(2680), - [anon_sym_json_DOTdecode] = ACTIONS(2678), - [anon_sym_LBRACK2] = ACTIONS(2680), - [anon_sym_TILDE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2678), - [anon_sym_AMP] = ACTIONS(2680), - [anon_sym_LT_DASH] = ACTIONS(2678), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2680), - [anon_sym_GT_GT_GT] = ACTIONS(2678), - [anon_sym_AMP_CARET] = ACTIONS(2678), - [anon_sym_AMP_AMP] = ACTIONS(2678), - [anon_sym_PIPE_PIPE] = ACTIONS(2678), - [anon_sym_or] = ACTIONS(2680), - [sym_none] = ACTIONS(2680), - [sym_true] = ACTIONS(2680), - [sym_false] = ACTIONS(2680), - [sym_nil] = ACTIONS(2680), - [anon_sym_QMARK_DOT] = ACTIONS(2678), - [anon_sym_POUND_LBRACK] = ACTIONS(2678), - [anon_sym_if] = ACTIONS(2680), - [anon_sym_DOLLARif] = ACTIONS(2680), - [anon_sym_is] = ACTIONS(2680), - [anon_sym_BANGis] = ACTIONS(2678), - [anon_sym_in] = ACTIONS(2680), - [anon_sym_BANGin] = ACTIONS(2678), - [anon_sym_match] = ACTIONS(2680), - [anon_sym_select] = ACTIONS(2680), - [anon_sym_lock] = ACTIONS(2680), - [anon_sym_rlock] = ACTIONS(2680), - [anon_sym_unsafe] = ACTIONS(2680), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2680), - [sym_float_literal] = ACTIONS(2678), - [sym_rune_literal] = ACTIONS(2678), - [sym_pseudo_compile_time_identifier] = ACTIONS(2680), - [anon_sym_shared] = ACTIONS(2680), - [anon_sym_map_LBRACK] = ACTIONS(2678), - [anon_sym_chan] = ACTIONS(2680), - [anon_sym_thread] = ACTIONS(2680), - [anon_sym_atomic] = ACTIONS(2680), - [sym___double_quote] = ACTIONS(2678), - [sym___single_quote] = ACTIONS(2678), - [sym___c_double_quote] = ACTIONS(2678), - [sym___c_single_quote] = ACTIONS(2678), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2678), + [anon_sym_DOT] = ACTIONS(2245), + [anon_sym_as] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_COMMA] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_fn] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_STAR] = ACTIONS(2243), + [anon_sym_SLASH] = ACTIONS(2245), + [anon_sym_PERCENT] = ACTIONS(2243), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_GT] = ACTIONS(2245), + [anon_sym_EQ_EQ] = ACTIONS(2243), + [anon_sym_BANG_EQ] = ACTIONS(2243), + [anon_sym_LT_EQ] = ACTIONS(2243), + [anon_sym_GT_EQ] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_RBRACK] = ACTIONS(2243), + [anon_sym_struct] = ACTIONS(2245), + [anon_sym_mut] = ACTIONS(2245), + [anon_sym_COLON] = ACTIONS(2243), + [anon_sym_PLUS_PLUS] = ACTIONS(2243), + [anon_sym_DASH_DASH] = ACTIONS(2243), + [anon_sym_QMARK] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_go] = ACTIONS(2245), + [anon_sym_spawn] = ACTIONS(2245), + [anon_sym_json_DOTdecode] = ACTIONS(2243), + [anon_sym_LBRACK2] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2243), + [anon_sym_CARET] = ACTIONS(2243), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_LT_DASH] = ACTIONS(2243), + [anon_sym_LT_LT] = ACTIONS(2243), + [anon_sym_GT_GT] = ACTIONS(2245), + [anon_sym_GT_GT_GT] = ACTIONS(2243), + [anon_sym_AMP_CARET] = ACTIONS(2243), + [anon_sym_AMP_AMP] = ACTIONS(2243), + [anon_sym_PIPE_PIPE] = ACTIONS(2243), + [anon_sym_or] = ACTIONS(2245), + [sym_none] = ACTIONS(2245), + [sym_true] = ACTIONS(2245), + [sym_false] = ACTIONS(2245), + [sym_nil] = ACTIONS(2245), + [anon_sym_QMARK_DOT] = ACTIONS(2243), + [anon_sym_POUND_LBRACK] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_DOLLARif] = ACTIONS(2245), + [anon_sym_is] = ACTIONS(2245), + [anon_sym_BANGis] = ACTIONS(2243), + [anon_sym_in] = ACTIONS(2245), + [anon_sym_BANGin] = ACTIONS(2243), + [anon_sym_match] = ACTIONS(2245), + [anon_sym_select] = ACTIONS(2245), + [anon_sym_lock] = ACTIONS(2245), + [anon_sym_rlock] = ACTIONS(2245), + [anon_sym_unsafe] = ACTIONS(2245), + [anon_sym_sql] = ACTIONS(2245), + [sym_int_literal] = ACTIONS(2245), + [sym_float_literal] = ACTIONS(2243), + [sym_rune_literal] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(2243), + [anon_sym_c_SQUOTE] = ACTIONS(2243), + [anon_sym_c_DQUOTE] = ACTIONS(2243), + [anon_sym_r_SQUOTE] = ACTIONS(2243), + [anon_sym_r_DQUOTE] = ACTIONS(2243), + [sym_pseudo_compile_time_identifier] = ACTIONS(2245), + [anon_sym_shared] = ACTIONS(2245), + [anon_sym_map_LBRACK] = ACTIONS(2243), + [anon_sym_chan] = ACTIONS(2245), + [anon_sym_thread] = ACTIONS(2245), + [anon_sym_atomic] = ACTIONS(2245), }, [1311] = { [sym_line_comment] = STATE(1311), [sym_block_comment] = STATE(1311), - [sym_identifier] = ACTIONS(2684), + [sym_identifier] = ACTIONS(2229), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2684), - [anon_sym_as] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2682), - [anon_sym_COMMA] = ACTIONS(2682), - [anon_sym_RBRACE] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_fn] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2684), - [anon_sym_PERCENT] = ACTIONS(2682), - [anon_sym_LT] = ACTIONS(2684), - [anon_sym_GT] = ACTIONS(2684), - [anon_sym_EQ_EQ] = ACTIONS(2682), - [anon_sym_BANG_EQ] = ACTIONS(2682), - [anon_sym_LT_EQ] = ACTIONS(2682), - [anon_sym_GT_EQ] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_RBRACK] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(2684), - [anon_sym_mut] = ACTIONS(2684), - [anon_sym_COLON] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2682), - [anon_sym_DASH_DASH] = ACTIONS(2682), - [anon_sym_QMARK] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2684), - [anon_sym_spawn] = ACTIONS(2684), - [anon_sym_json_DOTdecode] = ACTIONS(2682), - [anon_sym_LBRACK2] = ACTIONS(2684), - [anon_sym_TILDE] = ACTIONS(2682), - [anon_sym_CARET] = ACTIONS(2682), - [anon_sym_AMP] = ACTIONS(2684), - [anon_sym_LT_DASH] = ACTIONS(2682), - [anon_sym_LT_LT] = ACTIONS(2682), - [anon_sym_GT_GT] = ACTIONS(2684), - [anon_sym_GT_GT_GT] = ACTIONS(2682), - [anon_sym_AMP_CARET] = ACTIONS(2682), - [anon_sym_AMP_AMP] = ACTIONS(2682), - [anon_sym_PIPE_PIPE] = ACTIONS(2682), - [anon_sym_or] = ACTIONS(2684), - [sym_none] = ACTIONS(2684), - [sym_true] = ACTIONS(2684), - [sym_false] = ACTIONS(2684), - [sym_nil] = ACTIONS(2684), - [anon_sym_QMARK_DOT] = ACTIONS(2682), - [anon_sym_POUND_LBRACK] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2684), - [anon_sym_DOLLARif] = ACTIONS(2684), - [anon_sym_is] = ACTIONS(2684), - [anon_sym_BANGis] = ACTIONS(2682), - [anon_sym_in] = ACTIONS(2684), - [anon_sym_BANGin] = ACTIONS(2682), - [anon_sym_match] = ACTIONS(2684), - [anon_sym_select] = ACTIONS(2684), - [anon_sym_lock] = ACTIONS(2684), - [anon_sym_rlock] = ACTIONS(2684), - [anon_sym_unsafe] = ACTIONS(2684), - [anon_sym_sql] = ACTIONS(2684), - [sym_int_literal] = ACTIONS(2684), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [sym_pseudo_compile_time_identifier] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(2684), - [anon_sym_map_LBRACK] = ACTIONS(2682), - [anon_sym_chan] = ACTIONS(2684), - [anon_sym_thread] = ACTIONS(2684), - [anon_sym_atomic] = ACTIONS(2684), - [sym___double_quote] = ACTIONS(2682), - [sym___single_quote] = ACTIONS(2682), - [sym___c_double_quote] = ACTIONS(2682), - [sym___c_single_quote] = ACTIONS(2682), - [sym___r_double_quote] = ACTIONS(2682), - [sym___r_single_quote] = ACTIONS(2682), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_as] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_COMMA] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_fn] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_SLASH] = ACTIONS(2229), + [anon_sym_PERCENT] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_GT] = ACTIONS(2229), + [anon_sym_EQ_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ] = ACTIONS(2227), + [anon_sym_LT_EQ] = ACTIONS(2227), + [anon_sym_GT_EQ] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_RBRACK] = ACTIONS(2227), + [anon_sym_struct] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_COLON] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(2227), + [anon_sym_DASH_DASH] = ACTIONS(2227), + [anon_sym_QMARK] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_go] = ACTIONS(2229), + [anon_sym_spawn] = ACTIONS(2229), + [anon_sym_json_DOTdecode] = ACTIONS(2227), + [anon_sym_LBRACK2] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_LT_DASH] = ACTIONS(2227), + [anon_sym_LT_LT] = ACTIONS(2227), + [anon_sym_GT_GT] = ACTIONS(2229), + [anon_sym_GT_GT_GT] = ACTIONS(2227), + [anon_sym_AMP_CARET] = ACTIONS(2227), + [anon_sym_AMP_AMP] = ACTIONS(2227), + [anon_sym_PIPE_PIPE] = ACTIONS(2227), + [anon_sym_or] = ACTIONS(2229), + [sym_none] = ACTIONS(2229), + [sym_true] = ACTIONS(2229), + [sym_false] = ACTIONS(2229), + [sym_nil] = ACTIONS(2229), + [anon_sym_QMARK_DOT] = ACTIONS(2227), + [anon_sym_POUND_LBRACK] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_DOLLARif] = ACTIONS(2229), + [anon_sym_is] = ACTIONS(2229), + [anon_sym_BANGis] = ACTIONS(2227), + [anon_sym_in] = ACTIONS(2229), + [anon_sym_BANGin] = ACTIONS(2227), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_select] = ACTIONS(2229), + [anon_sym_lock] = ACTIONS(2229), + [anon_sym_rlock] = ACTIONS(2229), + [anon_sym_unsafe] = ACTIONS(2229), + [anon_sym_sql] = ACTIONS(2229), + [sym_int_literal] = ACTIONS(2229), + [sym_float_literal] = ACTIONS(2227), + [sym_rune_literal] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_DQUOTE] = ACTIONS(2227), + [anon_sym_c_SQUOTE] = ACTIONS(2227), + [anon_sym_c_DQUOTE] = ACTIONS(2227), + [anon_sym_r_SQUOTE] = ACTIONS(2227), + [anon_sym_r_DQUOTE] = ACTIONS(2227), + [sym_pseudo_compile_time_identifier] = ACTIONS(2229), + [anon_sym_shared] = ACTIONS(2229), + [anon_sym_map_LBRACK] = ACTIONS(2227), + [anon_sym_chan] = ACTIONS(2229), + [anon_sym_thread] = ACTIONS(2229), + [anon_sym_atomic] = ACTIONS(2229), }, [1312] = { [sym_line_comment] = STATE(1312), [sym_block_comment] = STATE(1312), - [sym_identifier] = ACTIONS(2688), + [sym_identifier] = ACTIONS(2225), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2688), - [anon_sym_as] = ACTIONS(2688), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_COMMA] = ACTIONS(2686), - [anon_sym_RBRACE] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2686), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_fn] = ACTIONS(2688), - [anon_sym_PLUS] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2688), - [anon_sym_STAR] = ACTIONS(2686), - [anon_sym_SLASH] = ACTIONS(2688), - [anon_sym_PERCENT] = ACTIONS(2686), - [anon_sym_LT] = ACTIONS(2688), - [anon_sym_GT] = ACTIONS(2688), - [anon_sym_EQ_EQ] = ACTIONS(2686), - [anon_sym_BANG_EQ] = ACTIONS(2686), - [anon_sym_LT_EQ] = ACTIONS(2686), - [anon_sym_GT_EQ] = ACTIONS(2686), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_RBRACK] = ACTIONS(2686), - [anon_sym_struct] = ACTIONS(2688), - [anon_sym_mut] = ACTIONS(2688), - [anon_sym_COLON] = ACTIONS(2686), - [anon_sym_PLUS_PLUS] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2686), - [anon_sym_QMARK] = ACTIONS(2688), - [anon_sym_BANG] = ACTIONS(2688), - [anon_sym_go] = ACTIONS(2688), - [anon_sym_spawn] = ACTIONS(2688), - [anon_sym_json_DOTdecode] = ACTIONS(2686), - [anon_sym_LBRACK2] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_CARET] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_LT_DASH] = ACTIONS(2686), - [anon_sym_LT_LT] = ACTIONS(2686), - [anon_sym_GT_GT] = ACTIONS(2688), - [anon_sym_GT_GT_GT] = ACTIONS(2686), - [anon_sym_AMP_CARET] = ACTIONS(2686), - [anon_sym_AMP_AMP] = ACTIONS(2686), - [anon_sym_PIPE_PIPE] = ACTIONS(2686), - [anon_sym_or] = ACTIONS(2688), - [sym_none] = ACTIONS(2688), - [sym_true] = ACTIONS(2688), - [sym_false] = ACTIONS(2688), - [sym_nil] = ACTIONS(2688), - [anon_sym_QMARK_DOT] = ACTIONS(2686), - [anon_sym_POUND_LBRACK] = ACTIONS(2686), - [anon_sym_if] = ACTIONS(2688), - [anon_sym_DOLLARif] = ACTIONS(2688), - [anon_sym_is] = ACTIONS(2688), - [anon_sym_BANGis] = ACTIONS(2686), - [anon_sym_in] = ACTIONS(2688), - [anon_sym_BANGin] = ACTIONS(2686), - [anon_sym_match] = ACTIONS(2688), - [anon_sym_select] = ACTIONS(2688), - [anon_sym_lock] = ACTIONS(2688), - [anon_sym_rlock] = ACTIONS(2688), - [anon_sym_unsafe] = ACTIONS(2688), - [anon_sym_sql] = ACTIONS(2688), - [sym_int_literal] = ACTIONS(2688), - [sym_float_literal] = ACTIONS(2686), - [sym_rune_literal] = ACTIONS(2686), - [sym_pseudo_compile_time_identifier] = ACTIONS(2688), - [anon_sym_shared] = ACTIONS(2688), - [anon_sym_map_LBRACK] = ACTIONS(2686), - [anon_sym_chan] = ACTIONS(2688), - [anon_sym_thread] = ACTIONS(2688), - [anon_sym_atomic] = ACTIONS(2688), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2686), - [sym___c_double_quote] = ACTIONS(2686), - [sym___c_single_quote] = ACTIONS(2686), - [sym___r_double_quote] = ACTIONS(2686), - [sym___r_single_quote] = ACTIONS(2686), + [anon_sym_DOT] = ACTIONS(2225), + [anon_sym_as] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_COMMA] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_PIPE] = ACTIONS(2225), + [anon_sym_fn] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_PERCENT] = ACTIONS(2223), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_GT] = ACTIONS(2225), + [anon_sym_EQ_EQ] = ACTIONS(2223), + [anon_sym_BANG_EQ] = ACTIONS(2223), + [anon_sym_LT_EQ] = ACTIONS(2223), + [anon_sym_GT_EQ] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_RBRACK] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_mut] = ACTIONS(2225), + [anon_sym_COLON] = ACTIONS(2223), + [anon_sym_PLUS_PLUS] = ACTIONS(2223), + [anon_sym_DASH_DASH] = ACTIONS(2223), + [anon_sym_QMARK] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_go] = ACTIONS(2225), + [anon_sym_spawn] = ACTIONS(2225), + [anon_sym_json_DOTdecode] = ACTIONS(2223), + [anon_sym_LBRACK2] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2223), + [anon_sym_CARET] = ACTIONS(2223), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_LT_DASH] = ACTIONS(2223), + [anon_sym_LT_LT] = ACTIONS(2223), + [anon_sym_GT_GT] = ACTIONS(2225), + [anon_sym_GT_GT_GT] = ACTIONS(2223), + [anon_sym_AMP_CARET] = ACTIONS(2223), + [anon_sym_AMP_AMP] = ACTIONS(2223), + [anon_sym_PIPE_PIPE] = ACTIONS(2223), + [anon_sym_or] = ACTIONS(2225), + [sym_none] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_nil] = ACTIONS(2225), + [anon_sym_QMARK_DOT] = ACTIONS(2223), + [anon_sym_POUND_LBRACK] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_DOLLARif] = ACTIONS(2225), + [anon_sym_is] = ACTIONS(2225), + [anon_sym_BANGis] = ACTIONS(2223), + [anon_sym_in] = ACTIONS(2225), + [anon_sym_BANGin] = ACTIONS(2223), + [anon_sym_match] = ACTIONS(2225), + [anon_sym_select] = ACTIONS(2225), + [anon_sym_lock] = ACTIONS(2225), + [anon_sym_rlock] = ACTIONS(2225), + [anon_sym_unsafe] = ACTIONS(2225), + [anon_sym_sql] = ACTIONS(2225), + [sym_int_literal] = ACTIONS(2225), + [sym_float_literal] = ACTIONS(2223), + [sym_rune_literal] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2223), + [anon_sym_DQUOTE] = ACTIONS(2223), + [anon_sym_c_SQUOTE] = ACTIONS(2223), + [anon_sym_c_DQUOTE] = ACTIONS(2223), + [anon_sym_r_SQUOTE] = ACTIONS(2223), + [anon_sym_r_DQUOTE] = ACTIONS(2223), + [sym_pseudo_compile_time_identifier] = ACTIONS(2225), + [anon_sym_shared] = ACTIONS(2225), + [anon_sym_map_LBRACK] = ACTIONS(2223), + [anon_sym_chan] = ACTIONS(2225), + [anon_sym_thread] = ACTIONS(2225), + [anon_sym_atomic] = ACTIONS(2225), }, [1313] = { [sym_line_comment] = STATE(1313), [sym_block_comment] = STATE(1313), - [sym_identifier] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2883), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2692), - [anon_sym_as] = ACTIONS(2692), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_COMMA] = ACTIONS(2690), - [anon_sym_RBRACE] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(2690), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_fn] = ACTIONS(2692), - [anon_sym_PLUS] = ACTIONS(2692), - [anon_sym_DASH] = ACTIONS(2692), - [anon_sym_STAR] = ACTIONS(2690), - [anon_sym_SLASH] = ACTIONS(2692), - [anon_sym_PERCENT] = ACTIONS(2690), - [anon_sym_LT] = ACTIONS(2692), - [anon_sym_GT] = ACTIONS(2692), - [anon_sym_EQ_EQ] = ACTIONS(2690), - [anon_sym_BANG_EQ] = ACTIONS(2690), - [anon_sym_LT_EQ] = ACTIONS(2690), - [anon_sym_GT_EQ] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_RBRACK] = ACTIONS(2690), - [anon_sym_struct] = ACTIONS(2692), - [anon_sym_mut] = ACTIONS(2692), - [anon_sym_COLON] = ACTIONS(2690), - [anon_sym_PLUS_PLUS] = ACTIONS(2690), - [anon_sym_DASH_DASH] = ACTIONS(2690), - [anon_sym_QMARK] = ACTIONS(2692), - [anon_sym_BANG] = ACTIONS(2692), - [anon_sym_go] = ACTIONS(2692), - [anon_sym_spawn] = ACTIONS(2692), - [anon_sym_json_DOTdecode] = ACTIONS(2690), - [anon_sym_LBRACK2] = ACTIONS(2692), - [anon_sym_TILDE] = ACTIONS(2690), - [anon_sym_CARET] = ACTIONS(2690), - [anon_sym_AMP] = ACTIONS(2692), - [anon_sym_LT_DASH] = ACTIONS(2690), - [anon_sym_LT_LT] = ACTIONS(2690), - [anon_sym_GT_GT] = ACTIONS(2692), - [anon_sym_GT_GT_GT] = ACTIONS(2690), - [anon_sym_AMP_CARET] = ACTIONS(2690), - [anon_sym_AMP_AMP] = ACTIONS(2690), - [anon_sym_PIPE_PIPE] = ACTIONS(2690), - [anon_sym_or] = ACTIONS(2692), - [sym_none] = ACTIONS(2692), - [sym_true] = ACTIONS(2692), - [sym_false] = ACTIONS(2692), - [sym_nil] = ACTIONS(2692), - [anon_sym_QMARK_DOT] = ACTIONS(2690), - [anon_sym_POUND_LBRACK] = ACTIONS(2690), - [anon_sym_if] = ACTIONS(2692), - [anon_sym_DOLLARif] = ACTIONS(2692), - [anon_sym_is] = ACTIONS(2692), - [anon_sym_BANGis] = ACTIONS(2690), - [anon_sym_in] = ACTIONS(2692), - [anon_sym_BANGin] = ACTIONS(2690), - [anon_sym_match] = ACTIONS(2692), - [anon_sym_select] = ACTIONS(2692), - [anon_sym_lock] = ACTIONS(2692), - [anon_sym_rlock] = ACTIONS(2692), - [anon_sym_unsafe] = ACTIONS(2692), - [anon_sym_sql] = ACTIONS(2692), - [sym_int_literal] = ACTIONS(2692), - [sym_float_literal] = ACTIONS(2690), - [sym_rune_literal] = ACTIONS(2690), - [sym_pseudo_compile_time_identifier] = ACTIONS(2692), - [anon_sym_shared] = ACTIONS(2692), - [anon_sym_map_LBRACK] = ACTIONS(2690), - [anon_sym_chan] = ACTIONS(2692), - [anon_sym_thread] = ACTIONS(2692), - [anon_sym_atomic] = ACTIONS(2692), - [sym___double_quote] = ACTIONS(2690), - [sym___single_quote] = ACTIONS(2690), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2690), - [sym___r_double_quote] = ACTIONS(2690), - [sym___r_single_quote] = ACTIONS(2690), + [anon_sym_DOT] = ACTIONS(2883), + [anon_sym_as] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2881), + [anon_sym_RBRACE] = ACTIONS(2881), + [anon_sym_LPAREN] = ACTIONS(2881), + [anon_sym_PIPE] = ACTIONS(2883), + [anon_sym_fn] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_PERCENT] = ACTIONS(2881), + [anon_sym_LT] = ACTIONS(2883), + [anon_sym_GT] = ACTIONS(2883), + [anon_sym_EQ_EQ] = ACTIONS(2881), + [anon_sym_BANG_EQ] = ACTIONS(2881), + [anon_sym_LT_EQ] = ACTIONS(2881), + [anon_sym_GT_EQ] = ACTIONS(2881), + [anon_sym_LBRACK] = ACTIONS(2881), + [anon_sym_RBRACK] = ACTIONS(2881), + [anon_sym_struct] = ACTIONS(2883), + [anon_sym_mut] = ACTIONS(2883), + [anon_sym_COLON] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_QMARK] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2883), + [anon_sym_go] = ACTIONS(2883), + [anon_sym_spawn] = ACTIONS(2883), + [anon_sym_json_DOTdecode] = ACTIONS(2881), + [anon_sym_LBRACK2] = ACTIONS(2883), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_LT_DASH] = ACTIONS(2881), + [anon_sym_LT_LT] = ACTIONS(2881), + [anon_sym_GT_GT] = ACTIONS(2883), + [anon_sym_GT_GT_GT] = ACTIONS(2881), + [anon_sym_AMP_CARET] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_PIPE_PIPE] = ACTIONS(2881), + [anon_sym_or] = ACTIONS(2883), + [sym_none] = ACTIONS(2883), + [sym_true] = ACTIONS(2883), + [sym_false] = ACTIONS(2883), + [sym_nil] = ACTIONS(2883), + [anon_sym_QMARK_DOT] = ACTIONS(2881), + [anon_sym_POUND_LBRACK] = ACTIONS(2881), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_DOLLARif] = ACTIONS(2883), + [anon_sym_is] = ACTIONS(2883), + [anon_sym_BANGis] = ACTIONS(2881), + [anon_sym_in] = ACTIONS(2883), + [anon_sym_BANGin] = ACTIONS(2881), + [anon_sym_match] = ACTIONS(2883), + [anon_sym_select] = ACTIONS(2883), + [anon_sym_lock] = ACTIONS(2883), + [anon_sym_rlock] = ACTIONS(2883), + [anon_sym_unsafe] = ACTIONS(2883), + [anon_sym_sql] = ACTIONS(2883), + [sym_int_literal] = ACTIONS(2883), + [sym_float_literal] = ACTIONS(2881), + [sym_rune_literal] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2881), + [anon_sym_DQUOTE] = ACTIONS(2881), + [anon_sym_c_SQUOTE] = ACTIONS(2881), + [anon_sym_c_DQUOTE] = ACTIONS(2881), + [anon_sym_r_SQUOTE] = ACTIONS(2881), + [anon_sym_r_DQUOTE] = ACTIONS(2881), + [sym_pseudo_compile_time_identifier] = ACTIONS(2883), + [anon_sym_shared] = ACTIONS(2883), + [anon_sym_map_LBRACK] = ACTIONS(2881), + [anon_sym_chan] = ACTIONS(2883), + [anon_sym_thread] = ACTIONS(2883), + [anon_sym_atomic] = ACTIONS(2883), }, [1314] = { [sym_line_comment] = STATE(1314), [sym_block_comment] = STATE(1314), - [sym_identifier] = ACTIONS(2806), + [sym_identifier] = ACTIONS(2887), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_as] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_RBRACE] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_fn] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2804), - [anon_sym_SLASH] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2804), - [anon_sym_LT] = ACTIONS(2806), - [anon_sym_GT] = ACTIONS(2806), - [anon_sym_EQ_EQ] = ACTIONS(2804), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_LT_EQ] = ACTIONS(2804), - [anon_sym_GT_EQ] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2804), - [anon_sym_RBRACK] = ACTIONS(2804), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_COLON] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2804), - [anon_sym_DASH_DASH] = ACTIONS(2804), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2806), - [anon_sym_go] = ACTIONS(2806), - [anon_sym_spawn] = ACTIONS(2806), - [anon_sym_json_DOTdecode] = ACTIONS(2804), - [anon_sym_LBRACK2] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2804), - [anon_sym_CARET] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2804), - [anon_sym_LT_LT] = ACTIONS(2804), - [anon_sym_GT_GT] = ACTIONS(2806), - [anon_sym_GT_GT_GT] = ACTIONS(2804), - [anon_sym_AMP_CARET] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_PIPE_PIPE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2806), - [sym_none] = ACTIONS(2806), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_nil] = ACTIONS(2806), - [anon_sym_QMARK_DOT] = ACTIONS(2804), - [anon_sym_POUND_LBRACK] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_DOLLARif] = ACTIONS(2806), - [anon_sym_is] = ACTIONS(2806), - [anon_sym_BANGis] = ACTIONS(2804), - [anon_sym_in] = ACTIONS(2806), - [anon_sym_BANGin] = ACTIONS(2804), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_select] = ACTIONS(2806), - [anon_sym_lock] = ACTIONS(2806), - [anon_sym_rlock] = ACTIONS(2806), - [anon_sym_unsafe] = ACTIONS(2806), - [anon_sym_sql] = ACTIONS(2806), - [sym_int_literal] = ACTIONS(2806), - [sym_float_literal] = ACTIONS(2804), - [sym_rune_literal] = ACTIONS(2804), - [sym_pseudo_compile_time_identifier] = ACTIONS(2806), - [anon_sym_shared] = ACTIONS(2806), - [anon_sym_map_LBRACK] = ACTIONS(2804), - [anon_sym_chan] = ACTIONS(2806), - [anon_sym_thread] = ACTIONS(2806), - [anon_sym_atomic] = ACTIONS(2806), - [sym___double_quote] = ACTIONS(2804), - [sym___single_quote] = ACTIONS(2804), - [sym___c_double_quote] = ACTIONS(2804), - [sym___c_single_quote] = ACTIONS(2804), - [sym___r_double_quote] = ACTIONS(2804), - [sym___r_single_quote] = ACTIONS(2804), + [anon_sym_DOT] = ACTIONS(2887), + [anon_sym_as] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_RBRACE] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_fn] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2885), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2885), + [anon_sym_BANG_EQ] = ACTIONS(2885), + [anon_sym_LT_EQ] = ACTIONS(2885), + [anon_sym_GT_EQ] = ACTIONS(2885), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_RBRACK] = ACTIONS(2885), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_mut] = ACTIONS(2887), + [anon_sym_COLON] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_QMARK] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2887), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2887), + [anon_sym_json_DOTdecode] = ACTIONS(2885), + [anon_sym_LBRACK2] = ACTIONS(2887), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_CARET] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2885), + [anon_sym_LT_LT] = ACTIONS(2885), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_GT_GT_GT] = ACTIONS(2885), + [anon_sym_AMP_CARET] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_PIPE_PIPE] = ACTIONS(2885), + [anon_sym_or] = ACTIONS(2887), + [sym_none] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_nil] = ACTIONS(2887), + [anon_sym_QMARK_DOT] = ACTIONS(2885), + [anon_sym_POUND_LBRACK] = ACTIONS(2885), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_DOLLARif] = ACTIONS(2887), + [anon_sym_is] = ACTIONS(2887), + [anon_sym_BANGis] = ACTIONS(2885), + [anon_sym_in] = ACTIONS(2887), + [anon_sym_BANGin] = ACTIONS(2885), + [anon_sym_match] = ACTIONS(2887), + [anon_sym_select] = ACTIONS(2887), + [anon_sym_lock] = ACTIONS(2887), + [anon_sym_rlock] = ACTIONS(2887), + [anon_sym_unsafe] = ACTIONS(2887), + [anon_sym_sql] = ACTIONS(2887), + [sym_int_literal] = ACTIONS(2887), + [sym_float_literal] = ACTIONS(2885), + [sym_rune_literal] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [anon_sym_c_SQUOTE] = ACTIONS(2885), + [anon_sym_c_DQUOTE] = ACTIONS(2885), + [anon_sym_r_SQUOTE] = ACTIONS(2885), + [anon_sym_r_DQUOTE] = ACTIONS(2885), + [sym_pseudo_compile_time_identifier] = ACTIONS(2887), + [anon_sym_shared] = ACTIONS(2887), + [anon_sym_map_LBRACK] = ACTIONS(2885), + [anon_sym_chan] = ACTIONS(2887), + [anon_sym_thread] = ACTIONS(2887), + [anon_sym_atomic] = ACTIONS(2887), }, [1315] = { [sym_line_comment] = STATE(1315), [sym_block_comment] = STATE(1315), - [sym_identifier] = ACTIONS(2704), + [sym_identifier] = ACTIONS(2891), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_COMMA] = ACTIONS(2702), - [anon_sym_RBRACE] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2702), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2702), - [anon_sym_BANG_EQ] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2702), - [anon_sym_GT_EQ] = ACTIONS(2702), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_RBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_COLON] = ACTIONS(2702), - [anon_sym_PLUS_PLUS] = ACTIONS(2702), - [anon_sym_DASH_DASH] = ACTIONS(2702), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2702), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2702), - [anon_sym_CARET] = ACTIONS(2702), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2702), - [anon_sym_LT_LT] = ACTIONS(2702), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2702), - [anon_sym_AMP_CARET] = ACTIONS(2702), - [anon_sym_AMP_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2702), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2702), - [anon_sym_POUND_LBRACK] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2702), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2702), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2702), - [sym_rune_literal] = ACTIONS(2702), - [sym_pseudo_compile_time_identifier] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2702), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2702), - [sym___single_quote] = ACTIONS(2702), - [sym___c_double_quote] = ACTIONS(2702), - [sym___c_single_quote] = ACTIONS(2702), - [sym___r_double_quote] = ACTIONS(2702), - [sym___r_single_quote] = ACTIONS(2702), + [anon_sym_DOT] = ACTIONS(2891), + [anon_sym_as] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_COMMA] = ACTIONS(2889), + [anon_sym_RBRACE] = ACTIONS(2889), + [anon_sym_LPAREN] = ACTIONS(2889), + [anon_sym_PIPE] = ACTIONS(2891), + [anon_sym_fn] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_SLASH] = ACTIONS(2891), + [anon_sym_PERCENT] = ACTIONS(2889), + [anon_sym_LT] = ACTIONS(2891), + [anon_sym_GT] = ACTIONS(2891), + [anon_sym_EQ_EQ] = ACTIONS(2889), + [anon_sym_BANG_EQ] = ACTIONS(2889), + [anon_sym_LT_EQ] = ACTIONS(2889), + [anon_sym_GT_EQ] = ACTIONS(2889), + [anon_sym_LBRACK] = ACTIONS(2889), + [anon_sym_RBRACK] = ACTIONS(2889), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_mut] = ACTIONS(2891), + [anon_sym_COLON] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_QMARK] = ACTIONS(2891), + [anon_sym_BANG] = ACTIONS(2891), + [anon_sym_go] = ACTIONS(2891), + [anon_sym_spawn] = ACTIONS(2891), + [anon_sym_json_DOTdecode] = ACTIONS(2889), + [anon_sym_LBRACK2] = ACTIONS(2891), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_CARET] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_LT_LT] = ACTIONS(2889), + [anon_sym_GT_GT] = ACTIONS(2891), + [anon_sym_GT_GT_GT] = ACTIONS(2889), + [anon_sym_AMP_CARET] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_PIPE_PIPE] = ACTIONS(2889), + [anon_sym_or] = ACTIONS(2891), + [sym_none] = ACTIONS(2891), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [sym_nil] = ACTIONS(2891), + [anon_sym_QMARK_DOT] = ACTIONS(2889), + [anon_sym_POUND_LBRACK] = ACTIONS(2889), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_DOLLARif] = ACTIONS(2891), + [anon_sym_is] = ACTIONS(2891), + [anon_sym_BANGis] = ACTIONS(2889), + [anon_sym_in] = ACTIONS(2891), + [anon_sym_BANGin] = ACTIONS(2889), + [anon_sym_match] = ACTIONS(2891), + [anon_sym_select] = ACTIONS(2891), + [anon_sym_lock] = ACTIONS(2891), + [anon_sym_rlock] = ACTIONS(2891), + [anon_sym_unsafe] = ACTIONS(2891), + [anon_sym_sql] = ACTIONS(2891), + [sym_int_literal] = ACTIONS(2891), + [sym_float_literal] = ACTIONS(2889), + [sym_rune_literal] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [anon_sym_c_SQUOTE] = ACTIONS(2889), + [anon_sym_c_DQUOTE] = ACTIONS(2889), + [anon_sym_r_SQUOTE] = ACTIONS(2889), + [anon_sym_r_DQUOTE] = ACTIONS(2889), + [sym_pseudo_compile_time_identifier] = ACTIONS(2891), + [anon_sym_shared] = ACTIONS(2891), + [anon_sym_map_LBRACK] = ACTIONS(2889), + [anon_sym_chan] = ACTIONS(2891), + [anon_sym_thread] = ACTIONS(2891), + [anon_sym_atomic] = ACTIONS(2891), }, [1316] = { [sym_line_comment] = STATE(1316), [sym_block_comment] = STATE(1316), - [sym_identifier] = ACTIONS(2768), + [sym_identifier] = ACTIONS(2221), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_as] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2766), - [anon_sym_COMMA] = ACTIONS(2766), - [anon_sym_RBRACE] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_fn] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2768), - [anon_sym_PERCENT] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_GT] = ACTIONS(2768), - [anon_sym_EQ_EQ] = ACTIONS(2766), - [anon_sym_BANG_EQ] = ACTIONS(2766), - [anon_sym_LT_EQ] = ACTIONS(2766), - [anon_sym_GT_EQ] = ACTIONS(2766), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_RBRACK] = ACTIONS(2766), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_mut] = ACTIONS(2768), - [anon_sym_COLON] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_DASH_DASH] = ACTIONS(2766), - [anon_sym_QMARK] = ACTIONS(2768), - [anon_sym_BANG] = ACTIONS(2768), - [anon_sym_go] = ACTIONS(2768), - [anon_sym_spawn] = ACTIONS(2768), - [anon_sym_json_DOTdecode] = ACTIONS(2766), - [anon_sym_LBRACK2] = ACTIONS(2768), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_LT_DASH] = ACTIONS(2766), - [anon_sym_LT_LT] = ACTIONS(2766), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym_GT_GT_GT] = ACTIONS(2766), - [anon_sym_AMP_CARET] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2766), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_or] = ACTIONS(2768), - [sym_none] = ACTIONS(2768), - [sym_true] = ACTIONS(2768), - [sym_false] = ACTIONS(2768), - [sym_nil] = ACTIONS(2768), - [anon_sym_QMARK_DOT] = ACTIONS(2766), - [anon_sym_POUND_LBRACK] = ACTIONS(2766), - [anon_sym_if] = ACTIONS(2768), - [anon_sym_DOLLARif] = ACTIONS(2768), - [anon_sym_is] = ACTIONS(2768), - [anon_sym_BANGis] = ACTIONS(2766), - [anon_sym_in] = ACTIONS(2768), - [anon_sym_BANGin] = ACTIONS(2766), - [anon_sym_match] = ACTIONS(2768), - [anon_sym_select] = ACTIONS(2768), - [anon_sym_lock] = ACTIONS(2768), - [anon_sym_rlock] = ACTIONS(2768), - [anon_sym_unsafe] = ACTIONS(2768), - [anon_sym_sql] = ACTIONS(2768), - [sym_int_literal] = ACTIONS(2768), - [sym_float_literal] = ACTIONS(2766), - [sym_rune_literal] = ACTIONS(2766), - [sym_pseudo_compile_time_identifier] = ACTIONS(2768), - [anon_sym_shared] = ACTIONS(2768), - [anon_sym_map_LBRACK] = ACTIONS(2766), - [anon_sym_chan] = ACTIONS(2768), - [anon_sym_thread] = ACTIONS(2768), - [anon_sym_atomic] = ACTIONS(2768), - [sym___double_quote] = ACTIONS(2766), - [sym___single_quote] = ACTIONS(2766), - [sym___c_double_quote] = ACTIONS(2766), - [sym___c_single_quote] = ACTIONS(2766), - [sym___r_double_quote] = ACTIONS(2766), - [sym___r_single_quote] = ACTIONS(2766), + [anon_sym_DOT] = ACTIONS(2221), + [anon_sym_as] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_PIPE] = ACTIONS(2221), + [anon_sym_fn] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_PERCENT] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_GT] = ACTIONS(2221), + [anon_sym_EQ_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ] = ACTIONS(2219), + [anon_sym_LT_EQ] = ACTIONS(2219), + [anon_sym_GT_EQ] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_RBRACK] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2221), + [anon_sym_mut] = ACTIONS(2221), + [anon_sym_COLON] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(2219), + [anon_sym_DASH_DASH] = ACTIONS(2219), + [anon_sym_QMARK] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_go] = ACTIONS(2221), + [anon_sym_spawn] = ACTIONS(2221), + [anon_sym_json_DOTdecode] = ACTIONS(2219), + [anon_sym_LBRACK2] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_CARET] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_LT_DASH] = ACTIONS(2219), + [anon_sym_LT_LT] = ACTIONS(2219), + [anon_sym_GT_GT] = ACTIONS(2221), + [anon_sym_GT_GT_GT] = ACTIONS(2219), + [anon_sym_AMP_CARET] = ACTIONS(2219), + [anon_sym_AMP_AMP] = ACTIONS(2219), + [anon_sym_PIPE_PIPE] = ACTIONS(2219), + [anon_sym_or] = ACTIONS(2221), + [sym_none] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_nil] = ACTIONS(2221), + [anon_sym_QMARK_DOT] = ACTIONS(2219), + [anon_sym_POUND_LBRACK] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_DOLLARif] = ACTIONS(2221), + [anon_sym_is] = ACTIONS(2221), + [anon_sym_BANGis] = ACTIONS(2219), + [anon_sym_in] = ACTIONS(2221), + [anon_sym_BANGin] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_select] = ACTIONS(2221), + [anon_sym_lock] = ACTIONS(2221), + [anon_sym_rlock] = ACTIONS(2221), + [anon_sym_unsafe] = ACTIONS(2221), + [anon_sym_sql] = ACTIONS(2221), + [sym_int_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2219), + [sym_rune_literal] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_DQUOTE] = ACTIONS(2219), + [anon_sym_c_SQUOTE] = ACTIONS(2219), + [anon_sym_c_DQUOTE] = ACTIONS(2219), + [anon_sym_r_SQUOTE] = ACTIONS(2219), + [anon_sym_r_DQUOTE] = ACTIONS(2219), + [sym_pseudo_compile_time_identifier] = ACTIONS(2221), + [anon_sym_shared] = ACTIONS(2221), + [anon_sym_map_LBRACK] = ACTIONS(2219), + [anon_sym_chan] = ACTIONS(2221), + [anon_sym_thread] = ACTIONS(2221), + [anon_sym_atomic] = ACTIONS(2221), }, [1317] = { [sym_line_comment] = STATE(1317), [sym_block_comment] = STATE(1317), - [sym_identifier] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3025), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_as] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_PIPE] = ACTIONS(3058), - [anon_sym_fn] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3058), - [anon_sym_EQ_EQ] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3056), - [anon_sym_LT_EQ] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_RBRACK] = ACTIONS(3056), - [anon_sym_struct] = ACTIONS(3058), - [anon_sym_mut] = ACTIONS(3058), - [anon_sym_COLON] = ACTIONS(3056), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_BANG] = ACTIONS(3058), - [anon_sym_go] = ACTIONS(3058), - [anon_sym_spawn] = ACTIONS(3058), - [anon_sym_json_DOTdecode] = ACTIONS(3056), - [anon_sym_LBRACK2] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3056), - [anon_sym_CARET] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3056), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(3058), - [anon_sym_GT_GT_GT] = ACTIONS(3056), - [anon_sym_AMP_CARET] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_PIPE_PIPE] = ACTIONS(3056), - [anon_sym_or] = ACTIONS(3058), - [sym_none] = ACTIONS(3058), - [sym_true] = ACTIONS(3058), - [sym_false] = ACTIONS(3058), - [sym_nil] = ACTIONS(3058), - [anon_sym_QMARK_DOT] = ACTIONS(3056), - [anon_sym_POUND_LBRACK] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_DOLLARif] = ACTIONS(3058), - [anon_sym_is] = ACTIONS(3058), - [anon_sym_BANGis] = ACTIONS(3056), - [anon_sym_in] = ACTIONS(3058), - [anon_sym_BANGin] = ACTIONS(3056), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_select] = ACTIONS(3058), - [anon_sym_lock] = ACTIONS(3058), - [anon_sym_rlock] = ACTIONS(3058), - [anon_sym_unsafe] = ACTIONS(3058), - [anon_sym_sql] = ACTIONS(3058), - [sym_int_literal] = ACTIONS(3058), - [sym_float_literal] = ACTIONS(3056), - [sym_rune_literal] = ACTIONS(3056), - [sym_pseudo_compile_time_identifier] = ACTIONS(3058), - [anon_sym_shared] = ACTIONS(3058), - [anon_sym_map_LBRACK] = ACTIONS(3056), - [anon_sym_chan] = ACTIONS(3058), - [anon_sym_thread] = ACTIONS(3058), - [anon_sym_atomic] = ACTIONS(3058), - [sym___double_quote] = ACTIONS(3056), - [sym___single_quote] = ACTIONS(3056), - [sym___c_double_quote] = ACTIONS(3056), - [sym___c_single_quote] = ACTIONS(3056), - [sym___r_double_quote] = ACTIONS(3056), - [sym___r_single_quote] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3025), + [anon_sym_as] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_COMMA] = ACTIONS(3023), + [anon_sym_RBRACE] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_PIPE] = ACTIONS(3025), + [anon_sym_fn] = ACTIONS(3025), + [anon_sym_PLUS] = ACTIONS(3025), + [anon_sym_DASH] = ACTIONS(3025), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_SLASH] = ACTIONS(3025), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT_EQ] = ACTIONS(3023), + [anon_sym_GT_EQ] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_RBRACK] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3025), + [anon_sym_mut] = ACTIONS(3025), + [anon_sym_COLON] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(3023), + [anon_sym_DASH_DASH] = ACTIONS(3023), + [anon_sym_QMARK] = ACTIONS(3025), + [anon_sym_BANG] = ACTIONS(3025), + [anon_sym_go] = ACTIONS(3025), + [anon_sym_spawn] = ACTIONS(3025), + [anon_sym_json_DOTdecode] = ACTIONS(3023), + [anon_sym_LBRACK2] = ACTIONS(3025), + [anon_sym_TILDE] = ACTIONS(3023), + [anon_sym_CARET] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_LT_DASH] = ACTIONS(3023), + [anon_sym_LT_LT] = ACTIONS(3023), + [anon_sym_GT_GT] = ACTIONS(3025), + [anon_sym_GT_GT_GT] = ACTIONS(3023), + [anon_sym_AMP_CARET] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_or] = ACTIONS(3025), + [sym_none] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [sym_nil] = ACTIONS(3025), + [anon_sym_QMARK_DOT] = ACTIONS(3023), + [anon_sym_POUND_LBRACK] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3025), + [anon_sym_DOLLARif] = ACTIONS(3025), + [anon_sym_is] = ACTIONS(3025), + [anon_sym_BANGis] = ACTIONS(3023), + [anon_sym_in] = ACTIONS(3025), + [anon_sym_BANGin] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3025), + [anon_sym_select] = ACTIONS(3025), + [anon_sym_lock] = ACTIONS(3025), + [anon_sym_rlock] = ACTIONS(3025), + [anon_sym_unsafe] = ACTIONS(3025), + [anon_sym_sql] = ACTIONS(3025), + [sym_int_literal] = ACTIONS(3025), + [sym_float_literal] = ACTIONS(3023), + [sym_rune_literal] = ACTIONS(3023), + [anon_sym_SQUOTE] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(3023), + [anon_sym_c_SQUOTE] = ACTIONS(3023), + [anon_sym_c_DQUOTE] = ACTIONS(3023), + [anon_sym_r_SQUOTE] = ACTIONS(3023), + [anon_sym_r_DQUOTE] = ACTIONS(3023), + [sym_pseudo_compile_time_identifier] = ACTIONS(3025), + [anon_sym_shared] = ACTIONS(3025), + [anon_sym_map_LBRACK] = ACTIONS(3023), + [anon_sym_chan] = ACTIONS(3025), + [anon_sym_thread] = ACTIONS(3025), + [anon_sym_atomic] = ACTIONS(3025), }, [1318] = { [sym_line_comment] = STATE(1318), [sym_block_comment] = STATE(1318), - [sym_identifier] = ACTIONS(2532), + [sym_identifier] = ACTIONS(3029), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2532), - [anon_sym_as] = ACTIONS(2532), - [anon_sym_LBRACE] = ACTIONS(2530), - [anon_sym_COMMA] = ACTIONS(2530), - [anon_sym_RBRACE] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_PIPE] = ACTIONS(2532), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2532), - [anon_sym_DASH] = ACTIONS(2532), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2532), - [anon_sym_PERCENT] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2532), - [anon_sym_GT] = ACTIONS(2532), - [anon_sym_EQ_EQ] = ACTIONS(2530), - [anon_sym_BANG_EQ] = ACTIONS(2530), - [anon_sym_LT_EQ] = ACTIONS(2530), - [anon_sym_GT_EQ] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2530), - [anon_sym_RBRACK] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(2532), - [anon_sym_mut] = ACTIONS(2532), - [anon_sym_COLON] = ACTIONS(2530), - [anon_sym_PLUS_PLUS] = ACTIONS(2530), - [anon_sym_DASH_DASH] = ACTIONS(2530), - [anon_sym_QMARK] = ACTIONS(2532), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2532), - [anon_sym_spawn] = ACTIONS(2532), - [anon_sym_json_DOTdecode] = ACTIONS(2530), - [anon_sym_LBRACK2] = ACTIONS(2532), - [anon_sym_TILDE] = ACTIONS(2530), - [anon_sym_CARET] = ACTIONS(2530), - [anon_sym_AMP] = ACTIONS(2532), - [anon_sym_LT_DASH] = ACTIONS(2530), - [anon_sym_LT_LT] = ACTIONS(2530), - [anon_sym_GT_GT] = ACTIONS(2532), - [anon_sym_GT_GT_GT] = ACTIONS(2530), - [anon_sym_AMP_CARET] = ACTIONS(2530), - [anon_sym_AMP_AMP] = ACTIONS(2530), - [anon_sym_PIPE_PIPE] = ACTIONS(2530), - [anon_sym_or] = ACTIONS(2532), - [sym_none] = ACTIONS(2532), - [sym_true] = ACTIONS(2532), - [sym_false] = ACTIONS(2532), - [sym_nil] = ACTIONS(2532), - [anon_sym_QMARK_DOT] = ACTIONS(2530), - [anon_sym_POUND_LBRACK] = ACTIONS(2530), - [anon_sym_if] = ACTIONS(2532), - [anon_sym_DOLLARif] = ACTIONS(2532), - [anon_sym_is] = ACTIONS(2532), - [anon_sym_BANGis] = ACTIONS(2530), - [anon_sym_in] = ACTIONS(2532), - [anon_sym_BANGin] = ACTIONS(2530), - [anon_sym_match] = ACTIONS(2532), - [anon_sym_select] = ACTIONS(2532), - [anon_sym_lock] = ACTIONS(2532), - [anon_sym_rlock] = ACTIONS(2532), - [anon_sym_unsafe] = ACTIONS(2532), - [anon_sym_sql] = ACTIONS(2532), - [sym_int_literal] = ACTIONS(2532), - [sym_float_literal] = ACTIONS(2530), - [sym_rune_literal] = ACTIONS(2530), - [sym_pseudo_compile_time_identifier] = ACTIONS(2532), - [anon_sym_shared] = ACTIONS(2532), - [anon_sym_map_LBRACK] = ACTIONS(2530), - [anon_sym_chan] = ACTIONS(2532), - [anon_sym_thread] = ACTIONS(2532), - [anon_sym_atomic] = ACTIONS(2532), - [sym___double_quote] = ACTIONS(2530), - [sym___single_quote] = ACTIONS(2530), - [sym___c_double_quote] = ACTIONS(2530), - [sym___c_single_quote] = ACTIONS(2530), - [sym___r_double_quote] = ACTIONS(2530), - [sym___r_single_quote] = ACTIONS(2530), + [anon_sym_DOT] = ACTIONS(3029), + [anon_sym_as] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3027), + [anon_sym_RBRACE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_PIPE] = ACTIONS(3029), + [anon_sym_fn] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3027), + [anon_sym_SLASH] = ACTIONS(3029), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_GT] = ACTIONS(3029), + [anon_sym_EQ_EQ] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3027), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_RBRACK] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3029), + [anon_sym_mut] = ACTIONS(3029), + [anon_sym_COLON] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_go] = ACTIONS(3029), + [anon_sym_spawn] = ACTIONS(3029), + [anon_sym_json_DOTdecode] = ACTIONS(3027), + [anon_sym_LBRACK2] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3027), + [anon_sym_CARET] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_LT_DASH] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3027), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_GT_GT_GT] = ACTIONS(3027), + [anon_sym_AMP_CARET] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_or] = ACTIONS(3029), + [sym_none] = ACTIONS(3029), + [sym_true] = ACTIONS(3029), + [sym_false] = ACTIONS(3029), + [sym_nil] = ACTIONS(3029), + [anon_sym_QMARK_DOT] = ACTIONS(3027), + [anon_sym_POUND_LBRACK] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3029), + [anon_sym_DOLLARif] = ACTIONS(3029), + [anon_sym_is] = ACTIONS(3029), + [anon_sym_BANGis] = ACTIONS(3027), + [anon_sym_in] = ACTIONS(3029), + [anon_sym_BANGin] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3029), + [anon_sym_select] = ACTIONS(3029), + [anon_sym_lock] = ACTIONS(3029), + [anon_sym_rlock] = ACTIONS(3029), + [anon_sym_unsafe] = ACTIONS(3029), + [anon_sym_sql] = ACTIONS(3029), + [sym_int_literal] = ACTIONS(3029), + [sym_float_literal] = ACTIONS(3027), + [sym_rune_literal] = ACTIONS(3027), + [anon_sym_SQUOTE] = ACTIONS(3027), + [anon_sym_DQUOTE] = ACTIONS(3027), + [anon_sym_c_SQUOTE] = ACTIONS(3027), + [anon_sym_c_DQUOTE] = ACTIONS(3027), + [anon_sym_r_SQUOTE] = ACTIONS(3027), + [anon_sym_r_DQUOTE] = ACTIONS(3027), + [sym_pseudo_compile_time_identifier] = ACTIONS(3029), + [anon_sym_shared] = ACTIONS(3029), + [anon_sym_map_LBRACK] = ACTIONS(3027), + [anon_sym_chan] = ACTIONS(3029), + [anon_sym_thread] = ACTIONS(3029), + [anon_sym_atomic] = ACTIONS(3029), }, [1319] = { [sym_line_comment] = STATE(1319), [sym_block_comment] = STATE(1319), - [sym_identifier] = ACTIONS(2513), + [sym_identifier] = ACTIONS(3046), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2513), - [anon_sym_as] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_COMMA] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_fn] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2511), - [anon_sym_SLASH] = ACTIONS(2513), - [anon_sym_PERCENT] = ACTIONS(2511), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_GT] = ACTIONS(2513), - [anon_sym_EQ_EQ] = ACTIONS(2511), - [anon_sym_BANG_EQ] = ACTIONS(2511), - [anon_sym_LT_EQ] = ACTIONS(2511), - [anon_sym_GT_EQ] = ACTIONS(2511), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_RBRACK] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_COLON] = ACTIONS(2511), - [anon_sym_PLUS_PLUS] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2511), - [anon_sym_QMARK] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_go] = ACTIONS(2513), - [anon_sym_spawn] = ACTIONS(2513), - [anon_sym_json_DOTdecode] = ACTIONS(2511), - [anon_sym_LBRACK2] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2511), - [anon_sym_CARET] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_LT_DASH] = ACTIONS(2511), - [anon_sym_LT_LT] = ACTIONS(2511), - [anon_sym_GT_GT] = ACTIONS(2513), - [anon_sym_GT_GT_GT] = ACTIONS(2511), - [anon_sym_AMP_CARET] = ACTIONS(2511), - [anon_sym_AMP_AMP] = ACTIONS(2511), - [anon_sym_PIPE_PIPE] = ACTIONS(2511), - [anon_sym_or] = ACTIONS(2513), - [sym_none] = ACTIONS(2513), - [sym_true] = ACTIONS(2513), - [sym_false] = ACTIONS(2513), - [sym_nil] = ACTIONS(2513), - [anon_sym_QMARK_DOT] = ACTIONS(2511), - [anon_sym_POUND_LBRACK] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_DOLLARif] = ACTIONS(2513), - [anon_sym_is] = ACTIONS(2513), - [anon_sym_BANGis] = ACTIONS(2511), - [anon_sym_in] = ACTIONS(2513), - [anon_sym_BANGin] = ACTIONS(2511), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_select] = ACTIONS(2513), - [anon_sym_lock] = ACTIONS(2513), - [anon_sym_rlock] = ACTIONS(2513), - [anon_sym_unsafe] = ACTIONS(2513), - [anon_sym_sql] = ACTIONS(2513), - [sym_int_literal] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2511), - [sym_rune_literal] = ACTIONS(2511), - [sym_pseudo_compile_time_identifier] = ACTIONS(2513), - [anon_sym_shared] = ACTIONS(2513), - [anon_sym_map_LBRACK] = ACTIONS(2511), - [anon_sym_chan] = ACTIONS(2513), - [anon_sym_thread] = ACTIONS(2513), - [anon_sym_atomic] = ACTIONS(2513), - [sym___double_quote] = ACTIONS(2511), - [sym___single_quote] = ACTIONS(2511), - [sym___c_double_quote] = ACTIONS(2511), - [sym___c_single_quote] = ACTIONS(2511), - [sym___r_double_quote] = ACTIONS(2511), - [sym___r_single_quote] = ACTIONS(2511), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_as] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_RBRACE] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_PIPE] = ACTIONS(3046), + [anon_sym_fn] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_SLASH] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3046), + [anon_sym_GT] = ACTIONS(3046), + [anon_sym_EQ_EQ] = ACTIONS(3044), + [anon_sym_BANG_EQ] = ACTIONS(3044), + [anon_sym_LT_EQ] = ACTIONS(3044), + [anon_sym_GT_EQ] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(3044), + [anon_sym_struct] = ACTIONS(3046), + [anon_sym_mut] = ACTIONS(3046), + [anon_sym_COLON] = ACTIONS(3044), + [anon_sym_PLUS_PLUS] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_go] = ACTIONS(3046), + [anon_sym_spawn] = ACTIONS(3046), + [anon_sym_json_DOTdecode] = ACTIONS(3044), + [anon_sym_LBRACK2] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3044), + [anon_sym_CARET] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_LT_DASH] = ACTIONS(3044), + [anon_sym_LT_LT] = ACTIONS(3044), + [anon_sym_GT_GT] = ACTIONS(3046), + [anon_sym_GT_GT_GT] = ACTIONS(3044), + [anon_sym_AMP_CARET] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(3044), + [anon_sym_PIPE_PIPE] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3046), + [sym_none] = ACTIONS(3046), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_nil] = ACTIONS(3046), + [anon_sym_QMARK_DOT] = ACTIONS(3044), + [anon_sym_POUND_LBRACK] = ACTIONS(3044), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_DOLLARif] = ACTIONS(3046), + [anon_sym_is] = ACTIONS(3046), + [anon_sym_BANGis] = ACTIONS(3044), + [anon_sym_in] = ACTIONS(3046), + [anon_sym_BANGin] = ACTIONS(3044), + [anon_sym_match] = ACTIONS(3046), + [anon_sym_select] = ACTIONS(3046), + [anon_sym_lock] = ACTIONS(3046), + [anon_sym_rlock] = ACTIONS(3046), + [anon_sym_unsafe] = ACTIONS(3046), + [anon_sym_sql] = ACTIONS(3046), + [sym_int_literal] = ACTIONS(3046), + [sym_float_literal] = ACTIONS(3044), + [sym_rune_literal] = ACTIONS(3044), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_DQUOTE] = ACTIONS(3044), + [anon_sym_c_SQUOTE] = ACTIONS(3044), + [anon_sym_c_DQUOTE] = ACTIONS(3044), + [anon_sym_r_SQUOTE] = ACTIONS(3044), + [anon_sym_r_DQUOTE] = ACTIONS(3044), + [sym_pseudo_compile_time_identifier] = ACTIONS(3046), + [anon_sym_shared] = ACTIONS(3046), + [anon_sym_map_LBRACK] = ACTIONS(3044), + [anon_sym_chan] = ACTIONS(3046), + [anon_sym_thread] = ACTIONS(3046), + [anon_sym_atomic] = ACTIONS(3046), }, [1320] = { [sym_line_comment] = STATE(1320), [sym_block_comment] = STATE(1320), - [sym_identifier] = ACTIONS(2522), + [sym_identifier] = ACTIONS(2837), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2522), - [anon_sym_as] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_COMMA] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_PIPE] = ACTIONS(2522), - [anon_sym_fn] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2520), - [anon_sym_SLASH] = ACTIONS(2522), - [anon_sym_PERCENT] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_GT] = ACTIONS(2522), - [anon_sym_EQ_EQ] = ACTIONS(2520), - [anon_sym_BANG_EQ] = ACTIONS(2520), - [anon_sym_LT_EQ] = ACTIONS(2520), - [anon_sym_GT_EQ] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_RBRACK] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(2522), - [anon_sym_mut] = ACTIONS(2522), - [anon_sym_COLON] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [anon_sym_QMARK] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_go] = ACTIONS(2522), - [anon_sym_spawn] = ACTIONS(2522), - [anon_sym_json_DOTdecode] = ACTIONS(2520), - [anon_sym_LBRACK2] = ACTIONS(2522), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_CARET] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_LT_DASH] = ACTIONS(2520), - [anon_sym_LT_LT] = ACTIONS(2520), - [anon_sym_GT_GT] = ACTIONS(2522), - [anon_sym_GT_GT_GT] = ACTIONS(2520), - [anon_sym_AMP_CARET] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_PIPE_PIPE] = ACTIONS(2520), - [anon_sym_or] = ACTIONS(2522), - [sym_none] = ACTIONS(2522), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_nil] = ACTIONS(2522), - [anon_sym_QMARK_DOT] = ACTIONS(2520), - [anon_sym_POUND_LBRACK] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_DOLLARif] = ACTIONS(2522), - [anon_sym_is] = ACTIONS(2522), - [anon_sym_BANGis] = ACTIONS(2520), - [anon_sym_in] = ACTIONS(2522), - [anon_sym_BANGin] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2522), - [anon_sym_select] = ACTIONS(2522), - [anon_sym_lock] = ACTIONS(2522), - [anon_sym_rlock] = ACTIONS(2522), - [anon_sym_unsafe] = ACTIONS(2522), - [anon_sym_sql] = ACTIONS(2522), - [sym_int_literal] = ACTIONS(2522), - [sym_float_literal] = ACTIONS(2520), - [sym_rune_literal] = ACTIONS(2520), - [sym_pseudo_compile_time_identifier] = ACTIONS(2522), - [anon_sym_shared] = ACTIONS(2522), - [anon_sym_map_LBRACK] = ACTIONS(2520), - [anon_sym_chan] = ACTIONS(2522), - [anon_sym_thread] = ACTIONS(2522), - [anon_sym_atomic] = ACTIONS(2522), - [sym___double_quote] = ACTIONS(2520), - [sym___single_quote] = ACTIONS(2520), - [sym___c_double_quote] = ACTIONS(2520), - [sym___c_single_quote] = ACTIONS(2520), - [sym___r_double_quote] = ACTIONS(2520), - [sym___r_single_quote] = ACTIONS(2520), + [anon_sym_DOT] = ACTIONS(2837), + [anon_sym_as] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_COMMA] = ACTIONS(2835), + [anon_sym_RBRACE] = ACTIONS(2835), + [anon_sym_LPAREN] = ACTIONS(2835), + [anon_sym_PIPE] = ACTIONS(2837), + [anon_sym_fn] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PERCENT] = ACTIONS(2835), + [anon_sym_LT] = ACTIONS(2837), + [anon_sym_GT] = ACTIONS(2837), + [anon_sym_EQ_EQ] = ACTIONS(2835), + [anon_sym_BANG_EQ] = ACTIONS(2835), + [anon_sym_LT_EQ] = ACTIONS(2835), + [anon_sym_GT_EQ] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_RBRACK] = ACTIONS(2835), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_mut] = ACTIONS(2837), + [anon_sym_COLON] = ACTIONS(2835), + [anon_sym_PLUS_PLUS] = ACTIONS(2835), + [anon_sym_DASH_DASH] = ACTIONS(2835), + [anon_sym_QMARK] = ACTIONS(2837), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_go] = ACTIONS(2837), + [anon_sym_spawn] = ACTIONS(2837), + [anon_sym_json_DOTdecode] = ACTIONS(2835), + [anon_sym_LBRACK2] = ACTIONS(2837), + [anon_sym_TILDE] = ACTIONS(2835), + [anon_sym_CARET] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_LT_DASH] = ACTIONS(2835), + [anon_sym_LT_LT] = ACTIONS(2835), + [anon_sym_GT_GT] = ACTIONS(2837), + [anon_sym_GT_GT_GT] = ACTIONS(2835), + [anon_sym_AMP_CARET] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(2835), + [anon_sym_PIPE_PIPE] = ACTIONS(2835), + [anon_sym_or] = ACTIONS(2837), + [sym_none] = ACTIONS(2837), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_nil] = ACTIONS(2837), + [anon_sym_QMARK_DOT] = ACTIONS(2835), + [anon_sym_POUND_LBRACK] = ACTIONS(2835), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_DOLLARif] = ACTIONS(2837), + [anon_sym_is] = ACTIONS(2837), + [anon_sym_BANGis] = ACTIONS(2835), + [anon_sym_in] = ACTIONS(2837), + [anon_sym_BANGin] = ACTIONS(2835), + [anon_sym_match] = ACTIONS(2837), + [anon_sym_select] = ACTIONS(2837), + [anon_sym_lock] = ACTIONS(2837), + [anon_sym_rlock] = ACTIONS(2837), + [anon_sym_unsafe] = ACTIONS(2837), + [anon_sym_sql] = ACTIONS(2837), + [sym_int_literal] = ACTIONS(2837), + [sym_float_literal] = ACTIONS(2835), + [sym_rune_literal] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE] = ACTIONS(2835), + [anon_sym_c_SQUOTE] = ACTIONS(2835), + [anon_sym_c_DQUOTE] = ACTIONS(2835), + [anon_sym_r_SQUOTE] = ACTIONS(2835), + [anon_sym_r_DQUOTE] = ACTIONS(2835), + [sym_pseudo_compile_time_identifier] = ACTIONS(2837), + [anon_sym_shared] = ACTIONS(2837), + [anon_sym_map_LBRACK] = ACTIONS(2835), + [anon_sym_chan] = ACTIONS(2837), + [anon_sym_thread] = ACTIONS(2837), + [anon_sym_atomic] = ACTIONS(2837), }, [1321] = { [sym_line_comment] = STATE(1321), [sym_block_comment] = STATE(1321), - [sym_identifier] = ACTIONS(2898), + [sym_identifier] = ACTIONS(2237), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_as] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2896), - [anon_sym_COMMA] = ACTIONS(2896), - [anon_sym_RBRACE] = ACTIONS(2896), - [anon_sym_LPAREN] = ACTIONS(2896), - [anon_sym_PIPE] = ACTIONS(2898), - [anon_sym_fn] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_STAR] = ACTIONS(2896), - [anon_sym_SLASH] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2896), - [anon_sym_LT] = ACTIONS(2898), - [anon_sym_GT] = ACTIONS(2898), - [anon_sym_EQ_EQ] = ACTIONS(2896), - [anon_sym_BANG_EQ] = ACTIONS(2896), - [anon_sym_LT_EQ] = ACTIONS(2896), - [anon_sym_GT_EQ] = ACTIONS(2896), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_RBRACK] = ACTIONS(2896), - [anon_sym_struct] = ACTIONS(2898), - [anon_sym_mut] = ACTIONS(2898), - [anon_sym_COLON] = ACTIONS(2896), - [anon_sym_PLUS_PLUS] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2896), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_go] = ACTIONS(2898), - [anon_sym_spawn] = ACTIONS(2898), - [anon_sym_json_DOTdecode] = ACTIONS(2896), - [anon_sym_LBRACK2] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2896), - [anon_sym_CARET] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_LT_DASH] = ACTIONS(2896), - [anon_sym_LT_LT] = ACTIONS(2896), - [anon_sym_GT_GT] = ACTIONS(2898), - [anon_sym_GT_GT_GT] = ACTIONS(2896), - [anon_sym_AMP_CARET] = ACTIONS(2896), - [anon_sym_AMP_AMP] = ACTIONS(2896), - [anon_sym_PIPE_PIPE] = ACTIONS(2896), - [anon_sym_or] = ACTIONS(2898), - [sym_none] = ACTIONS(2898), - [sym_true] = ACTIONS(2898), - [sym_false] = ACTIONS(2898), - [sym_nil] = ACTIONS(2898), - [anon_sym_QMARK_DOT] = ACTIONS(2896), - [anon_sym_POUND_LBRACK] = ACTIONS(2896), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_DOLLARif] = ACTIONS(2898), - [anon_sym_is] = ACTIONS(2898), - [anon_sym_BANGis] = ACTIONS(2896), - [anon_sym_in] = ACTIONS(2898), - [anon_sym_BANGin] = ACTIONS(2896), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_select] = ACTIONS(2898), - [anon_sym_lock] = ACTIONS(2898), - [anon_sym_rlock] = ACTIONS(2898), - [anon_sym_unsafe] = ACTIONS(2898), - [anon_sym_sql] = ACTIONS(2898), - [sym_int_literal] = ACTIONS(2898), - [sym_float_literal] = ACTIONS(2896), - [sym_rune_literal] = ACTIONS(2896), - [sym_pseudo_compile_time_identifier] = ACTIONS(2898), - [anon_sym_shared] = ACTIONS(2898), - [anon_sym_map_LBRACK] = ACTIONS(2896), - [anon_sym_chan] = ACTIONS(2898), - [anon_sym_thread] = ACTIONS(2898), - [anon_sym_atomic] = ACTIONS(2898), - [sym___double_quote] = ACTIONS(2896), - [sym___single_quote] = ACTIONS(2896), - [sym___c_double_quote] = ACTIONS(2896), - [sym___c_single_quote] = ACTIONS(2896), - [sym___r_double_quote] = ACTIONS(2896), - [sym___r_single_quote] = ACTIONS(2896), + [anon_sym_DOT] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_COMMA] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2235), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_PERCENT] = ACTIONS(2235), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_GT] = ACTIONS(2237), + [anon_sym_EQ_EQ] = ACTIONS(2235), + [anon_sym_BANG_EQ] = ACTIONS(2235), + [anon_sym_LT_EQ] = ACTIONS(2235), + [anon_sym_GT_EQ] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_mut] = ACTIONS(2237), + [anon_sym_COLON] = ACTIONS(2235), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2235), + [anon_sym_QMARK] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_go] = ACTIONS(2237), + [anon_sym_spawn] = ACTIONS(2237), + [anon_sym_json_DOTdecode] = ACTIONS(2235), + [anon_sym_LBRACK2] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2235), + [anon_sym_CARET] = ACTIONS(2235), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_LT_DASH] = ACTIONS(2235), + [anon_sym_LT_LT] = ACTIONS(2235), + [anon_sym_GT_GT] = ACTIONS(2237), + [anon_sym_GT_GT_GT] = ACTIONS(2235), + [anon_sym_AMP_CARET] = ACTIONS(2235), + [anon_sym_AMP_AMP] = ACTIONS(2235), + [anon_sym_PIPE_PIPE] = ACTIONS(2235), + [anon_sym_or] = ACTIONS(2237), + [sym_none] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_nil] = ACTIONS(2237), + [anon_sym_QMARK_DOT] = ACTIONS(2235), + [anon_sym_POUND_LBRACK] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_DOLLARif] = ACTIONS(2237), + [anon_sym_is] = ACTIONS(2237), + [anon_sym_BANGis] = ACTIONS(2235), + [anon_sym_in] = ACTIONS(2237), + [anon_sym_BANGin] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_select] = ACTIONS(2237), + [anon_sym_lock] = ACTIONS(2237), + [anon_sym_rlock] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_sql] = ACTIONS(2237), + [sym_int_literal] = ACTIONS(2237), + [sym_float_literal] = ACTIONS(2235), + [sym_rune_literal] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_DQUOTE] = ACTIONS(2235), + [anon_sym_c_SQUOTE] = ACTIONS(2235), + [anon_sym_c_DQUOTE] = ACTIONS(2235), + [anon_sym_r_SQUOTE] = ACTIONS(2235), + [anon_sym_r_DQUOTE] = ACTIONS(2235), + [sym_pseudo_compile_time_identifier] = ACTIONS(2237), + [anon_sym_shared] = ACTIONS(2237), + [anon_sym_map_LBRACK] = ACTIONS(2235), + [anon_sym_chan] = ACTIONS(2237), + [anon_sym_thread] = ACTIONS(2237), + [anon_sym_atomic] = ACTIONS(2237), }, [1322] = { [sym_line_comment] = STATE(1322), [sym_block_comment] = STATE(1322), - [sym_identifier] = ACTIONS(2505), + [sym_identifier] = ACTIONS(2217), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_COMMA] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2503), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_PIPE] = ACTIONS(2505), - [anon_sym_fn] = ACTIONS(2505), - [anon_sym_PLUS] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_STAR] = ACTIONS(2503), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2503), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_GT] = ACTIONS(2505), - [anon_sym_EQ_EQ] = ACTIONS(2503), - [anon_sym_BANG_EQ] = ACTIONS(2503), - [anon_sym_LT_EQ] = ACTIONS(2503), - [anon_sym_GT_EQ] = ACTIONS(2503), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_RBRACK] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2505), - [anon_sym_mut] = ACTIONS(2505), - [anon_sym_COLON] = ACTIONS(2503), - [anon_sym_PLUS_PLUS] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2503), - [anon_sym_QMARK] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_go] = ACTIONS(2505), - [anon_sym_spawn] = ACTIONS(2505), - [anon_sym_json_DOTdecode] = ACTIONS(2503), - [anon_sym_LBRACK2] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2503), - [anon_sym_CARET] = ACTIONS(2503), - [anon_sym_AMP] = ACTIONS(2505), - [anon_sym_LT_DASH] = ACTIONS(2503), - [anon_sym_LT_LT] = ACTIONS(2503), - [anon_sym_GT_GT] = ACTIONS(2505), - [anon_sym_GT_GT_GT] = ACTIONS(2503), - [anon_sym_AMP_CARET] = ACTIONS(2503), - [anon_sym_AMP_AMP] = ACTIONS(2503), - [anon_sym_PIPE_PIPE] = ACTIONS(2503), - [anon_sym_or] = ACTIONS(2505), - [sym_none] = ACTIONS(2505), - [sym_true] = ACTIONS(2505), - [sym_false] = ACTIONS(2505), - [sym_nil] = ACTIONS(2505), - [anon_sym_QMARK_DOT] = ACTIONS(2503), - [anon_sym_POUND_LBRACK] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_DOLLARif] = ACTIONS(2505), - [anon_sym_is] = ACTIONS(2505), - [anon_sym_BANGis] = ACTIONS(2503), - [anon_sym_in] = ACTIONS(2505), - [anon_sym_BANGin] = ACTIONS(2503), - [anon_sym_match] = ACTIONS(2505), - [anon_sym_select] = ACTIONS(2505), - [anon_sym_lock] = ACTIONS(2505), - [anon_sym_rlock] = ACTIONS(2505), - [anon_sym_unsafe] = ACTIONS(2505), - [anon_sym_sql] = ACTIONS(2505), - [sym_int_literal] = ACTIONS(2505), - [sym_float_literal] = ACTIONS(2503), - [sym_rune_literal] = ACTIONS(2503), - [sym_pseudo_compile_time_identifier] = ACTIONS(2505), - [anon_sym_shared] = ACTIONS(2505), - [anon_sym_map_LBRACK] = ACTIONS(2503), - [anon_sym_chan] = ACTIONS(2505), - [anon_sym_thread] = ACTIONS(2505), - [anon_sym_atomic] = ACTIONS(2505), - [sym___double_quote] = ACTIONS(2503), - [sym___single_quote] = ACTIONS(2503), - [sym___c_double_quote] = ACTIONS(2503), - [sym___c_single_quote] = ACTIONS(2503), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2503), + [anon_sym_DOT] = ACTIONS(2217), + [anon_sym_as] = ACTIONS(2217), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2217), + [anon_sym_fn] = ACTIONS(2217), + [anon_sym_PLUS] = ACTIONS(2217), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2217), + [anon_sym_PERCENT] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2217), + [anon_sym_GT] = ACTIONS(2217), + [anon_sym_EQ_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ] = ACTIONS(2215), + [anon_sym_LT_EQ] = ACTIONS(2215), + [anon_sym_GT_EQ] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_RBRACK] = ACTIONS(2215), + [anon_sym_struct] = ACTIONS(2217), + [anon_sym_mut] = ACTIONS(2217), + [anon_sym_COLON] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(2215), + [anon_sym_DASH_DASH] = ACTIONS(2215), + [anon_sym_QMARK] = ACTIONS(2217), + [anon_sym_BANG] = ACTIONS(2217), + [anon_sym_go] = ACTIONS(2217), + [anon_sym_spawn] = ACTIONS(2217), + [anon_sym_json_DOTdecode] = ACTIONS(2215), + [anon_sym_LBRACK2] = ACTIONS(2217), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_CARET] = ACTIONS(2215), + [anon_sym_AMP] = ACTIONS(2217), + [anon_sym_LT_DASH] = ACTIONS(2215), + [anon_sym_LT_LT] = ACTIONS(2215), + [anon_sym_GT_GT] = ACTIONS(2217), + [anon_sym_GT_GT_GT] = ACTIONS(2215), + [anon_sym_AMP_CARET] = ACTIONS(2215), + [anon_sym_AMP_AMP] = ACTIONS(2215), + [anon_sym_PIPE_PIPE] = ACTIONS(2215), + [anon_sym_or] = ACTIONS(2217), + [sym_none] = ACTIONS(2217), + [sym_true] = ACTIONS(2217), + [sym_false] = ACTIONS(2217), + [sym_nil] = ACTIONS(2217), + [anon_sym_QMARK_DOT] = ACTIONS(2215), + [anon_sym_POUND_LBRACK] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_DOLLARif] = ACTIONS(2217), + [anon_sym_is] = ACTIONS(2217), + [anon_sym_BANGis] = ACTIONS(2215), + [anon_sym_in] = ACTIONS(2217), + [anon_sym_BANGin] = ACTIONS(2215), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_select] = ACTIONS(2217), + [anon_sym_lock] = ACTIONS(2217), + [anon_sym_rlock] = ACTIONS(2217), + [anon_sym_unsafe] = ACTIONS(2217), + [anon_sym_sql] = ACTIONS(2217), + [sym_int_literal] = ACTIONS(2217), + [sym_float_literal] = ACTIONS(2215), + [sym_rune_literal] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2215), + [anon_sym_c_SQUOTE] = ACTIONS(2215), + [anon_sym_c_DQUOTE] = ACTIONS(2215), + [anon_sym_r_SQUOTE] = ACTIONS(2215), + [anon_sym_r_DQUOTE] = ACTIONS(2215), + [sym_pseudo_compile_time_identifier] = ACTIONS(2217), + [anon_sym_shared] = ACTIONS(2217), + [anon_sym_map_LBRACK] = ACTIONS(2215), + [anon_sym_chan] = ACTIONS(2217), + [anon_sym_thread] = ACTIONS(2217), + [anon_sym_atomic] = ACTIONS(2217), }, [1323] = { [sym_line_comment] = STATE(1323), [sym_block_comment] = STATE(1323), - [sym_identifier] = ACTIONS(2467), + [sym_identifier] = ACTIONS(2213), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2467), - [anon_sym_as] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_COMMA] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(2467), - [anon_sym_fn] = ACTIONS(2467), - [anon_sym_PLUS] = ACTIONS(2467), - [anon_sym_DASH] = ACTIONS(2467), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_SLASH] = ACTIONS(2467), - [anon_sym_PERCENT] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2467), - [anon_sym_GT] = ACTIONS(2467), - [anon_sym_EQ_EQ] = ACTIONS(2465), - [anon_sym_BANG_EQ] = ACTIONS(2465), - [anon_sym_LT_EQ] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_RBRACK] = ACTIONS(2465), - [anon_sym_struct] = ACTIONS(2467), - [anon_sym_mut] = ACTIONS(2467), - [anon_sym_COLON] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(2465), - [anon_sym_QMARK] = ACTIONS(2467), - [anon_sym_BANG] = ACTIONS(2467), - [anon_sym_go] = ACTIONS(2467), - [anon_sym_spawn] = ACTIONS(2467), - [anon_sym_json_DOTdecode] = ACTIONS(2465), - [anon_sym_LBRACK2] = ACTIONS(2467), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_CARET] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2467), - [anon_sym_LT_DASH] = ACTIONS(2465), - [anon_sym_LT_LT] = ACTIONS(2465), - [anon_sym_GT_GT] = ACTIONS(2467), - [anon_sym_GT_GT_GT] = ACTIONS(2465), - [anon_sym_AMP_CARET] = ACTIONS(2465), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_PIPE_PIPE] = ACTIONS(2465), - [anon_sym_or] = ACTIONS(2467), - [sym_none] = ACTIONS(2467), - [sym_true] = ACTIONS(2467), - [sym_false] = ACTIONS(2467), - [sym_nil] = ACTIONS(2467), - [anon_sym_QMARK_DOT] = ACTIONS(2465), - [anon_sym_POUND_LBRACK] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2467), - [anon_sym_DOLLARif] = ACTIONS(2467), - [anon_sym_is] = ACTIONS(2467), - [anon_sym_BANGis] = ACTIONS(2465), - [anon_sym_in] = ACTIONS(2467), - [anon_sym_BANGin] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2467), - [anon_sym_select] = ACTIONS(2467), - [anon_sym_lock] = ACTIONS(2467), - [anon_sym_rlock] = ACTIONS(2467), - [anon_sym_unsafe] = ACTIONS(2467), - [anon_sym_sql] = ACTIONS(2467), - [sym_int_literal] = ACTIONS(2467), - [sym_float_literal] = ACTIONS(2465), - [sym_rune_literal] = ACTIONS(2465), - [sym_pseudo_compile_time_identifier] = ACTIONS(2467), - [anon_sym_shared] = ACTIONS(2467), - [anon_sym_map_LBRACK] = ACTIONS(2465), - [anon_sym_chan] = ACTIONS(2467), - [anon_sym_thread] = ACTIONS(2467), - [anon_sym_atomic] = ACTIONS(2467), - [sym___double_quote] = ACTIONS(2465), - [sym___single_quote] = ACTIONS(2465), - [sym___c_double_quote] = ACTIONS(2465), - [sym___c_single_quote] = ACTIONS(2465), - [sym___r_double_quote] = ACTIONS(2465), - [sym___r_single_quote] = ACTIONS(2465), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_as] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2211), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_fn] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2211), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2211), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_RBRACK] = ACTIONS(2211), + [anon_sym_struct] = ACTIONS(2213), + [anon_sym_mut] = ACTIONS(2213), + [anon_sym_COLON] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(2211), + [anon_sym_DASH_DASH] = ACTIONS(2211), + [anon_sym_QMARK] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_go] = ACTIONS(2213), + [anon_sym_spawn] = ACTIONS(2213), + [anon_sym_json_DOTdecode] = ACTIONS(2211), + [anon_sym_LBRACK2] = ACTIONS(2213), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_LT_DASH] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2213), + [anon_sym_GT_GT_GT] = ACTIONS(2211), + [anon_sym_AMP_CARET] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_or] = ACTIONS(2213), + [sym_none] = ACTIONS(2213), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [sym_nil] = ACTIONS(2213), + [anon_sym_QMARK_DOT] = ACTIONS(2211), + [anon_sym_POUND_LBRACK] = ACTIONS(2211), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_DOLLARif] = ACTIONS(2213), + [anon_sym_is] = ACTIONS(2213), + [anon_sym_BANGis] = ACTIONS(2211), + [anon_sym_in] = ACTIONS(2213), + [anon_sym_BANGin] = ACTIONS(2211), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_select] = ACTIONS(2213), + [anon_sym_lock] = ACTIONS(2213), + [anon_sym_rlock] = ACTIONS(2213), + [anon_sym_unsafe] = ACTIONS(2213), + [anon_sym_sql] = ACTIONS(2213), + [sym_int_literal] = ACTIONS(2213), + [sym_float_literal] = ACTIONS(2211), + [sym_rune_literal] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2211), + [anon_sym_DQUOTE] = ACTIONS(2211), + [anon_sym_c_SQUOTE] = ACTIONS(2211), + [anon_sym_c_DQUOTE] = ACTIONS(2211), + [anon_sym_r_SQUOTE] = ACTIONS(2211), + [anon_sym_r_DQUOTE] = ACTIONS(2211), + [sym_pseudo_compile_time_identifier] = ACTIONS(2213), + [anon_sym_shared] = ACTIONS(2213), + [anon_sym_map_LBRACK] = ACTIONS(2211), + [anon_sym_chan] = ACTIONS(2213), + [anon_sym_thread] = ACTIONS(2213), + [anon_sym_atomic] = ACTIONS(2213), }, [1324] = { [sym_line_comment] = STATE(1324), [sym_block_comment] = STATE(1324), - [sym_identifier] = ACTIONS(2463), + [sym_identifier] = ACTIONS(2209), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2463), - [anon_sym_as] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_COMMA] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2461), - [anon_sym_PIPE] = ACTIONS(2463), - [anon_sym_fn] = ACTIONS(2463), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(2463), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_SLASH] = ACTIONS(2463), - [anon_sym_PERCENT] = ACTIONS(2461), - [anon_sym_LT] = ACTIONS(2463), - [anon_sym_GT] = ACTIONS(2463), - [anon_sym_EQ_EQ] = ACTIONS(2461), - [anon_sym_BANG_EQ] = ACTIONS(2461), - [anon_sym_LT_EQ] = ACTIONS(2461), - [anon_sym_GT_EQ] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_RBRACK] = ACTIONS(2461), - [anon_sym_struct] = ACTIONS(2463), - [anon_sym_mut] = ACTIONS(2463), - [anon_sym_COLON] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_QMARK] = ACTIONS(2463), - [anon_sym_BANG] = ACTIONS(2463), - [anon_sym_go] = ACTIONS(2463), - [anon_sym_spawn] = ACTIONS(2463), - [anon_sym_json_DOTdecode] = ACTIONS(2461), - [anon_sym_LBRACK2] = ACTIONS(2463), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2463), - [anon_sym_LT_DASH] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2461), - [anon_sym_GT_GT] = ACTIONS(2463), - [anon_sym_GT_GT_GT] = ACTIONS(2461), - [anon_sym_AMP_CARET] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_PIPE_PIPE] = ACTIONS(2461), - [anon_sym_or] = ACTIONS(2463), - [sym_none] = ACTIONS(2463), - [sym_true] = ACTIONS(2463), - [sym_false] = ACTIONS(2463), - [sym_nil] = ACTIONS(2463), - [anon_sym_QMARK_DOT] = ACTIONS(2461), - [anon_sym_POUND_LBRACK] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_DOLLARif] = ACTIONS(2463), - [anon_sym_is] = ACTIONS(2463), - [anon_sym_BANGis] = ACTIONS(2461), - [anon_sym_in] = ACTIONS(2463), - [anon_sym_BANGin] = ACTIONS(2461), - [anon_sym_match] = ACTIONS(2463), - [anon_sym_select] = ACTIONS(2463), - [anon_sym_lock] = ACTIONS(2463), - [anon_sym_rlock] = ACTIONS(2463), - [anon_sym_unsafe] = ACTIONS(2463), - [anon_sym_sql] = ACTIONS(2463), - [sym_int_literal] = ACTIONS(2463), - [sym_float_literal] = ACTIONS(2461), - [sym_rune_literal] = ACTIONS(2461), - [sym_pseudo_compile_time_identifier] = ACTIONS(2463), - [anon_sym_shared] = ACTIONS(2463), - [anon_sym_map_LBRACK] = ACTIONS(2461), - [anon_sym_chan] = ACTIONS(2463), - [anon_sym_thread] = ACTIONS(2463), - [anon_sym_atomic] = ACTIONS(2463), - [sym___double_quote] = ACTIONS(2461), - [sym___single_quote] = ACTIONS(2461), - [sym___c_double_quote] = ACTIONS(2461), - [sym___c_single_quote] = ACTIONS(2461), - [sym___r_double_quote] = ACTIONS(2461), - [sym___r_single_quote] = ACTIONS(2461), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_fn] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2207), + [anon_sym_SLASH] = ACTIONS(2209), + [anon_sym_PERCENT] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_GT] = ACTIONS(2209), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_RBRACK] = ACTIONS(2207), + [anon_sym_struct] = ACTIONS(2209), + [anon_sym_mut] = ACTIONS(2209), + [anon_sym_COLON] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(2207), + [anon_sym_DASH_DASH] = ACTIONS(2207), + [anon_sym_QMARK] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2209), + [anon_sym_go] = ACTIONS(2209), + [anon_sym_spawn] = ACTIONS(2209), + [anon_sym_json_DOTdecode] = ACTIONS(2207), + [anon_sym_LBRACK2] = ACTIONS(2209), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2209), + [anon_sym_LT_DASH] = ACTIONS(2207), + [anon_sym_LT_LT] = ACTIONS(2207), + [anon_sym_GT_GT] = ACTIONS(2209), + [anon_sym_GT_GT_GT] = ACTIONS(2207), + [anon_sym_AMP_CARET] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_or] = ACTIONS(2209), + [sym_none] = ACTIONS(2209), + [sym_true] = ACTIONS(2209), + [sym_false] = ACTIONS(2209), + [sym_nil] = ACTIONS(2209), + [anon_sym_QMARK_DOT] = ACTIONS(2207), + [anon_sym_POUND_LBRACK] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_DOLLARif] = ACTIONS(2209), + [anon_sym_is] = ACTIONS(2209), + [anon_sym_BANGis] = ACTIONS(2207), + [anon_sym_in] = ACTIONS(2209), + [anon_sym_BANGin] = ACTIONS(2207), + [anon_sym_match] = ACTIONS(2209), + [anon_sym_select] = ACTIONS(2209), + [anon_sym_lock] = ACTIONS(2209), + [anon_sym_rlock] = ACTIONS(2209), + [anon_sym_unsafe] = ACTIONS(2209), + [anon_sym_sql] = ACTIONS(2209), + [sym_int_literal] = ACTIONS(2209), + [sym_float_literal] = ACTIONS(2207), + [sym_rune_literal] = ACTIONS(2207), + [anon_sym_SQUOTE] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2207), + [anon_sym_c_SQUOTE] = ACTIONS(2207), + [anon_sym_c_DQUOTE] = ACTIONS(2207), + [anon_sym_r_SQUOTE] = ACTIONS(2207), + [anon_sym_r_DQUOTE] = ACTIONS(2207), + [sym_pseudo_compile_time_identifier] = ACTIONS(2209), + [anon_sym_shared] = ACTIONS(2209), + [anon_sym_map_LBRACK] = ACTIONS(2207), + [anon_sym_chan] = ACTIONS(2209), + [anon_sym_thread] = ACTIONS(2209), + [anon_sym_atomic] = ACTIONS(2209), }, [1325] = { [sym_line_comment] = STATE(1325), [sym_block_comment] = STATE(1325), - [sym_identifier] = ACTIONS(2143), + [sym_identifier] = ACTIONS(3052), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2143), - [anon_sym_as] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_COMMA] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_PIPE] = ACTIONS(2143), - [anon_sym_fn] = ACTIONS(2143), - [anon_sym_PLUS] = ACTIONS(2143), - [anon_sym_DASH] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_SLASH] = ACTIONS(2143), - [anon_sym_PERCENT] = ACTIONS(2141), - [anon_sym_LT] = ACTIONS(2143), - [anon_sym_GT] = ACTIONS(2143), - [anon_sym_EQ_EQ] = ACTIONS(2141), - [anon_sym_BANG_EQ] = ACTIONS(2141), - [anon_sym_LT_EQ] = ACTIONS(2141), - [anon_sym_GT_EQ] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_RBRACK] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2143), - [anon_sym_mut] = ACTIONS(2143), - [anon_sym_COLON] = ACTIONS(2141), - [anon_sym_PLUS_PLUS] = ACTIONS(2141), - [anon_sym_DASH_DASH] = ACTIONS(2141), - [anon_sym_QMARK] = ACTIONS(2143), - [anon_sym_BANG] = ACTIONS(2143), - [anon_sym_go] = ACTIONS(2143), - [anon_sym_spawn] = ACTIONS(2143), - [anon_sym_json_DOTdecode] = ACTIONS(2141), - [anon_sym_LBRACK2] = ACTIONS(2143), - [anon_sym_TILDE] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2141), - [anon_sym_AMP] = ACTIONS(2143), - [anon_sym_LT_DASH] = ACTIONS(2141), - [anon_sym_LT_LT] = ACTIONS(2141), - [anon_sym_GT_GT] = ACTIONS(2143), - [anon_sym_GT_GT_GT] = ACTIONS(2141), - [anon_sym_AMP_CARET] = ACTIONS(2141), - [anon_sym_AMP_AMP] = ACTIONS(2141), - [anon_sym_PIPE_PIPE] = ACTIONS(2141), - [anon_sym_or] = ACTIONS(2143), - [sym_none] = ACTIONS(2143), - [sym_true] = ACTIONS(2143), - [sym_false] = ACTIONS(2143), - [sym_nil] = ACTIONS(2143), - [anon_sym_QMARK_DOT] = ACTIONS(2141), - [anon_sym_POUND_LBRACK] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2143), - [anon_sym_DOLLARif] = ACTIONS(2143), - [anon_sym_is] = ACTIONS(2143), - [anon_sym_BANGis] = ACTIONS(2141), - [anon_sym_in] = ACTIONS(2143), - [anon_sym_BANGin] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2143), - [anon_sym_select] = ACTIONS(2143), - [anon_sym_lock] = ACTIONS(2143), - [anon_sym_rlock] = ACTIONS(2143), - [anon_sym_unsafe] = ACTIONS(2143), - [anon_sym_sql] = ACTIONS(2143), - [sym_int_literal] = ACTIONS(2143), - [sym_float_literal] = ACTIONS(2141), - [sym_rune_literal] = ACTIONS(2141), - [sym_pseudo_compile_time_identifier] = ACTIONS(2143), - [anon_sym_shared] = ACTIONS(2143), - [anon_sym_map_LBRACK] = ACTIONS(2141), - [anon_sym_chan] = ACTIONS(2143), - [anon_sym_thread] = ACTIONS(2143), - [anon_sym_atomic] = ACTIONS(2143), - [sym___double_quote] = ACTIONS(2141), - [sym___single_quote] = ACTIONS(2141), - [sym___c_double_quote] = ACTIONS(2141), - [sym___c_single_quote] = ACTIONS(2141), - [sym___r_double_quote] = ACTIONS(2141), - [sym___r_single_quote] = ACTIONS(2141), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_as] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(3052), + [anon_sym_fn] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_SLASH] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3052), + [anon_sym_GT] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_LT_EQ] = ACTIONS(3050), + [anon_sym_GT_EQ] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3050), + [anon_sym_RBRACK] = ACTIONS(3050), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_mut] = ACTIONS(3052), + [anon_sym_COLON] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3052), + [anon_sym_go] = ACTIONS(3052), + [anon_sym_spawn] = ACTIONS(3052), + [anon_sym_json_DOTdecode] = ACTIONS(3050), + [anon_sym_LBRACK2] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_CARET] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3050), + [anon_sym_LT_LT] = ACTIONS(3050), + [anon_sym_GT_GT] = ACTIONS(3052), + [anon_sym_GT_GT_GT] = ACTIONS(3050), + [anon_sym_AMP_CARET] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_PIPE_PIPE] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3052), + [sym_none] = ACTIONS(3052), + [sym_true] = ACTIONS(3052), + [sym_false] = ACTIONS(3052), + [sym_nil] = ACTIONS(3052), + [anon_sym_QMARK_DOT] = ACTIONS(3050), + [anon_sym_POUND_LBRACK] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_DOLLARif] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3052), + [anon_sym_BANGis] = ACTIONS(3050), + [anon_sym_in] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3050), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_select] = ACTIONS(3052), + [anon_sym_lock] = ACTIONS(3052), + [anon_sym_rlock] = ACTIONS(3052), + [anon_sym_unsafe] = ACTIONS(3052), + [anon_sym_sql] = ACTIONS(3052), + [sym_int_literal] = ACTIONS(3052), + [sym_float_literal] = ACTIONS(3050), + [sym_rune_literal] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [anon_sym_c_SQUOTE] = ACTIONS(3050), + [anon_sym_c_DQUOTE] = ACTIONS(3050), + [anon_sym_r_SQUOTE] = ACTIONS(3050), + [anon_sym_r_DQUOTE] = ACTIONS(3050), + [sym_pseudo_compile_time_identifier] = ACTIONS(3052), + [anon_sym_shared] = ACTIONS(3052), + [anon_sym_map_LBRACK] = ACTIONS(3050), + [anon_sym_chan] = ACTIONS(3052), + [anon_sym_thread] = ACTIONS(3052), + [anon_sym_atomic] = ACTIONS(3052), }, [1326] = { [sym_line_comment] = STATE(1326), [sym_block_comment] = STATE(1326), - [sym_identifier] = ACTIONS(2315), + [sym_identifier] = ACTIONS(2205), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2315), - [anon_sym_as] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_COMMA] = ACTIONS(2313), - [anon_sym_RBRACE] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2315), - [anon_sym_fn] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2315), - [anon_sym_STAR] = ACTIONS(2313), - [anon_sym_SLASH] = ACTIONS(2315), - [anon_sym_PERCENT] = ACTIONS(2313), - [anon_sym_LT] = ACTIONS(2315), - [anon_sym_GT] = ACTIONS(2315), - [anon_sym_EQ_EQ] = ACTIONS(2313), - [anon_sym_BANG_EQ] = ACTIONS(2313), - [anon_sym_LT_EQ] = ACTIONS(2313), - [anon_sym_GT_EQ] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(2313), - [anon_sym_RBRACK] = ACTIONS(2313), - [anon_sym_struct] = ACTIONS(2315), - [anon_sym_mut] = ACTIONS(2315), - [anon_sym_COLON] = ACTIONS(2313), - [anon_sym_PLUS_PLUS] = ACTIONS(2313), - [anon_sym_DASH_DASH] = ACTIONS(2313), - [anon_sym_QMARK] = ACTIONS(2315), - [anon_sym_BANG] = ACTIONS(2315), - [anon_sym_go] = ACTIONS(2315), - [anon_sym_spawn] = ACTIONS(2315), - [anon_sym_json_DOTdecode] = ACTIONS(2313), - [anon_sym_LBRACK2] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2313), - [anon_sym_CARET] = ACTIONS(2313), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_LT_DASH] = ACTIONS(2313), - [anon_sym_LT_LT] = ACTIONS(2313), - [anon_sym_GT_GT] = ACTIONS(2315), - [anon_sym_GT_GT_GT] = ACTIONS(2313), - [anon_sym_AMP_CARET] = ACTIONS(2313), - [anon_sym_AMP_AMP] = ACTIONS(2313), - [anon_sym_PIPE_PIPE] = ACTIONS(2313), - [anon_sym_or] = ACTIONS(2315), - [sym_none] = ACTIONS(2315), - [sym_true] = ACTIONS(2315), - [sym_false] = ACTIONS(2315), - [sym_nil] = ACTIONS(2315), - [anon_sym_QMARK_DOT] = ACTIONS(2313), - [anon_sym_POUND_LBRACK] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2315), - [anon_sym_DOLLARif] = ACTIONS(2315), - [anon_sym_is] = ACTIONS(2315), - [anon_sym_BANGis] = ACTIONS(2313), - [anon_sym_in] = ACTIONS(2315), - [anon_sym_BANGin] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2315), - [anon_sym_select] = ACTIONS(2315), - [anon_sym_lock] = ACTIONS(2315), - [anon_sym_rlock] = ACTIONS(2315), - [anon_sym_unsafe] = ACTIONS(2315), - [anon_sym_sql] = ACTIONS(2315), - [sym_int_literal] = ACTIONS(2315), - [sym_float_literal] = ACTIONS(2313), - [sym_rune_literal] = ACTIONS(2313), - [sym_pseudo_compile_time_identifier] = ACTIONS(2315), - [anon_sym_shared] = ACTIONS(2315), - [anon_sym_map_LBRACK] = ACTIONS(2313), - [anon_sym_chan] = ACTIONS(2315), - [anon_sym_thread] = ACTIONS(2315), - [anon_sym_atomic] = ACTIONS(2315), - [sym___double_quote] = ACTIONS(2313), - [sym___single_quote] = ACTIONS(2313), - [sym___c_double_quote] = ACTIONS(2313), - [sym___c_single_quote] = ACTIONS(2313), - [sym___r_double_quote] = ACTIONS(2313), - [sym___r_single_quote] = ACTIONS(2313), + [anon_sym_DOT] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_COMMA] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_PIPE] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2203), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_PERCENT] = ACTIONS(2203), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_GT] = ACTIONS(2205), + [anon_sym_EQ_EQ] = ACTIONS(2203), + [anon_sym_BANG_EQ] = ACTIONS(2203), + [anon_sym_LT_EQ] = ACTIONS(2203), + [anon_sym_GT_EQ] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2203), + [anon_sym_RBRACK] = ACTIONS(2203), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_mut] = ACTIONS(2205), + [anon_sym_COLON] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(2203), + [anon_sym_DASH_DASH] = ACTIONS(2203), + [anon_sym_QMARK] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_go] = ACTIONS(2205), + [anon_sym_spawn] = ACTIONS(2205), + [anon_sym_json_DOTdecode] = ACTIONS(2203), + [anon_sym_LBRACK2] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_CARET] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_LT_DASH] = ACTIONS(2203), + [anon_sym_LT_LT] = ACTIONS(2203), + [anon_sym_GT_GT] = ACTIONS(2205), + [anon_sym_GT_GT_GT] = ACTIONS(2203), + [anon_sym_AMP_CARET] = ACTIONS(2203), + [anon_sym_AMP_AMP] = ACTIONS(2203), + [anon_sym_PIPE_PIPE] = ACTIONS(2203), + [anon_sym_or] = ACTIONS(2205), + [sym_none] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_nil] = ACTIONS(2205), + [anon_sym_QMARK_DOT] = ACTIONS(2203), + [anon_sym_POUND_LBRACK] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_DOLLARif] = ACTIONS(2205), + [anon_sym_is] = ACTIONS(2205), + [anon_sym_BANGis] = ACTIONS(2203), + [anon_sym_in] = ACTIONS(2205), + [anon_sym_BANGin] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_select] = ACTIONS(2205), + [anon_sym_lock] = ACTIONS(2205), + [anon_sym_rlock] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_sql] = ACTIONS(2205), + [sym_int_literal] = ACTIONS(2205), + [sym_float_literal] = ACTIONS(2203), + [sym_rune_literal] = ACTIONS(2203), + [anon_sym_SQUOTE] = ACTIONS(2203), + [anon_sym_DQUOTE] = ACTIONS(2203), + [anon_sym_c_SQUOTE] = ACTIONS(2203), + [anon_sym_c_DQUOTE] = ACTIONS(2203), + [anon_sym_r_SQUOTE] = ACTIONS(2203), + [anon_sym_r_DQUOTE] = ACTIONS(2203), + [sym_pseudo_compile_time_identifier] = ACTIONS(2205), + [anon_sym_shared] = ACTIONS(2205), + [anon_sym_map_LBRACK] = ACTIONS(2203), + [anon_sym_chan] = ACTIONS(2205), + [anon_sym_thread] = ACTIONS(2205), + [anon_sym_atomic] = ACTIONS(2205), }, [1327] = { [sym_line_comment] = STATE(1327), [sym_block_comment] = STATE(1327), - [sym_identifier] = ACTIONS(2840), + [sym_identifier] = ACTIONS(2137), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2840), - [anon_sym_as] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_COMMA] = ACTIONS(2838), - [anon_sym_RBRACE] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_SLASH] = ACTIONS(2840), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_GT] = ACTIONS(2840), - [anon_sym_EQ_EQ] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2838), - [anon_sym_LT_EQ] = ACTIONS(2838), - [anon_sym_GT_EQ] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_RBRACK] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_mut] = ACTIONS(2840), - [anon_sym_COLON] = ACTIONS(2838), - [anon_sym_PLUS_PLUS] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2838), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_go] = ACTIONS(2840), - [anon_sym_spawn] = ACTIONS(2840), - [anon_sym_json_DOTdecode] = ACTIONS(2838), - [anon_sym_LBRACK2] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_CARET] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_LT_DASH] = ACTIONS(2838), - [anon_sym_LT_LT] = ACTIONS(2838), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_GT_GT_GT] = ACTIONS(2838), - [anon_sym_AMP_CARET] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_or] = ACTIONS(2840), - [sym_none] = ACTIONS(2840), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [sym_nil] = ACTIONS(2840), - [anon_sym_QMARK_DOT] = ACTIONS(2838), - [anon_sym_POUND_LBRACK] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_DOLLARif] = ACTIONS(2840), - [anon_sym_is] = ACTIONS(2840), - [anon_sym_BANGis] = ACTIONS(2838), - [anon_sym_in] = ACTIONS(2840), - [anon_sym_BANGin] = ACTIONS(2838), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_select] = ACTIONS(2840), - [anon_sym_lock] = ACTIONS(2840), - [anon_sym_rlock] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_sql] = ACTIONS(2840), - [sym_int_literal] = ACTIONS(2840), - [sym_float_literal] = ACTIONS(2838), - [sym_rune_literal] = ACTIONS(2838), - [sym_pseudo_compile_time_identifier] = ACTIONS(2840), - [anon_sym_shared] = ACTIONS(2840), - [anon_sym_map_LBRACK] = ACTIONS(2838), - [anon_sym_chan] = ACTIONS(2840), - [anon_sym_thread] = ACTIONS(2840), - [anon_sym_atomic] = ACTIONS(2840), - [sym___double_quote] = ACTIONS(2838), - [sym___single_quote] = ACTIONS(2838), - [sym___c_double_quote] = ACTIONS(2838), - [sym___c_single_quote] = ACTIONS(2838), - [sym___r_double_quote] = ACTIONS(2838), - [sym___r_single_quote] = ACTIONS(2838), + [anon_sym_DOT] = ACTIONS(2139), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_COMMA] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2142), + [anon_sym_BANG_EQ] = ACTIONS(2142), + [anon_sym_LT_EQ] = ACTIONS(2142), + [anon_sym_GT_EQ] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_RBRACK] = ACTIONS(2135), + [anon_sym_struct] = ACTIONS(2137), + [anon_sym_mut] = ACTIONS(2137), + [anon_sym_COLON] = ACTIONS(2135), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [anon_sym_QMARK] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(2137), + [anon_sym_spawn] = ACTIONS(2137), + [anon_sym_json_DOTdecode] = ACTIONS(2135), + [anon_sym_LBRACK2] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2142), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_LT_DASH] = ACTIONS(2135), + [anon_sym_LT_LT] = ACTIONS(2142), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2142), + [anon_sym_AMP_CARET] = ACTIONS(2142), + [anon_sym_AMP_AMP] = ACTIONS(2142), + [anon_sym_PIPE_PIPE] = ACTIONS(2142), + [anon_sym_or] = ACTIONS(2139), + [sym_none] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_nil] = ACTIONS(2137), + [anon_sym_QMARK_DOT] = ACTIONS(2142), + [anon_sym_POUND_LBRACK] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_DOLLARif] = ACTIONS(2137), + [anon_sym_is] = ACTIONS(2139), + [anon_sym_BANGis] = ACTIONS(2142), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_BANGin] = ACTIONS(2142), + [anon_sym_match] = ACTIONS(2137), + [anon_sym_select] = ACTIONS(2137), + [anon_sym_lock] = ACTIONS(2137), + [anon_sym_rlock] = ACTIONS(2137), + [anon_sym_unsafe] = ACTIONS(2137), + [anon_sym_sql] = ACTIONS(2137), + [sym_int_literal] = ACTIONS(2137), + [sym_float_literal] = ACTIONS(2135), + [sym_rune_literal] = ACTIONS(2135), + [anon_sym_SQUOTE] = ACTIONS(2135), + [anon_sym_DQUOTE] = ACTIONS(2135), + [anon_sym_c_SQUOTE] = ACTIONS(2135), + [anon_sym_c_DQUOTE] = ACTIONS(2135), + [anon_sym_r_SQUOTE] = ACTIONS(2135), + [anon_sym_r_DQUOTE] = ACTIONS(2135), + [sym_pseudo_compile_time_identifier] = ACTIONS(2137), + [anon_sym_shared] = ACTIONS(2137), + [anon_sym_map_LBRACK] = ACTIONS(2135), + [anon_sym_chan] = ACTIONS(2137), + [anon_sym_thread] = ACTIONS(2137), + [anon_sym_atomic] = ACTIONS(2137), }, [1328] = { [sym_line_comment] = STATE(1328), [sym_block_comment] = STATE(1328), - [sym_identifier] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2745), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_COMMA] = ACTIONS(2201), - [anon_sym_RBRACE] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2201), - [anon_sym_PIPE] = ACTIONS(2203), - [anon_sym_fn] = ACTIONS(2203), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_SLASH] = ACTIONS(2203), - [anon_sym_PERCENT] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_GT] = ACTIONS(2203), - [anon_sym_EQ_EQ] = ACTIONS(2201), - [anon_sym_BANG_EQ] = ACTIONS(2201), - [anon_sym_LT_EQ] = ACTIONS(2201), - [anon_sym_GT_EQ] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_RBRACK] = ACTIONS(2201), - [anon_sym_struct] = ACTIONS(2203), - [anon_sym_mut] = ACTIONS(2203), - [anon_sym_COLON] = ACTIONS(2201), - [anon_sym_PLUS_PLUS] = ACTIONS(2201), - [anon_sym_DASH_DASH] = ACTIONS(2201), - [anon_sym_QMARK] = ACTIONS(2203), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_go] = ACTIONS(2203), - [anon_sym_spawn] = ACTIONS(2203), - [anon_sym_json_DOTdecode] = ACTIONS(2201), - [anon_sym_LBRACK2] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_LT_DASH] = ACTIONS(2201), - [anon_sym_LT_LT] = ACTIONS(2201), - [anon_sym_GT_GT] = ACTIONS(2203), - [anon_sym_GT_GT_GT] = ACTIONS(2201), - [anon_sym_AMP_CARET] = ACTIONS(2201), - [anon_sym_AMP_AMP] = ACTIONS(2201), - [anon_sym_PIPE_PIPE] = ACTIONS(2201), - [anon_sym_or] = ACTIONS(2203), - [sym_none] = ACTIONS(2203), - [sym_true] = ACTIONS(2203), - [sym_false] = ACTIONS(2203), - [sym_nil] = ACTIONS(2203), - [anon_sym_QMARK_DOT] = ACTIONS(2201), - [anon_sym_POUND_LBRACK] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_DOLLARif] = ACTIONS(2203), - [anon_sym_is] = ACTIONS(2203), - [anon_sym_BANGis] = ACTIONS(2201), - [anon_sym_in] = ACTIONS(2203), - [anon_sym_BANGin] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_select] = ACTIONS(2203), - [anon_sym_lock] = ACTIONS(2203), - [anon_sym_rlock] = ACTIONS(2203), - [anon_sym_unsafe] = ACTIONS(2203), - [anon_sym_sql] = ACTIONS(2203), - [sym_int_literal] = ACTIONS(2203), - [sym_float_literal] = ACTIONS(2201), - [sym_rune_literal] = ACTIONS(2201), - [sym_pseudo_compile_time_identifier] = ACTIONS(2203), - [anon_sym_shared] = ACTIONS(2203), - [anon_sym_map_LBRACK] = ACTIONS(2201), - [anon_sym_chan] = ACTIONS(2203), - [anon_sym_thread] = ACTIONS(2203), - [anon_sym_atomic] = ACTIONS(2203), - [sym___double_quote] = ACTIONS(2201), - [sym___single_quote] = ACTIONS(2201), - [sym___c_double_quote] = ACTIONS(2201), - [sym___c_single_quote] = ACTIONS(2201), - [sym___r_double_quote] = ACTIONS(2201), - [sym___r_single_quote] = ACTIONS(2201), + [anon_sym_DOT] = ACTIONS(2745), + [anon_sym_as] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_COMMA] = ACTIONS(2743), + [anon_sym_RBRACE] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2745), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_SLASH] = ACTIONS(2745), + [anon_sym_PERCENT] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2745), + [anon_sym_GT] = ACTIONS(2745), + [anon_sym_EQ_EQ] = ACTIONS(2743), + [anon_sym_BANG_EQ] = ACTIONS(2743), + [anon_sym_LT_EQ] = ACTIONS(2743), + [anon_sym_GT_EQ] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_RBRACK] = ACTIONS(2743), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_mut] = ACTIONS(2745), + [anon_sym_COLON] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_QMARK] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_go] = ACTIONS(2745), + [anon_sym_spawn] = ACTIONS(2745), + [anon_sym_json_DOTdecode] = ACTIONS(2743), + [anon_sym_LBRACK2] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_CARET] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_LT_DASH] = ACTIONS(2743), + [anon_sym_LT_LT] = ACTIONS(2743), + [anon_sym_GT_GT] = ACTIONS(2745), + [anon_sym_GT_GT_GT] = ACTIONS(2743), + [anon_sym_AMP_CARET] = ACTIONS(2743), + [anon_sym_AMP_AMP] = ACTIONS(2743), + [anon_sym_PIPE_PIPE] = ACTIONS(2743), + [anon_sym_or] = ACTIONS(2745), + [sym_none] = ACTIONS(2745), + [sym_true] = ACTIONS(2745), + [sym_false] = ACTIONS(2745), + [sym_nil] = ACTIONS(2745), + [anon_sym_QMARK_DOT] = ACTIONS(2743), + [anon_sym_POUND_LBRACK] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_DOLLARif] = ACTIONS(2745), + [anon_sym_is] = ACTIONS(2745), + [anon_sym_BANGis] = ACTIONS(2743), + [anon_sym_in] = ACTIONS(2745), + [anon_sym_BANGin] = ACTIONS(2743), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(2745), + [anon_sym_lock] = ACTIONS(2745), + [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_unsafe] = ACTIONS(2745), + [anon_sym_sql] = ACTIONS(2745), + [sym_int_literal] = ACTIONS(2745), + [sym_float_literal] = ACTIONS(2743), + [sym_rune_literal] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2743), + [anon_sym_DQUOTE] = ACTIONS(2743), + [anon_sym_c_SQUOTE] = ACTIONS(2743), + [anon_sym_c_DQUOTE] = ACTIONS(2743), + [anon_sym_r_SQUOTE] = ACTIONS(2743), + [anon_sym_r_DQUOTE] = ACTIONS(2743), + [sym_pseudo_compile_time_identifier] = ACTIONS(2745), + [anon_sym_shared] = ACTIONS(2745), + [anon_sym_map_LBRACK] = ACTIONS(2743), + [anon_sym_chan] = ACTIONS(2745), + [anon_sym_thread] = ACTIONS(2745), + [anon_sym_atomic] = ACTIONS(2745), }, [1329] = { [sym_line_comment] = STATE(1329), [sym_block_comment] = STATE(1329), - [sym_identifier] = ACTIONS(2700), + [sym_identifier] = ACTIONS(2101), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_COMMA] = ACTIONS(2698), - [anon_sym_RBRACE] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2698), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2698), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2698), - [anon_sym_BANG_EQ] = ACTIONS(2698), - [anon_sym_LT_EQ] = ACTIONS(2698), - [anon_sym_GT_EQ] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_RBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_COLON] = ACTIONS(2698), - [anon_sym_PLUS_PLUS] = ACTIONS(2698), - [anon_sym_DASH_DASH] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2698), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2698), - [anon_sym_CARET] = ACTIONS(2698), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2698), - [anon_sym_LT_LT] = ACTIONS(2698), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2698), - [anon_sym_AMP_CARET] = ACTIONS(2698), - [anon_sym_AMP_AMP] = ACTIONS(2698), - [anon_sym_PIPE_PIPE] = ACTIONS(2698), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2698), - [anon_sym_POUND_LBRACK] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2698), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2698), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2698), - [sym_rune_literal] = ACTIONS(2698), - [sym_pseudo_compile_time_identifier] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2698), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2698), - [sym___single_quote] = ACTIONS(2698), - [sym___c_double_quote] = ACTIONS(2698), - [sym___c_single_quote] = ACTIONS(2698), - [sym___r_double_quote] = ACTIONS(2698), - [sym___r_single_quote] = ACTIONS(2698), + [anon_sym_DOT] = ACTIONS(2101), + [anon_sym_as] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_COMMA] = ACTIONS(2099), + [anon_sym_RBRACE] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_fn] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_SLASH] = ACTIONS(2101), + [anon_sym_PERCENT] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_GT] = ACTIONS(2101), + [anon_sym_EQ_EQ] = ACTIONS(2099), + [anon_sym_BANG_EQ] = ACTIONS(2099), + [anon_sym_LT_EQ] = ACTIONS(2099), + [anon_sym_GT_EQ] = ACTIONS(2099), + [anon_sym_LBRACK] = ACTIONS(2099), + [anon_sym_RBRACK] = ACTIONS(2099), + [anon_sym_struct] = ACTIONS(2101), + [anon_sym_mut] = ACTIONS(2101), + [anon_sym_COLON] = ACTIONS(2099), + [anon_sym_PLUS_PLUS] = ACTIONS(2099), + [anon_sym_DASH_DASH] = ACTIONS(2099), + [anon_sym_QMARK] = ACTIONS(2101), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_go] = ACTIONS(2101), + [anon_sym_spawn] = ACTIONS(2101), + [anon_sym_json_DOTdecode] = ACTIONS(2099), + [anon_sym_LBRACK2] = ACTIONS(2101), + [anon_sym_TILDE] = ACTIONS(2099), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_LT_DASH] = ACTIONS(2099), + [anon_sym_LT_LT] = ACTIONS(2099), + [anon_sym_GT_GT] = ACTIONS(2101), + [anon_sym_GT_GT_GT] = ACTIONS(2099), + [anon_sym_AMP_CARET] = ACTIONS(2099), + [anon_sym_AMP_AMP] = ACTIONS(2099), + [anon_sym_PIPE_PIPE] = ACTIONS(2099), + [anon_sym_or] = ACTIONS(2101), + [sym_none] = ACTIONS(2101), + [sym_true] = ACTIONS(2101), + [sym_false] = ACTIONS(2101), + [sym_nil] = ACTIONS(2101), + [anon_sym_QMARK_DOT] = ACTIONS(2099), + [anon_sym_POUND_LBRACK] = ACTIONS(2099), + [anon_sym_if] = ACTIONS(2101), + [anon_sym_DOLLARif] = ACTIONS(2101), + [anon_sym_is] = ACTIONS(2101), + [anon_sym_BANGis] = ACTIONS(2099), + [anon_sym_in] = ACTIONS(2101), + [anon_sym_BANGin] = ACTIONS(2099), + [anon_sym_match] = ACTIONS(2101), + [anon_sym_select] = ACTIONS(2101), + [anon_sym_lock] = ACTIONS(2101), + [anon_sym_rlock] = ACTIONS(2101), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_sql] = ACTIONS(2101), + [sym_int_literal] = ACTIONS(2101), + [sym_float_literal] = ACTIONS(2099), + [sym_rune_literal] = ACTIONS(2099), + [anon_sym_SQUOTE] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2099), + [anon_sym_c_SQUOTE] = ACTIONS(2099), + [anon_sym_c_DQUOTE] = ACTIONS(2099), + [anon_sym_r_SQUOTE] = ACTIONS(2099), + [anon_sym_r_DQUOTE] = ACTIONS(2099), + [sym_pseudo_compile_time_identifier] = ACTIONS(2101), + [anon_sym_shared] = ACTIONS(2101), + [anon_sym_map_LBRACK] = ACTIONS(2099), + [anon_sym_chan] = ACTIONS(2101), + [anon_sym_thread] = ACTIONS(2101), + [anon_sym_atomic] = ACTIONS(2101), }, [1330] = { [sym_line_comment] = STATE(1330), [sym_block_comment] = STATE(1330), - [sym_identifier] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2737), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2219), - [anon_sym_as] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_COMMA] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_GT] = ACTIONS(2219), - [anon_sym_EQ_EQ] = ACTIONS(2222), - [anon_sym_BANG_EQ] = ACTIONS(2222), - [anon_sym_LT_EQ] = ACTIONS(2222), - [anon_sym_GT_EQ] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_RBRACK] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_mut] = ACTIONS(2217), - [anon_sym_COLON] = ACTIONS(2215), - [anon_sym_PLUS_PLUS] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [anon_sym_QMARK] = ACTIONS(2219), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_go] = ACTIONS(2217), - [anon_sym_spawn] = ACTIONS(2217), - [anon_sym_json_DOTdecode] = ACTIONS(2215), - [anon_sym_LBRACK2] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2215), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2215), - [anon_sym_LT_LT] = ACTIONS(2222), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_GT_GT_GT] = ACTIONS(2222), - [anon_sym_AMP_CARET] = ACTIONS(2222), - [anon_sym_AMP_AMP] = ACTIONS(2222), - [anon_sym_PIPE_PIPE] = ACTIONS(2222), - [anon_sym_or] = ACTIONS(2219), - [sym_none] = ACTIONS(2217), - [sym_true] = ACTIONS(2217), - [sym_false] = ACTIONS(2217), - [sym_nil] = ACTIONS(2217), - [anon_sym_QMARK_DOT] = ACTIONS(2222), - [anon_sym_POUND_LBRACK] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_DOLLARif] = ACTIONS(2217), - [anon_sym_is] = ACTIONS(2219), - [anon_sym_BANGis] = ACTIONS(2222), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_BANGin] = ACTIONS(2222), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_select] = ACTIONS(2217), - [anon_sym_lock] = ACTIONS(2217), - [anon_sym_rlock] = ACTIONS(2217), - [anon_sym_unsafe] = ACTIONS(2217), - [anon_sym_sql] = ACTIONS(2217), - [sym_int_literal] = ACTIONS(2217), - [sym_float_literal] = ACTIONS(2215), - [sym_rune_literal] = ACTIONS(2215), - [sym_pseudo_compile_time_identifier] = ACTIONS(2217), - [anon_sym_shared] = ACTIONS(2217), - [anon_sym_map_LBRACK] = ACTIONS(2215), - [anon_sym_chan] = ACTIONS(2217), - [anon_sym_thread] = ACTIONS(2217), - [anon_sym_atomic] = ACTIONS(2217), - [sym___double_quote] = ACTIONS(2215), - [sym___single_quote] = ACTIONS(2215), - [sym___c_double_quote] = ACTIONS(2215), - [sym___c_single_quote] = ACTIONS(2215), - [sym___r_double_quote] = ACTIONS(2215), - [sym___r_single_quote] = ACTIONS(2215), + [anon_sym_DOT] = ACTIONS(2737), + [anon_sym_as] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2735), + [anon_sym_COMMA] = ACTIONS(2735), + [anon_sym_RBRACE] = ACTIONS(2735), + [anon_sym_LPAREN] = ACTIONS(2735), + [anon_sym_PIPE] = ACTIONS(2737), + [anon_sym_fn] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_SLASH] = ACTIONS(2737), + [anon_sym_PERCENT] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2737), + [anon_sym_GT] = ACTIONS(2737), + [anon_sym_EQ_EQ] = ACTIONS(2735), + [anon_sym_BANG_EQ] = ACTIONS(2735), + [anon_sym_LT_EQ] = ACTIONS(2735), + [anon_sym_GT_EQ] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2735), + [anon_sym_RBRACK] = ACTIONS(2735), + [anon_sym_struct] = ACTIONS(2737), + [anon_sym_mut] = ACTIONS(2737), + [anon_sym_COLON] = ACTIONS(2735), + [anon_sym_PLUS_PLUS] = ACTIONS(2735), + [anon_sym_DASH_DASH] = ACTIONS(2735), + [anon_sym_QMARK] = ACTIONS(2737), + [anon_sym_BANG] = ACTIONS(2737), + [anon_sym_go] = ACTIONS(2737), + [anon_sym_spawn] = ACTIONS(2737), + [anon_sym_json_DOTdecode] = ACTIONS(2735), + [anon_sym_LBRACK2] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_CARET] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_LT_DASH] = ACTIONS(2735), + [anon_sym_LT_LT] = ACTIONS(2735), + [anon_sym_GT_GT] = ACTIONS(2737), + [anon_sym_GT_GT_GT] = ACTIONS(2735), + [anon_sym_AMP_CARET] = ACTIONS(2735), + [anon_sym_AMP_AMP] = ACTIONS(2735), + [anon_sym_PIPE_PIPE] = ACTIONS(2735), + [anon_sym_or] = ACTIONS(2737), + [sym_none] = ACTIONS(2737), + [sym_true] = ACTIONS(2737), + [sym_false] = ACTIONS(2737), + [sym_nil] = ACTIONS(2737), + [anon_sym_QMARK_DOT] = ACTIONS(2735), + [anon_sym_POUND_LBRACK] = ACTIONS(2735), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_DOLLARif] = ACTIONS(2737), + [anon_sym_is] = ACTIONS(2737), + [anon_sym_BANGis] = ACTIONS(2735), + [anon_sym_in] = ACTIONS(2737), + [anon_sym_BANGin] = ACTIONS(2735), + [anon_sym_match] = ACTIONS(2737), + [anon_sym_select] = ACTIONS(2737), + [anon_sym_lock] = ACTIONS(2737), + [anon_sym_rlock] = ACTIONS(2737), + [anon_sym_unsafe] = ACTIONS(2737), + [anon_sym_sql] = ACTIONS(2737), + [sym_int_literal] = ACTIONS(2737), + [sym_float_literal] = ACTIONS(2735), + [sym_rune_literal] = ACTIONS(2735), + [anon_sym_SQUOTE] = ACTIONS(2735), + [anon_sym_DQUOTE] = ACTIONS(2735), + [anon_sym_c_SQUOTE] = ACTIONS(2735), + [anon_sym_c_DQUOTE] = ACTIONS(2735), + [anon_sym_r_SQUOTE] = ACTIONS(2735), + [anon_sym_r_DQUOTE] = ACTIONS(2735), + [sym_pseudo_compile_time_identifier] = ACTIONS(2737), + [anon_sym_shared] = ACTIONS(2737), + [anon_sym_map_LBRACK] = ACTIONS(2735), + [anon_sym_chan] = ACTIONS(2737), + [anon_sym_thread] = ACTIONS(2737), + [anon_sym_atomic] = ACTIONS(2737), }, [1331] = { [sym_line_comment] = STATE(1331), [sym_block_comment] = STATE(1331), - [sym_identifier] = ACTIONS(2906), + [sym_identifier] = ACTIONS(3056), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_as] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_COMMA] = ACTIONS(2904), - [anon_sym_RBRACE] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_PIPE] = ACTIONS(2906), - [anon_sym_fn] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2904), - [anon_sym_SLASH] = ACTIONS(2906), - [anon_sym_PERCENT] = ACTIONS(2904), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_GT] = ACTIONS(2906), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2904), - [anon_sym_GT_EQ] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_RBRACK] = ACTIONS(2904), - [anon_sym_struct] = ACTIONS(2906), - [anon_sym_mut] = ACTIONS(2906), - [anon_sym_COLON] = ACTIONS(2904), - [anon_sym_PLUS_PLUS] = ACTIONS(2904), - [anon_sym_DASH_DASH] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2906), - [anon_sym_go] = ACTIONS(2906), - [anon_sym_spawn] = ACTIONS(2906), - [anon_sym_json_DOTdecode] = ACTIONS(2904), - [anon_sym_LBRACK2] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_CARET] = ACTIONS(2904), - [anon_sym_AMP] = ACTIONS(2906), - [anon_sym_LT_DASH] = ACTIONS(2904), - [anon_sym_LT_LT] = ACTIONS(2904), - [anon_sym_GT_GT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2904), - [anon_sym_AMP_CARET] = ACTIONS(2904), - [anon_sym_AMP_AMP] = ACTIONS(2904), - [anon_sym_PIPE_PIPE] = ACTIONS(2904), - [anon_sym_or] = ACTIONS(2906), - [sym_none] = ACTIONS(2906), - [sym_true] = ACTIONS(2906), - [sym_false] = ACTIONS(2906), - [sym_nil] = ACTIONS(2906), - [anon_sym_QMARK_DOT] = ACTIONS(2904), - [anon_sym_POUND_LBRACK] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_DOLLARif] = ACTIONS(2906), - [anon_sym_is] = ACTIONS(2906), - [anon_sym_BANGis] = ACTIONS(2904), - [anon_sym_in] = ACTIONS(2906), - [anon_sym_BANGin] = ACTIONS(2904), - [anon_sym_match] = ACTIONS(2906), - [anon_sym_select] = ACTIONS(2906), - [anon_sym_lock] = ACTIONS(2906), - [anon_sym_rlock] = ACTIONS(2906), - [anon_sym_unsafe] = ACTIONS(2906), - [anon_sym_sql] = ACTIONS(2906), - [sym_int_literal] = ACTIONS(2906), - [sym_float_literal] = ACTIONS(2904), - [sym_rune_literal] = ACTIONS(2904), - [sym_pseudo_compile_time_identifier] = ACTIONS(2906), - [anon_sym_shared] = ACTIONS(2906), - [anon_sym_map_LBRACK] = ACTIONS(2904), - [anon_sym_chan] = ACTIONS(2906), - [anon_sym_thread] = ACTIONS(2906), - [anon_sym_atomic] = ACTIONS(2906), - [sym___double_quote] = ACTIONS(2904), - [sym___single_quote] = ACTIONS(2904), - [sym___c_double_quote] = ACTIONS(2904), - [sym___c_single_quote] = ACTIONS(2904), - [sym___r_double_quote] = ACTIONS(2904), - [sym___r_single_quote] = ACTIONS(2904), + [anon_sym_DOT] = ACTIONS(3056), + [anon_sym_as] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3054), + [anon_sym_RBRACE] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_fn] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_SLASH] = ACTIONS(3056), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3054), + [anon_sym_LT_EQ] = ACTIONS(3054), + [anon_sym_GT_EQ] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_RBRACK] = ACTIONS(3054), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_mut] = ACTIONS(3056), + [anon_sym_COLON] = ACTIONS(3054), + [anon_sym_PLUS_PLUS] = ACTIONS(3054), + [anon_sym_DASH_DASH] = ACTIONS(3054), + [anon_sym_QMARK] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3056), + [anon_sym_go] = ACTIONS(3056), + [anon_sym_spawn] = ACTIONS(3056), + [anon_sym_json_DOTdecode] = ACTIONS(3054), + [anon_sym_LBRACK2] = ACTIONS(3056), + [anon_sym_TILDE] = ACTIONS(3054), + [anon_sym_CARET] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym_LT_DASH] = ACTIONS(3054), + [anon_sym_LT_LT] = ACTIONS(3054), + [anon_sym_GT_GT] = ACTIONS(3056), + [anon_sym_GT_GT_GT] = ACTIONS(3054), + [anon_sym_AMP_CARET] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_PIPE_PIPE] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3056), + [sym_none] = ACTIONS(3056), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [sym_nil] = ACTIONS(3056), + [anon_sym_QMARK_DOT] = ACTIONS(3054), + [anon_sym_POUND_LBRACK] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_DOLLARif] = ACTIONS(3056), + [anon_sym_is] = ACTIONS(3056), + [anon_sym_BANGis] = ACTIONS(3054), + [anon_sym_in] = ACTIONS(3056), + [anon_sym_BANGin] = ACTIONS(3054), + [anon_sym_match] = ACTIONS(3056), + [anon_sym_select] = ACTIONS(3056), + [anon_sym_lock] = ACTIONS(3056), + [anon_sym_rlock] = ACTIONS(3056), + [anon_sym_unsafe] = ACTIONS(3056), + [anon_sym_sql] = ACTIONS(3056), + [sym_int_literal] = ACTIONS(3056), + [sym_float_literal] = ACTIONS(3054), + [sym_rune_literal] = ACTIONS(3054), + [anon_sym_SQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [anon_sym_c_SQUOTE] = ACTIONS(3054), + [anon_sym_c_DQUOTE] = ACTIONS(3054), + [anon_sym_r_SQUOTE] = ACTIONS(3054), + [anon_sym_r_DQUOTE] = ACTIONS(3054), + [sym_pseudo_compile_time_identifier] = ACTIONS(3056), + [anon_sym_shared] = ACTIONS(3056), + [anon_sym_map_LBRACK] = ACTIONS(3054), + [anon_sym_chan] = ACTIONS(3056), + [anon_sym_thread] = ACTIONS(3056), + [anon_sym_atomic] = ACTIONS(3056), }, [1332] = { [sym_line_comment] = STATE(1332), [sym_block_comment] = STATE(1332), - [sym_identifier] = ACTIONS(2812), + [sym_identifier] = ACTIONS(2833), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2812), - [anon_sym_as] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2810), - [anon_sym_SLASH] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_EQ_EQ] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_LT_EQ] = ACTIONS(2810), - [anon_sym_GT_EQ] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_RBRACK] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_mut] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_PLUS_PLUS] = ACTIONS(2810), - [anon_sym_DASH_DASH] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_go] = ACTIONS(2812), - [anon_sym_spawn] = ACTIONS(2812), - [anon_sym_json_DOTdecode] = ACTIONS(2810), - [anon_sym_LBRACK2] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2810), - [anon_sym_CARET] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_LT_LT] = ACTIONS(2810), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_GT_GT_GT] = ACTIONS(2810), - [anon_sym_AMP_CARET] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_or] = ACTIONS(2812), - [sym_none] = ACTIONS(2812), - [sym_true] = ACTIONS(2812), - [sym_false] = ACTIONS(2812), - [sym_nil] = ACTIONS(2812), - [anon_sym_QMARK_DOT] = ACTIONS(2810), - [anon_sym_POUND_LBRACK] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2812), - [anon_sym_DOLLARif] = ACTIONS(2812), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_BANGis] = ACTIONS(2810), - [anon_sym_in] = ACTIONS(2812), - [anon_sym_BANGin] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2812), - [anon_sym_select] = ACTIONS(2812), - [anon_sym_lock] = ACTIONS(2812), - [anon_sym_rlock] = ACTIONS(2812), - [anon_sym_unsafe] = ACTIONS(2812), - [anon_sym_sql] = ACTIONS(2812), - [sym_int_literal] = ACTIONS(2812), - [sym_float_literal] = ACTIONS(2810), - [sym_rune_literal] = ACTIONS(2810), - [sym_pseudo_compile_time_identifier] = ACTIONS(2812), - [anon_sym_shared] = ACTIONS(2812), - [anon_sym_map_LBRACK] = ACTIONS(2810), - [anon_sym_chan] = ACTIONS(2812), - [anon_sym_thread] = ACTIONS(2812), - [anon_sym_atomic] = ACTIONS(2812), - [sym___double_quote] = ACTIONS(2810), - [sym___single_quote] = ACTIONS(2810), - [sym___c_double_quote] = ACTIONS(2810), - [sym___c_single_quote] = ACTIONS(2810), - [sym___r_double_quote] = ACTIONS(2810), - [sym___r_single_quote] = ACTIONS(2810), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_as] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2831), + [anon_sym_COMMA] = ACTIONS(2831), + [anon_sym_RBRACE] = ACTIONS(2831), + [anon_sym_LPAREN] = ACTIONS(2831), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_PERCENT] = ACTIONS(2831), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_EQ_EQ] = ACTIONS(2831), + [anon_sym_BANG_EQ] = ACTIONS(2831), + [anon_sym_LT_EQ] = ACTIONS(2831), + [anon_sym_GT_EQ] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_RBRACK] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_COLON] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2831), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2831), + [anon_sym_CARET] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2831), + [anon_sym_LT_LT] = ACTIONS(2831), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2831), + [anon_sym_AMP_CARET] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_PIPE_PIPE] = ACTIONS(2831), + [anon_sym_or] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_QMARK_DOT] = ACTIONS(2831), + [anon_sym_POUND_LBRACK] = ACTIONS(2831), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_is] = ACTIONS(2833), + [anon_sym_BANGis] = ACTIONS(2831), + [anon_sym_in] = ACTIONS(2833), + [anon_sym_BANGin] = ACTIONS(2831), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2831), + [sym_rune_literal] = ACTIONS(2831), + [anon_sym_SQUOTE] = ACTIONS(2831), + [anon_sym_DQUOTE] = ACTIONS(2831), + [anon_sym_c_SQUOTE] = ACTIONS(2831), + [anon_sym_c_DQUOTE] = ACTIONS(2831), + [anon_sym_r_SQUOTE] = ACTIONS(2831), + [anon_sym_r_DQUOTE] = ACTIONS(2831), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2831), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), }, [1333] = { [sym_line_comment] = STATE(1333), [sym_block_comment] = STATE(1333), - [sym_identifier] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2729), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2211), - [anon_sym_as] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2209), - [anon_sym_COMMA] = ACTIONS(2209), - [anon_sym_RBRACE] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2209), - [anon_sym_PIPE] = ACTIONS(2211), - [anon_sym_fn] = ACTIONS(2211), - [anon_sym_PLUS] = ACTIONS(2211), - [anon_sym_DASH] = ACTIONS(2211), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_SLASH] = ACTIONS(2211), - [anon_sym_PERCENT] = ACTIONS(2209), - [anon_sym_LT] = ACTIONS(2211), - [anon_sym_GT] = ACTIONS(2211), - [anon_sym_EQ_EQ] = ACTIONS(2209), - [anon_sym_BANG_EQ] = ACTIONS(2209), - [anon_sym_LT_EQ] = ACTIONS(2209), - [anon_sym_GT_EQ] = ACTIONS(2209), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_RBRACK] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(2211), - [anon_sym_mut] = ACTIONS(2211), - [anon_sym_COLON] = ACTIONS(2209), - [anon_sym_PLUS_PLUS] = ACTIONS(2209), - [anon_sym_DASH_DASH] = ACTIONS(2209), - [anon_sym_QMARK] = ACTIONS(2211), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2211), - [anon_sym_spawn] = ACTIONS(2211), - [anon_sym_json_DOTdecode] = ACTIONS(2209), - [anon_sym_LBRACK2] = ACTIONS(2211), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_CARET] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2211), - [anon_sym_LT_DASH] = ACTIONS(2209), - [anon_sym_LT_LT] = ACTIONS(2209), - [anon_sym_GT_GT] = ACTIONS(2211), - [anon_sym_GT_GT_GT] = ACTIONS(2209), - [anon_sym_AMP_CARET] = ACTIONS(2209), - [anon_sym_AMP_AMP] = ACTIONS(2209), - [anon_sym_PIPE_PIPE] = ACTIONS(2209), - [anon_sym_or] = ACTIONS(2211), - [sym_none] = ACTIONS(2211), - [sym_true] = ACTIONS(2211), - [sym_false] = ACTIONS(2211), - [sym_nil] = ACTIONS(2211), - [anon_sym_QMARK_DOT] = ACTIONS(2209), - [anon_sym_POUND_LBRACK] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2211), - [anon_sym_DOLLARif] = ACTIONS(2211), - [anon_sym_is] = ACTIONS(2211), - [anon_sym_BANGis] = ACTIONS(2209), - [anon_sym_in] = ACTIONS(2211), - [anon_sym_BANGin] = ACTIONS(2209), - [anon_sym_match] = ACTIONS(2211), - [anon_sym_select] = ACTIONS(2211), - [anon_sym_lock] = ACTIONS(2211), - [anon_sym_rlock] = ACTIONS(2211), - [anon_sym_unsafe] = ACTIONS(2211), - [anon_sym_sql] = ACTIONS(2211), - [sym_int_literal] = ACTIONS(2211), - [sym_float_literal] = ACTIONS(2209), - [sym_rune_literal] = ACTIONS(2209), - [sym_pseudo_compile_time_identifier] = ACTIONS(2211), - [anon_sym_shared] = ACTIONS(2211), - [anon_sym_map_LBRACK] = ACTIONS(2209), - [anon_sym_chan] = ACTIONS(2211), - [anon_sym_thread] = ACTIONS(2211), - [anon_sym_atomic] = ACTIONS(2211), - [sym___double_quote] = ACTIONS(2209), - [sym___single_quote] = ACTIONS(2209), - [sym___c_double_quote] = ACTIONS(2209), - [sym___c_single_quote] = ACTIONS(2209), - [sym___r_double_quote] = ACTIONS(2209), - [sym___r_single_quote] = ACTIONS(2209), + [anon_sym_DOT] = ACTIONS(2729), + [anon_sym_as] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2729), + [anon_sym_fn] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_SLASH] = ACTIONS(2729), + [anon_sym_PERCENT] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2729), + [anon_sym_GT] = ACTIONS(2729), + [anon_sym_EQ_EQ] = ACTIONS(2727), + [anon_sym_BANG_EQ] = ACTIONS(2727), + [anon_sym_LT_EQ] = ACTIONS(2727), + [anon_sym_GT_EQ] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2727), + [anon_sym_RBRACK] = ACTIONS(2727), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_mut] = ACTIONS(2729), + [anon_sym_COLON] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_QMARK] = ACTIONS(2729), + [anon_sym_BANG] = ACTIONS(2729), + [anon_sym_go] = ACTIONS(2729), + [anon_sym_spawn] = ACTIONS(2729), + [anon_sym_json_DOTdecode] = ACTIONS(2727), + [anon_sym_LBRACK2] = ACTIONS(2729), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_CARET] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_LT_DASH] = ACTIONS(2727), + [anon_sym_LT_LT] = ACTIONS(2727), + [anon_sym_GT_GT] = ACTIONS(2729), + [anon_sym_GT_GT_GT] = ACTIONS(2727), + [anon_sym_AMP_CARET] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_PIPE_PIPE] = ACTIONS(2727), + [anon_sym_or] = ACTIONS(2729), + [sym_none] = ACTIONS(2729), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_nil] = ACTIONS(2729), + [anon_sym_QMARK_DOT] = ACTIONS(2727), + [anon_sym_POUND_LBRACK] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_DOLLARif] = ACTIONS(2729), + [anon_sym_is] = ACTIONS(2729), + [anon_sym_BANGis] = ACTIONS(2727), + [anon_sym_in] = ACTIONS(2729), + [anon_sym_BANGin] = ACTIONS(2727), + [anon_sym_match] = ACTIONS(2729), + [anon_sym_select] = ACTIONS(2729), + [anon_sym_lock] = ACTIONS(2729), + [anon_sym_rlock] = ACTIONS(2729), + [anon_sym_unsafe] = ACTIONS(2729), + [anon_sym_sql] = ACTIONS(2729), + [sym_int_literal] = ACTIONS(2729), + [sym_float_literal] = ACTIONS(2727), + [sym_rune_literal] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [anon_sym_c_SQUOTE] = ACTIONS(2727), + [anon_sym_c_DQUOTE] = ACTIONS(2727), + [anon_sym_r_SQUOTE] = ACTIONS(2727), + [anon_sym_r_DQUOTE] = ACTIONS(2727), + [sym_pseudo_compile_time_identifier] = ACTIONS(2729), + [anon_sym_shared] = ACTIONS(2729), + [anon_sym_map_LBRACK] = ACTIONS(2727), + [anon_sym_chan] = ACTIONS(2729), + [anon_sym_thread] = ACTIONS(2729), + [anon_sym_atomic] = ACTIONS(2729), }, [1334] = { [sym_line_comment] = STATE(1334), [sym_block_comment] = STATE(1334), - [sym_identifier] = ACTIONS(2854), + [sym_identifier] = ACTIONS(2767), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_as] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2852), - [anon_sym_COMMA] = ACTIONS(2852), - [anon_sym_RBRACE] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_fn] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2852), - [anon_sym_SLASH] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2852), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_GT] = ACTIONS(2854), - [anon_sym_EQ_EQ] = ACTIONS(2852), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [anon_sym_LT_EQ] = ACTIONS(2852), - [anon_sym_GT_EQ] = ACTIONS(2852), - [anon_sym_LBRACK] = ACTIONS(2852), - [anon_sym_RBRACK] = ACTIONS(2852), - [anon_sym_struct] = ACTIONS(2854), - [anon_sym_mut] = ACTIONS(2854), - [anon_sym_COLON] = ACTIONS(2852), - [anon_sym_PLUS_PLUS] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2852), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2854), - [anon_sym_go] = ACTIONS(2854), - [anon_sym_spawn] = ACTIONS(2854), - [anon_sym_json_DOTdecode] = ACTIONS(2852), - [anon_sym_LBRACK2] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2852), - [anon_sym_CARET] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2852), - [anon_sym_LT_LT] = ACTIONS(2852), - [anon_sym_GT_GT] = ACTIONS(2854), - [anon_sym_GT_GT_GT] = ACTIONS(2852), - [anon_sym_AMP_CARET] = ACTIONS(2852), - [anon_sym_AMP_AMP] = ACTIONS(2852), - [anon_sym_PIPE_PIPE] = ACTIONS(2852), - [anon_sym_or] = ACTIONS(2854), - [sym_none] = ACTIONS(2854), - [sym_true] = ACTIONS(2854), - [sym_false] = ACTIONS(2854), - [sym_nil] = ACTIONS(2854), - [anon_sym_QMARK_DOT] = ACTIONS(2852), - [anon_sym_POUND_LBRACK] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_DOLLARif] = ACTIONS(2854), - [anon_sym_is] = ACTIONS(2854), - [anon_sym_BANGis] = ACTIONS(2852), - [anon_sym_in] = ACTIONS(2854), - [anon_sym_BANGin] = ACTIONS(2852), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_select] = ACTIONS(2854), - [anon_sym_lock] = ACTIONS(2854), - [anon_sym_rlock] = ACTIONS(2854), - [anon_sym_unsafe] = ACTIONS(2854), - [anon_sym_sql] = ACTIONS(2854), - [sym_int_literal] = ACTIONS(2854), - [sym_float_literal] = ACTIONS(2852), - [sym_rune_literal] = ACTIONS(2852), - [sym_pseudo_compile_time_identifier] = ACTIONS(2854), - [anon_sym_shared] = ACTIONS(2854), - [anon_sym_map_LBRACK] = ACTIONS(2852), - [anon_sym_chan] = ACTIONS(2854), - [anon_sym_thread] = ACTIONS(2854), - [anon_sym_atomic] = ACTIONS(2854), - [sym___double_quote] = ACTIONS(2852), - [sym___single_quote] = ACTIONS(2852), - [sym___c_double_quote] = ACTIONS(2852), - [sym___c_single_quote] = ACTIONS(2852), - [sym___r_double_quote] = ACTIONS(2852), - [sym___r_single_quote] = ACTIONS(2852), + [anon_sym_DOT] = ACTIONS(2767), + [anon_sym_as] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2765), + [anon_sym_COMMA] = ACTIONS(2765), + [anon_sym_RBRACE] = ACTIONS(2765), + [anon_sym_LPAREN] = ACTIONS(2765), + [anon_sym_PIPE] = ACTIONS(2767), + [anon_sym_fn] = ACTIONS(2767), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2765), + [anon_sym_SLASH] = ACTIONS(2767), + [anon_sym_PERCENT] = ACTIONS(2765), + [anon_sym_LT] = ACTIONS(2767), + [anon_sym_GT] = ACTIONS(2767), + [anon_sym_EQ_EQ] = ACTIONS(2765), + [anon_sym_BANG_EQ] = ACTIONS(2765), + [anon_sym_LT_EQ] = ACTIONS(2765), + [anon_sym_GT_EQ] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_RBRACK] = ACTIONS(2765), + [anon_sym_struct] = ACTIONS(2767), + [anon_sym_mut] = ACTIONS(2767), + [anon_sym_COLON] = ACTIONS(2765), + [anon_sym_PLUS_PLUS] = ACTIONS(2765), + [anon_sym_DASH_DASH] = ACTIONS(2765), + [anon_sym_QMARK] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_go] = ACTIONS(2767), + [anon_sym_spawn] = ACTIONS(2767), + [anon_sym_json_DOTdecode] = ACTIONS(2765), + [anon_sym_LBRACK2] = ACTIONS(2767), + [anon_sym_TILDE] = ACTIONS(2765), + [anon_sym_CARET] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(2767), + [anon_sym_LT_DASH] = ACTIONS(2765), + [anon_sym_LT_LT] = ACTIONS(2765), + [anon_sym_GT_GT] = ACTIONS(2767), + [anon_sym_GT_GT_GT] = ACTIONS(2765), + [anon_sym_AMP_CARET] = ACTIONS(2765), + [anon_sym_AMP_AMP] = ACTIONS(2765), + [anon_sym_PIPE_PIPE] = ACTIONS(2765), + [anon_sym_or] = ACTIONS(2767), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_QMARK_DOT] = ACTIONS(2765), + [anon_sym_POUND_LBRACK] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2767), + [anon_sym_DOLLARif] = ACTIONS(2767), + [anon_sym_is] = ACTIONS(2767), + [anon_sym_BANGis] = ACTIONS(2765), + [anon_sym_in] = ACTIONS(2767), + [anon_sym_BANGin] = ACTIONS(2765), + [anon_sym_match] = ACTIONS(2767), + [anon_sym_select] = ACTIONS(2767), + [anon_sym_lock] = ACTIONS(2767), + [anon_sym_rlock] = ACTIONS(2767), + [anon_sym_unsafe] = ACTIONS(2767), + [anon_sym_sql] = ACTIONS(2767), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2765), + [sym_rune_literal] = ACTIONS(2765), + [anon_sym_SQUOTE] = ACTIONS(2765), + [anon_sym_DQUOTE] = ACTIONS(2765), + [anon_sym_c_SQUOTE] = ACTIONS(2765), + [anon_sym_c_DQUOTE] = ACTIONS(2765), + [anon_sym_r_SQUOTE] = ACTIONS(2765), + [anon_sym_r_DQUOTE] = ACTIONS(2765), + [sym_pseudo_compile_time_identifier] = ACTIONS(2767), + [anon_sym_shared] = ACTIONS(2767), + [anon_sym_map_LBRACK] = ACTIONS(2765), + [anon_sym_chan] = ACTIONS(2767), + [anon_sym_thread] = ACTIONS(2767), + [anon_sym_atomic] = ACTIONS(2767), }, [1335] = { [sym_line_comment] = STATE(1335), [sym_block_comment] = STATE(1335), - [sym_identifier] = ACTIONS(2894), + [sym_identifier] = ACTIONS(2771), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_as] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_COMMA] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2892), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_PIPE] = ACTIONS(2894), - [anon_sym_fn] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_SLASH] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_GT] = ACTIONS(2894), - [anon_sym_EQ_EQ] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_LT_EQ] = ACTIONS(2892), - [anon_sym_GT_EQ] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_RBRACK] = ACTIONS(2892), - [anon_sym_struct] = ACTIONS(2894), - [anon_sym_mut] = ACTIONS(2894), - [anon_sym_COLON] = ACTIONS(2892), - [anon_sym_PLUS_PLUS] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2892), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_go] = ACTIONS(2894), - [anon_sym_spawn] = ACTIONS(2894), - [anon_sym_json_DOTdecode] = ACTIONS(2892), - [anon_sym_LBRACK2] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2892), - [anon_sym_CARET] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2892), - [anon_sym_LT_LT] = ACTIONS(2892), - [anon_sym_GT_GT] = ACTIONS(2894), - [anon_sym_GT_GT_GT] = ACTIONS(2892), - [anon_sym_AMP_CARET] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_or] = ACTIONS(2894), - [sym_none] = ACTIONS(2894), - [sym_true] = ACTIONS(2894), - [sym_false] = ACTIONS(2894), - [sym_nil] = ACTIONS(2894), - [anon_sym_QMARK_DOT] = ACTIONS(2892), - [anon_sym_POUND_LBRACK] = ACTIONS(2892), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_DOLLARif] = ACTIONS(2894), - [anon_sym_is] = ACTIONS(2894), - [anon_sym_BANGis] = ACTIONS(2892), - [anon_sym_in] = ACTIONS(2894), - [anon_sym_BANGin] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_select] = ACTIONS(2894), - [anon_sym_lock] = ACTIONS(2894), - [anon_sym_rlock] = ACTIONS(2894), - [anon_sym_unsafe] = ACTIONS(2894), - [anon_sym_sql] = ACTIONS(2894), - [sym_int_literal] = ACTIONS(2894), - [sym_float_literal] = ACTIONS(2892), - [sym_rune_literal] = ACTIONS(2892), - [sym_pseudo_compile_time_identifier] = ACTIONS(2894), - [anon_sym_shared] = ACTIONS(2894), - [anon_sym_map_LBRACK] = ACTIONS(2892), - [anon_sym_chan] = ACTIONS(2894), - [anon_sym_thread] = ACTIONS(2894), - [anon_sym_atomic] = ACTIONS(2894), - [sym___double_quote] = ACTIONS(2892), - [sym___single_quote] = ACTIONS(2892), - [sym___c_double_quote] = ACTIONS(2892), - [sym___c_single_quote] = ACTIONS(2892), - [sym___r_double_quote] = ACTIONS(2892), - [sym___r_single_quote] = ACTIONS(2892), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_as] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2769), + [anon_sym_COMMA] = ACTIONS(2769), + [anon_sym_RBRACE] = ACTIONS(2769), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_PIPE] = ACTIONS(2771), + [anon_sym_fn] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_PERCENT] = ACTIONS(2769), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_GT] = ACTIONS(2771), + [anon_sym_EQ_EQ] = ACTIONS(2769), + [anon_sym_BANG_EQ] = ACTIONS(2769), + [anon_sym_LT_EQ] = ACTIONS(2769), + [anon_sym_GT_EQ] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_RBRACK] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2771), + [anon_sym_mut] = ACTIONS(2771), + [anon_sym_COLON] = ACTIONS(2769), + [anon_sym_PLUS_PLUS] = ACTIONS(2769), + [anon_sym_DASH_DASH] = ACTIONS(2769), + [anon_sym_QMARK] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2771), + [anon_sym_spawn] = ACTIONS(2771), + [anon_sym_json_DOTdecode] = ACTIONS(2769), + [anon_sym_LBRACK2] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2769), + [anon_sym_CARET] = ACTIONS(2769), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_LT_DASH] = ACTIONS(2769), + [anon_sym_LT_LT] = ACTIONS(2769), + [anon_sym_GT_GT] = ACTIONS(2771), + [anon_sym_GT_GT_GT] = ACTIONS(2769), + [anon_sym_AMP_CARET] = ACTIONS(2769), + [anon_sym_AMP_AMP] = ACTIONS(2769), + [anon_sym_PIPE_PIPE] = ACTIONS(2769), + [anon_sym_or] = ACTIONS(2771), + [sym_none] = ACTIONS(2771), + [sym_true] = ACTIONS(2771), + [sym_false] = ACTIONS(2771), + [sym_nil] = ACTIONS(2771), + [anon_sym_QMARK_DOT] = ACTIONS(2769), + [anon_sym_POUND_LBRACK] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2771), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_is] = ACTIONS(2771), + [anon_sym_BANGis] = ACTIONS(2769), + [anon_sym_in] = ACTIONS(2771), + [anon_sym_BANGin] = ACTIONS(2769), + [anon_sym_match] = ACTIONS(2771), + [anon_sym_select] = ACTIONS(2771), + [anon_sym_lock] = ACTIONS(2771), + [anon_sym_rlock] = ACTIONS(2771), + [anon_sym_unsafe] = ACTIONS(2771), + [anon_sym_sql] = ACTIONS(2771), + [sym_int_literal] = ACTIONS(2771), + [sym_float_literal] = ACTIONS(2769), + [sym_rune_literal] = ACTIONS(2769), + [anon_sym_SQUOTE] = ACTIONS(2769), + [anon_sym_DQUOTE] = ACTIONS(2769), + [anon_sym_c_SQUOTE] = ACTIONS(2769), + [anon_sym_c_DQUOTE] = ACTIONS(2769), + [anon_sym_r_SQUOTE] = ACTIONS(2769), + [anon_sym_r_DQUOTE] = ACTIONS(2769), + [sym_pseudo_compile_time_identifier] = ACTIONS(2771), + [anon_sym_shared] = ACTIONS(2771), + [anon_sym_map_LBRACK] = ACTIONS(2769), + [anon_sym_chan] = ACTIONS(2771), + [anon_sym_thread] = ACTIONS(2771), + [anon_sym_atomic] = ACTIONS(2771), }, [1336] = { [sym_line_comment] = STATE(1336), [sym_block_comment] = STATE(1336), - [sym_identifier] = ACTIONS(2269), + [sym_identifier] = ACTIONS(2851), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2269), - [anon_sym_as] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_COMMA] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2269), - [anon_sym_fn] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_STAR] = ACTIONS(2267), - [anon_sym_SLASH] = ACTIONS(2269), - [anon_sym_PERCENT] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2269), - [anon_sym_GT] = ACTIONS(2269), - [anon_sym_EQ_EQ] = ACTIONS(2267), - [anon_sym_BANG_EQ] = ACTIONS(2267), - [anon_sym_LT_EQ] = ACTIONS(2267), - [anon_sym_GT_EQ] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_RBRACK] = ACTIONS(2267), - [anon_sym_struct] = ACTIONS(2269), - [anon_sym_mut] = ACTIONS(2269), - [anon_sym_COLON] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(2267), - [anon_sym_DASH_DASH] = ACTIONS(2267), - [anon_sym_QMARK] = ACTIONS(2269), - [anon_sym_BANG] = ACTIONS(2269), - [anon_sym_go] = ACTIONS(2269), - [anon_sym_spawn] = ACTIONS(2269), - [anon_sym_json_DOTdecode] = ACTIONS(2267), - [anon_sym_LBRACK2] = ACTIONS(2269), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2269), - [anon_sym_LT_DASH] = ACTIONS(2267), - [anon_sym_LT_LT] = ACTIONS(2267), - [anon_sym_GT_GT] = ACTIONS(2269), - [anon_sym_GT_GT_GT] = ACTIONS(2267), - [anon_sym_AMP_CARET] = ACTIONS(2267), - [anon_sym_AMP_AMP] = ACTIONS(2267), - [anon_sym_PIPE_PIPE] = ACTIONS(2267), - [anon_sym_or] = ACTIONS(2269), - [sym_none] = ACTIONS(2269), - [sym_true] = ACTIONS(2269), - [sym_false] = ACTIONS(2269), - [sym_nil] = ACTIONS(2269), - [anon_sym_QMARK_DOT] = ACTIONS(2267), - [anon_sym_POUND_LBRACK] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_DOLLARif] = ACTIONS(2269), - [anon_sym_is] = ACTIONS(2269), - [anon_sym_BANGis] = ACTIONS(2267), - [anon_sym_in] = ACTIONS(2269), - [anon_sym_BANGin] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_select] = ACTIONS(2269), - [anon_sym_lock] = ACTIONS(2269), - [anon_sym_rlock] = ACTIONS(2269), - [anon_sym_unsafe] = ACTIONS(2269), - [anon_sym_sql] = ACTIONS(2269), - [sym_int_literal] = ACTIONS(2269), - [sym_float_literal] = ACTIONS(2267), - [sym_rune_literal] = ACTIONS(2267), - [sym_pseudo_compile_time_identifier] = ACTIONS(2269), - [anon_sym_shared] = ACTIONS(2269), - [anon_sym_map_LBRACK] = ACTIONS(2267), - [anon_sym_chan] = ACTIONS(2269), - [anon_sym_thread] = ACTIONS(2269), - [anon_sym_atomic] = ACTIONS(2269), - [sym___double_quote] = ACTIONS(2267), - [sym___single_quote] = ACTIONS(2267), - [sym___c_double_quote] = ACTIONS(2267), - [sym___c_single_quote] = ACTIONS(2267), - [sym___r_double_quote] = ACTIONS(2267), - [sym___r_single_quote] = ACTIONS(2267), + [anon_sym_DOT] = ACTIONS(2851), + [anon_sym_as] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(2849), + [anon_sym_COMMA] = ACTIONS(2849), + [anon_sym_RBRACE] = ACTIONS(2849), + [anon_sym_LPAREN] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(2851), + [anon_sym_fn] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(2849), + [anon_sym_SLASH] = ACTIONS(2851), + [anon_sym_PERCENT] = ACTIONS(2849), + [anon_sym_LT] = ACTIONS(2851), + [anon_sym_GT] = ACTIONS(2851), + [anon_sym_EQ_EQ] = ACTIONS(2849), + [anon_sym_BANG_EQ] = ACTIONS(2849), + [anon_sym_LT_EQ] = ACTIONS(2849), + [anon_sym_GT_EQ] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_RBRACK] = ACTIONS(2849), + [anon_sym_struct] = ACTIONS(2851), + [anon_sym_mut] = ACTIONS(2851), + [anon_sym_COLON] = ACTIONS(2849), + [anon_sym_PLUS_PLUS] = ACTIONS(2849), + [anon_sym_DASH_DASH] = ACTIONS(2849), + [anon_sym_QMARK] = ACTIONS(2851), + [anon_sym_BANG] = ACTIONS(2851), + [anon_sym_go] = ACTIONS(2851), + [anon_sym_spawn] = ACTIONS(2851), + [anon_sym_json_DOTdecode] = ACTIONS(2849), + [anon_sym_LBRACK2] = ACTIONS(2851), + [anon_sym_TILDE] = ACTIONS(2849), + [anon_sym_CARET] = ACTIONS(2849), + [anon_sym_AMP] = ACTIONS(2851), + [anon_sym_LT_DASH] = ACTIONS(2849), + [anon_sym_LT_LT] = ACTIONS(2849), + [anon_sym_GT_GT] = ACTIONS(2851), + [anon_sym_GT_GT_GT] = ACTIONS(2849), + [anon_sym_AMP_CARET] = ACTIONS(2849), + [anon_sym_AMP_AMP] = ACTIONS(2849), + [anon_sym_PIPE_PIPE] = ACTIONS(2849), + [anon_sym_or] = ACTIONS(2851), + [sym_none] = ACTIONS(2851), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [sym_nil] = ACTIONS(2851), + [anon_sym_QMARK_DOT] = ACTIONS(2849), + [anon_sym_POUND_LBRACK] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2851), + [anon_sym_DOLLARif] = ACTIONS(2851), + [anon_sym_is] = ACTIONS(2851), + [anon_sym_BANGis] = ACTIONS(2849), + [anon_sym_in] = ACTIONS(2851), + [anon_sym_BANGin] = ACTIONS(2849), + [anon_sym_match] = ACTIONS(2851), + [anon_sym_select] = ACTIONS(2851), + [anon_sym_lock] = ACTIONS(2851), + [anon_sym_rlock] = ACTIONS(2851), + [anon_sym_unsafe] = ACTIONS(2851), + [anon_sym_sql] = ACTIONS(2851), + [sym_int_literal] = ACTIONS(2851), + [sym_float_literal] = ACTIONS(2849), + [sym_rune_literal] = ACTIONS(2849), + [anon_sym_SQUOTE] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [anon_sym_c_SQUOTE] = ACTIONS(2849), + [anon_sym_c_DQUOTE] = ACTIONS(2849), + [anon_sym_r_SQUOTE] = ACTIONS(2849), + [anon_sym_r_DQUOTE] = ACTIONS(2849), + [sym_pseudo_compile_time_identifier] = ACTIONS(2851), + [anon_sym_shared] = ACTIONS(2851), + [anon_sym_map_LBRACK] = ACTIONS(2849), + [anon_sym_chan] = ACTIONS(2851), + [anon_sym_thread] = ACTIONS(2851), + [anon_sym_atomic] = ACTIONS(2851), }, [1337] = { [sym_line_comment] = STATE(1337), [sym_block_comment] = STATE(1337), - [sym_identifier] = ACTIONS(2890), + [sym_identifier] = ACTIONS(2887), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2890), - [anon_sym_as] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2888), - [anon_sym_COMMA] = ACTIONS(2888), - [anon_sym_RBRACE] = ACTIONS(2888), - [anon_sym_LPAREN] = ACTIONS(2888), - [anon_sym_PIPE] = ACTIONS(2890), - [anon_sym_fn] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2888), - [anon_sym_SLASH] = ACTIONS(2890), - [anon_sym_PERCENT] = ACTIONS(2888), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_GT] = ACTIONS(2890), - [anon_sym_EQ_EQ] = ACTIONS(2888), - [anon_sym_BANG_EQ] = ACTIONS(2888), - [anon_sym_LT_EQ] = ACTIONS(2888), - [anon_sym_GT_EQ] = ACTIONS(2888), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_RBRACK] = ACTIONS(2888), - [anon_sym_struct] = ACTIONS(2890), - [anon_sym_mut] = ACTIONS(2890), - [anon_sym_COLON] = ACTIONS(2888), - [anon_sym_PLUS_PLUS] = ACTIONS(2888), - [anon_sym_DASH_DASH] = ACTIONS(2888), - [anon_sym_QMARK] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2890), - [anon_sym_go] = ACTIONS(2890), - [anon_sym_spawn] = ACTIONS(2890), - [anon_sym_json_DOTdecode] = ACTIONS(2888), - [anon_sym_LBRACK2] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2888), - [anon_sym_CARET] = ACTIONS(2888), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_LT_DASH] = ACTIONS(2888), - [anon_sym_LT_LT] = ACTIONS(2888), - [anon_sym_GT_GT] = ACTIONS(2890), - [anon_sym_GT_GT_GT] = ACTIONS(2888), - [anon_sym_AMP_CARET] = ACTIONS(2888), - [anon_sym_AMP_AMP] = ACTIONS(2888), - [anon_sym_PIPE_PIPE] = ACTIONS(2888), - [anon_sym_or] = ACTIONS(2890), - [sym_none] = ACTIONS(2890), - [sym_true] = ACTIONS(2890), - [sym_false] = ACTIONS(2890), - [sym_nil] = ACTIONS(2890), - [anon_sym_QMARK_DOT] = ACTIONS(2888), - [anon_sym_POUND_LBRACK] = ACTIONS(2888), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_DOLLARif] = ACTIONS(2890), - [anon_sym_is] = ACTIONS(2890), - [anon_sym_BANGis] = ACTIONS(2888), - [anon_sym_in] = ACTIONS(2890), - [anon_sym_BANGin] = ACTIONS(2888), - [anon_sym_match] = ACTIONS(2890), - [anon_sym_select] = ACTIONS(2890), - [anon_sym_lock] = ACTIONS(2890), - [anon_sym_rlock] = ACTIONS(2890), - [anon_sym_unsafe] = ACTIONS(2890), - [anon_sym_sql] = ACTIONS(2890), - [sym_int_literal] = ACTIONS(2890), - [sym_float_literal] = ACTIONS(2888), - [sym_rune_literal] = ACTIONS(2888), - [sym_pseudo_compile_time_identifier] = ACTIONS(2890), - [anon_sym_shared] = ACTIONS(2890), - [anon_sym_map_LBRACK] = ACTIONS(2888), - [anon_sym_chan] = ACTIONS(2890), - [anon_sym_thread] = ACTIONS(2890), - [anon_sym_atomic] = ACTIONS(2890), - [sym___double_quote] = ACTIONS(2888), - [sym___single_quote] = ACTIONS(2888), - [sym___c_double_quote] = ACTIONS(2888), - [sym___c_single_quote] = ACTIONS(2888), - [sym___r_double_quote] = ACTIONS(2888), - [sym___r_single_quote] = ACTIONS(2888), + [anon_sym_SEMI] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_as] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_fn] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2885), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2885), + [anon_sym_BANG_EQ] = ACTIONS(2885), + [anon_sym_LT_EQ] = ACTIONS(2885), + [anon_sym_GT_EQ] = ACTIONS(2885), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_RBRACK] = ACTIONS(3913), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_mut] = ACTIONS(2887), + [anon_sym_COLON] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_QMARK] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2887), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2887), + [anon_sym_json_DOTdecode] = ACTIONS(2885), + [anon_sym_LBRACK2] = ACTIONS(2887), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_CARET] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2885), + [anon_sym_LT_LT] = ACTIONS(2885), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_GT_GT_GT] = ACTIONS(2885), + [anon_sym_AMP_CARET] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_PIPE_PIPE] = ACTIONS(2885), + [anon_sym_or] = ACTIONS(2887), + [sym_none] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_nil] = ACTIONS(2887), + [anon_sym_QMARK_DOT] = ACTIONS(2885), + [anon_sym_POUND_LBRACK] = ACTIONS(2885), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_DOLLARif] = ACTIONS(2887), + [anon_sym_is] = ACTIONS(2887), + [anon_sym_BANGis] = ACTIONS(2885), + [anon_sym_in] = ACTIONS(2887), + [anon_sym_BANGin] = ACTIONS(2885), + [anon_sym_match] = ACTIONS(2887), + [anon_sym_select] = ACTIONS(2887), + [anon_sym_lock] = ACTIONS(2887), + [anon_sym_rlock] = ACTIONS(2887), + [anon_sym_unsafe] = ACTIONS(2887), + [anon_sym_sql] = ACTIONS(2887), + [sym_int_literal] = ACTIONS(2887), + [sym_float_literal] = ACTIONS(2885), + [sym_rune_literal] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [anon_sym_c_SQUOTE] = ACTIONS(2885), + [anon_sym_c_DQUOTE] = ACTIONS(2885), + [anon_sym_r_SQUOTE] = ACTIONS(2885), + [anon_sym_r_DQUOTE] = ACTIONS(2885), + [sym_pseudo_compile_time_identifier] = ACTIONS(2887), + [anon_sym_shared] = ACTIONS(2887), + [anon_sym_map_LBRACK] = ACTIONS(2885), + [anon_sym_chan] = ACTIONS(2887), + [anon_sym_thread] = ACTIONS(2887), + [anon_sym_atomic] = ACTIONS(2887), }, [1338] = { [sym_line_comment] = STATE(1338), [sym_block_comment] = STATE(1338), - [sym_identifier] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2725), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_as] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_RBRACE] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_fn] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2868), - [anon_sym_SLASH] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2868), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_EQ_EQ] = ACTIONS(2868), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_LT_EQ] = ACTIONS(2868), - [anon_sym_GT_EQ] = ACTIONS(2868), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_RBRACK] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2870), - [anon_sym_mut] = ACTIONS(2870), - [anon_sym_COLON] = ACTIONS(2868), - [anon_sym_PLUS_PLUS] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_go] = ACTIONS(2870), - [anon_sym_spawn] = ACTIONS(2870), - [anon_sym_json_DOTdecode] = ACTIONS(2868), - [anon_sym_LBRACK2] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2868), - [anon_sym_CARET] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2868), - [anon_sym_LT_LT] = ACTIONS(2868), - [anon_sym_GT_GT] = ACTIONS(2870), - [anon_sym_GT_GT_GT] = ACTIONS(2868), - [anon_sym_AMP_CARET] = ACTIONS(2868), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_PIPE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2870), - [sym_none] = ACTIONS(2870), - [sym_true] = ACTIONS(2870), - [sym_false] = ACTIONS(2870), - [sym_nil] = ACTIONS(2870), - [anon_sym_QMARK_DOT] = ACTIONS(2868), - [anon_sym_POUND_LBRACK] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_DOLLARif] = ACTIONS(2870), - [anon_sym_is] = ACTIONS(2870), - [anon_sym_BANGis] = ACTIONS(2868), - [anon_sym_in] = ACTIONS(2870), - [anon_sym_BANGin] = ACTIONS(2868), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_select] = ACTIONS(2870), - [anon_sym_lock] = ACTIONS(2870), - [anon_sym_rlock] = ACTIONS(2870), - [anon_sym_unsafe] = ACTIONS(2870), - [anon_sym_sql] = ACTIONS(2870), - [sym_int_literal] = ACTIONS(2870), - [sym_float_literal] = ACTIONS(2868), - [sym_rune_literal] = ACTIONS(2868), - [sym_pseudo_compile_time_identifier] = ACTIONS(2870), - [anon_sym_shared] = ACTIONS(2870), - [anon_sym_map_LBRACK] = ACTIONS(2868), - [anon_sym_chan] = ACTIONS(2870), - [anon_sym_thread] = ACTIONS(2870), - [anon_sym_atomic] = ACTIONS(2870), - [sym___double_quote] = ACTIONS(2868), - [sym___single_quote] = ACTIONS(2868), - [sym___c_double_quote] = ACTIONS(2868), - [sym___c_single_quote] = ACTIONS(2868), - [sym___r_double_quote] = ACTIONS(2868), - [sym___r_single_quote] = ACTIONS(2868), + [anon_sym_DOT] = ACTIONS(2725), + [anon_sym_as] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_COMMA] = ACTIONS(2723), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_LPAREN] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_fn] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_SLASH] = ACTIONS(2725), + [anon_sym_PERCENT] = ACTIONS(2723), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_GT] = ACTIONS(2725), + [anon_sym_EQ_EQ] = ACTIONS(2723), + [anon_sym_BANG_EQ] = ACTIONS(2723), + [anon_sym_LT_EQ] = ACTIONS(2723), + [anon_sym_GT_EQ] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2723), + [anon_sym_RBRACK] = ACTIONS(2723), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_mut] = ACTIONS(2725), + [anon_sym_COLON] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_QMARK] = ACTIONS(2725), + [anon_sym_BANG] = ACTIONS(2725), + [anon_sym_go] = ACTIONS(2725), + [anon_sym_spawn] = ACTIONS(2725), + [anon_sym_json_DOTdecode] = ACTIONS(2723), + [anon_sym_LBRACK2] = ACTIONS(2725), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_CARET] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_LT_DASH] = ACTIONS(2723), + [anon_sym_LT_LT] = ACTIONS(2723), + [anon_sym_GT_GT] = ACTIONS(2725), + [anon_sym_GT_GT_GT] = ACTIONS(2723), + [anon_sym_AMP_CARET] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_PIPE_PIPE] = ACTIONS(2723), + [anon_sym_or] = ACTIONS(2725), + [sym_none] = ACTIONS(2725), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [sym_nil] = ACTIONS(2725), + [anon_sym_QMARK_DOT] = ACTIONS(2723), + [anon_sym_POUND_LBRACK] = ACTIONS(2723), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_DOLLARif] = ACTIONS(2725), + [anon_sym_is] = ACTIONS(2725), + [anon_sym_BANGis] = ACTIONS(2723), + [anon_sym_in] = ACTIONS(2725), + [anon_sym_BANGin] = ACTIONS(2723), + [anon_sym_match] = ACTIONS(2725), + [anon_sym_select] = ACTIONS(2725), + [anon_sym_lock] = ACTIONS(2725), + [anon_sym_rlock] = ACTIONS(2725), + [anon_sym_unsafe] = ACTIONS(2725), + [anon_sym_sql] = ACTIONS(2725), + [sym_int_literal] = ACTIONS(2725), + [sym_float_literal] = ACTIONS(2723), + [sym_rune_literal] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [anon_sym_c_SQUOTE] = ACTIONS(2723), + [anon_sym_c_DQUOTE] = ACTIONS(2723), + [anon_sym_r_SQUOTE] = ACTIONS(2723), + [anon_sym_r_DQUOTE] = ACTIONS(2723), + [sym_pseudo_compile_time_identifier] = ACTIONS(2725), + [anon_sym_shared] = ACTIONS(2725), + [anon_sym_map_LBRACK] = ACTIONS(2723), + [anon_sym_chan] = ACTIONS(2725), + [anon_sym_thread] = ACTIONS(2725), + [anon_sym_atomic] = ACTIONS(2725), }, [1339] = { [sym_line_comment] = STATE(1339), [sym_block_comment] = STATE(1339), - [sym_identifier] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2719), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2710), - [anon_sym_as] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_COMMA] = ACTIONS(2708), - [anon_sym_RBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_fn] = ACTIONS(2710), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_STAR] = ACTIONS(2708), - [anon_sym_SLASH] = ACTIONS(2710), - [anon_sym_PERCENT] = ACTIONS(2708), - [anon_sym_LT] = ACTIONS(2710), - [anon_sym_GT] = ACTIONS(2710), - [anon_sym_EQ_EQ] = ACTIONS(2708), - [anon_sym_BANG_EQ] = ACTIONS(2708), - [anon_sym_LT_EQ] = ACTIONS(2708), - [anon_sym_GT_EQ] = ACTIONS(2708), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_RBRACK] = ACTIONS(2708), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(2710), - [anon_sym_COLON] = ACTIONS(2708), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_QMARK] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(2710), - [anon_sym_go] = ACTIONS(2710), - [anon_sym_spawn] = ACTIONS(2710), - [anon_sym_json_DOTdecode] = ACTIONS(2708), - [anon_sym_LBRACK2] = ACTIONS(2710), - [anon_sym_TILDE] = ACTIONS(2708), - [anon_sym_CARET] = ACTIONS(2708), - [anon_sym_AMP] = ACTIONS(2710), - [anon_sym_LT_DASH] = ACTIONS(2708), - [anon_sym_LT_LT] = ACTIONS(2708), - [anon_sym_GT_GT] = ACTIONS(2710), - [anon_sym_GT_GT_GT] = ACTIONS(2708), - [anon_sym_AMP_CARET] = ACTIONS(2708), - [anon_sym_AMP_AMP] = ACTIONS(2708), - [anon_sym_PIPE_PIPE] = ACTIONS(2708), - [anon_sym_or] = ACTIONS(2710), - [sym_none] = ACTIONS(2710), - [sym_true] = ACTIONS(2710), - [sym_false] = ACTIONS(2710), - [sym_nil] = ACTIONS(2710), - [anon_sym_QMARK_DOT] = ACTIONS(2708), - [anon_sym_POUND_LBRACK] = ACTIONS(2708), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_DOLLARif] = ACTIONS(2710), - [anon_sym_is] = ACTIONS(2710), - [anon_sym_BANGis] = ACTIONS(2708), - [anon_sym_in] = ACTIONS(2710), - [anon_sym_BANGin] = ACTIONS(2708), - [anon_sym_match] = ACTIONS(2710), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2710), - [anon_sym_rlock] = ACTIONS(2710), - [anon_sym_unsafe] = ACTIONS(2710), - [anon_sym_sql] = ACTIONS(2710), - [sym_int_literal] = ACTIONS(2710), - [sym_float_literal] = ACTIONS(2708), - [sym_rune_literal] = ACTIONS(2708), - [sym_pseudo_compile_time_identifier] = ACTIONS(2710), - [anon_sym_shared] = ACTIONS(2710), - [anon_sym_map_LBRACK] = ACTIONS(2708), - [anon_sym_chan] = ACTIONS(2710), - [anon_sym_thread] = ACTIONS(2710), - [anon_sym_atomic] = ACTIONS(2710), - [sym___double_quote] = ACTIONS(2708), - [sym___single_quote] = ACTIONS(2708), - [sym___c_double_quote] = ACTIONS(2708), - [sym___c_single_quote] = ACTIONS(2708), - [sym___r_double_quote] = ACTIONS(2708), - [sym___r_single_quote] = ACTIONS(2708), + [anon_sym_DOT] = ACTIONS(2719), + [anon_sym_as] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2717), + [anon_sym_COMMA] = ACTIONS(2717), + [anon_sym_RBRACE] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_PIPE] = ACTIONS(2719), + [anon_sym_fn] = ACTIONS(2719), + [anon_sym_PLUS] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2719), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_SLASH] = ACTIONS(2719), + [anon_sym_PERCENT] = ACTIONS(2717), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_GT] = ACTIONS(2719), + [anon_sym_EQ_EQ] = ACTIONS(2717), + [anon_sym_BANG_EQ] = ACTIONS(2717), + [anon_sym_LT_EQ] = ACTIONS(2717), + [anon_sym_GT_EQ] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_RBRACK] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2719), + [anon_sym_mut] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(2717), + [anon_sym_PLUS_PLUS] = ACTIONS(2717), + [anon_sym_DASH_DASH] = ACTIONS(2717), + [anon_sym_QMARK] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_go] = ACTIONS(2719), + [anon_sym_spawn] = ACTIONS(2719), + [anon_sym_json_DOTdecode] = ACTIONS(2717), + [anon_sym_LBRACK2] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2717), + [anon_sym_CARET] = ACTIONS(2717), + [anon_sym_AMP] = ACTIONS(2719), + [anon_sym_LT_DASH] = ACTIONS(2717), + [anon_sym_LT_LT] = ACTIONS(2717), + [anon_sym_GT_GT] = ACTIONS(2719), + [anon_sym_GT_GT_GT] = ACTIONS(2717), + [anon_sym_AMP_CARET] = ACTIONS(2717), + [anon_sym_AMP_AMP] = ACTIONS(2717), + [anon_sym_PIPE_PIPE] = ACTIONS(2717), + [anon_sym_or] = ACTIONS(2719), + [sym_none] = ACTIONS(2719), + [sym_true] = ACTIONS(2719), + [sym_false] = ACTIONS(2719), + [sym_nil] = ACTIONS(2719), + [anon_sym_QMARK_DOT] = ACTIONS(2717), + [anon_sym_POUND_LBRACK] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2719), + [anon_sym_DOLLARif] = ACTIONS(2719), + [anon_sym_is] = ACTIONS(2719), + [anon_sym_BANGis] = ACTIONS(2717), + [anon_sym_in] = ACTIONS(2719), + [anon_sym_BANGin] = ACTIONS(2717), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_select] = ACTIONS(2719), + [anon_sym_lock] = ACTIONS(2719), + [anon_sym_rlock] = ACTIONS(2719), + [anon_sym_unsafe] = ACTIONS(2719), + [anon_sym_sql] = ACTIONS(2719), + [sym_int_literal] = ACTIONS(2719), + [sym_float_literal] = ACTIONS(2717), + [sym_rune_literal] = ACTIONS(2717), + [anon_sym_SQUOTE] = ACTIONS(2717), + [anon_sym_DQUOTE] = ACTIONS(2717), + [anon_sym_c_SQUOTE] = ACTIONS(2717), + [anon_sym_c_DQUOTE] = ACTIONS(2717), + [anon_sym_r_SQUOTE] = ACTIONS(2717), + [anon_sym_r_DQUOTE] = ACTIONS(2717), + [sym_pseudo_compile_time_identifier] = ACTIONS(2719), + [anon_sym_shared] = ACTIONS(2719), + [anon_sym_map_LBRACK] = ACTIONS(2717), + [anon_sym_chan] = ACTIONS(2719), + [anon_sym_thread] = ACTIONS(2719), + [anon_sym_atomic] = ACTIONS(2719), }, [1340] = { [sym_line_comment] = STATE(1340), [sym_block_comment] = STATE(1340), - [sym_type_parameters] = STATE(4093), - [sym_argument_list] = STATE(1361), - [sym_or_block] = STATE(1362), - [sym_identifier] = ACTIONS(3839), + [sym_identifier] = ACTIONS(2887), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3843), - [anon_sym_RBRACE] = ACTIONS(3843), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3845), - [anon_sym_fn] = ACTIONS(3839), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(3847), - [anon_sym_SLASH] = ACTIONS(3849), - [anon_sym_PERCENT] = ACTIONS(3847), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_EQ_EQ] = ACTIONS(3853), - [anon_sym_BANG_EQ] = ACTIONS(3853), - [anon_sym_LT_EQ] = ACTIONS(3853), - [anon_sym_GT_EQ] = ACTIONS(3853), - [anon_sym_LBRACK] = ACTIONS(3825), - [anon_sym_struct] = ACTIONS(3839), - [anon_sym_mut] = ACTIONS(3839), - [anon_sym_PLUS_PLUS] = ACTIONS(3857), - [anon_sym_DASH_DASH] = ACTIONS(3859), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_go] = ACTIONS(3839), - [anon_sym_spawn] = ACTIONS(3839), - [anon_sym_json_DOTdecode] = ACTIONS(3843), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(3843), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3849), - [anon_sym_LT_DASH] = ACTIONS(3843), - [anon_sym_LT_LT] = ACTIONS(3847), - [anon_sym_GT_GT] = ACTIONS(3849), - [anon_sym_GT_GT_GT] = ACTIONS(3847), - [anon_sym_AMP_CARET] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3863), - [anon_sym_PIPE_PIPE] = ACTIONS(3865), - [anon_sym_or] = ACTIONS(3867), - [sym_none] = ACTIONS(3839), - [sym_true] = ACTIONS(3839), - [sym_false] = ACTIONS(3839), - [sym_nil] = ACTIONS(3839), - [anon_sym_QMARK_DOT] = ACTIONS(3833), - [anon_sym_POUND_LBRACK] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(3839), - [anon_sym_DOLLARif] = ACTIONS(3839), - [anon_sym_is] = ACTIONS(3869), - [anon_sym_BANGis] = ACTIONS(3871), - [anon_sym_in] = ACTIONS(3873), - [anon_sym_BANGin] = ACTIONS(3875), - [anon_sym_match] = ACTIONS(3839), - [anon_sym_select] = ACTIONS(3839), - [anon_sym_lock] = ACTIONS(3839), - [anon_sym_rlock] = ACTIONS(3839), - [anon_sym_unsafe] = ACTIONS(3839), - [anon_sym_sql] = ACTIONS(3839), - [sym_int_literal] = ACTIONS(3839), - [sym_float_literal] = ACTIONS(3843), - [sym_rune_literal] = ACTIONS(3843), - [sym_pseudo_compile_time_identifier] = ACTIONS(3839), - [anon_sym_shared] = ACTIONS(3839), - [anon_sym_map_LBRACK] = ACTIONS(3843), - [anon_sym_chan] = ACTIONS(3839), - [anon_sym_thread] = ACTIONS(3839), - [anon_sym_atomic] = ACTIONS(3839), - [sym___double_quote] = ACTIONS(3843), - [sym___single_quote] = ACTIONS(3843), - [sym___c_double_quote] = ACTIONS(3843), - [sym___c_single_quote] = ACTIONS(3843), - [sym___r_double_quote] = ACTIONS(3843), - [sym___r_single_quote] = ACTIONS(3843), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_as] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_RBRACE] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_fn] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2885), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2885), + [anon_sym_BANG_EQ] = ACTIONS(2885), + [anon_sym_LT_EQ] = ACTIONS(2885), + [anon_sym_GT_EQ] = ACTIONS(2885), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_RBRACK] = ACTIONS(2885), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_mut] = ACTIONS(2887), + [anon_sym_COLON] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_QMARK] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2887), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2887), + [anon_sym_json_DOTdecode] = ACTIONS(2885), + [anon_sym_LBRACK2] = ACTIONS(2887), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_CARET] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2885), + [anon_sym_LT_LT] = ACTIONS(2885), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_GT_GT_GT] = ACTIONS(2885), + [anon_sym_AMP_CARET] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_PIPE_PIPE] = ACTIONS(2885), + [anon_sym_or] = ACTIONS(2887), + [sym_none] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_nil] = ACTIONS(2887), + [anon_sym_QMARK_DOT] = ACTIONS(2885), + [anon_sym_POUND_LBRACK] = ACTIONS(2885), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_DOLLARif] = ACTIONS(2887), + [anon_sym_is] = ACTIONS(2887), + [anon_sym_BANGis] = ACTIONS(2885), + [anon_sym_in] = ACTIONS(2887), + [anon_sym_BANGin] = ACTIONS(2885), + [anon_sym_match] = ACTIONS(2887), + [anon_sym_select] = ACTIONS(2887), + [anon_sym_lock] = ACTIONS(2887), + [anon_sym_rlock] = ACTIONS(2887), + [anon_sym_unsafe] = ACTIONS(2887), + [anon_sym_sql] = ACTIONS(2887), + [sym_int_literal] = ACTIONS(2887), + [sym_float_literal] = ACTIONS(2885), + [sym_rune_literal] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [anon_sym_c_SQUOTE] = ACTIONS(2885), + [anon_sym_c_DQUOTE] = ACTIONS(2885), + [anon_sym_r_SQUOTE] = ACTIONS(2885), + [anon_sym_r_DQUOTE] = ACTIONS(2885), + [sym_pseudo_compile_time_identifier] = ACTIONS(2887), + [anon_sym_shared] = ACTIONS(2887), + [anon_sym_map_LBRACK] = ACTIONS(2885), + [anon_sym_chan] = ACTIONS(2887), + [anon_sym_thread] = ACTIONS(2887), + [anon_sym_atomic] = ACTIONS(2887), }, [1341] = { [sym_line_comment] = STATE(1341), [sym_block_comment] = STATE(1341), - [sym_identifier] = ACTIONS(3050), + [sym_identifier] = ACTIONS(2197), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3050), - [anon_sym_as] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3048), - [anon_sym_RBRACE] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_fn] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3048), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_EQ_EQ] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3048), - [anon_sym_LT_EQ] = ACTIONS(3048), - [anon_sym_GT_EQ] = ACTIONS(3048), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_RBRACK] = ACTIONS(3048), - [anon_sym_struct] = ACTIONS(3050), - [anon_sym_mut] = ACTIONS(3050), - [anon_sym_COLON] = ACTIONS(3048), - [anon_sym_PLUS_PLUS] = ACTIONS(3048), - [anon_sym_DASH_DASH] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3050), - [anon_sym_go] = ACTIONS(3050), - [anon_sym_spawn] = ACTIONS(3050), - [anon_sym_json_DOTdecode] = ACTIONS(3048), - [anon_sym_LBRACK2] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3048), - [anon_sym_CARET] = ACTIONS(3048), - [anon_sym_AMP] = ACTIONS(3050), - [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_LT_LT] = ACTIONS(3048), - [anon_sym_GT_GT] = ACTIONS(3050), - [anon_sym_GT_GT_GT] = ACTIONS(3048), - [anon_sym_AMP_CARET] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_or] = ACTIONS(3050), - [sym_none] = ACTIONS(3050), - [sym_true] = ACTIONS(3050), - [sym_false] = ACTIONS(3050), - [sym_nil] = ACTIONS(3050), - [anon_sym_QMARK_DOT] = ACTIONS(3048), - [anon_sym_POUND_LBRACK] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_DOLLARif] = ACTIONS(3050), - [anon_sym_is] = ACTIONS(3050), - [anon_sym_BANGis] = ACTIONS(3048), - [anon_sym_in] = ACTIONS(3050), - [anon_sym_BANGin] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3050), - [anon_sym_select] = ACTIONS(3050), - [anon_sym_lock] = ACTIONS(3050), - [anon_sym_rlock] = ACTIONS(3050), - [anon_sym_unsafe] = ACTIONS(3050), - [anon_sym_sql] = ACTIONS(3050), - [sym_int_literal] = ACTIONS(3050), - [sym_float_literal] = ACTIONS(3048), - [sym_rune_literal] = ACTIONS(3048), - [sym_pseudo_compile_time_identifier] = ACTIONS(3050), - [anon_sym_shared] = ACTIONS(3050), - [anon_sym_map_LBRACK] = ACTIONS(3048), - [anon_sym_chan] = ACTIONS(3050), - [anon_sym_thread] = ACTIONS(3050), - [anon_sym_atomic] = ACTIONS(3050), - [sym___double_quote] = ACTIONS(3048), - [sym___single_quote] = ACTIONS(3048), - [sym___c_double_quote] = ACTIONS(3048), - [sym___c_single_quote] = ACTIONS(3048), - [sym___r_double_quote] = ACTIONS(3048), - [sym___r_single_quote] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2195), + [anon_sym_COMMA] = ACTIONS(2195), + [anon_sym_RBRACE] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2195), + [anon_sym_PIPE] = ACTIONS(2197), + [anon_sym_fn] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2195), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_PERCENT] = ACTIONS(2195), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_GT] = ACTIONS(2197), + [anon_sym_EQ_EQ] = ACTIONS(2195), + [anon_sym_BANG_EQ] = ACTIONS(2195), + [anon_sym_LT_EQ] = ACTIONS(2195), + [anon_sym_GT_EQ] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2195), + [anon_sym_RBRACK] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2197), + [anon_sym_mut] = ACTIONS(2197), + [anon_sym_COLON] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_QMARK] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_go] = ACTIONS(2197), + [anon_sym_spawn] = ACTIONS(2197), + [anon_sym_json_DOTdecode] = ACTIONS(2195), + [anon_sym_LBRACK2] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(2195), + [anon_sym_AMP] = ACTIONS(2197), + [anon_sym_LT_DASH] = ACTIONS(2195), + [anon_sym_LT_LT] = ACTIONS(2195), + [anon_sym_GT_GT] = ACTIONS(2197), + [anon_sym_GT_GT_GT] = ACTIONS(2195), + [anon_sym_AMP_CARET] = ACTIONS(2195), + [anon_sym_AMP_AMP] = ACTIONS(2195), + [anon_sym_PIPE_PIPE] = ACTIONS(2195), + [anon_sym_or] = ACTIONS(2197), + [sym_none] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_nil] = ACTIONS(2197), + [anon_sym_QMARK_DOT] = ACTIONS(2195), + [anon_sym_POUND_LBRACK] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_DOLLARif] = ACTIONS(2197), + [anon_sym_is] = ACTIONS(2197), + [anon_sym_BANGis] = ACTIONS(2195), + [anon_sym_in] = ACTIONS(2197), + [anon_sym_BANGin] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_select] = ACTIONS(2197), + [anon_sym_lock] = ACTIONS(2197), + [anon_sym_rlock] = ACTIONS(2197), + [anon_sym_unsafe] = ACTIONS(2197), + [anon_sym_sql] = ACTIONS(2197), + [sym_int_literal] = ACTIONS(2197), + [sym_float_literal] = ACTIONS(2195), + [sym_rune_literal] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_DQUOTE] = ACTIONS(2195), + [anon_sym_c_SQUOTE] = ACTIONS(2195), + [anon_sym_c_DQUOTE] = ACTIONS(2195), + [anon_sym_r_SQUOTE] = ACTIONS(2195), + [anon_sym_r_DQUOTE] = ACTIONS(2195), + [sym_pseudo_compile_time_identifier] = ACTIONS(2197), + [anon_sym_shared] = ACTIONS(2197), + [anon_sym_map_LBRACK] = ACTIONS(2195), + [anon_sym_chan] = ACTIONS(2197), + [anon_sym_thread] = ACTIONS(2197), + [anon_sym_atomic] = ACTIONS(2197), }, [1342] = { [sym_line_comment] = STATE(1342), [sym_block_comment] = STATE(1342), - [sym_identifier] = ACTIONS(2910), + [sym_identifier] = ACTIONS(2749), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2910), - [anon_sym_as] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_COMMA] = ACTIONS(2908), - [anon_sym_RBRACE] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_PIPE] = ACTIONS(2910), - [anon_sym_fn] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2908), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_PERCENT] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_GT] = ACTIONS(2910), - [anon_sym_EQ_EQ] = ACTIONS(2908), - [anon_sym_BANG_EQ] = ACTIONS(2908), - [anon_sym_LT_EQ] = ACTIONS(2908), - [anon_sym_GT_EQ] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_RBRACK] = ACTIONS(2908), - [anon_sym_struct] = ACTIONS(2910), - [anon_sym_mut] = ACTIONS(2910), - [anon_sym_COLON] = ACTIONS(2908), - [anon_sym_PLUS_PLUS] = ACTIONS(2908), - [anon_sym_DASH_DASH] = ACTIONS(2908), - [anon_sym_QMARK] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_go] = ACTIONS(2910), - [anon_sym_spawn] = ACTIONS(2910), - [anon_sym_json_DOTdecode] = ACTIONS(2908), - [anon_sym_LBRACK2] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2908), - [anon_sym_CARET] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_LT_DASH] = ACTIONS(2908), - [anon_sym_LT_LT] = ACTIONS(2908), - [anon_sym_GT_GT] = ACTIONS(2910), - [anon_sym_GT_GT_GT] = ACTIONS(2908), - [anon_sym_AMP_CARET] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(2908), - [anon_sym_PIPE_PIPE] = ACTIONS(2908), - [anon_sym_or] = ACTIONS(2910), - [sym_none] = ACTIONS(2910), - [sym_true] = ACTIONS(2910), - [sym_false] = ACTIONS(2910), - [sym_nil] = ACTIONS(2910), - [anon_sym_QMARK_DOT] = ACTIONS(2908), - [anon_sym_POUND_LBRACK] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2910), - [anon_sym_DOLLARif] = ACTIONS(2910), - [anon_sym_is] = ACTIONS(2910), - [anon_sym_BANGis] = ACTIONS(2908), - [anon_sym_in] = ACTIONS(2910), - [anon_sym_BANGin] = ACTIONS(2908), - [anon_sym_match] = ACTIONS(2910), - [anon_sym_select] = ACTIONS(2910), - [anon_sym_lock] = ACTIONS(2910), - [anon_sym_rlock] = ACTIONS(2910), - [anon_sym_unsafe] = ACTIONS(2910), - [anon_sym_sql] = ACTIONS(2910), - [sym_int_literal] = ACTIONS(2910), - [sym_float_literal] = ACTIONS(2908), - [sym_rune_literal] = ACTIONS(2908), - [sym_pseudo_compile_time_identifier] = ACTIONS(2910), - [anon_sym_shared] = ACTIONS(2910), - [anon_sym_map_LBRACK] = ACTIONS(2908), - [anon_sym_chan] = ACTIONS(2910), - [anon_sym_thread] = ACTIONS(2910), - [anon_sym_atomic] = ACTIONS(2910), - [sym___double_quote] = ACTIONS(2908), - [sym___single_quote] = ACTIONS(2908), - [sym___c_double_quote] = ACTIONS(2908), - [sym___c_single_quote] = ACTIONS(2908), - [sym___r_double_quote] = ACTIONS(2908), - [sym___r_single_quote] = ACTIONS(2908), + [anon_sym_DOT] = ACTIONS(2749), + [anon_sym_as] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2747), + [anon_sym_COMMA] = ACTIONS(2747), + [anon_sym_RBRACE] = ACTIONS(2747), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_PIPE] = ACTIONS(2749), + [anon_sym_fn] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_SLASH] = ACTIONS(2749), + [anon_sym_PERCENT] = ACTIONS(2747), + [anon_sym_LT] = ACTIONS(2749), + [anon_sym_GT] = ACTIONS(2749), + [anon_sym_EQ_EQ] = ACTIONS(2747), + [anon_sym_BANG_EQ] = ACTIONS(2747), + [anon_sym_LT_EQ] = ACTIONS(2747), + [anon_sym_GT_EQ] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_RBRACK] = ACTIONS(2747), + [anon_sym_struct] = ACTIONS(2749), + [anon_sym_mut] = ACTIONS(2749), + [anon_sym_COLON] = ACTIONS(2747), + [anon_sym_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2747), + [anon_sym_QMARK] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_go] = ACTIONS(2749), + [anon_sym_spawn] = ACTIONS(2749), + [anon_sym_json_DOTdecode] = ACTIONS(2747), + [anon_sym_LBRACK2] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_LT_DASH] = ACTIONS(2747), + [anon_sym_LT_LT] = ACTIONS(2747), + [anon_sym_GT_GT] = ACTIONS(2749), + [anon_sym_GT_GT_GT] = ACTIONS(2747), + [anon_sym_AMP_CARET] = ACTIONS(2747), + [anon_sym_AMP_AMP] = ACTIONS(2747), + [anon_sym_PIPE_PIPE] = ACTIONS(2747), + [anon_sym_or] = ACTIONS(2749), + [sym_none] = ACTIONS(2749), + [sym_true] = ACTIONS(2749), + [sym_false] = ACTIONS(2749), + [sym_nil] = ACTIONS(2749), + [anon_sym_QMARK_DOT] = ACTIONS(2747), + [anon_sym_POUND_LBRACK] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_DOLLARif] = ACTIONS(2749), + [anon_sym_is] = ACTIONS(2749), + [anon_sym_BANGis] = ACTIONS(2747), + [anon_sym_in] = ACTIONS(2749), + [anon_sym_BANGin] = ACTIONS(2747), + [anon_sym_match] = ACTIONS(2749), + [anon_sym_select] = ACTIONS(2749), + [anon_sym_lock] = ACTIONS(2749), + [anon_sym_rlock] = ACTIONS(2749), + [anon_sym_unsafe] = ACTIONS(2749), + [anon_sym_sql] = ACTIONS(2749), + [sym_int_literal] = ACTIONS(2749), + [sym_float_literal] = ACTIONS(2747), + [sym_rune_literal] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2747), + [anon_sym_DQUOTE] = ACTIONS(2747), + [anon_sym_c_SQUOTE] = ACTIONS(2747), + [anon_sym_c_DQUOTE] = ACTIONS(2747), + [anon_sym_r_SQUOTE] = ACTIONS(2747), + [anon_sym_r_DQUOTE] = ACTIONS(2747), + [sym_pseudo_compile_time_identifier] = ACTIONS(2749), + [anon_sym_shared] = ACTIONS(2749), + [anon_sym_map_LBRACK] = ACTIONS(2747), + [anon_sym_chan] = ACTIONS(2749), + [anon_sym_thread] = ACTIONS(2749), + [anon_sym_atomic] = ACTIONS(2749), }, [1343] = { [sym_line_comment] = STATE(1343), [sym_block_comment] = STATE(1343), - [sym_identifier] = ACTIONS(2886), + [sym_identifier] = ACTIONS(2193), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_RBRACE] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(2886), - [anon_sym_fn] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_SLASH] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2886), - [anon_sym_GT] = ACTIONS(2886), - [anon_sym_EQ_EQ] = ACTIONS(2884), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_LT_EQ] = ACTIONS(2884), - [anon_sym_GT_EQ] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_RBRACK] = ACTIONS(2884), - [anon_sym_struct] = ACTIONS(2886), - [anon_sym_mut] = ACTIONS(2886), - [anon_sym_COLON] = ACTIONS(2884), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_go] = ACTIONS(2886), - [anon_sym_spawn] = ACTIONS(2886), - [anon_sym_json_DOTdecode] = ACTIONS(2884), - [anon_sym_LBRACK2] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_CARET] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2884), - [anon_sym_LT_LT] = ACTIONS(2884), - [anon_sym_GT_GT] = ACTIONS(2886), - [anon_sym_GT_GT_GT] = ACTIONS(2884), - [anon_sym_AMP_CARET] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_PIPE_PIPE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2886), - [sym_none] = ACTIONS(2886), - [sym_true] = ACTIONS(2886), - [sym_false] = ACTIONS(2886), - [sym_nil] = ACTIONS(2886), - [anon_sym_QMARK_DOT] = ACTIONS(2884), - [anon_sym_POUND_LBRACK] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_DOLLARif] = ACTIONS(2886), - [anon_sym_is] = ACTIONS(2886), - [anon_sym_BANGis] = ACTIONS(2884), - [anon_sym_in] = ACTIONS(2886), - [anon_sym_BANGin] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_select] = ACTIONS(2886), - [anon_sym_lock] = ACTIONS(2886), - [anon_sym_rlock] = ACTIONS(2886), - [anon_sym_unsafe] = ACTIONS(2886), - [anon_sym_sql] = ACTIONS(2886), - [sym_int_literal] = ACTIONS(2886), - [sym_float_literal] = ACTIONS(2884), - [sym_rune_literal] = ACTIONS(2884), - [sym_pseudo_compile_time_identifier] = ACTIONS(2886), - [anon_sym_shared] = ACTIONS(2886), - [anon_sym_map_LBRACK] = ACTIONS(2884), - [anon_sym_chan] = ACTIONS(2886), - [anon_sym_thread] = ACTIONS(2886), - [anon_sym_atomic] = ACTIONS(2886), - [sym___double_quote] = ACTIONS(2884), - [sym___single_quote] = ACTIONS(2884), - [sym___c_double_quote] = ACTIONS(2884), - [sym___c_single_quote] = ACTIONS(2884), - [sym___r_double_quote] = ACTIONS(2884), - [sym___r_single_quote] = ACTIONS(2884), + [anon_sym_DOT] = ACTIONS(2193), + [anon_sym_as] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_fn] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_GT] = ACTIONS(2193), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_RBRACK] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2193), + [anon_sym_mut] = ACTIONS(2193), + [anon_sym_COLON] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_QMARK] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_go] = ACTIONS(2193), + [anon_sym_spawn] = ACTIONS(2193), + [anon_sym_json_DOTdecode] = ACTIONS(2191), + [anon_sym_LBRACK2] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_LT_DASH] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2193), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_AMP_CARET] = ACTIONS(2191), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_or] = ACTIONS(2193), + [sym_none] = ACTIONS(2193), + [sym_true] = ACTIONS(2193), + [sym_false] = ACTIONS(2193), + [sym_nil] = ACTIONS(2193), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_POUND_LBRACK] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_DOLLARif] = ACTIONS(2193), + [anon_sym_is] = ACTIONS(2193), + [anon_sym_BANGis] = ACTIONS(2191), + [anon_sym_in] = ACTIONS(2193), + [anon_sym_BANGin] = ACTIONS(2191), + [anon_sym_match] = ACTIONS(2193), + [anon_sym_select] = ACTIONS(2193), + [anon_sym_lock] = ACTIONS(2193), + [anon_sym_rlock] = ACTIONS(2193), + [anon_sym_unsafe] = ACTIONS(2193), + [anon_sym_sql] = ACTIONS(2193), + [sym_int_literal] = ACTIONS(2193), + [sym_float_literal] = ACTIONS(2191), + [sym_rune_literal] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2191), + [anon_sym_c_SQUOTE] = ACTIONS(2191), + [anon_sym_c_DQUOTE] = ACTIONS(2191), + [anon_sym_r_SQUOTE] = ACTIONS(2191), + [anon_sym_r_DQUOTE] = ACTIONS(2191), + [sym_pseudo_compile_time_identifier] = ACTIONS(2193), + [anon_sym_shared] = ACTIONS(2193), + [anon_sym_map_LBRACK] = ACTIONS(2191), + [anon_sym_chan] = ACTIONS(2193), + [anon_sym_thread] = ACTIONS(2193), + [anon_sym_atomic] = ACTIONS(2193), }, [1344] = { [sym_line_comment] = STATE(1344), [sym_block_comment] = STATE(1344), - [sym_identifier] = ACTIONS(2714), + [sym_identifier] = ACTIONS(2707), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2714), - [anon_sym_as] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_COMMA] = ACTIONS(2712), - [anon_sym_RBRACE] = ACTIONS(2712), - [anon_sym_LPAREN] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_fn] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_STAR] = ACTIONS(2712), - [anon_sym_SLASH] = ACTIONS(2714), - [anon_sym_PERCENT] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2714), - [anon_sym_GT] = ACTIONS(2714), - [anon_sym_EQ_EQ] = ACTIONS(2712), - [anon_sym_BANG_EQ] = ACTIONS(2712), - [anon_sym_LT_EQ] = ACTIONS(2712), - [anon_sym_GT_EQ] = ACTIONS(2712), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_RBRACK] = ACTIONS(2712), - [anon_sym_struct] = ACTIONS(2714), - [anon_sym_mut] = ACTIONS(2714), - [anon_sym_COLON] = ACTIONS(2712), - [anon_sym_PLUS_PLUS] = ACTIONS(2712), - [anon_sym_DASH_DASH] = ACTIONS(2712), - [anon_sym_QMARK] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(2714), - [anon_sym_go] = ACTIONS(2714), - [anon_sym_spawn] = ACTIONS(2714), - [anon_sym_json_DOTdecode] = ACTIONS(2712), - [anon_sym_LBRACK2] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2712), - [anon_sym_CARET] = ACTIONS(2712), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_LT_DASH] = ACTIONS(2712), - [anon_sym_LT_LT] = ACTIONS(2712), - [anon_sym_GT_GT] = ACTIONS(2714), - [anon_sym_GT_GT_GT] = ACTIONS(2712), - [anon_sym_AMP_CARET] = ACTIONS(2712), - [anon_sym_AMP_AMP] = ACTIONS(2712), - [anon_sym_PIPE_PIPE] = ACTIONS(2712), - [anon_sym_or] = ACTIONS(2714), - [sym_none] = ACTIONS(2714), - [sym_true] = ACTIONS(2714), - [sym_false] = ACTIONS(2714), - [sym_nil] = ACTIONS(2714), - [anon_sym_QMARK_DOT] = ACTIONS(2712), - [anon_sym_POUND_LBRACK] = ACTIONS(2712), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_is] = ACTIONS(2714), - [anon_sym_BANGis] = ACTIONS(2712), - [anon_sym_in] = ACTIONS(2714), - [anon_sym_BANGin] = ACTIONS(2712), - [anon_sym_match] = ACTIONS(2714), - [anon_sym_select] = ACTIONS(2714), - [anon_sym_lock] = ACTIONS(2714), - [anon_sym_rlock] = ACTIONS(2714), - [anon_sym_unsafe] = ACTIONS(2714), - [anon_sym_sql] = ACTIONS(2714), - [sym_int_literal] = ACTIONS(2714), - [sym_float_literal] = ACTIONS(2712), - [sym_rune_literal] = ACTIONS(2712), - [sym_pseudo_compile_time_identifier] = ACTIONS(2714), - [anon_sym_shared] = ACTIONS(2714), - [anon_sym_map_LBRACK] = ACTIONS(2712), - [anon_sym_chan] = ACTIONS(2714), - [anon_sym_thread] = ACTIONS(2714), - [anon_sym_atomic] = ACTIONS(2714), - [sym___double_quote] = ACTIONS(2712), - [sym___single_quote] = ACTIONS(2712), - [sym___c_double_quote] = ACTIONS(2712), - [sym___c_single_quote] = ACTIONS(2712), - [sym___r_double_quote] = ACTIONS(2712), - [sym___r_single_quote] = ACTIONS(2712), + [anon_sym_DOT] = ACTIONS(2707), + [anon_sym_as] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_COMMA] = ACTIONS(2705), + [anon_sym_RBRACE] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2707), + [anon_sym_fn] = ACTIONS(2707), + [anon_sym_PLUS] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2707), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_SLASH] = ACTIONS(2707), + [anon_sym_PERCENT] = ACTIONS(2705), + [anon_sym_LT] = ACTIONS(2707), + [anon_sym_GT] = ACTIONS(2707), + [anon_sym_EQ_EQ] = ACTIONS(2705), + [anon_sym_BANG_EQ] = ACTIONS(2705), + [anon_sym_LT_EQ] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_RBRACK] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2707), + [anon_sym_mut] = ACTIONS(2707), + [anon_sym_COLON] = ACTIONS(2705), + [anon_sym_PLUS_PLUS] = ACTIONS(2705), + [anon_sym_DASH_DASH] = ACTIONS(2705), + [anon_sym_QMARK] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_go] = ACTIONS(2707), + [anon_sym_spawn] = ACTIONS(2707), + [anon_sym_json_DOTdecode] = ACTIONS(2705), + [anon_sym_LBRACK2] = ACTIONS(2707), + [anon_sym_TILDE] = ACTIONS(2705), + [anon_sym_CARET] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2707), + [anon_sym_LT_DASH] = ACTIONS(2705), + [anon_sym_LT_LT] = ACTIONS(2705), + [anon_sym_GT_GT] = ACTIONS(2707), + [anon_sym_GT_GT_GT] = ACTIONS(2705), + [anon_sym_AMP_CARET] = ACTIONS(2705), + [anon_sym_AMP_AMP] = ACTIONS(2705), + [anon_sym_PIPE_PIPE] = ACTIONS(2705), + [anon_sym_or] = ACTIONS(2707), + [sym_none] = ACTIONS(2707), + [sym_true] = ACTIONS(2707), + [sym_false] = ACTIONS(2707), + [sym_nil] = ACTIONS(2707), + [anon_sym_QMARK_DOT] = ACTIONS(2705), + [anon_sym_POUND_LBRACK] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2707), + [anon_sym_DOLLARif] = ACTIONS(2707), + [anon_sym_is] = ACTIONS(2707), + [anon_sym_BANGis] = ACTIONS(2705), + [anon_sym_in] = ACTIONS(2707), + [anon_sym_BANGin] = ACTIONS(2705), + [anon_sym_match] = ACTIONS(2707), + [anon_sym_select] = ACTIONS(2707), + [anon_sym_lock] = ACTIONS(2707), + [anon_sym_rlock] = ACTIONS(2707), + [anon_sym_unsafe] = ACTIONS(2707), + [anon_sym_sql] = ACTIONS(2707), + [sym_int_literal] = ACTIONS(2707), + [sym_float_literal] = ACTIONS(2705), + [sym_rune_literal] = ACTIONS(2705), + [anon_sym_SQUOTE] = ACTIONS(2705), + [anon_sym_DQUOTE] = ACTIONS(2705), + [anon_sym_c_SQUOTE] = ACTIONS(2705), + [anon_sym_c_DQUOTE] = ACTIONS(2705), + [anon_sym_r_SQUOTE] = ACTIONS(2705), + [anon_sym_r_DQUOTE] = ACTIONS(2705), + [sym_pseudo_compile_time_identifier] = ACTIONS(2707), + [anon_sym_shared] = ACTIONS(2707), + [anon_sym_map_LBRACK] = ACTIONS(2705), + [anon_sym_chan] = ACTIONS(2707), + [anon_sym_thread] = ACTIONS(2707), + [anon_sym_atomic] = ACTIONS(2707), }, [1345] = { [sym_line_comment] = STATE(1345), [sym_block_comment] = STATE(1345), - [sym_identifier] = ACTIONS(2297), + [sym_identifier] = ACTIONS(2475), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2295), - [anon_sym_COMMA] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_fn] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2295), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2295), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2295), - [anon_sym_BANG_EQ] = ACTIONS(2295), - [anon_sym_LT_EQ] = ACTIONS(2295), - [anon_sym_GT_EQ] = ACTIONS(2295), - [anon_sym_LBRACK] = ACTIONS(2295), - [anon_sym_RBRACK] = ACTIONS(2295), - [anon_sym_struct] = ACTIONS(2297), - [anon_sym_mut] = ACTIONS(2297), - [anon_sym_COLON] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(2295), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_QMARK] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_go] = ACTIONS(2297), - [anon_sym_spawn] = ACTIONS(2297), - [anon_sym_json_DOTdecode] = ACTIONS(2295), - [anon_sym_LBRACK2] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_LT_DASH] = ACTIONS(2295), - [anon_sym_LT_LT] = ACTIONS(2295), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2295), - [anon_sym_AMP_CARET] = ACTIONS(2295), - [anon_sym_AMP_AMP] = ACTIONS(2295), - [anon_sym_PIPE_PIPE] = ACTIONS(2295), - [anon_sym_or] = ACTIONS(2297), - [sym_none] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_nil] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2295), - [anon_sym_POUND_LBRACK] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_DOLLARif] = ACTIONS(2297), - [anon_sym_is] = ACTIONS(2297), - [anon_sym_BANGis] = ACTIONS(2295), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_BANGin] = ACTIONS(2295), - [anon_sym_match] = ACTIONS(2297), - [anon_sym_select] = ACTIONS(2297), - [anon_sym_lock] = ACTIONS(2297), - [anon_sym_rlock] = ACTIONS(2297), - [anon_sym_unsafe] = ACTIONS(2297), - [anon_sym_sql] = ACTIONS(2297), - [sym_int_literal] = ACTIONS(2297), - [sym_float_literal] = ACTIONS(2295), - [sym_rune_literal] = ACTIONS(2295), - [sym_pseudo_compile_time_identifier] = ACTIONS(2297), - [anon_sym_shared] = ACTIONS(2297), - [anon_sym_map_LBRACK] = ACTIONS(2295), - [anon_sym_chan] = ACTIONS(2297), - [anon_sym_thread] = ACTIONS(2297), - [anon_sym_atomic] = ACTIONS(2297), - [sym___double_quote] = ACTIONS(2295), - [sym___single_quote] = ACTIONS(2295), - [sym___c_double_quote] = ACTIONS(2295), - [sym___c_single_quote] = ACTIONS(2295), - [sym___r_double_quote] = ACTIONS(2295), - [sym___r_single_quote] = ACTIONS(2295), + [anon_sym_DOT] = ACTIONS(2475), + [anon_sym_as] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_COMMA] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_fn] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_SLASH] = ACTIONS(2475), + [anon_sym_PERCENT] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT] = ACTIONS(2475), + [anon_sym_EQ_EQ] = ACTIONS(2473), + [anon_sym_BANG_EQ] = ACTIONS(2473), + [anon_sym_LT_EQ] = ACTIONS(2473), + [anon_sym_GT_EQ] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_RBRACK] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2475), + [anon_sym_mut] = ACTIONS(2475), + [anon_sym_COLON] = ACTIONS(2473), + [anon_sym_PLUS_PLUS] = ACTIONS(2473), + [anon_sym_DASH_DASH] = ACTIONS(2473), + [anon_sym_QMARK] = ACTIONS(2475), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_go] = ACTIONS(2475), + [anon_sym_spawn] = ACTIONS(2475), + [anon_sym_json_DOTdecode] = ACTIONS(2473), + [anon_sym_LBRACK2] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2473), + [anon_sym_CARET] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_LT_DASH] = ACTIONS(2473), + [anon_sym_LT_LT] = ACTIONS(2473), + [anon_sym_GT_GT] = ACTIONS(2475), + [anon_sym_GT_GT_GT] = ACTIONS(2473), + [anon_sym_AMP_CARET] = ACTIONS(2473), + [anon_sym_AMP_AMP] = ACTIONS(2473), + [anon_sym_PIPE_PIPE] = ACTIONS(2473), + [anon_sym_or] = ACTIONS(2475), + [sym_none] = ACTIONS(2475), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_nil] = ACTIONS(2475), + [anon_sym_QMARK_DOT] = ACTIONS(2473), + [anon_sym_POUND_LBRACK] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_DOLLARif] = ACTIONS(2475), + [anon_sym_is] = ACTIONS(2475), + [anon_sym_BANGis] = ACTIONS(2473), + [anon_sym_in] = ACTIONS(2475), + [anon_sym_BANGin] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_select] = ACTIONS(2475), + [anon_sym_lock] = ACTIONS(2475), + [anon_sym_rlock] = ACTIONS(2475), + [anon_sym_unsafe] = ACTIONS(2475), + [anon_sym_sql] = ACTIONS(2475), + [sym_int_literal] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2473), + [sym_rune_literal] = ACTIONS(2473), + [anon_sym_SQUOTE] = ACTIONS(2473), + [anon_sym_DQUOTE] = ACTIONS(2473), + [anon_sym_c_SQUOTE] = ACTIONS(2473), + [anon_sym_c_DQUOTE] = ACTIONS(2473), + [anon_sym_r_SQUOTE] = ACTIONS(2473), + [anon_sym_r_DQUOTE] = ACTIONS(2473), + [sym_pseudo_compile_time_identifier] = ACTIONS(2475), + [anon_sym_shared] = ACTIONS(2475), + [anon_sym_map_LBRACK] = ACTIONS(2473), + [anon_sym_chan] = ACTIONS(2475), + [anon_sym_thread] = ACTIONS(2475), + [anon_sym_atomic] = ACTIONS(2475), }, [1346] = { [sym_line_comment] = STATE(1346), [sym_block_comment] = STATE(1346), - [sym_identifier] = ACTIONS(2858), + [sym_identifier] = ACTIONS(2159), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_RBRACE] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym_PIPE] = ACTIONS(2858), - [anon_sym_fn] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_SLASH] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2856), - [anon_sym_LT] = ACTIONS(2858), - [anon_sym_GT] = ACTIONS(2858), - [anon_sym_EQ_EQ] = ACTIONS(2856), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_LT_EQ] = ACTIONS(2856), - [anon_sym_GT_EQ] = ACTIONS(2856), - [anon_sym_LBRACK] = ACTIONS(2856), - [anon_sym_RBRACK] = ACTIONS(2856), - [anon_sym_struct] = ACTIONS(2858), - [anon_sym_mut] = ACTIONS(2858), - [anon_sym_COLON] = ACTIONS(2856), - [anon_sym_PLUS_PLUS] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2856), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_go] = ACTIONS(2858), - [anon_sym_spawn] = ACTIONS(2858), - [anon_sym_json_DOTdecode] = ACTIONS(2856), - [anon_sym_LBRACK2] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2856), - [anon_sym_LT_LT] = ACTIONS(2856), - [anon_sym_GT_GT] = ACTIONS(2858), - [anon_sym_GT_GT_GT] = ACTIONS(2856), - [anon_sym_AMP_CARET] = ACTIONS(2856), - [anon_sym_AMP_AMP] = ACTIONS(2856), - [anon_sym_PIPE_PIPE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2858), - [sym_none] = ACTIONS(2858), - [sym_true] = ACTIONS(2858), - [sym_false] = ACTIONS(2858), - [sym_nil] = ACTIONS(2858), - [anon_sym_QMARK_DOT] = ACTIONS(2856), - [anon_sym_POUND_LBRACK] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_DOLLARif] = ACTIONS(2858), - [anon_sym_is] = ACTIONS(2858), - [anon_sym_BANGis] = ACTIONS(2856), - [anon_sym_in] = ACTIONS(2858), - [anon_sym_BANGin] = ACTIONS(2856), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_select] = ACTIONS(2858), - [anon_sym_lock] = ACTIONS(2858), - [anon_sym_rlock] = ACTIONS(2858), - [anon_sym_unsafe] = ACTIONS(2858), - [anon_sym_sql] = ACTIONS(2858), - [sym_int_literal] = ACTIONS(2858), - [sym_float_literal] = ACTIONS(2856), - [sym_rune_literal] = ACTIONS(2856), - [sym_pseudo_compile_time_identifier] = ACTIONS(2858), - [anon_sym_shared] = ACTIONS(2858), - [anon_sym_map_LBRACK] = ACTIONS(2856), - [anon_sym_chan] = ACTIONS(2858), - [anon_sym_thread] = ACTIONS(2858), - [anon_sym_atomic] = ACTIONS(2858), - [sym___double_quote] = ACTIONS(2856), - [sym___single_quote] = ACTIONS(2856), - [sym___c_double_quote] = ACTIONS(2856), - [sym___c_single_quote] = ACTIONS(2856), - [sym___r_double_quote] = ACTIONS(2856), - [sym___r_single_quote] = ACTIONS(2856), + [anon_sym_DOT] = ACTIONS(2159), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_COMMA] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(2159), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_PERCENT] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_GT] = ACTIONS(2159), + [anon_sym_EQ_EQ] = ACTIONS(2157), + [anon_sym_BANG_EQ] = ACTIONS(2157), + [anon_sym_LT_EQ] = ACTIONS(2157), + [anon_sym_GT_EQ] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_RBRACK] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(2159), + [anon_sym_mut] = ACTIONS(2159), + [anon_sym_COLON] = ACTIONS(2157), + [anon_sym_PLUS_PLUS] = ACTIONS(2157), + [anon_sym_DASH_DASH] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(2159), + [anon_sym_spawn] = ACTIONS(2159), + [anon_sym_json_DOTdecode] = ACTIONS(2157), + [anon_sym_LBRACK2] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2157), + [anon_sym_CARET] = ACTIONS(2157), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_LT_DASH] = ACTIONS(2157), + [anon_sym_LT_LT] = ACTIONS(2157), + [anon_sym_GT_GT] = ACTIONS(2159), + [anon_sym_GT_GT_GT] = ACTIONS(2157), + [anon_sym_AMP_CARET] = ACTIONS(2157), + [anon_sym_AMP_AMP] = ACTIONS(2157), + [anon_sym_PIPE_PIPE] = ACTIONS(2157), + [anon_sym_or] = ACTIONS(2159), + [sym_none] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_nil] = ACTIONS(2159), + [anon_sym_QMARK_DOT] = ACTIONS(2157), + [anon_sym_POUND_LBRACK] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_DOLLARif] = ACTIONS(2159), + [anon_sym_is] = ACTIONS(2159), + [anon_sym_BANGis] = ACTIONS(2157), + [anon_sym_in] = ACTIONS(2159), + [anon_sym_BANGin] = ACTIONS(2157), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_select] = ACTIONS(2159), + [anon_sym_lock] = ACTIONS(2159), + [anon_sym_rlock] = ACTIONS(2159), + [anon_sym_unsafe] = ACTIONS(2159), + [anon_sym_sql] = ACTIONS(2159), + [sym_int_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2157), + [sym_rune_literal] = ACTIONS(2157), + [anon_sym_SQUOTE] = ACTIONS(2157), + [anon_sym_DQUOTE] = ACTIONS(2157), + [anon_sym_c_SQUOTE] = ACTIONS(2157), + [anon_sym_c_DQUOTE] = ACTIONS(2157), + [anon_sym_r_SQUOTE] = ACTIONS(2157), + [anon_sym_r_DQUOTE] = ACTIONS(2157), + [sym_pseudo_compile_time_identifier] = ACTIONS(2159), + [anon_sym_shared] = ACTIONS(2159), + [anon_sym_map_LBRACK] = ACTIONS(2157), + [anon_sym_chan] = ACTIONS(2159), + [anon_sym_thread] = ACTIONS(2159), + [anon_sym_atomic] = ACTIONS(2159), }, [1347] = { [sym_line_comment] = STATE(1347), [sym_block_comment] = STATE(1347), - [sym_identifier] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2105), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2303), - [anon_sym_as] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2301), - [anon_sym_COMMA] = ACTIONS(2301), - [anon_sym_RBRACE] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2303), - [anon_sym_fn] = ACTIONS(2303), - [anon_sym_PLUS] = ACTIONS(2303), - [anon_sym_DASH] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2301), - [anon_sym_SLASH] = ACTIONS(2303), - [anon_sym_PERCENT] = ACTIONS(2301), - [anon_sym_LT] = ACTIONS(2303), - [anon_sym_GT] = ACTIONS(2303), - [anon_sym_EQ_EQ] = ACTIONS(2301), - [anon_sym_BANG_EQ] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(2301), - [anon_sym_GT_EQ] = ACTIONS(2301), - [anon_sym_LBRACK] = ACTIONS(2301), - [anon_sym_RBRACK] = ACTIONS(2301), - [anon_sym_struct] = ACTIONS(2303), - [anon_sym_mut] = ACTIONS(2303), - [anon_sym_COLON] = ACTIONS(2301), - [anon_sym_PLUS_PLUS] = ACTIONS(2301), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_QMARK] = ACTIONS(2303), - [anon_sym_BANG] = ACTIONS(2303), - [anon_sym_go] = ACTIONS(2303), - [anon_sym_spawn] = ACTIONS(2303), - [anon_sym_json_DOTdecode] = ACTIONS(2301), - [anon_sym_LBRACK2] = ACTIONS(2303), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_CARET] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2303), - [anon_sym_LT_DASH] = ACTIONS(2301), - [anon_sym_LT_LT] = ACTIONS(2301), - [anon_sym_GT_GT] = ACTIONS(2303), - [anon_sym_GT_GT_GT] = ACTIONS(2301), - [anon_sym_AMP_CARET] = ACTIONS(2301), - [anon_sym_AMP_AMP] = ACTIONS(2301), - [anon_sym_PIPE_PIPE] = ACTIONS(2301), - [anon_sym_or] = ACTIONS(2303), - [sym_none] = ACTIONS(2303), - [sym_true] = ACTIONS(2303), - [sym_false] = ACTIONS(2303), - [sym_nil] = ACTIONS(2303), - [anon_sym_QMARK_DOT] = ACTIONS(2301), - [anon_sym_POUND_LBRACK] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2303), - [anon_sym_DOLLARif] = ACTIONS(2303), - [anon_sym_is] = ACTIONS(2303), - [anon_sym_BANGis] = ACTIONS(2301), - [anon_sym_in] = ACTIONS(2303), - [anon_sym_BANGin] = ACTIONS(2301), - [anon_sym_match] = ACTIONS(2303), - [anon_sym_select] = ACTIONS(2303), - [anon_sym_lock] = ACTIONS(2303), - [anon_sym_rlock] = ACTIONS(2303), - [anon_sym_unsafe] = ACTIONS(2303), - [anon_sym_sql] = ACTIONS(2303), - [sym_int_literal] = ACTIONS(2303), - [sym_float_literal] = ACTIONS(2301), - [sym_rune_literal] = ACTIONS(2301), - [sym_pseudo_compile_time_identifier] = ACTIONS(2303), - [anon_sym_shared] = ACTIONS(2303), - [anon_sym_map_LBRACK] = ACTIONS(2301), - [anon_sym_chan] = ACTIONS(2303), - [anon_sym_thread] = ACTIONS(2303), - [anon_sym_atomic] = ACTIONS(2303), - [sym___double_quote] = ACTIONS(2301), - [sym___single_quote] = ACTIONS(2301), - [sym___c_double_quote] = ACTIONS(2301), - [sym___c_single_quote] = ACTIONS(2301), - [sym___r_double_quote] = ACTIONS(2301), - [sym___r_single_quote] = ACTIONS(2301), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_COMMA] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2103), + [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PERCENT] = ACTIONS(2103), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2103), + [anon_sym_BANG_EQ] = ACTIONS(2103), + [anon_sym_LT_EQ] = ACTIONS(2103), + [anon_sym_GT_EQ] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_RBRACK] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_COLON] = ACTIONS(2103), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [anon_sym_QMARK] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_go] = ACTIONS(2105), + [anon_sym_spawn] = ACTIONS(2105), + [anon_sym_json_DOTdecode] = ACTIONS(2103), + [anon_sym_LBRACK2] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_LT_DASH] = ACTIONS(2103), + [anon_sym_LT_LT] = ACTIONS(2103), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2103), + [anon_sym_AMP_CARET] = ACTIONS(2103), + [anon_sym_AMP_AMP] = ACTIONS(2103), + [anon_sym_PIPE_PIPE] = ACTIONS(2103), + [anon_sym_or] = ACTIONS(2105), + [sym_none] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_nil] = ACTIONS(2105), + [anon_sym_QMARK_DOT] = ACTIONS(2103), + [anon_sym_POUND_LBRACK] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_DOLLARif] = ACTIONS(2105), + [anon_sym_is] = ACTIONS(2105), + [anon_sym_BANGis] = ACTIONS(2103), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_BANGin] = ACTIONS(2103), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_select] = ACTIONS(2105), + [anon_sym_lock] = ACTIONS(2105), + [anon_sym_rlock] = ACTIONS(2105), + [anon_sym_unsafe] = ACTIONS(2105), + [anon_sym_sql] = ACTIONS(2105), + [sym_int_literal] = ACTIONS(2105), + [sym_float_literal] = ACTIONS(2103), + [sym_rune_literal] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(2103), + [anon_sym_c_SQUOTE] = ACTIONS(2103), + [anon_sym_c_DQUOTE] = ACTIONS(2103), + [anon_sym_r_SQUOTE] = ACTIONS(2103), + [anon_sym_r_DQUOTE] = ACTIONS(2103), + [sym_pseudo_compile_time_identifier] = ACTIONS(2105), + [anon_sym_shared] = ACTIONS(2105), + [anon_sym_map_LBRACK] = ACTIONS(2103), + [anon_sym_chan] = ACTIONS(2105), + [anon_sym_thread] = ACTIONS(2105), + [anon_sym_atomic] = ACTIONS(2105), }, [1348] = { [sym_line_comment] = STATE(1348), [sym_block_comment] = STATE(1348), - [sym_identifier] = ACTIONS(3054), + [sym_identifier] = ACTIONS(2127), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_as] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_fn] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3052), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_LT_EQ] = ACTIONS(3052), - [anon_sym_GT_EQ] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_RBRACK] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_mut] = ACTIONS(3054), - [anon_sym_COLON] = ACTIONS(3052), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_BANG] = ACTIONS(3054), - [anon_sym_go] = ACTIONS(3054), - [anon_sym_spawn] = ACTIONS(3054), - [anon_sym_json_DOTdecode] = ACTIONS(3052), - [anon_sym_LBRACK2] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3052), - [anon_sym_CARET] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3052), - [anon_sym_LT_LT] = ACTIONS(3052), - [anon_sym_GT_GT] = ACTIONS(3054), - [anon_sym_GT_GT_GT] = ACTIONS(3052), - [anon_sym_AMP_CARET] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_or] = ACTIONS(3054), - [sym_none] = ACTIONS(3054), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [sym_nil] = ACTIONS(3054), - [anon_sym_QMARK_DOT] = ACTIONS(3052), - [anon_sym_POUND_LBRACK] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_DOLLARif] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3054), - [anon_sym_BANGis] = ACTIONS(3052), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3052), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_select] = ACTIONS(3054), - [anon_sym_lock] = ACTIONS(3054), - [anon_sym_rlock] = ACTIONS(3054), - [anon_sym_unsafe] = ACTIONS(3054), - [anon_sym_sql] = ACTIONS(3054), - [sym_int_literal] = ACTIONS(3054), - [sym_float_literal] = ACTIONS(3052), - [sym_rune_literal] = ACTIONS(3052), - [sym_pseudo_compile_time_identifier] = ACTIONS(3054), - [anon_sym_shared] = ACTIONS(3054), - [anon_sym_map_LBRACK] = ACTIONS(3052), - [anon_sym_chan] = ACTIONS(3054), - [anon_sym_thread] = ACTIONS(3054), - [anon_sym_atomic] = ACTIONS(3054), - [sym___double_quote] = ACTIONS(3052), - [sym___single_quote] = ACTIONS(3052), - [sym___c_double_quote] = ACTIONS(3052), - [sym___c_single_quote] = ACTIONS(3052), - [sym___r_double_quote] = ACTIONS(3052), - [sym___r_single_quote] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(2127), + [anon_sym_as] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_COMMA] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2127), + [anon_sym_fn] = ACTIONS(2127), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2127), + [anon_sym_PERCENT] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2127), + [anon_sym_GT] = ACTIONS(2127), + [anon_sym_EQ_EQ] = ACTIONS(2125), + [anon_sym_BANG_EQ] = ACTIONS(2125), + [anon_sym_LT_EQ] = ACTIONS(2125), + [anon_sym_GT_EQ] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_RBRACK] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2127), + [anon_sym_mut] = ACTIONS(2127), + [anon_sym_COLON] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [anon_sym_QMARK] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_go] = ACTIONS(2127), + [anon_sym_spawn] = ACTIONS(2127), + [anon_sym_json_DOTdecode] = ACTIONS(2125), + [anon_sym_LBRACK2] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2127), + [anon_sym_LT_DASH] = ACTIONS(2125), + [anon_sym_LT_LT] = ACTIONS(2125), + [anon_sym_GT_GT] = ACTIONS(2127), + [anon_sym_GT_GT_GT] = ACTIONS(2125), + [anon_sym_AMP_CARET] = ACTIONS(2125), + [anon_sym_AMP_AMP] = ACTIONS(2125), + [anon_sym_PIPE_PIPE] = ACTIONS(2125), + [anon_sym_or] = ACTIONS(2127), + [sym_none] = ACTIONS(2127), + [sym_true] = ACTIONS(2127), + [sym_false] = ACTIONS(2127), + [sym_nil] = ACTIONS(2127), + [anon_sym_QMARK_DOT] = ACTIONS(2125), + [anon_sym_POUND_LBRACK] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_DOLLARif] = ACTIONS(2127), + [anon_sym_is] = ACTIONS(2127), + [anon_sym_BANGis] = ACTIONS(2125), + [anon_sym_in] = ACTIONS(2127), + [anon_sym_BANGin] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2127), + [anon_sym_select] = ACTIONS(2127), + [anon_sym_lock] = ACTIONS(2127), + [anon_sym_rlock] = ACTIONS(2127), + [anon_sym_unsafe] = ACTIONS(2127), + [anon_sym_sql] = ACTIONS(2127), + [sym_int_literal] = ACTIONS(2127), + [sym_float_literal] = ACTIONS(2125), + [sym_rune_literal] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_c_SQUOTE] = ACTIONS(2125), + [anon_sym_c_DQUOTE] = ACTIONS(2125), + [anon_sym_r_SQUOTE] = ACTIONS(2125), + [anon_sym_r_DQUOTE] = ACTIONS(2125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2127), + [anon_sym_shared] = ACTIONS(2127), + [anon_sym_map_LBRACK] = ACTIONS(2125), + [anon_sym_chan] = ACTIONS(2127), + [anon_sym_thread] = ACTIONS(2127), + [anon_sym_atomic] = ACTIONS(2127), }, [1349] = { [sym_line_comment] = STATE(1349), [sym_block_comment] = STATE(1349), - [sym_identifier] = ACTIONS(2836), + [sym_identifier] = ACTIONS(2123), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2836), - [anon_sym_as] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(2834), - [anon_sym_RBRACE] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_fn] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_SLASH] = ACTIONS(2836), - [anon_sym_PERCENT] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_GT] = ACTIONS(2836), - [anon_sym_EQ_EQ] = ACTIONS(2834), - [anon_sym_BANG_EQ] = ACTIONS(2834), - [anon_sym_LT_EQ] = ACTIONS(2834), - [anon_sym_GT_EQ] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_RBRACK] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_mut] = ACTIONS(2836), - [anon_sym_COLON] = ACTIONS(2834), - [anon_sym_PLUS_PLUS] = ACTIONS(2834), - [anon_sym_DASH_DASH] = ACTIONS(2834), - [anon_sym_QMARK] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_go] = ACTIONS(2836), - [anon_sym_spawn] = ACTIONS(2836), - [anon_sym_json_DOTdecode] = ACTIONS(2834), - [anon_sym_LBRACK2] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2834), - [anon_sym_CARET] = ACTIONS(2834), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_LT_DASH] = ACTIONS(2834), - [anon_sym_LT_LT] = ACTIONS(2834), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_GT_GT_GT] = ACTIONS(2834), - [anon_sym_AMP_CARET] = ACTIONS(2834), - [anon_sym_AMP_AMP] = ACTIONS(2834), - [anon_sym_PIPE_PIPE] = ACTIONS(2834), - [anon_sym_or] = ACTIONS(2836), - [sym_none] = ACTIONS(2836), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [sym_nil] = ACTIONS(2836), - [anon_sym_QMARK_DOT] = ACTIONS(2834), - [anon_sym_POUND_LBRACK] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_DOLLARif] = ACTIONS(2836), - [anon_sym_is] = ACTIONS(2836), - [anon_sym_BANGis] = ACTIONS(2834), - [anon_sym_in] = ACTIONS(2836), - [anon_sym_BANGin] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2836), - [anon_sym_select] = ACTIONS(2836), - [anon_sym_lock] = ACTIONS(2836), - [anon_sym_rlock] = ACTIONS(2836), - [anon_sym_unsafe] = ACTIONS(2836), - [anon_sym_sql] = ACTIONS(2836), - [sym_int_literal] = ACTIONS(2836), - [sym_float_literal] = ACTIONS(2834), - [sym_rune_literal] = ACTIONS(2834), - [sym_pseudo_compile_time_identifier] = ACTIONS(2836), - [anon_sym_shared] = ACTIONS(2836), - [anon_sym_map_LBRACK] = ACTIONS(2834), - [anon_sym_chan] = ACTIONS(2836), - [anon_sym_thread] = ACTIONS(2836), - [anon_sym_atomic] = ACTIONS(2836), - [sym___double_quote] = ACTIONS(2834), - [sym___single_quote] = ACTIONS(2834), - [sym___c_double_quote] = ACTIONS(2834), - [sym___c_single_quote] = ACTIONS(2834), - [sym___r_double_quote] = ACTIONS(2834), - [sym___r_single_quote] = ACTIONS(2834), + [anon_sym_DOT] = ACTIONS(2123), + [anon_sym_as] = ACTIONS(2123), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_COMMA] = ACTIONS(2121), + [anon_sym_RBRACE] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2121), + [anon_sym_PIPE] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(2123), + [anon_sym_PLUS] = ACTIONS(2123), + [anon_sym_DASH] = ACTIONS(2123), + [anon_sym_STAR] = ACTIONS(2121), + [anon_sym_SLASH] = ACTIONS(2123), + [anon_sym_PERCENT] = ACTIONS(2121), + [anon_sym_LT] = ACTIONS(2123), + [anon_sym_GT] = ACTIONS(2123), + [anon_sym_EQ_EQ] = ACTIONS(2121), + [anon_sym_BANG_EQ] = ACTIONS(2121), + [anon_sym_LT_EQ] = ACTIONS(2121), + [anon_sym_GT_EQ] = ACTIONS(2121), + [anon_sym_LBRACK] = ACTIONS(2121), + [anon_sym_RBRACK] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_mut] = ACTIONS(2123), + [anon_sym_COLON] = ACTIONS(2121), + [anon_sym_PLUS_PLUS] = ACTIONS(2121), + [anon_sym_DASH_DASH] = ACTIONS(2121), + [anon_sym_QMARK] = ACTIONS(2123), + [anon_sym_BANG] = ACTIONS(2123), + [anon_sym_go] = ACTIONS(2123), + [anon_sym_spawn] = ACTIONS(2123), + [anon_sym_json_DOTdecode] = ACTIONS(2121), + [anon_sym_LBRACK2] = ACTIONS(2123), + [anon_sym_TILDE] = ACTIONS(2121), + [anon_sym_CARET] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2123), + [anon_sym_LT_DASH] = ACTIONS(2121), + [anon_sym_LT_LT] = ACTIONS(2121), + [anon_sym_GT_GT] = ACTIONS(2123), + [anon_sym_GT_GT_GT] = ACTIONS(2121), + [anon_sym_AMP_CARET] = ACTIONS(2121), + [anon_sym_AMP_AMP] = ACTIONS(2121), + [anon_sym_PIPE_PIPE] = ACTIONS(2121), + [anon_sym_or] = ACTIONS(2123), + [sym_none] = ACTIONS(2123), + [sym_true] = ACTIONS(2123), + [sym_false] = ACTIONS(2123), + [sym_nil] = ACTIONS(2123), + [anon_sym_QMARK_DOT] = ACTIONS(2121), + [anon_sym_POUND_LBRACK] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2123), + [anon_sym_DOLLARif] = ACTIONS(2123), + [anon_sym_is] = ACTIONS(2123), + [anon_sym_BANGis] = ACTIONS(2121), + [anon_sym_in] = ACTIONS(2123), + [anon_sym_BANGin] = ACTIONS(2121), + [anon_sym_match] = ACTIONS(2123), + [anon_sym_select] = ACTIONS(2123), + [anon_sym_lock] = ACTIONS(2123), + [anon_sym_rlock] = ACTIONS(2123), + [anon_sym_unsafe] = ACTIONS(2123), + [anon_sym_sql] = ACTIONS(2123), + [sym_int_literal] = ACTIONS(2123), + [sym_float_literal] = ACTIONS(2121), + [sym_rune_literal] = ACTIONS(2121), + [anon_sym_SQUOTE] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(2121), + [anon_sym_c_SQUOTE] = ACTIONS(2121), + [anon_sym_c_DQUOTE] = ACTIONS(2121), + [anon_sym_r_SQUOTE] = ACTIONS(2121), + [anon_sym_r_DQUOTE] = ACTIONS(2121), + [sym_pseudo_compile_time_identifier] = ACTIONS(2123), + [anon_sym_shared] = ACTIONS(2123), + [anon_sym_map_LBRACK] = ACTIONS(2121), + [anon_sym_chan] = ACTIONS(2123), + [anon_sym_thread] = ACTIONS(2123), + [anon_sym_atomic] = ACTIONS(2123), }, [1350] = { [sym_line_comment] = STATE(1350), [sym_block_comment] = STATE(1350), - [sym_identifier] = ACTIONS(2828), + [sym_identifier] = ACTIONS(2097), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_as] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2826), - [anon_sym_RBRACE] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2826), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_EQ_EQ] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2826), - [anon_sym_LT_EQ] = ACTIONS(2826), - [anon_sym_GT_EQ] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_RBRACK] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_mut] = ACTIONS(2828), - [anon_sym_COLON] = ACTIONS(2826), - [anon_sym_PLUS_PLUS] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_go] = ACTIONS(2828), - [anon_sym_spawn] = ACTIONS(2828), - [anon_sym_json_DOTdecode] = ACTIONS(2826), - [anon_sym_LBRACK2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2826), - [anon_sym_CARET] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_LT_DASH] = ACTIONS(2826), - [anon_sym_LT_LT] = ACTIONS(2826), - [anon_sym_GT_GT] = ACTIONS(2828), - [anon_sym_GT_GT_GT] = ACTIONS(2826), - [anon_sym_AMP_CARET] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_or] = ACTIONS(2828), - [sym_none] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_nil] = ACTIONS(2828), - [anon_sym_QMARK_DOT] = ACTIONS(2826), - [anon_sym_POUND_LBRACK] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_DOLLARif] = ACTIONS(2828), - [anon_sym_is] = ACTIONS(2828), - [anon_sym_BANGis] = ACTIONS(2826), - [anon_sym_in] = ACTIONS(2828), - [anon_sym_BANGin] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_select] = ACTIONS(2828), - [anon_sym_lock] = ACTIONS(2828), - [anon_sym_rlock] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_sql] = ACTIONS(2828), - [sym_int_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2826), - [sym_rune_literal] = ACTIONS(2826), - [sym_pseudo_compile_time_identifier] = ACTIONS(2828), - [anon_sym_shared] = ACTIONS(2828), - [anon_sym_map_LBRACK] = ACTIONS(2826), - [anon_sym_chan] = ACTIONS(2828), - [anon_sym_thread] = ACTIONS(2828), - [anon_sym_atomic] = ACTIONS(2828), - [sym___double_quote] = ACTIONS(2826), - [sym___single_quote] = ACTIONS(2826), - [sym___c_double_quote] = ACTIONS(2826), - [sym___c_single_quote] = ACTIONS(2826), - [sym___r_double_quote] = ACTIONS(2826), - [sym___r_single_quote] = ACTIONS(2826), + [anon_sym_DOT] = ACTIONS(2097), + [anon_sym_as] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_COMMA] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_PIPE] = ACTIONS(2097), + [anon_sym_fn] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_SLASH] = ACTIONS(2097), + [anon_sym_PERCENT] = ACTIONS(2095), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_GT] = ACTIONS(2097), + [anon_sym_EQ_EQ] = ACTIONS(2095), + [anon_sym_BANG_EQ] = ACTIONS(2095), + [anon_sym_LT_EQ] = ACTIONS(2095), + [anon_sym_GT_EQ] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2095), + [anon_sym_RBRACK] = ACTIONS(2095), + [anon_sym_struct] = ACTIONS(2097), + [anon_sym_mut] = ACTIONS(2097), + [anon_sym_COLON] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2095), + [anon_sym_QMARK] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_go] = ACTIONS(2097), + [anon_sym_spawn] = ACTIONS(2097), + [anon_sym_json_DOTdecode] = ACTIONS(2095), + [anon_sym_LBRACK2] = ACTIONS(2097), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_CARET] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2095), + [anon_sym_LT_LT] = ACTIONS(2095), + [anon_sym_GT_GT] = ACTIONS(2097), + [anon_sym_GT_GT_GT] = ACTIONS(2095), + [anon_sym_AMP_CARET] = ACTIONS(2095), + [anon_sym_AMP_AMP] = ACTIONS(2095), + [anon_sym_PIPE_PIPE] = ACTIONS(2095), + [anon_sym_or] = ACTIONS(2097), + [sym_none] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [sym_nil] = ACTIONS(2097), + [anon_sym_QMARK_DOT] = ACTIONS(2095), + [anon_sym_POUND_LBRACK] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_DOLLARif] = ACTIONS(2097), + [anon_sym_is] = ACTIONS(2097), + [anon_sym_BANGis] = ACTIONS(2095), + [anon_sym_in] = ACTIONS(2097), + [anon_sym_BANGin] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_select] = ACTIONS(2097), + [anon_sym_lock] = ACTIONS(2097), + [anon_sym_rlock] = ACTIONS(2097), + [anon_sym_unsafe] = ACTIONS(2097), + [anon_sym_sql] = ACTIONS(2097), + [sym_int_literal] = ACTIONS(2097), + [sym_float_literal] = ACTIONS(2095), + [sym_rune_literal] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2095), + [anon_sym_DQUOTE] = ACTIONS(2095), + [anon_sym_c_SQUOTE] = ACTIONS(2095), + [anon_sym_c_DQUOTE] = ACTIONS(2095), + [anon_sym_r_SQUOTE] = ACTIONS(2095), + [anon_sym_r_DQUOTE] = ACTIONS(2095), + [sym_pseudo_compile_time_identifier] = ACTIONS(2097), + [anon_sym_shared] = ACTIONS(2097), + [anon_sym_map_LBRACK] = ACTIONS(2095), + [anon_sym_chan] = ACTIONS(2097), + [anon_sym_thread] = ACTIONS(2097), + [anon_sym_atomic] = ACTIONS(2097), }, [1351] = { [sym_line_comment] = STATE(1351), [sym_block_comment] = STATE(1351), - [sym_identifier] = ACTIONS(2137), + [sym_identifier] = ACTIONS(2171), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2137), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_COMMA] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_PIPE] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2135), - [anon_sym_SLASH] = ACTIONS(2137), - [anon_sym_PERCENT] = ACTIONS(2135), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_GT] = ACTIONS(2137), - [anon_sym_EQ_EQ] = ACTIONS(2135), - [anon_sym_BANG_EQ] = ACTIONS(2135), - [anon_sym_LT_EQ] = ACTIONS(2135), - [anon_sym_GT_EQ] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_RBRACK] = ACTIONS(2135), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_mut] = ACTIONS(2137), - [anon_sym_COLON] = ACTIONS(2135), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [anon_sym_QMARK] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_go] = ACTIONS(2137), - [anon_sym_spawn] = ACTIONS(2137), - [anon_sym_json_DOTdecode] = ACTIONS(2135), - [anon_sym_LBRACK2] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_CARET] = ACTIONS(2135), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_LT_DASH] = ACTIONS(2135), - [anon_sym_LT_LT] = ACTIONS(2135), - [anon_sym_GT_GT] = ACTIONS(2137), - [anon_sym_GT_GT_GT] = ACTIONS(2135), - [anon_sym_AMP_CARET] = ACTIONS(2135), - [anon_sym_AMP_AMP] = ACTIONS(2135), - [anon_sym_PIPE_PIPE] = ACTIONS(2135), - [anon_sym_or] = ACTIONS(2137), - [sym_none] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_nil] = ACTIONS(2137), - [anon_sym_QMARK_DOT] = ACTIONS(2135), - [anon_sym_POUND_LBRACK] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_DOLLARif] = ACTIONS(2137), - [anon_sym_is] = ACTIONS(2137), - [anon_sym_BANGis] = ACTIONS(2135), - [anon_sym_in] = ACTIONS(2137), - [anon_sym_BANGin] = ACTIONS(2135), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_select] = ACTIONS(2137), - [anon_sym_lock] = ACTIONS(2137), - [anon_sym_rlock] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_sql] = ACTIONS(2137), - [sym_int_literal] = ACTIONS(2137), - [sym_float_literal] = ACTIONS(2135), - [sym_rune_literal] = ACTIONS(2135), - [sym_pseudo_compile_time_identifier] = ACTIONS(2137), - [anon_sym_shared] = ACTIONS(2137), - [anon_sym_map_LBRACK] = ACTIONS(2135), - [anon_sym_chan] = ACTIONS(2137), - [anon_sym_thread] = ACTIONS(2137), - [anon_sym_atomic] = ACTIONS(2137), - [sym___double_quote] = ACTIONS(2135), - [sym___single_quote] = ACTIONS(2135), - [sym___c_double_quote] = ACTIONS(2135), - [sym___c_single_quote] = ACTIONS(2135), - [sym___r_double_quote] = ACTIONS(2135), - [sym___r_single_quote] = ACTIONS(2135), + [anon_sym_DOT] = ACTIONS(2171), + [anon_sym_as] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2169), + [anon_sym_COMMA] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_PIPE] = ACTIONS(2171), + [anon_sym_fn] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_PERCENT] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_GT] = ACTIONS(2171), + [anon_sym_EQ_EQ] = ACTIONS(2169), + [anon_sym_BANG_EQ] = ACTIONS(2169), + [anon_sym_LT_EQ] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_RBRACK] = ACTIONS(2169), + [anon_sym_struct] = ACTIONS(2171), + [anon_sym_mut] = ACTIONS(2171), + [anon_sym_COLON] = ACTIONS(2169), + [anon_sym_PLUS_PLUS] = ACTIONS(2169), + [anon_sym_DASH_DASH] = ACTIONS(2169), + [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_go] = ACTIONS(2171), + [anon_sym_spawn] = ACTIONS(2171), + [anon_sym_json_DOTdecode] = ACTIONS(2169), + [anon_sym_LBRACK2] = ACTIONS(2171), + [anon_sym_TILDE] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2169), + [anon_sym_GT_GT] = ACTIONS(2171), + [anon_sym_GT_GT_GT] = ACTIONS(2169), + [anon_sym_AMP_CARET] = ACTIONS(2169), + [anon_sym_AMP_AMP] = ACTIONS(2169), + [anon_sym_PIPE_PIPE] = ACTIONS(2169), + [anon_sym_or] = ACTIONS(2171), + [sym_none] = ACTIONS(2171), + [sym_true] = ACTIONS(2171), + [sym_false] = ACTIONS(2171), + [sym_nil] = ACTIONS(2171), + [anon_sym_QMARK_DOT] = ACTIONS(2169), + [anon_sym_POUND_LBRACK] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2171), + [anon_sym_DOLLARif] = ACTIONS(2171), + [anon_sym_is] = ACTIONS(2171), + [anon_sym_BANGis] = ACTIONS(2169), + [anon_sym_in] = ACTIONS(2171), + [anon_sym_BANGin] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(2171), + [anon_sym_select] = ACTIONS(2171), + [anon_sym_lock] = ACTIONS(2171), + [anon_sym_rlock] = ACTIONS(2171), + [anon_sym_unsafe] = ACTIONS(2171), + [anon_sym_sql] = ACTIONS(2171), + [sym_int_literal] = ACTIONS(2171), + [sym_float_literal] = ACTIONS(2169), + [sym_rune_literal] = ACTIONS(2169), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2169), + [anon_sym_c_SQUOTE] = ACTIONS(2169), + [anon_sym_c_DQUOTE] = ACTIONS(2169), + [anon_sym_r_SQUOTE] = ACTIONS(2169), + [anon_sym_r_DQUOTE] = ACTIONS(2169), + [sym_pseudo_compile_time_identifier] = ACTIONS(2171), + [anon_sym_shared] = ACTIONS(2171), + [anon_sym_map_LBRACK] = ACTIONS(2169), + [anon_sym_chan] = ACTIONS(2171), + [anon_sym_thread] = ACTIONS(2171), + [anon_sym_atomic] = ACTIONS(2171), }, [1352] = { [sym_line_comment] = STATE(1352), [sym_block_comment] = STATE(1352), - [sym_identifier] = ACTIONS(2724), + [sym_identifier] = ACTIONS(2155), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2724), - [anon_sym_as] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_COMMA] = ACTIONS(2722), - [anon_sym_RBRACE] = ACTIONS(2722), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_fn] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_STAR] = ACTIONS(2722), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_PERCENT] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_GT] = ACTIONS(2724), - [anon_sym_EQ_EQ] = ACTIONS(2722), - [anon_sym_BANG_EQ] = ACTIONS(2722), - [anon_sym_LT_EQ] = ACTIONS(2722), - [anon_sym_GT_EQ] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_RBRACK] = ACTIONS(2722), - [anon_sym_struct] = ACTIONS(2724), - [anon_sym_mut] = ACTIONS(2724), - [anon_sym_COLON] = ACTIONS(2722), - [anon_sym_PLUS_PLUS] = ACTIONS(2722), - [anon_sym_DASH_DASH] = ACTIONS(2722), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_BANG] = ACTIONS(2724), - [anon_sym_go] = ACTIONS(2724), - [anon_sym_spawn] = ACTIONS(2724), - [anon_sym_json_DOTdecode] = ACTIONS(2722), - [anon_sym_LBRACK2] = ACTIONS(2724), - [anon_sym_TILDE] = ACTIONS(2722), - [anon_sym_CARET] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2724), - [anon_sym_LT_DASH] = ACTIONS(2722), - [anon_sym_LT_LT] = ACTIONS(2722), - [anon_sym_GT_GT] = ACTIONS(2724), - [anon_sym_GT_GT_GT] = ACTIONS(2722), - [anon_sym_AMP_CARET] = ACTIONS(2722), - [anon_sym_AMP_AMP] = ACTIONS(2722), - [anon_sym_PIPE_PIPE] = ACTIONS(2722), - [anon_sym_or] = ACTIONS(2724), - [sym_none] = ACTIONS(2724), - [sym_true] = ACTIONS(2724), - [sym_false] = ACTIONS(2724), - [sym_nil] = ACTIONS(2724), - [anon_sym_QMARK_DOT] = ACTIONS(2722), - [anon_sym_POUND_LBRACK] = ACTIONS(2722), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_DOLLARif] = ACTIONS(2724), - [anon_sym_is] = ACTIONS(2724), - [anon_sym_BANGis] = ACTIONS(2722), - [anon_sym_in] = ACTIONS(2724), - [anon_sym_BANGin] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2724), - [anon_sym_lock] = ACTIONS(2724), - [anon_sym_rlock] = ACTIONS(2724), - [anon_sym_unsafe] = ACTIONS(2724), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(2724), - [sym_float_literal] = ACTIONS(2722), - [sym_rune_literal] = ACTIONS(2722), - [sym_pseudo_compile_time_identifier] = ACTIONS(2724), - [anon_sym_shared] = ACTIONS(2724), - [anon_sym_map_LBRACK] = ACTIONS(2722), - [anon_sym_chan] = ACTIONS(2724), - [anon_sym_thread] = ACTIONS(2724), - [anon_sym_atomic] = ACTIONS(2724), - [sym___double_quote] = ACTIONS(2722), - [sym___single_quote] = ACTIONS(2722), - [sym___c_double_quote] = ACTIONS(2722), - [sym___c_single_quote] = ACTIONS(2722), - [sym___r_double_quote] = ACTIONS(2722), - [sym___r_single_quote] = ACTIONS(2722), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_as] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_COMMA] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_PIPE] = ACTIONS(2155), + [anon_sym_fn] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2153), + [anon_sym_SLASH] = ACTIONS(2155), + [anon_sym_PERCENT] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2155), + [anon_sym_GT] = ACTIONS(2155), + [anon_sym_EQ_EQ] = ACTIONS(2153), + [anon_sym_BANG_EQ] = ACTIONS(2153), + [anon_sym_LT_EQ] = ACTIONS(2153), + [anon_sym_GT_EQ] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_RBRACK] = ACTIONS(2153), + [anon_sym_struct] = ACTIONS(2155), + [anon_sym_mut] = ACTIONS(2155), + [anon_sym_COLON] = ACTIONS(2153), + [anon_sym_PLUS_PLUS] = ACTIONS(2153), + [anon_sym_DASH_DASH] = ACTIONS(2153), + [anon_sym_QMARK] = ACTIONS(2155), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_go] = ACTIONS(2155), + [anon_sym_spawn] = ACTIONS(2155), + [anon_sym_json_DOTdecode] = ACTIONS(2153), + [anon_sym_LBRACK2] = ACTIONS(2155), + [anon_sym_TILDE] = ACTIONS(2153), + [anon_sym_CARET] = ACTIONS(2153), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_LT_DASH] = ACTIONS(2153), + [anon_sym_LT_LT] = ACTIONS(2153), + [anon_sym_GT_GT] = ACTIONS(2155), + [anon_sym_GT_GT_GT] = ACTIONS(2153), + [anon_sym_AMP_CARET] = ACTIONS(2153), + [anon_sym_AMP_AMP] = ACTIONS(2153), + [anon_sym_PIPE_PIPE] = ACTIONS(2153), + [anon_sym_or] = ACTIONS(2155), + [sym_none] = ACTIONS(2155), + [sym_true] = ACTIONS(2155), + [sym_false] = ACTIONS(2155), + [sym_nil] = ACTIONS(2155), + [anon_sym_QMARK_DOT] = ACTIONS(2153), + [anon_sym_POUND_LBRACK] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_DOLLARif] = ACTIONS(2155), + [anon_sym_is] = ACTIONS(2155), + [anon_sym_BANGis] = ACTIONS(2153), + [anon_sym_in] = ACTIONS(2155), + [anon_sym_BANGin] = ACTIONS(2153), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_select] = ACTIONS(2155), + [anon_sym_lock] = ACTIONS(2155), + [anon_sym_rlock] = ACTIONS(2155), + [anon_sym_unsafe] = ACTIONS(2155), + [anon_sym_sql] = ACTIONS(2155), + [sym_int_literal] = ACTIONS(2155), + [sym_float_literal] = ACTIONS(2153), + [sym_rune_literal] = ACTIONS(2153), + [anon_sym_SQUOTE] = ACTIONS(2153), + [anon_sym_DQUOTE] = ACTIONS(2153), + [anon_sym_c_SQUOTE] = ACTIONS(2153), + [anon_sym_c_DQUOTE] = ACTIONS(2153), + [anon_sym_r_SQUOTE] = ACTIONS(2153), + [anon_sym_r_DQUOTE] = ACTIONS(2153), + [sym_pseudo_compile_time_identifier] = ACTIONS(2155), + [anon_sym_shared] = ACTIONS(2155), + [anon_sym_map_LBRACK] = ACTIONS(2153), + [anon_sym_chan] = ACTIONS(2155), + [anon_sym_thread] = ACTIONS(2155), + [anon_sym_atomic] = ACTIONS(2155), }, [1353] = { [sym_line_comment] = STATE(1353), [sym_block_comment] = STATE(1353), - [sym_identifier] = ACTIONS(2824), + [sym_identifier] = ACTIONS(2201), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2824), - [anon_sym_as] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_COMMA] = ACTIONS(2822), - [anon_sym_RBRACE] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_fn] = ACTIONS(2824), - [anon_sym_PLUS] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_SLASH] = ACTIONS(2824), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_GT] = ACTIONS(2824), - [anon_sym_EQ_EQ] = ACTIONS(2822), - [anon_sym_BANG_EQ] = ACTIONS(2822), - [anon_sym_LT_EQ] = ACTIONS(2822), - [anon_sym_GT_EQ] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_RBRACK] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2824), - [anon_sym_mut] = ACTIONS(2824), - [anon_sym_COLON] = ACTIONS(2822), - [anon_sym_PLUS_PLUS] = ACTIONS(2822), - [anon_sym_DASH_DASH] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_go] = ACTIONS(2824), - [anon_sym_spawn] = ACTIONS(2824), - [anon_sym_json_DOTdecode] = ACTIONS(2822), - [anon_sym_LBRACK2] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_CARET] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2824), - [anon_sym_LT_DASH] = ACTIONS(2822), - [anon_sym_LT_LT] = ACTIONS(2822), - [anon_sym_GT_GT] = ACTIONS(2824), - [anon_sym_GT_GT_GT] = ACTIONS(2822), - [anon_sym_AMP_CARET] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_PIPE_PIPE] = ACTIONS(2822), - [anon_sym_or] = ACTIONS(2824), - [sym_none] = ACTIONS(2824), - [sym_true] = ACTIONS(2824), - [sym_false] = ACTIONS(2824), - [sym_nil] = ACTIONS(2824), - [anon_sym_QMARK_DOT] = ACTIONS(2822), - [anon_sym_POUND_LBRACK] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_DOLLARif] = ACTIONS(2824), - [anon_sym_is] = ACTIONS(2824), - [anon_sym_BANGis] = ACTIONS(2822), - [anon_sym_in] = ACTIONS(2824), - [anon_sym_BANGin] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2824), - [anon_sym_select] = ACTIONS(2824), - [anon_sym_lock] = ACTIONS(2824), - [anon_sym_rlock] = ACTIONS(2824), - [anon_sym_unsafe] = ACTIONS(2824), - [anon_sym_sql] = ACTIONS(2824), - [sym_int_literal] = ACTIONS(2824), - [sym_float_literal] = ACTIONS(2822), - [sym_rune_literal] = ACTIONS(2822), - [sym_pseudo_compile_time_identifier] = ACTIONS(2824), - [anon_sym_shared] = ACTIONS(2824), - [anon_sym_map_LBRACK] = ACTIONS(2822), - [anon_sym_chan] = ACTIONS(2824), - [anon_sym_thread] = ACTIONS(2824), - [anon_sym_atomic] = ACTIONS(2824), - [sym___double_quote] = ACTIONS(2822), - [sym___single_quote] = ACTIONS(2822), - [sym___c_double_quote] = ACTIONS(2822), - [sym___c_single_quote] = ACTIONS(2822), - [sym___r_double_quote] = ACTIONS(2822), - [sym___r_single_quote] = ACTIONS(2822), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_as] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_fn] = ACTIONS(2201), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_SLASH] = ACTIONS(2201), + [anon_sym_PERCENT] = ACTIONS(2199), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2199), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_RBRACK] = ACTIONS(2199), + [anon_sym_struct] = ACTIONS(2201), + [anon_sym_mut] = ACTIONS(2201), + [anon_sym_COLON] = ACTIONS(2199), + [anon_sym_PLUS_PLUS] = ACTIONS(2199), + [anon_sym_DASH_DASH] = ACTIONS(2199), + [anon_sym_QMARK] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2201), + [anon_sym_go] = ACTIONS(2201), + [anon_sym_spawn] = ACTIONS(2201), + [anon_sym_json_DOTdecode] = ACTIONS(2199), + [anon_sym_LBRACK2] = ACTIONS(2201), + [anon_sym_TILDE] = ACTIONS(2199), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_AMP] = ACTIONS(2201), + [anon_sym_LT_DASH] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2201), + [anon_sym_GT_GT_GT] = ACTIONS(2199), + [anon_sym_AMP_CARET] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_or] = ACTIONS(2201), + [sym_none] = ACTIONS(2201), + [sym_true] = ACTIONS(2201), + [sym_false] = ACTIONS(2201), + [sym_nil] = ACTIONS(2201), + [anon_sym_QMARK_DOT] = ACTIONS(2199), + [anon_sym_POUND_LBRACK] = ACTIONS(2199), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_DOLLARif] = ACTIONS(2201), + [anon_sym_is] = ACTIONS(2201), + [anon_sym_BANGis] = ACTIONS(2199), + [anon_sym_in] = ACTIONS(2201), + [anon_sym_BANGin] = ACTIONS(2199), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_select] = ACTIONS(2201), + [anon_sym_lock] = ACTIONS(2201), + [anon_sym_rlock] = ACTIONS(2201), + [anon_sym_unsafe] = ACTIONS(2201), + [anon_sym_sql] = ACTIONS(2201), + [sym_int_literal] = ACTIONS(2201), + [sym_float_literal] = ACTIONS(2199), + [sym_rune_literal] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_DQUOTE] = ACTIONS(2199), + [anon_sym_c_SQUOTE] = ACTIONS(2199), + [anon_sym_c_DQUOTE] = ACTIONS(2199), + [anon_sym_r_SQUOTE] = ACTIONS(2199), + [anon_sym_r_DQUOTE] = ACTIONS(2199), + [sym_pseudo_compile_time_identifier] = ACTIONS(2201), + [anon_sym_shared] = ACTIONS(2201), + [anon_sym_map_LBRACK] = ACTIONS(2199), + [anon_sym_chan] = ACTIONS(2201), + [anon_sym_thread] = ACTIONS(2201), + [anon_sym_atomic] = ACTIONS(2201), }, [1354] = { [sym_line_comment] = STATE(1354), [sym_block_comment] = STATE(1354), - [sym_identifier] = ACTIONS(2459), + [sym_identifier] = ACTIONS(2431), [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_PIPE] = ACTIONS(2459), - [anon_sym_fn] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2457), - [anon_sym_SLASH] = ACTIONS(2459), - [anon_sym_PERCENT] = ACTIONS(2457), - [anon_sym_LT] = ACTIONS(2459), - [anon_sym_GT] = ACTIONS(2459), - [anon_sym_EQ_EQ] = ACTIONS(2457), - [anon_sym_BANG_EQ] = ACTIONS(2457), - [anon_sym_LT_EQ] = ACTIONS(2457), - [anon_sym_GT_EQ] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2457), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_mut] = ACTIONS(2459), - [anon_sym_COLON] = ACTIONS(2457), - [anon_sym_PLUS_PLUS] = ACTIONS(2457), - [anon_sym_DASH_DASH] = ACTIONS(2457), - [anon_sym_QMARK] = ACTIONS(2459), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_go] = ACTIONS(2459), - [anon_sym_spawn] = ACTIONS(2459), - [anon_sym_json_DOTdecode] = ACTIONS(2457), - [anon_sym_LBRACK2] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2457), - [anon_sym_CARET] = ACTIONS(2457), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_LT_DASH] = ACTIONS(2457), - [anon_sym_LT_LT] = ACTIONS(2457), - [anon_sym_GT_GT] = ACTIONS(2459), - [anon_sym_GT_GT_GT] = ACTIONS(2457), - [anon_sym_AMP_CARET] = ACTIONS(2457), - [anon_sym_AMP_AMP] = ACTIONS(2457), - [anon_sym_PIPE_PIPE] = ACTIONS(2457), - [anon_sym_or] = ACTIONS(2459), - [sym_none] = ACTIONS(2459), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_nil] = ACTIONS(2459), - [anon_sym_QMARK_DOT] = ACTIONS(2457), - [anon_sym_POUND_LBRACK] = ACTIONS(2457), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_DOLLARif] = ACTIONS(2459), - [anon_sym_is] = ACTIONS(2459), - [anon_sym_BANGis] = ACTIONS(2457), - [anon_sym_in] = ACTIONS(2459), - [anon_sym_BANGin] = ACTIONS(2457), - [anon_sym_match] = ACTIONS(2459), - [anon_sym_select] = ACTIONS(2459), - [anon_sym_lock] = ACTIONS(2459), - [anon_sym_rlock] = ACTIONS(2459), - [anon_sym_unsafe] = ACTIONS(2459), - [anon_sym_sql] = ACTIONS(2459), - [sym_int_literal] = ACTIONS(2459), - [sym_float_literal] = ACTIONS(2457), - [sym_rune_literal] = ACTIONS(2457), - [sym_pseudo_compile_time_identifier] = ACTIONS(2459), - [anon_sym_shared] = ACTIONS(2459), - [anon_sym_map_LBRACK] = ACTIONS(2457), - [anon_sym_chan] = ACTIONS(2459), - [anon_sym_thread] = ACTIONS(2459), - [anon_sym_atomic] = ACTIONS(2459), - [sym___double_quote] = ACTIONS(2457), - [sym___single_quote] = ACTIONS(2457), - [sym___c_double_quote] = ACTIONS(2457), - [sym___c_single_quote] = ACTIONS(2457), - [sym___r_double_quote] = ACTIONS(2457), - [sym___r_single_quote] = ACTIONS(2457), + [anon_sym_DOT] = ACTIONS(2431), + [anon_sym_as] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_COMMA] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_PIPE] = ACTIONS(2431), + [anon_sym_fn] = ACTIONS(2431), + [anon_sym_PLUS] = ACTIONS(2431), + [anon_sym_DASH] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_SLASH] = ACTIONS(2431), + [anon_sym_PERCENT] = ACTIONS(2429), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_GT] = ACTIONS(2431), + [anon_sym_EQ_EQ] = ACTIONS(2429), + [anon_sym_BANG_EQ] = ACTIONS(2429), + [anon_sym_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_EQ] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(2429), + [anon_sym_RBRACK] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2431), + [anon_sym_mut] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2429), + [anon_sym_PLUS_PLUS] = ACTIONS(2429), + [anon_sym_DASH_DASH] = ACTIONS(2429), + [anon_sym_QMARK] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_go] = ACTIONS(2431), + [anon_sym_spawn] = ACTIONS(2431), + [anon_sym_json_DOTdecode] = ACTIONS(2429), + [anon_sym_LBRACK2] = ACTIONS(2431), + [anon_sym_TILDE] = ACTIONS(2429), + [anon_sym_CARET] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2429), + [anon_sym_LT_LT] = ACTIONS(2429), + [anon_sym_GT_GT] = ACTIONS(2431), + [anon_sym_GT_GT_GT] = ACTIONS(2429), + [anon_sym_AMP_CARET] = ACTIONS(2429), + [anon_sym_AMP_AMP] = ACTIONS(2429), + [anon_sym_PIPE_PIPE] = ACTIONS(2429), + [anon_sym_or] = ACTIONS(2431), + [sym_none] = ACTIONS(2431), + [sym_true] = ACTIONS(2431), + [sym_false] = ACTIONS(2431), + [sym_nil] = ACTIONS(2431), + [anon_sym_QMARK_DOT] = ACTIONS(2429), + [anon_sym_POUND_LBRACK] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2431), + [anon_sym_DOLLARif] = ACTIONS(2431), + [anon_sym_is] = ACTIONS(2431), + [anon_sym_BANGis] = ACTIONS(2429), + [anon_sym_in] = ACTIONS(2431), + [anon_sym_BANGin] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_select] = ACTIONS(2431), + [anon_sym_lock] = ACTIONS(2431), + [anon_sym_rlock] = ACTIONS(2431), + [anon_sym_unsafe] = ACTIONS(2431), + [anon_sym_sql] = ACTIONS(2431), + [sym_int_literal] = ACTIONS(2431), + [sym_float_literal] = ACTIONS(2429), + [sym_rune_literal] = ACTIONS(2429), + [anon_sym_SQUOTE] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2429), + [anon_sym_c_SQUOTE] = ACTIONS(2429), + [anon_sym_c_DQUOTE] = ACTIONS(2429), + [anon_sym_r_SQUOTE] = ACTIONS(2429), + [anon_sym_r_DQUOTE] = ACTIONS(2429), + [sym_pseudo_compile_time_identifier] = ACTIONS(2431), + [anon_sym_shared] = ACTIONS(2431), + [anon_sym_map_LBRACK] = ACTIONS(2429), + [anon_sym_chan] = ACTIONS(2431), + [anon_sym_thread] = ACTIONS(2431), + [anon_sym_atomic] = ACTIONS(2431), }, [1355] = { [sym_line_comment] = STATE(1355), [sym_block_comment] = STATE(1355), - [sym_identifier] = ACTIONS(2696), + [sym_identifier] = ACTIONS(2547), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2696), - [anon_sym_as] = ACTIONS(2696), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_COMMA] = ACTIONS(2694), - [anon_sym_RBRACE] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_fn] = ACTIONS(2696), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2696), - [anon_sym_PERCENT] = ACTIONS(2694), - [anon_sym_LT] = ACTIONS(2696), - [anon_sym_GT] = ACTIONS(2696), - [anon_sym_EQ_EQ] = ACTIONS(2694), - [anon_sym_BANG_EQ] = ACTIONS(2694), - [anon_sym_LT_EQ] = ACTIONS(2694), - [anon_sym_GT_EQ] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2694), - [anon_sym_RBRACK] = ACTIONS(2694), - [anon_sym_struct] = ACTIONS(2696), - [anon_sym_mut] = ACTIONS(2696), - [anon_sym_COLON] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2694), - [anon_sym_QMARK] = ACTIONS(2696), - [anon_sym_BANG] = ACTIONS(2696), - [anon_sym_go] = ACTIONS(2696), - [anon_sym_spawn] = ACTIONS(2696), - [anon_sym_json_DOTdecode] = ACTIONS(2694), - [anon_sym_LBRACK2] = ACTIONS(2696), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_CARET] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2696), - [anon_sym_LT_DASH] = ACTIONS(2694), - [anon_sym_LT_LT] = ACTIONS(2694), - [anon_sym_GT_GT] = ACTIONS(2696), - [anon_sym_GT_GT_GT] = ACTIONS(2694), - [anon_sym_AMP_CARET] = ACTIONS(2694), - [anon_sym_AMP_AMP] = ACTIONS(2694), - [anon_sym_PIPE_PIPE] = ACTIONS(2694), - [anon_sym_or] = ACTIONS(2696), - [sym_none] = ACTIONS(2696), - [sym_true] = ACTIONS(2696), - [sym_false] = ACTIONS(2696), - [sym_nil] = ACTIONS(2696), - [anon_sym_QMARK_DOT] = ACTIONS(2694), - [anon_sym_POUND_LBRACK] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2696), - [anon_sym_DOLLARif] = ACTIONS(2696), - [anon_sym_is] = ACTIONS(2696), - [anon_sym_BANGis] = ACTIONS(2694), - [anon_sym_in] = ACTIONS(2696), - [anon_sym_BANGin] = ACTIONS(2694), - [anon_sym_match] = ACTIONS(2696), - [anon_sym_select] = ACTIONS(2696), - [anon_sym_lock] = ACTIONS(2696), - [anon_sym_rlock] = ACTIONS(2696), - [anon_sym_unsafe] = ACTIONS(2696), - [anon_sym_sql] = ACTIONS(2696), - [sym_int_literal] = ACTIONS(2696), - [sym_float_literal] = ACTIONS(2694), - [sym_rune_literal] = ACTIONS(2694), - [sym_pseudo_compile_time_identifier] = ACTIONS(2696), - [anon_sym_shared] = ACTIONS(2696), - [anon_sym_map_LBRACK] = ACTIONS(2694), - [anon_sym_chan] = ACTIONS(2696), - [anon_sym_thread] = ACTIONS(2696), - [anon_sym_atomic] = ACTIONS(2696), - [sym___double_quote] = ACTIONS(2694), - [sym___single_quote] = ACTIONS(2694), - [sym___c_double_quote] = ACTIONS(2694), - [sym___c_single_quote] = ACTIONS(2694), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2694), + [anon_sym_DOT] = ACTIONS(2547), + [anon_sym_as] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_COMMA] = ACTIONS(2545), + [anon_sym_RBRACE] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_fn] = ACTIONS(2547), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(2545), + [anon_sym_SLASH] = ACTIONS(2547), + [anon_sym_PERCENT] = ACTIONS(2545), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), + [anon_sym_EQ_EQ] = ACTIONS(2545), + [anon_sym_BANG_EQ] = ACTIONS(2545), + [anon_sym_LT_EQ] = ACTIONS(2545), + [anon_sym_GT_EQ] = ACTIONS(2545), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_RBRACK] = ACTIONS(2545), + [anon_sym_struct] = ACTIONS(2547), + [anon_sym_mut] = ACTIONS(2547), + [anon_sym_COLON] = ACTIONS(2545), + [anon_sym_PLUS_PLUS] = ACTIONS(2545), + [anon_sym_DASH_DASH] = ACTIONS(2545), + [anon_sym_QMARK] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_go] = ACTIONS(2547), + [anon_sym_spawn] = ACTIONS(2547), + [anon_sym_json_DOTdecode] = ACTIONS(2545), + [anon_sym_LBRACK2] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2545), + [anon_sym_CARET] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_LT_DASH] = ACTIONS(2545), + [anon_sym_LT_LT] = ACTIONS(2545), + [anon_sym_GT_GT] = ACTIONS(2547), + [anon_sym_GT_GT_GT] = ACTIONS(2545), + [anon_sym_AMP_CARET] = ACTIONS(2545), + [anon_sym_AMP_AMP] = ACTIONS(2545), + [anon_sym_PIPE_PIPE] = ACTIONS(2545), + [anon_sym_or] = ACTIONS(2547), + [sym_none] = ACTIONS(2547), + [sym_true] = ACTIONS(2547), + [sym_false] = ACTIONS(2547), + [sym_nil] = ACTIONS(2547), + [anon_sym_QMARK_DOT] = ACTIONS(2545), + [anon_sym_POUND_LBRACK] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_DOLLARif] = ACTIONS(2547), + [anon_sym_is] = ACTIONS(2547), + [anon_sym_BANGis] = ACTIONS(2545), + [anon_sym_in] = ACTIONS(2547), + [anon_sym_BANGin] = ACTIONS(2545), + [anon_sym_match] = ACTIONS(2547), + [anon_sym_select] = ACTIONS(2547), + [anon_sym_lock] = ACTIONS(2547), + [anon_sym_rlock] = ACTIONS(2547), + [anon_sym_unsafe] = ACTIONS(2547), + [anon_sym_sql] = ACTIONS(2547), + [sym_int_literal] = ACTIONS(2547), + [sym_float_literal] = ACTIONS(2545), + [sym_rune_literal] = ACTIONS(2545), + [anon_sym_SQUOTE] = ACTIONS(2545), + [anon_sym_DQUOTE] = ACTIONS(2545), + [anon_sym_c_SQUOTE] = ACTIONS(2545), + [anon_sym_c_DQUOTE] = ACTIONS(2545), + [anon_sym_r_SQUOTE] = ACTIONS(2545), + [anon_sym_r_DQUOTE] = ACTIONS(2545), + [sym_pseudo_compile_time_identifier] = ACTIONS(2547), + [anon_sym_shared] = ACTIONS(2547), + [anon_sym_map_LBRACK] = ACTIONS(2545), + [anon_sym_chan] = ACTIONS(2547), + [anon_sym_thread] = ACTIONS(2547), + [anon_sym_atomic] = ACTIONS(2547), }, [1356] = { [sym_line_comment] = STATE(1356), [sym_block_comment] = STATE(1356), - [sym_identifier] = ACTIONS(2449), + [sym_identifier] = ACTIONS(2463), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2449), - [anon_sym_as] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(2449), - [anon_sym_fn] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_STAR] = ACTIONS(2447), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2449), - [anon_sym_EQ_EQ] = ACTIONS(2447), - [anon_sym_BANG_EQ] = ACTIONS(2447), - [anon_sym_LT_EQ] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2447), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_RBRACK] = ACTIONS(2447), - [anon_sym_struct] = ACTIONS(2449), - [anon_sym_mut] = ACTIONS(2449), - [anon_sym_COLON] = ACTIONS(2447), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_QMARK] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2449), - [anon_sym_go] = ACTIONS(2449), - [anon_sym_spawn] = ACTIONS(2449), - [anon_sym_json_DOTdecode] = ACTIONS(2447), - [anon_sym_LBRACK2] = ACTIONS(2449), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_CARET] = ACTIONS(2447), - [anon_sym_AMP] = ACTIONS(2449), - [anon_sym_LT_DASH] = ACTIONS(2447), - [anon_sym_LT_LT] = ACTIONS(2447), - [anon_sym_GT_GT] = ACTIONS(2449), - [anon_sym_GT_GT_GT] = ACTIONS(2447), - [anon_sym_AMP_CARET] = ACTIONS(2447), - [anon_sym_AMP_AMP] = ACTIONS(2447), - [anon_sym_PIPE_PIPE] = ACTIONS(2447), - [anon_sym_or] = ACTIONS(2449), - [sym_none] = ACTIONS(2449), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_nil] = ACTIONS(2449), - [anon_sym_QMARK_DOT] = ACTIONS(2447), - [anon_sym_POUND_LBRACK] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_DOLLARif] = ACTIONS(2449), - [anon_sym_is] = ACTIONS(2449), - [anon_sym_BANGis] = ACTIONS(2447), - [anon_sym_in] = ACTIONS(2449), - [anon_sym_BANGin] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2449), - [anon_sym_select] = ACTIONS(2449), - [anon_sym_lock] = ACTIONS(2449), - [anon_sym_rlock] = ACTIONS(2449), - [anon_sym_unsafe] = ACTIONS(2449), - [anon_sym_sql] = ACTIONS(2449), - [sym_int_literal] = ACTIONS(2449), - [sym_float_literal] = ACTIONS(2447), - [sym_rune_literal] = ACTIONS(2447), - [sym_pseudo_compile_time_identifier] = ACTIONS(2449), - [anon_sym_shared] = ACTIONS(2449), - [anon_sym_map_LBRACK] = ACTIONS(2447), - [anon_sym_chan] = ACTIONS(2449), - [anon_sym_thread] = ACTIONS(2449), - [anon_sym_atomic] = ACTIONS(2449), - [sym___double_quote] = ACTIONS(2447), - [sym___single_quote] = ACTIONS(2447), - [sym___c_double_quote] = ACTIONS(2447), - [sym___c_single_quote] = ACTIONS(2447), - [sym___r_double_quote] = ACTIONS(2447), - [sym___r_single_quote] = ACTIONS(2447), + [anon_sym_DOT] = ACTIONS(2463), + [anon_sym_as] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2461), + [anon_sym_COMMA] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_PIPE] = ACTIONS(2463), + [anon_sym_fn] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2461), + [anon_sym_SLASH] = ACTIONS(2463), + [anon_sym_PERCENT] = ACTIONS(2461), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_GT] = ACTIONS(2463), + [anon_sym_EQ_EQ] = ACTIONS(2461), + [anon_sym_BANG_EQ] = ACTIONS(2461), + [anon_sym_LT_EQ] = ACTIONS(2461), + [anon_sym_GT_EQ] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2461), + [anon_sym_RBRACK] = ACTIONS(2461), + [anon_sym_struct] = ACTIONS(2463), + [anon_sym_mut] = ACTIONS(2463), + [anon_sym_COLON] = ACTIONS(2461), + [anon_sym_PLUS_PLUS] = ACTIONS(2461), + [anon_sym_DASH_DASH] = ACTIONS(2461), + [anon_sym_QMARK] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(2463), + [anon_sym_go] = ACTIONS(2463), + [anon_sym_spawn] = ACTIONS(2463), + [anon_sym_json_DOTdecode] = ACTIONS(2461), + [anon_sym_LBRACK2] = ACTIONS(2463), + [anon_sym_TILDE] = ACTIONS(2461), + [anon_sym_CARET] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_LT_DASH] = ACTIONS(2461), + [anon_sym_LT_LT] = ACTIONS(2461), + [anon_sym_GT_GT] = ACTIONS(2463), + [anon_sym_GT_GT_GT] = ACTIONS(2461), + [anon_sym_AMP_CARET] = ACTIONS(2461), + [anon_sym_AMP_AMP] = ACTIONS(2461), + [anon_sym_PIPE_PIPE] = ACTIONS(2461), + [anon_sym_or] = ACTIONS(2463), + [sym_none] = ACTIONS(2463), + [sym_true] = ACTIONS(2463), + [sym_false] = ACTIONS(2463), + [sym_nil] = ACTIONS(2463), + [anon_sym_QMARK_DOT] = ACTIONS(2461), + [anon_sym_POUND_LBRACK] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2463), + [anon_sym_DOLLARif] = ACTIONS(2463), + [anon_sym_is] = ACTIONS(2463), + [anon_sym_BANGis] = ACTIONS(2461), + [anon_sym_in] = ACTIONS(2463), + [anon_sym_BANGin] = ACTIONS(2461), + [anon_sym_match] = ACTIONS(2463), + [anon_sym_select] = ACTIONS(2463), + [anon_sym_lock] = ACTIONS(2463), + [anon_sym_rlock] = ACTIONS(2463), + [anon_sym_unsafe] = ACTIONS(2463), + [anon_sym_sql] = ACTIONS(2463), + [sym_int_literal] = ACTIONS(2463), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [anon_sym_SQUOTE] = ACTIONS(2461), + [anon_sym_DQUOTE] = ACTIONS(2461), + [anon_sym_c_SQUOTE] = ACTIONS(2461), + [anon_sym_c_DQUOTE] = ACTIONS(2461), + [anon_sym_r_SQUOTE] = ACTIONS(2461), + [anon_sym_r_DQUOTE] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(2463), + [anon_sym_shared] = ACTIONS(2463), + [anon_sym_map_LBRACK] = ACTIONS(2461), + [anon_sym_chan] = ACTIONS(2463), + [anon_sym_thread] = ACTIONS(2463), + [anon_sym_atomic] = ACTIONS(2463), }, [1357] = { [sym_line_comment] = STATE(1357), [sym_block_comment] = STATE(1357), - [sym_identifier] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2189), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2443), - [anon_sym_as] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2441), - [anon_sym_COMMA] = ACTIONS(2441), - [anon_sym_RBRACE] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_fn] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2443), - [anon_sym_STAR] = ACTIONS(2441), - [anon_sym_SLASH] = ACTIONS(2443), - [anon_sym_PERCENT] = ACTIONS(2441), - [anon_sym_LT] = ACTIONS(2443), - [anon_sym_GT] = ACTIONS(2443), - [anon_sym_EQ_EQ] = ACTIONS(2441), - [anon_sym_BANG_EQ] = ACTIONS(2441), - [anon_sym_LT_EQ] = ACTIONS(2441), - [anon_sym_GT_EQ] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(2441), - [anon_sym_RBRACK] = ACTIONS(2441), - [anon_sym_struct] = ACTIONS(2443), - [anon_sym_mut] = ACTIONS(2443), - [anon_sym_COLON] = ACTIONS(2441), - [anon_sym_PLUS_PLUS] = ACTIONS(2441), - [anon_sym_DASH_DASH] = ACTIONS(2441), - [anon_sym_QMARK] = ACTIONS(2443), - [anon_sym_BANG] = ACTIONS(2443), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2443), - [anon_sym_json_DOTdecode] = ACTIONS(2441), - [anon_sym_LBRACK2] = ACTIONS(2443), - [anon_sym_TILDE] = ACTIONS(2441), - [anon_sym_CARET] = ACTIONS(2441), - [anon_sym_AMP] = ACTIONS(2443), - [anon_sym_LT_DASH] = ACTIONS(2441), - [anon_sym_LT_LT] = ACTIONS(2441), - [anon_sym_GT_GT] = ACTIONS(2443), - [anon_sym_GT_GT_GT] = ACTIONS(2441), - [anon_sym_AMP_CARET] = ACTIONS(2441), - [anon_sym_AMP_AMP] = ACTIONS(2441), - [anon_sym_PIPE_PIPE] = ACTIONS(2441), - [anon_sym_or] = ACTIONS(2443), - [sym_none] = ACTIONS(2443), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_nil] = ACTIONS(2443), - [anon_sym_QMARK_DOT] = ACTIONS(2441), - [anon_sym_POUND_LBRACK] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_DOLLARif] = ACTIONS(2443), - [anon_sym_is] = ACTIONS(2443), - [anon_sym_BANGis] = ACTIONS(2441), - [anon_sym_in] = ACTIONS(2443), - [anon_sym_BANGin] = ACTIONS(2441), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_select] = ACTIONS(2443), - [anon_sym_lock] = ACTIONS(2443), - [anon_sym_rlock] = ACTIONS(2443), - [anon_sym_unsafe] = ACTIONS(2443), - [anon_sym_sql] = ACTIONS(2443), - [sym_int_literal] = ACTIONS(2443), - [sym_float_literal] = ACTIONS(2441), - [sym_rune_literal] = ACTIONS(2441), - [sym_pseudo_compile_time_identifier] = ACTIONS(2443), - [anon_sym_shared] = ACTIONS(2443), - [anon_sym_map_LBRACK] = ACTIONS(2441), - [anon_sym_chan] = ACTIONS(2443), - [anon_sym_thread] = ACTIONS(2443), - [anon_sym_atomic] = ACTIONS(2443), - [sym___double_quote] = ACTIONS(2441), - [sym___single_quote] = ACTIONS(2441), - [sym___c_double_quote] = ACTIONS(2441), - [sym___c_single_quote] = ACTIONS(2441), - [sym___r_double_quote] = ACTIONS(2441), - [sym___r_single_quote] = ACTIONS(2441), + [anon_sym_DOT] = ACTIONS(2189), + [anon_sym_as] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_COMMA] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_fn] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_GT] = ACTIONS(2189), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2187), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_RBRACK] = ACTIONS(2187), + [anon_sym_struct] = ACTIONS(2189), + [anon_sym_mut] = ACTIONS(2189), + [anon_sym_COLON] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_QMARK] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_go] = ACTIONS(2189), + [anon_sym_spawn] = ACTIONS(2189), + [anon_sym_json_DOTdecode] = ACTIONS(2187), + [anon_sym_LBRACK2] = ACTIONS(2189), + [anon_sym_TILDE] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2189), + [anon_sym_LT_DASH] = ACTIONS(2187), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2189), + [anon_sym_GT_GT_GT] = ACTIONS(2187), + [anon_sym_AMP_CARET] = ACTIONS(2187), + [anon_sym_AMP_AMP] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), + [anon_sym_or] = ACTIONS(2189), + [sym_none] = ACTIONS(2189), + [sym_true] = ACTIONS(2189), + [sym_false] = ACTIONS(2189), + [sym_nil] = ACTIONS(2189), + [anon_sym_QMARK_DOT] = ACTIONS(2187), + [anon_sym_POUND_LBRACK] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_DOLLARif] = ACTIONS(2189), + [anon_sym_is] = ACTIONS(2189), + [anon_sym_BANGis] = ACTIONS(2187), + [anon_sym_in] = ACTIONS(2189), + [anon_sym_BANGin] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2189), + [anon_sym_select] = ACTIONS(2189), + [anon_sym_lock] = ACTIONS(2189), + [anon_sym_rlock] = ACTIONS(2189), + [anon_sym_unsafe] = ACTIONS(2189), + [anon_sym_sql] = ACTIONS(2189), + [sym_int_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2187), + [sym_rune_literal] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2187), + [anon_sym_c_SQUOTE] = ACTIONS(2187), + [anon_sym_c_DQUOTE] = ACTIONS(2187), + [anon_sym_r_SQUOTE] = ACTIONS(2187), + [anon_sym_r_DQUOTE] = ACTIONS(2187), + [sym_pseudo_compile_time_identifier] = ACTIONS(2189), + [anon_sym_shared] = ACTIONS(2189), + [anon_sym_map_LBRACK] = ACTIONS(2187), + [anon_sym_chan] = ACTIONS(2189), + [anon_sym_thread] = ACTIONS(2189), + [anon_sym_atomic] = ACTIONS(2189), }, [1358] = { [sym_line_comment] = STATE(1358), [sym_block_comment] = STATE(1358), - [sym_identifier] = ACTIONS(2902), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2902), - [anon_sym_as] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_PIPE] = ACTIONS(2902), - [anon_sym_fn] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_SLASH] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_LT_EQ] = ACTIONS(2900), - [anon_sym_GT_EQ] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_RBRACK] = ACTIONS(2900), - [anon_sym_struct] = ACTIONS(2902), - [anon_sym_mut] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_PLUS_PLUS] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_go] = ACTIONS(2902), - [anon_sym_spawn] = ACTIONS(2902), - [anon_sym_json_DOTdecode] = ACTIONS(2900), - [anon_sym_LBRACK2] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_CARET] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_LT_LT] = ACTIONS(2900), - [anon_sym_GT_GT] = ACTIONS(2902), - [anon_sym_GT_GT_GT] = ACTIONS(2900), - [anon_sym_AMP_CARET] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2902), - [sym_none] = ACTIONS(2902), - [sym_true] = ACTIONS(2902), - [sym_false] = ACTIONS(2902), - [sym_nil] = ACTIONS(2902), - [anon_sym_QMARK_DOT] = ACTIONS(2900), - [anon_sym_POUND_LBRACK] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_DOLLARif] = ACTIONS(2902), - [anon_sym_is] = ACTIONS(2902), - [anon_sym_BANGis] = ACTIONS(2900), - [anon_sym_in] = ACTIONS(2902), - [anon_sym_BANGin] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2902), - [anon_sym_select] = ACTIONS(2902), - [anon_sym_lock] = ACTIONS(2902), - [anon_sym_rlock] = ACTIONS(2902), - [anon_sym_unsafe] = ACTIONS(2902), - [anon_sym_sql] = ACTIONS(2902), - [sym_int_literal] = ACTIONS(2902), - [sym_float_literal] = ACTIONS(2900), - [sym_rune_literal] = ACTIONS(2900), - [sym_pseudo_compile_time_identifier] = ACTIONS(2902), - [anon_sym_shared] = ACTIONS(2902), - [anon_sym_map_LBRACK] = ACTIONS(2900), - [anon_sym_chan] = ACTIONS(2902), - [anon_sym_thread] = ACTIONS(2902), - [anon_sym_atomic] = ACTIONS(2902), - [sym___double_quote] = ACTIONS(2900), - [sym___single_quote] = ACTIONS(2900), - [sym___c_double_quote] = ACTIONS(2900), - [sym___c_single_quote] = ACTIONS(2900), - [sym___r_double_quote] = ACTIONS(2900), - [sym___r_single_quote] = ACTIONS(2900), - }, - [1359] = { - [sym_line_comment] = STATE(1359), - [sym_block_comment] = STATE(1359), - [sym_identifier] = ACTIONS(2744), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2744), - [anon_sym_as] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_COMMA] = ACTIONS(2742), - [anon_sym_RBRACE] = ACTIONS(2742), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_fn] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2742), - [anon_sym_SLASH] = ACTIONS(2744), - [anon_sym_PERCENT] = ACTIONS(2742), - [anon_sym_LT] = ACTIONS(2744), - [anon_sym_GT] = ACTIONS(2744), - [anon_sym_EQ_EQ] = ACTIONS(2742), - [anon_sym_BANG_EQ] = ACTIONS(2742), - [anon_sym_LT_EQ] = ACTIONS(2742), - [anon_sym_GT_EQ] = ACTIONS(2742), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_RBRACK] = ACTIONS(2742), - [anon_sym_struct] = ACTIONS(2744), - [anon_sym_mut] = ACTIONS(2744), - [anon_sym_COLON] = ACTIONS(2742), - [anon_sym_PLUS_PLUS] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2742), - [anon_sym_QMARK] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2744), - [anon_sym_go] = ACTIONS(2744), - [anon_sym_spawn] = ACTIONS(2744), - [anon_sym_json_DOTdecode] = ACTIONS(2742), - [anon_sym_LBRACK2] = ACTIONS(2744), - [anon_sym_TILDE] = ACTIONS(2742), - [anon_sym_CARET] = ACTIONS(2742), - [anon_sym_AMP] = ACTIONS(2744), - [anon_sym_LT_DASH] = ACTIONS(2742), - [anon_sym_LT_LT] = ACTIONS(2742), - [anon_sym_GT_GT] = ACTIONS(2744), - [anon_sym_GT_GT_GT] = ACTIONS(2742), - [anon_sym_AMP_CARET] = ACTIONS(2742), - [anon_sym_AMP_AMP] = ACTIONS(2742), - [anon_sym_PIPE_PIPE] = ACTIONS(2742), - [anon_sym_or] = ACTIONS(2744), - [sym_none] = ACTIONS(2744), - [sym_true] = ACTIONS(2744), - [sym_false] = ACTIONS(2744), - [sym_nil] = ACTIONS(2744), - [anon_sym_QMARK_DOT] = ACTIONS(2742), - [anon_sym_POUND_LBRACK] = ACTIONS(2742), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_DOLLARif] = ACTIONS(2744), - [anon_sym_is] = ACTIONS(2744), - [anon_sym_BANGis] = ACTIONS(2742), - [anon_sym_in] = ACTIONS(2744), - [anon_sym_BANGin] = ACTIONS(2742), - [anon_sym_match] = ACTIONS(2744), - [anon_sym_select] = ACTIONS(2744), - [anon_sym_lock] = ACTIONS(2744), - [anon_sym_rlock] = ACTIONS(2744), - [anon_sym_unsafe] = ACTIONS(2744), - [anon_sym_sql] = ACTIONS(2744), - [sym_int_literal] = ACTIONS(2744), - [sym_float_literal] = ACTIONS(2742), - [sym_rune_literal] = ACTIONS(2742), - [sym_pseudo_compile_time_identifier] = ACTIONS(2744), - [anon_sym_shared] = ACTIONS(2744), - [anon_sym_map_LBRACK] = ACTIONS(2742), - [anon_sym_chan] = ACTIONS(2744), - [anon_sym_thread] = ACTIONS(2744), - [anon_sym_atomic] = ACTIONS(2744), - [sym___double_quote] = ACTIONS(2742), - [sym___single_quote] = ACTIONS(2742), - [sym___c_double_quote] = ACTIONS(2742), - [sym___c_single_quote] = ACTIONS(2742), - [sym___r_double_quote] = ACTIONS(2742), - [sym___r_single_quote] = ACTIONS(2742), - }, - [1360] = { - [sym_line_comment] = STATE(1360), - [sym_block_comment] = STATE(1360), - [sym_identifier] = ACTIONS(2874), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_as] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2872), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_RBRACE] = ACTIONS(2872), - [anon_sym_LPAREN] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(2874), - [anon_sym_fn] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_STAR] = ACTIONS(2872), - [anon_sym_SLASH] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2872), - [anon_sym_LT] = ACTIONS(2874), - [anon_sym_GT] = ACTIONS(2874), - [anon_sym_EQ_EQ] = ACTIONS(2872), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_LT_EQ] = ACTIONS(2872), - [anon_sym_GT_EQ] = ACTIONS(2872), - [anon_sym_LBRACK] = ACTIONS(2872), - [anon_sym_RBRACK] = ACTIONS(2872), - [anon_sym_struct] = ACTIONS(2874), - [anon_sym_mut] = ACTIONS(2874), - [anon_sym_COLON] = ACTIONS(2872), - [anon_sym_PLUS_PLUS] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2872), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2874), - [anon_sym_go] = ACTIONS(2874), - [anon_sym_spawn] = ACTIONS(2874), - [anon_sym_json_DOTdecode] = ACTIONS(2872), - [anon_sym_LBRACK2] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2872), - [anon_sym_LT_LT] = ACTIONS(2872), - [anon_sym_GT_GT] = ACTIONS(2874), - [anon_sym_GT_GT_GT] = ACTIONS(2872), - [anon_sym_AMP_CARET] = ACTIONS(2872), - [anon_sym_AMP_AMP] = ACTIONS(2872), - [anon_sym_PIPE_PIPE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2874), - [sym_none] = ACTIONS(2874), - [sym_true] = ACTIONS(2874), - [sym_false] = ACTIONS(2874), - [sym_nil] = ACTIONS(2874), - [anon_sym_QMARK_DOT] = ACTIONS(2872), - [anon_sym_POUND_LBRACK] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_DOLLARif] = ACTIONS(2874), - [anon_sym_is] = ACTIONS(2874), - [anon_sym_BANGis] = ACTIONS(2872), - [anon_sym_in] = ACTIONS(2874), - [anon_sym_BANGin] = ACTIONS(2872), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_select] = ACTIONS(2874), - [anon_sym_lock] = ACTIONS(2874), - [anon_sym_rlock] = ACTIONS(2874), - [anon_sym_unsafe] = ACTIONS(2874), - [anon_sym_sql] = ACTIONS(2874), - [sym_int_literal] = ACTIONS(2874), - [sym_float_literal] = ACTIONS(2872), - [sym_rune_literal] = ACTIONS(2872), - [sym_pseudo_compile_time_identifier] = ACTIONS(2874), - [anon_sym_shared] = ACTIONS(2874), - [anon_sym_map_LBRACK] = ACTIONS(2872), - [anon_sym_chan] = ACTIONS(2874), - [anon_sym_thread] = ACTIONS(2874), - [anon_sym_atomic] = ACTIONS(2874), - [sym___double_quote] = ACTIONS(2872), - [sym___single_quote] = ACTIONS(2872), - [sym___c_double_quote] = ACTIONS(2872), - [sym___c_single_quote] = ACTIONS(2872), - [sym___r_double_quote] = ACTIONS(2872), - [sym___r_single_quote] = ACTIONS(2872), - }, - [1361] = { - [sym_line_comment] = STATE(1361), - [sym_block_comment] = STATE(1361), - [sym_identifier] = ACTIONS(2307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2307), - [anon_sym_as] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_RBRACE] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2307), - [anon_sym_fn] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(2307), - [anon_sym_PERCENT] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(2307), - [anon_sym_GT] = ACTIONS(2307), - [anon_sym_EQ_EQ] = ACTIONS(2305), - [anon_sym_BANG_EQ] = ACTIONS(2305), - [anon_sym_LT_EQ] = ACTIONS(2305), - [anon_sym_GT_EQ] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_RBRACK] = ACTIONS(2305), - [anon_sym_struct] = ACTIONS(2307), - [anon_sym_mut] = ACTIONS(2307), - [anon_sym_COLON] = ACTIONS(2305), - [anon_sym_PLUS_PLUS] = ACTIONS(2305), - [anon_sym_DASH_DASH] = ACTIONS(2305), - [anon_sym_QMARK] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2307), - [anon_sym_go] = ACTIONS(2307), - [anon_sym_spawn] = ACTIONS(2307), - [anon_sym_json_DOTdecode] = ACTIONS(2305), - [anon_sym_LBRACK2] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2305), - [anon_sym_CARET] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_LT_DASH] = ACTIONS(2305), - [anon_sym_LT_LT] = ACTIONS(2305), - [anon_sym_GT_GT] = ACTIONS(2307), - [anon_sym_GT_GT_GT] = ACTIONS(2305), - [anon_sym_AMP_CARET] = ACTIONS(2305), - [anon_sym_AMP_AMP] = ACTIONS(2305), - [anon_sym_PIPE_PIPE] = ACTIONS(2305), - [anon_sym_or] = ACTIONS(2307), - [sym_none] = ACTIONS(2307), - [sym_true] = ACTIONS(2307), - [sym_false] = ACTIONS(2307), - [sym_nil] = ACTIONS(2307), - [anon_sym_QMARK_DOT] = ACTIONS(2305), - [anon_sym_POUND_LBRACK] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_DOLLARif] = ACTIONS(2307), - [anon_sym_is] = ACTIONS(2307), - [anon_sym_BANGis] = ACTIONS(2305), - [anon_sym_in] = ACTIONS(2307), - [anon_sym_BANGin] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_select] = ACTIONS(2307), - [anon_sym_lock] = ACTIONS(2307), - [anon_sym_rlock] = ACTIONS(2307), - [anon_sym_unsafe] = ACTIONS(2307), - [anon_sym_sql] = ACTIONS(2307), - [sym_int_literal] = ACTIONS(2307), - [sym_float_literal] = ACTIONS(2305), - [sym_rune_literal] = ACTIONS(2305), - [sym_pseudo_compile_time_identifier] = ACTIONS(2307), - [anon_sym_shared] = ACTIONS(2307), - [anon_sym_map_LBRACK] = ACTIONS(2305), - [anon_sym_chan] = ACTIONS(2307), - [anon_sym_thread] = ACTIONS(2307), - [anon_sym_atomic] = ACTIONS(2307), - [sym___double_quote] = ACTIONS(2305), - [sym___single_quote] = ACTIONS(2305), - [sym___c_double_quote] = ACTIONS(2305), - [sym___c_single_quote] = ACTIONS(2305), - [sym___r_double_quote] = ACTIONS(2305), - [sym___r_single_quote] = ACTIONS(2305), - }, - [1362] = { - [sym_line_comment] = STATE(1362), - [sym_block_comment] = STATE(1362), - [sym_identifier] = ACTIONS(2293), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2293), - [anon_sym_as] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_COMMA] = ACTIONS(2291), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_PIPE] = ACTIONS(2293), - [anon_sym_fn] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_SLASH] = ACTIONS(2293), - [anon_sym_PERCENT] = ACTIONS(2291), - [anon_sym_LT] = ACTIONS(2293), - [anon_sym_GT] = ACTIONS(2293), - [anon_sym_EQ_EQ] = ACTIONS(2291), - [anon_sym_BANG_EQ] = ACTIONS(2291), - [anon_sym_LT_EQ] = ACTIONS(2291), - [anon_sym_GT_EQ] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_RBRACK] = ACTIONS(2291), - [anon_sym_struct] = ACTIONS(2293), - [anon_sym_mut] = ACTIONS(2293), - [anon_sym_COLON] = ACTIONS(2291), - [anon_sym_PLUS_PLUS] = ACTIONS(2291), - [anon_sym_DASH_DASH] = ACTIONS(2291), - [anon_sym_QMARK] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_go] = ACTIONS(2293), - [anon_sym_spawn] = ACTIONS(2293), - [anon_sym_json_DOTdecode] = ACTIONS(2291), - [anon_sym_LBRACK2] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2291), - [anon_sym_CARET] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2293), - [anon_sym_LT_DASH] = ACTIONS(2291), - [anon_sym_LT_LT] = ACTIONS(2291), - [anon_sym_GT_GT] = ACTIONS(2293), - [anon_sym_GT_GT_GT] = ACTIONS(2291), - [anon_sym_AMP_CARET] = ACTIONS(2291), - [anon_sym_AMP_AMP] = ACTIONS(2291), - [anon_sym_PIPE_PIPE] = ACTIONS(2291), - [anon_sym_or] = ACTIONS(2293), - [sym_none] = ACTIONS(2293), - [sym_true] = ACTIONS(2293), - [sym_false] = ACTIONS(2293), - [sym_nil] = ACTIONS(2293), - [anon_sym_QMARK_DOT] = ACTIONS(2291), - [anon_sym_POUND_LBRACK] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_DOLLARif] = ACTIONS(2293), - [anon_sym_is] = ACTIONS(2293), - [anon_sym_BANGis] = ACTIONS(2291), - [anon_sym_in] = ACTIONS(2293), - [anon_sym_BANGin] = ACTIONS(2291), - [anon_sym_match] = ACTIONS(2293), - [anon_sym_select] = ACTIONS(2293), - [anon_sym_lock] = ACTIONS(2293), - [anon_sym_rlock] = ACTIONS(2293), - [anon_sym_unsafe] = ACTIONS(2293), - [anon_sym_sql] = ACTIONS(2293), - [sym_int_literal] = ACTIONS(2293), - [sym_float_literal] = ACTIONS(2291), - [sym_rune_literal] = ACTIONS(2291), - [sym_pseudo_compile_time_identifier] = ACTIONS(2293), - [anon_sym_shared] = ACTIONS(2293), - [anon_sym_map_LBRACK] = ACTIONS(2291), - [anon_sym_chan] = ACTIONS(2293), - [anon_sym_thread] = ACTIONS(2293), - [anon_sym_atomic] = ACTIONS(2293), - [sym___double_quote] = ACTIONS(2291), - [sym___single_quote] = ACTIONS(2291), - [sym___c_double_quote] = ACTIONS(2291), - [sym___c_single_quote] = ACTIONS(2291), - [sym___r_double_quote] = ACTIONS(2291), - [sym___r_single_quote] = ACTIONS(2291), - }, - [1363] = { - [sym_line_comment] = STATE(1363), - [sym_block_comment] = STATE(1363), - [sym_identifier] = ACTIONS(2750), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2750), - [anon_sym_as] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2748), - [anon_sym_COMMA] = ACTIONS(2748), - [anon_sym_RBRACE] = ACTIONS(2748), - [anon_sym_LPAREN] = ACTIONS(2748), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_fn] = ACTIONS(2750), - [anon_sym_PLUS] = ACTIONS(2750), - [anon_sym_DASH] = ACTIONS(2750), - [anon_sym_STAR] = ACTIONS(2748), - [anon_sym_SLASH] = ACTIONS(2750), - [anon_sym_PERCENT] = ACTIONS(2748), - [anon_sym_LT] = ACTIONS(2750), - [anon_sym_GT] = ACTIONS(2750), - [anon_sym_EQ_EQ] = ACTIONS(2748), - [anon_sym_BANG_EQ] = ACTIONS(2748), - [anon_sym_LT_EQ] = ACTIONS(2748), - [anon_sym_GT_EQ] = ACTIONS(2748), - [anon_sym_LBRACK] = ACTIONS(2748), - [anon_sym_RBRACK] = ACTIONS(2748), - [anon_sym_struct] = ACTIONS(2750), - [anon_sym_mut] = ACTIONS(2750), - [anon_sym_COLON] = ACTIONS(2748), - [anon_sym_PLUS_PLUS] = ACTIONS(2748), - [anon_sym_DASH_DASH] = ACTIONS(2748), - [anon_sym_QMARK] = ACTIONS(2750), - [anon_sym_BANG] = ACTIONS(2750), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2750), - [anon_sym_json_DOTdecode] = ACTIONS(2748), - [anon_sym_LBRACK2] = ACTIONS(2750), - [anon_sym_TILDE] = ACTIONS(2748), - [anon_sym_CARET] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2750), - [anon_sym_LT_DASH] = ACTIONS(2748), - [anon_sym_LT_LT] = ACTIONS(2748), - [anon_sym_GT_GT] = ACTIONS(2750), - [anon_sym_GT_GT_GT] = ACTIONS(2748), - [anon_sym_AMP_CARET] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2748), - [anon_sym_PIPE_PIPE] = ACTIONS(2748), - [anon_sym_or] = ACTIONS(2750), - [sym_none] = ACTIONS(2750), - [sym_true] = ACTIONS(2750), - [sym_false] = ACTIONS(2750), - [sym_nil] = ACTIONS(2750), - [anon_sym_QMARK_DOT] = ACTIONS(2748), - [anon_sym_POUND_LBRACK] = ACTIONS(2748), - [anon_sym_if] = ACTIONS(2750), - [anon_sym_DOLLARif] = ACTIONS(2750), - [anon_sym_is] = ACTIONS(2750), - [anon_sym_BANGis] = ACTIONS(2748), - [anon_sym_in] = ACTIONS(2750), - [anon_sym_BANGin] = ACTIONS(2748), - [anon_sym_match] = ACTIONS(2750), - [anon_sym_select] = ACTIONS(2750), - [anon_sym_lock] = ACTIONS(2750), - [anon_sym_rlock] = ACTIONS(2750), - [anon_sym_unsafe] = ACTIONS(2750), - [anon_sym_sql] = ACTIONS(2750), - [sym_int_literal] = ACTIONS(2750), - [sym_float_literal] = ACTIONS(2748), - [sym_rune_literal] = ACTIONS(2748), - [sym_pseudo_compile_time_identifier] = ACTIONS(2750), - [anon_sym_shared] = ACTIONS(2750), - [anon_sym_map_LBRACK] = ACTIONS(2748), - [anon_sym_chan] = ACTIONS(2750), - [anon_sym_thread] = ACTIONS(2750), - [anon_sym_atomic] = ACTIONS(2750), - [sym___double_quote] = ACTIONS(2748), - [sym___single_quote] = ACTIONS(2748), - [sym___c_double_quote] = ACTIONS(2748), - [sym___c_single_quote] = ACTIONS(2748), - [sym___r_double_quote] = ACTIONS(2748), - [sym___r_single_quote] = ACTIONS(2748), - }, - [1364] = { - [sym_line_comment] = STATE(1364), - [sym_block_comment] = STATE(1364), - [sym_identifier] = ACTIONS(2756), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2756), - [anon_sym_as] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_COMMA] = ACTIONS(2754), - [anon_sym_RBRACE] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_fn] = ACTIONS(2756), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_STAR] = ACTIONS(2754), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_GT] = ACTIONS(2756), - [anon_sym_EQ_EQ] = ACTIONS(2754), - [anon_sym_BANG_EQ] = ACTIONS(2754), - [anon_sym_LT_EQ] = ACTIONS(2754), - [anon_sym_GT_EQ] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_RBRACK] = ACTIONS(2754), - [anon_sym_struct] = ACTIONS(2756), - [anon_sym_mut] = ACTIONS(2756), - [anon_sym_COLON] = ACTIONS(2754), - [anon_sym_PLUS_PLUS] = ACTIONS(2754), - [anon_sym_DASH_DASH] = ACTIONS(2754), - [anon_sym_QMARK] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_go] = ACTIONS(2756), - [anon_sym_spawn] = ACTIONS(2756), - [anon_sym_json_DOTdecode] = ACTIONS(2754), - [anon_sym_LBRACK2] = ACTIONS(2756), - [anon_sym_TILDE] = ACTIONS(2754), - [anon_sym_CARET] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(2756), - [anon_sym_LT_DASH] = ACTIONS(2754), - [anon_sym_LT_LT] = ACTIONS(2754), - [anon_sym_GT_GT] = ACTIONS(2756), - [anon_sym_GT_GT_GT] = ACTIONS(2754), - [anon_sym_AMP_CARET] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_or] = ACTIONS(2756), - [sym_none] = ACTIONS(2756), - [sym_true] = ACTIONS(2756), - [sym_false] = ACTIONS(2756), - [sym_nil] = ACTIONS(2756), - [anon_sym_QMARK_DOT] = ACTIONS(2754), - [anon_sym_POUND_LBRACK] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_DOLLARif] = ACTIONS(2756), - [anon_sym_is] = ACTIONS(2756), - [anon_sym_BANGis] = ACTIONS(2754), - [anon_sym_in] = ACTIONS(2756), - [anon_sym_BANGin] = ACTIONS(2754), - [anon_sym_match] = ACTIONS(2756), - [anon_sym_select] = ACTIONS(2756), - [anon_sym_lock] = ACTIONS(2756), - [anon_sym_rlock] = ACTIONS(2756), - [anon_sym_unsafe] = ACTIONS(2756), - [anon_sym_sql] = ACTIONS(2756), - [sym_int_literal] = ACTIONS(2756), - [sym_float_literal] = ACTIONS(2754), - [sym_rune_literal] = ACTIONS(2754), - [sym_pseudo_compile_time_identifier] = ACTIONS(2756), - [anon_sym_shared] = ACTIONS(2756), - [anon_sym_map_LBRACK] = ACTIONS(2754), - [anon_sym_chan] = ACTIONS(2756), - [anon_sym_thread] = ACTIONS(2756), - [anon_sym_atomic] = ACTIONS(2756), - [sym___double_quote] = ACTIONS(2754), - [sym___single_quote] = ACTIONS(2754), - [sym___c_double_quote] = ACTIONS(2754), - [sym___c_single_quote] = ACTIONS(2754), - [sym___r_double_quote] = ACTIONS(2754), - [sym___r_single_quote] = ACTIONS(2754), - }, - [1365] = { - [sym_line_comment] = STATE(1365), - [sym_block_comment] = STATE(1365), - [sym_identifier] = ACTIONS(2191), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2191), - [anon_sym_as] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2189), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_PIPE] = ACTIONS(2191), - [anon_sym_fn] = ACTIONS(2191), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2189), - [anon_sym_SLASH] = ACTIONS(2191), - [anon_sym_PERCENT] = ACTIONS(2189), - [anon_sym_LT] = ACTIONS(2191), - [anon_sym_GT] = ACTIONS(2191), - [anon_sym_EQ_EQ] = ACTIONS(2189), - [anon_sym_BANG_EQ] = ACTIONS(2189), - [anon_sym_LT_EQ] = ACTIONS(2189), - [anon_sym_GT_EQ] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_RBRACK] = ACTIONS(2189), - [anon_sym_struct] = ACTIONS(2191), - [anon_sym_mut] = ACTIONS(2191), - [anon_sym_COLON] = ACTIONS(2189), - [anon_sym_PLUS_PLUS] = ACTIONS(2189), - [anon_sym_DASH_DASH] = ACTIONS(2189), - [anon_sym_QMARK] = ACTIONS(2191), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_go] = ACTIONS(2191), - [anon_sym_spawn] = ACTIONS(2191), - [anon_sym_json_DOTdecode] = ACTIONS(2189), - [anon_sym_LBRACK2] = ACTIONS(2191), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_CARET] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(2189), - [anon_sym_LT_LT] = ACTIONS(2189), - [anon_sym_GT_GT] = ACTIONS(2191), - [anon_sym_GT_GT_GT] = ACTIONS(2189), - [anon_sym_AMP_CARET] = ACTIONS(2189), - [anon_sym_AMP_AMP] = ACTIONS(2189), - [anon_sym_PIPE_PIPE] = ACTIONS(2189), - [anon_sym_or] = ACTIONS(2191), - [sym_none] = ACTIONS(2191), - [sym_true] = ACTIONS(2191), - [sym_false] = ACTIONS(2191), - [sym_nil] = ACTIONS(2191), - [anon_sym_QMARK_DOT] = ACTIONS(2189), - [anon_sym_POUND_LBRACK] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2191), - [anon_sym_DOLLARif] = ACTIONS(2191), - [anon_sym_is] = ACTIONS(2191), - [anon_sym_BANGis] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(2191), - [anon_sym_BANGin] = ACTIONS(2189), - [anon_sym_match] = ACTIONS(2191), - [anon_sym_select] = ACTIONS(2191), - [anon_sym_lock] = ACTIONS(2191), - [anon_sym_rlock] = ACTIONS(2191), - [anon_sym_unsafe] = ACTIONS(2191), - [anon_sym_sql] = ACTIONS(2191), - [sym_int_literal] = ACTIONS(2191), - [sym_float_literal] = ACTIONS(2189), - [sym_rune_literal] = ACTIONS(2189), - [sym_pseudo_compile_time_identifier] = ACTIONS(2191), - [anon_sym_shared] = ACTIONS(2191), - [anon_sym_map_LBRACK] = ACTIONS(2189), - [anon_sym_chan] = ACTIONS(2191), - [anon_sym_thread] = ACTIONS(2191), - [anon_sym_atomic] = ACTIONS(2191), - [sym___double_quote] = ACTIONS(2189), - [sym___single_quote] = ACTIONS(2189), - [sym___c_double_quote] = ACTIONS(2189), - [sym___c_single_quote] = ACTIONS(2189), - [sym___r_double_quote] = ACTIONS(2189), - [sym___r_single_quote] = ACTIONS(2189), - }, - [1366] = { - [sym_line_comment] = STATE(1366), - [sym_block_comment] = STATE(1366), - [sym_identifier] = ACTIONS(3044), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_as] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3044), - [anon_sym_fn] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_SLASH] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(3044), - [anon_sym_GT] = ACTIONS(3044), - [anon_sym_EQ_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(3042), - [anon_sym_GT_EQ] = ACTIONS(3042), - [anon_sym_LBRACK] = ACTIONS(3042), - [anon_sym_RBRACK] = ACTIONS(3042), - [anon_sym_struct] = ACTIONS(3044), - [anon_sym_mut] = ACTIONS(3044), - [anon_sym_COLON] = ACTIONS(3042), - [anon_sym_PLUS_PLUS] = ACTIONS(3042), - [anon_sym_DASH_DASH] = ACTIONS(3042), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_BANG] = ACTIONS(3044), - [anon_sym_go] = ACTIONS(3044), - [anon_sym_spawn] = ACTIONS(3044), - [anon_sym_json_DOTdecode] = ACTIONS(3042), - [anon_sym_LBRACK2] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3042), - [anon_sym_CARET] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3044), - [anon_sym_LT_DASH] = ACTIONS(3042), - [anon_sym_LT_LT] = ACTIONS(3042), - [anon_sym_GT_GT] = ACTIONS(3044), - [anon_sym_GT_GT_GT] = ACTIONS(3042), - [anon_sym_AMP_CARET] = ACTIONS(3042), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3044), - [sym_none] = ACTIONS(3044), - [sym_true] = ACTIONS(3044), - [sym_false] = ACTIONS(3044), - [sym_nil] = ACTIONS(3044), - [anon_sym_QMARK_DOT] = ACTIONS(3042), - [anon_sym_POUND_LBRACK] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3044), - [anon_sym_DOLLARif] = ACTIONS(3044), - [anon_sym_is] = ACTIONS(3044), - [anon_sym_BANGis] = ACTIONS(3042), - [anon_sym_in] = ACTIONS(3044), - [anon_sym_BANGin] = ACTIONS(3042), - [anon_sym_match] = ACTIONS(3044), - [anon_sym_select] = ACTIONS(3044), - [anon_sym_lock] = ACTIONS(3044), - [anon_sym_rlock] = ACTIONS(3044), - [anon_sym_unsafe] = ACTIONS(3044), - [anon_sym_sql] = ACTIONS(3044), - [sym_int_literal] = ACTIONS(3044), - [sym_float_literal] = ACTIONS(3042), - [sym_rune_literal] = ACTIONS(3042), - [sym_pseudo_compile_time_identifier] = ACTIONS(3044), - [anon_sym_shared] = ACTIONS(3044), - [anon_sym_map_LBRACK] = ACTIONS(3042), - [anon_sym_chan] = ACTIONS(3044), - [anon_sym_thread] = ACTIONS(3044), - [anon_sym_atomic] = ACTIONS(3044), - [sym___double_quote] = ACTIONS(3042), - [sym___single_quote] = ACTIONS(3042), - [sym___c_double_quote] = ACTIONS(3042), - [sym___c_single_quote] = ACTIONS(3042), - [sym___r_double_quote] = ACTIONS(3042), - [sym___r_single_quote] = ACTIONS(3042), - }, - [1367] = { - [sym_line_comment] = STATE(1367), - [sym_block_comment] = STATE(1367), - [sym_identifier] = ACTIONS(2846), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_RBRACE] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_fn] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2844), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_GT] = ACTIONS(2846), - [anon_sym_EQ_EQ] = ACTIONS(2844), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_LT_EQ] = ACTIONS(2844), - [anon_sym_GT_EQ] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_RBRACK] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2846), - [anon_sym_mut] = ACTIONS(2846), - [anon_sym_COLON] = ACTIONS(2844), - [anon_sym_PLUS_PLUS] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2844), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_go] = ACTIONS(2846), - [anon_sym_spawn] = ACTIONS(2846), - [anon_sym_json_DOTdecode] = ACTIONS(2844), - [anon_sym_LBRACK2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2844), - [anon_sym_LT_LT] = ACTIONS(2844), - [anon_sym_GT_GT] = ACTIONS(2846), - [anon_sym_GT_GT_GT] = ACTIONS(2844), - [anon_sym_AMP_CARET] = ACTIONS(2844), - [anon_sym_AMP_AMP] = ACTIONS(2844), - [anon_sym_PIPE_PIPE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2846), - [sym_none] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_nil] = ACTIONS(2846), - [anon_sym_QMARK_DOT] = ACTIONS(2844), - [anon_sym_POUND_LBRACK] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_DOLLARif] = ACTIONS(2846), - [anon_sym_is] = ACTIONS(2846), - [anon_sym_BANGis] = ACTIONS(2844), - [anon_sym_in] = ACTIONS(2846), - [anon_sym_BANGin] = ACTIONS(2844), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_select] = ACTIONS(2846), - [anon_sym_lock] = ACTIONS(2846), - [anon_sym_rlock] = ACTIONS(2846), - [anon_sym_unsafe] = ACTIONS(2846), - [anon_sym_sql] = ACTIONS(2846), - [sym_int_literal] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2844), - [sym_rune_literal] = ACTIONS(2844), - [sym_pseudo_compile_time_identifier] = ACTIONS(2846), - [anon_sym_shared] = ACTIONS(2846), - [anon_sym_map_LBRACK] = ACTIONS(2844), - [anon_sym_chan] = ACTIONS(2846), - [anon_sym_thread] = ACTIONS(2846), - [anon_sym_atomic] = ACTIONS(2846), - [sym___double_quote] = ACTIONS(2844), - [sym___single_quote] = ACTIONS(2844), - [sym___c_double_quote] = ACTIONS(2844), - [sym___c_single_quote] = ACTIONS(2844), - [sym___r_double_quote] = ACTIONS(2844), - [sym___r_single_quote] = ACTIONS(2844), - }, - [1368] = { - [sym_line_comment] = STATE(1368), - [sym_block_comment] = STATE(1368), - [sym_identifier] = ACTIONS(2125), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2125), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_COMMA] = ACTIONS(2123), - [anon_sym_RBRACE] = ACTIONS(2123), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_PIPE] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2123), - [anon_sym_SLASH] = ACTIONS(2125), - [anon_sym_PERCENT] = ACTIONS(2123), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_GT] = ACTIONS(2125), - [anon_sym_EQ_EQ] = ACTIONS(2123), - [anon_sym_BANG_EQ] = ACTIONS(2123), - [anon_sym_LT_EQ] = ACTIONS(2123), - [anon_sym_GT_EQ] = ACTIONS(2123), - [anon_sym_LBRACK] = ACTIONS(2123), - [anon_sym_RBRACK] = ACTIONS(2123), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_mut] = ACTIONS(2125), - [anon_sym_COLON] = ACTIONS(2123), - [anon_sym_PLUS_PLUS] = ACTIONS(2123), - [anon_sym_DASH_DASH] = ACTIONS(2123), - [anon_sym_QMARK] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_go] = ACTIONS(2125), - [anon_sym_spawn] = ACTIONS(2125), - [anon_sym_json_DOTdecode] = ACTIONS(2123), - [anon_sym_LBRACK2] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2123), - [anon_sym_CARET] = ACTIONS(2123), - [anon_sym_AMP] = ACTIONS(2125), - [anon_sym_LT_DASH] = ACTIONS(2123), - [anon_sym_LT_LT] = ACTIONS(2123), - [anon_sym_GT_GT] = ACTIONS(2125), - [anon_sym_GT_GT_GT] = ACTIONS(2123), - [anon_sym_AMP_CARET] = ACTIONS(2123), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_PIPE_PIPE] = ACTIONS(2123), - [anon_sym_or] = ACTIONS(2125), - [sym_none] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_nil] = ACTIONS(2125), - [anon_sym_QMARK_DOT] = ACTIONS(2123), - [anon_sym_POUND_LBRACK] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_DOLLARif] = ACTIONS(2125), - [anon_sym_is] = ACTIONS(2125), - [anon_sym_BANGis] = ACTIONS(2123), - [anon_sym_in] = ACTIONS(2125), - [anon_sym_BANGin] = ACTIONS(2123), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_select] = ACTIONS(2125), - [anon_sym_lock] = ACTIONS(2125), - [anon_sym_rlock] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_sql] = ACTIONS(2125), - [sym_int_literal] = ACTIONS(2125), - [sym_float_literal] = ACTIONS(2123), - [sym_rune_literal] = ACTIONS(2123), - [sym_pseudo_compile_time_identifier] = ACTIONS(2125), - [anon_sym_shared] = ACTIONS(2125), - [anon_sym_map_LBRACK] = ACTIONS(2123), - [anon_sym_chan] = ACTIONS(2125), - [anon_sym_thread] = ACTIONS(2125), - [anon_sym_atomic] = ACTIONS(2125), - [sym___double_quote] = ACTIONS(2123), - [sym___single_quote] = ACTIONS(2123), - [sym___c_double_quote] = ACTIONS(2123), - [sym___c_single_quote] = ACTIONS(2123), - [sym___r_double_quote] = ACTIONS(2123), - [sym___r_single_quote] = ACTIONS(2123), - }, - [1369] = { - [sym_line_comment] = STATE(1369), - [sym_block_comment] = STATE(1369), - [sym_identifier] = ACTIONS(2513), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3909), - [anon_sym_DOT] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_COMMA] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_fn] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2511), - [anon_sym_SLASH] = ACTIONS(2513), - [anon_sym_PERCENT] = ACTIONS(2511), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_GT] = ACTIONS(2513), - [anon_sym_EQ_EQ] = ACTIONS(2511), - [anon_sym_BANG_EQ] = ACTIONS(2511), - [anon_sym_LT_EQ] = ACTIONS(2511), - [anon_sym_GT_EQ] = ACTIONS(2511), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_RBRACK] = ACTIONS(3909), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_COLON] = ACTIONS(3909), - [anon_sym_PLUS_PLUS] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2511), - [anon_sym_QMARK] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_go] = ACTIONS(2513), - [anon_sym_spawn] = ACTIONS(2513), - [anon_sym_json_DOTdecode] = ACTIONS(2511), - [anon_sym_LBRACK2] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2511), - [anon_sym_CARET] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_LT_DASH] = ACTIONS(2511), - [anon_sym_LT_LT] = ACTIONS(2511), - [anon_sym_GT_GT] = ACTIONS(2513), - [anon_sym_GT_GT_GT] = ACTIONS(2511), - [anon_sym_AMP_CARET] = ACTIONS(2511), - [anon_sym_AMP_AMP] = ACTIONS(2511), - [anon_sym_PIPE_PIPE] = ACTIONS(2511), - [anon_sym_or] = ACTIONS(2513), - [sym_none] = ACTIONS(2513), - [sym_true] = ACTIONS(2513), - [sym_false] = ACTIONS(2513), - [sym_nil] = ACTIONS(2513), - [anon_sym_QMARK_DOT] = ACTIONS(2511), - [anon_sym_POUND_LBRACK] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_DOLLARif] = ACTIONS(2513), - [anon_sym_is] = ACTIONS(2513), - [anon_sym_BANGis] = ACTIONS(2511), - [anon_sym_in] = ACTIONS(2513), - [anon_sym_BANGin] = ACTIONS(2511), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_select] = ACTIONS(2513), - [anon_sym_lock] = ACTIONS(2513), - [anon_sym_rlock] = ACTIONS(2513), - [anon_sym_unsafe] = ACTIONS(2513), - [anon_sym_sql] = ACTIONS(2513), - [sym_int_literal] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2511), - [sym_rune_literal] = ACTIONS(2511), - [sym_pseudo_compile_time_identifier] = ACTIONS(2513), - [anon_sym_shared] = ACTIONS(2513), - [anon_sym_map_LBRACK] = ACTIONS(2511), - [anon_sym_chan] = ACTIONS(2513), - [anon_sym_thread] = ACTIONS(2513), - [anon_sym_atomic] = ACTIONS(2513), - [sym___double_quote] = ACTIONS(2511), - [sym___single_quote] = ACTIONS(2511), - [sym___c_double_quote] = ACTIONS(2511), - [sym___c_single_quote] = ACTIONS(2511), - [sym___r_double_quote] = ACTIONS(2511), - [sym___r_single_quote] = ACTIONS(2511), - }, - [1370] = { - [sym_line_comment] = STATE(1370), - [sym_block_comment] = STATE(1370), - [sym_identifier] = ACTIONS(2149), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2149), - [anon_sym_as] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_COMMA] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_PIPE] = ACTIONS(2149), - [anon_sym_fn] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2147), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_PERCENT] = ACTIONS(2147), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_GT] = ACTIONS(2149), - [anon_sym_EQ_EQ] = ACTIONS(2147), - [anon_sym_BANG_EQ] = ACTIONS(2147), - [anon_sym_LT_EQ] = ACTIONS(2147), - [anon_sym_GT_EQ] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_RBRACK] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2149), - [anon_sym_mut] = ACTIONS(2149), - [anon_sym_COLON] = ACTIONS(2147), - [anon_sym_PLUS_PLUS] = ACTIONS(2147), - [anon_sym_DASH_DASH] = ACTIONS(2147), - [anon_sym_QMARK] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_go] = ACTIONS(2149), - [anon_sym_spawn] = ACTIONS(2149), - [anon_sym_json_DOTdecode] = ACTIONS(2147), - [anon_sym_LBRACK2] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2147), - [anon_sym_CARET] = ACTIONS(2147), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_LT_DASH] = ACTIONS(2147), - [anon_sym_LT_LT] = ACTIONS(2147), - [anon_sym_GT_GT] = ACTIONS(2149), - [anon_sym_GT_GT_GT] = ACTIONS(2147), - [anon_sym_AMP_CARET] = ACTIONS(2147), - [anon_sym_AMP_AMP] = ACTIONS(2147), - [anon_sym_PIPE_PIPE] = ACTIONS(2147), - [anon_sym_or] = ACTIONS(2149), - [sym_none] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_nil] = ACTIONS(2149), - [anon_sym_QMARK_DOT] = ACTIONS(2147), - [anon_sym_POUND_LBRACK] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_DOLLARif] = ACTIONS(2149), - [anon_sym_is] = ACTIONS(2149), - [anon_sym_BANGis] = ACTIONS(2147), - [anon_sym_in] = ACTIONS(2149), - [anon_sym_BANGin] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2149), - [anon_sym_select] = ACTIONS(2149), - [anon_sym_lock] = ACTIONS(2149), - [anon_sym_rlock] = ACTIONS(2149), - [anon_sym_unsafe] = ACTIONS(2149), - [anon_sym_sql] = ACTIONS(2149), - [sym_int_literal] = ACTIONS(2149), - [sym_float_literal] = ACTIONS(2147), - [sym_rune_literal] = ACTIONS(2147), - [sym_pseudo_compile_time_identifier] = ACTIONS(2149), - [anon_sym_shared] = ACTIONS(2149), - [anon_sym_map_LBRACK] = ACTIONS(2147), - [anon_sym_chan] = ACTIONS(2149), - [anon_sym_thread] = ACTIONS(2149), - [anon_sym_atomic] = ACTIONS(2149), - [sym___double_quote] = ACTIONS(2147), - [sym___single_quote] = ACTIONS(2147), - [sym___c_double_quote] = ACTIONS(2147), - [sym___c_single_quote] = ACTIONS(2147), - [sym___r_double_quote] = ACTIONS(2147), - [sym___r_single_quote] = ACTIONS(2147), - }, - [1371] = { - [sym_line_comment] = STATE(1371), - [sym_block_comment] = STATE(1371), - [sym_identifier] = ACTIONS(2311), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2311), - [anon_sym_as] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_COMMA] = ACTIONS(2309), - [anon_sym_RBRACE] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2311), - [anon_sym_fn] = ACTIONS(2311), - [anon_sym_PLUS] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2311), - [anon_sym_STAR] = ACTIONS(2309), - [anon_sym_SLASH] = ACTIONS(2311), - [anon_sym_PERCENT] = ACTIONS(2309), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_GT] = ACTIONS(2311), - [anon_sym_EQ_EQ] = ACTIONS(2309), - [anon_sym_BANG_EQ] = ACTIONS(2309), - [anon_sym_LT_EQ] = ACTIONS(2309), - [anon_sym_GT_EQ] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(2309), - [anon_sym_RBRACK] = ACTIONS(2309), - [anon_sym_struct] = ACTIONS(2311), - [anon_sym_mut] = ACTIONS(2311), - [anon_sym_COLON] = ACTIONS(2309), - [anon_sym_PLUS_PLUS] = ACTIONS(2309), - [anon_sym_DASH_DASH] = ACTIONS(2309), - [anon_sym_QMARK] = ACTIONS(2311), - [anon_sym_BANG] = ACTIONS(2311), - [anon_sym_go] = ACTIONS(2311), - [anon_sym_spawn] = ACTIONS(2311), - [anon_sym_json_DOTdecode] = ACTIONS(2309), - [anon_sym_LBRACK2] = ACTIONS(2311), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_CARET] = ACTIONS(2309), - [anon_sym_AMP] = ACTIONS(2311), - [anon_sym_LT_DASH] = ACTIONS(2309), - [anon_sym_LT_LT] = ACTIONS(2309), - [anon_sym_GT_GT] = ACTIONS(2311), - [anon_sym_GT_GT_GT] = ACTIONS(2309), - [anon_sym_AMP_CARET] = ACTIONS(2309), - [anon_sym_AMP_AMP] = ACTIONS(2309), - [anon_sym_PIPE_PIPE] = ACTIONS(2309), - [anon_sym_or] = ACTIONS(2311), - [sym_none] = ACTIONS(2311), - [sym_true] = ACTIONS(2311), - [sym_false] = ACTIONS(2311), - [sym_nil] = ACTIONS(2311), - [anon_sym_QMARK_DOT] = ACTIONS(2309), - [anon_sym_POUND_LBRACK] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2311), - [anon_sym_DOLLARif] = ACTIONS(2311), - [anon_sym_is] = ACTIONS(2311), - [anon_sym_BANGis] = ACTIONS(2309), - [anon_sym_in] = ACTIONS(2311), - [anon_sym_BANGin] = ACTIONS(2309), - [anon_sym_match] = ACTIONS(2311), - [anon_sym_select] = ACTIONS(2311), - [anon_sym_lock] = ACTIONS(2311), - [anon_sym_rlock] = ACTIONS(2311), - [anon_sym_unsafe] = ACTIONS(2311), - [anon_sym_sql] = ACTIONS(2311), - [sym_int_literal] = ACTIONS(2311), - [sym_float_literal] = ACTIONS(2309), - [sym_rune_literal] = ACTIONS(2309), - [sym_pseudo_compile_time_identifier] = ACTIONS(2311), - [anon_sym_shared] = ACTIONS(2311), - [anon_sym_map_LBRACK] = ACTIONS(2309), - [anon_sym_chan] = ACTIONS(2311), - [anon_sym_thread] = ACTIONS(2311), - [anon_sym_atomic] = ACTIONS(2311), - [sym___double_quote] = ACTIONS(2309), - [sym___single_quote] = ACTIONS(2309), - [sym___c_double_quote] = ACTIONS(2309), - [sym___c_single_quote] = ACTIONS(2309), - [sym___r_double_quote] = ACTIONS(2309), - [sym___r_single_quote] = ACTIONS(2309), - }, - [1372] = { - [sym_line_comment] = STATE(1372), - [sym_block_comment] = STATE(1372), [sym_identifier] = ACTIONS(2471), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -170950,22 +169764,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [sym___double_quote] = ACTIONS(2469), - [sym___single_quote] = ACTIONS(2469), - [sym___c_double_quote] = ACTIONS(2469), - [sym___c_single_quote] = ACTIONS(2469), - [sym___r_double_quote] = ACTIONS(2469), - [sym___r_single_quote] = ACTIONS(2469), }, - [1373] = { - [sym_line_comment] = STATE(1373), - [sym_block_comment] = STATE(1373), + [1359] = { + [sym_line_comment] = STATE(1359), + [sym_block_comment] = STATE(1359), + [sym_identifier] = ACTIONS(2185), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_COMMA] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_EQ_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ] = ACTIONS(2183), + [anon_sym_LT_EQ] = ACTIONS(2183), + [anon_sym_GT_EQ] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_RBRACK] = ACTIONS(2183), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_mut] = ACTIONS(2185), + [anon_sym_COLON] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2185), + [anon_sym_go] = ACTIONS(2185), + [anon_sym_spawn] = ACTIONS(2185), + [anon_sym_json_DOTdecode] = ACTIONS(2183), + [anon_sym_LBRACK2] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_LT_DASH] = ACTIONS(2183), + [anon_sym_LT_LT] = ACTIONS(2183), + [anon_sym_GT_GT] = ACTIONS(2185), + [anon_sym_GT_GT_GT] = ACTIONS(2183), + [anon_sym_AMP_CARET] = ACTIONS(2183), + [anon_sym_AMP_AMP] = ACTIONS(2183), + [anon_sym_PIPE_PIPE] = ACTIONS(2183), + [anon_sym_or] = ACTIONS(2185), + [sym_none] = ACTIONS(2185), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), + [sym_nil] = ACTIONS(2185), + [anon_sym_QMARK_DOT] = ACTIONS(2183), + [anon_sym_POUND_LBRACK] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_DOLLARif] = ACTIONS(2185), + [anon_sym_is] = ACTIONS(2185), + [anon_sym_BANGis] = ACTIONS(2183), + [anon_sym_in] = ACTIONS(2185), + [anon_sym_BANGin] = ACTIONS(2183), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_select] = ACTIONS(2185), + [anon_sym_lock] = ACTIONS(2185), + [anon_sym_rlock] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_sql] = ACTIONS(2185), + [sym_int_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2183), + [sym_rune_literal] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_c_SQUOTE] = ACTIONS(2183), + [anon_sym_c_DQUOTE] = ACTIONS(2183), + [anon_sym_r_SQUOTE] = ACTIONS(2183), + [anon_sym_r_DQUOTE] = ACTIONS(2183), + [sym_pseudo_compile_time_identifier] = ACTIONS(2185), + [anon_sym_shared] = ACTIONS(2185), + [anon_sym_map_LBRACK] = ACTIONS(2183), + [anon_sym_chan] = ACTIONS(2185), + [anon_sym_thread] = ACTIONS(2185), + [anon_sym_atomic] = ACTIONS(2185), + }, + [1360] = { + [sym_line_comment] = STATE(1360), + [sym_block_comment] = STATE(1360), + [sym_identifier] = ACTIONS(2181), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_COMMA] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_STAR] = ACTIONS(2179), + [anon_sym_SLASH] = ACTIONS(2181), + [anon_sym_PERCENT] = ACTIONS(2179), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_GT] = ACTIONS(2181), + [anon_sym_EQ_EQ] = ACTIONS(2179), + [anon_sym_BANG_EQ] = ACTIONS(2179), + [anon_sym_LT_EQ] = ACTIONS(2179), + [anon_sym_GT_EQ] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2179), + [anon_sym_RBRACK] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_mut] = ACTIONS(2181), + [anon_sym_COLON] = ACTIONS(2179), + [anon_sym_PLUS_PLUS] = ACTIONS(2179), + [anon_sym_DASH_DASH] = ACTIONS(2179), + [anon_sym_QMARK] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2181), + [anon_sym_go] = ACTIONS(2181), + [anon_sym_spawn] = ACTIONS(2181), + [anon_sym_json_DOTdecode] = ACTIONS(2179), + [anon_sym_LBRACK2] = ACTIONS(2181), + [anon_sym_TILDE] = ACTIONS(2179), + [anon_sym_CARET] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_LT_DASH] = ACTIONS(2179), + [anon_sym_LT_LT] = ACTIONS(2179), + [anon_sym_GT_GT] = ACTIONS(2181), + [anon_sym_GT_GT_GT] = ACTIONS(2179), + [anon_sym_AMP_CARET] = ACTIONS(2179), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE_PIPE] = ACTIONS(2179), + [anon_sym_or] = ACTIONS(2181), + [sym_none] = ACTIONS(2181), + [sym_true] = ACTIONS(2181), + [sym_false] = ACTIONS(2181), + [sym_nil] = ACTIONS(2181), + [anon_sym_QMARK_DOT] = ACTIONS(2179), + [anon_sym_POUND_LBRACK] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_DOLLARif] = ACTIONS(2181), + [anon_sym_is] = ACTIONS(2181), + [anon_sym_BANGis] = ACTIONS(2179), + [anon_sym_in] = ACTIONS(2181), + [anon_sym_BANGin] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_select] = ACTIONS(2181), + [anon_sym_lock] = ACTIONS(2181), + [anon_sym_rlock] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_sql] = ACTIONS(2181), + [sym_int_literal] = ACTIONS(2181), + [sym_float_literal] = ACTIONS(2179), + [sym_rune_literal] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_c_SQUOTE] = ACTIONS(2179), + [anon_sym_c_DQUOTE] = ACTIONS(2179), + [anon_sym_r_SQUOTE] = ACTIONS(2179), + [anon_sym_r_DQUOTE] = ACTIONS(2179), + [sym_pseudo_compile_time_identifier] = ACTIONS(2181), + [anon_sym_shared] = ACTIONS(2181), + [anon_sym_map_LBRACK] = ACTIONS(2179), + [anon_sym_chan] = ACTIONS(2181), + [anon_sym_thread] = ACTIONS(2181), + [anon_sym_atomic] = ACTIONS(2181), + }, + [1361] = { + [sym_line_comment] = STATE(1361), + [sym_block_comment] = STATE(1361), [sym_identifier] = ACTIONS(2115), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -171033,188 +170013,1018 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(2115), [sym_float_literal] = ACTIONS(2113), [sym_rune_literal] = ACTIONS(2113), + [anon_sym_SQUOTE] = ACTIONS(2113), + [anon_sym_DQUOTE] = ACTIONS(2113), + [anon_sym_c_SQUOTE] = ACTIONS(2113), + [anon_sym_c_DQUOTE] = ACTIONS(2113), + [anon_sym_r_SQUOTE] = ACTIONS(2113), + [anon_sym_r_DQUOTE] = ACTIONS(2113), [sym_pseudo_compile_time_identifier] = ACTIONS(2115), [anon_sym_shared] = ACTIONS(2115), [anon_sym_map_LBRACK] = ACTIONS(2113), [anon_sym_chan] = ACTIONS(2115), [anon_sym_thread] = ACTIONS(2115), [anon_sym_atomic] = ACTIONS(2115), - [sym___double_quote] = ACTIONS(2113), - [sym___single_quote] = ACTIONS(2113), - [sym___c_double_quote] = ACTIONS(2113), - [sym___c_single_quote] = ACTIONS(2113), - [sym___r_double_quote] = ACTIONS(2113), - [sym___r_single_quote] = ACTIONS(2113), }, - [1374] = { - [sym_line_comment] = STATE(1374), - [sym_block_comment] = STATE(1374), - [sym_identifier] = ACTIONS(2501), + [1362] = { + [sym_line_comment] = STATE(1362), + [sym_block_comment] = STATE(1362), + [sym_identifier] = ACTIONS(2151), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2501), - [anon_sym_as] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_COMMA] = ACTIONS(2499), - [anon_sym_RBRACE] = ACTIONS(2499), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_fn] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_STAR] = ACTIONS(2499), - [anon_sym_SLASH] = ACTIONS(2501), - [anon_sym_PERCENT] = ACTIONS(2499), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_GT] = ACTIONS(2501), - [anon_sym_EQ_EQ] = ACTIONS(2499), - [anon_sym_BANG_EQ] = ACTIONS(2499), - [anon_sym_LT_EQ] = ACTIONS(2499), - [anon_sym_GT_EQ] = ACTIONS(2499), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_RBRACK] = ACTIONS(2499), - [anon_sym_struct] = ACTIONS(2501), - [anon_sym_mut] = ACTIONS(2501), - [anon_sym_COLON] = ACTIONS(2499), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [anon_sym_QMARK] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2501), - [anon_sym_go] = ACTIONS(2501), - [anon_sym_spawn] = ACTIONS(2501), - [anon_sym_json_DOTdecode] = ACTIONS(2499), - [anon_sym_LBRACK2] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_CARET] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_LT_DASH] = ACTIONS(2499), - [anon_sym_LT_LT] = ACTIONS(2499), - [anon_sym_GT_GT] = ACTIONS(2501), - [anon_sym_GT_GT_GT] = ACTIONS(2499), - [anon_sym_AMP_CARET] = ACTIONS(2499), - [anon_sym_AMP_AMP] = ACTIONS(2499), - [anon_sym_PIPE_PIPE] = ACTIONS(2499), - [anon_sym_or] = ACTIONS(2501), - [sym_none] = ACTIONS(2501), - [sym_true] = ACTIONS(2501), - [sym_false] = ACTIONS(2501), - [sym_nil] = ACTIONS(2501), - [anon_sym_QMARK_DOT] = ACTIONS(2499), - [anon_sym_POUND_LBRACK] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_DOLLARif] = ACTIONS(2501), - [anon_sym_is] = ACTIONS(2501), - [anon_sym_BANGis] = ACTIONS(2499), - [anon_sym_in] = ACTIONS(2501), - [anon_sym_BANGin] = ACTIONS(2499), - [anon_sym_match] = ACTIONS(2501), - [anon_sym_select] = ACTIONS(2501), - [anon_sym_lock] = ACTIONS(2501), - [anon_sym_rlock] = ACTIONS(2501), - [anon_sym_unsafe] = ACTIONS(2501), - [anon_sym_sql] = ACTIONS(2501), - [sym_int_literal] = ACTIONS(2501), - [sym_float_literal] = ACTIONS(2499), - [sym_rune_literal] = ACTIONS(2499), - [sym_pseudo_compile_time_identifier] = ACTIONS(2501), - [anon_sym_shared] = ACTIONS(2501), - [anon_sym_map_LBRACK] = ACTIONS(2499), - [anon_sym_chan] = ACTIONS(2501), - [anon_sym_thread] = ACTIONS(2501), - [anon_sym_atomic] = ACTIONS(2501), - [sym___double_quote] = ACTIONS(2499), - [sym___single_quote] = ACTIONS(2499), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2499), - [sym___r_double_quote] = ACTIONS(2499), - [sym___r_single_quote] = ACTIONS(2499), + [anon_sym_DOT] = ACTIONS(2151), + [anon_sym_as] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_COMMA] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_PIPE] = ACTIONS(2151), + [anon_sym_fn] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_STAR] = ACTIONS(2149), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_PERCENT] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_GT] = ACTIONS(2151), + [anon_sym_EQ_EQ] = ACTIONS(2149), + [anon_sym_BANG_EQ] = ACTIONS(2149), + [anon_sym_LT_EQ] = ACTIONS(2149), + [anon_sym_GT_EQ] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_RBRACK] = ACTIONS(2149), + [anon_sym_struct] = ACTIONS(2151), + [anon_sym_mut] = ACTIONS(2151), + [anon_sym_COLON] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2149), + [anon_sym_DASH_DASH] = ACTIONS(2149), + [anon_sym_QMARK] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_go] = ACTIONS(2151), + [anon_sym_spawn] = ACTIONS(2151), + [anon_sym_json_DOTdecode] = ACTIONS(2149), + [anon_sym_LBRACK2] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2149), + [anon_sym_CARET] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_LT_DASH] = ACTIONS(2149), + [anon_sym_LT_LT] = ACTIONS(2149), + [anon_sym_GT_GT] = ACTIONS(2151), + [anon_sym_GT_GT_GT] = ACTIONS(2149), + [anon_sym_AMP_CARET] = ACTIONS(2149), + [anon_sym_AMP_AMP] = ACTIONS(2149), + [anon_sym_PIPE_PIPE] = ACTIONS(2149), + [anon_sym_or] = ACTIONS(2151), + [sym_none] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_nil] = ACTIONS(2151), + [anon_sym_QMARK_DOT] = ACTIONS(2149), + [anon_sym_POUND_LBRACK] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_DOLLARif] = ACTIONS(2151), + [anon_sym_is] = ACTIONS(2151), + [anon_sym_BANGis] = ACTIONS(2149), + [anon_sym_in] = ACTIONS(2151), + [anon_sym_BANGin] = ACTIONS(2149), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_select] = ACTIONS(2151), + [anon_sym_lock] = ACTIONS(2151), + [anon_sym_rlock] = ACTIONS(2151), + [anon_sym_unsafe] = ACTIONS(2151), + [anon_sym_sql] = ACTIONS(2151), + [sym_int_literal] = ACTIONS(2151), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(2149), + [anon_sym_c_SQUOTE] = ACTIONS(2149), + [anon_sym_c_DQUOTE] = ACTIONS(2149), + [anon_sym_r_SQUOTE] = ACTIONS(2149), + [anon_sym_r_DQUOTE] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(2151), + [anon_sym_shared] = ACTIONS(2151), + [anon_sym_map_LBRACK] = ACTIONS(2149), + [anon_sym_chan] = ACTIONS(2151), + [anon_sym_thread] = ACTIONS(2151), + [anon_sym_atomic] = ACTIONS(2151), }, - [1375] = { - [sym_line_comment] = STATE(1375), - [sym_block_comment] = STATE(1375), - [sym_identifier] = ACTIONS(2718), + [1363] = { + [sym_line_comment] = STATE(1363), + [sym_block_comment] = STATE(1363), + [sym_identifier] = ACTIONS(2147), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_as] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_COMMA] = ACTIONS(2716), - [anon_sym_RBRACE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_fn] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(2718), - [anon_sym_STAR] = ACTIONS(2716), - [anon_sym_SLASH] = ACTIONS(2718), - [anon_sym_PERCENT] = ACTIONS(2716), - [anon_sym_LT] = ACTIONS(2718), - [anon_sym_GT] = ACTIONS(2718), - [anon_sym_EQ_EQ] = ACTIONS(2716), - [anon_sym_BANG_EQ] = ACTIONS(2716), - [anon_sym_LT_EQ] = ACTIONS(2716), - [anon_sym_GT_EQ] = ACTIONS(2716), - [anon_sym_LBRACK] = ACTIONS(2716), - [anon_sym_RBRACK] = ACTIONS(2716), - [anon_sym_struct] = ACTIONS(2718), - [anon_sym_mut] = ACTIONS(2718), - [anon_sym_COLON] = ACTIONS(2716), - [anon_sym_PLUS_PLUS] = ACTIONS(2716), - [anon_sym_DASH_DASH] = ACTIONS(2716), - [anon_sym_QMARK] = ACTIONS(2718), - [anon_sym_BANG] = ACTIONS(2718), - [anon_sym_go] = ACTIONS(2718), - [anon_sym_spawn] = ACTIONS(2718), - [anon_sym_json_DOTdecode] = ACTIONS(2716), - [anon_sym_LBRACK2] = ACTIONS(2718), - [anon_sym_TILDE] = ACTIONS(2716), - [anon_sym_CARET] = ACTIONS(2716), - [anon_sym_AMP] = ACTIONS(2718), - [anon_sym_LT_DASH] = ACTIONS(2716), - [anon_sym_LT_LT] = ACTIONS(2716), - [anon_sym_GT_GT] = ACTIONS(2718), - [anon_sym_GT_GT_GT] = ACTIONS(2716), - [anon_sym_AMP_CARET] = ACTIONS(2716), - [anon_sym_AMP_AMP] = ACTIONS(2716), - [anon_sym_PIPE_PIPE] = ACTIONS(2716), - [anon_sym_or] = ACTIONS(2718), - [sym_none] = ACTIONS(2718), - [sym_true] = ACTIONS(2718), - [sym_false] = ACTIONS(2718), - [sym_nil] = ACTIONS(2718), - [anon_sym_QMARK_DOT] = ACTIONS(2716), - [anon_sym_POUND_LBRACK] = ACTIONS(2716), - [anon_sym_if] = ACTIONS(2718), - [anon_sym_DOLLARif] = ACTIONS(2718), - [anon_sym_is] = ACTIONS(2718), - [anon_sym_BANGis] = ACTIONS(2716), - [anon_sym_in] = ACTIONS(2718), - [anon_sym_BANGin] = ACTIONS(2716), - [anon_sym_match] = ACTIONS(2718), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2718), - [anon_sym_rlock] = ACTIONS(2718), - [anon_sym_unsafe] = ACTIONS(2718), - [anon_sym_sql] = ACTIONS(2718), - [sym_int_literal] = ACTIONS(2718), - [sym_float_literal] = ACTIONS(2716), - [sym_rune_literal] = ACTIONS(2716), - [sym_pseudo_compile_time_identifier] = ACTIONS(2718), - [anon_sym_shared] = ACTIONS(2718), - [anon_sym_map_LBRACK] = ACTIONS(2716), - [anon_sym_chan] = ACTIONS(2718), - [anon_sym_thread] = ACTIONS(2718), - [anon_sym_atomic] = ACTIONS(2718), - [sym___double_quote] = ACTIONS(2716), - [sym___single_quote] = ACTIONS(2716), - [sym___c_double_quote] = ACTIONS(2716), - [sym___c_single_quote] = ACTIONS(2716), - [sym___r_double_quote] = ACTIONS(2716), - [sym___r_single_quote] = ACTIONS(2716), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_COMMA] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2145), + [anon_sym_BANG_EQ] = ACTIONS(2145), + [anon_sym_LT_EQ] = ACTIONS(2145), + [anon_sym_GT_EQ] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_RBRACK] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_mut] = ACTIONS(2147), + [anon_sym_COLON] = ACTIONS(2145), + [anon_sym_PLUS_PLUS] = ACTIONS(2145), + [anon_sym_DASH_DASH] = ACTIONS(2145), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_go] = ACTIONS(2147), + [anon_sym_spawn] = ACTIONS(2147), + [anon_sym_json_DOTdecode] = ACTIONS(2145), + [anon_sym_LBRACK2] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2145), + [anon_sym_LT_LT] = ACTIONS(2145), + [anon_sym_GT_GT] = ACTIONS(2147), + [anon_sym_GT_GT_GT] = ACTIONS(2145), + [anon_sym_AMP_CARET] = ACTIONS(2145), + [anon_sym_AMP_AMP] = ACTIONS(2145), + [anon_sym_PIPE_PIPE] = ACTIONS(2145), + [anon_sym_or] = ACTIONS(2147), + [sym_none] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_nil] = ACTIONS(2147), + [anon_sym_QMARK_DOT] = ACTIONS(2145), + [anon_sym_POUND_LBRACK] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_DOLLARif] = ACTIONS(2147), + [anon_sym_is] = ACTIONS(2147), + [anon_sym_BANGis] = ACTIONS(2145), + [anon_sym_in] = ACTIONS(2147), + [anon_sym_BANGin] = ACTIONS(2145), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_select] = ACTIONS(2147), + [anon_sym_lock] = ACTIONS(2147), + [anon_sym_rlock] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_sql] = ACTIONS(2147), + [sym_int_literal] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2145), + [sym_rune_literal] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2145), + [anon_sym_c_SQUOTE] = ACTIONS(2145), + [anon_sym_c_DQUOTE] = ACTIONS(2145), + [anon_sym_r_SQUOTE] = ACTIONS(2145), + [anon_sym_r_DQUOTE] = ACTIONS(2145), + [sym_pseudo_compile_time_identifier] = ACTIONS(2147), + [anon_sym_shared] = ACTIONS(2147), + [anon_sym_map_LBRACK] = ACTIONS(2145), + [anon_sym_chan] = ACTIONS(2147), + [anon_sym_thread] = ACTIONS(2147), + [anon_sym_atomic] = ACTIONS(2147), }, - [1376] = { - [sym_line_comment] = STATE(1376), - [sym_block_comment] = STATE(1376), + [1364] = { + [sym_line_comment] = STATE(1364), + [sym_block_comment] = STATE(1364), + [sym_identifier] = ACTIONS(2457), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_COMMA] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_fn] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_SLASH] = ACTIONS(2457), + [anon_sym_PERCENT] = ACTIONS(2455), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_GT] = ACTIONS(2457), + [anon_sym_EQ_EQ] = ACTIONS(2455), + [anon_sym_BANG_EQ] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(2455), + [anon_sym_GT_EQ] = ACTIONS(2455), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_RBRACK] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_COLON] = ACTIONS(2455), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_QMARK] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_go] = ACTIONS(2457), + [anon_sym_spawn] = ACTIONS(2457), + [anon_sym_json_DOTdecode] = ACTIONS(2455), + [anon_sym_LBRACK2] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_CARET] = ACTIONS(2455), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2455), + [anon_sym_LT_LT] = ACTIONS(2455), + [anon_sym_GT_GT] = ACTIONS(2457), + [anon_sym_GT_GT_GT] = ACTIONS(2455), + [anon_sym_AMP_CARET] = ACTIONS(2455), + [anon_sym_AMP_AMP] = ACTIONS(2455), + [anon_sym_PIPE_PIPE] = ACTIONS(2455), + [anon_sym_or] = ACTIONS(2457), + [sym_none] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_nil] = ACTIONS(2457), + [anon_sym_QMARK_DOT] = ACTIONS(2455), + [anon_sym_POUND_LBRACK] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_DOLLARif] = ACTIONS(2457), + [anon_sym_is] = ACTIONS(2457), + [anon_sym_BANGis] = ACTIONS(2455), + [anon_sym_in] = ACTIONS(2457), + [anon_sym_BANGin] = ACTIONS(2455), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_select] = ACTIONS(2457), + [anon_sym_lock] = ACTIONS(2457), + [anon_sym_rlock] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(2457), + [anon_sym_sql] = ACTIONS(2457), + [sym_int_literal] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2455), + [sym_rune_literal] = ACTIONS(2455), + [anon_sym_SQUOTE] = ACTIONS(2455), + [anon_sym_DQUOTE] = ACTIONS(2455), + [anon_sym_c_SQUOTE] = ACTIONS(2455), + [anon_sym_c_DQUOTE] = ACTIONS(2455), + [anon_sym_r_SQUOTE] = ACTIONS(2455), + [anon_sym_r_DQUOTE] = ACTIONS(2455), + [sym_pseudo_compile_time_identifier] = ACTIONS(2457), + [anon_sym_shared] = ACTIONS(2457), + [anon_sym_map_LBRACK] = ACTIONS(2455), + [anon_sym_chan] = ACTIONS(2457), + [anon_sym_thread] = ACTIONS(2457), + [anon_sym_atomic] = ACTIONS(2457), + }, + [1365] = { + [sym_line_comment] = STATE(1365), + [sym_block_comment] = STATE(1365), + [sym_identifier] = ACTIONS(2029), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2029), + [anon_sym_as] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_COMMA] = ACTIONS(2031), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2029), + [anon_sym_fn] = ACTIONS(2029), + [anon_sym_PLUS] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_SLASH] = ACTIONS(2029), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_GT] = ACTIONS(2029), + [anon_sym_EQ_EQ] = ACTIONS(2031), + [anon_sym_BANG_EQ] = ACTIONS(2031), + [anon_sym_LT_EQ] = ACTIONS(2031), + [anon_sym_GT_EQ] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_RBRACK] = ACTIONS(2031), + [anon_sym_struct] = ACTIONS(2029), + [anon_sym_mut] = ACTIONS(2029), + [anon_sym_COLON] = ACTIONS(2031), + [anon_sym_PLUS_PLUS] = ACTIONS(2031), + [anon_sym_DASH_DASH] = ACTIONS(2031), + [anon_sym_QMARK] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(2029), + [anon_sym_go] = ACTIONS(2029), + [anon_sym_spawn] = ACTIONS(2029), + [anon_sym_json_DOTdecode] = ACTIONS(2031), + [anon_sym_LBRACK2] = ACTIONS(2029), + [anon_sym_TILDE] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_LT_DASH] = ACTIONS(2031), + [anon_sym_LT_LT] = ACTIONS(2031), + [anon_sym_GT_GT] = ACTIONS(2029), + [anon_sym_GT_GT_GT] = ACTIONS(2031), + [anon_sym_AMP_CARET] = ACTIONS(2031), + [anon_sym_AMP_AMP] = ACTIONS(2031), + [anon_sym_PIPE_PIPE] = ACTIONS(2031), + [anon_sym_or] = ACTIONS(2029), + [sym_none] = ACTIONS(2029), + [sym_true] = ACTIONS(2029), + [sym_false] = ACTIONS(2029), + [sym_nil] = ACTIONS(2029), + [anon_sym_QMARK_DOT] = ACTIONS(2031), + [anon_sym_POUND_LBRACK] = ACTIONS(2031), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_DOLLARif] = ACTIONS(2029), + [anon_sym_is] = ACTIONS(2029), + [anon_sym_BANGis] = ACTIONS(2031), + [anon_sym_in] = ACTIONS(2029), + [anon_sym_BANGin] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_select] = ACTIONS(2029), + [anon_sym_lock] = ACTIONS(2029), + [anon_sym_rlock] = ACTIONS(2029), + [anon_sym_unsafe] = ACTIONS(2029), + [anon_sym_sql] = ACTIONS(2029), + [sym_int_literal] = ACTIONS(2029), + [sym_float_literal] = ACTIONS(2031), + [sym_rune_literal] = ACTIONS(2031), + [anon_sym_SQUOTE] = ACTIONS(2031), + [anon_sym_DQUOTE] = ACTIONS(2031), + [anon_sym_c_SQUOTE] = ACTIONS(2031), + [anon_sym_c_DQUOTE] = ACTIONS(2031), + [anon_sym_r_SQUOTE] = ACTIONS(2031), + [anon_sym_r_DQUOTE] = ACTIONS(2031), + [sym_pseudo_compile_time_identifier] = ACTIONS(2029), + [anon_sym_shared] = ACTIONS(2029), + [anon_sym_map_LBRACK] = ACTIONS(2031), + [anon_sym_chan] = ACTIONS(2029), + [anon_sym_thread] = ACTIONS(2029), + [anon_sym_atomic] = ACTIONS(2029), + }, + [1366] = { + [sym_line_comment] = STATE(1366), + [sym_block_comment] = STATE(1366), + [sym_identifier] = ACTIONS(2265), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2265), + [anon_sym_as] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_COMMA] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2265), + [anon_sym_fn] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2263), + [anon_sym_SLASH] = ACTIONS(2265), + [anon_sym_PERCENT] = ACTIONS(2263), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_GT] = ACTIONS(2265), + [anon_sym_EQ_EQ] = ACTIONS(2263), + [anon_sym_BANG_EQ] = ACTIONS(2263), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(2263), + [anon_sym_struct] = ACTIONS(2265), + [anon_sym_mut] = ACTIONS(2265), + [anon_sym_COLON] = ACTIONS(2263), + [anon_sym_PLUS_PLUS] = ACTIONS(2263), + [anon_sym_DASH_DASH] = ACTIONS(2263), + [anon_sym_QMARK] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(2265), + [anon_sym_go] = ACTIONS(2265), + [anon_sym_spawn] = ACTIONS(2265), + [anon_sym_json_DOTdecode] = ACTIONS(2263), + [anon_sym_LBRACK2] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2263), + [anon_sym_CARET] = ACTIONS(2263), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_LT_DASH] = ACTIONS(2263), + [anon_sym_LT_LT] = ACTIONS(2263), + [anon_sym_GT_GT] = ACTIONS(2265), + [anon_sym_GT_GT_GT] = ACTIONS(2263), + [anon_sym_AMP_CARET] = ACTIONS(2263), + [anon_sym_AMP_AMP] = ACTIONS(2263), + [anon_sym_PIPE_PIPE] = ACTIONS(2263), + [anon_sym_or] = ACTIONS(2265), + [sym_none] = ACTIONS(2265), + [sym_true] = ACTIONS(2265), + [sym_false] = ACTIONS(2265), + [sym_nil] = ACTIONS(2265), + [anon_sym_QMARK_DOT] = ACTIONS(2263), + [anon_sym_POUND_LBRACK] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_DOLLARif] = ACTIONS(2265), + [anon_sym_is] = ACTIONS(2265), + [anon_sym_BANGis] = ACTIONS(2263), + [anon_sym_in] = ACTIONS(2265), + [anon_sym_BANGin] = ACTIONS(2263), + [anon_sym_match] = ACTIONS(2265), + [anon_sym_select] = ACTIONS(2265), + [anon_sym_lock] = ACTIONS(2265), + [anon_sym_rlock] = ACTIONS(2265), + [anon_sym_unsafe] = ACTIONS(2265), + [anon_sym_sql] = ACTIONS(2265), + [sym_int_literal] = ACTIONS(2265), + [sym_float_literal] = ACTIONS(2263), + [sym_rune_literal] = ACTIONS(2263), + [anon_sym_SQUOTE] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(2263), + [anon_sym_c_SQUOTE] = ACTIONS(2263), + [anon_sym_c_DQUOTE] = ACTIONS(2263), + [anon_sym_r_SQUOTE] = ACTIONS(2263), + [anon_sym_r_DQUOTE] = ACTIONS(2263), + [sym_pseudo_compile_time_identifier] = ACTIONS(2265), + [anon_sym_shared] = ACTIONS(2265), + [anon_sym_map_LBRACK] = ACTIONS(2263), + [anon_sym_chan] = ACTIONS(2265), + [anon_sym_thread] = ACTIONS(2265), + [anon_sym_atomic] = ACTIONS(2265), + }, + [1367] = { + [sym_line_comment] = STATE(1367), + [sym_block_comment] = STATE(1367), + [sym_identifier] = ACTIONS(2453), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [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_PIPE] = ACTIONS(2453), + [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_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), + }, + [1368] = { + [sym_line_comment] = STATE(1368), + [sym_block_comment] = STATE(1368), + [sym_identifier] = ACTIONS(2439), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2439), + [anon_sym_as] = ACTIONS(2439), + [anon_sym_LBRACE] = ACTIONS(2437), + [anon_sym_COMMA] = ACTIONS(2437), + [anon_sym_RBRACE] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2439), + [anon_sym_fn] = ACTIONS(2439), + [anon_sym_PLUS] = ACTIONS(2439), + [anon_sym_DASH] = ACTIONS(2439), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_SLASH] = ACTIONS(2439), + [anon_sym_PERCENT] = ACTIONS(2437), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_GT] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2437), + [anon_sym_BANG_EQ] = ACTIONS(2437), + [anon_sym_LT_EQ] = ACTIONS(2437), + [anon_sym_GT_EQ] = ACTIONS(2437), + [anon_sym_LBRACK] = ACTIONS(2437), + [anon_sym_RBRACK] = ACTIONS(2437), + [anon_sym_struct] = ACTIONS(2439), + [anon_sym_mut] = ACTIONS(2439), + [anon_sym_COLON] = ACTIONS(2437), + [anon_sym_PLUS_PLUS] = ACTIONS(2437), + [anon_sym_DASH_DASH] = ACTIONS(2437), + [anon_sym_QMARK] = ACTIONS(2439), + [anon_sym_BANG] = ACTIONS(2439), + [anon_sym_go] = ACTIONS(2439), + [anon_sym_spawn] = ACTIONS(2439), + [anon_sym_json_DOTdecode] = ACTIONS(2437), + [anon_sym_LBRACK2] = ACTIONS(2439), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2439), + [anon_sym_LT_DASH] = ACTIONS(2437), + [anon_sym_LT_LT] = ACTIONS(2437), + [anon_sym_GT_GT] = ACTIONS(2439), + [anon_sym_GT_GT_GT] = ACTIONS(2437), + [anon_sym_AMP_CARET] = ACTIONS(2437), + [anon_sym_AMP_AMP] = ACTIONS(2437), + [anon_sym_PIPE_PIPE] = ACTIONS(2437), + [anon_sym_or] = ACTIONS(2439), + [sym_none] = ACTIONS(2439), + [sym_true] = ACTIONS(2439), + [sym_false] = ACTIONS(2439), + [sym_nil] = ACTIONS(2439), + [anon_sym_QMARK_DOT] = ACTIONS(2437), + [anon_sym_POUND_LBRACK] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2439), + [anon_sym_DOLLARif] = ACTIONS(2439), + [anon_sym_is] = ACTIONS(2439), + [anon_sym_BANGis] = ACTIONS(2437), + [anon_sym_in] = ACTIONS(2439), + [anon_sym_BANGin] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2439), + [anon_sym_select] = ACTIONS(2439), + [anon_sym_lock] = ACTIONS(2439), + [anon_sym_rlock] = ACTIONS(2439), + [anon_sym_unsafe] = ACTIONS(2439), + [anon_sym_sql] = ACTIONS(2439), + [sym_int_literal] = ACTIONS(2439), + [sym_float_literal] = ACTIONS(2437), + [sym_rune_literal] = ACTIONS(2437), + [anon_sym_SQUOTE] = ACTIONS(2437), + [anon_sym_DQUOTE] = ACTIONS(2437), + [anon_sym_c_SQUOTE] = ACTIONS(2437), + [anon_sym_c_DQUOTE] = ACTIONS(2437), + [anon_sym_r_SQUOTE] = ACTIONS(2437), + [anon_sym_r_DQUOTE] = ACTIONS(2437), + [sym_pseudo_compile_time_identifier] = ACTIONS(2439), + [anon_sym_shared] = ACTIONS(2439), + [anon_sym_map_LBRACK] = ACTIONS(2437), + [anon_sym_chan] = ACTIONS(2439), + [anon_sym_thread] = ACTIONS(2439), + [anon_sym_atomic] = ACTIONS(2439), + }, + [1369] = { + [sym_line_comment] = STATE(1369), + [sym_block_comment] = STATE(1369), + [sym_identifier] = ACTIONS(2175), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_COMMA] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2173), + [anon_sym_BANG_EQ] = ACTIONS(2173), + [anon_sym_LT_EQ] = ACTIONS(2173), + [anon_sym_GT_EQ] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2173), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_COLON] = ACTIONS(2173), + [anon_sym_PLUS_PLUS] = ACTIONS(2173), + [anon_sym_DASH_DASH] = ACTIONS(2173), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2173), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2173), + [anon_sym_CARET] = ACTIONS(2173), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2173), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2173), + [anon_sym_AMP_CARET] = ACTIONS(2173), + [anon_sym_AMP_AMP] = ACTIONS(2173), + [anon_sym_PIPE_PIPE] = ACTIONS(2173), + [anon_sym_or] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2173), + [anon_sym_POUND_LBRACK] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_is] = ACTIONS(2175), + [anon_sym_BANGis] = ACTIONS(2173), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_BANGin] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2173), + [sym_rune_literal] = ACTIONS(2173), + [anon_sym_SQUOTE] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2173), + [anon_sym_c_SQUOTE] = ACTIONS(2173), + [anon_sym_c_DQUOTE] = ACTIONS(2173), + [anon_sym_r_SQUOTE] = ACTIONS(2173), + [anon_sym_r_DQUOTE] = ACTIONS(2173), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2173), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), + }, + [1370] = { + [sym_line_comment] = STATE(1370), + [sym_block_comment] = STATE(1370), + [sym_type_parameters] = STATE(4063), + [sym_argument_list] = STATE(1354), + [sym_or_block] = STATE(1355), + [sym_identifier] = ACTIONS(3843), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_as] = ACTIONS(3845), + [anon_sym_LBRACE] = ACTIONS(3847), + [anon_sym_RBRACE] = ACTIONS(3847), + [anon_sym_LPAREN] = ACTIONS(3827), + [anon_sym_PIPE] = ACTIONS(3849), + [anon_sym_fn] = ACTIONS(3843), + [anon_sym_PLUS] = ACTIONS(3849), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_STAR] = ACTIONS(3851), + [anon_sym_SLASH] = ACTIONS(3853), + [anon_sym_PERCENT] = ACTIONS(3851), + [anon_sym_LT] = ACTIONS(3855), + [anon_sym_GT] = ACTIONS(3855), + [anon_sym_EQ_EQ] = ACTIONS(3857), + [anon_sym_BANG_EQ] = ACTIONS(3857), + [anon_sym_LT_EQ] = ACTIONS(3857), + [anon_sym_GT_EQ] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_struct] = ACTIONS(3843), + [anon_sym_mut] = ACTIONS(3843), + [anon_sym_PLUS_PLUS] = ACTIONS(3861), + [anon_sym_DASH_DASH] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_go] = ACTIONS(3843), + [anon_sym_spawn] = ACTIONS(3843), + [anon_sym_json_DOTdecode] = ACTIONS(3847), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(3847), + [anon_sym_CARET] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_LT_DASH] = ACTIONS(3847), + [anon_sym_LT_LT] = ACTIONS(3851), + [anon_sym_GT_GT] = ACTIONS(3853), + [anon_sym_GT_GT_GT] = ACTIONS(3851), + [anon_sym_AMP_CARET] = ACTIONS(3851), + [anon_sym_AMP_AMP] = ACTIONS(3867), + [anon_sym_PIPE_PIPE] = ACTIONS(3869), + [anon_sym_or] = ACTIONS(3871), + [sym_none] = ACTIONS(3843), + [sym_true] = ACTIONS(3843), + [sym_false] = ACTIONS(3843), + [sym_nil] = ACTIONS(3843), + [anon_sym_QMARK_DOT] = ACTIONS(3837), + [anon_sym_POUND_LBRACK] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(3843), + [anon_sym_DOLLARif] = ACTIONS(3843), + [anon_sym_is] = ACTIONS(3873), + [anon_sym_BANGis] = ACTIONS(3875), + [anon_sym_in] = ACTIONS(3877), + [anon_sym_BANGin] = ACTIONS(3879), + [anon_sym_match] = ACTIONS(3843), + [anon_sym_select] = ACTIONS(3843), + [anon_sym_lock] = ACTIONS(3843), + [anon_sym_rlock] = ACTIONS(3843), + [anon_sym_unsafe] = ACTIONS(3843), + [anon_sym_sql] = ACTIONS(3843), + [sym_int_literal] = ACTIONS(3843), + [sym_float_literal] = ACTIONS(3847), + [sym_rune_literal] = ACTIONS(3847), + [anon_sym_SQUOTE] = ACTIONS(3847), + [anon_sym_DQUOTE] = ACTIONS(3847), + [anon_sym_c_SQUOTE] = ACTIONS(3847), + [anon_sym_c_DQUOTE] = ACTIONS(3847), + [anon_sym_r_SQUOTE] = ACTIONS(3847), + [anon_sym_r_DQUOTE] = ACTIONS(3847), + [sym_pseudo_compile_time_identifier] = ACTIONS(3843), + [anon_sym_shared] = ACTIONS(3843), + [anon_sym_map_LBRACK] = ACTIONS(3847), + [anon_sym_chan] = ACTIONS(3843), + [anon_sym_thread] = ACTIONS(3843), + [anon_sym_atomic] = ACTIONS(3843), + }, + [1371] = { + [sym_line_comment] = STATE(1371), + [sym_block_comment] = STATE(1371), + [sym_identifier] = ACTIONS(2257), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2257), + [anon_sym_as] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_COMMA] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_PIPE] = ACTIONS(2257), + [anon_sym_fn] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(2257), + [anon_sym_PERCENT] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_GT] = ACTIONS(2257), + [anon_sym_EQ_EQ] = ACTIONS(2255), + [anon_sym_BANG_EQ] = ACTIONS(2255), + [anon_sym_LT_EQ] = ACTIONS(2255), + [anon_sym_GT_EQ] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_RBRACK] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2257), + [anon_sym_mut] = ACTIONS(2257), + [anon_sym_COLON] = ACTIONS(2255), + [anon_sym_PLUS_PLUS] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2255), + [anon_sym_QMARK] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_go] = ACTIONS(2257), + [anon_sym_spawn] = ACTIONS(2257), + [anon_sym_json_DOTdecode] = ACTIONS(2255), + [anon_sym_LBRACK2] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_CARET] = ACTIONS(2255), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_LT_DASH] = ACTIONS(2255), + [anon_sym_LT_LT] = ACTIONS(2255), + [anon_sym_GT_GT] = ACTIONS(2257), + [anon_sym_GT_GT_GT] = ACTIONS(2255), + [anon_sym_AMP_CARET] = ACTIONS(2255), + [anon_sym_AMP_AMP] = ACTIONS(2255), + [anon_sym_PIPE_PIPE] = ACTIONS(2255), + [anon_sym_or] = ACTIONS(2257), + [sym_none] = ACTIONS(2257), + [sym_true] = ACTIONS(2257), + [sym_false] = ACTIONS(2257), + [sym_nil] = ACTIONS(2257), + [anon_sym_QMARK_DOT] = ACTIONS(2255), + [anon_sym_POUND_LBRACK] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_DOLLARif] = ACTIONS(2257), + [anon_sym_is] = ACTIONS(2257), + [anon_sym_BANGis] = ACTIONS(2255), + [anon_sym_in] = ACTIONS(2257), + [anon_sym_BANGin] = ACTIONS(2255), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_select] = ACTIONS(2257), + [anon_sym_lock] = ACTIONS(2257), + [anon_sym_rlock] = ACTIONS(2257), + [anon_sym_unsafe] = ACTIONS(2257), + [anon_sym_sql] = ACTIONS(2257), + [sym_int_literal] = ACTIONS(2257), + [sym_float_literal] = ACTIONS(2255), + [sym_rune_literal] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_DQUOTE] = ACTIONS(2255), + [anon_sym_c_SQUOTE] = ACTIONS(2255), + [anon_sym_c_DQUOTE] = ACTIONS(2255), + [anon_sym_r_SQUOTE] = ACTIONS(2255), + [anon_sym_r_DQUOTE] = ACTIONS(2255), + [sym_pseudo_compile_time_identifier] = ACTIONS(2257), + [anon_sym_shared] = ACTIONS(2257), + [anon_sym_map_LBRACK] = ACTIONS(2255), + [anon_sym_chan] = ACTIONS(2257), + [anon_sym_thread] = ACTIONS(2257), + [anon_sym_atomic] = ACTIONS(2257), + }, + [1372] = { + [sym_line_comment] = STATE(1372), + [sym_block_comment] = STATE(1372), + [sym_identifier] = ACTIONS(2241), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2241), + [anon_sym_as] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_COMMA] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(2241), + [anon_sym_fn] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(2239), + [anon_sym_SLASH] = ACTIONS(2241), + [anon_sym_PERCENT] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_GT] = ACTIONS(2241), + [anon_sym_EQ_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ] = ACTIONS(2239), + [anon_sym_LT_EQ] = ACTIONS(2239), + [anon_sym_GT_EQ] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_RBRACK] = ACTIONS(2239), + [anon_sym_struct] = ACTIONS(2241), + [anon_sym_mut] = ACTIONS(2241), + [anon_sym_COLON] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(2239), + [anon_sym_DASH_DASH] = ACTIONS(2239), + [anon_sym_QMARK] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_go] = ACTIONS(2241), + [anon_sym_spawn] = ACTIONS(2241), + [anon_sym_json_DOTdecode] = ACTIONS(2239), + [anon_sym_LBRACK2] = ACTIONS(2241), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_LT_DASH] = ACTIONS(2239), + [anon_sym_LT_LT] = ACTIONS(2239), + [anon_sym_GT_GT] = ACTIONS(2241), + [anon_sym_GT_GT_GT] = ACTIONS(2239), + [anon_sym_AMP_CARET] = ACTIONS(2239), + [anon_sym_AMP_AMP] = ACTIONS(2239), + [anon_sym_PIPE_PIPE] = ACTIONS(2239), + [anon_sym_or] = ACTIONS(2241), + [sym_none] = ACTIONS(2241), + [sym_true] = ACTIONS(2241), + [sym_false] = ACTIONS(2241), + [sym_nil] = ACTIONS(2241), + [anon_sym_QMARK_DOT] = ACTIONS(2239), + [anon_sym_POUND_LBRACK] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_DOLLARif] = ACTIONS(2241), + [anon_sym_is] = ACTIONS(2241), + [anon_sym_BANGis] = ACTIONS(2239), + [anon_sym_in] = ACTIONS(2241), + [anon_sym_BANGin] = ACTIONS(2239), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_select] = ACTIONS(2241), + [anon_sym_lock] = ACTIONS(2241), + [anon_sym_rlock] = ACTIONS(2241), + [anon_sym_unsafe] = ACTIONS(2241), + [anon_sym_sql] = ACTIONS(2241), + [sym_int_literal] = ACTIONS(2241), + [sym_float_literal] = ACTIONS(2239), + [sym_rune_literal] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_DQUOTE] = ACTIONS(2239), + [anon_sym_c_SQUOTE] = ACTIONS(2239), + [anon_sym_c_DQUOTE] = ACTIONS(2239), + [anon_sym_r_SQUOTE] = ACTIONS(2239), + [anon_sym_r_DQUOTE] = ACTIONS(2239), + [sym_pseudo_compile_time_identifier] = ACTIONS(2241), + [anon_sym_shared] = ACTIONS(2241), + [anon_sym_map_LBRACK] = ACTIONS(2239), + [anon_sym_chan] = ACTIONS(2241), + [anon_sym_thread] = ACTIONS(2241), + [anon_sym_atomic] = ACTIONS(2241), + }, + [1373] = { + [sym_line_comment] = STATE(1373), + [sym_block_comment] = STATE(1373), + [sym_identifier] = ACTIONS(2233), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2233), + [anon_sym_as] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_COMMA] = ACTIONS(2231), + [anon_sym_RBRACE] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_PIPE] = ACTIONS(2233), + [anon_sym_fn] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_STAR] = ACTIONS(2231), + [anon_sym_SLASH] = ACTIONS(2233), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_GT] = ACTIONS(2233), + [anon_sym_EQ_EQ] = ACTIONS(2231), + [anon_sym_BANG_EQ] = ACTIONS(2231), + [anon_sym_LT_EQ] = ACTIONS(2231), + [anon_sym_GT_EQ] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_RBRACK] = ACTIONS(2231), + [anon_sym_struct] = ACTIONS(2233), + [anon_sym_mut] = ACTIONS(2233), + [anon_sym_COLON] = ACTIONS(2231), + [anon_sym_PLUS_PLUS] = ACTIONS(2231), + [anon_sym_DASH_DASH] = ACTIONS(2231), + [anon_sym_QMARK] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2233), + [anon_sym_go] = ACTIONS(2233), + [anon_sym_spawn] = ACTIONS(2233), + [anon_sym_json_DOTdecode] = ACTIONS(2231), + [anon_sym_LBRACK2] = ACTIONS(2233), + [anon_sym_TILDE] = ACTIONS(2231), + [anon_sym_CARET] = ACTIONS(2231), + [anon_sym_AMP] = ACTIONS(2233), + [anon_sym_LT_DASH] = ACTIONS(2231), + [anon_sym_LT_LT] = ACTIONS(2231), + [anon_sym_GT_GT] = ACTIONS(2233), + [anon_sym_GT_GT_GT] = ACTIONS(2231), + [anon_sym_AMP_CARET] = ACTIONS(2231), + [anon_sym_AMP_AMP] = ACTIONS(2231), + [anon_sym_PIPE_PIPE] = ACTIONS(2231), + [anon_sym_or] = ACTIONS(2233), + [sym_none] = ACTIONS(2233), + [sym_true] = ACTIONS(2233), + [sym_false] = ACTIONS(2233), + [sym_nil] = ACTIONS(2233), + [anon_sym_QMARK_DOT] = ACTIONS(2231), + [anon_sym_POUND_LBRACK] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_DOLLARif] = ACTIONS(2233), + [anon_sym_is] = ACTIONS(2233), + [anon_sym_BANGis] = ACTIONS(2231), + [anon_sym_in] = ACTIONS(2233), + [anon_sym_BANGin] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_select] = ACTIONS(2233), + [anon_sym_lock] = ACTIONS(2233), + [anon_sym_rlock] = ACTIONS(2233), + [anon_sym_unsafe] = ACTIONS(2233), + [anon_sym_sql] = ACTIONS(2233), + [sym_int_literal] = ACTIONS(2233), + [sym_float_literal] = ACTIONS(2231), + [sym_rune_literal] = ACTIONS(2231), + [anon_sym_SQUOTE] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(2231), + [anon_sym_c_SQUOTE] = ACTIONS(2231), + [anon_sym_c_DQUOTE] = ACTIONS(2231), + [anon_sym_r_SQUOTE] = ACTIONS(2231), + [anon_sym_r_DQUOTE] = ACTIONS(2231), + [sym_pseudo_compile_time_identifier] = ACTIONS(2233), + [anon_sym_shared] = ACTIONS(2233), + [anon_sym_map_LBRACK] = ACTIONS(2231), + [anon_sym_chan] = ACTIONS(2233), + [anon_sym_thread] = ACTIONS(2233), + [anon_sym_atomic] = ACTIONS(2233), + }, + [1374] = { + [sym_line_comment] = STATE(1374), + [sym_block_comment] = STATE(1374), [sym_identifier] = ACTIONS(2119), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -171282,931 +171092,1097 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(2119), [sym_float_literal] = ACTIONS(2117), [sym_rune_literal] = ACTIONS(2117), + [anon_sym_SQUOTE] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2117), + [anon_sym_c_SQUOTE] = ACTIONS(2117), + [anon_sym_c_DQUOTE] = ACTIONS(2117), + [anon_sym_r_SQUOTE] = ACTIONS(2117), + [anon_sym_r_DQUOTE] = ACTIONS(2117), [sym_pseudo_compile_time_identifier] = ACTIONS(2119), [anon_sym_shared] = ACTIONS(2119), [anon_sym_map_LBRACK] = ACTIONS(2117), [anon_sym_chan] = ACTIONS(2119), [anon_sym_thread] = ACTIONS(2119), [anon_sym_atomic] = ACTIONS(2119), - [sym___double_quote] = ACTIONS(2117), - [sym___single_quote] = ACTIONS(2117), - [sym___c_double_quote] = ACTIONS(2117), - [sym___c_single_quote] = ACTIONS(2117), - [sym___r_double_quote] = ACTIONS(2117), - [sym___r_single_quote] = ACTIONS(2117), + }, + [1375] = { + [sym_line_comment] = STATE(1375), + [sym_block_comment] = STATE(1375), + [sym_identifier] = ACTIONS(3066), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3066), + [anon_sym_as] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3064), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_RBRACE] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_SLASH] = ACTIONS(3066), + [anon_sym_PERCENT] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_EQ_EQ] = ACTIONS(3064), + [anon_sym_BANG_EQ] = ACTIONS(3064), + [anon_sym_LT_EQ] = ACTIONS(3064), + [anon_sym_GT_EQ] = ACTIONS(3064), + [anon_sym_LBRACK] = ACTIONS(3064), + [anon_sym_RBRACK] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(3066), + [anon_sym_COLON] = ACTIONS(3064), + [anon_sym_PLUS_PLUS] = ACTIONS(3064), + [anon_sym_DASH_DASH] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(3066), + [anon_sym_go] = ACTIONS(3066), + [anon_sym_spawn] = ACTIONS(3066), + [anon_sym_json_DOTdecode] = ACTIONS(3064), + [anon_sym_LBRACK2] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3064), + [anon_sym_CARET] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3066), + [anon_sym_LT_DASH] = ACTIONS(3064), + [anon_sym_LT_LT] = ACTIONS(3064), + [anon_sym_GT_GT] = ACTIONS(3066), + [anon_sym_GT_GT_GT] = ACTIONS(3064), + [anon_sym_AMP_CARET] = ACTIONS(3064), + [anon_sym_AMP_AMP] = ACTIONS(3064), + [anon_sym_PIPE_PIPE] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3066), + [sym_none] = ACTIONS(3066), + [sym_true] = ACTIONS(3066), + [sym_false] = ACTIONS(3066), + [sym_nil] = ACTIONS(3066), + [anon_sym_QMARK_DOT] = ACTIONS(3064), + [anon_sym_POUND_LBRACK] = ACTIONS(3064), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_DOLLARif] = ACTIONS(3066), + [anon_sym_is] = ACTIONS(3066), + [anon_sym_BANGis] = ACTIONS(3064), + [anon_sym_in] = ACTIONS(3066), + [anon_sym_BANGin] = ACTIONS(3064), + [anon_sym_match] = ACTIONS(3066), + [anon_sym_select] = ACTIONS(3066), + [anon_sym_lock] = ACTIONS(3066), + [anon_sym_rlock] = ACTIONS(3066), + [anon_sym_unsafe] = ACTIONS(3066), + [anon_sym_sql] = ACTIONS(3066), + [sym_int_literal] = ACTIONS(3066), + [sym_float_literal] = ACTIONS(3064), + [sym_rune_literal] = ACTIONS(3064), + [anon_sym_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(3066), + [anon_sym_shared] = ACTIONS(3066), + [anon_sym_map_LBRACK] = ACTIONS(3064), + [anon_sym_chan] = ACTIONS(3066), + [anon_sym_thread] = ACTIONS(3066), + [anon_sym_atomic] = ACTIONS(3066), + }, + [1376] = { + [sym_line_comment] = STATE(1376), + [sym_block_comment] = STATE(1376), + [sym_identifier] = ACTIONS(3021), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3021), + [anon_sym_as] = ACTIONS(3021), + [anon_sym_LBRACE] = ACTIONS(3019), + [anon_sym_COMMA] = ACTIONS(3019), + [anon_sym_RBRACE] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_PIPE] = ACTIONS(3021), + [anon_sym_fn] = ACTIONS(3021), + [anon_sym_PLUS] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3021), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_SLASH] = ACTIONS(3021), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_GT] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3019), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(3019), + [anon_sym_RBRACK] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(3021), + [anon_sym_mut] = ACTIONS(3021), + [anon_sym_COLON] = ACTIONS(3019), + [anon_sym_PLUS_PLUS] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3019), + [anon_sym_QMARK] = ACTIONS(3021), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_go] = ACTIONS(3021), + [anon_sym_spawn] = ACTIONS(3021), + [anon_sym_json_DOTdecode] = ACTIONS(3019), + [anon_sym_LBRACK2] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3019), + [anon_sym_AMP] = ACTIONS(3021), + [anon_sym_LT_DASH] = ACTIONS(3019), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_GT_GT] = ACTIONS(3021), + [anon_sym_GT_GT_GT] = ACTIONS(3019), + [anon_sym_AMP_CARET] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_or] = ACTIONS(3021), + [sym_none] = ACTIONS(3021), + [sym_true] = ACTIONS(3021), + [sym_false] = ACTIONS(3021), + [sym_nil] = ACTIONS(3021), + [anon_sym_QMARK_DOT] = ACTIONS(3019), + [anon_sym_POUND_LBRACK] = ACTIONS(3019), + [anon_sym_if] = ACTIONS(3021), + [anon_sym_DOLLARif] = ACTIONS(3021), + [anon_sym_is] = ACTIONS(3021), + [anon_sym_BANGis] = ACTIONS(3019), + [anon_sym_in] = ACTIONS(3021), + [anon_sym_BANGin] = ACTIONS(3019), + [anon_sym_match] = ACTIONS(3021), + [anon_sym_select] = ACTIONS(3021), + [anon_sym_lock] = ACTIONS(3021), + [anon_sym_rlock] = ACTIONS(3021), + [anon_sym_unsafe] = ACTIONS(3021), + [anon_sym_sql] = ACTIONS(3021), + [sym_int_literal] = ACTIONS(3021), + [sym_float_literal] = ACTIONS(3019), + [sym_rune_literal] = ACTIONS(3019), + [anon_sym_SQUOTE] = ACTIONS(3019), + [anon_sym_DQUOTE] = ACTIONS(3019), + [anon_sym_c_SQUOTE] = ACTIONS(3019), + [anon_sym_c_DQUOTE] = ACTIONS(3019), + [anon_sym_r_SQUOTE] = ACTIONS(3019), + [anon_sym_r_DQUOTE] = ACTIONS(3019), + [sym_pseudo_compile_time_identifier] = ACTIONS(3021), + [anon_sym_shared] = ACTIONS(3021), + [anon_sym_map_LBRACK] = ACTIONS(3019), + [anon_sym_chan] = ACTIONS(3021), + [anon_sym_thread] = ACTIONS(3021), + [anon_sym_atomic] = ACTIONS(3021), }, [1377] = { [sym_line_comment] = STATE(1377), [sym_block_comment] = STATE(1377), - [sym_identifier] = ACTIONS(2782), + [sym_identifier] = ACTIONS(2167), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2782), - [anon_sym_as] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_COMMA] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_LPAREN] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2782), - [anon_sym_fn] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_SLASH] = ACTIONS(2782), - [anon_sym_PERCENT] = ACTIONS(2780), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_GT] = ACTIONS(2782), - [anon_sym_EQ_EQ] = ACTIONS(2780), - [anon_sym_BANG_EQ] = ACTIONS(2780), - [anon_sym_LT_EQ] = ACTIONS(2780), - [anon_sym_GT_EQ] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2780), - [anon_sym_RBRACK] = ACTIONS(2780), - [anon_sym_struct] = ACTIONS(2782), - [anon_sym_mut] = ACTIONS(2782), - [anon_sym_COLON] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_QMARK] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2782), - [anon_sym_go] = ACTIONS(2782), - [anon_sym_spawn] = ACTIONS(2782), - [anon_sym_json_DOTdecode] = ACTIONS(2780), - [anon_sym_LBRACK2] = ACTIONS(2782), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_CARET] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_LT_DASH] = ACTIONS(2780), - [anon_sym_LT_LT] = ACTIONS(2780), - [anon_sym_GT_GT] = ACTIONS(2782), - [anon_sym_GT_GT_GT] = ACTIONS(2780), - [anon_sym_AMP_CARET] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_PIPE_PIPE] = ACTIONS(2780), - [anon_sym_or] = ACTIONS(2782), - [sym_none] = ACTIONS(2782), - [sym_true] = ACTIONS(2782), - [sym_false] = ACTIONS(2782), - [sym_nil] = ACTIONS(2782), - [anon_sym_QMARK_DOT] = ACTIONS(2780), - [anon_sym_POUND_LBRACK] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_DOLLARif] = ACTIONS(2782), - [anon_sym_is] = ACTIONS(2782), - [anon_sym_BANGis] = ACTIONS(2780), - [anon_sym_in] = ACTIONS(2782), - [anon_sym_BANGin] = ACTIONS(2780), - [anon_sym_match] = ACTIONS(2782), - [anon_sym_select] = ACTIONS(2782), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2782), - [anon_sym_sql] = ACTIONS(2782), - [sym_int_literal] = ACTIONS(2782), - [sym_float_literal] = ACTIONS(2780), - [sym_rune_literal] = ACTIONS(2780), - [sym_pseudo_compile_time_identifier] = ACTIONS(2782), - [anon_sym_shared] = ACTIONS(2782), - [anon_sym_map_LBRACK] = ACTIONS(2780), - [anon_sym_chan] = ACTIONS(2782), - [anon_sym_thread] = ACTIONS(2782), - [anon_sym_atomic] = ACTIONS(2782), - [sym___double_quote] = ACTIONS(2780), - [sym___single_quote] = ACTIONS(2780), - [sym___c_double_quote] = ACTIONS(2780), - [sym___c_single_quote] = ACTIONS(2780), - [sym___r_double_quote] = ACTIONS(2780), - [sym___r_single_quote] = ACTIONS(2780), + [anon_sym_DOT] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_COMMA] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_PIPE] = ACTIONS(2167), + [anon_sym_fn] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2165), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_PERCENT] = ACTIONS(2165), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2167), + [anon_sym_EQ_EQ] = ACTIONS(2165), + [anon_sym_BANG_EQ] = ACTIONS(2165), + [anon_sym_LT_EQ] = ACTIONS(2165), + [anon_sym_GT_EQ] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_RBRACK] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_mut] = ACTIONS(2167), + [anon_sym_COLON] = ACTIONS(2165), + [anon_sym_PLUS_PLUS] = ACTIONS(2165), + [anon_sym_DASH_DASH] = ACTIONS(2165), + [anon_sym_QMARK] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_go] = ACTIONS(2167), + [anon_sym_spawn] = ACTIONS(2167), + [anon_sym_json_DOTdecode] = ACTIONS(2165), + [anon_sym_LBRACK2] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2165), + [anon_sym_CARET] = ACTIONS(2165), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_LT_DASH] = ACTIONS(2165), + [anon_sym_LT_LT] = ACTIONS(2165), + [anon_sym_GT_GT] = ACTIONS(2167), + [anon_sym_GT_GT_GT] = ACTIONS(2165), + [anon_sym_AMP_CARET] = ACTIONS(2165), + [anon_sym_AMP_AMP] = ACTIONS(2165), + [anon_sym_PIPE_PIPE] = ACTIONS(2165), + [anon_sym_or] = ACTIONS(2167), + [sym_none] = ACTIONS(2167), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_nil] = ACTIONS(2167), + [anon_sym_QMARK_DOT] = ACTIONS(2165), + [anon_sym_POUND_LBRACK] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_DOLLARif] = ACTIONS(2167), + [anon_sym_is] = ACTIONS(2167), + [anon_sym_BANGis] = ACTIONS(2165), + [anon_sym_in] = ACTIONS(2167), + [anon_sym_BANGin] = ACTIONS(2165), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_select] = ACTIONS(2167), + [anon_sym_lock] = ACTIONS(2167), + [anon_sym_rlock] = ACTIONS(2167), + [anon_sym_unsafe] = ACTIONS(2167), + [anon_sym_sql] = ACTIONS(2167), + [sym_int_literal] = ACTIONS(2167), + [sym_float_literal] = ACTIONS(2165), + [sym_rune_literal] = ACTIONS(2165), + [anon_sym_SQUOTE] = ACTIONS(2165), + [anon_sym_DQUOTE] = ACTIONS(2165), + [anon_sym_c_SQUOTE] = ACTIONS(2165), + [anon_sym_c_DQUOTE] = ACTIONS(2165), + [anon_sym_r_SQUOTE] = ACTIONS(2165), + [anon_sym_r_DQUOTE] = ACTIONS(2165), + [sym_pseudo_compile_time_identifier] = ACTIONS(2167), + [anon_sym_shared] = ACTIONS(2167), + [anon_sym_map_LBRACK] = ACTIONS(2165), + [anon_sym_chan] = ACTIONS(2167), + [anon_sym_thread] = ACTIONS(2167), + [anon_sym_atomic] = ACTIONS(2167), }, [1378] = { [sym_line_comment] = STATE(1378), [sym_block_comment] = STATE(1378), - [sym_identifier] = ACTIONS(2732), + [sym_identifier] = ACTIONS(2585), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2732), - [anon_sym_as] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_COMMA] = ACTIONS(2730), - [anon_sym_RBRACE] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_fn] = ACTIONS(2732), - [anon_sym_PLUS] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2732), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_SLASH] = ACTIONS(2732), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2732), - [anon_sym_GT] = ACTIONS(2732), - [anon_sym_EQ_EQ] = ACTIONS(2730), - [anon_sym_BANG_EQ] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_RBRACK] = ACTIONS(2730), - [anon_sym_struct] = ACTIONS(2732), - [anon_sym_mut] = ACTIONS(2732), - [anon_sym_COLON] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_QMARK] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2732), - [anon_sym_go] = ACTIONS(2732), - [anon_sym_spawn] = ACTIONS(2732), - [anon_sym_json_DOTdecode] = ACTIONS(2730), - [anon_sym_LBRACK2] = ACTIONS(2732), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2732), - [anon_sym_LT_DASH] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2730), - [anon_sym_GT_GT] = ACTIONS(2732), - [anon_sym_GT_GT_GT] = ACTIONS(2730), - [anon_sym_AMP_CARET] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_or] = ACTIONS(2732), - [sym_none] = ACTIONS(2732), - [sym_true] = ACTIONS(2732), - [sym_false] = ACTIONS(2732), - [sym_nil] = ACTIONS(2732), - [anon_sym_QMARK_DOT] = ACTIONS(2730), - [anon_sym_POUND_LBRACK] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_DOLLARif] = ACTIONS(2732), - [anon_sym_is] = ACTIONS(2732), - [anon_sym_BANGis] = ACTIONS(2730), - [anon_sym_in] = ACTIONS(2732), - [anon_sym_BANGin] = ACTIONS(2730), - [anon_sym_match] = ACTIONS(2732), - [anon_sym_select] = ACTIONS(2732), - [anon_sym_lock] = ACTIONS(2732), - [anon_sym_rlock] = ACTIONS(2732), - [anon_sym_unsafe] = ACTIONS(2732), - [anon_sym_sql] = ACTIONS(2732), - [sym_int_literal] = ACTIONS(2732), - [sym_float_literal] = ACTIONS(2730), - [sym_rune_literal] = ACTIONS(2730), - [sym_pseudo_compile_time_identifier] = ACTIONS(2732), - [anon_sym_shared] = ACTIONS(2732), - [anon_sym_map_LBRACK] = ACTIONS(2730), - [anon_sym_chan] = ACTIONS(2732), - [anon_sym_thread] = ACTIONS(2732), - [anon_sym_atomic] = ACTIONS(2732), - [sym___double_quote] = ACTIONS(2730), - [sym___single_quote] = ACTIONS(2730), - [sym___c_double_quote] = ACTIONS(2730), - [sym___c_single_quote] = ACTIONS(2730), - [sym___r_double_quote] = ACTIONS(2730), - [sym___r_single_quote] = ACTIONS(2730), + [anon_sym_DOT] = ACTIONS(2585), + [anon_sym_as] = ACTIONS(2585), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_COMMA] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_PIPE] = ACTIONS(2585), + [anon_sym_fn] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2583), + [anon_sym_SLASH] = ACTIONS(2585), + [anon_sym_PERCENT] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2585), + [anon_sym_GT] = ACTIONS(2585), + [anon_sym_EQ_EQ] = ACTIONS(2583), + [anon_sym_BANG_EQ] = ACTIONS(2583), + [anon_sym_LT_EQ] = ACTIONS(2583), + [anon_sym_GT_EQ] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_RBRACK] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_mut] = ACTIONS(2585), + [anon_sym_COLON] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2583), + [anon_sym_QMARK] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(3915), + [anon_sym_go] = ACTIONS(2585), + [anon_sym_spawn] = ACTIONS(2585), + [anon_sym_json_DOTdecode] = ACTIONS(2583), + [anon_sym_LBRACK2] = ACTIONS(2585), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_CARET] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2585), + [anon_sym_LT_DASH] = ACTIONS(2583), + [anon_sym_LT_LT] = ACTIONS(2583), + [anon_sym_GT_GT] = ACTIONS(2585), + [anon_sym_GT_GT_GT] = ACTIONS(2583), + [anon_sym_AMP_CARET] = ACTIONS(2583), + [anon_sym_AMP_AMP] = ACTIONS(2583), + [anon_sym_PIPE_PIPE] = ACTIONS(2583), + [anon_sym_or] = ACTIONS(2585), + [sym_none] = ACTIONS(2585), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_nil] = ACTIONS(2585), + [anon_sym_QMARK_DOT] = ACTIONS(2583), + [anon_sym_POUND_LBRACK] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_DOLLARif] = ACTIONS(2585), + [anon_sym_is] = ACTIONS(2585), + [anon_sym_BANGis] = ACTIONS(2583), + [anon_sym_in] = ACTIONS(2585), + [anon_sym_BANGin] = ACTIONS(2583), + [anon_sym_match] = ACTIONS(2585), + [anon_sym_select] = ACTIONS(2585), + [anon_sym_lock] = ACTIONS(2585), + [anon_sym_rlock] = ACTIONS(2585), + [anon_sym_unsafe] = ACTIONS(2585), + [anon_sym_sql] = ACTIONS(2585), + [sym_int_literal] = ACTIONS(2585), + [sym_float_literal] = ACTIONS(2583), + [sym_rune_literal] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2583), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_c_SQUOTE] = ACTIONS(2583), + [anon_sym_c_DQUOTE] = ACTIONS(2583), + [anon_sym_r_SQUOTE] = ACTIONS(2583), + [anon_sym_r_DQUOTE] = ACTIONS(2583), + [sym_pseudo_compile_time_identifier] = ACTIONS(2585), + [anon_sym_shared] = ACTIONS(2585), + [anon_sym_map_LBRACK] = ACTIONS(2583), + [anon_sym_chan] = ACTIONS(2585), + [anon_sym_thread] = ACTIONS(2585), + [anon_sym_atomic] = ACTIONS(2585), }, [1379] = { [sym_line_comment] = STATE(1379), [sym_block_comment] = STATE(1379), - [sym_identifier] = ACTIONS(2794), + [sym_identifier] = ACTIONS(2133), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2794), - [anon_sym_as] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_RBRACE] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_fn] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_SLASH] = ACTIONS(2794), - [anon_sym_PERCENT] = ACTIONS(2792), - [anon_sym_LT] = ACTIONS(2794), - [anon_sym_GT] = ACTIONS(2794), - [anon_sym_EQ_EQ] = ACTIONS(2792), - [anon_sym_BANG_EQ] = ACTIONS(2792), - [anon_sym_LT_EQ] = ACTIONS(2792), - [anon_sym_GT_EQ] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2792), - [anon_sym_RBRACK] = ACTIONS(2792), - [anon_sym_struct] = ACTIONS(2794), - [anon_sym_mut] = ACTIONS(2794), - [anon_sym_COLON] = ACTIONS(2792), - [anon_sym_PLUS_PLUS] = ACTIONS(2792), - [anon_sym_DASH_DASH] = ACTIONS(2792), - [anon_sym_QMARK] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2794), - [anon_sym_go] = ACTIONS(2794), - [anon_sym_spawn] = ACTIONS(2794), - [anon_sym_json_DOTdecode] = ACTIONS(2792), - [anon_sym_LBRACK2] = ACTIONS(2794), - [anon_sym_TILDE] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_LT_DASH] = ACTIONS(2792), - [anon_sym_LT_LT] = ACTIONS(2792), - [anon_sym_GT_GT] = ACTIONS(2794), - [anon_sym_GT_GT_GT] = ACTIONS(2792), - [anon_sym_AMP_CARET] = ACTIONS(2792), - [anon_sym_AMP_AMP] = ACTIONS(2792), - [anon_sym_PIPE_PIPE] = ACTIONS(2792), - [anon_sym_or] = ACTIONS(2794), - [sym_none] = ACTIONS(2794), - [sym_true] = ACTIONS(2794), - [sym_false] = ACTIONS(2794), - [sym_nil] = ACTIONS(2794), - [anon_sym_QMARK_DOT] = ACTIONS(2792), - [anon_sym_POUND_LBRACK] = ACTIONS(2792), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_DOLLARif] = ACTIONS(2794), - [anon_sym_is] = ACTIONS(2794), - [anon_sym_BANGis] = ACTIONS(2792), - [anon_sym_in] = ACTIONS(2794), - [anon_sym_BANGin] = ACTIONS(2792), - [anon_sym_match] = ACTIONS(2794), - [anon_sym_select] = ACTIONS(2794), - [anon_sym_lock] = ACTIONS(2794), - [anon_sym_rlock] = ACTIONS(2794), - [anon_sym_unsafe] = ACTIONS(2794), - [anon_sym_sql] = ACTIONS(2794), - [sym_int_literal] = ACTIONS(2794), - [sym_float_literal] = ACTIONS(2792), - [sym_rune_literal] = ACTIONS(2792), - [sym_pseudo_compile_time_identifier] = ACTIONS(2794), - [anon_sym_shared] = ACTIONS(2794), - [anon_sym_map_LBRACK] = ACTIONS(2792), - [anon_sym_chan] = ACTIONS(2794), - [anon_sym_thread] = ACTIONS(2794), - [anon_sym_atomic] = ACTIONS(2794), - [sym___double_quote] = ACTIONS(2792), - [sym___single_quote] = ACTIONS(2792), - [sym___c_double_quote] = ACTIONS(2792), - [sym___c_single_quote] = ACTIONS(2792), - [sym___r_double_quote] = ACTIONS(2792), - [sym___r_single_quote] = ACTIONS(2792), + [anon_sym_DOT] = ACTIONS(2133), + [anon_sym_as] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_COMMA] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_PIPE] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_SLASH] = ACTIONS(2133), + [anon_sym_PERCENT] = ACTIONS(2131), + [anon_sym_LT] = ACTIONS(2133), + [anon_sym_GT] = ACTIONS(2133), + [anon_sym_EQ_EQ] = ACTIONS(2131), + [anon_sym_BANG_EQ] = ACTIONS(2131), + [anon_sym_LT_EQ] = ACTIONS(2131), + [anon_sym_GT_EQ] = ACTIONS(2131), + [anon_sym_LBRACK] = ACTIONS(2131), + [anon_sym_RBRACK] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2133), + [anon_sym_mut] = ACTIONS(2133), + [anon_sym_COLON] = ACTIONS(2131), + [anon_sym_PLUS_PLUS] = ACTIONS(2131), + [anon_sym_DASH_DASH] = ACTIONS(2131), + [anon_sym_QMARK] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2133), + [anon_sym_go] = ACTIONS(2133), + [anon_sym_spawn] = ACTIONS(2133), + [anon_sym_json_DOTdecode] = ACTIONS(2131), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2131), + [anon_sym_CARET] = ACTIONS(2131), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(2131), + [anon_sym_LT_LT] = ACTIONS(2131), + [anon_sym_GT_GT] = ACTIONS(2133), + [anon_sym_GT_GT_GT] = ACTIONS(2131), + [anon_sym_AMP_CARET] = ACTIONS(2131), + [anon_sym_AMP_AMP] = ACTIONS(2131), + [anon_sym_PIPE_PIPE] = ACTIONS(2131), + [anon_sym_or] = ACTIONS(2133), + [sym_none] = ACTIONS(2133), + [sym_true] = ACTIONS(2133), + [sym_false] = ACTIONS(2133), + [sym_nil] = ACTIONS(2133), + [anon_sym_QMARK_DOT] = ACTIONS(2131), + [anon_sym_POUND_LBRACK] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_DOLLARif] = ACTIONS(2133), + [anon_sym_is] = ACTIONS(2133), + [anon_sym_BANGis] = ACTIONS(2131), + [anon_sym_in] = ACTIONS(2133), + [anon_sym_BANGin] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2133), + [anon_sym_rlock] = ACTIONS(2133), + [anon_sym_unsafe] = ACTIONS(2133), + [anon_sym_sql] = ACTIONS(2133), + [sym_int_literal] = ACTIONS(2133), + [sym_float_literal] = ACTIONS(2131), + [sym_rune_literal] = ACTIONS(2131), + [anon_sym_SQUOTE] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(2131), + [anon_sym_c_SQUOTE] = ACTIONS(2131), + [anon_sym_c_DQUOTE] = ACTIONS(2131), + [anon_sym_r_SQUOTE] = ACTIONS(2131), + [anon_sym_r_DQUOTE] = ACTIONS(2131), + [sym_pseudo_compile_time_identifier] = ACTIONS(2133), + [anon_sym_shared] = ACTIONS(2133), + [anon_sym_map_LBRACK] = ACTIONS(2131), + [anon_sym_chan] = ACTIONS(2133), + [anon_sym_thread] = ACTIONS(2133), + [anon_sym_atomic] = ACTIONS(2133), }, [1380] = { [sym_line_comment] = STATE(1380), [sym_block_comment] = STATE(1380), - [sym_identifier] = ACTIONS(2475), + [sym_identifier] = ACTIONS(3015), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2475), - [anon_sym_as] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_PIPE] = ACTIONS(2475), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_RBRACK] = ACTIONS(2473), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_PLUS_PLUS] = ACTIONS(2473), - [anon_sym_DASH_DASH] = ACTIONS(2473), - [anon_sym_QMARK] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_go] = ACTIONS(2475), - [anon_sym_spawn] = ACTIONS(2475), - [anon_sym_json_DOTdecode] = ACTIONS(2473), - [anon_sym_LBRACK2] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2473), - [anon_sym_CARET] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_LT_DASH] = ACTIONS(2473), - [anon_sym_LT_LT] = ACTIONS(2473), - [anon_sym_GT_GT] = ACTIONS(2475), - [anon_sym_GT_GT_GT] = ACTIONS(2473), - [anon_sym_AMP_CARET] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_or] = ACTIONS(2475), - [sym_none] = ACTIONS(2475), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_nil] = ACTIONS(2475), - [anon_sym_QMARK_DOT] = ACTIONS(2473), - [anon_sym_POUND_LBRACK] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_DOLLARif] = ACTIONS(2475), - [anon_sym_is] = ACTIONS(2475), - [anon_sym_BANGis] = ACTIONS(2473), - [anon_sym_in] = ACTIONS(2475), - [anon_sym_BANGin] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_lock] = ACTIONS(2475), - [anon_sym_rlock] = ACTIONS(2475), - [anon_sym_unsafe] = ACTIONS(2475), - [anon_sym_sql] = ACTIONS(2475), - [sym_int_literal] = ACTIONS(2475), - [sym_float_literal] = ACTIONS(2473), - [sym_rune_literal] = ACTIONS(2473), - [sym_pseudo_compile_time_identifier] = ACTIONS(2475), - [anon_sym_shared] = ACTIONS(2475), - [anon_sym_map_LBRACK] = ACTIONS(2473), - [anon_sym_chan] = ACTIONS(2475), - [anon_sym_thread] = ACTIONS(2475), - [anon_sym_atomic] = ACTIONS(2475), - [sym___double_quote] = ACTIONS(2473), - [sym___single_quote] = ACTIONS(2473), - [sym___c_double_quote] = ACTIONS(2473), - [sym___c_single_quote] = ACTIONS(2473), - [sym___r_double_quote] = ACTIONS(2473), - [sym___r_single_quote] = ACTIONS(2473), + [anon_sym_DOT] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(3015), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_COMMA] = ACTIONS(3013), + [anon_sym_RBRACE] = ACTIONS(3013), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3015), + [anon_sym_fn] = ACTIONS(3015), + [anon_sym_PLUS] = ACTIONS(3015), + [anon_sym_DASH] = ACTIONS(3015), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3015), + [anon_sym_PERCENT] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_LT_EQ] = ACTIONS(3013), + [anon_sym_GT_EQ] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_RBRACK] = ACTIONS(3013), + [anon_sym_struct] = ACTIONS(3015), + [anon_sym_mut] = ACTIONS(3015), + [anon_sym_COLON] = ACTIONS(3013), + [anon_sym_PLUS_PLUS] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3013), + [anon_sym_QMARK] = ACTIONS(3015), + [anon_sym_BANG] = ACTIONS(3015), + [anon_sym_go] = ACTIONS(3015), + [anon_sym_spawn] = ACTIONS(3015), + [anon_sym_json_DOTdecode] = ACTIONS(3013), + [anon_sym_LBRACK2] = ACTIONS(3015), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_CARET] = ACTIONS(3013), + [anon_sym_AMP] = ACTIONS(3015), + [anon_sym_LT_DASH] = ACTIONS(3013), + [anon_sym_LT_LT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(3015), + [anon_sym_GT_GT_GT] = ACTIONS(3013), + [anon_sym_AMP_CARET] = ACTIONS(3013), + [anon_sym_AMP_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_or] = ACTIONS(3015), + [sym_none] = ACTIONS(3015), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_nil] = ACTIONS(3015), + [anon_sym_QMARK_DOT] = ACTIONS(3013), + [anon_sym_POUND_LBRACK] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3015), + [anon_sym_DOLLARif] = ACTIONS(3015), + [anon_sym_is] = ACTIONS(3015), + [anon_sym_BANGis] = ACTIONS(3013), + [anon_sym_in] = ACTIONS(3015), + [anon_sym_BANGin] = ACTIONS(3013), + [anon_sym_match] = ACTIONS(3015), + [anon_sym_select] = ACTIONS(3015), + [anon_sym_lock] = ACTIONS(3015), + [anon_sym_rlock] = ACTIONS(3015), + [anon_sym_unsafe] = ACTIONS(3015), + [anon_sym_sql] = ACTIONS(3015), + [sym_int_literal] = ACTIONS(3015), + [sym_float_literal] = ACTIONS(3013), + [sym_rune_literal] = ACTIONS(3013), + [anon_sym_SQUOTE] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(3013), + [anon_sym_c_SQUOTE] = ACTIONS(3013), + [anon_sym_c_DQUOTE] = ACTIONS(3013), + [anon_sym_r_SQUOTE] = ACTIONS(3013), + [anon_sym_r_DQUOTE] = ACTIONS(3013), + [sym_pseudo_compile_time_identifier] = ACTIONS(3015), + [anon_sym_shared] = ACTIONS(3015), + [anon_sym_map_LBRACK] = ACTIONS(3013), + [anon_sym_chan] = ACTIONS(3015), + [anon_sym_thread] = ACTIONS(3015), + [anon_sym_atomic] = ACTIONS(3015), }, [1381] = { [sym_line_comment] = STATE(1381), [sym_block_comment] = STATE(1381), - [sym_identifier] = ACTIONS(2832), + [sym_identifier] = ACTIONS(2847), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_as] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2830), - [anon_sym_LT_EQ] = ACTIONS(2830), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_RBRACK] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_mut] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_go] = ACTIONS(2832), - [anon_sym_spawn] = ACTIONS(2832), - [anon_sym_json_DOTdecode] = ACTIONS(2830), - [anon_sym_LBRACK2] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_LT_LT] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2830), - [anon_sym_AMP_CARET] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_or] = ACTIONS(2832), - [sym_none] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_nil] = ACTIONS(2832), - [anon_sym_QMARK_DOT] = ACTIONS(2830), - [anon_sym_POUND_LBRACK] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_DOLLARif] = ACTIONS(2832), - [anon_sym_is] = ACTIONS(2832), - [anon_sym_BANGis] = ACTIONS(2830), - [anon_sym_in] = ACTIONS(2832), - [anon_sym_BANGin] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_select] = ACTIONS(2832), - [anon_sym_lock] = ACTIONS(2832), - [anon_sym_rlock] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_sql] = ACTIONS(2832), - [sym_int_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2830), - [sym_rune_literal] = ACTIONS(2830), - [sym_pseudo_compile_time_identifier] = ACTIONS(2832), - [anon_sym_shared] = ACTIONS(2832), - [anon_sym_map_LBRACK] = ACTIONS(2830), - [anon_sym_chan] = ACTIONS(2832), - [anon_sym_thread] = ACTIONS(2832), - [anon_sym_atomic] = ACTIONS(2832), - [sym___double_quote] = ACTIONS(2830), - [sym___single_quote] = ACTIONS(2830), - [sym___c_double_quote] = ACTIONS(2830), - [sym___c_single_quote] = ACTIONS(2830), - [sym___r_double_quote] = ACTIONS(2830), - [sym___r_single_quote] = ACTIONS(2830), + [anon_sym_DOT] = ACTIONS(2847), + [anon_sym_as] = ACTIONS(2847), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_COMMA] = ACTIONS(2845), + [anon_sym_RBRACE] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2847), + [anon_sym_fn] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2847), + [anon_sym_DASH] = ACTIONS(2847), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_SLASH] = ACTIONS(2847), + [anon_sym_PERCENT] = ACTIONS(2845), + [anon_sym_LT] = ACTIONS(2847), + [anon_sym_GT] = ACTIONS(2847), + [anon_sym_EQ_EQ] = ACTIONS(2845), + [anon_sym_BANG_EQ] = ACTIONS(2845), + [anon_sym_LT_EQ] = ACTIONS(2845), + [anon_sym_GT_EQ] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_RBRACK] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(2847), + [anon_sym_mut] = ACTIONS(2847), + [anon_sym_COLON] = ACTIONS(2845), + [anon_sym_PLUS_PLUS] = ACTIONS(2845), + [anon_sym_DASH_DASH] = ACTIONS(2845), + [anon_sym_QMARK] = ACTIONS(2847), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_go] = ACTIONS(2847), + [anon_sym_spawn] = ACTIONS(2847), + [anon_sym_json_DOTdecode] = ACTIONS(2845), + [anon_sym_LBRACK2] = ACTIONS(2847), + [anon_sym_TILDE] = ACTIONS(2845), + [anon_sym_CARET] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_LT_DASH] = ACTIONS(2845), + [anon_sym_LT_LT] = ACTIONS(2845), + [anon_sym_GT_GT] = ACTIONS(2847), + [anon_sym_GT_GT_GT] = ACTIONS(2845), + [anon_sym_AMP_CARET] = ACTIONS(2845), + [anon_sym_AMP_AMP] = ACTIONS(2845), + [anon_sym_PIPE_PIPE] = ACTIONS(2845), + [anon_sym_or] = ACTIONS(2847), + [sym_none] = ACTIONS(2847), + [sym_true] = ACTIONS(2847), + [sym_false] = ACTIONS(2847), + [sym_nil] = ACTIONS(2847), + [anon_sym_QMARK_DOT] = ACTIONS(2845), + [anon_sym_POUND_LBRACK] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2847), + [anon_sym_DOLLARif] = ACTIONS(2847), + [anon_sym_is] = ACTIONS(2847), + [anon_sym_BANGis] = ACTIONS(2845), + [anon_sym_in] = ACTIONS(2847), + [anon_sym_BANGin] = ACTIONS(2845), + [anon_sym_match] = ACTIONS(2847), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2847), + [anon_sym_rlock] = ACTIONS(2847), + [anon_sym_unsafe] = ACTIONS(2847), + [anon_sym_sql] = ACTIONS(2847), + [sym_int_literal] = ACTIONS(2847), + [sym_float_literal] = ACTIONS(2845), + [sym_rune_literal] = ACTIONS(2845), + [anon_sym_SQUOTE] = ACTIONS(2845), + [anon_sym_DQUOTE] = ACTIONS(2845), + [anon_sym_c_SQUOTE] = ACTIONS(2845), + [anon_sym_c_DQUOTE] = ACTIONS(2845), + [anon_sym_r_SQUOTE] = ACTIONS(2845), + [anon_sym_r_DQUOTE] = ACTIONS(2845), + [sym_pseudo_compile_time_identifier] = ACTIONS(2847), + [anon_sym_shared] = ACTIONS(2847), + [anon_sym_map_LBRACK] = ACTIONS(2845), + [anon_sym_chan] = ACTIONS(2847), + [anon_sym_thread] = ACTIONS(2847), + [anon_sym_atomic] = ACTIONS(2847), }, [1382] = { [sym_line_comment] = STATE(1382), [sym_block_comment] = STATE(1382), - [sym_identifier] = ACTIONS(2772), + [sym_identifier] = ACTIONS(3011), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2770), - [anon_sym_COMMA] = ACTIONS(2770), - [anon_sym_RBRACE] = ACTIONS(2770), - [anon_sym_LPAREN] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2770), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2770), - [anon_sym_BANG_EQ] = ACTIONS(2770), - [anon_sym_LT_EQ] = ACTIONS(2770), - [anon_sym_GT_EQ] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_RBRACK] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_COLON] = ACTIONS(2770), - [anon_sym_PLUS_PLUS] = ACTIONS(2770), - [anon_sym_DASH_DASH] = ACTIONS(2770), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2770), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_CARET] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2770), - [anon_sym_LT_LT] = ACTIONS(2770), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2770), - [anon_sym_AMP_CARET] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_PIPE_PIPE] = ACTIONS(2770), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2770), - [anon_sym_POUND_LBRACK] = ACTIONS(2770), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2770), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2770), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2770), - [sym_rune_literal] = ACTIONS(2770), - [sym_pseudo_compile_time_identifier] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2770), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2770), - [sym___single_quote] = ACTIONS(2770), - [sym___c_double_quote] = ACTIONS(2770), - [sym___c_single_quote] = ACTIONS(2770), - [sym___r_double_quote] = ACTIONS(2770), - [sym___r_single_quote] = ACTIONS(2770), + [anon_sym_DOT] = ACTIONS(3011), + [anon_sym_as] = ACTIONS(3011), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_fn] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3011), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_SLASH] = ACTIONS(3011), + [anon_sym_PERCENT] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(3011), + [anon_sym_EQ_EQ] = ACTIONS(3009), + [anon_sym_BANG_EQ] = ACTIONS(3009), + [anon_sym_LT_EQ] = ACTIONS(3009), + [anon_sym_GT_EQ] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_RBRACK] = ACTIONS(3009), + [anon_sym_struct] = ACTIONS(3011), + [anon_sym_mut] = ACTIONS(3011), + [anon_sym_COLON] = ACTIONS(3009), + [anon_sym_PLUS_PLUS] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(3011), + [anon_sym_go] = ACTIONS(3011), + [anon_sym_spawn] = ACTIONS(3011), + [anon_sym_json_DOTdecode] = ACTIONS(3009), + [anon_sym_LBRACK2] = ACTIONS(3011), + [anon_sym_TILDE] = ACTIONS(3009), + [anon_sym_CARET] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_LT_DASH] = ACTIONS(3009), + [anon_sym_LT_LT] = ACTIONS(3009), + [anon_sym_GT_GT] = ACTIONS(3011), + [anon_sym_GT_GT_GT] = ACTIONS(3009), + [anon_sym_AMP_CARET] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_or] = ACTIONS(3011), + [sym_none] = ACTIONS(3011), + [sym_true] = ACTIONS(3011), + [sym_false] = ACTIONS(3011), + [sym_nil] = ACTIONS(3011), + [anon_sym_QMARK_DOT] = ACTIONS(3009), + [anon_sym_POUND_LBRACK] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_DOLLARif] = ACTIONS(3011), + [anon_sym_is] = ACTIONS(3011), + [anon_sym_BANGis] = ACTIONS(3009), + [anon_sym_in] = ACTIONS(3011), + [anon_sym_BANGin] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3011), + [anon_sym_select] = ACTIONS(3011), + [anon_sym_lock] = ACTIONS(3011), + [anon_sym_rlock] = ACTIONS(3011), + [anon_sym_unsafe] = ACTIONS(3011), + [anon_sym_sql] = ACTIONS(3011), + [sym_int_literal] = ACTIONS(3011), + [sym_float_literal] = ACTIONS(3009), + [sym_rune_literal] = ACTIONS(3009), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3009), + [anon_sym_c_SQUOTE] = ACTIONS(3009), + [anon_sym_c_DQUOTE] = ACTIONS(3009), + [anon_sym_r_SQUOTE] = ACTIONS(3009), + [anon_sym_r_DQUOTE] = ACTIONS(3009), + [sym_pseudo_compile_time_identifier] = ACTIONS(3011), + [anon_sym_shared] = ACTIONS(3011), + [anon_sym_map_LBRACK] = ACTIONS(3009), + [anon_sym_chan] = ACTIONS(3011), + [anon_sym_thread] = ACTIONS(3011), + [anon_sym_atomic] = ACTIONS(3011), }, [1383] = { [sym_line_comment] = STATE(1383), [sym_block_comment] = STATE(1383), - [sym_identifier] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2741), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2778), - [anon_sym_as] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_COMMA] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_PIPE] = ACTIONS(2778), - [anon_sym_fn] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_SLASH] = ACTIONS(2778), - [anon_sym_PERCENT] = ACTIONS(2776), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_GT] = ACTIONS(2778), - [anon_sym_EQ_EQ] = ACTIONS(2776), - [anon_sym_BANG_EQ] = ACTIONS(2776), - [anon_sym_LT_EQ] = ACTIONS(2776), - [anon_sym_GT_EQ] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_RBRACK] = ACTIONS(2776), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_mut] = ACTIONS(2778), - [anon_sym_COLON] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_QMARK] = ACTIONS(2778), - [anon_sym_BANG] = ACTIONS(2778), - [anon_sym_go] = ACTIONS(2778), - [anon_sym_spawn] = ACTIONS(2778), - [anon_sym_json_DOTdecode] = ACTIONS(2776), - [anon_sym_LBRACK2] = ACTIONS(2778), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_CARET] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_LT_DASH] = ACTIONS(2776), - [anon_sym_LT_LT] = ACTIONS(2776), - [anon_sym_GT_GT] = ACTIONS(2778), - [anon_sym_GT_GT_GT] = ACTIONS(2776), - [anon_sym_AMP_CARET] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_PIPE_PIPE] = ACTIONS(2776), - [anon_sym_or] = ACTIONS(2778), - [sym_none] = ACTIONS(2778), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [sym_nil] = ACTIONS(2778), - [anon_sym_QMARK_DOT] = ACTIONS(2776), - [anon_sym_POUND_LBRACK] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_DOLLARif] = ACTIONS(2778), - [anon_sym_is] = ACTIONS(2778), - [anon_sym_BANGis] = ACTIONS(2776), - [anon_sym_in] = ACTIONS(2778), - [anon_sym_BANGin] = ACTIONS(2776), - [anon_sym_match] = ACTIONS(2778), - [anon_sym_select] = ACTIONS(2778), - [anon_sym_lock] = ACTIONS(2778), - [anon_sym_rlock] = ACTIONS(2778), - [anon_sym_unsafe] = ACTIONS(2778), - [anon_sym_sql] = ACTIONS(2778), - [sym_int_literal] = ACTIONS(2778), - [sym_float_literal] = ACTIONS(2776), - [sym_rune_literal] = ACTIONS(2776), - [sym_pseudo_compile_time_identifier] = ACTIONS(2778), - [anon_sym_shared] = ACTIONS(2778), - [anon_sym_map_LBRACK] = ACTIONS(2776), - [anon_sym_chan] = ACTIONS(2778), - [anon_sym_thread] = ACTIONS(2778), - [anon_sym_atomic] = ACTIONS(2778), - [sym___double_quote] = ACTIONS(2776), - [sym___single_quote] = ACTIONS(2776), - [sym___c_double_quote] = ACTIONS(2776), - [sym___c_single_quote] = ACTIONS(2776), - [sym___r_double_quote] = ACTIONS(2776), - [sym___r_single_quote] = ACTIONS(2776), + [anon_sym_DOT] = ACTIONS(2741), + [anon_sym_as] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_COMMA] = ACTIONS(2739), + [anon_sym_RBRACE] = ACTIONS(2739), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_PIPE] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_SLASH] = ACTIONS(2741), + [anon_sym_PERCENT] = ACTIONS(2739), + [anon_sym_LT] = ACTIONS(2741), + [anon_sym_GT] = ACTIONS(2741), + [anon_sym_EQ_EQ] = ACTIONS(2739), + [anon_sym_BANG_EQ] = ACTIONS(2739), + [anon_sym_LT_EQ] = ACTIONS(2739), + [anon_sym_GT_EQ] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_RBRACK] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_mut] = ACTIONS(2741), + [anon_sym_COLON] = ACTIONS(2739), + [anon_sym_PLUS_PLUS] = ACTIONS(2739), + [anon_sym_DASH_DASH] = ACTIONS(2739), + [anon_sym_QMARK] = ACTIONS(2741), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_go] = ACTIONS(2741), + [anon_sym_spawn] = ACTIONS(2741), + [anon_sym_json_DOTdecode] = ACTIONS(2739), + [anon_sym_LBRACK2] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2739), + [anon_sym_CARET] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_LT_DASH] = ACTIONS(2739), + [anon_sym_LT_LT] = ACTIONS(2739), + [anon_sym_GT_GT] = ACTIONS(2741), + [anon_sym_GT_GT_GT] = ACTIONS(2739), + [anon_sym_AMP_CARET] = ACTIONS(2739), + [anon_sym_AMP_AMP] = ACTIONS(2739), + [anon_sym_PIPE_PIPE] = ACTIONS(2739), + [anon_sym_or] = ACTIONS(2741), + [sym_none] = ACTIONS(2741), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_nil] = ACTIONS(2741), + [anon_sym_QMARK_DOT] = ACTIONS(2739), + [anon_sym_POUND_LBRACK] = ACTIONS(2739), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_DOLLARif] = ACTIONS(2741), + [anon_sym_is] = ACTIONS(2741), + [anon_sym_BANGis] = ACTIONS(2739), + [anon_sym_in] = ACTIONS(2741), + [anon_sym_BANGin] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(2741), + [anon_sym_select] = ACTIONS(2741), + [anon_sym_lock] = ACTIONS(2741), + [anon_sym_rlock] = ACTIONS(2741), + [anon_sym_unsafe] = ACTIONS(2741), + [anon_sym_sql] = ACTIONS(2741), + [sym_int_literal] = ACTIONS(2741), + [sym_float_literal] = ACTIONS(2739), + [sym_rune_literal] = ACTIONS(2739), + [anon_sym_SQUOTE] = ACTIONS(2739), + [anon_sym_DQUOTE] = ACTIONS(2739), + [anon_sym_c_SQUOTE] = ACTIONS(2739), + [anon_sym_c_DQUOTE] = ACTIONS(2739), + [anon_sym_r_SQUOTE] = ACTIONS(2739), + [anon_sym_r_DQUOTE] = ACTIONS(2739), + [sym_pseudo_compile_time_identifier] = ACTIONS(2741), + [anon_sym_shared] = ACTIONS(2741), + [anon_sym_map_LBRACK] = ACTIONS(2739), + [anon_sym_chan] = ACTIONS(2741), + [anon_sym_thread] = ACTIONS(2741), + [anon_sym_atomic] = ACTIONS(2741), }, [1384] = { [sym_line_comment] = STATE(1384), [sym_block_comment] = STATE(1384), - [sym_identifier] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2843), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2233), - [anon_sym_as] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2231), - [anon_sym_COMMA] = ACTIONS(2231), - [anon_sym_RBRACE] = ACTIONS(2231), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_fn] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2231), - [anon_sym_SLASH] = ACTIONS(2233), - [anon_sym_PERCENT] = ACTIONS(2231), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_GT] = ACTIONS(2233), - [anon_sym_EQ_EQ] = ACTIONS(2231), - [anon_sym_BANG_EQ] = ACTIONS(2231), - [anon_sym_LT_EQ] = ACTIONS(2231), - [anon_sym_GT_EQ] = ACTIONS(2231), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_RBRACK] = ACTIONS(2231), - [anon_sym_struct] = ACTIONS(2233), - [anon_sym_mut] = ACTIONS(2233), - [anon_sym_COLON] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(2231), - [anon_sym_DASH_DASH] = ACTIONS(2231), - [anon_sym_QMARK] = ACTIONS(2233), - [anon_sym_BANG] = ACTIONS(2233), - [anon_sym_go] = ACTIONS(2233), - [anon_sym_spawn] = ACTIONS(2233), - [anon_sym_json_DOTdecode] = ACTIONS(2231), - [anon_sym_LBRACK2] = ACTIONS(2233), - [anon_sym_TILDE] = ACTIONS(2231), - [anon_sym_CARET] = ACTIONS(2231), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_LT_DASH] = ACTIONS(2231), - [anon_sym_LT_LT] = ACTIONS(2231), - [anon_sym_GT_GT] = ACTIONS(2233), - [anon_sym_GT_GT_GT] = ACTIONS(2231), - [anon_sym_AMP_CARET] = ACTIONS(2231), - [anon_sym_AMP_AMP] = ACTIONS(2231), - [anon_sym_PIPE_PIPE] = ACTIONS(2231), - [anon_sym_or] = ACTIONS(2233), - [sym_none] = ACTIONS(2233), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_nil] = ACTIONS(2233), - [anon_sym_QMARK_DOT] = ACTIONS(2231), - [anon_sym_POUND_LBRACK] = ACTIONS(2231), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_DOLLARif] = ACTIONS(2233), - [anon_sym_is] = ACTIONS(2233), - [anon_sym_BANGis] = ACTIONS(2231), - [anon_sym_in] = ACTIONS(2233), - [anon_sym_BANGin] = ACTIONS(2231), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_select] = ACTIONS(2233), - [anon_sym_lock] = ACTIONS(2233), - [anon_sym_rlock] = ACTIONS(2233), - [anon_sym_unsafe] = ACTIONS(2233), - [anon_sym_sql] = ACTIONS(2233), - [sym_int_literal] = ACTIONS(2233), - [sym_float_literal] = ACTIONS(2231), - [sym_rune_literal] = ACTIONS(2231), - [sym_pseudo_compile_time_identifier] = ACTIONS(2233), - [anon_sym_shared] = ACTIONS(2233), - [anon_sym_map_LBRACK] = ACTIONS(2231), - [anon_sym_chan] = ACTIONS(2233), - [anon_sym_thread] = ACTIONS(2233), - [anon_sym_atomic] = ACTIONS(2233), - [sym___double_quote] = ACTIONS(2231), - [sym___single_quote] = ACTIONS(2231), - [sym___c_double_quote] = ACTIONS(2231), - [sym___c_single_quote] = ACTIONS(2231), - [sym___r_double_quote] = ACTIONS(2231), - [sym___r_single_quote] = ACTIONS(2231), + [anon_sym_DOT] = ACTIONS(2843), + [anon_sym_as] = ACTIONS(2843), + [anon_sym_LBRACE] = ACTIONS(2841), + [anon_sym_COMMA] = ACTIONS(2841), + [anon_sym_RBRACE] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_PIPE] = ACTIONS(2843), + [anon_sym_fn] = ACTIONS(2843), + [anon_sym_PLUS] = ACTIONS(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2841), + [anon_sym_SLASH] = ACTIONS(2843), + [anon_sym_PERCENT] = ACTIONS(2841), + [anon_sym_LT] = ACTIONS(2843), + [anon_sym_GT] = ACTIONS(2843), + [anon_sym_EQ_EQ] = ACTIONS(2841), + [anon_sym_BANG_EQ] = ACTIONS(2841), + [anon_sym_LT_EQ] = ACTIONS(2841), + [anon_sym_GT_EQ] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_RBRACK] = ACTIONS(2841), + [anon_sym_struct] = ACTIONS(2843), + [anon_sym_mut] = ACTIONS(2843), + [anon_sym_COLON] = ACTIONS(2841), + [anon_sym_PLUS_PLUS] = ACTIONS(2841), + [anon_sym_DASH_DASH] = ACTIONS(2841), + [anon_sym_QMARK] = ACTIONS(2843), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_go] = ACTIONS(2843), + [anon_sym_spawn] = ACTIONS(2843), + [anon_sym_json_DOTdecode] = ACTIONS(2841), + [anon_sym_LBRACK2] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2841), + [anon_sym_CARET] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(2843), + [anon_sym_LT_DASH] = ACTIONS(2841), + [anon_sym_LT_LT] = ACTIONS(2841), + [anon_sym_GT_GT] = ACTIONS(2843), + [anon_sym_GT_GT_GT] = ACTIONS(2841), + [anon_sym_AMP_CARET] = ACTIONS(2841), + [anon_sym_AMP_AMP] = ACTIONS(2841), + [anon_sym_PIPE_PIPE] = ACTIONS(2841), + [anon_sym_or] = ACTIONS(2843), + [sym_none] = ACTIONS(2843), + [sym_true] = ACTIONS(2843), + [sym_false] = ACTIONS(2843), + [sym_nil] = ACTIONS(2843), + [anon_sym_QMARK_DOT] = ACTIONS(2841), + [anon_sym_POUND_LBRACK] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2843), + [anon_sym_DOLLARif] = ACTIONS(2843), + [anon_sym_is] = ACTIONS(2843), + [anon_sym_BANGis] = ACTIONS(2841), + [anon_sym_in] = ACTIONS(2843), + [anon_sym_BANGin] = ACTIONS(2841), + [anon_sym_match] = ACTIONS(2843), + [anon_sym_select] = ACTIONS(2843), + [anon_sym_lock] = ACTIONS(2843), + [anon_sym_rlock] = ACTIONS(2843), + [anon_sym_unsafe] = ACTIONS(2843), + [anon_sym_sql] = ACTIONS(2843), + [sym_int_literal] = ACTIONS(2843), + [sym_float_literal] = ACTIONS(2841), + [sym_rune_literal] = ACTIONS(2841), + [anon_sym_SQUOTE] = ACTIONS(2841), + [anon_sym_DQUOTE] = ACTIONS(2841), + [anon_sym_c_SQUOTE] = ACTIONS(2841), + [anon_sym_c_DQUOTE] = ACTIONS(2841), + [anon_sym_r_SQUOTE] = ACTIONS(2841), + [anon_sym_r_DQUOTE] = ACTIONS(2841), + [sym_pseudo_compile_time_identifier] = ACTIONS(2843), + [anon_sym_shared] = ACTIONS(2843), + [anon_sym_map_LBRACK] = ACTIONS(2841), + [anon_sym_chan] = ACTIONS(2843), + [anon_sym_thread] = ACTIONS(2843), + [anon_sym_atomic] = ACTIONS(2843), }, [1385] = { [sym_line_comment] = STATE(1385), [sym_block_comment] = STATE(1385), - [sym_identifier] = ACTIONS(2542), + [sym_identifier] = ACTIONS(2089), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2542), - [anon_sym_as] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2540), - [anon_sym_COMMA] = ACTIONS(2540), - [anon_sym_RBRACE] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_fn] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_STAR] = ACTIONS(2540), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_PERCENT] = ACTIONS(2540), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_GT] = ACTIONS(2542), - [anon_sym_EQ_EQ] = ACTIONS(2540), - [anon_sym_BANG_EQ] = ACTIONS(2540), - [anon_sym_LT_EQ] = ACTIONS(2540), - [anon_sym_GT_EQ] = ACTIONS(2540), - [anon_sym_LBRACK] = ACTIONS(2540), - [anon_sym_RBRACK] = ACTIONS(2540), - [anon_sym_struct] = ACTIONS(2542), - [anon_sym_mut] = ACTIONS(2542), - [anon_sym_COLON] = ACTIONS(2540), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [anon_sym_QMARK] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(3911), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2542), - [anon_sym_json_DOTdecode] = ACTIONS(2540), - [anon_sym_LBRACK2] = ACTIONS(2542), - [anon_sym_TILDE] = ACTIONS(2540), - [anon_sym_CARET] = ACTIONS(2540), - [anon_sym_AMP] = ACTIONS(2542), - [anon_sym_LT_DASH] = ACTIONS(2540), - [anon_sym_LT_LT] = ACTIONS(2540), - [anon_sym_GT_GT] = ACTIONS(2542), - [anon_sym_GT_GT_GT] = ACTIONS(2540), - [anon_sym_AMP_CARET] = ACTIONS(2540), - [anon_sym_AMP_AMP] = ACTIONS(2540), - [anon_sym_PIPE_PIPE] = ACTIONS(2540), - [anon_sym_or] = ACTIONS(2542), - [sym_none] = ACTIONS(2542), - [sym_true] = ACTIONS(2542), - [sym_false] = ACTIONS(2542), - [sym_nil] = ACTIONS(2542), - [anon_sym_QMARK_DOT] = ACTIONS(2540), - [anon_sym_POUND_LBRACK] = ACTIONS(2540), - [anon_sym_if] = ACTIONS(2542), - [anon_sym_DOLLARif] = ACTIONS(2542), - [anon_sym_is] = ACTIONS(2542), - [anon_sym_BANGis] = ACTIONS(2540), - [anon_sym_in] = ACTIONS(2542), - [anon_sym_BANGin] = ACTIONS(2540), - [anon_sym_match] = ACTIONS(2542), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2542), - [anon_sym_rlock] = ACTIONS(2542), - [anon_sym_unsafe] = ACTIONS(2542), - [anon_sym_sql] = ACTIONS(2542), - [sym_int_literal] = ACTIONS(2542), - [sym_float_literal] = ACTIONS(2540), - [sym_rune_literal] = ACTIONS(2540), - [sym_pseudo_compile_time_identifier] = ACTIONS(2542), - [anon_sym_shared] = ACTIONS(2542), - [anon_sym_map_LBRACK] = ACTIONS(2540), - [anon_sym_chan] = ACTIONS(2542), - [anon_sym_thread] = ACTIONS(2542), - [anon_sym_atomic] = ACTIONS(2542), - [sym___double_quote] = ACTIONS(2540), - [sym___single_quote] = ACTIONS(2540), - [sym___c_double_quote] = ACTIONS(2540), - [sym___c_single_quote] = ACTIONS(2540), - [sym___r_double_quote] = ACTIONS(2540), - [sym___r_single_quote] = ACTIONS(2540), + [anon_sym_DOT] = ACTIONS(2089), + [anon_sym_as] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2087), + [anon_sym_COMMA] = ACTIONS(2087), + [anon_sym_RBRACE] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_fn] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2087), + [anon_sym_SLASH] = ACTIONS(2089), + [anon_sym_PERCENT] = ACTIONS(2087), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_GT] = ACTIONS(2089), + [anon_sym_EQ_EQ] = ACTIONS(2087), + [anon_sym_BANG_EQ] = ACTIONS(2087), + [anon_sym_LT_EQ] = ACTIONS(2087), + [anon_sym_GT_EQ] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_RBRACK] = ACTIONS(2087), + [anon_sym_struct] = ACTIONS(2089), + [anon_sym_mut] = ACTIONS(2089), + [anon_sym_COLON] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_QMARK] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_go] = ACTIONS(2089), + [anon_sym_spawn] = ACTIONS(2089), + [anon_sym_json_DOTdecode] = ACTIONS(2087), + [anon_sym_LBRACK2] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_LT_DASH] = ACTIONS(2087), + [anon_sym_LT_LT] = ACTIONS(2087), + [anon_sym_GT_GT] = ACTIONS(2089), + [anon_sym_GT_GT_GT] = ACTIONS(2087), + [anon_sym_AMP_CARET] = ACTIONS(2087), + [anon_sym_AMP_AMP] = ACTIONS(2087), + [anon_sym_PIPE_PIPE] = ACTIONS(2087), + [anon_sym_or] = ACTIONS(2089), + [sym_none] = ACTIONS(2089), + [sym_true] = ACTIONS(2089), + [sym_false] = ACTIONS(2089), + [sym_nil] = ACTIONS(2089), + [anon_sym_QMARK_DOT] = ACTIONS(2087), + [anon_sym_POUND_LBRACK] = ACTIONS(2087), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_DOLLARif] = ACTIONS(2089), + [anon_sym_is] = ACTIONS(2089), + [anon_sym_BANGis] = ACTIONS(2087), + [anon_sym_in] = ACTIONS(2089), + [anon_sym_BANGin] = ACTIONS(2087), + [anon_sym_match] = ACTIONS(2089), + [anon_sym_select] = ACTIONS(2089), + [anon_sym_lock] = ACTIONS(2089), + [anon_sym_rlock] = ACTIONS(2089), + [anon_sym_unsafe] = ACTIONS(2089), + [anon_sym_sql] = ACTIONS(2089), + [sym_int_literal] = ACTIONS(2089), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [anon_sym_SQUOTE] = ACTIONS(2087), + [anon_sym_DQUOTE] = ACTIONS(2087), + [anon_sym_c_SQUOTE] = ACTIONS(2087), + [anon_sym_c_DQUOTE] = ACTIONS(2087), + [anon_sym_r_SQUOTE] = ACTIONS(2087), + [anon_sym_r_DQUOTE] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(2089), + [anon_sym_shared] = ACTIONS(2089), + [anon_sym_map_LBRACK] = ACTIONS(2087), + [anon_sym_chan] = ACTIONS(2089), + [anon_sym_thread] = ACTIONS(2089), + [anon_sym_atomic] = ACTIONS(2089), }, [1386] = { [sym_line_comment] = STATE(1386), [sym_block_comment] = STATE(1386), - [sym_identifier] = ACTIONS(2475), + [sym_identifier] = ACTIONS(2055), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_as] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_PIPE] = ACTIONS(2475), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_RBRACK] = ACTIONS(2473), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_PLUS_PLUS] = ACTIONS(2473), - [anon_sym_DASH_DASH] = ACTIONS(2473), - [anon_sym_QMARK] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_go] = ACTIONS(2475), - [anon_sym_spawn] = ACTIONS(2475), - [anon_sym_json_DOTdecode] = ACTIONS(2473), - [anon_sym_LBRACK2] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2473), - [anon_sym_CARET] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_LT_DASH] = ACTIONS(2473), - [anon_sym_LT_LT] = ACTIONS(2473), - [anon_sym_GT_GT] = ACTIONS(2475), - [anon_sym_GT_GT_GT] = ACTIONS(2473), - [anon_sym_AMP_CARET] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_or] = ACTIONS(2475), - [sym_none] = ACTIONS(2475), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_nil] = ACTIONS(2475), - [anon_sym_QMARK_DOT] = ACTIONS(2473), - [anon_sym_POUND_LBRACK] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_DOLLARif] = ACTIONS(2475), - [anon_sym_is] = ACTIONS(2475), - [anon_sym_BANGis] = ACTIONS(2473), - [anon_sym_in] = ACTIONS(2475), - [anon_sym_BANGin] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_lock] = ACTIONS(2475), - [anon_sym_rlock] = ACTIONS(2475), - [anon_sym_unsafe] = ACTIONS(2475), - [anon_sym_sql] = ACTIONS(2475), - [sym_int_literal] = ACTIONS(2475), - [sym_float_literal] = ACTIONS(2473), - [sym_rune_literal] = ACTIONS(2473), - [sym_pseudo_compile_time_identifier] = ACTIONS(2475), - [anon_sym_shared] = ACTIONS(2475), - [anon_sym_map_LBRACK] = ACTIONS(2473), - [anon_sym_chan] = ACTIONS(2475), - [anon_sym_thread] = ACTIONS(2475), - [anon_sym_atomic] = ACTIONS(2475), - [sym___double_quote] = ACTIONS(2473), - [sym___single_quote] = ACTIONS(2473), - [sym___c_double_quote] = ACTIONS(2473), - [sym___c_single_quote] = ACTIONS(2473), - [sym___r_double_quote] = ACTIONS(2473), - [sym___r_single_quote] = ACTIONS(2473), + [anon_sym_DOT] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_fn] = ACTIONS(2055), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2053), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_PERCENT] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_EQ_EQ] = ACTIONS(2053), + [anon_sym_BANG_EQ] = ACTIONS(2053), + [anon_sym_LT_EQ] = ACTIONS(2053), + [anon_sym_GT_EQ] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_struct] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), + [anon_sym_COLON] = ACTIONS(2053), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_go] = ACTIONS(2055), + [anon_sym_spawn] = ACTIONS(2055), + [anon_sym_json_DOTdecode] = ACTIONS(2053), + [anon_sym_LBRACK2] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_CARET] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(2055), + [anon_sym_LT_DASH] = ACTIONS(2053), + [anon_sym_LT_LT] = ACTIONS(2053), + [anon_sym_GT_GT] = ACTIONS(2055), + [anon_sym_GT_GT_GT] = ACTIONS(2053), + [anon_sym_AMP_CARET] = ACTIONS(2053), + [anon_sym_AMP_AMP] = ACTIONS(2053), + [anon_sym_PIPE_PIPE] = ACTIONS(2053), + [anon_sym_or] = ACTIONS(2055), + [sym_none] = ACTIONS(2055), + [sym_true] = ACTIONS(2055), + [sym_false] = ACTIONS(2055), + [sym_nil] = ACTIONS(2055), + [anon_sym_QMARK_DOT] = ACTIONS(2053), + [anon_sym_POUND_LBRACK] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_DOLLARif] = ACTIONS(2055), + [anon_sym_is] = ACTIONS(2055), + [anon_sym_BANGis] = ACTIONS(2053), + [anon_sym_in] = ACTIONS(2055), + [anon_sym_BANGin] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_select] = ACTIONS(2055), + [anon_sym_lock] = ACTIONS(2055), + [anon_sym_rlock] = ACTIONS(2055), + [anon_sym_unsafe] = ACTIONS(2055), + [anon_sym_sql] = ACTIONS(2055), + [sym_int_literal] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2053), + [sym_rune_literal] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_c_SQUOTE] = ACTIONS(2053), + [anon_sym_c_DQUOTE] = ACTIONS(2053), + [anon_sym_r_SQUOTE] = ACTIONS(2053), + [anon_sym_r_DQUOTE] = ACTIONS(2053), + [sym_pseudo_compile_time_identifier] = ACTIONS(2055), + [anon_sym_shared] = ACTIONS(2055), + [anon_sym_map_LBRACK] = ACTIONS(2053), + [anon_sym_chan] = ACTIONS(2055), + [anon_sym_thread] = ACTIONS(2055), + [anon_sym_atomic] = ACTIONS(2055), }, [1387] = { [sym_line_comment] = STATE(1387), [sym_block_comment] = STATE(1387), - [sym_identifier] = ACTIONS(1889), + [sym_identifier] = ACTIONS(2159), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1887), - [anon_sym_BANG_EQ] = ACTIONS(1887), - [anon_sym_LT_EQ] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_COLON] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_QMARK] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1887), - [anon_sym_LBRACK2] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1887), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1887), - [anon_sym_LT_LT] = ACTIONS(1887), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1887), - [anon_sym_AMP_CARET] = ACTIONS(1887), - [anon_sym_AMP_AMP] = ACTIONS(1887), - [anon_sym_PIPE_PIPE] = ACTIONS(1887), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1887), - [anon_sym_POUND_LBRACK] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1887), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1887), - [sym_rune_literal] = ACTIONS(1887), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1887), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1887), - [sym___single_quote] = ACTIONS(1887), - [sym___c_double_quote] = ACTIONS(1887), - [sym___c_single_quote] = ACTIONS(1887), - [sym___r_double_quote] = ACTIONS(1887), - [sym___r_single_quote] = ACTIONS(1887), + [anon_sym_DOT] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_COMMA] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(2159), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_PERCENT] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_GT] = ACTIONS(2159), + [anon_sym_EQ_EQ] = ACTIONS(2157), + [anon_sym_BANG_EQ] = ACTIONS(2157), + [anon_sym_LT_EQ] = ACTIONS(2157), + [anon_sym_GT_EQ] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_RBRACK] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(2159), + [anon_sym_mut] = ACTIONS(2159), + [anon_sym_COLON] = ACTIONS(2157), + [anon_sym_PLUS_PLUS] = ACTIONS(2157), + [anon_sym_DASH_DASH] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(2159), + [anon_sym_spawn] = ACTIONS(2159), + [anon_sym_json_DOTdecode] = ACTIONS(2157), + [anon_sym_LBRACK2] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2157), + [anon_sym_CARET] = ACTIONS(2157), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_LT_DASH] = ACTIONS(2157), + [anon_sym_LT_LT] = ACTIONS(2157), + [anon_sym_GT_GT] = ACTIONS(2159), + [anon_sym_GT_GT_GT] = ACTIONS(2157), + [anon_sym_AMP_CARET] = ACTIONS(2157), + [anon_sym_AMP_AMP] = ACTIONS(2157), + [anon_sym_PIPE_PIPE] = ACTIONS(2157), + [anon_sym_or] = ACTIONS(2159), + [sym_none] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_nil] = ACTIONS(2159), + [anon_sym_QMARK_DOT] = ACTIONS(2157), + [anon_sym_POUND_LBRACK] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_DOLLARif] = ACTIONS(2159), + [anon_sym_is] = ACTIONS(2159), + [anon_sym_BANGis] = ACTIONS(2157), + [anon_sym_in] = ACTIONS(2159), + [anon_sym_BANGin] = ACTIONS(2157), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_select] = ACTIONS(2159), + [anon_sym_lock] = ACTIONS(2159), + [anon_sym_rlock] = ACTIONS(2159), + [anon_sym_unsafe] = ACTIONS(2159), + [anon_sym_sql] = ACTIONS(2159), + [sym_int_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2157), + [sym_rune_literal] = ACTIONS(2157), + [anon_sym_SQUOTE] = ACTIONS(2157), + [anon_sym_DQUOTE] = ACTIONS(2157), + [anon_sym_c_SQUOTE] = ACTIONS(2157), + [anon_sym_c_DQUOTE] = ACTIONS(2157), + [anon_sym_r_SQUOTE] = ACTIONS(2157), + [anon_sym_r_DQUOTE] = ACTIONS(2157), + [sym_pseudo_compile_time_identifier] = ACTIONS(2159), + [anon_sym_shared] = ACTIONS(2159), + [anon_sym_map_LBRACK] = ACTIONS(2157), + [anon_sym_chan] = ACTIONS(2159), + [anon_sym_thread] = ACTIONS(2159), + [anon_sym_atomic] = ACTIONS(2159), }, [1388] = { [sym_line_comment] = STATE(1388), @@ -172217,7 +172193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1809), [anon_sym_as] = ACTIONS(1809), [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_COMMA] = ACTIONS(1989), + [anon_sym_COMMA] = ACTIONS(2031), [anon_sym_RBRACE] = ACTIONS(1807), [anon_sym_LPAREN] = ACTIONS(1807), [anon_sym_PIPE] = ACTIONS(1809), @@ -172277,206 +172253,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1809), [sym_float_literal] = ACTIONS(1807), [sym_rune_literal] = ACTIONS(1807), + [anon_sym_SQUOTE] = ACTIONS(1807), + [anon_sym_DQUOTE] = ACTIONS(1807), + [anon_sym_c_SQUOTE] = ACTIONS(1807), + [anon_sym_c_DQUOTE] = ACTIONS(1807), + [anon_sym_r_SQUOTE] = ACTIONS(1807), + [anon_sym_r_DQUOTE] = ACTIONS(1807), [sym_pseudo_compile_time_identifier] = ACTIONS(1809), [anon_sym_shared] = ACTIONS(1809), [anon_sym_map_LBRACK] = ACTIONS(1807), [anon_sym_chan] = ACTIONS(1809), [anon_sym_thread] = ACTIONS(1809), [anon_sym_atomic] = ACTIONS(1809), - [sym___double_quote] = ACTIONS(1807), - [sym___single_quote] = ACTIONS(1807), - [sym___c_double_quote] = ACTIONS(1807), - [sym___c_single_quote] = ACTIONS(1807), - [sym___r_double_quote] = ACTIONS(1807), - [sym___r_single_quote] = ACTIONS(1807), }, [1389] = { [sym_line_comment] = STATE(1389), [sym_block_comment] = STATE(1389), - [sym_identifier] = ACTIONS(2676), + [sym_identifier] = ACTIONS(2507), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(1989), - [anon_sym_RBRACE] = ACTIONS(2674), - [anon_sym_LPAREN] = ACTIONS(2674), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_fn] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2676), - [anon_sym_PERCENT] = ACTIONS(2674), - [anon_sym_LT] = ACTIONS(2676), - [anon_sym_GT] = ACTIONS(2676), - [anon_sym_EQ_EQ] = ACTIONS(2674), - [anon_sym_BANG_EQ] = ACTIONS(2674), - [anon_sym_LT_EQ] = ACTIONS(2674), - [anon_sym_GT_EQ] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_struct] = ACTIONS(2676), - [anon_sym_mut] = ACTIONS(2676), - [anon_sym_COLON] = ACTIONS(2674), - [anon_sym_PLUS_PLUS] = ACTIONS(2674), - [anon_sym_DASH_DASH] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(2676), - [anon_sym_go] = ACTIONS(2676), - [anon_sym_spawn] = ACTIONS(2676), - [anon_sym_json_DOTdecode] = ACTIONS(2674), - [anon_sym_LBRACK2] = ACTIONS(2676), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_CARET] = ACTIONS(2674), - [anon_sym_AMP] = ACTIONS(2676), - [anon_sym_LT_DASH] = ACTIONS(2674), - [anon_sym_LT_LT] = ACTIONS(2674), - [anon_sym_GT_GT] = ACTIONS(2676), - [anon_sym_GT_GT_GT] = ACTIONS(2674), - [anon_sym_AMP_CARET] = ACTIONS(2674), - [anon_sym_AMP_AMP] = ACTIONS(2674), - [anon_sym_PIPE_PIPE] = ACTIONS(2674), - [anon_sym_or] = ACTIONS(2676), - [sym_none] = ACTIONS(2676), - [sym_true] = ACTIONS(2676), - [sym_false] = ACTIONS(2676), - [sym_nil] = ACTIONS(2676), - [anon_sym_QMARK_DOT] = ACTIONS(2674), - [anon_sym_POUND_LBRACK] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2676), - [anon_sym_DOLLARif] = ACTIONS(2676), - [anon_sym_is] = ACTIONS(2676), - [anon_sym_BANGis] = ACTIONS(2674), - [anon_sym_in] = ACTIONS(2676), - [anon_sym_BANGin] = ACTIONS(2674), - [anon_sym_match] = ACTIONS(2676), - [anon_sym_select] = ACTIONS(2676), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2676), - [anon_sym_sql] = ACTIONS(2676), - [sym_int_literal] = ACTIONS(2676), - [sym_float_literal] = ACTIONS(2674), - [sym_rune_literal] = ACTIONS(2674), - [sym_pseudo_compile_time_identifier] = ACTIONS(2676), - [anon_sym_shared] = ACTIONS(2676), - [anon_sym_map_LBRACK] = ACTIONS(2674), - [anon_sym_chan] = ACTIONS(2676), - [anon_sym_thread] = ACTIONS(2676), - [anon_sym_atomic] = ACTIONS(2676), - [sym___double_quote] = ACTIONS(2674), - [sym___single_quote] = ACTIONS(2674), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2674), - [sym___r_double_quote] = ACTIONS(2674), - [sym___r_single_quote] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_DOT] = ACTIONS(2507), + [anon_sym_as] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_PIPE] = ACTIONS(2507), + [anon_sym_fn] = ACTIONS(2507), + [anon_sym_PLUS] = ACTIONS(2507), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_GT] = ACTIONS(2507), + [anon_sym_EQ_EQ] = ACTIONS(2505), + [anon_sym_BANG_EQ] = ACTIONS(2505), + [anon_sym_LT_EQ] = ACTIONS(2505), + [anon_sym_GT_EQ] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2505), + [anon_sym_RBRACK] = ACTIONS(3917), + [anon_sym_struct] = ACTIONS(2507), + [anon_sym_mut] = ACTIONS(2507), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_QMARK] = ACTIONS(2507), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_go] = ACTIONS(2507), + [anon_sym_spawn] = ACTIONS(2507), + [anon_sym_json_DOTdecode] = ACTIONS(2505), + [anon_sym_LBRACK2] = ACTIONS(2507), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_CARET] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2507), + [anon_sym_LT_DASH] = ACTIONS(2505), + [anon_sym_LT_LT] = ACTIONS(2505), + [anon_sym_GT_GT] = ACTIONS(2507), + [anon_sym_GT_GT_GT] = ACTIONS(2505), + [anon_sym_AMP_CARET] = ACTIONS(2505), + [anon_sym_AMP_AMP] = ACTIONS(2505), + [anon_sym_PIPE_PIPE] = ACTIONS(2505), + [anon_sym_or] = ACTIONS(2507), + [sym_none] = ACTIONS(2507), + [sym_true] = ACTIONS(2507), + [sym_false] = ACTIONS(2507), + [sym_nil] = ACTIONS(2507), + [anon_sym_QMARK_DOT] = ACTIONS(2505), + [anon_sym_POUND_LBRACK] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_DOLLARif] = ACTIONS(2507), + [anon_sym_is] = ACTIONS(2507), + [anon_sym_BANGis] = ACTIONS(2505), + [anon_sym_in] = ACTIONS(2507), + [anon_sym_BANGin] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2507), + [anon_sym_select] = ACTIONS(2507), + [anon_sym_lock] = ACTIONS(2507), + [anon_sym_rlock] = ACTIONS(2507), + [anon_sym_unsafe] = ACTIONS(2507), + [anon_sym_sql] = ACTIONS(2507), + [sym_int_literal] = ACTIONS(2507), + [sym_float_literal] = ACTIONS(2505), + [sym_rune_literal] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2505), + [anon_sym_c_SQUOTE] = ACTIONS(2505), + [anon_sym_c_DQUOTE] = ACTIONS(2505), + [anon_sym_r_SQUOTE] = ACTIONS(2505), + [anon_sym_r_DQUOTE] = ACTIONS(2505), + [sym_pseudo_compile_time_identifier] = ACTIONS(2507), + [anon_sym_shared] = ACTIONS(2507), + [anon_sym_map_LBRACK] = ACTIONS(2505), + [anon_sym_chan] = ACTIONS(2507), + [anon_sym_thread] = ACTIONS(2507), + [anon_sym_atomic] = ACTIONS(2507), }, [1390] = { [sym_line_comment] = STATE(1390), [sym_block_comment] = STATE(1390), - [sym_identifier] = ACTIONS(2806), + [sym_identifier] = ACTIONS(2715), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_as] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_fn] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2804), - [anon_sym_SLASH] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2804), - [anon_sym_LT] = ACTIONS(2806), - [anon_sym_GT] = ACTIONS(2806), - [anon_sym_EQ_EQ] = ACTIONS(2804), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_LT_EQ] = ACTIONS(2804), - [anon_sym_GT_EQ] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2804), - [anon_sym_RBRACK] = ACTIONS(3913), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_PLUS_PLUS] = ACTIONS(2804), - [anon_sym_DASH_DASH] = ACTIONS(2804), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2806), - [anon_sym_go] = ACTIONS(2806), - [anon_sym_spawn] = ACTIONS(2806), - [anon_sym_json_DOTdecode] = ACTIONS(2804), - [anon_sym_LBRACK2] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2804), - [anon_sym_CARET] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2804), - [anon_sym_LT_LT] = ACTIONS(2804), - [anon_sym_GT_GT] = ACTIONS(2806), - [anon_sym_GT_GT_GT] = ACTIONS(2804), - [anon_sym_AMP_CARET] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_PIPE_PIPE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2806), - [sym_none] = ACTIONS(2806), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_nil] = ACTIONS(2806), - [anon_sym_QMARK_DOT] = ACTIONS(2804), - [anon_sym_POUND_LBRACK] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_DOLLARif] = ACTIONS(2806), - [anon_sym_is] = ACTIONS(2806), - [anon_sym_BANGis] = ACTIONS(2804), - [anon_sym_in] = ACTIONS(2806), - [anon_sym_BANGin] = ACTIONS(2804), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_select] = ACTIONS(2806), - [anon_sym_lock] = ACTIONS(2806), - [anon_sym_rlock] = ACTIONS(2806), - [anon_sym_unsafe] = ACTIONS(2806), - [anon_sym_sql] = ACTIONS(2806), - [sym_int_literal] = ACTIONS(2806), - [sym_float_literal] = ACTIONS(2804), - [sym_rune_literal] = ACTIONS(2804), - [sym_pseudo_compile_time_identifier] = ACTIONS(2806), - [anon_sym_shared] = ACTIONS(2806), - [anon_sym_map_LBRACK] = ACTIONS(2804), - [anon_sym_chan] = ACTIONS(2806), - [anon_sym_thread] = ACTIONS(2806), - [anon_sym_atomic] = ACTIONS(2806), - [sym___double_quote] = ACTIONS(2804), - [sym___single_quote] = ACTIONS(2804), - [sym___c_double_quote] = ACTIONS(2804), - [sym___c_single_quote] = ACTIONS(2804), - [sym___r_double_quote] = ACTIONS(2804), - [sym___r_single_quote] = ACTIONS(2804), + [anon_sym_DOT] = ACTIONS(2715), + [anon_sym_as] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_COMMA] = ACTIONS(2031), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_PLUS] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2713), + [anon_sym_SLASH] = ACTIONS(2715), + [anon_sym_PERCENT] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_GT] = ACTIONS(2715), + [anon_sym_EQ_EQ] = ACTIONS(2713), + [anon_sym_BANG_EQ] = ACTIONS(2713), + [anon_sym_LT_EQ] = ACTIONS(2713), + [anon_sym_GT_EQ] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(2715), + [anon_sym_COLON] = ACTIONS(2713), + [anon_sym_PLUS_PLUS] = ACTIONS(2713), + [anon_sym_DASH_DASH] = ACTIONS(2713), + [anon_sym_QMARK] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_go] = ACTIONS(2715), + [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_json_DOTdecode] = ACTIONS(2713), + [anon_sym_LBRACK2] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2713), + [anon_sym_CARET] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_LT_DASH] = ACTIONS(2713), + [anon_sym_LT_LT] = ACTIONS(2713), + [anon_sym_GT_GT] = ACTIONS(2715), + [anon_sym_GT_GT_GT] = ACTIONS(2713), + [anon_sym_AMP_CARET] = ACTIONS(2713), + [anon_sym_AMP_AMP] = ACTIONS(2713), + [anon_sym_PIPE_PIPE] = ACTIONS(2713), + [anon_sym_or] = ACTIONS(2715), + [sym_none] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), + [sym_nil] = ACTIONS(2715), + [anon_sym_QMARK_DOT] = ACTIONS(2713), + [anon_sym_POUND_LBRACK] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_DOLLARif] = ACTIONS(2715), + [anon_sym_is] = ACTIONS(2715), + [anon_sym_BANGis] = ACTIONS(2713), + [anon_sym_in] = ACTIONS(2715), + [anon_sym_BANGin] = ACTIONS(2713), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_select] = ACTIONS(2715), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_sql] = ACTIONS(2715), + [sym_int_literal] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2713), + [sym_rune_literal] = ACTIONS(2713), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_DQUOTE] = ACTIONS(2713), + [anon_sym_c_SQUOTE] = ACTIONS(2713), + [anon_sym_c_DQUOTE] = ACTIONS(2713), + [anon_sym_r_SQUOTE] = ACTIONS(2713), + [anon_sym_r_DQUOTE] = ACTIONS(2713), + [sym_pseudo_compile_time_identifier] = ACTIONS(2715), + [anon_sym_shared] = ACTIONS(2715), + [anon_sym_map_LBRACK] = ACTIONS(2713), + [anon_sym_chan] = ACTIONS(2715), + [anon_sym_thread] = ACTIONS(2715), + [anon_sym_atomic] = ACTIONS(2715), }, [1391] = { [sym_line_comment] = STATE(1391), [sym_block_comment] = STATE(1391), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2345), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2311), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), [sym_identifier] = ACTIONS(627), [anon_sym_LF] = ACTIONS(627), [anon_sym_CR] = ACTIONS(627), @@ -172486,13 +172462,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(627), [anon_sym_DOT] = ACTIONS(627), [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(627), [anon_sym_RBRACE] = ACTIONS(627), [anon_sym_LPAREN] = ACTIONS(627), [anon_sym___global] = ACTIONS(627), [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(611), [anon_sym_PLUS] = ACTIONS(627), [anon_sym_DASH] = ACTIONS(627), [anon_sym_STAR] = ACTIONS(627), @@ -172506,7 +172482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(627), [anon_sym_DOT_DOT_DOT] = ACTIONS(627), [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(615), [anon_sym_pub] = ACTIONS(627), [anon_sym_mut] = ACTIONS(627), [anon_sym_PLUS_PLUS] = ACTIONS(627), @@ -172518,352 +172494,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(627), [anon_sym_LT_LT] = ACTIONS(627), [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(627), - [anon_sym_AMP_CARET] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(627), - [anon_sym_PIPE_PIPE] = ACTIONS(627), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(627), - [anon_sym_POUND_LBRACK] = ACTIONS(627), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(627), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_AT_LBRACK] = ACTIONS(627), - }, - [1392] = { - [sym_line_comment] = STATE(1392), - [sym_block_comment] = STATE(1392), - [sym_identifier] = ACTIONS(2880), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_DOT] = ACTIONS(2880), - [anon_sym_as] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2880), - [anon_sym_fn] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2880), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_GT] = ACTIONS(2880), - [anon_sym_EQ_EQ] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2878), - [anon_sym_LT_EQ] = ACTIONS(2878), - [anon_sym_GT_EQ] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_RBRACK] = ACTIONS(3915), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_mut] = ACTIONS(2880), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_go] = ACTIONS(2880), - [anon_sym_spawn] = ACTIONS(2880), - [anon_sym_json_DOTdecode] = ACTIONS(2878), - [anon_sym_LBRACK2] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_CARET] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_LT_LT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2880), - [anon_sym_GT_GT_GT] = ACTIONS(2878), - [anon_sym_AMP_CARET] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_or] = ACTIONS(2880), - [sym_none] = ACTIONS(2880), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_nil] = ACTIONS(2880), - [anon_sym_QMARK_DOT] = ACTIONS(2878), - [anon_sym_POUND_LBRACK] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_DOLLARif] = ACTIONS(2880), - [anon_sym_is] = ACTIONS(2880), - [anon_sym_BANGis] = ACTIONS(2878), - [anon_sym_in] = ACTIONS(2880), - [anon_sym_BANGin] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2880), - [anon_sym_select] = ACTIONS(2880), - [anon_sym_lock] = ACTIONS(2880), - [anon_sym_rlock] = ACTIONS(2880), - [anon_sym_unsafe] = ACTIONS(2880), - [anon_sym_sql] = ACTIONS(2880), - [sym_int_literal] = ACTIONS(2880), - [sym_float_literal] = ACTIONS(2878), - [sym_rune_literal] = ACTIONS(2878), - [sym_pseudo_compile_time_identifier] = ACTIONS(2880), - [anon_sym_shared] = ACTIONS(2880), - [anon_sym_map_LBRACK] = ACTIONS(2878), - [anon_sym_chan] = ACTIONS(2880), - [anon_sym_thread] = ACTIONS(2880), - [anon_sym_atomic] = ACTIONS(2880), - [sym___double_quote] = ACTIONS(2878), - [sym___single_quote] = ACTIONS(2878), - [sym___c_double_quote] = ACTIONS(2878), - [sym___c_single_quote] = ACTIONS(2878), - [sym___r_double_quote] = ACTIONS(2878), - [sym___r_single_quote] = ACTIONS(2878), - }, - [1393] = { - [sym_line_comment] = STATE(1393), - [sym_block_comment] = STATE(1393), - [sym_reference_expression] = STATE(4471), - [sym_type_reference_expression] = STATE(2142), - [sym_plain_type] = STATE(2194), - [sym__plain_type_without_special] = STATE(2183), - [sym_anon_struct_type] = STATE(2184), - [sym_multi_return_type] = STATE(2183), - [sym_result_type] = STATE(2183), - [sym_option_type] = STATE(2183), - [sym_qualified_type] = STATE(2142), - [sym_fixed_array_type] = STATE(2184), - [sym_array_type] = STATE(2184), - [sym_pointer_type] = STATE(2184), - [sym_wrong_pointer_type] = STATE(2184), - [sym_map_type] = STATE(2184), - [sym_channel_type] = STATE(2184), - [sym_shared_type] = STATE(2184), - [sym_thread_type] = STATE(2184), - [sym_atomic_type] = STATE(2184), - [sym_generic_type] = STATE(2184), - [sym_function_type] = STATE(2184), - [sym_identifier] = ACTIONS(3918), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3920), - [anon_sym___global] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3922), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_DOT_DOT_DOT] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(3926), - [anon_sym_pub] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3928), - [anon_sym_BANG] = ACTIONS(3930), - [anon_sym_LBRACK2] = ACTIONS(3932), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3934), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3936), - [anon_sym_map_LBRACK] = ACTIONS(3938), - [anon_sym_chan] = ACTIONS(3940), - [anon_sym_thread] = ACTIONS(3942), - [anon_sym_atomic] = ACTIONS(3944), - [anon_sym_AT_LBRACK] = ACTIONS(589), - }, - [1394] = { - [sym_line_comment] = STATE(1394), - [sym_block_comment] = STATE(1394), - [sym_reference_expression] = STATE(4471), - [sym_type_reference_expression] = STATE(2142), - [sym_plain_type] = STATE(2235), - [sym__plain_type_without_special] = STATE(2183), - [sym_anon_struct_type] = STATE(2184), - [sym_multi_return_type] = STATE(2183), - [sym_result_type] = STATE(2183), - [sym_option_type] = STATE(2183), - [sym_qualified_type] = STATE(2142), - [sym_fixed_array_type] = STATE(2184), - [sym_array_type] = STATE(2184), - [sym_pointer_type] = STATE(2184), - [sym_wrong_pointer_type] = STATE(2184), - [sym_map_type] = STATE(2184), - [sym_channel_type] = STATE(2184), - [sym_shared_type] = STATE(2184), - [sym_thread_type] = STATE(2184), - [sym_atomic_type] = STATE(2184), - [sym_generic_type] = STATE(2184), - [sym_function_type] = STATE(2184), - [sym_identifier] = ACTIONS(3918), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(623), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(3920), - [anon_sym___global] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(3922), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_DOT_DOT_DOT] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(3926), - [anon_sym_pub] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(623), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(3928), - [anon_sym_BANG] = ACTIONS(3930), - [anon_sym_LBRACK2] = ACTIONS(3932), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(3934), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(623), - [anon_sym_POUND_LBRACK] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(623), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(3936), - [anon_sym_map_LBRACK] = ACTIONS(3938), - [anon_sym_chan] = ACTIONS(3940), - [anon_sym_thread] = ACTIONS(3942), - [anon_sym_atomic] = ACTIONS(3944), - [anon_sym_AT_LBRACK] = ACTIONS(623), - }, - [1395] = { - [sym_line_comment] = STATE(1395), - [sym_block_comment] = STATE(1395), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2320), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), - [anon_sym_LF] = ACTIONS(567), - [anon_sym_CR] = ACTIONS(567), - [anon_sym_CR_LF] = ACTIONS(567), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym___global] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_pub] = ACTIONS(567), - [anon_sym_mut] = ACTIONS(567), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3946), - [anon_sym_LBRACK2] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_AMP_CARET] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(567), - [anon_sym_POUND_LBRACK] = ACTIONS(567), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(567), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_AT_LBRACK] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(627), + [anon_sym_AMP_CARET] = ACTIONS(627), + [anon_sym_AMP_AMP] = ACTIONS(627), + [anon_sym_PIPE_PIPE] = ACTIONS(627), + [anon_sym_or] = ACTIONS(627), + [anon_sym_QMARK_DOT] = ACTIONS(627), + [anon_sym_POUND_LBRACK] = ACTIONS(627), + [anon_sym_is] = ACTIONS(627), + [anon_sym_BANGis] = ACTIONS(627), + [anon_sym_in] = ACTIONS(627), + [anon_sym_BANGin] = ACTIONS(627), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_AT_LBRACK] = ACTIONS(627), }, - [1396] = { - [sym_line_comment] = STATE(1396), - [sym_block_comment] = STATE(1396), + [1392] = { + [sym_line_comment] = STATE(1392), + [sym_block_comment] = STATE(1392), + [sym_identifier] = ACTIONS(2863), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(3920), + [anon_sym_DOT] = ACTIONS(2863), + [anon_sym_as] = ACTIONS(2863), + [anon_sym_LBRACE] = ACTIONS(2861), + [anon_sym_COMMA] = ACTIONS(2861), + [anon_sym_LPAREN] = ACTIONS(2861), + [anon_sym_PIPE] = ACTIONS(2863), + [anon_sym_fn] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(2861), + [anon_sym_SLASH] = ACTIONS(2863), + [anon_sym_PERCENT] = ACTIONS(2861), + [anon_sym_LT] = ACTIONS(2863), + [anon_sym_GT] = ACTIONS(2863), + [anon_sym_EQ_EQ] = ACTIONS(2861), + [anon_sym_BANG_EQ] = ACTIONS(2861), + [anon_sym_LT_EQ] = ACTIONS(2861), + [anon_sym_GT_EQ] = ACTIONS(2861), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_RBRACK] = ACTIONS(3920), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_mut] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2861), + [anon_sym_DASH_DASH] = ACTIONS(2861), + [anon_sym_QMARK] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_go] = ACTIONS(2863), + [anon_sym_spawn] = ACTIONS(2863), + [anon_sym_json_DOTdecode] = ACTIONS(2861), + [anon_sym_LBRACK2] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2861), + [anon_sym_CARET] = ACTIONS(2861), + [anon_sym_AMP] = ACTIONS(2863), + [anon_sym_LT_DASH] = ACTIONS(2861), + [anon_sym_LT_LT] = ACTIONS(2861), + [anon_sym_GT_GT] = ACTIONS(2863), + [anon_sym_GT_GT_GT] = ACTIONS(2861), + [anon_sym_AMP_CARET] = ACTIONS(2861), + [anon_sym_AMP_AMP] = ACTIONS(2861), + [anon_sym_PIPE_PIPE] = ACTIONS(2861), + [anon_sym_or] = ACTIONS(2863), + [sym_none] = ACTIONS(2863), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_nil] = ACTIONS(2863), + [anon_sym_QMARK_DOT] = ACTIONS(2861), + [anon_sym_POUND_LBRACK] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_DOLLARif] = ACTIONS(2863), + [anon_sym_is] = ACTIONS(2863), + [anon_sym_BANGis] = ACTIONS(2861), + [anon_sym_in] = ACTIONS(2863), + [anon_sym_BANGin] = ACTIONS(2861), + [anon_sym_match] = ACTIONS(2863), + [anon_sym_select] = ACTIONS(2863), + [anon_sym_lock] = ACTIONS(2863), + [anon_sym_rlock] = ACTIONS(2863), + [anon_sym_unsafe] = ACTIONS(2863), + [anon_sym_sql] = ACTIONS(2863), + [sym_int_literal] = ACTIONS(2863), + [sym_float_literal] = ACTIONS(2861), + [sym_rune_literal] = ACTIONS(2861), + [anon_sym_SQUOTE] = ACTIONS(2861), + [anon_sym_DQUOTE] = ACTIONS(2861), + [anon_sym_c_SQUOTE] = ACTIONS(2861), + [anon_sym_c_DQUOTE] = ACTIONS(2861), + [anon_sym_r_SQUOTE] = ACTIONS(2861), + [anon_sym_r_DQUOTE] = ACTIONS(2861), + [sym_pseudo_compile_time_identifier] = ACTIONS(2863), + [anon_sym_shared] = ACTIONS(2863), + [anon_sym_map_LBRACK] = ACTIONS(2861), + [anon_sym_chan] = ACTIONS(2863), + [anon_sym_thread] = ACTIONS(2863), + [anon_sym_atomic] = ACTIONS(2863), + }, + [1393] = { + [sym_line_comment] = STATE(1393), + [sym_block_comment] = STATE(1393), [sym_identifier] = ACTIONS(1809), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -172929,1141 +172662,1230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(1809), [sym_float_literal] = ACTIONS(1807), [sym_rune_literal] = ACTIONS(1807), + [anon_sym_SQUOTE] = ACTIONS(1807), + [anon_sym_DQUOTE] = ACTIONS(1807), + [anon_sym_c_SQUOTE] = ACTIONS(1807), + [anon_sym_c_DQUOTE] = ACTIONS(1807), + [anon_sym_r_SQUOTE] = ACTIONS(1807), + [anon_sym_r_DQUOTE] = ACTIONS(1807), [sym_pseudo_compile_time_identifier] = ACTIONS(1809), [anon_sym_shared] = ACTIONS(1809), [anon_sym_map_LBRACK] = ACTIONS(1807), [anon_sym_chan] = ACTIONS(1809), [anon_sym_thread] = ACTIONS(1809), [anon_sym_atomic] = ACTIONS(1809), - [sym___double_quote] = ACTIONS(1807), - [sym___single_quote] = ACTIONS(1807), - [sym___c_double_quote] = ACTIONS(1807), - [sym___c_single_quote] = ACTIONS(1807), - [sym___r_double_quote] = ACTIONS(1807), - [sym___r_single_quote] = ACTIONS(1807), + }, + [1394] = { + [sym_line_comment] = STATE(1394), + [sym_block_comment] = STATE(1394), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2386), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), + [anon_sym_LF] = ACTIONS(607), + [anon_sym_CR] = ACTIONS(607), + [anon_sym_CR_LF] = ACTIONS(607), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym___global] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_pub] = ACTIONS(607), + [anon_sym_mut] = ACTIONS(607), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3922), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(607), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_is] = ACTIONS(607), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(607), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_AT_LBRACK] = ACTIONS(607), + }, + [1395] = { + [sym_line_comment] = STATE(1395), + [sym_block_comment] = STATE(1395), + [sym_reference_expression] = STATE(4466), + [sym_type_reference_expression] = STATE(2130), + [sym_plain_type] = STATE(2231), + [sym__plain_type_without_special] = STATE(2178), + [sym_anon_struct_type] = STATE(2179), + [sym_multi_return_type] = STATE(2178), + [sym_result_type] = STATE(2178), + [sym_option_type] = STATE(2178), + [sym_qualified_type] = STATE(2130), + [sym_fixed_array_type] = STATE(2179), + [sym_array_type] = STATE(2179), + [sym_pointer_type] = STATE(2179), + [sym_wrong_pointer_type] = STATE(2179), + [sym_map_type] = STATE(2179), + [sym_channel_type] = STATE(2179), + [sym_shared_type] = STATE(2179), + [sym_thread_type] = STATE(2179), + [sym_atomic_type] = STATE(2179), + [sym_generic_type] = STATE(2179), + [sym_function_type] = STATE(2179), + [sym_identifier] = ACTIONS(3924), + [anon_sym_LF] = ACTIONS(567), + [anon_sym_CR] = ACTIONS(567), + [anon_sym_CR_LF] = ACTIONS(567), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_as] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(3926), + [anon_sym___global] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(3930), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(3932), + [anon_sym_pub] = ACTIONS(567), + [anon_sym_mut] = ACTIONS(567), + [anon_sym_PLUS_PLUS] = ACTIONS(567), + [anon_sym_DASH_DASH] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(3934), + [anon_sym_BANG] = ACTIONS(3936), + [anon_sym_LBRACK2] = ACTIONS(3938), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(3940), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(567), + [anon_sym_AMP_CARET] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(567), + [anon_sym_POUND_LBRACK] = ACTIONS(567), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(567), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(567), + [anon_sym_shared] = ACTIONS(3942), + [anon_sym_map_LBRACK] = ACTIONS(3944), + [anon_sym_chan] = ACTIONS(3946), + [anon_sym_thread] = ACTIONS(3948), + [anon_sym_atomic] = ACTIONS(3950), + [anon_sym_AT_LBRACK] = ACTIONS(567), + }, + [1396] = { + [sym_line_comment] = STATE(1396), + [sym_block_comment] = STATE(1396), + [sym_identifier] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2887), + [anon_sym_as] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_fn] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2885), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2885), + [anon_sym_BANG_EQ] = ACTIONS(2885), + [anon_sym_LT_EQ] = ACTIONS(2885), + [anon_sym_GT_EQ] = ACTIONS(2885), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_RBRACK] = ACTIONS(3952), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_mut] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_QMARK] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2887), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2887), + [anon_sym_json_DOTdecode] = ACTIONS(2885), + [anon_sym_LBRACK2] = ACTIONS(2887), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_CARET] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2885), + [anon_sym_LT_LT] = ACTIONS(2885), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_GT_GT_GT] = ACTIONS(2885), + [anon_sym_AMP_CARET] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_PIPE_PIPE] = ACTIONS(2885), + [anon_sym_or] = ACTIONS(2887), + [sym_none] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_nil] = ACTIONS(2887), + [anon_sym_QMARK_DOT] = ACTIONS(2885), + [anon_sym_POUND_LBRACK] = ACTIONS(2885), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_DOLLARif] = ACTIONS(2887), + [anon_sym_is] = ACTIONS(2887), + [anon_sym_BANGis] = ACTIONS(2885), + [anon_sym_in] = ACTIONS(2887), + [anon_sym_BANGin] = ACTIONS(2885), + [anon_sym_match] = ACTIONS(2887), + [anon_sym_select] = ACTIONS(2887), + [anon_sym_lock] = ACTIONS(2887), + [anon_sym_rlock] = ACTIONS(2887), + [anon_sym_unsafe] = ACTIONS(2887), + [anon_sym_sql] = ACTIONS(2887), + [sym_int_literal] = ACTIONS(2887), + [sym_float_literal] = ACTIONS(2885), + [sym_rune_literal] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [anon_sym_c_SQUOTE] = ACTIONS(2885), + [anon_sym_c_DQUOTE] = ACTIONS(2885), + [anon_sym_r_SQUOTE] = ACTIONS(2885), + [anon_sym_r_DQUOTE] = ACTIONS(2885), + [sym_pseudo_compile_time_identifier] = ACTIONS(2887), + [anon_sym_shared] = ACTIONS(2887), + [anon_sym_map_LBRACK] = ACTIONS(2885), + [anon_sym_chan] = ACTIONS(2887), + [anon_sym_thread] = ACTIONS(2887), + [anon_sym_atomic] = ACTIONS(2887), }, [1397] = { [sym_line_comment] = STATE(1397), [sym_block_comment] = STATE(1397), - [sym_identifier] = ACTIONS(2513), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_COMMA] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_fn] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2511), - [anon_sym_SLASH] = ACTIONS(2513), - [anon_sym_PERCENT] = ACTIONS(2511), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_GT] = ACTIONS(2513), - [anon_sym_EQ_EQ] = ACTIONS(2511), - [anon_sym_BANG_EQ] = ACTIONS(2511), - [anon_sym_LT_EQ] = ACTIONS(2511), - [anon_sym_GT_EQ] = ACTIONS(2511), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_RBRACK] = ACTIONS(3948), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2511), - [anon_sym_QMARK] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_go] = ACTIONS(2513), - [anon_sym_spawn] = ACTIONS(2513), - [anon_sym_json_DOTdecode] = ACTIONS(2511), - [anon_sym_LBRACK2] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2511), - [anon_sym_CARET] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_LT_DASH] = ACTIONS(2511), - [anon_sym_LT_LT] = ACTIONS(2511), - [anon_sym_GT_GT] = ACTIONS(2513), - [anon_sym_GT_GT_GT] = ACTIONS(2511), - [anon_sym_AMP_CARET] = ACTIONS(2511), - [anon_sym_AMP_AMP] = ACTIONS(2511), - [anon_sym_PIPE_PIPE] = ACTIONS(2511), - [anon_sym_or] = ACTIONS(2513), - [sym_none] = ACTIONS(2513), - [sym_true] = ACTIONS(2513), - [sym_false] = ACTIONS(2513), - [sym_nil] = ACTIONS(2513), - [anon_sym_QMARK_DOT] = ACTIONS(2511), - [anon_sym_POUND_LBRACK] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_DOLLARif] = ACTIONS(2513), - [anon_sym_is] = ACTIONS(2513), - [anon_sym_BANGis] = ACTIONS(2511), - [anon_sym_in] = ACTIONS(2513), - [anon_sym_BANGin] = ACTIONS(2511), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_select] = ACTIONS(2513), - [anon_sym_lock] = ACTIONS(2513), - [anon_sym_rlock] = ACTIONS(2513), - [anon_sym_unsafe] = ACTIONS(2513), - [anon_sym_sql] = ACTIONS(2513), - [sym_int_literal] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2511), - [sym_rune_literal] = ACTIONS(2511), - [sym_pseudo_compile_time_identifier] = ACTIONS(2513), - [anon_sym_shared] = ACTIONS(2513), - [anon_sym_map_LBRACK] = ACTIONS(2511), - [anon_sym_chan] = ACTIONS(2513), - [anon_sym_thread] = ACTIONS(2513), - [anon_sym_atomic] = ACTIONS(2513), - [sym___double_quote] = ACTIONS(2511), - [sym___single_quote] = ACTIONS(2511), - [sym___c_double_quote] = ACTIONS(2511), - [sym___c_single_quote] = ACTIONS(2511), - [sym___r_double_quote] = ACTIONS(2511), - [sym___r_single_quote] = ACTIONS(2511), + [sym_reference_expression] = STATE(4466), + [sym_type_reference_expression] = STATE(2130), + [sym_plain_type] = STATE(2227), + [sym__plain_type_without_special] = STATE(2178), + [sym_anon_struct_type] = STATE(2179), + [sym_multi_return_type] = STATE(2178), + [sym_result_type] = STATE(2178), + [sym_option_type] = STATE(2178), + [sym_qualified_type] = STATE(2130), + [sym_fixed_array_type] = STATE(2179), + [sym_array_type] = STATE(2179), + [sym_pointer_type] = STATE(2179), + [sym_wrong_pointer_type] = STATE(2179), + [sym_map_type] = STATE(2179), + [sym_channel_type] = STATE(2179), + [sym_shared_type] = STATE(2179), + [sym_thread_type] = STATE(2179), + [sym_atomic_type] = STATE(2179), + [sym_generic_type] = STATE(2179), + [sym_function_type] = STATE(2179), + [sym_identifier] = ACTIONS(3924), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_CR] = ACTIONS(597), + [anon_sym_CR_LF] = ACTIONS(597), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(3926), + [anon_sym___global] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(3930), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(3932), + [anon_sym_pub] = ACTIONS(597), + [anon_sym_mut] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(3934), + [anon_sym_BANG] = ACTIONS(3936), + [anon_sym_LBRACK2] = ACTIONS(3938), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(3940), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(597), + [anon_sym_POUND_LBRACK] = ACTIONS(597), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(597), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(3942), + [anon_sym_map_LBRACK] = ACTIONS(3944), + [anon_sym_chan] = ACTIONS(3946), + [anon_sym_thread] = ACTIONS(3948), + [anon_sym_atomic] = ACTIONS(3950), + [anon_sym_AT_LBRACK] = ACTIONS(597), }, [1398] = { [sym_line_comment] = STATE(1398), [sym_block_comment] = STATE(1398), - [sym_reference_expression] = STATE(4471), - [sym_type_reference_expression] = STATE(2142), - [sym_plain_type] = STATE(2231), - [sym__plain_type_without_special] = STATE(2183), - [sym_anon_struct_type] = STATE(2184), - [sym_multi_return_type] = STATE(2183), - [sym_result_type] = STATE(2183), - [sym_option_type] = STATE(2183), - [sym_qualified_type] = STATE(2142), - [sym_fixed_array_type] = STATE(2184), - [sym_array_type] = STATE(2184), - [sym_pointer_type] = STATE(2184), - [sym_wrong_pointer_type] = STATE(2184), - [sym_map_type] = STATE(2184), - [sym_channel_type] = STATE(2184), - [sym_shared_type] = STATE(2184), - [sym_thread_type] = STATE(2184), - [sym_atomic_type] = STATE(2184), - [sym_generic_type] = STATE(2184), - [sym_function_type] = STATE(2184), - [sym_identifier] = ACTIONS(3918), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3920), - [anon_sym___global] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3922), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(3926), - [anon_sym_pub] = ACTIONS(619), - [anon_sym_mut] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3928), - [anon_sym_BANG] = ACTIONS(3930), - [anon_sym_LBRACK2] = ACTIONS(3932), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3934), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(3936), - [anon_sym_map_LBRACK] = ACTIONS(3938), - [anon_sym_chan] = ACTIONS(3940), - [anon_sym_thread] = ACTIONS(3942), - [anon_sym_atomic] = ACTIONS(3944), - [anon_sym_AT_LBRACK] = ACTIONS(619), + [sym_identifier] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_as] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_COMMA] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_PIPE] = ACTIONS(2887), + [anon_sym_fn] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2885), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2885), + [anon_sym_BANG_EQ] = ACTIONS(2885), + [anon_sym_LT_EQ] = ACTIONS(2885), + [anon_sym_GT_EQ] = ACTIONS(2885), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_RBRACK] = ACTIONS(3952), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_mut] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_QMARK] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2887), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2887), + [anon_sym_json_DOTdecode] = ACTIONS(2885), + [anon_sym_LBRACK2] = ACTIONS(2887), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_CARET] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2885), + [anon_sym_LT_LT] = ACTIONS(2885), + [anon_sym_GT_GT] = ACTIONS(2887), + [anon_sym_GT_GT_GT] = ACTIONS(2885), + [anon_sym_AMP_CARET] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_PIPE_PIPE] = ACTIONS(2885), + [anon_sym_or] = ACTIONS(2887), + [sym_none] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_nil] = ACTIONS(2887), + [anon_sym_QMARK_DOT] = ACTIONS(2885), + [anon_sym_POUND_LBRACK] = ACTIONS(2885), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_DOLLARif] = ACTIONS(2887), + [anon_sym_is] = ACTIONS(2887), + [anon_sym_BANGis] = ACTIONS(2885), + [anon_sym_in] = ACTIONS(2887), + [anon_sym_BANGin] = ACTIONS(2885), + [anon_sym_match] = ACTIONS(2887), + [anon_sym_select] = ACTIONS(2887), + [anon_sym_lock] = ACTIONS(2887), + [anon_sym_rlock] = ACTIONS(2887), + [anon_sym_unsafe] = ACTIONS(2887), + [anon_sym_sql] = ACTIONS(2887), + [sym_int_literal] = ACTIONS(2887), + [sym_float_literal] = ACTIONS(2885), + [sym_rune_literal] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [anon_sym_c_SQUOTE] = ACTIONS(2885), + [anon_sym_c_DQUOTE] = ACTIONS(2885), + [anon_sym_r_SQUOTE] = ACTIONS(2885), + [anon_sym_r_DQUOTE] = ACTIONS(2885), + [sym_pseudo_compile_time_identifier] = ACTIONS(2887), + [anon_sym_shared] = ACTIONS(2887), + [anon_sym_map_LBRACK] = ACTIONS(2885), + [anon_sym_chan] = ACTIONS(2887), + [anon_sym_thread] = ACTIONS(2887), + [anon_sym_atomic] = ACTIONS(2887), }, [1399] = { [sym_line_comment] = STATE(1399), [sym_block_comment] = STATE(1399), - [sym_identifier] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2715), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2513), - [anon_sym_as] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_COMMA] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_fn] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2511), - [anon_sym_SLASH] = ACTIONS(2513), - [anon_sym_PERCENT] = ACTIONS(2511), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_GT] = ACTIONS(2513), - [anon_sym_EQ_EQ] = ACTIONS(2511), - [anon_sym_BANG_EQ] = ACTIONS(2511), - [anon_sym_LT_EQ] = ACTIONS(2511), - [anon_sym_GT_EQ] = ACTIONS(2511), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_RBRACK] = ACTIONS(3948), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2511), - [anon_sym_QMARK] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_go] = ACTIONS(2513), - [anon_sym_spawn] = ACTIONS(2513), - [anon_sym_json_DOTdecode] = ACTIONS(2511), - [anon_sym_LBRACK2] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2511), - [anon_sym_CARET] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_LT_DASH] = ACTIONS(2511), - [anon_sym_LT_LT] = ACTIONS(2511), - [anon_sym_GT_GT] = ACTIONS(2513), - [anon_sym_GT_GT_GT] = ACTIONS(2511), - [anon_sym_AMP_CARET] = ACTIONS(2511), - [anon_sym_AMP_AMP] = ACTIONS(2511), - [anon_sym_PIPE_PIPE] = ACTIONS(2511), - [anon_sym_or] = ACTIONS(2513), - [sym_none] = ACTIONS(2513), - [sym_true] = ACTIONS(2513), - [sym_false] = ACTIONS(2513), - [sym_nil] = ACTIONS(2513), - [anon_sym_QMARK_DOT] = ACTIONS(2511), - [anon_sym_POUND_LBRACK] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_DOLLARif] = ACTIONS(2513), - [anon_sym_is] = ACTIONS(2513), - [anon_sym_BANGis] = ACTIONS(2511), - [anon_sym_in] = ACTIONS(2513), - [anon_sym_BANGin] = ACTIONS(2511), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_select] = ACTIONS(2513), - [anon_sym_lock] = ACTIONS(2513), - [anon_sym_rlock] = ACTIONS(2513), - [anon_sym_unsafe] = ACTIONS(2513), - [anon_sym_sql] = ACTIONS(2513), - [sym_int_literal] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2511), - [sym_rune_literal] = ACTIONS(2511), - [sym_pseudo_compile_time_identifier] = ACTIONS(2513), - [anon_sym_shared] = ACTIONS(2513), - [anon_sym_map_LBRACK] = ACTIONS(2511), - [anon_sym_chan] = ACTIONS(2513), - [anon_sym_thread] = ACTIONS(2513), - [anon_sym_atomic] = ACTIONS(2513), - [sym___double_quote] = ACTIONS(2511), - [sym___single_quote] = ACTIONS(2511), - [sym___c_double_quote] = ACTIONS(2511), - [sym___c_single_quote] = ACTIONS(2511), - [sym___r_double_quote] = ACTIONS(2511), - [sym___r_single_quote] = ACTIONS(2511), + [anon_sym_DOT] = ACTIONS(2715), + [anon_sym_as] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_COMMA] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_PLUS] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2713), + [anon_sym_SLASH] = ACTIONS(2715), + [anon_sym_PERCENT] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_GT] = ACTIONS(2715), + [anon_sym_EQ_EQ] = ACTIONS(2713), + [anon_sym_BANG_EQ] = ACTIONS(2713), + [anon_sym_LT_EQ] = ACTIONS(2713), + [anon_sym_GT_EQ] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_RBRACK] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2713), + [anon_sym_DASH_DASH] = ACTIONS(2713), + [anon_sym_QMARK] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_go] = ACTIONS(2715), + [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_json_DOTdecode] = ACTIONS(2713), + [anon_sym_LBRACK2] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2713), + [anon_sym_CARET] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_LT_DASH] = ACTIONS(2713), + [anon_sym_LT_LT] = ACTIONS(2713), + [anon_sym_GT_GT] = ACTIONS(2715), + [anon_sym_GT_GT_GT] = ACTIONS(2713), + [anon_sym_AMP_CARET] = ACTIONS(2713), + [anon_sym_AMP_AMP] = ACTIONS(2713), + [anon_sym_PIPE_PIPE] = ACTIONS(2713), + [anon_sym_or] = ACTIONS(2715), + [sym_none] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), + [sym_nil] = ACTIONS(2715), + [anon_sym_QMARK_DOT] = ACTIONS(2713), + [anon_sym_POUND_LBRACK] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_DOLLARif] = ACTIONS(2715), + [anon_sym_is] = ACTIONS(2715), + [anon_sym_BANGis] = ACTIONS(2713), + [anon_sym_in] = ACTIONS(2715), + [anon_sym_BANGin] = ACTIONS(2713), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_select] = ACTIONS(2715), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_sql] = ACTIONS(2715), + [sym_int_literal] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2713), + [sym_rune_literal] = ACTIONS(2713), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_DQUOTE] = ACTIONS(2713), + [anon_sym_c_SQUOTE] = ACTIONS(2713), + [anon_sym_c_DQUOTE] = ACTIONS(2713), + [anon_sym_r_SQUOTE] = ACTIONS(2713), + [anon_sym_r_DQUOTE] = ACTIONS(2713), + [sym_pseudo_compile_time_identifier] = ACTIONS(2715), + [anon_sym_shared] = ACTIONS(2715), + [anon_sym_map_LBRACK] = ACTIONS(2713), + [anon_sym_chan] = ACTIONS(2715), + [anon_sym_thread] = ACTIONS(2715), + [anon_sym_atomic] = ACTIONS(2715), }, [1400] = { [sym_line_comment] = STATE(1400), [sym_block_comment] = STATE(1400), - [sym_identifier] = ACTIONS(2676), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2674), - [anon_sym_LPAREN] = ACTIONS(2674), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_fn] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2676), - [anon_sym_PERCENT] = ACTIONS(2674), - [anon_sym_LT] = ACTIONS(2676), - [anon_sym_GT] = ACTIONS(2676), - [anon_sym_EQ_EQ] = ACTIONS(2674), - [anon_sym_BANG_EQ] = ACTIONS(2674), - [anon_sym_LT_EQ] = ACTIONS(2674), - [anon_sym_GT_EQ] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_RBRACK] = ACTIONS(2674), - [anon_sym_struct] = ACTIONS(2676), - [anon_sym_mut] = ACTIONS(2676), - [anon_sym_PLUS_PLUS] = ACTIONS(2674), - [anon_sym_DASH_DASH] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(2676), - [anon_sym_go] = ACTIONS(2676), - [anon_sym_spawn] = ACTIONS(2676), - [anon_sym_json_DOTdecode] = ACTIONS(2674), - [anon_sym_LBRACK2] = ACTIONS(2676), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_CARET] = ACTIONS(2674), - [anon_sym_AMP] = ACTIONS(2676), - [anon_sym_LT_DASH] = ACTIONS(2674), - [anon_sym_LT_LT] = ACTIONS(2674), - [anon_sym_GT_GT] = ACTIONS(2676), - [anon_sym_GT_GT_GT] = ACTIONS(2674), - [anon_sym_AMP_CARET] = ACTIONS(2674), - [anon_sym_AMP_AMP] = ACTIONS(2674), - [anon_sym_PIPE_PIPE] = ACTIONS(2674), - [anon_sym_or] = ACTIONS(2676), - [sym_none] = ACTIONS(2676), - [sym_true] = ACTIONS(2676), - [sym_false] = ACTIONS(2676), - [sym_nil] = ACTIONS(2676), - [anon_sym_QMARK_DOT] = ACTIONS(2674), - [anon_sym_POUND_LBRACK] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2676), - [anon_sym_DOLLARif] = ACTIONS(2676), - [anon_sym_is] = ACTIONS(2676), - [anon_sym_BANGis] = ACTIONS(2674), - [anon_sym_in] = ACTIONS(2676), - [anon_sym_BANGin] = ACTIONS(2674), - [anon_sym_match] = ACTIONS(2676), - [anon_sym_select] = ACTIONS(2676), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2676), - [anon_sym_sql] = ACTIONS(2676), - [sym_int_literal] = ACTIONS(2676), - [sym_float_literal] = ACTIONS(2674), - [sym_rune_literal] = ACTIONS(2674), - [sym_pseudo_compile_time_identifier] = ACTIONS(2676), - [anon_sym_shared] = ACTIONS(2676), - [anon_sym_map_LBRACK] = ACTIONS(2674), - [anon_sym_chan] = ACTIONS(2676), - [anon_sym_thread] = ACTIONS(2676), - [anon_sym_atomic] = ACTIONS(2676), - [sym___double_quote] = ACTIONS(2674), - [sym___single_quote] = ACTIONS(2674), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2674), - [sym___r_double_quote] = ACTIONS(2674), - [sym___r_single_quote] = ACTIONS(2674), + [sym_reference_expression] = STATE(4466), + [sym_type_reference_expression] = STATE(2130), + [sym_plain_type] = STATE(2189), + [sym__plain_type_without_special] = STATE(2178), + [sym_anon_struct_type] = STATE(2179), + [sym_multi_return_type] = STATE(2178), + [sym_result_type] = STATE(2178), + [sym_option_type] = STATE(2178), + [sym_qualified_type] = STATE(2130), + [sym_fixed_array_type] = STATE(2179), + [sym_array_type] = STATE(2179), + [sym_pointer_type] = STATE(2179), + [sym_wrong_pointer_type] = STATE(2179), + [sym_map_type] = STATE(2179), + [sym_channel_type] = STATE(2179), + [sym_shared_type] = STATE(2179), + [sym_thread_type] = STATE(2179), + [sym_atomic_type] = STATE(2179), + [sym_generic_type] = STATE(2179), + [sym_function_type] = STATE(2179), + [sym_identifier] = ACTIONS(3924), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(601), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(3926), + [anon_sym___global] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3928), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3930), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(3932), + [anon_sym_pub] = ACTIONS(601), + [anon_sym_mut] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(3934), + [anon_sym_BANG] = ACTIONS(3936), + [anon_sym_LBRACK2] = ACTIONS(3938), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(3940), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_POUND_LBRACK] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(3942), + [anon_sym_map_LBRACK] = ACTIONS(3944), + [anon_sym_chan] = ACTIONS(3946), + [anon_sym_thread] = ACTIONS(3948), + [anon_sym_atomic] = ACTIONS(3950), + [anon_sym_AT_LBRACK] = ACTIONS(601), }, [1401] = { [sym_line_comment] = STATE(1401), [sym_block_comment] = STATE(1401), - [sym_type_parameters] = STATE(1460), - [ts_builtin_sym_end] = ACTIONS(1879), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(3951), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_union] = ACTIONS(1881), - [anon_sym_pub] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_enum] = ACTIONS(1881), - [anon_sym_interface] = ACTIONS(1881), - [anon_sym_QMARK] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1881), - [sym_none] = ACTIONS(1881), - [sym_true] = ACTIONS(1881), - [sym_false] = ACTIONS(1881), - [sym_nil] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_match] = ACTIONS(1881), - [anon_sym_select] = ACTIONS(1881), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1881), - [anon_sym_sql] = ACTIONS(1881), - [sym_int_literal] = ACTIONS(1881), - [sym_float_literal] = ACTIONS(1881), - [sym_rune_literal] = ACTIONS(1881), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1881), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [anon_sym_assert] = ACTIONS(1881), - [anon_sym_defer] = ACTIONS(1881), - [anon_sym_goto] = ACTIONS(1881), - [anon_sym_break] = ACTIONS(1881), - [anon_sym_continue] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1881), - [anon_sym_DOLLARfor] = ACTIONS(1881), - [anon_sym_for] = ACTIONS(1881), - [anon_sym_POUND] = ACTIONS(1881), - [anon_sym_asm] = ACTIONS(1881), - [anon_sym_AT_LBRACK] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1881), - [sym___single_quote] = ACTIONS(1881), - [sym___c_double_quote] = ACTIONS(1881), - [sym___c_single_quote] = ACTIONS(1881), - [sym___r_double_quote] = ACTIONS(1881), - [sym___r_single_quote] = ACTIONS(1881), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(2284), + [sym_plain_type] = STATE(2396), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(2284), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3955), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(3959), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3963), + [anon_sym_LBRACK2] = ACTIONS(3965), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(3967), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(595), + [anon_sym_AMP_CARET] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(595), + [anon_sym_POUND_LBRACK] = ACTIONS(595), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(595), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(595), + [anon_sym_COLON_EQ] = ACTIONS(595), + [anon_sym_shared] = ACTIONS(3969), + [anon_sym_map_LBRACK] = ACTIONS(3971), + [anon_sym_chan] = ACTIONS(3973), + [anon_sym_thread] = ACTIONS(3975), + [anon_sym_atomic] = ACTIONS(3977), + [anon_sym_DOT_DOT] = ACTIONS(595), }, [1402] = { [sym_line_comment] = STATE(1402), [sym_block_comment] = STATE(1402), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(2283), - [sym_plain_type] = STATE(2345), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(2283), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3953), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(2284), + [sym_plain_type] = STATE(2311), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(2284), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3955), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(3564), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(3955), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(623), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_BANG] = ACTIONS(3961), - [anon_sym_LBRACK2] = ACTIONS(3963), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(3965), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_COLON_EQ] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(3967), - [anon_sym_map_LBRACK] = ACTIONS(3969), - [anon_sym_chan] = ACTIONS(3971), - [anon_sym_thread] = ACTIONS(3973), - [anon_sym_atomic] = ACTIONS(3975), - [anon_sym_DOT_DOT] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_as] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(3959), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_RBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_COLON] = ACTIONS(567), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3963), + [anon_sym_LBRACK2] = ACTIONS(3965), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(3967), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(3969), + [anon_sym_map_LBRACK] = ACTIONS(3971), + [anon_sym_chan] = ACTIONS(3973), + [anon_sym_thread] = ACTIONS(3975), + [anon_sym_atomic] = ACTIONS(3977), + [anon_sym_DOT_DOT] = ACTIONS(563), }, [1403] = { [sym_line_comment] = STATE(1403), [sym_block_comment] = STATE(1403), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(2283), - [sym_plain_type] = STATE(2416), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(2283), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3953), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(2284), + [sym_plain_type] = STATE(2328), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(2284), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(3955), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(3564), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3955), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_BANG] = ACTIONS(3961), - [anon_sym_LBRACK2] = ACTIONS(3963), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(3965), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(617), - [anon_sym_AMP_CARET] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_or] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(617), - [anon_sym_POUND_LBRACK] = ACTIONS(617), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(617), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(617), - [anon_sym_COLON_EQ] = ACTIONS(617), - [anon_sym_shared] = ACTIONS(3967), - [anon_sym_map_LBRACK] = ACTIONS(3969), - [anon_sym_chan] = ACTIONS(3971), - [anon_sym_thread] = ACTIONS(3973), - [anon_sym_atomic] = ACTIONS(3975), - [anon_sym_DOT_DOT] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3957), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3959), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(599), + [anon_sym_GT_EQ] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_COLON] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3963), + [anon_sym_LBRACK2] = ACTIONS(3965), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(3967), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(599), + [anon_sym_AMP_CARET] = ACTIONS(599), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(599), + [anon_sym_COLON_EQ] = ACTIONS(599), + [anon_sym_shared] = ACTIONS(3969), + [anon_sym_map_LBRACK] = ACTIONS(3971), + [anon_sym_chan] = ACTIONS(3973), + [anon_sym_thread] = ACTIONS(3975), + [anon_sym_atomic] = ACTIONS(3977), + [anon_sym_DOT_DOT] = ACTIONS(599), }, [1404] = { [sym_line_comment] = STATE(1404), [sym_block_comment] = STATE(1404), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(2283), - [sym_plain_type] = STATE(2325), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(2283), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(3953), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(3564), - [anon_sym_RPAREN] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3955), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3957), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_RBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_BANG] = ACTIONS(3961), - [anon_sym_LBRACK2] = ACTIONS(3963), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(3965), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_COLON_EQ] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(3967), - [anon_sym_map_LBRACK] = ACTIONS(3969), - [anon_sym_chan] = ACTIONS(3971), - [anon_sym_thread] = ACTIONS(3973), - [anon_sym_atomic] = ACTIONS(3975), - [anon_sym_DOT_DOT] = ACTIONS(585), + [sym_type_parameters] = STATE(1462), + [ts_builtin_sym_end] = ACTIONS(1897), + [sym_identifier] = ACTIONS(1899), + [anon_sym_LF] = ACTIONS(1899), + [anon_sym_CR] = ACTIONS(1899), + [anon_sym_CR_LF] = ACTIONS(1899), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym___global] = ACTIONS(1899), + [anon_sym_type] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(3979), + [anon_sym_struct] = ACTIONS(1899), + [anon_sym_union] = ACTIONS(1899), + [anon_sym_pub] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_enum] = ACTIONS(1899), + [anon_sym_interface] = ACTIONS(1899), + [anon_sym_QMARK] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_go] = ACTIONS(1899), + [anon_sym_spawn] = ACTIONS(1899), + [anon_sym_json_DOTdecode] = ACTIONS(1899), + [anon_sym_LBRACK2] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1899), + [sym_none] = ACTIONS(1899), + [sym_true] = ACTIONS(1899), + [sym_false] = ACTIONS(1899), + [sym_nil] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_DOLLARif] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_select] = ACTIONS(1899), + [anon_sym_lock] = ACTIONS(1899), + [anon_sym_rlock] = ACTIONS(1899), + [anon_sym_unsafe] = ACTIONS(1899), + [anon_sym_sql] = ACTIONS(1899), + [sym_int_literal] = ACTIONS(1899), + [sym_float_literal] = ACTIONS(1899), + [sym_rune_literal] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_c_SQUOTE] = ACTIONS(1899), + [anon_sym_c_DQUOTE] = ACTIONS(1899), + [anon_sym_r_SQUOTE] = ACTIONS(1899), + [anon_sym_r_DQUOTE] = ACTIONS(1899), + [sym_pseudo_compile_time_identifier] = ACTIONS(1899), + [anon_sym_shared] = ACTIONS(1899), + [anon_sym_map_LBRACK] = ACTIONS(1899), + [anon_sym_chan] = ACTIONS(1899), + [anon_sym_thread] = ACTIONS(1899), + [anon_sym_atomic] = ACTIONS(1899), + [anon_sym_assert] = ACTIONS(1899), + [anon_sym_defer] = ACTIONS(1899), + [anon_sym_goto] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_DOLLARfor] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(1899), + [anon_sym_asm] = ACTIONS(1899), + [anon_sym_AT_LBRACK] = ACTIONS(1899), }, [1405] = { [sym_line_comment] = STATE(1405), [sym_block_comment] = STATE(1405), - [aux_sym_strictly_expression_list_repeat1] = STATE(1405), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(1649), - [anon_sym_LF] = ACTIONS(1649), - [anon_sym_CR] = ACTIONS(1649), - [anon_sym_CR_LF] = ACTIONS(1649), + [aux_sym__type_union_list_repeat1] = STATE(1406), + [ts_builtin_sym_end] = ACTIONS(3981), + [sym_identifier] = ACTIONS(3983), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_CR] = ACTIONS(3985), + [anon_sym_CR_LF] = ACTIONS(3985), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_COMMA] = ACTIONS(3977), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym___global] = ACTIONS(1649), - [anon_sym_type] = ACTIONS(1649), - [anon_sym_fn] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1649), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_union] = ACTIONS(1649), - [anon_sym_pub] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(1649), - [anon_sym_enum] = ACTIONS(1649), - [anon_sym_interface] = ACTIONS(1649), - [anon_sym_QMARK] = ACTIONS(1649), - [anon_sym_BANG] = ACTIONS(1649), - [anon_sym_go] = ACTIONS(1649), - [anon_sym_spawn] = ACTIONS(1649), - [anon_sym_json_DOTdecode] = ACTIONS(1649), - [anon_sym_LBRACK2] = ACTIONS(1649), - [anon_sym_TILDE] = ACTIONS(1649), - [anon_sym_CARET] = ACTIONS(1649), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_LT_DASH] = ACTIONS(1649), - [sym_none] = ACTIONS(1649), - [sym_true] = ACTIONS(1649), - [sym_false] = ACTIONS(1649), - [sym_nil] = ACTIONS(1649), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_DOLLARif] = ACTIONS(1649), - [anon_sym_match] = ACTIONS(1649), - [anon_sym_select] = ACTIONS(1649), - [anon_sym_lock] = ACTIONS(1649), - [anon_sym_rlock] = ACTIONS(1649), - [anon_sym_unsafe] = ACTIONS(1649), - [anon_sym_sql] = ACTIONS(1649), - [sym_int_literal] = ACTIONS(1649), - [sym_float_literal] = ACTIONS(1649), - [sym_rune_literal] = ACTIONS(1649), - [sym_pseudo_compile_time_identifier] = ACTIONS(1649), - [anon_sym_shared] = ACTIONS(1649), - [anon_sym_map_LBRACK] = ACTIONS(1649), - [anon_sym_chan] = ACTIONS(1649), - [anon_sym_thread] = ACTIONS(1649), - [anon_sym_atomic] = ACTIONS(1649), - [anon_sym_assert] = ACTIONS(1649), - [anon_sym_defer] = ACTIONS(1649), - [anon_sym_goto] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_DOLLARfor] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_POUND] = ACTIONS(1649), - [anon_sym_asm] = ACTIONS(1649), - [anon_sym_AT_LBRACK] = ACTIONS(1649), - [sym___double_quote] = ACTIONS(1649), - [sym___single_quote] = ACTIONS(1649), - [sym___c_double_quote] = ACTIONS(1649), - [sym___c_single_quote] = ACTIONS(1649), - [sym___r_double_quote] = ACTIONS(1649), - [sym___r_single_quote] = ACTIONS(1649), + [anon_sym_DOT] = ACTIONS(3983), + [anon_sym_LBRACE] = ACTIONS(3983), + [anon_sym_const] = ACTIONS(3983), + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym___global] = ACTIONS(3983), + [anon_sym_type] = ACTIONS(3983), + [anon_sym_PIPE] = ACTIONS(3988), + [anon_sym_fn] = ACTIONS(3983), + [anon_sym_PLUS] = ACTIONS(3983), + [anon_sym_DASH] = ACTIONS(3983), + [anon_sym_STAR] = ACTIONS(3983), + [anon_sym_struct] = ACTIONS(3983), + [anon_sym_union] = ACTIONS(3983), + [anon_sym_pub] = ACTIONS(3983), + [anon_sym_mut] = ACTIONS(3983), + [anon_sym_enum] = ACTIONS(3983), + [anon_sym_interface] = ACTIONS(3983), + [anon_sym_QMARK] = ACTIONS(3983), + [anon_sym_BANG] = ACTIONS(3983), + [anon_sym_go] = ACTIONS(3983), + [anon_sym_spawn] = ACTIONS(3983), + [anon_sym_json_DOTdecode] = ACTIONS(3983), + [anon_sym_LBRACK2] = ACTIONS(3983), + [anon_sym_TILDE] = ACTIONS(3983), + [anon_sym_CARET] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3983), + [anon_sym_LT_DASH] = ACTIONS(3983), + [sym_none] = ACTIONS(3983), + [sym_true] = ACTIONS(3983), + [sym_false] = ACTIONS(3983), + [sym_nil] = ACTIONS(3983), + [anon_sym_if] = ACTIONS(3983), + [anon_sym_DOLLARif] = ACTIONS(3983), + [anon_sym_match] = ACTIONS(3983), + [anon_sym_select] = ACTIONS(3983), + [anon_sym_lock] = ACTIONS(3983), + [anon_sym_rlock] = ACTIONS(3983), + [anon_sym_unsafe] = ACTIONS(3983), + [anon_sym_sql] = ACTIONS(3983), + [sym_int_literal] = ACTIONS(3983), + [sym_float_literal] = ACTIONS(3983), + [sym_rune_literal] = ACTIONS(3983), + [anon_sym_SQUOTE] = ACTIONS(3983), + [anon_sym_DQUOTE] = ACTIONS(3983), + [anon_sym_c_SQUOTE] = ACTIONS(3983), + [anon_sym_c_DQUOTE] = ACTIONS(3983), + [anon_sym_r_SQUOTE] = ACTIONS(3983), + [anon_sym_r_DQUOTE] = ACTIONS(3983), + [sym_pseudo_compile_time_identifier] = ACTIONS(3983), + [anon_sym_shared] = ACTIONS(3983), + [anon_sym_map_LBRACK] = ACTIONS(3983), + [anon_sym_chan] = ACTIONS(3983), + [anon_sym_thread] = ACTIONS(3983), + [anon_sym_atomic] = ACTIONS(3983), + [anon_sym_assert] = ACTIONS(3983), + [anon_sym_defer] = ACTIONS(3983), + [anon_sym_goto] = ACTIONS(3983), + [anon_sym_break] = ACTIONS(3983), + [anon_sym_continue] = ACTIONS(3983), + [anon_sym_return] = ACTIONS(3983), + [anon_sym_DOLLARfor] = ACTIONS(3983), + [anon_sym_for] = ACTIONS(3983), + [anon_sym_POUND] = ACTIONS(3983), + [anon_sym_asm] = ACTIONS(3983), + [anon_sym_AT_LBRACK] = ACTIONS(3983), }, [1406] = { [sym_line_comment] = STATE(1406), [sym_block_comment] = STATE(1406), - [aux_sym__type_union_list_repeat1] = STATE(1414), - [ts_builtin_sym_end] = ACTIONS(3980), - [sym_identifier] = ACTIONS(3982), - [anon_sym_LF] = ACTIONS(3984), - [anon_sym_CR] = ACTIONS(3984), - [anon_sym_CR_LF] = ACTIONS(3984), + [aux_sym__type_union_list_repeat1] = STATE(1406), + [ts_builtin_sym_end] = ACTIONS(3990), + [sym_identifier] = ACTIONS(3992), + [anon_sym_LF] = ACTIONS(3994), + [anon_sym_CR] = ACTIONS(3994), + [anon_sym_CR_LF] = ACTIONS(3994), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3982), - [anon_sym_LBRACE] = ACTIONS(3982), - [anon_sym_const] = ACTIONS(3982), - [anon_sym_LPAREN] = ACTIONS(3982), - [anon_sym___global] = ACTIONS(3982), - [anon_sym_type] = ACTIONS(3982), - [anon_sym_PIPE] = ACTIONS(3987), - [anon_sym_fn] = ACTIONS(3982), - [anon_sym_PLUS] = ACTIONS(3982), - [anon_sym_DASH] = ACTIONS(3982), - [anon_sym_STAR] = ACTIONS(3982), - [anon_sym_struct] = ACTIONS(3982), - [anon_sym_union] = ACTIONS(3982), - [anon_sym_pub] = ACTIONS(3982), - [anon_sym_mut] = ACTIONS(3982), - [anon_sym_enum] = ACTIONS(3982), - [anon_sym_interface] = ACTIONS(3982), - [anon_sym_QMARK] = ACTIONS(3982), - [anon_sym_BANG] = ACTIONS(3982), - [anon_sym_go] = ACTIONS(3982), - [anon_sym_spawn] = ACTIONS(3982), - [anon_sym_json_DOTdecode] = ACTIONS(3982), - [anon_sym_LBRACK2] = ACTIONS(3982), - [anon_sym_TILDE] = ACTIONS(3982), - [anon_sym_CARET] = ACTIONS(3982), - [anon_sym_AMP] = ACTIONS(3982), - [anon_sym_LT_DASH] = ACTIONS(3982), - [sym_none] = ACTIONS(3982), - [sym_true] = ACTIONS(3982), - [sym_false] = ACTIONS(3982), - [sym_nil] = ACTIONS(3982), - [anon_sym_if] = ACTIONS(3982), - [anon_sym_DOLLARif] = ACTIONS(3982), - [anon_sym_match] = ACTIONS(3982), - [anon_sym_select] = ACTIONS(3982), - [anon_sym_lock] = ACTIONS(3982), - [anon_sym_rlock] = ACTIONS(3982), - [anon_sym_unsafe] = ACTIONS(3982), - [anon_sym_sql] = ACTIONS(3982), - [sym_int_literal] = ACTIONS(3982), - [sym_float_literal] = ACTIONS(3982), - [sym_rune_literal] = ACTIONS(3982), - [sym_pseudo_compile_time_identifier] = ACTIONS(3982), - [anon_sym_shared] = ACTIONS(3982), - [anon_sym_map_LBRACK] = ACTIONS(3982), - [anon_sym_chan] = ACTIONS(3982), - [anon_sym_thread] = ACTIONS(3982), - [anon_sym_atomic] = ACTIONS(3982), - [anon_sym_assert] = ACTIONS(3982), - [anon_sym_defer] = ACTIONS(3982), - [anon_sym_goto] = ACTIONS(3982), - [anon_sym_break] = ACTIONS(3982), - [anon_sym_continue] = ACTIONS(3982), - [anon_sym_return] = ACTIONS(3982), - [anon_sym_DOLLARfor] = ACTIONS(3982), - [anon_sym_for] = ACTIONS(3982), - [anon_sym_POUND] = ACTIONS(3982), - [anon_sym_asm] = ACTIONS(3982), - [anon_sym_AT_LBRACK] = ACTIONS(3982), - [sym___double_quote] = ACTIONS(3982), - [sym___single_quote] = ACTIONS(3982), - [sym___c_double_quote] = ACTIONS(3982), - [sym___c_single_quote] = ACTIONS(3982), - [sym___r_double_quote] = ACTIONS(3982), - [sym___r_single_quote] = ACTIONS(3982), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3992), + [anon_sym_const] = ACTIONS(3992), + [anon_sym_LPAREN] = ACTIONS(3992), + [anon_sym___global] = ACTIONS(3992), + [anon_sym_type] = ACTIONS(3992), + [anon_sym_PIPE] = ACTIONS(3997), + [anon_sym_fn] = ACTIONS(3992), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_struct] = ACTIONS(3992), + [anon_sym_union] = ACTIONS(3992), + [anon_sym_pub] = ACTIONS(3992), + [anon_sym_mut] = ACTIONS(3992), + [anon_sym_enum] = ACTIONS(3992), + [anon_sym_interface] = ACTIONS(3992), + [anon_sym_QMARK] = ACTIONS(3992), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_go] = ACTIONS(3992), + [anon_sym_spawn] = ACTIONS(3992), + [anon_sym_json_DOTdecode] = ACTIONS(3992), + [anon_sym_LBRACK2] = ACTIONS(3992), + [anon_sym_TILDE] = ACTIONS(3992), + [anon_sym_CARET] = ACTIONS(3992), + [anon_sym_AMP] = ACTIONS(3992), + [anon_sym_LT_DASH] = ACTIONS(3992), + [sym_none] = ACTIONS(3992), + [sym_true] = ACTIONS(3992), + [sym_false] = ACTIONS(3992), + [sym_nil] = ACTIONS(3992), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_DOLLARif] = ACTIONS(3992), + [anon_sym_match] = ACTIONS(3992), + [anon_sym_select] = ACTIONS(3992), + [anon_sym_lock] = ACTIONS(3992), + [anon_sym_rlock] = ACTIONS(3992), + [anon_sym_unsafe] = ACTIONS(3992), + [anon_sym_sql] = ACTIONS(3992), + [sym_int_literal] = ACTIONS(3992), + [sym_float_literal] = ACTIONS(3992), + [sym_rune_literal] = ACTIONS(3992), + [anon_sym_SQUOTE] = ACTIONS(3992), + [anon_sym_DQUOTE] = ACTIONS(3992), + [anon_sym_c_SQUOTE] = ACTIONS(3992), + [anon_sym_c_DQUOTE] = ACTIONS(3992), + [anon_sym_r_SQUOTE] = ACTIONS(3992), + [anon_sym_r_DQUOTE] = ACTIONS(3992), + [sym_pseudo_compile_time_identifier] = ACTIONS(3992), + [anon_sym_shared] = ACTIONS(3992), + [anon_sym_map_LBRACK] = ACTIONS(3992), + [anon_sym_chan] = ACTIONS(3992), + [anon_sym_thread] = ACTIONS(3992), + [anon_sym_atomic] = ACTIONS(3992), + [anon_sym_assert] = ACTIONS(3992), + [anon_sym_defer] = ACTIONS(3992), + [anon_sym_goto] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_DOLLARfor] = ACTIONS(3992), + [anon_sym_for] = ACTIONS(3992), + [anon_sym_POUND] = ACTIONS(3992), + [anon_sym_asm] = ACTIONS(3992), + [anon_sym_AT_LBRACK] = ACTIONS(3992), }, [1407] = { [sym_line_comment] = STATE(1407), [sym_block_comment] = STATE(1407), - [aux_sym__type_union_list_repeat1] = STATE(1407), - [ts_builtin_sym_end] = ACTIONS(3989), - [sym_identifier] = ACTIONS(3991), - [anon_sym_LF] = ACTIONS(3993), - [anon_sym_CR] = ACTIONS(3993), - [anon_sym_CR_LF] = ACTIONS(3993), + [aux_sym__type_union_list_repeat1] = STATE(1405), + [ts_builtin_sym_end] = ACTIONS(4000), + [sym_identifier] = ACTIONS(4002), + [anon_sym_LF] = ACTIONS(4004), + [anon_sym_CR] = ACTIONS(4004), + [anon_sym_CR_LF] = ACTIONS(4004), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3991), - [anon_sym_const] = ACTIONS(3991), - [anon_sym_LPAREN] = ACTIONS(3991), - [anon_sym___global] = ACTIONS(3991), - [anon_sym_type] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3996), - [anon_sym_fn] = ACTIONS(3991), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(3991), - [anon_sym_struct] = ACTIONS(3991), - [anon_sym_union] = ACTIONS(3991), - [anon_sym_pub] = ACTIONS(3991), - [anon_sym_mut] = ACTIONS(3991), - [anon_sym_enum] = ACTIONS(3991), - [anon_sym_interface] = ACTIONS(3991), - [anon_sym_QMARK] = ACTIONS(3991), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_go] = ACTIONS(3991), - [anon_sym_spawn] = ACTIONS(3991), - [anon_sym_json_DOTdecode] = ACTIONS(3991), - [anon_sym_LBRACK2] = ACTIONS(3991), - [anon_sym_TILDE] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_DASH] = ACTIONS(3991), - [sym_none] = ACTIONS(3991), - [sym_true] = ACTIONS(3991), - [sym_false] = ACTIONS(3991), - [sym_nil] = ACTIONS(3991), - [anon_sym_if] = ACTIONS(3991), - [anon_sym_DOLLARif] = ACTIONS(3991), - [anon_sym_match] = ACTIONS(3991), - [anon_sym_select] = ACTIONS(3991), - [anon_sym_lock] = ACTIONS(3991), - [anon_sym_rlock] = ACTIONS(3991), - [anon_sym_unsafe] = ACTIONS(3991), - [anon_sym_sql] = ACTIONS(3991), - [sym_int_literal] = ACTIONS(3991), - [sym_float_literal] = ACTIONS(3991), - [sym_rune_literal] = ACTIONS(3991), - [sym_pseudo_compile_time_identifier] = ACTIONS(3991), - [anon_sym_shared] = ACTIONS(3991), - [anon_sym_map_LBRACK] = ACTIONS(3991), - [anon_sym_chan] = ACTIONS(3991), - [anon_sym_thread] = ACTIONS(3991), - [anon_sym_atomic] = ACTIONS(3991), - [anon_sym_assert] = ACTIONS(3991), - [anon_sym_defer] = ACTIONS(3991), - [anon_sym_goto] = ACTIONS(3991), - [anon_sym_break] = ACTIONS(3991), - [anon_sym_continue] = ACTIONS(3991), - [anon_sym_return] = ACTIONS(3991), - [anon_sym_DOLLARfor] = ACTIONS(3991), - [anon_sym_for] = ACTIONS(3991), - [anon_sym_POUND] = ACTIONS(3991), - [anon_sym_asm] = ACTIONS(3991), - [anon_sym_AT_LBRACK] = ACTIONS(3991), - [sym___double_quote] = ACTIONS(3991), - [sym___single_quote] = ACTIONS(3991), - [sym___c_double_quote] = ACTIONS(3991), - [sym___c_single_quote] = ACTIONS(3991), - [sym___r_double_quote] = ACTIONS(3991), - [sym___r_single_quote] = ACTIONS(3991), + [anon_sym_DOT] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_const] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym___global] = ACTIONS(4002), + [anon_sym_type] = ACTIONS(4002), + [anon_sym_PIPE] = ACTIONS(3988), + [anon_sym_fn] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4002), + [anon_sym_DASH] = ACTIONS(4002), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_struct] = ACTIONS(4002), + [anon_sym_union] = ACTIONS(4002), + [anon_sym_pub] = ACTIONS(4002), + [anon_sym_mut] = ACTIONS(4002), + [anon_sym_enum] = ACTIONS(4002), + [anon_sym_interface] = ACTIONS(4002), + [anon_sym_QMARK] = ACTIONS(4002), + [anon_sym_BANG] = ACTIONS(4002), + [anon_sym_go] = ACTIONS(4002), + [anon_sym_spawn] = ACTIONS(4002), + [anon_sym_json_DOTdecode] = ACTIONS(4002), + [anon_sym_LBRACK2] = ACTIONS(4002), + [anon_sym_TILDE] = ACTIONS(4002), + [anon_sym_CARET] = ACTIONS(4002), + [anon_sym_AMP] = ACTIONS(4002), + [anon_sym_LT_DASH] = ACTIONS(4002), + [sym_none] = ACTIONS(4002), + [sym_true] = ACTIONS(4002), + [sym_false] = ACTIONS(4002), + [sym_nil] = ACTIONS(4002), + [anon_sym_if] = ACTIONS(4002), + [anon_sym_DOLLARif] = ACTIONS(4002), + [anon_sym_match] = ACTIONS(4002), + [anon_sym_select] = ACTIONS(4002), + [anon_sym_lock] = ACTIONS(4002), + [anon_sym_rlock] = ACTIONS(4002), + [anon_sym_unsafe] = ACTIONS(4002), + [anon_sym_sql] = ACTIONS(4002), + [sym_int_literal] = ACTIONS(4002), + [sym_float_literal] = ACTIONS(4002), + [sym_rune_literal] = ACTIONS(4002), + [anon_sym_SQUOTE] = ACTIONS(4002), + [anon_sym_DQUOTE] = ACTIONS(4002), + [anon_sym_c_SQUOTE] = ACTIONS(4002), + [anon_sym_c_DQUOTE] = ACTIONS(4002), + [anon_sym_r_SQUOTE] = ACTIONS(4002), + [anon_sym_r_DQUOTE] = ACTIONS(4002), + [sym_pseudo_compile_time_identifier] = ACTIONS(4002), + [anon_sym_shared] = ACTIONS(4002), + [anon_sym_map_LBRACK] = ACTIONS(4002), + [anon_sym_chan] = ACTIONS(4002), + [anon_sym_thread] = ACTIONS(4002), + [anon_sym_atomic] = ACTIONS(4002), + [anon_sym_assert] = ACTIONS(4002), + [anon_sym_defer] = ACTIONS(4002), + [anon_sym_goto] = ACTIONS(4002), + [anon_sym_break] = ACTIONS(4002), + [anon_sym_continue] = ACTIONS(4002), + [anon_sym_return] = ACTIONS(4002), + [anon_sym_DOLLARfor] = ACTIONS(4002), + [anon_sym_for] = ACTIONS(4002), + [anon_sym_POUND] = ACTIONS(4002), + [anon_sym_asm] = ACTIONS(4002), + [anon_sym_AT_LBRACK] = ACTIONS(4002), }, [1408] = { [sym_line_comment] = STATE(1408), [sym_block_comment] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LF] = ACTIONS(2475), - [anon_sym_CR] = ACTIONS(2475), - [anon_sym_CR_LF] = ACTIONS(2475), + [aux_sym_strictly_expression_list_repeat1] = STATE(1410), + [ts_builtin_sym_end] = ACTIONS(4007), + [sym_identifier] = ACTIONS(4009), + [anon_sym_LF] = ACTIONS(4009), + [anon_sym_CR] = ACTIONS(4009), + [anon_sym_CR_LF] = ACTIONS(4009), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym___global] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2475), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_pub] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_interface] = ACTIONS(2475), - [anon_sym_QMARK] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_go] = ACTIONS(2475), - [anon_sym_spawn] = ACTIONS(2475), - [anon_sym_json_DOTdecode] = ACTIONS(2475), - [anon_sym_LBRACK2] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_LT_DASH] = ACTIONS(2475), - [sym_none] = ACTIONS(2475), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_nil] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_DOLLARif] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_lock] = ACTIONS(2475), - [anon_sym_rlock] = ACTIONS(2475), - [anon_sym_unsafe] = ACTIONS(2475), - [anon_sym_sql] = ACTIONS(2475), - [sym_int_literal] = ACTIONS(2475), - [sym_float_literal] = ACTIONS(2475), - [sym_rune_literal] = ACTIONS(2475), - [sym_pseudo_compile_time_identifier] = ACTIONS(2475), - [anon_sym_shared] = ACTIONS(2475), - [anon_sym_map_LBRACK] = ACTIONS(2475), - [anon_sym_chan] = ACTIONS(2475), - [anon_sym_thread] = ACTIONS(2475), - [anon_sym_atomic] = ACTIONS(2475), - [anon_sym_assert] = ACTIONS(2475), - [anon_sym_defer] = ACTIONS(2475), - [anon_sym_goto] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_DOLLARfor] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_POUND] = ACTIONS(2475), - [anon_sym_asm] = ACTIONS(2475), - [anon_sym_AT_LBRACK] = ACTIONS(2475), - [sym___double_quote] = ACTIONS(2475), - [sym___single_quote] = ACTIONS(2475), - [sym___c_double_quote] = ACTIONS(2475), - [sym___c_single_quote] = ACTIONS(2475), - [sym___r_double_quote] = ACTIONS(2475), - [sym___r_single_quote] = ACTIONS(2475), + [anon_sym_DOT] = ACTIONS(4009), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym___global] = ACTIONS(4009), + [anon_sym_type] = ACTIONS(4009), + [anon_sym_fn] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4009), + [anon_sym_DASH] = ACTIONS(4009), + [anon_sym_STAR] = ACTIONS(4009), + [anon_sym_struct] = ACTIONS(4009), + [anon_sym_union] = ACTIONS(4009), + [anon_sym_pub] = ACTIONS(4009), + [anon_sym_mut] = ACTIONS(4009), + [anon_sym_enum] = ACTIONS(4009), + [anon_sym_interface] = ACTIONS(4009), + [anon_sym_QMARK] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4009), + [anon_sym_go] = ACTIONS(4009), + [anon_sym_spawn] = ACTIONS(4009), + [anon_sym_json_DOTdecode] = ACTIONS(4009), + [anon_sym_LBRACK2] = ACTIONS(4009), + [anon_sym_TILDE] = ACTIONS(4009), + [anon_sym_CARET] = ACTIONS(4009), + [anon_sym_AMP] = ACTIONS(4009), + [anon_sym_LT_DASH] = ACTIONS(4009), + [sym_none] = ACTIONS(4009), + [sym_true] = ACTIONS(4009), + [sym_false] = ACTIONS(4009), + [sym_nil] = ACTIONS(4009), + [anon_sym_if] = ACTIONS(4009), + [anon_sym_DOLLARif] = ACTIONS(4009), + [anon_sym_match] = ACTIONS(4009), + [anon_sym_select] = ACTIONS(4009), + [anon_sym_lock] = ACTIONS(4009), + [anon_sym_rlock] = ACTIONS(4009), + [anon_sym_unsafe] = ACTIONS(4009), + [anon_sym_sql] = ACTIONS(4009), + [sym_int_literal] = ACTIONS(4009), + [sym_float_literal] = ACTIONS(4009), + [sym_rune_literal] = ACTIONS(4009), + [anon_sym_SQUOTE] = ACTIONS(4009), + [anon_sym_DQUOTE] = ACTIONS(4009), + [anon_sym_c_SQUOTE] = ACTIONS(4009), + [anon_sym_c_DQUOTE] = ACTIONS(4009), + [anon_sym_r_SQUOTE] = ACTIONS(4009), + [anon_sym_r_DQUOTE] = ACTIONS(4009), + [sym_pseudo_compile_time_identifier] = ACTIONS(4009), + [anon_sym_shared] = ACTIONS(4009), + [anon_sym_map_LBRACK] = ACTIONS(4009), + [anon_sym_chan] = ACTIONS(4009), + [anon_sym_thread] = ACTIONS(4009), + [anon_sym_atomic] = ACTIONS(4009), + [anon_sym_assert] = ACTIONS(4009), + [anon_sym_defer] = ACTIONS(4009), + [anon_sym_goto] = ACTIONS(4009), + [anon_sym_break] = ACTIONS(4009), + [anon_sym_continue] = ACTIONS(4009), + [anon_sym_return] = ACTIONS(4009), + [anon_sym_DOLLARfor] = ACTIONS(4009), + [anon_sym_for] = ACTIONS(4009), + [anon_sym_POUND] = ACTIONS(4009), + [anon_sym_asm] = ACTIONS(4009), + [anon_sym_AT_LBRACK] = ACTIONS(4009), }, [1409] = { [sym_line_comment] = STATE(1409), [sym_block_comment] = STATE(1409), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2345), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_RPAREN] = ACTIONS(625), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(627), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(625), - [anon_sym_AMP_CARET] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(625), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(625), - [anon_sym_POUND_LBRACK] = ACTIONS(625), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(625), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(625), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(625), - }, - [1410] = { - [sym_line_comment] = STATE(1410), - [sym_block_comment] = STATE(1410), - [aux_sym_strictly_expression_list_repeat1] = STATE(1405), - [ts_builtin_sym_end] = ACTIONS(3999), - [sym_identifier] = ACTIONS(4001), - [anon_sym_LF] = ACTIONS(4001), - [anon_sym_CR] = ACTIONS(4001), - [anon_sym_CR_LF] = ACTIONS(4001), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_LBRACE] = ACTIONS(4001), - [anon_sym_COMMA] = ACTIONS(3490), - [anon_sym_const] = ACTIONS(4001), - [anon_sym_LPAREN] = ACTIONS(4001), - [anon_sym___global] = ACTIONS(4001), - [anon_sym_type] = ACTIONS(4001), - [anon_sym_fn] = ACTIONS(4001), - [anon_sym_PLUS] = ACTIONS(4001), - [anon_sym_DASH] = ACTIONS(4001), - [anon_sym_STAR] = ACTIONS(4001), - [anon_sym_struct] = ACTIONS(4001), - [anon_sym_union] = ACTIONS(4001), - [anon_sym_pub] = ACTIONS(4001), - [anon_sym_mut] = ACTIONS(4001), - [anon_sym_enum] = ACTIONS(4001), - [anon_sym_interface] = ACTIONS(4001), - [anon_sym_QMARK] = ACTIONS(4001), - [anon_sym_BANG] = ACTIONS(4001), - [anon_sym_go] = ACTIONS(4001), - [anon_sym_spawn] = ACTIONS(4001), - [anon_sym_json_DOTdecode] = ACTIONS(4001), - [anon_sym_LBRACK2] = ACTIONS(4001), - [anon_sym_TILDE] = ACTIONS(4001), - [anon_sym_CARET] = ACTIONS(4001), - [anon_sym_AMP] = ACTIONS(4001), - [anon_sym_LT_DASH] = ACTIONS(4001), - [sym_none] = ACTIONS(4001), - [sym_true] = ACTIONS(4001), - [sym_false] = ACTIONS(4001), - [sym_nil] = ACTIONS(4001), - [anon_sym_if] = ACTIONS(4001), - [anon_sym_DOLLARif] = ACTIONS(4001), - [anon_sym_match] = ACTIONS(4001), - [anon_sym_select] = ACTIONS(4001), - [anon_sym_lock] = ACTIONS(4001), - [anon_sym_rlock] = ACTIONS(4001), - [anon_sym_unsafe] = ACTIONS(4001), - [anon_sym_sql] = ACTIONS(4001), - [sym_int_literal] = ACTIONS(4001), - [sym_float_literal] = ACTIONS(4001), - [sym_rune_literal] = ACTIONS(4001), - [sym_pseudo_compile_time_identifier] = ACTIONS(4001), - [anon_sym_shared] = ACTIONS(4001), - [anon_sym_map_LBRACK] = ACTIONS(4001), - [anon_sym_chan] = ACTIONS(4001), - [anon_sym_thread] = ACTIONS(4001), - [anon_sym_atomic] = ACTIONS(4001), - [anon_sym_assert] = ACTIONS(4001), - [anon_sym_defer] = ACTIONS(4001), - [anon_sym_goto] = ACTIONS(4001), - [anon_sym_break] = ACTIONS(4001), - [anon_sym_continue] = ACTIONS(4001), - [anon_sym_return] = ACTIONS(4001), - [anon_sym_DOLLARfor] = ACTIONS(4001), - [anon_sym_for] = ACTIONS(4001), - [anon_sym_POUND] = ACTIONS(4001), - [anon_sym_asm] = ACTIONS(4001), - [anon_sym_AT_LBRACK] = ACTIONS(4001), - [sym___double_quote] = ACTIONS(4001), - [sym___single_quote] = ACTIONS(4001), - [sym___c_double_quote] = ACTIONS(4001), - [sym___c_single_quote] = ACTIONS(4001), - [sym___r_double_quote] = ACTIONS(4001), - [sym___r_single_quote] = ACTIONS(4001), - }, - [1411] = { - [sym_line_comment] = STATE(1411), - [sym_block_comment] = STATE(1411), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2345), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2311), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), [anon_sym_LF] = ACTIONS(627), [anon_sym_CR] = ACTIONS(627), [anon_sym_CR_LF] = ACTIONS(627), @@ -174072,12 +173894,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(627), [anon_sym_DOT] = ACTIONS(627), [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(627), [anon_sym_RBRACE] = ACTIONS(627), [anon_sym_LPAREN] = ACTIONS(627), [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(611), [anon_sym_PLUS] = ACTIONS(627), [anon_sym_DASH] = ACTIONS(627), [anon_sym_STAR] = ACTIONS(627), @@ -174090,7 +173912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(627), [anon_sym_GT_EQ] = ACTIONS(627), [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(615), [anon_sym_PLUS_PLUS] = ACTIONS(627), [anon_sym_DASH_DASH] = ACTIONS(627), [anon_sym_QMARK] = ACTIONS(627), @@ -174111,401 +173933,478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(627), [anon_sym_in] = ACTIONS(627), [anon_sym_BANGin] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + }, + [1410] = { + [sym_line_comment] = STATE(1410), + [sym_block_comment] = STATE(1410), + [aux_sym_strictly_expression_list_repeat1] = STATE(1410), + [ts_builtin_sym_end] = ACTIONS(3534), + [sym_identifier] = ACTIONS(1759), + [anon_sym_LF] = ACTIONS(1759), + [anon_sym_CR] = ACTIONS(1759), + [anon_sym_CR_LF] = ACTIONS(1759), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_COMMA] = ACTIONS(4011), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym___global] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_fn] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1759), + [anon_sym_STAR] = ACTIONS(1759), + [anon_sym_struct] = ACTIONS(1759), + [anon_sym_union] = ACTIONS(1759), + [anon_sym_pub] = ACTIONS(1759), + [anon_sym_mut] = ACTIONS(1759), + [anon_sym_enum] = ACTIONS(1759), + [anon_sym_interface] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(1759), + [anon_sym_go] = ACTIONS(1759), + [anon_sym_spawn] = ACTIONS(1759), + [anon_sym_json_DOTdecode] = ACTIONS(1759), + [anon_sym_LBRACK2] = ACTIONS(1759), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_CARET] = ACTIONS(1759), + [anon_sym_AMP] = ACTIONS(1759), + [anon_sym_LT_DASH] = ACTIONS(1759), + [sym_none] = ACTIONS(1759), + [sym_true] = ACTIONS(1759), + [sym_false] = ACTIONS(1759), + [sym_nil] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_DOLLARif] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1759), + [anon_sym_select] = ACTIONS(1759), + [anon_sym_lock] = ACTIONS(1759), + [anon_sym_rlock] = ACTIONS(1759), + [anon_sym_unsafe] = ACTIONS(1759), + [anon_sym_sql] = ACTIONS(1759), + [sym_int_literal] = ACTIONS(1759), + [sym_float_literal] = ACTIONS(1759), + [sym_rune_literal] = ACTIONS(1759), + [anon_sym_SQUOTE] = ACTIONS(1759), + [anon_sym_DQUOTE] = ACTIONS(1759), + [anon_sym_c_SQUOTE] = ACTIONS(1759), + [anon_sym_c_DQUOTE] = ACTIONS(1759), + [anon_sym_r_SQUOTE] = ACTIONS(1759), + [anon_sym_r_DQUOTE] = ACTIONS(1759), + [sym_pseudo_compile_time_identifier] = ACTIONS(1759), + [anon_sym_shared] = ACTIONS(1759), + [anon_sym_map_LBRACK] = ACTIONS(1759), + [anon_sym_chan] = ACTIONS(1759), + [anon_sym_thread] = ACTIONS(1759), + [anon_sym_atomic] = ACTIONS(1759), + [anon_sym_assert] = ACTIONS(1759), + [anon_sym_defer] = ACTIONS(1759), + [anon_sym_goto] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_DOLLARfor] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_POUND] = ACTIONS(1759), + [anon_sym_asm] = ACTIONS(1759), + [anon_sym_AT_LBRACK] = ACTIONS(1759), + }, + [1411] = { + [sym_line_comment] = STATE(1411), + [sym_block_comment] = STATE(1411), + [ts_builtin_sym_end] = ACTIONS(2157), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LF] = ACTIONS(2159), + [anon_sym_CR] = ACTIONS(2159), + [anon_sym_CR_LF] = ACTIONS(2159), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym___global] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_PIPE] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(2159), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(2159), + [anon_sym_union] = ACTIONS(2159), + [anon_sym_pub] = ACTIONS(2159), + [anon_sym_mut] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [anon_sym_interface] = ACTIONS(2159), + [anon_sym_QMARK] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(2159), + [anon_sym_spawn] = ACTIONS(2159), + [anon_sym_json_DOTdecode] = ACTIONS(2159), + [anon_sym_LBRACK2] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_CARET] = ACTIONS(2159), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_LT_DASH] = ACTIONS(2159), + [sym_none] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_nil] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_DOLLARif] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_select] = ACTIONS(2159), + [anon_sym_lock] = ACTIONS(2159), + [anon_sym_rlock] = ACTIONS(2159), + [anon_sym_unsafe] = ACTIONS(2159), + [anon_sym_sql] = ACTIONS(2159), + [sym_int_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_rune_literal] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_c_SQUOTE] = ACTIONS(2159), + [anon_sym_c_DQUOTE] = ACTIONS(2159), + [anon_sym_r_SQUOTE] = ACTIONS(2159), + [anon_sym_r_DQUOTE] = ACTIONS(2159), + [sym_pseudo_compile_time_identifier] = ACTIONS(2159), + [anon_sym_shared] = ACTIONS(2159), + [anon_sym_map_LBRACK] = ACTIONS(2159), + [anon_sym_chan] = ACTIONS(2159), + [anon_sym_thread] = ACTIONS(2159), + [anon_sym_atomic] = ACTIONS(2159), + [anon_sym_assert] = ACTIONS(2159), + [anon_sym_defer] = ACTIONS(2159), + [anon_sym_goto] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_DOLLARfor] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_POUND] = ACTIONS(2159), + [anon_sym_asm] = ACTIONS(2159), + [anon_sym_AT_LBRACK] = ACTIONS(2159), }, [1412] = { [sym_line_comment] = STATE(1412), [sym_block_comment] = STATE(1412), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LF] = ACTIONS(2475), - [anon_sym_CR] = ACTIONS(2475), - [anon_sym_CR_LF] = ACTIONS(2475), + [ts_builtin_sym_end] = ACTIONS(2153), + [sym_identifier] = ACTIONS(2155), + [anon_sym_LF] = ACTIONS(2155), + [anon_sym_CR] = ACTIONS(2155), + [anon_sym_CR_LF] = ACTIONS(2155), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym___global] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2475), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_pub] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_interface] = ACTIONS(2475), - [anon_sym_QMARK] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_go] = ACTIONS(2475), - [anon_sym_spawn] = ACTIONS(2475), - [anon_sym_json_DOTdecode] = ACTIONS(2475), - [anon_sym_LBRACK2] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_LT_DASH] = ACTIONS(2475), - [sym_none] = ACTIONS(2475), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_nil] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_DOLLARif] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_lock] = ACTIONS(2475), - [anon_sym_rlock] = ACTIONS(2475), - [anon_sym_unsafe] = ACTIONS(2475), - [anon_sym_sql] = ACTIONS(2475), - [sym_int_literal] = ACTIONS(2475), - [sym_float_literal] = ACTIONS(2475), - [sym_rune_literal] = ACTIONS(2475), - [sym_pseudo_compile_time_identifier] = ACTIONS(2475), - [anon_sym_shared] = ACTIONS(2475), - [anon_sym_map_LBRACK] = ACTIONS(2475), - [anon_sym_chan] = ACTIONS(2475), - [anon_sym_thread] = ACTIONS(2475), - [anon_sym_atomic] = ACTIONS(2475), - [anon_sym_assert] = ACTIONS(2475), - [anon_sym_defer] = ACTIONS(2475), - [anon_sym_goto] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_DOLLARfor] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_POUND] = ACTIONS(2475), - [anon_sym_asm] = ACTIONS(2475), - [anon_sym_AT_LBRACK] = ACTIONS(2475), - [sym___double_quote] = ACTIONS(2475), - [sym___single_quote] = ACTIONS(2475), - [sym___c_double_quote] = ACTIONS(2475), - [sym___c_single_quote] = ACTIONS(2475), - [sym___r_double_quote] = ACTIONS(2475), - [sym___r_single_quote] = ACTIONS(2475), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym___global] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2155), + [anon_sym_PIPE] = ACTIONS(2155), + [anon_sym_fn] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2155), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_struct] = ACTIONS(2155), + [anon_sym_union] = ACTIONS(2155), + [anon_sym_pub] = ACTIONS(2155), + [anon_sym_mut] = ACTIONS(2155), + [anon_sym_enum] = ACTIONS(2155), + [anon_sym_interface] = ACTIONS(2155), + [anon_sym_QMARK] = ACTIONS(2155), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_go] = ACTIONS(2155), + [anon_sym_spawn] = ACTIONS(2155), + [anon_sym_json_DOTdecode] = ACTIONS(2155), + [anon_sym_LBRACK2] = ACTIONS(2155), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_CARET] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_LT_DASH] = ACTIONS(2155), + [sym_none] = ACTIONS(2155), + [sym_true] = ACTIONS(2155), + [sym_false] = ACTIONS(2155), + [sym_nil] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_DOLLARif] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_select] = ACTIONS(2155), + [anon_sym_lock] = ACTIONS(2155), + [anon_sym_rlock] = ACTIONS(2155), + [anon_sym_unsafe] = ACTIONS(2155), + [anon_sym_sql] = ACTIONS(2155), + [sym_int_literal] = ACTIONS(2155), + [sym_float_literal] = ACTIONS(2155), + [sym_rune_literal] = ACTIONS(2155), + [anon_sym_SQUOTE] = ACTIONS(2155), + [anon_sym_DQUOTE] = ACTIONS(2155), + [anon_sym_c_SQUOTE] = ACTIONS(2155), + [anon_sym_c_DQUOTE] = ACTIONS(2155), + [anon_sym_r_SQUOTE] = ACTIONS(2155), + [anon_sym_r_DQUOTE] = ACTIONS(2155), + [sym_pseudo_compile_time_identifier] = ACTIONS(2155), + [anon_sym_shared] = ACTIONS(2155), + [anon_sym_map_LBRACK] = ACTIONS(2155), + [anon_sym_chan] = ACTIONS(2155), + [anon_sym_thread] = ACTIONS(2155), + [anon_sym_atomic] = ACTIONS(2155), + [anon_sym_assert] = ACTIONS(2155), + [anon_sym_defer] = ACTIONS(2155), + [anon_sym_goto] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_DOLLARfor] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_POUND] = ACTIONS(2155), + [anon_sym_asm] = ACTIONS(2155), + [anon_sym_AT_LBRACK] = ACTIONS(2155), }, [1413] = { [sym_line_comment] = STATE(1413), [sym_block_comment] = STATE(1413), - [aux_sym_strictly_expression_list_repeat1] = STATE(1410), - [ts_builtin_sym_end] = ACTIONS(3484), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1757), - [anon_sym_CR] = ACTIONS(1757), - [anon_sym_CR_LF] = ACTIONS(1757), + [aux_sym_strictly_expression_list_repeat1] = STATE(1408), + [ts_builtin_sym_end] = ACTIONS(3488), + [sym_identifier] = ACTIONS(1721), + [anon_sym_LF] = ACTIONS(1721), + [anon_sym_CR] = ACTIONS(1721), + [anon_sym_CR_LF] = ACTIONS(1721), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_COMMA] = ACTIONS(3490), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym___global] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_fn] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_STAR] = ACTIONS(1757), - [anon_sym_struct] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_pub] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [anon_sym_interface] = ACTIONS(1757), - [anon_sym_QMARK] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_go] = ACTIONS(1757), - [anon_sym_spawn] = ACTIONS(1757), - [anon_sym_json_DOTdecode] = ACTIONS(1757), - [anon_sym_LBRACK2] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_LT_DASH] = ACTIONS(1757), - [sym_none] = ACTIONS(1757), - [sym_true] = ACTIONS(1757), - [sym_false] = ACTIONS(1757), - [sym_nil] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_DOLLARif] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_select] = ACTIONS(1757), - [anon_sym_lock] = ACTIONS(1757), - [anon_sym_rlock] = ACTIONS(1757), - [anon_sym_unsafe] = ACTIONS(1757), - [anon_sym_sql] = ACTIONS(1757), - [sym_int_literal] = ACTIONS(1757), - [sym_float_literal] = ACTIONS(1757), - [sym_rune_literal] = ACTIONS(1757), - [sym_pseudo_compile_time_identifier] = ACTIONS(1757), - [anon_sym_shared] = ACTIONS(1757), - [anon_sym_map_LBRACK] = ACTIONS(1757), - [anon_sym_chan] = ACTIONS(1757), - [anon_sym_thread] = ACTIONS(1757), - [anon_sym_atomic] = ACTIONS(1757), - [anon_sym_assert] = ACTIONS(1757), - [anon_sym_defer] = ACTIONS(1757), - [anon_sym_goto] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_DOLLARfor] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(1757), - [anon_sym_asm] = ACTIONS(1757), - [anon_sym_AT_LBRACK] = ACTIONS(1757), - [sym___double_quote] = ACTIONS(1757), - [sym___single_quote] = ACTIONS(1757), - [sym___c_double_quote] = ACTIONS(1757), - [sym___c_single_quote] = ACTIONS(1757), - [sym___r_double_quote] = ACTIONS(1757), - [sym___r_single_quote] = ACTIONS(1757), + [anon_sym_DOT] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1721), + [anon_sym_COMMA] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym___global] = ACTIONS(1721), + [anon_sym_type] = ACTIONS(1721), + [anon_sym_fn] = ACTIONS(1721), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_STAR] = ACTIONS(1721), + [anon_sym_struct] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_pub] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_enum] = ACTIONS(1721), + [anon_sym_interface] = ACTIONS(1721), + [anon_sym_QMARK] = ACTIONS(1721), + [anon_sym_BANG] = ACTIONS(1721), + [anon_sym_go] = ACTIONS(1721), + [anon_sym_spawn] = ACTIONS(1721), + [anon_sym_json_DOTdecode] = ACTIONS(1721), + [anon_sym_LBRACK2] = ACTIONS(1721), + [anon_sym_TILDE] = ACTIONS(1721), + [anon_sym_CARET] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1721), + [anon_sym_LT_DASH] = ACTIONS(1721), + [sym_none] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_nil] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_DOLLARif] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_select] = ACTIONS(1721), + [anon_sym_lock] = ACTIONS(1721), + [anon_sym_rlock] = ACTIONS(1721), + [anon_sym_unsafe] = ACTIONS(1721), + [anon_sym_sql] = ACTIONS(1721), + [sym_int_literal] = ACTIONS(1721), + [sym_float_literal] = ACTIONS(1721), + [sym_rune_literal] = ACTIONS(1721), + [anon_sym_SQUOTE] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [anon_sym_c_SQUOTE] = ACTIONS(1721), + [anon_sym_c_DQUOTE] = ACTIONS(1721), + [anon_sym_r_SQUOTE] = ACTIONS(1721), + [anon_sym_r_DQUOTE] = ACTIONS(1721), + [sym_pseudo_compile_time_identifier] = ACTIONS(1721), + [anon_sym_shared] = ACTIONS(1721), + [anon_sym_map_LBRACK] = ACTIONS(1721), + [anon_sym_chan] = ACTIONS(1721), + [anon_sym_thread] = ACTIONS(1721), + [anon_sym_atomic] = ACTIONS(1721), + [anon_sym_assert] = ACTIONS(1721), + [anon_sym_defer] = ACTIONS(1721), + [anon_sym_goto] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_DOLLARfor] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(1721), + [anon_sym_asm] = ACTIONS(1721), + [anon_sym_AT_LBRACK] = ACTIONS(1721), }, [1414] = { [sym_line_comment] = STATE(1414), [sym_block_comment] = STATE(1414), - [aux_sym__type_union_list_repeat1] = STATE(1407), - [ts_builtin_sym_end] = ACTIONS(4003), - [sym_identifier] = ACTIONS(4005), - [anon_sym_LF] = ACTIONS(4007), - [anon_sym_CR] = ACTIONS(4007), - [anon_sym_CR_LF] = ACTIONS(4007), + [ts_builtin_sym_end] = ACTIONS(2157), + [sym_identifier] = ACTIONS(2159), + [anon_sym_LF] = ACTIONS(2159), + [anon_sym_CR] = ACTIONS(2159), + [anon_sym_CR_LF] = ACTIONS(2159), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_LBRACE] = ACTIONS(4005), - [anon_sym_const] = ACTIONS(4005), - [anon_sym_LPAREN] = ACTIONS(4005), - [anon_sym___global] = ACTIONS(4005), - [anon_sym_type] = ACTIONS(4005), - [anon_sym_PIPE] = ACTIONS(3987), - [anon_sym_fn] = ACTIONS(4005), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4005), - [anon_sym_struct] = ACTIONS(4005), - [anon_sym_union] = ACTIONS(4005), - [anon_sym_pub] = ACTIONS(4005), - [anon_sym_mut] = ACTIONS(4005), - [anon_sym_enum] = ACTIONS(4005), - [anon_sym_interface] = ACTIONS(4005), - [anon_sym_QMARK] = ACTIONS(4005), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_go] = ACTIONS(4005), - [anon_sym_spawn] = ACTIONS(4005), - [anon_sym_json_DOTdecode] = ACTIONS(4005), - [anon_sym_LBRACK2] = ACTIONS(4005), - [anon_sym_TILDE] = ACTIONS(4005), - [anon_sym_CARET] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4005), - [anon_sym_LT_DASH] = ACTIONS(4005), - [sym_none] = ACTIONS(4005), - [sym_true] = ACTIONS(4005), - [sym_false] = ACTIONS(4005), - [sym_nil] = ACTIONS(4005), - [anon_sym_if] = ACTIONS(4005), - [anon_sym_DOLLARif] = ACTIONS(4005), - [anon_sym_match] = ACTIONS(4005), - [anon_sym_select] = ACTIONS(4005), - [anon_sym_lock] = ACTIONS(4005), - [anon_sym_rlock] = ACTIONS(4005), - [anon_sym_unsafe] = ACTIONS(4005), - [anon_sym_sql] = ACTIONS(4005), - [sym_int_literal] = ACTIONS(4005), - [sym_float_literal] = ACTIONS(4005), - [sym_rune_literal] = ACTIONS(4005), - [sym_pseudo_compile_time_identifier] = ACTIONS(4005), - [anon_sym_shared] = ACTIONS(4005), - [anon_sym_map_LBRACK] = ACTIONS(4005), - [anon_sym_chan] = ACTIONS(4005), - [anon_sym_thread] = ACTIONS(4005), - [anon_sym_atomic] = ACTIONS(4005), - [anon_sym_assert] = ACTIONS(4005), - [anon_sym_defer] = ACTIONS(4005), - [anon_sym_goto] = ACTIONS(4005), - [anon_sym_break] = ACTIONS(4005), - [anon_sym_continue] = ACTIONS(4005), - [anon_sym_return] = ACTIONS(4005), - [anon_sym_DOLLARfor] = ACTIONS(4005), - [anon_sym_for] = ACTIONS(4005), - [anon_sym_POUND] = ACTIONS(4005), - [anon_sym_asm] = ACTIONS(4005), - [anon_sym_AT_LBRACK] = ACTIONS(4005), - [sym___double_quote] = ACTIONS(4005), - [sym___single_quote] = ACTIONS(4005), - [sym___c_double_quote] = ACTIONS(4005), - [sym___c_single_quote] = ACTIONS(4005), - [sym___r_double_quote] = ACTIONS(4005), - [sym___r_single_quote] = ACTIONS(4005), + [anon_sym_DOT] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym___global] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_PIPE] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(2159), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(2159), + [anon_sym_union] = ACTIONS(2159), + [anon_sym_pub] = ACTIONS(2159), + [anon_sym_mut] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [anon_sym_interface] = ACTIONS(2159), + [anon_sym_QMARK] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_go] = ACTIONS(2159), + [anon_sym_spawn] = ACTIONS(2159), + [anon_sym_json_DOTdecode] = ACTIONS(2159), + [anon_sym_LBRACK2] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_CARET] = ACTIONS(2159), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_LT_DASH] = ACTIONS(2159), + [sym_none] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_nil] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_DOLLARif] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_select] = ACTIONS(2159), + [anon_sym_lock] = ACTIONS(2159), + [anon_sym_rlock] = ACTIONS(2159), + [anon_sym_unsafe] = ACTIONS(2159), + [anon_sym_sql] = ACTIONS(2159), + [sym_int_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_rune_literal] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2159), + [anon_sym_c_SQUOTE] = ACTIONS(2159), + [anon_sym_c_DQUOTE] = ACTIONS(2159), + [anon_sym_r_SQUOTE] = ACTIONS(2159), + [anon_sym_r_DQUOTE] = ACTIONS(2159), + [sym_pseudo_compile_time_identifier] = ACTIONS(2159), + [anon_sym_shared] = ACTIONS(2159), + [anon_sym_map_LBRACK] = ACTIONS(2159), + [anon_sym_chan] = ACTIONS(2159), + [anon_sym_thread] = ACTIONS(2159), + [anon_sym_atomic] = ACTIONS(2159), + [anon_sym_assert] = ACTIONS(2159), + [anon_sym_defer] = ACTIONS(2159), + [anon_sym_goto] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_DOLLARfor] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_POUND] = ACTIONS(2159), + [anon_sym_asm] = ACTIONS(2159), + [anon_sym_AT_LBRACK] = ACTIONS(2159), }, [1415] = { [sym_line_comment] = STATE(1415), [sym_block_comment] = STATE(1415), - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_const] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym___global] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_union] = ACTIONS(2772), - [anon_sym_pub] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_interface] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [sym_pseudo_compile_time_identifier] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [anon_sym_assert] = ACTIONS(2772), - [anon_sym_defer] = ACTIONS(2772), - [anon_sym_goto] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_DOLLARfor] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2772), - [anon_sym_asm] = ACTIONS(2772), - [anon_sym_AT_LBRACK] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2311), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_as] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_RPAREN] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(625), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_RBRACK] = ACTIONS(625), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_COLON] = ACTIONS(625), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_LBRACK2] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_LT_LT] = ACTIONS(625), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_GT_GT_GT] = ACTIONS(625), + [anon_sym_AMP_CARET] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [anon_sym_or] = ACTIONS(627), + [anon_sym_QMARK_DOT] = ACTIONS(625), + [anon_sym_POUND_LBRACK] = ACTIONS(625), + [anon_sym_is] = ACTIONS(627), + [anon_sym_BANGis] = ACTIONS(625), + [anon_sym_in] = ACTIONS(627), + [anon_sym_BANGin] = ACTIONS(625), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(625), }, [1416] = { [sym_line_comment] = STATE(1416), [sym_block_comment] = STATE(1416), - [aux_sym_strictly_expression_list_repeat1] = STATE(1405), - [ts_builtin_sym_end] = ACTIONS(4010), - [sym_identifier] = ACTIONS(4012), - [anon_sym_LF] = ACTIONS(4012), - [anon_sym_CR] = ACTIONS(4012), - [anon_sym_CR_LF] = ACTIONS(4012), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4012), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_COMMA] = ACTIONS(3490), - [anon_sym_const] = ACTIONS(4012), - [anon_sym_LPAREN] = ACTIONS(4012), - [anon_sym___global] = ACTIONS(4012), - [anon_sym_type] = ACTIONS(4012), - [anon_sym_fn] = ACTIONS(4012), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4012), - [anon_sym_struct] = ACTIONS(4012), - [anon_sym_union] = ACTIONS(4012), - [anon_sym_pub] = ACTIONS(4012), - [anon_sym_mut] = ACTIONS(4012), - [anon_sym_enum] = ACTIONS(4012), - [anon_sym_interface] = ACTIONS(4012), - [anon_sym_QMARK] = ACTIONS(4012), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_go] = ACTIONS(4012), - [anon_sym_spawn] = ACTIONS(4012), - [anon_sym_json_DOTdecode] = ACTIONS(4012), - [anon_sym_LBRACK2] = ACTIONS(4012), - [anon_sym_TILDE] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_DASH] = ACTIONS(4012), - [sym_none] = ACTIONS(4012), - [sym_true] = ACTIONS(4012), - [sym_false] = ACTIONS(4012), - [sym_nil] = ACTIONS(4012), - [anon_sym_if] = ACTIONS(4012), - [anon_sym_DOLLARif] = ACTIONS(4012), - [anon_sym_match] = ACTIONS(4012), - [anon_sym_select] = ACTIONS(4012), - [anon_sym_lock] = ACTIONS(4012), - [anon_sym_rlock] = ACTIONS(4012), - [anon_sym_unsafe] = ACTIONS(4012), - [anon_sym_sql] = ACTIONS(4012), - [sym_int_literal] = ACTIONS(4012), - [sym_float_literal] = ACTIONS(4012), - [sym_rune_literal] = ACTIONS(4012), - [sym_pseudo_compile_time_identifier] = ACTIONS(4012), - [anon_sym_shared] = ACTIONS(4012), - [anon_sym_map_LBRACK] = ACTIONS(4012), - [anon_sym_chan] = ACTIONS(4012), - [anon_sym_thread] = ACTIONS(4012), - [anon_sym_atomic] = ACTIONS(4012), - [anon_sym_assert] = ACTIONS(4012), - [anon_sym_defer] = ACTIONS(4012), - [anon_sym_goto] = ACTIONS(4012), - [anon_sym_break] = ACTIONS(4012), - [anon_sym_continue] = ACTIONS(4012), - [anon_sym_return] = ACTIONS(4012), - [anon_sym_DOLLARfor] = ACTIONS(4012), - [anon_sym_for] = ACTIONS(4012), - [anon_sym_POUND] = ACTIONS(4012), - [anon_sym_asm] = ACTIONS(4012), - [anon_sym_AT_LBRACK] = ACTIONS(4012), - [sym___double_quote] = ACTIONS(4012), - [sym___single_quote] = ACTIONS(4012), - [sym___c_double_quote] = ACTIONS(4012), - [sym___c_single_quote] = ACTIONS(4012), - [sym___r_double_quote] = ACTIONS(4012), - [sym___r_single_quote] = ACTIONS(4012), - }, - [1417] = { - [sym_line_comment] = STATE(1417), - [sym_block_comment] = STATE(1417), - [sym_block] = STATE(1571), + [aux_sym_strictly_expression_list_repeat1] = STATE(1410), [ts_builtin_sym_end] = ACTIONS(4014), [sym_identifier] = ACTIONS(4016), [anon_sym_LF] = ACTIONS(4016), @@ -174514,7 +174413,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_LBRACE] = ACTIONS(4016), + [anon_sym_COMMA] = ACTIONS(3494), [anon_sym_const] = ACTIONS(4016), [anon_sym_LPAREN] = ACTIONS(4016), [anon_sym___global] = ACTIONS(4016), @@ -174554,6 +174454,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4016), [sym_float_literal] = ACTIONS(4016), [sym_rune_literal] = ACTIONS(4016), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_DQUOTE] = ACTIONS(4016), + [anon_sym_c_SQUOTE] = ACTIONS(4016), + [anon_sym_c_DQUOTE] = ACTIONS(4016), + [anon_sym_r_SQUOTE] = ACTIONS(4016), + [anon_sym_r_DQUOTE] = ACTIONS(4016), [sym_pseudo_compile_time_identifier] = ACTIONS(4016), [anon_sym_shared] = ACTIONS(4016), [anon_sym_map_LBRACK] = ACTIONS(4016), @@ -174571,169 +174477,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4016), [anon_sym_asm] = ACTIONS(4016), [anon_sym_AT_LBRACK] = ACTIONS(4016), - [sym___double_quote] = ACTIONS(4016), - [sym___single_quote] = ACTIONS(4016), - [sym___c_double_quote] = ACTIONS(4016), - [sym___c_single_quote] = ACTIONS(4016), - [sym___r_double_quote] = ACTIONS(4016), - [sym___r_single_quote] = ACTIONS(4016), - }, - [1418] = { - [sym_line_comment] = STATE(1418), - [sym_block_comment] = STATE(1418), - [ts_builtin_sym_end] = ACTIONS(3060), - [sym_identifier] = ACTIONS(3062), - [anon_sym_LF] = ACTIONS(3062), - [anon_sym_CR] = ACTIONS(3062), - [anon_sym_CR_LF] = ACTIONS(3062), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3062), - [anon_sym_const] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3062), - [anon_sym___global] = ACTIONS(3062), - [anon_sym_type] = ACTIONS(3062), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_fn] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_struct] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(3062), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_mut] = ACTIONS(3062), - [anon_sym_enum] = ACTIONS(3062), - [anon_sym_interface] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_go] = ACTIONS(3062), - [anon_sym_spawn] = ACTIONS(3062), - [anon_sym_json_DOTdecode] = ACTIONS(3062), - [anon_sym_LBRACK2] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3062), - [anon_sym_LT_DASH] = ACTIONS(3062), - [sym_none] = ACTIONS(3062), - [sym_true] = ACTIONS(3062), - [sym_false] = ACTIONS(3062), - [sym_nil] = ACTIONS(3062), - [anon_sym_if] = ACTIONS(3062), - [anon_sym_DOLLARif] = ACTIONS(3062), - [anon_sym_match] = ACTIONS(3062), - [anon_sym_select] = ACTIONS(3062), - [anon_sym_lock] = ACTIONS(3062), - [anon_sym_rlock] = ACTIONS(3062), - [anon_sym_unsafe] = ACTIONS(3062), - [anon_sym_sql] = ACTIONS(3062), - [sym_int_literal] = ACTIONS(3062), - [sym_float_literal] = ACTIONS(3062), - [sym_rune_literal] = ACTIONS(3062), - [sym_pseudo_compile_time_identifier] = ACTIONS(3062), - [anon_sym_shared] = ACTIONS(3062), - [anon_sym_map_LBRACK] = ACTIONS(3062), - [anon_sym_chan] = ACTIONS(3062), - [anon_sym_thread] = ACTIONS(3062), - [anon_sym_atomic] = ACTIONS(3062), - [anon_sym_assert] = ACTIONS(3062), - [anon_sym_defer] = ACTIONS(3062), - [anon_sym_goto] = ACTIONS(3062), - [anon_sym_break] = ACTIONS(3062), - [anon_sym_continue] = ACTIONS(3062), - [anon_sym_return] = ACTIONS(3062), - [anon_sym_DOLLARfor] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3062), - [anon_sym_POUND] = ACTIONS(3062), - [anon_sym_asm] = ACTIONS(3062), - [anon_sym_AT_LBRACK] = ACTIONS(3062), - [sym___double_quote] = ACTIONS(3062), - [sym___single_quote] = ACTIONS(3062), - [sym___c_double_quote] = ACTIONS(3062), - [sym___c_single_quote] = ACTIONS(3062), - [sym___r_double_quote] = ACTIONS(3062), - [sym___r_single_quote] = ACTIONS(3062), }, - [1419] = { - [sym_line_comment] = STATE(1419), - [sym_block_comment] = STATE(1419), - [sym_block] = STATE(1519), - [ts_builtin_sym_end] = ACTIONS(4020), - [sym_identifier] = ACTIONS(4022), - [anon_sym_LF] = ACTIONS(4022), - [anon_sym_CR] = ACTIONS(4022), - [anon_sym_CR_LF] = ACTIONS(4022), + [1417] = { + [sym_line_comment] = STATE(1417), + [sym_block_comment] = STATE(1417), + [sym_block] = STATE(1512), + [ts_builtin_sym_end] = ACTIONS(4018), + [sym_identifier] = ACTIONS(4020), + [anon_sym_LF] = ACTIONS(4020), + [anon_sym_CR] = ACTIONS(4020), + [anon_sym_CR_LF] = ACTIONS(4020), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4022), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4022), - [anon_sym_LPAREN] = ACTIONS(4022), - [anon_sym___global] = ACTIONS(4022), - [anon_sym_type] = ACTIONS(4022), - [anon_sym_fn] = ACTIONS(4022), - [anon_sym_PLUS] = ACTIONS(4022), - [anon_sym_DASH] = ACTIONS(4022), - [anon_sym_STAR] = ACTIONS(4022), - [anon_sym_struct] = ACTIONS(4022), - [anon_sym_union] = ACTIONS(4022), - [anon_sym_pub] = ACTIONS(4022), - [anon_sym_mut] = ACTIONS(4022), - [anon_sym_enum] = ACTIONS(4022), - [anon_sym_interface] = ACTIONS(4022), - [anon_sym_QMARK] = ACTIONS(4022), - [anon_sym_BANG] = ACTIONS(4022), - [anon_sym_go] = ACTIONS(4022), - [anon_sym_spawn] = ACTIONS(4022), - [anon_sym_json_DOTdecode] = ACTIONS(4022), - [anon_sym_LBRACK2] = ACTIONS(4022), - [anon_sym_TILDE] = ACTIONS(4022), - [anon_sym_CARET] = ACTIONS(4022), - [anon_sym_AMP] = ACTIONS(4022), - [anon_sym_LT_DASH] = ACTIONS(4022), - [sym_none] = ACTIONS(4022), - [sym_true] = ACTIONS(4022), - [sym_false] = ACTIONS(4022), - [sym_nil] = ACTIONS(4022), - [anon_sym_if] = ACTIONS(4022), - [anon_sym_DOLLARif] = ACTIONS(4022), - [anon_sym_match] = ACTIONS(4022), - [anon_sym_select] = ACTIONS(4022), - [anon_sym_lock] = ACTIONS(4022), - [anon_sym_rlock] = ACTIONS(4022), - [anon_sym_unsafe] = ACTIONS(4022), - [anon_sym_sql] = ACTIONS(4022), - [sym_int_literal] = ACTIONS(4022), - [sym_float_literal] = ACTIONS(4022), - [sym_rune_literal] = ACTIONS(4022), - [sym_pseudo_compile_time_identifier] = ACTIONS(4022), - [anon_sym_shared] = ACTIONS(4022), - [anon_sym_map_LBRACK] = ACTIONS(4022), - [anon_sym_chan] = ACTIONS(4022), - [anon_sym_thread] = ACTIONS(4022), - [anon_sym_atomic] = ACTIONS(4022), - [anon_sym_assert] = ACTIONS(4022), - [anon_sym_defer] = ACTIONS(4022), - [anon_sym_goto] = ACTIONS(4022), - [anon_sym_break] = ACTIONS(4022), - [anon_sym_continue] = ACTIONS(4022), - [anon_sym_return] = ACTIONS(4022), - [anon_sym_DOLLARfor] = ACTIONS(4022), - [anon_sym_for] = ACTIONS(4022), - [anon_sym_POUND] = ACTIONS(4022), - [anon_sym_asm] = ACTIONS(4022), - [anon_sym_AT_LBRACK] = ACTIONS(4022), - [sym___double_quote] = ACTIONS(4022), - [sym___single_quote] = ACTIONS(4022), - [sym___c_double_quote] = ACTIONS(4022), - [sym___c_single_quote] = ACTIONS(4022), - [sym___r_double_quote] = ACTIONS(4022), - [sym___r_single_quote] = ACTIONS(4022), + [anon_sym_DOT] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4020), + [anon_sym_LPAREN] = ACTIONS(4020), + [anon_sym___global] = ACTIONS(4020), + [anon_sym_type] = ACTIONS(4020), + [anon_sym_fn] = ACTIONS(4020), + [anon_sym_PLUS] = ACTIONS(4020), + [anon_sym_DASH] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4020), + [anon_sym_struct] = ACTIONS(4020), + [anon_sym_union] = ACTIONS(4020), + [anon_sym_pub] = ACTIONS(4020), + [anon_sym_mut] = ACTIONS(4020), + [anon_sym_enum] = ACTIONS(4020), + [anon_sym_interface] = ACTIONS(4020), + [anon_sym_QMARK] = ACTIONS(4020), + [anon_sym_BANG] = ACTIONS(4020), + [anon_sym_go] = ACTIONS(4020), + [anon_sym_spawn] = ACTIONS(4020), + [anon_sym_json_DOTdecode] = ACTIONS(4020), + [anon_sym_LBRACK2] = ACTIONS(4020), + [anon_sym_TILDE] = ACTIONS(4020), + [anon_sym_CARET] = ACTIONS(4020), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_LT_DASH] = ACTIONS(4020), + [sym_none] = ACTIONS(4020), + [sym_true] = ACTIONS(4020), + [sym_false] = ACTIONS(4020), + [sym_nil] = ACTIONS(4020), + [anon_sym_if] = ACTIONS(4020), + [anon_sym_DOLLARif] = ACTIONS(4020), + [anon_sym_match] = ACTIONS(4020), + [anon_sym_select] = ACTIONS(4020), + [anon_sym_lock] = ACTIONS(4020), + [anon_sym_rlock] = ACTIONS(4020), + [anon_sym_unsafe] = ACTIONS(4020), + [anon_sym_sql] = ACTIONS(4020), + [sym_int_literal] = ACTIONS(4020), + [sym_float_literal] = ACTIONS(4020), + [sym_rune_literal] = ACTIONS(4020), + [anon_sym_SQUOTE] = ACTIONS(4020), + [anon_sym_DQUOTE] = ACTIONS(4020), + [anon_sym_c_SQUOTE] = ACTIONS(4020), + [anon_sym_c_DQUOTE] = ACTIONS(4020), + [anon_sym_r_SQUOTE] = ACTIONS(4020), + [anon_sym_r_DQUOTE] = ACTIONS(4020), + [sym_pseudo_compile_time_identifier] = ACTIONS(4020), + [anon_sym_shared] = ACTIONS(4020), + [anon_sym_map_LBRACK] = ACTIONS(4020), + [anon_sym_chan] = ACTIONS(4020), + [anon_sym_thread] = ACTIONS(4020), + [anon_sym_atomic] = ACTIONS(4020), + [anon_sym_assert] = ACTIONS(4020), + [anon_sym_defer] = ACTIONS(4020), + [anon_sym_goto] = ACTIONS(4020), + [anon_sym_break] = ACTIONS(4020), + [anon_sym_continue] = ACTIONS(4020), + [anon_sym_return] = ACTIONS(4020), + [anon_sym_DOLLARfor] = ACTIONS(4020), + [anon_sym_for] = ACTIONS(4020), + [anon_sym_POUND] = ACTIONS(4020), + [anon_sym_asm] = ACTIONS(4020), + [anon_sym_AT_LBRACK] = ACTIONS(4020), }, - [1420] = { - [sym_line_comment] = STATE(1420), - [sym_block_comment] = STATE(1420), - [sym_block] = STATE(1520), + [1418] = { + [sym_line_comment] = STATE(1418), + [sym_block_comment] = STATE(1418), + [sym_block] = STATE(1546), [ts_builtin_sym_end] = ACTIONS(4024), [sym_identifier] = ACTIONS(4026), [anon_sym_LF] = ACTIONS(4026), @@ -174742,7 +174566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4026), - [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_LBRACE] = ACTIONS(4022), [anon_sym_const] = ACTIONS(4026), [anon_sym_LPAREN] = ACTIONS(4026), [anon_sym___global] = ACTIONS(4026), @@ -174782,6 +174606,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4026), [sym_float_literal] = ACTIONS(4026), [sym_rune_literal] = ACTIONS(4026), + [anon_sym_SQUOTE] = ACTIONS(4026), + [anon_sym_DQUOTE] = ACTIONS(4026), + [anon_sym_c_SQUOTE] = ACTIONS(4026), + [anon_sym_c_DQUOTE] = ACTIONS(4026), + [anon_sym_r_SQUOTE] = ACTIONS(4026), + [anon_sym_r_DQUOTE] = ACTIONS(4026), [sym_pseudo_compile_time_identifier] = ACTIONS(4026), [anon_sym_shared] = ACTIONS(4026), [anon_sym_map_LBRACK] = ACTIONS(4026), @@ -174799,17 +174629,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4026), [anon_sym_asm] = ACTIONS(4026), [anon_sym_AT_LBRACK] = ACTIONS(4026), - [sym___double_quote] = ACTIONS(4026), - [sym___single_quote] = ACTIONS(4026), - [sym___c_double_quote] = ACTIONS(4026), - [sym___c_single_quote] = ACTIONS(4026), - [sym___r_double_quote] = ACTIONS(4026), - [sym___r_single_quote] = ACTIONS(4026), + }, + [1419] = { + [sym_line_comment] = STATE(1419), + [sym_block_comment] = STATE(1419), + [ts_builtin_sym_end] = ACTIONS(2243), + [sym_identifier] = ACTIONS(2245), + [anon_sym_LF] = ACTIONS(2245), + [anon_sym_CR] = ACTIONS(2245), + [anon_sym_CR_LF] = ACTIONS(2245), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym___global] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_fn] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_struct] = ACTIONS(2245), + [anon_sym_union] = ACTIONS(2245), + [anon_sym_pub] = ACTIONS(2245), + [anon_sym_mut] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_interface] = ACTIONS(2245), + [anon_sym_QMARK] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_go] = ACTIONS(2245), + [anon_sym_spawn] = ACTIONS(2245), + [anon_sym_json_DOTdecode] = ACTIONS(2245), + [anon_sym_LBRACK2] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_CARET] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_LT_DASH] = ACTIONS(2245), + [sym_none] = ACTIONS(2245), + [sym_true] = ACTIONS(2245), + [sym_false] = ACTIONS(2245), + [sym_nil] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_DOLLARif] = ACTIONS(2245), + [anon_sym_match] = ACTIONS(2245), + [anon_sym_select] = ACTIONS(2245), + [anon_sym_lock] = ACTIONS(2245), + [anon_sym_rlock] = ACTIONS(2245), + [anon_sym_unsafe] = ACTIONS(2245), + [anon_sym_sql] = ACTIONS(2245), + [sym_int_literal] = ACTIONS(2245), + [sym_float_literal] = ACTIONS(2245), + [sym_rune_literal] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(2245), + [anon_sym_c_SQUOTE] = ACTIONS(2245), + [anon_sym_c_DQUOTE] = ACTIONS(2245), + [anon_sym_r_SQUOTE] = ACTIONS(2245), + [anon_sym_r_DQUOTE] = ACTIONS(2245), + [sym_pseudo_compile_time_identifier] = ACTIONS(2245), + [anon_sym_shared] = ACTIONS(2245), + [anon_sym_map_LBRACK] = ACTIONS(2245), + [anon_sym_chan] = ACTIONS(2245), + [anon_sym_thread] = ACTIONS(2245), + [anon_sym_atomic] = ACTIONS(2245), + [anon_sym_assert] = ACTIONS(2245), + [anon_sym_defer] = ACTIONS(2245), + [anon_sym_goto] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_DOLLARfor] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_POUND] = ACTIONS(2245), + [anon_sym_asm] = ACTIONS(2245), + [anon_sym_AT_LBRACK] = ACTIONS(2245), + }, + [1420] = { + [sym_line_comment] = STATE(1420), + [sym_block_comment] = STATE(1420), + [ts_builtin_sym_end] = ACTIONS(3990), + [sym_identifier] = ACTIONS(3992), + [anon_sym_LF] = ACTIONS(3992), + [anon_sym_CR] = ACTIONS(3992), + [anon_sym_CR_LF] = ACTIONS(3992), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3992), + [anon_sym_LBRACE] = ACTIONS(3992), + [anon_sym_const] = ACTIONS(3992), + [anon_sym_LPAREN] = ACTIONS(3992), + [anon_sym___global] = ACTIONS(3992), + [anon_sym_type] = ACTIONS(3992), + [anon_sym_PIPE] = ACTIONS(3992), + [anon_sym_fn] = ACTIONS(3992), + [anon_sym_PLUS] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_struct] = ACTIONS(3992), + [anon_sym_union] = ACTIONS(3992), + [anon_sym_pub] = ACTIONS(3992), + [anon_sym_mut] = ACTIONS(3992), + [anon_sym_enum] = ACTIONS(3992), + [anon_sym_interface] = ACTIONS(3992), + [anon_sym_QMARK] = ACTIONS(3992), + [anon_sym_BANG] = ACTIONS(3992), + [anon_sym_go] = ACTIONS(3992), + [anon_sym_spawn] = ACTIONS(3992), + [anon_sym_json_DOTdecode] = ACTIONS(3992), + [anon_sym_LBRACK2] = ACTIONS(3992), + [anon_sym_TILDE] = ACTIONS(3992), + [anon_sym_CARET] = ACTIONS(3992), + [anon_sym_AMP] = ACTIONS(3992), + [anon_sym_LT_DASH] = ACTIONS(3992), + [sym_none] = ACTIONS(3992), + [sym_true] = ACTIONS(3992), + [sym_false] = ACTIONS(3992), + [sym_nil] = ACTIONS(3992), + [anon_sym_if] = ACTIONS(3992), + [anon_sym_DOLLARif] = ACTIONS(3992), + [anon_sym_match] = ACTIONS(3992), + [anon_sym_select] = ACTIONS(3992), + [anon_sym_lock] = ACTIONS(3992), + [anon_sym_rlock] = ACTIONS(3992), + [anon_sym_unsafe] = ACTIONS(3992), + [anon_sym_sql] = ACTIONS(3992), + [sym_int_literal] = ACTIONS(3992), + [sym_float_literal] = ACTIONS(3992), + [sym_rune_literal] = ACTIONS(3992), + [anon_sym_SQUOTE] = ACTIONS(3992), + [anon_sym_DQUOTE] = ACTIONS(3992), + [anon_sym_c_SQUOTE] = ACTIONS(3992), + [anon_sym_c_DQUOTE] = ACTIONS(3992), + [anon_sym_r_SQUOTE] = ACTIONS(3992), + [anon_sym_r_DQUOTE] = ACTIONS(3992), + [sym_pseudo_compile_time_identifier] = ACTIONS(3992), + [anon_sym_shared] = ACTIONS(3992), + [anon_sym_map_LBRACK] = ACTIONS(3992), + [anon_sym_chan] = ACTIONS(3992), + [anon_sym_thread] = ACTIONS(3992), + [anon_sym_atomic] = ACTIONS(3992), + [anon_sym_assert] = ACTIONS(3992), + [anon_sym_defer] = ACTIONS(3992), + [anon_sym_goto] = ACTIONS(3992), + [anon_sym_break] = ACTIONS(3992), + [anon_sym_continue] = ACTIONS(3992), + [anon_sym_return] = ACTIONS(3992), + [anon_sym_DOLLARfor] = ACTIONS(3992), + [anon_sym_for] = ACTIONS(3992), + [anon_sym_POUND] = ACTIONS(3992), + [anon_sym_asm] = ACTIONS(3992), + [anon_sym_AT_LBRACK] = ACTIONS(3992), }, [1421] = { [sym_line_comment] = STATE(1421), [sym_block_comment] = STATE(1421), - [sym_block] = STATE(1536), + [sym_block] = STATE(1535), [ts_builtin_sym_end] = ACTIONS(4028), [sym_identifier] = ACTIONS(4030), [anon_sym_LF] = ACTIONS(4030), @@ -174818,7 +174794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_LBRACE] = ACTIONS(4022), [anon_sym_const] = ACTIONS(4030), [anon_sym_LPAREN] = ACTIONS(4030), [anon_sym___global] = ACTIONS(4030), @@ -174858,6 +174834,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4030), [sym_float_literal] = ACTIONS(4030), [sym_rune_literal] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(4030), + [anon_sym_DQUOTE] = ACTIONS(4030), + [anon_sym_c_SQUOTE] = ACTIONS(4030), + [anon_sym_c_DQUOTE] = ACTIONS(4030), + [anon_sym_r_SQUOTE] = ACTIONS(4030), + [anon_sym_r_DQUOTE] = ACTIONS(4030), [sym_pseudo_compile_time_identifier] = ACTIONS(4030), [anon_sym_shared] = ACTIONS(4030), [anon_sym_map_LBRACK] = ACTIONS(4030), @@ -174875,17 +174857,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4030), [anon_sym_asm] = ACTIONS(4030), [anon_sym_AT_LBRACK] = ACTIONS(4030), - [sym___double_quote] = ACTIONS(4030), - [sym___single_quote] = ACTIONS(4030), - [sym___c_double_quote] = ACTIONS(4030), - [sym___c_single_quote] = ACTIONS(4030), - [sym___r_double_quote] = ACTIONS(4030), - [sym___r_single_quote] = ACTIONS(4030), }, [1422] = { [sym_line_comment] = STATE(1422), [sym_block_comment] = STATE(1422), - [sym_block] = STATE(1542), + [sym_block] = STATE(1480), [ts_builtin_sym_end] = ACTIONS(4032), [sym_identifier] = ACTIONS(4034), [anon_sym_LF] = ACTIONS(4034), @@ -174894,7 +174870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4034), - [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_LBRACE] = ACTIONS(4022), [anon_sym_const] = ACTIONS(4034), [anon_sym_LPAREN] = ACTIONS(4034), [anon_sym___global] = ACTIONS(4034), @@ -174934,6 +174910,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4034), [sym_float_literal] = ACTIONS(4034), [sym_rune_literal] = ACTIONS(4034), + [anon_sym_SQUOTE] = ACTIONS(4034), + [anon_sym_DQUOTE] = ACTIONS(4034), + [anon_sym_c_SQUOTE] = ACTIONS(4034), + [anon_sym_c_DQUOTE] = ACTIONS(4034), + [anon_sym_r_SQUOTE] = ACTIONS(4034), + [anon_sym_r_DQUOTE] = ACTIONS(4034), [sym_pseudo_compile_time_identifier] = ACTIONS(4034), [anon_sym_shared] = ACTIONS(4034), [anon_sym_map_LBRACK] = ACTIONS(4034), @@ -174951,2603 +174933,3357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4034), [anon_sym_asm] = ACTIONS(4034), [anon_sym_AT_LBRACK] = ACTIONS(4034), - [sym___double_quote] = ACTIONS(4034), - [sym___single_quote] = ACTIONS(4034), - [sym___c_double_quote] = ACTIONS(4034), - [sym___c_single_quote] = ACTIONS(4034), - [sym___r_double_quote] = ACTIONS(4034), - [sym___r_single_quote] = ACTIONS(4034), }, [1423] = { [sym_line_comment] = STATE(1423), [sym_block_comment] = STATE(1423), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2320), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), - [anon_sym_LF] = ACTIONS(567), - [anon_sym_CR] = ACTIONS(567), - [anon_sym_CR_LF] = ACTIONS(567), + [ts_builtin_sym_end] = ACTIONS(2131), + [sym_identifier] = ACTIONS(2133), + [anon_sym_LF] = ACTIONS(2133), + [anon_sym_CR] = ACTIONS(2133), + [anon_sym_CR_LF] = ACTIONS(2133), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4036), - [anon_sym_LBRACK2] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_AMP_CARET] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(567), - [anon_sym_POUND_LBRACK] = ACTIONS(567), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(567), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym___global] = ACTIONS(2133), + [anon_sym_type] = ACTIONS(2133), + [anon_sym_PIPE] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2133), + [anon_sym_struct] = ACTIONS(2133), + [anon_sym_union] = ACTIONS(2133), + [anon_sym_pub] = ACTIONS(2133), + [anon_sym_mut] = ACTIONS(2133), + [anon_sym_enum] = ACTIONS(2133), + [anon_sym_interface] = ACTIONS(2133), + [anon_sym_QMARK] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2133), + [anon_sym_go] = ACTIONS(2133), + [anon_sym_spawn] = ACTIONS(2133), + [anon_sym_json_DOTdecode] = ACTIONS(2133), + [anon_sym_LBRACK2] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2133), + [anon_sym_CARET] = ACTIONS(2133), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_LT_DASH] = ACTIONS(2133), + [sym_none] = ACTIONS(2133), + [sym_true] = ACTIONS(2133), + [sym_false] = ACTIONS(2133), + [sym_nil] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_DOLLARif] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_select] = ACTIONS(2133), + [anon_sym_lock] = ACTIONS(2133), + [anon_sym_rlock] = ACTIONS(2133), + [anon_sym_unsafe] = ACTIONS(2133), + [anon_sym_sql] = ACTIONS(2133), + [sym_int_literal] = ACTIONS(2133), + [sym_float_literal] = ACTIONS(2133), + [sym_rune_literal] = ACTIONS(2133), + [anon_sym_SQUOTE] = ACTIONS(2133), + [anon_sym_DQUOTE] = ACTIONS(2133), + [anon_sym_c_SQUOTE] = ACTIONS(2133), + [anon_sym_c_DQUOTE] = ACTIONS(2133), + [anon_sym_r_SQUOTE] = ACTIONS(2133), + [anon_sym_r_DQUOTE] = ACTIONS(2133), + [sym_pseudo_compile_time_identifier] = ACTIONS(2133), + [anon_sym_shared] = ACTIONS(2133), + [anon_sym_map_LBRACK] = ACTIONS(2133), + [anon_sym_chan] = ACTIONS(2133), + [anon_sym_thread] = ACTIONS(2133), + [anon_sym_atomic] = ACTIONS(2133), + [anon_sym_assert] = ACTIONS(2133), + [anon_sym_defer] = ACTIONS(2133), + [anon_sym_goto] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_DOLLARfor] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_POUND] = ACTIONS(2133), + [anon_sym_asm] = ACTIONS(2133), + [anon_sym_AT_LBRACK] = ACTIONS(2133), }, [1424] = { [sym_line_comment] = STATE(1424), [sym_block_comment] = STATE(1424), - [sym_block] = STATE(1555), - [ts_builtin_sym_end] = ACTIONS(4038), - [sym_identifier] = ACTIONS(4040), - [anon_sym_LF] = ACTIONS(4040), - [anon_sym_CR] = ACTIONS(4040), - [anon_sym_CR_LF] = ACTIONS(4040), + [sym_block] = STATE(1532), + [ts_builtin_sym_end] = ACTIONS(4036), + [sym_identifier] = ACTIONS(4038), + [anon_sym_LF] = ACTIONS(4038), + [anon_sym_CR] = ACTIONS(4038), + [anon_sym_CR_LF] = ACTIONS(4038), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4040), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4040), - [anon_sym_LPAREN] = ACTIONS(4040), - [anon_sym___global] = ACTIONS(4040), - [anon_sym_type] = ACTIONS(4040), - [anon_sym_fn] = ACTIONS(4040), - [anon_sym_PLUS] = ACTIONS(4040), - [anon_sym_DASH] = ACTIONS(4040), - [anon_sym_STAR] = ACTIONS(4040), - [anon_sym_struct] = ACTIONS(4040), - [anon_sym_union] = ACTIONS(4040), - [anon_sym_pub] = ACTIONS(4040), - [anon_sym_mut] = ACTIONS(4040), - [anon_sym_enum] = ACTIONS(4040), - [anon_sym_interface] = ACTIONS(4040), - [anon_sym_QMARK] = ACTIONS(4040), - [anon_sym_BANG] = ACTIONS(4040), - [anon_sym_go] = ACTIONS(4040), - [anon_sym_spawn] = ACTIONS(4040), - [anon_sym_json_DOTdecode] = ACTIONS(4040), - [anon_sym_LBRACK2] = ACTIONS(4040), - [anon_sym_TILDE] = ACTIONS(4040), - [anon_sym_CARET] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4040), - [anon_sym_LT_DASH] = ACTIONS(4040), - [sym_none] = ACTIONS(4040), - [sym_true] = ACTIONS(4040), - [sym_false] = ACTIONS(4040), - [sym_nil] = ACTIONS(4040), - [anon_sym_if] = ACTIONS(4040), - [anon_sym_DOLLARif] = ACTIONS(4040), - [anon_sym_match] = ACTIONS(4040), - [anon_sym_select] = ACTIONS(4040), - [anon_sym_lock] = ACTIONS(4040), - [anon_sym_rlock] = ACTIONS(4040), - [anon_sym_unsafe] = ACTIONS(4040), - [anon_sym_sql] = ACTIONS(4040), - [sym_int_literal] = ACTIONS(4040), - [sym_float_literal] = ACTIONS(4040), - [sym_rune_literal] = ACTIONS(4040), - [sym_pseudo_compile_time_identifier] = ACTIONS(4040), - [anon_sym_shared] = ACTIONS(4040), - [anon_sym_map_LBRACK] = ACTIONS(4040), - [anon_sym_chan] = ACTIONS(4040), - [anon_sym_thread] = ACTIONS(4040), - [anon_sym_atomic] = ACTIONS(4040), - [anon_sym_assert] = ACTIONS(4040), - [anon_sym_defer] = ACTIONS(4040), - [anon_sym_goto] = ACTIONS(4040), - [anon_sym_break] = ACTIONS(4040), - [anon_sym_continue] = ACTIONS(4040), - [anon_sym_return] = ACTIONS(4040), - [anon_sym_DOLLARfor] = ACTIONS(4040), - [anon_sym_for] = ACTIONS(4040), - [anon_sym_POUND] = ACTIONS(4040), - [anon_sym_asm] = ACTIONS(4040), - [anon_sym_AT_LBRACK] = ACTIONS(4040), - [sym___double_quote] = ACTIONS(4040), - [sym___single_quote] = ACTIONS(4040), - [sym___c_double_quote] = ACTIONS(4040), - [sym___c_single_quote] = ACTIONS(4040), - [sym___r_double_quote] = ACTIONS(4040), - [sym___r_single_quote] = ACTIONS(4040), + [anon_sym_DOT] = ACTIONS(4038), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4038), + [anon_sym___global] = ACTIONS(4038), + [anon_sym_type] = ACTIONS(4038), + [anon_sym_fn] = ACTIONS(4038), + [anon_sym_PLUS] = ACTIONS(4038), + [anon_sym_DASH] = ACTIONS(4038), + [anon_sym_STAR] = ACTIONS(4038), + [anon_sym_struct] = ACTIONS(4038), + [anon_sym_union] = ACTIONS(4038), + [anon_sym_pub] = ACTIONS(4038), + [anon_sym_mut] = ACTIONS(4038), + [anon_sym_enum] = ACTIONS(4038), + [anon_sym_interface] = ACTIONS(4038), + [anon_sym_QMARK] = ACTIONS(4038), + [anon_sym_BANG] = ACTIONS(4038), + [anon_sym_go] = ACTIONS(4038), + [anon_sym_spawn] = ACTIONS(4038), + [anon_sym_json_DOTdecode] = ACTIONS(4038), + [anon_sym_LBRACK2] = ACTIONS(4038), + [anon_sym_TILDE] = ACTIONS(4038), + [anon_sym_CARET] = ACTIONS(4038), + [anon_sym_AMP] = ACTIONS(4038), + [anon_sym_LT_DASH] = ACTIONS(4038), + [sym_none] = ACTIONS(4038), + [sym_true] = ACTIONS(4038), + [sym_false] = ACTIONS(4038), + [sym_nil] = ACTIONS(4038), + [anon_sym_if] = ACTIONS(4038), + [anon_sym_DOLLARif] = ACTIONS(4038), + [anon_sym_match] = ACTIONS(4038), + [anon_sym_select] = ACTIONS(4038), + [anon_sym_lock] = ACTIONS(4038), + [anon_sym_rlock] = ACTIONS(4038), + [anon_sym_unsafe] = ACTIONS(4038), + [anon_sym_sql] = ACTIONS(4038), + [sym_int_literal] = ACTIONS(4038), + [sym_float_literal] = ACTIONS(4038), + [sym_rune_literal] = ACTIONS(4038), + [anon_sym_SQUOTE] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(4038), + [anon_sym_c_SQUOTE] = ACTIONS(4038), + [anon_sym_c_DQUOTE] = ACTIONS(4038), + [anon_sym_r_SQUOTE] = ACTIONS(4038), + [anon_sym_r_DQUOTE] = ACTIONS(4038), + [sym_pseudo_compile_time_identifier] = ACTIONS(4038), + [anon_sym_shared] = ACTIONS(4038), + [anon_sym_map_LBRACK] = ACTIONS(4038), + [anon_sym_chan] = ACTIONS(4038), + [anon_sym_thread] = ACTIONS(4038), + [anon_sym_atomic] = ACTIONS(4038), + [anon_sym_assert] = ACTIONS(4038), + [anon_sym_defer] = ACTIONS(4038), + [anon_sym_goto] = ACTIONS(4038), + [anon_sym_break] = ACTIONS(4038), + [anon_sym_continue] = ACTIONS(4038), + [anon_sym_return] = ACTIONS(4038), + [anon_sym_DOLLARfor] = ACTIONS(4038), + [anon_sym_for] = ACTIONS(4038), + [anon_sym_POUND] = ACTIONS(4038), + [anon_sym_asm] = ACTIONS(4038), + [anon_sym_AT_LBRACK] = ACTIONS(4038), }, [1425] = { [sym_line_comment] = STATE(1425), [sym_block_comment] = STATE(1425), - [sym_block] = STATE(1558), - [ts_builtin_sym_end] = ACTIONS(4042), - [sym_identifier] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_CR] = ACTIONS(4044), - [anon_sym_CR_LF] = ACTIONS(4044), + [sym_block] = STATE(1531), + [ts_builtin_sym_end] = ACTIONS(4040), + [sym_identifier] = ACTIONS(4042), + [anon_sym_LF] = ACTIONS(4042), + [anon_sym_CR] = ACTIONS(4042), + [anon_sym_CR_LF] = ACTIONS(4042), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4044), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4044), - [anon_sym_LPAREN] = ACTIONS(4044), - [anon_sym___global] = ACTIONS(4044), - [anon_sym_type] = ACTIONS(4044), - [anon_sym_fn] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4044), - [anon_sym_DASH] = ACTIONS(4044), - [anon_sym_STAR] = ACTIONS(4044), - [anon_sym_struct] = ACTIONS(4044), - [anon_sym_union] = ACTIONS(4044), - [anon_sym_pub] = ACTIONS(4044), - [anon_sym_mut] = ACTIONS(4044), - [anon_sym_enum] = ACTIONS(4044), - [anon_sym_interface] = ACTIONS(4044), - [anon_sym_QMARK] = ACTIONS(4044), - [anon_sym_BANG] = ACTIONS(4044), - [anon_sym_go] = ACTIONS(4044), - [anon_sym_spawn] = ACTIONS(4044), - [anon_sym_json_DOTdecode] = ACTIONS(4044), - [anon_sym_LBRACK2] = ACTIONS(4044), - [anon_sym_TILDE] = ACTIONS(4044), - [anon_sym_CARET] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4044), - [anon_sym_LT_DASH] = ACTIONS(4044), - [sym_none] = ACTIONS(4044), - [sym_true] = ACTIONS(4044), - [sym_false] = ACTIONS(4044), - [sym_nil] = ACTIONS(4044), - [anon_sym_if] = ACTIONS(4044), - [anon_sym_DOLLARif] = ACTIONS(4044), - [anon_sym_match] = ACTIONS(4044), - [anon_sym_select] = ACTIONS(4044), - [anon_sym_lock] = ACTIONS(4044), - [anon_sym_rlock] = ACTIONS(4044), - [anon_sym_unsafe] = ACTIONS(4044), - [anon_sym_sql] = ACTIONS(4044), - [sym_int_literal] = ACTIONS(4044), - [sym_float_literal] = ACTIONS(4044), - [sym_rune_literal] = ACTIONS(4044), - [sym_pseudo_compile_time_identifier] = ACTIONS(4044), - [anon_sym_shared] = ACTIONS(4044), - [anon_sym_map_LBRACK] = ACTIONS(4044), - [anon_sym_chan] = ACTIONS(4044), - [anon_sym_thread] = ACTIONS(4044), - [anon_sym_atomic] = ACTIONS(4044), - [anon_sym_assert] = ACTIONS(4044), - [anon_sym_defer] = ACTIONS(4044), - [anon_sym_goto] = ACTIONS(4044), - [anon_sym_break] = ACTIONS(4044), - [anon_sym_continue] = ACTIONS(4044), - [anon_sym_return] = ACTIONS(4044), - [anon_sym_DOLLARfor] = ACTIONS(4044), - [anon_sym_for] = ACTIONS(4044), - [anon_sym_POUND] = ACTIONS(4044), - [anon_sym_asm] = ACTIONS(4044), - [anon_sym_AT_LBRACK] = ACTIONS(4044), - [sym___double_quote] = ACTIONS(4044), - [sym___single_quote] = ACTIONS(4044), - [sym___c_double_quote] = ACTIONS(4044), - [sym___c_single_quote] = ACTIONS(4044), - [sym___r_double_quote] = ACTIONS(4044), - [sym___r_single_quote] = ACTIONS(4044), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4042), + [anon_sym_LPAREN] = ACTIONS(4042), + [anon_sym___global] = ACTIONS(4042), + [anon_sym_type] = ACTIONS(4042), + [anon_sym_fn] = ACTIONS(4042), + [anon_sym_PLUS] = ACTIONS(4042), + [anon_sym_DASH] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4042), + [anon_sym_struct] = ACTIONS(4042), + [anon_sym_union] = ACTIONS(4042), + [anon_sym_pub] = ACTIONS(4042), + [anon_sym_mut] = ACTIONS(4042), + [anon_sym_enum] = ACTIONS(4042), + [anon_sym_interface] = ACTIONS(4042), + [anon_sym_QMARK] = ACTIONS(4042), + [anon_sym_BANG] = ACTIONS(4042), + [anon_sym_go] = ACTIONS(4042), + [anon_sym_spawn] = ACTIONS(4042), + [anon_sym_json_DOTdecode] = ACTIONS(4042), + [anon_sym_LBRACK2] = ACTIONS(4042), + [anon_sym_TILDE] = ACTIONS(4042), + [anon_sym_CARET] = ACTIONS(4042), + [anon_sym_AMP] = ACTIONS(4042), + [anon_sym_LT_DASH] = ACTIONS(4042), + [sym_none] = ACTIONS(4042), + [sym_true] = ACTIONS(4042), + [sym_false] = ACTIONS(4042), + [sym_nil] = ACTIONS(4042), + [anon_sym_if] = ACTIONS(4042), + [anon_sym_DOLLARif] = ACTIONS(4042), + [anon_sym_match] = ACTIONS(4042), + [anon_sym_select] = ACTIONS(4042), + [anon_sym_lock] = ACTIONS(4042), + [anon_sym_rlock] = ACTIONS(4042), + [anon_sym_unsafe] = ACTIONS(4042), + [anon_sym_sql] = ACTIONS(4042), + [sym_int_literal] = ACTIONS(4042), + [sym_float_literal] = ACTIONS(4042), + [sym_rune_literal] = ACTIONS(4042), + [anon_sym_SQUOTE] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4042), + [anon_sym_c_SQUOTE] = ACTIONS(4042), + [anon_sym_c_DQUOTE] = ACTIONS(4042), + [anon_sym_r_SQUOTE] = ACTIONS(4042), + [anon_sym_r_DQUOTE] = ACTIONS(4042), + [sym_pseudo_compile_time_identifier] = ACTIONS(4042), + [anon_sym_shared] = ACTIONS(4042), + [anon_sym_map_LBRACK] = ACTIONS(4042), + [anon_sym_chan] = ACTIONS(4042), + [anon_sym_thread] = ACTIONS(4042), + [anon_sym_atomic] = ACTIONS(4042), + [anon_sym_assert] = ACTIONS(4042), + [anon_sym_defer] = ACTIONS(4042), + [anon_sym_goto] = ACTIONS(4042), + [anon_sym_break] = ACTIONS(4042), + [anon_sym_continue] = ACTIONS(4042), + [anon_sym_return] = ACTIONS(4042), + [anon_sym_DOLLARfor] = ACTIONS(4042), + [anon_sym_for] = ACTIONS(4042), + [anon_sym_POUND] = ACTIONS(4042), + [anon_sym_asm] = ACTIONS(4042), + [anon_sym_AT_LBRACK] = ACTIONS(4042), }, [1426] = { [sym_line_comment] = STATE(1426), [sym_block_comment] = STATE(1426), - [sym_block] = STATE(1482), - [ts_builtin_sym_end] = ACTIONS(4046), - [sym_identifier] = ACTIONS(4048), - [anon_sym_LF] = ACTIONS(4048), - [anon_sym_CR] = ACTIONS(4048), - [anon_sym_CR_LF] = ACTIONS(4048), + [sym_block] = STATE(1528), + [ts_builtin_sym_end] = ACTIONS(4044), + [sym_identifier] = ACTIONS(4046), + [anon_sym_LF] = ACTIONS(4046), + [anon_sym_CR] = ACTIONS(4046), + [anon_sym_CR_LF] = ACTIONS(4046), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4048), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4048), - [anon_sym_LPAREN] = ACTIONS(4048), - [anon_sym___global] = ACTIONS(4048), - [anon_sym_type] = ACTIONS(4048), - [anon_sym_fn] = ACTIONS(4048), - [anon_sym_PLUS] = ACTIONS(4048), - [anon_sym_DASH] = ACTIONS(4048), - [anon_sym_STAR] = ACTIONS(4048), - [anon_sym_struct] = ACTIONS(4048), - [anon_sym_union] = ACTIONS(4048), - [anon_sym_pub] = ACTIONS(4048), - [anon_sym_mut] = ACTIONS(4048), - [anon_sym_enum] = ACTIONS(4048), - [anon_sym_interface] = ACTIONS(4048), - [anon_sym_QMARK] = ACTIONS(4048), - [anon_sym_BANG] = ACTIONS(4048), - [anon_sym_go] = ACTIONS(4048), - [anon_sym_spawn] = ACTIONS(4048), - [anon_sym_json_DOTdecode] = ACTIONS(4048), - [anon_sym_LBRACK2] = ACTIONS(4048), - [anon_sym_TILDE] = ACTIONS(4048), - [anon_sym_CARET] = ACTIONS(4048), - [anon_sym_AMP] = ACTIONS(4048), - [anon_sym_LT_DASH] = ACTIONS(4048), - [sym_none] = ACTIONS(4048), - [sym_true] = ACTIONS(4048), - [sym_false] = ACTIONS(4048), - [sym_nil] = ACTIONS(4048), - [anon_sym_if] = ACTIONS(4048), - [anon_sym_DOLLARif] = ACTIONS(4048), - [anon_sym_match] = ACTIONS(4048), - [anon_sym_select] = ACTIONS(4048), - [anon_sym_lock] = ACTIONS(4048), - [anon_sym_rlock] = ACTIONS(4048), - [anon_sym_unsafe] = ACTIONS(4048), - [anon_sym_sql] = ACTIONS(4048), - [sym_int_literal] = ACTIONS(4048), - [sym_float_literal] = ACTIONS(4048), - [sym_rune_literal] = ACTIONS(4048), - [sym_pseudo_compile_time_identifier] = ACTIONS(4048), - [anon_sym_shared] = ACTIONS(4048), - [anon_sym_map_LBRACK] = ACTIONS(4048), - [anon_sym_chan] = ACTIONS(4048), - [anon_sym_thread] = ACTIONS(4048), - [anon_sym_atomic] = ACTIONS(4048), - [anon_sym_assert] = ACTIONS(4048), - [anon_sym_defer] = ACTIONS(4048), - [anon_sym_goto] = ACTIONS(4048), - [anon_sym_break] = ACTIONS(4048), - [anon_sym_continue] = ACTIONS(4048), - [anon_sym_return] = ACTIONS(4048), - [anon_sym_DOLLARfor] = ACTIONS(4048), - [anon_sym_for] = ACTIONS(4048), - [anon_sym_POUND] = ACTIONS(4048), - [anon_sym_asm] = ACTIONS(4048), - [anon_sym_AT_LBRACK] = ACTIONS(4048), - [sym___double_quote] = ACTIONS(4048), - [sym___single_quote] = ACTIONS(4048), - [sym___c_double_quote] = ACTIONS(4048), - [sym___c_single_quote] = ACTIONS(4048), - [sym___r_double_quote] = ACTIONS(4048), - [sym___r_single_quote] = ACTIONS(4048), + [anon_sym_DOT] = ACTIONS(4046), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4046), + [anon_sym_LPAREN] = ACTIONS(4046), + [anon_sym___global] = ACTIONS(4046), + [anon_sym_type] = ACTIONS(4046), + [anon_sym_fn] = ACTIONS(4046), + [anon_sym_PLUS] = ACTIONS(4046), + [anon_sym_DASH] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_struct] = ACTIONS(4046), + [anon_sym_union] = ACTIONS(4046), + [anon_sym_pub] = ACTIONS(4046), + [anon_sym_mut] = ACTIONS(4046), + [anon_sym_enum] = ACTIONS(4046), + [anon_sym_interface] = ACTIONS(4046), + [anon_sym_QMARK] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(4046), + [anon_sym_go] = ACTIONS(4046), + [anon_sym_spawn] = ACTIONS(4046), + [anon_sym_json_DOTdecode] = ACTIONS(4046), + [anon_sym_LBRACK2] = ACTIONS(4046), + [anon_sym_TILDE] = ACTIONS(4046), + [anon_sym_CARET] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4046), + [anon_sym_LT_DASH] = ACTIONS(4046), + [sym_none] = ACTIONS(4046), + [sym_true] = ACTIONS(4046), + [sym_false] = ACTIONS(4046), + [sym_nil] = ACTIONS(4046), + [anon_sym_if] = ACTIONS(4046), + [anon_sym_DOLLARif] = ACTIONS(4046), + [anon_sym_match] = ACTIONS(4046), + [anon_sym_select] = ACTIONS(4046), + [anon_sym_lock] = ACTIONS(4046), + [anon_sym_rlock] = ACTIONS(4046), + [anon_sym_unsafe] = ACTIONS(4046), + [anon_sym_sql] = ACTIONS(4046), + [sym_int_literal] = ACTIONS(4046), + [sym_float_literal] = ACTIONS(4046), + [sym_rune_literal] = ACTIONS(4046), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(4046), + [anon_sym_c_SQUOTE] = ACTIONS(4046), + [anon_sym_c_DQUOTE] = ACTIONS(4046), + [anon_sym_r_SQUOTE] = ACTIONS(4046), + [anon_sym_r_DQUOTE] = ACTIONS(4046), + [sym_pseudo_compile_time_identifier] = ACTIONS(4046), + [anon_sym_shared] = ACTIONS(4046), + [anon_sym_map_LBRACK] = ACTIONS(4046), + [anon_sym_chan] = ACTIONS(4046), + [anon_sym_thread] = ACTIONS(4046), + [anon_sym_atomic] = ACTIONS(4046), + [anon_sym_assert] = ACTIONS(4046), + [anon_sym_defer] = ACTIONS(4046), + [anon_sym_goto] = ACTIONS(4046), + [anon_sym_break] = ACTIONS(4046), + [anon_sym_continue] = ACTIONS(4046), + [anon_sym_return] = ACTIONS(4046), + [anon_sym_DOLLARfor] = ACTIONS(4046), + [anon_sym_for] = ACTIONS(4046), + [anon_sym_POUND] = ACTIONS(4046), + [anon_sym_asm] = ACTIONS(4046), + [anon_sym_AT_LBRACK] = ACTIONS(4046), }, [1427] = { [sym_line_comment] = STATE(1427), [sym_block_comment] = STATE(1427), - [sym_block] = STATE(1563), - [ts_builtin_sym_end] = ACTIONS(4050), - [sym_identifier] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4052), - [anon_sym_CR] = ACTIONS(4052), - [anon_sym_CR_LF] = ACTIONS(4052), + [sym_block] = STATE(1526), + [ts_builtin_sym_end] = ACTIONS(4048), + [sym_identifier] = ACTIONS(4050), + [anon_sym_LF] = ACTIONS(4050), + [anon_sym_CR] = ACTIONS(4050), + [anon_sym_CR_LF] = ACTIONS(4050), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4052), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4052), - [anon_sym_LPAREN] = ACTIONS(4052), - [anon_sym___global] = ACTIONS(4052), - [anon_sym_type] = ACTIONS(4052), - [anon_sym_fn] = ACTIONS(4052), - [anon_sym_PLUS] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(4052), - [anon_sym_struct] = ACTIONS(4052), - [anon_sym_union] = ACTIONS(4052), - [anon_sym_pub] = ACTIONS(4052), - [anon_sym_mut] = ACTIONS(4052), - [anon_sym_enum] = ACTIONS(4052), - [anon_sym_interface] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(4052), - [anon_sym_go] = ACTIONS(4052), - [anon_sym_spawn] = ACTIONS(4052), - [anon_sym_json_DOTdecode] = ACTIONS(4052), - [anon_sym_LBRACK2] = ACTIONS(4052), - [anon_sym_TILDE] = ACTIONS(4052), - [anon_sym_CARET] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(4052), - [anon_sym_LT_DASH] = ACTIONS(4052), - [sym_none] = ACTIONS(4052), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_nil] = ACTIONS(4052), - [anon_sym_if] = ACTIONS(4052), - [anon_sym_DOLLARif] = ACTIONS(4052), - [anon_sym_match] = ACTIONS(4052), - [anon_sym_select] = ACTIONS(4052), - [anon_sym_lock] = ACTIONS(4052), - [anon_sym_rlock] = ACTIONS(4052), - [anon_sym_unsafe] = ACTIONS(4052), - [anon_sym_sql] = ACTIONS(4052), - [sym_int_literal] = ACTIONS(4052), - [sym_float_literal] = ACTIONS(4052), - [sym_rune_literal] = ACTIONS(4052), - [sym_pseudo_compile_time_identifier] = ACTIONS(4052), - [anon_sym_shared] = ACTIONS(4052), - [anon_sym_map_LBRACK] = ACTIONS(4052), - [anon_sym_chan] = ACTIONS(4052), - [anon_sym_thread] = ACTIONS(4052), - [anon_sym_atomic] = ACTIONS(4052), - [anon_sym_assert] = ACTIONS(4052), - [anon_sym_defer] = ACTIONS(4052), - [anon_sym_goto] = ACTIONS(4052), - [anon_sym_break] = ACTIONS(4052), - [anon_sym_continue] = ACTIONS(4052), - [anon_sym_return] = ACTIONS(4052), - [anon_sym_DOLLARfor] = ACTIONS(4052), - [anon_sym_for] = ACTIONS(4052), - [anon_sym_POUND] = ACTIONS(4052), - [anon_sym_asm] = ACTIONS(4052), - [anon_sym_AT_LBRACK] = ACTIONS(4052), - [sym___double_quote] = ACTIONS(4052), - [sym___single_quote] = ACTIONS(4052), - [sym___c_double_quote] = ACTIONS(4052), - [sym___c_single_quote] = ACTIONS(4052), - [sym___r_double_quote] = ACTIONS(4052), - [sym___r_single_quote] = ACTIONS(4052), + [anon_sym_DOT] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4050), + [anon_sym_LPAREN] = ACTIONS(4050), + [anon_sym___global] = ACTIONS(4050), + [anon_sym_type] = ACTIONS(4050), + [anon_sym_fn] = ACTIONS(4050), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_struct] = ACTIONS(4050), + [anon_sym_union] = ACTIONS(4050), + [anon_sym_pub] = ACTIONS(4050), + [anon_sym_mut] = ACTIONS(4050), + [anon_sym_enum] = ACTIONS(4050), + [anon_sym_interface] = ACTIONS(4050), + [anon_sym_QMARK] = ACTIONS(4050), + [anon_sym_BANG] = ACTIONS(4050), + [anon_sym_go] = ACTIONS(4050), + [anon_sym_spawn] = ACTIONS(4050), + [anon_sym_json_DOTdecode] = ACTIONS(4050), + [anon_sym_LBRACK2] = ACTIONS(4050), + [anon_sym_TILDE] = ACTIONS(4050), + [anon_sym_CARET] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_LT_DASH] = ACTIONS(4050), + [sym_none] = ACTIONS(4050), + [sym_true] = ACTIONS(4050), + [sym_false] = ACTIONS(4050), + [sym_nil] = ACTIONS(4050), + [anon_sym_if] = ACTIONS(4050), + [anon_sym_DOLLARif] = ACTIONS(4050), + [anon_sym_match] = ACTIONS(4050), + [anon_sym_select] = ACTIONS(4050), + [anon_sym_lock] = ACTIONS(4050), + [anon_sym_rlock] = ACTIONS(4050), + [anon_sym_unsafe] = ACTIONS(4050), + [anon_sym_sql] = ACTIONS(4050), + [sym_int_literal] = ACTIONS(4050), + [sym_float_literal] = ACTIONS(4050), + [sym_rune_literal] = ACTIONS(4050), + [anon_sym_SQUOTE] = ACTIONS(4050), + [anon_sym_DQUOTE] = ACTIONS(4050), + [anon_sym_c_SQUOTE] = ACTIONS(4050), + [anon_sym_c_DQUOTE] = ACTIONS(4050), + [anon_sym_r_SQUOTE] = ACTIONS(4050), + [anon_sym_r_DQUOTE] = ACTIONS(4050), + [sym_pseudo_compile_time_identifier] = ACTIONS(4050), + [anon_sym_shared] = ACTIONS(4050), + [anon_sym_map_LBRACK] = ACTIONS(4050), + [anon_sym_chan] = ACTIONS(4050), + [anon_sym_thread] = ACTIONS(4050), + [anon_sym_atomic] = ACTIONS(4050), + [anon_sym_assert] = ACTIONS(4050), + [anon_sym_defer] = ACTIONS(4050), + [anon_sym_goto] = ACTIONS(4050), + [anon_sym_break] = ACTIONS(4050), + [anon_sym_continue] = ACTIONS(4050), + [anon_sym_return] = ACTIONS(4050), + [anon_sym_DOLLARfor] = ACTIONS(4050), + [anon_sym_for] = ACTIONS(4050), + [anon_sym_POUND] = ACTIONS(4050), + [anon_sym_asm] = ACTIONS(4050), + [anon_sym_AT_LBRACK] = ACTIONS(4050), }, [1428] = { [sym_line_comment] = STATE(1428), [sym_block_comment] = STATE(1428), - [sym_block] = STATE(1567), - [ts_builtin_sym_end] = ACTIONS(4054), - [sym_identifier] = ACTIONS(4056), - [anon_sym_LF] = ACTIONS(4056), - [anon_sym_CR] = ACTIONS(4056), - [anon_sym_CR_LF] = ACTIONS(4056), + [sym_block] = STATE(1525), + [ts_builtin_sym_end] = ACTIONS(4052), + [sym_identifier] = ACTIONS(4054), + [anon_sym_LF] = ACTIONS(4054), + [anon_sym_CR] = ACTIONS(4054), + [anon_sym_CR_LF] = ACTIONS(4054), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4056), - [anon_sym___global] = ACTIONS(4056), - [anon_sym_type] = ACTIONS(4056), - [anon_sym_fn] = ACTIONS(4056), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4056), - [anon_sym_struct] = ACTIONS(4056), - [anon_sym_union] = ACTIONS(4056), - [anon_sym_pub] = ACTIONS(4056), - [anon_sym_mut] = ACTIONS(4056), - [anon_sym_enum] = ACTIONS(4056), - [anon_sym_interface] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_go] = ACTIONS(4056), - [anon_sym_spawn] = ACTIONS(4056), - [anon_sym_json_DOTdecode] = ACTIONS(4056), - [anon_sym_LBRACK2] = ACTIONS(4056), - [anon_sym_TILDE] = ACTIONS(4056), - [anon_sym_CARET] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_DASH] = ACTIONS(4056), - [sym_none] = ACTIONS(4056), - [sym_true] = ACTIONS(4056), - [sym_false] = ACTIONS(4056), - [sym_nil] = ACTIONS(4056), - [anon_sym_if] = ACTIONS(4056), - [anon_sym_DOLLARif] = ACTIONS(4056), - [anon_sym_match] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_lock] = ACTIONS(4056), - [anon_sym_rlock] = ACTIONS(4056), - [anon_sym_unsafe] = ACTIONS(4056), - [anon_sym_sql] = ACTIONS(4056), - [sym_int_literal] = ACTIONS(4056), - [sym_float_literal] = ACTIONS(4056), - [sym_rune_literal] = ACTIONS(4056), - [sym_pseudo_compile_time_identifier] = ACTIONS(4056), - [anon_sym_shared] = ACTIONS(4056), - [anon_sym_map_LBRACK] = ACTIONS(4056), - [anon_sym_chan] = ACTIONS(4056), - [anon_sym_thread] = ACTIONS(4056), - [anon_sym_atomic] = ACTIONS(4056), - [anon_sym_assert] = ACTIONS(4056), - [anon_sym_defer] = ACTIONS(4056), - [anon_sym_goto] = ACTIONS(4056), - [anon_sym_break] = ACTIONS(4056), - [anon_sym_continue] = ACTIONS(4056), - [anon_sym_return] = ACTIONS(4056), - [anon_sym_DOLLARfor] = ACTIONS(4056), - [anon_sym_for] = ACTIONS(4056), - [anon_sym_POUND] = ACTIONS(4056), - [anon_sym_asm] = ACTIONS(4056), - [anon_sym_AT_LBRACK] = ACTIONS(4056), - [sym___double_quote] = ACTIONS(4056), - [sym___single_quote] = ACTIONS(4056), - [sym___c_double_quote] = ACTIONS(4056), - [sym___c_single_quote] = ACTIONS(4056), - [sym___r_double_quote] = ACTIONS(4056), - [sym___r_single_quote] = ACTIONS(4056), + [anon_sym_DOT] = ACTIONS(4054), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4054), + [anon_sym_LPAREN] = ACTIONS(4054), + [anon_sym___global] = ACTIONS(4054), + [anon_sym_type] = ACTIONS(4054), + [anon_sym_fn] = ACTIONS(4054), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_STAR] = ACTIONS(4054), + [anon_sym_struct] = ACTIONS(4054), + [anon_sym_union] = ACTIONS(4054), + [anon_sym_pub] = ACTIONS(4054), + [anon_sym_mut] = ACTIONS(4054), + [anon_sym_enum] = ACTIONS(4054), + [anon_sym_interface] = ACTIONS(4054), + [anon_sym_QMARK] = ACTIONS(4054), + [anon_sym_BANG] = ACTIONS(4054), + [anon_sym_go] = ACTIONS(4054), + [anon_sym_spawn] = ACTIONS(4054), + [anon_sym_json_DOTdecode] = ACTIONS(4054), + [anon_sym_LBRACK2] = ACTIONS(4054), + [anon_sym_TILDE] = ACTIONS(4054), + [anon_sym_CARET] = ACTIONS(4054), + [anon_sym_AMP] = ACTIONS(4054), + [anon_sym_LT_DASH] = ACTIONS(4054), + [sym_none] = ACTIONS(4054), + [sym_true] = ACTIONS(4054), + [sym_false] = ACTIONS(4054), + [sym_nil] = ACTIONS(4054), + [anon_sym_if] = ACTIONS(4054), + [anon_sym_DOLLARif] = ACTIONS(4054), + [anon_sym_match] = ACTIONS(4054), + [anon_sym_select] = ACTIONS(4054), + [anon_sym_lock] = ACTIONS(4054), + [anon_sym_rlock] = ACTIONS(4054), + [anon_sym_unsafe] = ACTIONS(4054), + [anon_sym_sql] = ACTIONS(4054), + [sym_int_literal] = ACTIONS(4054), + [sym_float_literal] = ACTIONS(4054), + [sym_rune_literal] = ACTIONS(4054), + [anon_sym_SQUOTE] = ACTIONS(4054), + [anon_sym_DQUOTE] = ACTIONS(4054), + [anon_sym_c_SQUOTE] = ACTIONS(4054), + [anon_sym_c_DQUOTE] = ACTIONS(4054), + [anon_sym_r_SQUOTE] = ACTIONS(4054), + [anon_sym_r_DQUOTE] = ACTIONS(4054), + [sym_pseudo_compile_time_identifier] = ACTIONS(4054), + [anon_sym_shared] = ACTIONS(4054), + [anon_sym_map_LBRACK] = ACTIONS(4054), + [anon_sym_chan] = ACTIONS(4054), + [anon_sym_thread] = ACTIONS(4054), + [anon_sym_atomic] = ACTIONS(4054), + [anon_sym_assert] = ACTIONS(4054), + [anon_sym_defer] = ACTIONS(4054), + [anon_sym_goto] = ACTIONS(4054), + [anon_sym_break] = ACTIONS(4054), + [anon_sym_continue] = ACTIONS(4054), + [anon_sym_return] = ACTIONS(4054), + [anon_sym_DOLLARfor] = ACTIONS(4054), + [anon_sym_for] = ACTIONS(4054), + [anon_sym_POUND] = ACTIONS(4054), + [anon_sym_asm] = ACTIONS(4054), + [anon_sym_AT_LBRACK] = ACTIONS(4054), }, [1429] = { [sym_line_comment] = STATE(1429), [sym_block_comment] = STATE(1429), - [sym_block] = STATE(1572), - [ts_builtin_sym_end] = ACTIONS(4058), - [sym_identifier] = ACTIONS(4060), - [anon_sym_LF] = ACTIONS(4060), - [anon_sym_CR] = ACTIONS(4060), - [anon_sym_CR_LF] = ACTIONS(4060), + [ts_builtin_sym_end] = ACTIONS(4056), + [sym_identifier] = ACTIONS(4058), + [anon_sym_LF] = ACTIONS(4058), + [anon_sym_CR] = ACTIONS(4058), + [anon_sym_CR_LF] = ACTIONS(4058), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4060), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4060), - [anon_sym___global] = ACTIONS(4060), - [anon_sym_type] = ACTIONS(4060), - [anon_sym_fn] = ACTIONS(4060), - [anon_sym_PLUS] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4060), - [anon_sym_STAR] = ACTIONS(4060), - [anon_sym_struct] = ACTIONS(4060), - [anon_sym_union] = ACTIONS(4060), - [anon_sym_pub] = ACTIONS(4060), - [anon_sym_mut] = ACTIONS(4060), - [anon_sym_enum] = ACTIONS(4060), - [anon_sym_interface] = ACTIONS(4060), - [anon_sym_QMARK] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(4060), - [anon_sym_go] = ACTIONS(4060), - [anon_sym_spawn] = ACTIONS(4060), - [anon_sym_json_DOTdecode] = ACTIONS(4060), - [anon_sym_LBRACK2] = ACTIONS(4060), - [anon_sym_TILDE] = ACTIONS(4060), - [anon_sym_CARET] = ACTIONS(4060), - [anon_sym_AMP] = ACTIONS(4060), - [anon_sym_LT_DASH] = ACTIONS(4060), - [sym_none] = ACTIONS(4060), - [sym_true] = ACTIONS(4060), - [sym_false] = ACTIONS(4060), - [sym_nil] = ACTIONS(4060), - [anon_sym_if] = ACTIONS(4060), - [anon_sym_DOLLARif] = ACTIONS(4060), - [anon_sym_match] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(4060), - [anon_sym_lock] = ACTIONS(4060), - [anon_sym_rlock] = ACTIONS(4060), - [anon_sym_unsafe] = ACTIONS(4060), - [anon_sym_sql] = ACTIONS(4060), - [sym_int_literal] = ACTIONS(4060), - [sym_float_literal] = ACTIONS(4060), - [sym_rune_literal] = ACTIONS(4060), - [sym_pseudo_compile_time_identifier] = ACTIONS(4060), - [anon_sym_shared] = ACTIONS(4060), - [anon_sym_map_LBRACK] = ACTIONS(4060), - [anon_sym_chan] = ACTIONS(4060), - [anon_sym_thread] = ACTIONS(4060), - [anon_sym_atomic] = ACTIONS(4060), - [anon_sym_assert] = ACTIONS(4060), - [anon_sym_defer] = ACTIONS(4060), - [anon_sym_goto] = ACTIONS(4060), - [anon_sym_break] = ACTIONS(4060), - [anon_sym_continue] = ACTIONS(4060), - [anon_sym_return] = ACTIONS(4060), - [anon_sym_DOLLARfor] = ACTIONS(4060), - [anon_sym_for] = ACTIONS(4060), - [anon_sym_POUND] = ACTIONS(4060), - [anon_sym_asm] = ACTIONS(4060), - [anon_sym_AT_LBRACK] = ACTIONS(4060), - [sym___double_quote] = ACTIONS(4060), - [sym___single_quote] = ACTIONS(4060), - [sym___c_double_quote] = ACTIONS(4060), - [sym___c_single_quote] = ACTIONS(4060), - [sym___r_double_quote] = ACTIONS(4060), - [sym___r_single_quote] = ACTIONS(4060), + [anon_sym_DOT] = ACTIONS(4058), + [anon_sym_LBRACE] = ACTIONS(4058), + [anon_sym_const] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4058), + [anon_sym___global] = ACTIONS(4058), + [anon_sym_type] = ACTIONS(4058), + [anon_sym_PIPE] = ACTIONS(4058), + [anon_sym_fn] = ACTIONS(4058), + [anon_sym_PLUS] = ACTIONS(4058), + [anon_sym_DASH] = ACTIONS(4058), + [anon_sym_STAR] = ACTIONS(4058), + [anon_sym_struct] = ACTIONS(4058), + [anon_sym_union] = ACTIONS(4058), + [anon_sym_pub] = ACTIONS(4058), + [anon_sym_mut] = ACTIONS(4058), + [anon_sym_enum] = ACTIONS(4058), + [anon_sym_interface] = ACTIONS(4058), + [anon_sym_QMARK] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4058), + [anon_sym_go] = ACTIONS(4058), + [anon_sym_spawn] = ACTIONS(4058), + [anon_sym_json_DOTdecode] = ACTIONS(4058), + [anon_sym_LBRACK2] = ACTIONS(4058), + [anon_sym_TILDE] = ACTIONS(4058), + [anon_sym_CARET] = ACTIONS(4058), + [anon_sym_AMP] = ACTIONS(4058), + [anon_sym_LT_DASH] = ACTIONS(4058), + [sym_none] = ACTIONS(4058), + [sym_true] = ACTIONS(4058), + [sym_false] = ACTIONS(4058), + [sym_nil] = ACTIONS(4058), + [anon_sym_if] = ACTIONS(4058), + [anon_sym_DOLLARif] = ACTIONS(4058), + [anon_sym_match] = ACTIONS(4058), + [anon_sym_select] = ACTIONS(4058), + [anon_sym_lock] = ACTIONS(4058), + [anon_sym_rlock] = ACTIONS(4058), + [anon_sym_unsafe] = ACTIONS(4058), + [anon_sym_sql] = ACTIONS(4058), + [sym_int_literal] = ACTIONS(4058), + [sym_float_literal] = ACTIONS(4058), + [sym_rune_literal] = ACTIONS(4058), + [anon_sym_SQUOTE] = ACTIONS(4058), + [anon_sym_DQUOTE] = ACTIONS(4058), + [anon_sym_c_SQUOTE] = ACTIONS(4058), + [anon_sym_c_DQUOTE] = ACTIONS(4058), + [anon_sym_r_SQUOTE] = ACTIONS(4058), + [anon_sym_r_DQUOTE] = ACTIONS(4058), + [sym_pseudo_compile_time_identifier] = ACTIONS(4058), + [anon_sym_shared] = ACTIONS(4058), + [anon_sym_map_LBRACK] = ACTIONS(4058), + [anon_sym_chan] = ACTIONS(4058), + [anon_sym_thread] = ACTIONS(4058), + [anon_sym_atomic] = ACTIONS(4058), + [anon_sym_assert] = ACTIONS(4058), + [anon_sym_defer] = ACTIONS(4058), + [anon_sym_goto] = ACTIONS(4058), + [anon_sym_break] = ACTIONS(4058), + [anon_sym_continue] = ACTIONS(4058), + [anon_sym_return] = ACTIONS(4058), + [anon_sym_DOLLARfor] = ACTIONS(4058), + [anon_sym_for] = ACTIONS(4058), + [anon_sym_POUND] = ACTIONS(4058), + [anon_sym_asm] = ACTIONS(4058), + [anon_sym_AT_LBRACK] = ACTIONS(4058), }, [1430] = { [sym_line_comment] = STATE(1430), [sym_block_comment] = STATE(1430), - [sym_block] = STATE(1573), - [ts_builtin_sym_end] = ACTIONS(4062), - [sym_identifier] = ACTIONS(4064), - [anon_sym_LF] = ACTIONS(4064), - [anon_sym_CR] = ACTIONS(4064), - [anon_sym_CR_LF] = ACTIONS(4064), + [sym_block] = STATE(1523), + [ts_builtin_sym_end] = ACTIONS(4060), + [sym_identifier] = ACTIONS(4062), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_CR] = ACTIONS(4062), + [anon_sym_CR_LF] = ACTIONS(4062), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4064), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4064), - [anon_sym_LPAREN] = ACTIONS(4064), - [anon_sym___global] = ACTIONS(4064), - [anon_sym_type] = ACTIONS(4064), - [anon_sym_fn] = ACTIONS(4064), - [anon_sym_PLUS] = ACTIONS(4064), - [anon_sym_DASH] = ACTIONS(4064), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_struct] = ACTIONS(4064), - [anon_sym_union] = ACTIONS(4064), - [anon_sym_pub] = ACTIONS(4064), - [anon_sym_mut] = ACTIONS(4064), - [anon_sym_enum] = ACTIONS(4064), - [anon_sym_interface] = ACTIONS(4064), - [anon_sym_QMARK] = ACTIONS(4064), - [anon_sym_BANG] = ACTIONS(4064), - [anon_sym_go] = ACTIONS(4064), - [anon_sym_spawn] = ACTIONS(4064), - [anon_sym_json_DOTdecode] = ACTIONS(4064), - [anon_sym_LBRACK2] = ACTIONS(4064), - [anon_sym_TILDE] = ACTIONS(4064), - [anon_sym_CARET] = ACTIONS(4064), - [anon_sym_AMP] = ACTIONS(4064), - [anon_sym_LT_DASH] = ACTIONS(4064), - [sym_none] = ACTIONS(4064), - [sym_true] = ACTIONS(4064), - [sym_false] = ACTIONS(4064), - [sym_nil] = ACTIONS(4064), - [anon_sym_if] = ACTIONS(4064), - [anon_sym_DOLLARif] = ACTIONS(4064), - [anon_sym_match] = ACTIONS(4064), - [anon_sym_select] = ACTIONS(4064), - [anon_sym_lock] = ACTIONS(4064), - [anon_sym_rlock] = ACTIONS(4064), - [anon_sym_unsafe] = ACTIONS(4064), - [anon_sym_sql] = ACTIONS(4064), - [sym_int_literal] = ACTIONS(4064), - [sym_float_literal] = ACTIONS(4064), - [sym_rune_literal] = ACTIONS(4064), - [sym_pseudo_compile_time_identifier] = ACTIONS(4064), - [anon_sym_shared] = ACTIONS(4064), - [anon_sym_map_LBRACK] = ACTIONS(4064), - [anon_sym_chan] = ACTIONS(4064), - [anon_sym_thread] = ACTIONS(4064), - [anon_sym_atomic] = ACTIONS(4064), - [anon_sym_assert] = ACTIONS(4064), - [anon_sym_defer] = ACTIONS(4064), - [anon_sym_goto] = ACTIONS(4064), - [anon_sym_break] = ACTIONS(4064), - [anon_sym_continue] = ACTIONS(4064), - [anon_sym_return] = ACTIONS(4064), - [anon_sym_DOLLARfor] = ACTIONS(4064), - [anon_sym_for] = ACTIONS(4064), - [anon_sym_POUND] = ACTIONS(4064), - [anon_sym_asm] = ACTIONS(4064), - [anon_sym_AT_LBRACK] = ACTIONS(4064), - [sym___double_quote] = ACTIONS(4064), - [sym___single_quote] = ACTIONS(4064), - [sym___c_double_quote] = ACTIONS(4064), - [sym___c_single_quote] = ACTIONS(4064), - [sym___r_double_quote] = ACTIONS(4064), - [sym___r_single_quote] = ACTIONS(4064), + [anon_sym_DOT] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4062), + [anon_sym_LPAREN] = ACTIONS(4062), + [anon_sym___global] = ACTIONS(4062), + [anon_sym_type] = ACTIONS(4062), + [anon_sym_fn] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4062), + [anon_sym_struct] = ACTIONS(4062), + [anon_sym_union] = ACTIONS(4062), + [anon_sym_pub] = ACTIONS(4062), + [anon_sym_mut] = ACTIONS(4062), + [anon_sym_enum] = ACTIONS(4062), + [anon_sym_interface] = ACTIONS(4062), + [anon_sym_QMARK] = ACTIONS(4062), + [anon_sym_BANG] = ACTIONS(4062), + [anon_sym_go] = ACTIONS(4062), + [anon_sym_spawn] = ACTIONS(4062), + [anon_sym_json_DOTdecode] = ACTIONS(4062), + [anon_sym_LBRACK2] = ACTIONS(4062), + [anon_sym_TILDE] = ACTIONS(4062), + [anon_sym_CARET] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_LT_DASH] = ACTIONS(4062), + [sym_none] = ACTIONS(4062), + [sym_true] = ACTIONS(4062), + [sym_false] = ACTIONS(4062), + [sym_nil] = ACTIONS(4062), + [anon_sym_if] = ACTIONS(4062), + [anon_sym_DOLLARif] = ACTIONS(4062), + [anon_sym_match] = ACTIONS(4062), + [anon_sym_select] = ACTIONS(4062), + [anon_sym_lock] = ACTIONS(4062), + [anon_sym_rlock] = ACTIONS(4062), + [anon_sym_unsafe] = ACTIONS(4062), + [anon_sym_sql] = ACTIONS(4062), + [sym_int_literal] = ACTIONS(4062), + [sym_float_literal] = ACTIONS(4062), + [sym_rune_literal] = ACTIONS(4062), + [anon_sym_SQUOTE] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [anon_sym_c_SQUOTE] = ACTIONS(4062), + [anon_sym_c_DQUOTE] = ACTIONS(4062), + [anon_sym_r_SQUOTE] = ACTIONS(4062), + [anon_sym_r_DQUOTE] = ACTIONS(4062), + [sym_pseudo_compile_time_identifier] = ACTIONS(4062), + [anon_sym_shared] = ACTIONS(4062), + [anon_sym_map_LBRACK] = ACTIONS(4062), + [anon_sym_chan] = ACTIONS(4062), + [anon_sym_thread] = ACTIONS(4062), + [anon_sym_atomic] = ACTIONS(4062), + [anon_sym_assert] = ACTIONS(4062), + [anon_sym_defer] = ACTIONS(4062), + [anon_sym_goto] = ACTIONS(4062), + [anon_sym_break] = ACTIONS(4062), + [anon_sym_continue] = ACTIONS(4062), + [anon_sym_return] = ACTIONS(4062), + [anon_sym_DOLLARfor] = ACTIONS(4062), + [anon_sym_for] = ACTIONS(4062), + [anon_sym_POUND] = ACTIONS(4062), + [anon_sym_asm] = ACTIONS(4062), + [anon_sym_AT_LBRACK] = ACTIONS(4062), }, [1431] = { [sym_line_comment] = STATE(1431), [sym_block_comment] = STATE(1431), - [ts_builtin_sym_end] = ACTIONS(3989), - [sym_identifier] = ACTIONS(3991), - [anon_sym_LF] = ACTIONS(3991), - [anon_sym_CR] = ACTIONS(3991), - [anon_sym_CR_LF] = ACTIONS(3991), + [sym_block] = STATE(1522), + [ts_builtin_sym_end] = ACTIONS(4064), + [sym_identifier] = ACTIONS(4066), + [anon_sym_LF] = ACTIONS(4066), + [anon_sym_CR] = ACTIONS(4066), + [anon_sym_CR_LF] = ACTIONS(4066), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3991), - [anon_sym_const] = ACTIONS(3991), - [anon_sym_LPAREN] = ACTIONS(3991), - [anon_sym___global] = ACTIONS(3991), - [anon_sym_type] = ACTIONS(3991), - [anon_sym_PIPE] = ACTIONS(3991), - [anon_sym_fn] = ACTIONS(3991), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(3991), - [anon_sym_struct] = ACTIONS(3991), - [anon_sym_union] = ACTIONS(3991), - [anon_sym_pub] = ACTIONS(3991), - [anon_sym_mut] = ACTIONS(3991), - [anon_sym_enum] = ACTIONS(3991), - [anon_sym_interface] = ACTIONS(3991), - [anon_sym_QMARK] = ACTIONS(3991), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_go] = ACTIONS(3991), - [anon_sym_spawn] = ACTIONS(3991), - [anon_sym_json_DOTdecode] = ACTIONS(3991), - [anon_sym_LBRACK2] = ACTIONS(3991), - [anon_sym_TILDE] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_DASH] = ACTIONS(3991), - [sym_none] = ACTIONS(3991), - [sym_true] = ACTIONS(3991), - [sym_false] = ACTIONS(3991), - [sym_nil] = ACTIONS(3991), - [anon_sym_if] = ACTIONS(3991), - [anon_sym_DOLLARif] = ACTIONS(3991), - [anon_sym_match] = ACTIONS(3991), - [anon_sym_select] = ACTIONS(3991), - [anon_sym_lock] = ACTIONS(3991), - [anon_sym_rlock] = ACTIONS(3991), - [anon_sym_unsafe] = ACTIONS(3991), - [anon_sym_sql] = ACTIONS(3991), - [sym_int_literal] = ACTIONS(3991), - [sym_float_literal] = ACTIONS(3991), - [sym_rune_literal] = ACTIONS(3991), - [sym_pseudo_compile_time_identifier] = ACTIONS(3991), - [anon_sym_shared] = ACTIONS(3991), - [anon_sym_map_LBRACK] = ACTIONS(3991), - [anon_sym_chan] = ACTIONS(3991), - [anon_sym_thread] = ACTIONS(3991), - [anon_sym_atomic] = ACTIONS(3991), - [anon_sym_assert] = ACTIONS(3991), - [anon_sym_defer] = ACTIONS(3991), - [anon_sym_goto] = ACTIONS(3991), - [anon_sym_break] = ACTIONS(3991), - [anon_sym_continue] = ACTIONS(3991), - [anon_sym_return] = ACTIONS(3991), - [anon_sym_DOLLARfor] = ACTIONS(3991), - [anon_sym_for] = ACTIONS(3991), - [anon_sym_POUND] = ACTIONS(3991), - [anon_sym_asm] = ACTIONS(3991), - [anon_sym_AT_LBRACK] = ACTIONS(3991), - [sym___double_quote] = ACTIONS(3991), - [sym___single_quote] = ACTIONS(3991), - [sym___c_double_quote] = ACTIONS(3991), - [sym___c_single_quote] = ACTIONS(3991), - [sym___r_double_quote] = ACTIONS(3991), - [sym___r_single_quote] = ACTIONS(3991), + [anon_sym_DOT] = ACTIONS(4066), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4066), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym___global] = ACTIONS(4066), + [anon_sym_type] = ACTIONS(4066), + [anon_sym_fn] = ACTIONS(4066), + [anon_sym_PLUS] = ACTIONS(4066), + [anon_sym_DASH] = ACTIONS(4066), + [anon_sym_STAR] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(4066), + [anon_sym_union] = ACTIONS(4066), + [anon_sym_pub] = ACTIONS(4066), + [anon_sym_mut] = ACTIONS(4066), + [anon_sym_enum] = ACTIONS(4066), + [anon_sym_interface] = ACTIONS(4066), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_BANG] = ACTIONS(4066), + [anon_sym_go] = ACTIONS(4066), + [anon_sym_spawn] = ACTIONS(4066), + [anon_sym_json_DOTdecode] = ACTIONS(4066), + [anon_sym_LBRACK2] = ACTIONS(4066), + [anon_sym_TILDE] = ACTIONS(4066), + [anon_sym_CARET] = ACTIONS(4066), + [anon_sym_AMP] = ACTIONS(4066), + [anon_sym_LT_DASH] = ACTIONS(4066), + [sym_none] = ACTIONS(4066), + [sym_true] = ACTIONS(4066), + [sym_false] = ACTIONS(4066), + [sym_nil] = ACTIONS(4066), + [anon_sym_if] = ACTIONS(4066), + [anon_sym_DOLLARif] = ACTIONS(4066), + [anon_sym_match] = ACTIONS(4066), + [anon_sym_select] = ACTIONS(4066), + [anon_sym_lock] = ACTIONS(4066), + [anon_sym_rlock] = ACTIONS(4066), + [anon_sym_unsafe] = ACTIONS(4066), + [anon_sym_sql] = ACTIONS(4066), + [sym_int_literal] = ACTIONS(4066), + [sym_float_literal] = ACTIONS(4066), + [sym_rune_literal] = ACTIONS(4066), + [anon_sym_SQUOTE] = ACTIONS(4066), + [anon_sym_DQUOTE] = ACTIONS(4066), + [anon_sym_c_SQUOTE] = ACTIONS(4066), + [anon_sym_c_DQUOTE] = ACTIONS(4066), + [anon_sym_r_SQUOTE] = ACTIONS(4066), + [anon_sym_r_DQUOTE] = ACTIONS(4066), + [sym_pseudo_compile_time_identifier] = ACTIONS(4066), + [anon_sym_shared] = ACTIONS(4066), + [anon_sym_map_LBRACK] = ACTIONS(4066), + [anon_sym_chan] = ACTIONS(4066), + [anon_sym_thread] = ACTIONS(4066), + [anon_sym_atomic] = ACTIONS(4066), + [anon_sym_assert] = ACTIONS(4066), + [anon_sym_defer] = ACTIONS(4066), + [anon_sym_goto] = ACTIONS(4066), + [anon_sym_break] = ACTIONS(4066), + [anon_sym_continue] = ACTIONS(4066), + [anon_sym_return] = ACTIONS(4066), + [anon_sym_DOLLARfor] = ACTIONS(4066), + [anon_sym_for] = ACTIONS(4066), + [anon_sym_POUND] = ACTIONS(4066), + [anon_sym_asm] = ACTIONS(4066), + [anon_sym_AT_LBRACK] = ACTIONS(4066), }, [1432] = { [sym_line_comment] = STATE(1432), [sym_block_comment] = STATE(1432), - [sym_block] = STATE(1566), - [ts_builtin_sym_end] = ACTIONS(4066), + [sym_reference_expression] = STATE(4386), + [sym_type_reference_expression] = STATE(2419), + [sym_plain_type] = STATE(2541), + [sym__plain_type_without_special] = STATE(2533), + [sym_anon_struct_type] = STATE(2535), + [sym_multi_return_type] = STATE(2533), + [sym_result_type] = STATE(2533), + [sym_option_type] = STATE(2533), + [sym_qualified_type] = STATE(2419), + [sym_fixed_array_type] = STATE(2535), + [sym_array_type] = STATE(2535), + [sym_pointer_type] = STATE(2535), + [sym_wrong_pointer_type] = STATE(2535), + [sym_map_type] = STATE(2535), + [sym_channel_type] = STATE(2535), + [sym_shared_type] = STATE(2535), + [sym_thread_type] = STATE(2535), + [sym_atomic_type] = STATE(2535), + [sym_generic_type] = STATE(2535), + [sym_function_type] = STATE(2535), [sym_identifier] = ACTIONS(4068), - [anon_sym_LF] = ACTIONS(4068), - [anon_sym_CR] = ACTIONS(4068), - [anon_sym_CR_LF] = ACTIONS(4068), + [anon_sym_LF] = ACTIONS(567), + [anon_sym_CR] = ACTIONS(567), + [anon_sym_CR_LF] = ACTIONS(567), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4068), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4068), - [anon_sym_LPAREN] = ACTIONS(4068), - [anon_sym___global] = ACTIONS(4068), - [anon_sym_type] = ACTIONS(4068), - [anon_sym_fn] = ACTIONS(4068), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_DASH] = ACTIONS(4068), - [anon_sym_STAR] = ACTIONS(4068), - [anon_sym_struct] = ACTIONS(4068), - [anon_sym_union] = ACTIONS(4068), - [anon_sym_pub] = ACTIONS(4068), - [anon_sym_mut] = ACTIONS(4068), - [anon_sym_enum] = ACTIONS(4068), - [anon_sym_interface] = ACTIONS(4068), - [anon_sym_QMARK] = ACTIONS(4068), - [anon_sym_BANG] = ACTIONS(4068), - [anon_sym_go] = ACTIONS(4068), - [anon_sym_spawn] = ACTIONS(4068), - [anon_sym_json_DOTdecode] = ACTIONS(4068), - [anon_sym_LBRACK2] = ACTIONS(4068), - [anon_sym_TILDE] = ACTIONS(4068), - [anon_sym_CARET] = ACTIONS(4068), - [anon_sym_AMP] = ACTIONS(4068), - [anon_sym_LT_DASH] = ACTIONS(4068), - [sym_none] = ACTIONS(4068), - [sym_true] = ACTIONS(4068), - [sym_false] = ACTIONS(4068), - [sym_nil] = ACTIONS(4068), - [anon_sym_if] = ACTIONS(4068), - [anon_sym_DOLLARif] = ACTIONS(4068), - [anon_sym_match] = ACTIONS(4068), - [anon_sym_select] = ACTIONS(4068), - [anon_sym_lock] = ACTIONS(4068), - [anon_sym_rlock] = ACTIONS(4068), - [anon_sym_unsafe] = ACTIONS(4068), - [anon_sym_sql] = ACTIONS(4068), - [sym_int_literal] = ACTIONS(4068), - [sym_float_literal] = ACTIONS(4068), - [sym_rune_literal] = ACTIONS(4068), - [sym_pseudo_compile_time_identifier] = ACTIONS(4068), - [anon_sym_shared] = ACTIONS(4068), - [anon_sym_map_LBRACK] = ACTIONS(4068), - [anon_sym_chan] = ACTIONS(4068), - [anon_sym_thread] = ACTIONS(4068), - [anon_sym_atomic] = ACTIONS(4068), - [anon_sym_assert] = ACTIONS(4068), - [anon_sym_defer] = ACTIONS(4068), - [anon_sym_goto] = ACTIONS(4068), - [anon_sym_break] = ACTIONS(4068), - [anon_sym_continue] = ACTIONS(4068), - [anon_sym_return] = ACTIONS(4068), - [anon_sym_DOLLARfor] = ACTIONS(4068), - [anon_sym_for] = ACTIONS(4068), - [anon_sym_POUND] = ACTIONS(4068), - [anon_sym_asm] = ACTIONS(4068), - [anon_sym_AT_LBRACK] = ACTIONS(4068), - [sym___double_quote] = ACTIONS(4068), - [sym___single_quote] = ACTIONS(4068), - [sym___c_double_quote] = ACTIONS(4068), - [sym___c_single_quote] = ACTIONS(4068), - [sym___r_double_quote] = ACTIONS(4068), - [sym___r_single_quote] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_as] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(4070), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(4074), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(4076), + [anon_sym_PLUS_PLUS] = ACTIONS(567), + [anon_sym_DASH_DASH] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(4078), + [anon_sym_BANG] = ACTIONS(4080), + [anon_sym_LBRACK2] = ACTIONS(4082), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(4084), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(567), + [anon_sym_AMP_CARET] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(567), + [anon_sym_POUND_LBRACK] = ACTIONS(567), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(567), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(567), + [anon_sym_shared] = ACTIONS(4086), + [anon_sym_map_LBRACK] = ACTIONS(4088), + [anon_sym_chan] = ACTIONS(4090), + [anon_sym_thread] = ACTIONS(4092), + [anon_sym_atomic] = ACTIONS(4094), }, [1433] = { [sym_line_comment] = STATE(1433), [sym_block_comment] = STATE(1433), - [sym_block] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(4070), - [sym_identifier] = ACTIONS(4072), - [anon_sym_LF] = ACTIONS(4072), - [anon_sym_CR] = ACTIONS(4072), - [anon_sym_CR_LF] = ACTIONS(4072), + [sym_block] = STATE(1521), + [ts_builtin_sym_end] = ACTIONS(4096), + [sym_identifier] = ACTIONS(4098), + [anon_sym_LF] = ACTIONS(4098), + [anon_sym_CR] = ACTIONS(4098), + [anon_sym_CR_LF] = ACTIONS(4098), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4072), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4072), - [anon_sym_LPAREN] = ACTIONS(4072), - [anon_sym___global] = ACTIONS(4072), - [anon_sym_type] = ACTIONS(4072), - [anon_sym_fn] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(4072), - [anon_sym_DASH] = ACTIONS(4072), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_struct] = ACTIONS(4072), - [anon_sym_union] = ACTIONS(4072), - [anon_sym_pub] = ACTIONS(4072), - [anon_sym_mut] = ACTIONS(4072), - [anon_sym_enum] = ACTIONS(4072), - [anon_sym_interface] = ACTIONS(4072), - [anon_sym_QMARK] = ACTIONS(4072), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_go] = ACTIONS(4072), - [anon_sym_spawn] = ACTIONS(4072), - [anon_sym_json_DOTdecode] = ACTIONS(4072), - [anon_sym_LBRACK2] = ACTIONS(4072), - [anon_sym_TILDE] = ACTIONS(4072), - [anon_sym_CARET] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4072), - [anon_sym_LT_DASH] = ACTIONS(4072), - [sym_none] = ACTIONS(4072), - [sym_true] = ACTIONS(4072), - [sym_false] = ACTIONS(4072), - [sym_nil] = ACTIONS(4072), - [anon_sym_if] = ACTIONS(4072), - [anon_sym_DOLLARif] = ACTIONS(4072), - [anon_sym_match] = ACTIONS(4072), - [anon_sym_select] = ACTIONS(4072), - [anon_sym_lock] = ACTIONS(4072), - [anon_sym_rlock] = ACTIONS(4072), - [anon_sym_unsafe] = ACTIONS(4072), - [anon_sym_sql] = ACTIONS(4072), - [sym_int_literal] = ACTIONS(4072), - [sym_float_literal] = ACTIONS(4072), - [sym_rune_literal] = ACTIONS(4072), - [sym_pseudo_compile_time_identifier] = ACTIONS(4072), - [anon_sym_shared] = ACTIONS(4072), - [anon_sym_map_LBRACK] = ACTIONS(4072), - [anon_sym_chan] = ACTIONS(4072), - [anon_sym_thread] = ACTIONS(4072), - [anon_sym_atomic] = ACTIONS(4072), - [anon_sym_assert] = ACTIONS(4072), - [anon_sym_defer] = ACTIONS(4072), - [anon_sym_goto] = ACTIONS(4072), - [anon_sym_break] = ACTIONS(4072), - [anon_sym_continue] = ACTIONS(4072), - [anon_sym_return] = ACTIONS(4072), - [anon_sym_DOLLARfor] = ACTIONS(4072), - [anon_sym_for] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4072), - [anon_sym_asm] = ACTIONS(4072), - [anon_sym_AT_LBRACK] = ACTIONS(4072), - [sym___double_quote] = ACTIONS(4072), - [sym___single_quote] = ACTIONS(4072), - [sym___c_double_quote] = ACTIONS(4072), - [sym___c_single_quote] = ACTIONS(4072), - [sym___r_double_quote] = ACTIONS(4072), - [sym___r_single_quote] = ACTIONS(4072), + [anon_sym_DOT] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4098), + [anon_sym_LPAREN] = ACTIONS(4098), + [anon_sym___global] = ACTIONS(4098), + [anon_sym_type] = ACTIONS(4098), + [anon_sym_fn] = ACTIONS(4098), + [anon_sym_PLUS] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4098), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_struct] = ACTIONS(4098), + [anon_sym_union] = ACTIONS(4098), + [anon_sym_pub] = ACTIONS(4098), + [anon_sym_mut] = ACTIONS(4098), + [anon_sym_enum] = ACTIONS(4098), + [anon_sym_interface] = ACTIONS(4098), + [anon_sym_QMARK] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(4098), + [anon_sym_go] = ACTIONS(4098), + [anon_sym_spawn] = ACTIONS(4098), + [anon_sym_json_DOTdecode] = ACTIONS(4098), + [anon_sym_LBRACK2] = ACTIONS(4098), + [anon_sym_TILDE] = ACTIONS(4098), + [anon_sym_CARET] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4098), + [anon_sym_LT_DASH] = ACTIONS(4098), + [sym_none] = ACTIONS(4098), + [sym_true] = ACTIONS(4098), + [sym_false] = ACTIONS(4098), + [sym_nil] = ACTIONS(4098), + [anon_sym_if] = ACTIONS(4098), + [anon_sym_DOLLARif] = ACTIONS(4098), + [anon_sym_match] = ACTIONS(4098), + [anon_sym_select] = ACTIONS(4098), + [anon_sym_lock] = ACTIONS(4098), + [anon_sym_rlock] = ACTIONS(4098), + [anon_sym_unsafe] = ACTIONS(4098), + [anon_sym_sql] = ACTIONS(4098), + [sym_int_literal] = ACTIONS(4098), + [sym_float_literal] = ACTIONS(4098), + [sym_rune_literal] = ACTIONS(4098), + [anon_sym_SQUOTE] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [anon_sym_c_SQUOTE] = ACTIONS(4098), + [anon_sym_c_DQUOTE] = ACTIONS(4098), + [anon_sym_r_SQUOTE] = ACTIONS(4098), + [anon_sym_r_DQUOTE] = ACTIONS(4098), + [sym_pseudo_compile_time_identifier] = ACTIONS(4098), + [anon_sym_shared] = ACTIONS(4098), + [anon_sym_map_LBRACK] = ACTIONS(4098), + [anon_sym_chan] = ACTIONS(4098), + [anon_sym_thread] = ACTIONS(4098), + [anon_sym_atomic] = ACTIONS(4098), + [anon_sym_assert] = ACTIONS(4098), + [anon_sym_defer] = ACTIONS(4098), + [anon_sym_goto] = ACTIONS(4098), + [anon_sym_break] = ACTIONS(4098), + [anon_sym_continue] = ACTIONS(4098), + [anon_sym_return] = ACTIONS(4098), + [anon_sym_DOLLARfor] = ACTIONS(4098), + [anon_sym_for] = ACTIONS(4098), + [anon_sym_POUND] = ACTIONS(4098), + [anon_sym_asm] = ACTIONS(4098), + [anon_sym_AT_LBRACK] = ACTIONS(4098), }, [1434] = { [sym_line_comment] = STATE(1434), [sym_block_comment] = STATE(1434), - [sym_block] = STATE(1562), - [ts_builtin_sym_end] = ACTIONS(4074), - [sym_identifier] = ACTIONS(4076), - [anon_sym_LF] = ACTIONS(4076), - [anon_sym_CR] = ACTIONS(4076), - [anon_sym_CR_LF] = ACTIONS(4076), + [sym_block] = STATE(1569), + [ts_builtin_sym_end] = ACTIONS(4100), + [sym_identifier] = ACTIONS(4102), + [anon_sym_LF] = ACTIONS(4102), + [anon_sym_CR] = ACTIONS(4102), + [anon_sym_CR_LF] = ACTIONS(4102), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4076), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4076), - [anon_sym_LPAREN] = ACTIONS(4076), - [anon_sym___global] = ACTIONS(4076), - [anon_sym_type] = ACTIONS(4076), - [anon_sym_fn] = ACTIONS(4076), - [anon_sym_PLUS] = ACTIONS(4076), - [anon_sym_DASH] = ACTIONS(4076), - [anon_sym_STAR] = ACTIONS(4076), - [anon_sym_struct] = ACTIONS(4076), - [anon_sym_union] = ACTIONS(4076), - [anon_sym_pub] = ACTIONS(4076), - [anon_sym_mut] = ACTIONS(4076), - [anon_sym_enum] = ACTIONS(4076), - [anon_sym_interface] = ACTIONS(4076), - [anon_sym_QMARK] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(4076), - [anon_sym_go] = ACTIONS(4076), - [anon_sym_spawn] = ACTIONS(4076), - [anon_sym_json_DOTdecode] = ACTIONS(4076), - [anon_sym_LBRACK2] = ACTIONS(4076), - [anon_sym_TILDE] = ACTIONS(4076), - [anon_sym_CARET] = ACTIONS(4076), - [anon_sym_AMP] = ACTIONS(4076), - [anon_sym_LT_DASH] = ACTIONS(4076), - [sym_none] = ACTIONS(4076), - [sym_true] = ACTIONS(4076), - [sym_false] = ACTIONS(4076), - [sym_nil] = ACTIONS(4076), - [anon_sym_if] = ACTIONS(4076), - [anon_sym_DOLLARif] = ACTIONS(4076), - [anon_sym_match] = ACTIONS(4076), - [anon_sym_select] = ACTIONS(4076), - [anon_sym_lock] = ACTIONS(4076), - [anon_sym_rlock] = ACTIONS(4076), - [anon_sym_unsafe] = ACTIONS(4076), - [anon_sym_sql] = ACTIONS(4076), - [sym_int_literal] = ACTIONS(4076), - [sym_float_literal] = ACTIONS(4076), - [sym_rune_literal] = ACTIONS(4076), - [sym_pseudo_compile_time_identifier] = ACTIONS(4076), - [anon_sym_shared] = ACTIONS(4076), - [anon_sym_map_LBRACK] = ACTIONS(4076), - [anon_sym_chan] = ACTIONS(4076), - [anon_sym_thread] = ACTIONS(4076), - [anon_sym_atomic] = ACTIONS(4076), - [anon_sym_assert] = ACTIONS(4076), - [anon_sym_defer] = ACTIONS(4076), - [anon_sym_goto] = ACTIONS(4076), - [anon_sym_break] = ACTIONS(4076), - [anon_sym_continue] = ACTIONS(4076), - [anon_sym_return] = ACTIONS(4076), - [anon_sym_DOLLARfor] = ACTIONS(4076), - [anon_sym_for] = ACTIONS(4076), - [anon_sym_POUND] = ACTIONS(4076), - [anon_sym_asm] = ACTIONS(4076), - [anon_sym_AT_LBRACK] = ACTIONS(4076), - [sym___double_quote] = ACTIONS(4076), - [sym___single_quote] = ACTIONS(4076), - [sym___c_double_quote] = ACTIONS(4076), - [sym___c_single_quote] = ACTIONS(4076), - [sym___r_double_quote] = ACTIONS(4076), - [sym___r_single_quote] = ACTIONS(4076), + [anon_sym_DOT] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4102), + [anon_sym_LPAREN] = ACTIONS(4102), + [anon_sym___global] = ACTIONS(4102), + [anon_sym_type] = ACTIONS(4102), + [anon_sym_fn] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4102), + [anon_sym_struct] = ACTIONS(4102), + [anon_sym_union] = ACTIONS(4102), + [anon_sym_pub] = ACTIONS(4102), + [anon_sym_mut] = ACTIONS(4102), + [anon_sym_enum] = ACTIONS(4102), + [anon_sym_interface] = ACTIONS(4102), + [anon_sym_QMARK] = ACTIONS(4102), + [anon_sym_BANG] = ACTIONS(4102), + [anon_sym_go] = ACTIONS(4102), + [anon_sym_spawn] = ACTIONS(4102), + [anon_sym_json_DOTdecode] = ACTIONS(4102), + [anon_sym_LBRACK2] = ACTIONS(4102), + [anon_sym_TILDE] = ACTIONS(4102), + [anon_sym_CARET] = ACTIONS(4102), + [anon_sym_AMP] = ACTIONS(4102), + [anon_sym_LT_DASH] = ACTIONS(4102), + [sym_none] = ACTIONS(4102), + [sym_true] = ACTIONS(4102), + [sym_false] = ACTIONS(4102), + [sym_nil] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_DOLLARif] = ACTIONS(4102), + [anon_sym_match] = ACTIONS(4102), + [anon_sym_select] = ACTIONS(4102), + [anon_sym_lock] = ACTIONS(4102), + [anon_sym_rlock] = ACTIONS(4102), + [anon_sym_unsafe] = ACTIONS(4102), + [anon_sym_sql] = ACTIONS(4102), + [sym_int_literal] = ACTIONS(4102), + [sym_float_literal] = ACTIONS(4102), + [sym_rune_literal] = ACTIONS(4102), + [anon_sym_SQUOTE] = ACTIONS(4102), + [anon_sym_DQUOTE] = ACTIONS(4102), + [anon_sym_c_SQUOTE] = ACTIONS(4102), + [anon_sym_c_DQUOTE] = ACTIONS(4102), + [anon_sym_r_SQUOTE] = ACTIONS(4102), + [anon_sym_r_DQUOTE] = ACTIONS(4102), + [sym_pseudo_compile_time_identifier] = ACTIONS(4102), + [anon_sym_shared] = ACTIONS(4102), + [anon_sym_map_LBRACK] = ACTIONS(4102), + [anon_sym_chan] = ACTIONS(4102), + [anon_sym_thread] = ACTIONS(4102), + [anon_sym_atomic] = ACTIONS(4102), + [anon_sym_assert] = ACTIONS(4102), + [anon_sym_defer] = ACTIONS(4102), + [anon_sym_goto] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_DOLLARfor] = ACTIONS(4102), + [anon_sym_for] = ACTIONS(4102), + [anon_sym_POUND] = ACTIONS(4102), + [anon_sym_asm] = ACTIONS(4102), + [anon_sym_AT_LBRACK] = ACTIONS(4102), }, [1435] = { [sym_line_comment] = STATE(1435), [sym_block_comment] = STATE(1435), - [sym_block] = STATE(1561), - [ts_builtin_sym_end] = ACTIONS(4078), - [sym_identifier] = ACTIONS(4080), - [anon_sym_LF] = ACTIONS(4080), - [anon_sym_CR] = ACTIONS(4080), - [anon_sym_CR_LF] = ACTIONS(4080), + [sym_block] = STATE(1518), + [ts_builtin_sym_end] = ACTIONS(4104), + [sym_identifier] = ACTIONS(4106), + [anon_sym_LF] = ACTIONS(4106), + [anon_sym_CR] = ACTIONS(4106), + [anon_sym_CR_LF] = ACTIONS(4106), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4080), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4080), - [anon_sym_LPAREN] = ACTIONS(4080), - [anon_sym___global] = ACTIONS(4080), - [anon_sym_type] = ACTIONS(4080), - [anon_sym_fn] = ACTIONS(4080), - [anon_sym_PLUS] = ACTIONS(4080), - [anon_sym_DASH] = ACTIONS(4080), - [anon_sym_STAR] = ACTIONS(4080), - [anon_sym_struct] = ACTIONS(4080), - [anon_sym_union] = ACTIONS(4080), - [anon_sym_pub] = ACTIONS(4080), - [anon_sym_mut] = ACTIONS(4080), - [anon_sym_enum] = ACTIONS(4080), - [anon_sym_interface] = ACTIONS(4080), - [anon_sym_QMARK] = ACTIONS(4080), - [anon_sym_BANG] = ACTIONS(4080), - [anon_sym_go] = ACTIONS(4080), - [anon_sym_spawn] = ACTIONS(4080), - [anon_sym_json_DOTdecode] = ACTIONS(4080), - [anon_sym_LBRACK2] = ACTIONS(4080), - [anon_sym_TILDE] = ACTIONS(4080), - [anon_sym_CARET] = ACTIONS(4080), - [anon_sym_AMP] = ACTIONS(4080), - [anon_sym_LT_DASH] = ACTIONS(4080), - [sym_none] = ACTIONS(4080), - [sym_true] = ACTIONS(4080), - [sym_false] = ACTIONS(4080), - [sym_nil] = ACTIONS(4080), - [anon_sym_if] = ACTIONS(4080), - [anon_sym_DOLLARif] = ACTIONS(4080), - [anon_sym_match] = ACTIONS(4080), - [anon_sym_select] = ACTIONS(4080), - [anon_sym_lock] = ACTIONS(4080), - [anon_sym_rlock] = ACTIONS(4080), - [anon_sym_unsafe] = ACTIONS(4080), - [anon_sym_sql] = ACTIONS(4080), - [sym_int_literal] = ACTIONS(4080), - [sym_float_literal] = ACTIONS(4080), - [sym_rune_literal] = ACTIONS(4080), - [sym_pseudo_compile_time_identifier] = ACTIONS(4080), - [anon_sym_shared] = ACTIONS(4080), - [anon_sym_map_LBRACK] = ACTIONS(4080), - [anon_sym_chan] = ACTIONS(4080), - [anon_sym_thread] = ACTIONS(4080), - [anon_sym_atomic] = ACTIONS(4080), - [anon_sym_assert] = ACTIONS(4080), - [anon_sym_defer] = ACTIONS(4080), - [anon_sym_goto] = ACTIONS(4080), - [anon_sym_break] = ACTIONS(4080), - [anon_sym_continue] = ACTIONS(4080), - [anon_sym_return] = ACTIONS(4080), - [anon_sym_DOLLARfor] = ACTIONS(4080), - [anon_sym_for] = ACTIONS(4080), - [anon_sym_POUND] = ACTIONS(4080), - [anon_sym_asm] = ACTIONS(4080), - [anon_sym_AT_LBRACK] = ACTIONS(4080), - [sym___double_quote] = ACTIONS(4080), - [sym___single_quote] = ACTIONS(4080), - [sym___c_double_quote] = ACTIONS(4080), - [sym___c_single_quote] = ACTIONS(4080), - [sym___r_double_quote] = ACTIONS(4080), - [sym___r_single_quote] = ACTIONS(4080), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4106), + [anon_sym_LPAREN] = ACTIONS(4106), + [anon_sym___global] = ACTIONS(4106), + [anon_sym_type] = ACTIONS(4106), + [anon_sym_fn] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [anon_sym_struct] = ACTIONS(4106), + [anon_sym_union] = ACTIONS(4106), + [anon_sym_pub] = ACTIONS(4106), + [anon_sym_mut] = ACTIONS(4106), + [anon_sym_enum] = ACTIONS(4106), + [anon_sym_interface] = ACTIONS(4106), + [anon_sym_QMARK] = ACTIONS(4106), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_go] = ACTIONS(4106), + [anon_sym_spawn] = ACTIONS(4106), + [anon_sym_json_DOTdecode] = ACTIONS(4106), + [anon_sym_LBRACK2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(4106), + [anon_sym_CARET] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4106), + [anon_sym_LT_DASH] = ACTIONS(4106), + [sym_none] = ACTIONS(4106), + [sym_true] = ACTIONS(4106), + [sym_false] = ACTIONS(4106), + [sym_nil] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(4106), + [anon_sym_DOLLARif] = ACTIONS(4106), + [anon_sym_match] = ACTIONS(4106), + [anon_sym_select] = ACTIONS(4106), + [anon_sym_lock] = ACTIONS(4106), + [anon_sym_rlock] = ACTIONS(4106), + [anon_sym_unsafe] = ACTIONS(4106), + [anon_sym_sql] = ACTIONS(4106), + [sym_int_literal] = ACTIONS(4106), + [sym_float_literal] = ACTIONS(4106), + [sym_rune_literal] = ACTIONS(4106), + [anon_sym_SQUOTE] = ACTIONS(4106), + [anon_sym_DQUOTE] = ACTIONS(4106), + [anon_sym_c_SQUOTE] = ACTIONS(4106), + [anon_sym_c_DQUOTE] = ACTIONS(4106), + [anon_sym_r_SQUOTE] = ACTIONS(4106), + [anon_sym_r_DQUOTE] = ACTIONS(4106), + [sym_pseudo_compile_time_identifier] = ACTIONS(4106), + [anon_sym_shared] = ACTIONS(4106), + [anon_sym_map_LBRACK] = ACTIONS(4106), + [anon_sym_chan] = ACTIONS(4106), + [anon_sym_thread] = ACTIONS(4106), + [anon_sym_atomic] = ACTIONS(4106), + [anon_sym_assert] = ACTIONS(4106), + [anon_sym_defer] = ACTIONS(4106), + [anon_sym_goto] = ACTIONS(4106), + [anon_sym_break] = ACTIONS(4106), + [anon_sym_continue] = ACTIONS(4106), + [anon_sym_return] = ACTIONS(4106), + [anon_sym_DOLLARfor] = ACTIONS(4106), + [anon_sym_for] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4106), + [anon_sym_asm] = ACTIONS(4106), + [anon_sym_AT_LBRACK] = ACTIONS(4106), }, [1436] = { [sym_line_comment] = STATE(1436), [sym_block_comment] = STATE(1436), - [sym_block] = STATE(1559), - [ts_builtin_sym_end] = ACTIONS(4082), - [sym_identifier] = ACTIONS(4084), - [anon_sym_LF] = ACTIONS(4084), - [anon_sym_CR] = ACTIONS(4084), - [anon_sym_CR_LF] = ACTIONS(4084), + [sym_block] = STATE(1517), + [ts_builtin_sym_end] = ACTIONS(4108), + [sym_identifier] = ACTIONS(4110), + [anon_sym_LF] = ACTIONS(4110), + [anon_sym_CR] = ACTIONS(4110), + [anon_sym_CR_LF] = ACTIONS(4110), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4084), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym___global] = ACTIONS(4084), - [anon_sym_type] = ACTIONS(4084), - [anon_sym_fn] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_STAR] = ACTIONS(4084), - [anon_sym_struct] = ACTIONS(4084), - [anon_sym_union] = ACTIONS(4084), - [anon_sym_pub] = ACTIONS(4084), - [anon_sym_mut] = ACTIONS(4084), - [anon_sym_enum] = ACTIONS(4084), - [anon_sym_interface] = ACTIONS(4084), - [anon_sym_QMARK] = ACTIONS(4084), - [anon_sym_BANG] = ACTIONS(4084), - [anon_sym_go] = ACTIONS(4084), - [anon_sym_spawn] = ACTIONS(4084), - [anon_sym_json_DOTdecode] = ACTIONS(4084), - [anon_sym_LBRACK2] = ACTIONS(4084), - [anon_sym_TILDE] = ACTIONS(4084), - [anon_sym_CARET] = ACTIONS(4084), - [anon_sym_AMP] = ACTIONS(4084), - [anon_sym_LT_DASH] = ACTIONS(4084), - [sym_none] = ACTIONS(4084), - [sym_true] = ACTIONS(4084), - [sym_false] = ACTIONS(4084), - [sym_nil] = ACTIONS(4084), - [anon_sym_if] = ACTIONS(4084), - [anon_sym_DOLLARif] = ACTIONS(4084), - [anon_sym_match] = ACTIONS(4084), - [anon_sym_select] = ACTIONS(4084), - [anon_sym_lock] = ACTIONS(4084), - [anon_sym_rlock] = ACTIONS(4084), - [anon_sym_unsafe] = ACTIONS(4084), - [anon_sym_sql] = ACTIONS(4084), - [sym_int_literal] = ACTIONS(4084), - [sym_float_literal] = ACTIONS(4084), - [sym_rune_literal] = ACTIONS(4084), - [sym_pseudo_compile_time_identifier] = ACTIONS(4084), - [anon_sym_shared] = ACTIONS(4084), - [anon_sym_map_LBRACK] = ACTIONS(4084), - [anon_sym_chan] = ACTIONS(4084), - [anon_sym_thread] = ACTIONS(4084), - [anon_sym_atomic] = ACTIONS(4084), - [anon_sym_assert] = ACTIONS(4084), - [anon_sym_defer] = ACTIONS(4084), - [anon_sym_goto] = ACTIONS(4084), - [anon_sym_break] = ACTIONS(4084), - [anon_sym_continue] = ACTIONS(4084), - [anon_sym_return] = ACTIONS(4084), - [anon_sym_DOLLARfor] = ACTIONS(4084), - [anon_sym_for] = ACTIONS(4084), - [anon_sym_POUND] = ACTIONS(4084), - [anon_sym_asm] = ACTIONS(4084), - [anon_sym_AT_LBRACK] = ACTIONS(4084), - [sym___double_quote] = ACTIONS(4084), - [sym___single_quote] = ACTIONS(4084), - [sym___c_double_quote] = ACTIONS(4084), - [sym___c_single_quote] = ACTIONS(4084), - [sym___r_double_quote] = ACTIONS(4084), - [sym___r_single_quote] = ACTIONS(4084), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4110), + [anon_sym_LPAREN] = ACTIONS(4110), + [anon_sym___global] = ACTIONS(4110), + [anon_sym_type] = ACTIONS(4110), + [anon_sym_fn] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4110), + [anon_sym_DASH] = ACTIONS(4110), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_struct] = ACTIONS(4110), + [anon_sym_union] = ACTIONS(4110), + [anon_sym_pub] = ACTIONS(4110), + [anon_sym_mut] = ACTIONS(4110), + [anon_sym_enum] = ACTIONS(4110), + [anon_sym_interface] = ACTIONS(4110), + [anon_sym_QMARK] = ACTIONS(4110), + [anon_sym_BANG] = ACTIONS(4110), + [anon_sym_go] = ACTIONS(4110), + [anon_sym_spawn] = ACTIONS(4110), + [anon_sym_json_DOTdecode] = ACTIONS(4110), + [anon_sym_LBRACK2] = ACTIONS(4110), + [anon_sym_TILDE] = ACTIONS(4110), + [anon_sym_CARET] = ACTIONS(4110), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_LT_DASH] = ACTIONS(4110), + [sym_none] = ACTIONS(4110), + [sym_true] = ACTIONS(4110), + [sym_false] = ACTIONS(4110), + [sym_nil] = ACTIONS(4110), + [anon_sym_if] = ACTIONS(4110), + [anon_sym_DOLLARif] = ACTIONS(4110), + [anon_sym_match] = ACTIONS(4110), + [anon_sym_select] = ACTIONS(4110), + [anon_sym_lock] = ACTIONS(4110), + [anon_sym_rlock] = ACTIONS(4110), + [anon_sym_unsafe] = ACTIONS(4110), + [anon_sym_sql] = ACTIONS(4110), + [sym_int_literal] = ACTIONS(4110), + [sym_float_literal] = ACTIONS(4110), + [sym_rune_literal] = ACTIONS(4110), + [anon_sym_SQUOTE] = ACTIONS(4110), + [anon_sym_DQUOTE] = ACTIONS(4110), + [anon_sym_c_SQUOTE] = ACTIONS(4110), + [anon_sym_c_DQUOTE] = ACTIONS(4110), + [anon_sym_r_SQUOTE] = ACTIONS(4110), + [anon_sym_r_DQUOTE] = ACTIONS(4110), + [sym_pseudo_compile_time_identifier] = ACTIONS(4110), + [anon_sym_shared] = ACTIONS(4110), + [anon_sym_map_LBRACK] = ACTIONS(4110), + [anon_sym_chan] = ACTIONS(4110), + [anon_sym_thread] = ACTIONS(4110), + [anon_sym_atomic] = ACTIONS(4110), + [anon_sym_assert] = ACTIONS(4110), + [anon_sym_defer] = ACTIONS(4110), + [anon_sym_goto] = ACTIONS(4110), + [anon_sym_break] = ACTIONS(4110), + [anon_sym_continue] = ACTIONS(4110), + [anon_sym_return] = ACTIONS(4110), + [anon_sym_DOLLARfor] = ACTIONS(4110), + [anon_sym_for] = ACTIONS(4110), + [anon_sym_POUND] = ACTIONS(4110), + [anon_sym_asm] = ACTIONS(4110), + [anon_sym_AT_LBRACK] = ACTIONS(4110), }, [1437] = { [sym_line_comment] = STATE(1437), [sym_block_comment] = STATE(1437), - [sym_block] = STATE(1557), - [ts_builtin_sym_end] = ACTIONS(4086), - [sym_identifier] = ACTIONS(4088), - [anon_sym_LF] = ACTIONS(4088), - [anon_sym_CR] = ACTIONS(4088), - [anon_sym_CR_LF] = ACTIONS(4088), + [ts_builtin_sym_end] = ACTIONS(2425), + [sym_identifier] = ACTIONS(2427), + [anon_sym_LF] = ACTIONS(2427), + [anon_sym_CR] = ACTIONS(2427), + [anon_sym_CR_LF] = ACTIONS(2427), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4088), - [anon_sym_LPAREN] = ACTIONS(4088), - [anon_sym___global] = ACTIONS(4088), - [anon_sym_type] = ACTIONS(4088), - [anon_sym_fn] = ACTIONS(4088), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [anon_sym_struct] = ACTIONS(4088), - [anon_sym_union] = ACTIONS(4088), - [anon_sym_pub] = ACTIONS(4088), - [anon_sym_mut] = ACTIONS(4088), - [anon_sym_enum] = ACTIONS(4088), - [anon_sym_interface] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_go] = ACTIONS(4088), - [anon_sym_spawn] = ACTIONS(4088), - [anon_sym_json_DOTdecode] = ACTIONS(4088), - [anon_sym_LBRACK2] = ACTIONS(4088), - [anon_sym_TILDE] = ACTIONS(4088), - [anon_sym_CARET] = ACTIONS(4088), - [anon_sym_AMP] = ACTIONS(4088), - [anon_sym_LT_DASH] = ACTIONS(4088), - [sym_none] = ACTIONS(4088), - [sym_true] = ACTIONS(4088), - [sym_false] = ACTIONS(4088), - [sym_nil] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_DOLLARif] = ACTIONS(4088), - [anon_sym_match] = ACTIONS(4088), - [anon_sym_select] = ACTIONS(4088), - [anon_sym_lock] = ACTIONS(4088), - [anon_sym_rlock] = ACTIONS(4088), - [anon_sym_unsafe] = ACTIONS(4088), - [anon_sym_sql] = ACTIONS(4088), - [sym_int_literal] = ACTIONS(4088), - [sym_float_literal] = ACTIONS(4088), - [sym_rune_literal] = ACTIONS(4088), - [sym_pseudo_compile_time_identifier] = ACTIONS(4088), - [anon_sym_shared] = ACTIONS(4088), - [anon_sym_map_LBRACK] = ACTIONS(4088), - [anon_sym_chan] = ACTIONS(4088), - [anon_sym_thread] = ACTIONS(4088), - [anon_sym_atomic] = ACTIONS(4088), - [anon_sym_assert] = ACTIONS(4088), - [anon_sym_defer] = ACTIONS(4088), - [anon_sym_goto] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_DOLLARfor] = ACTIONS(4088), - [anon_sym_for] = ACTIONS(4088), - [anon_sym_POUND] = ACTIONS(4088), - [anon_sym_asm] = ACTIONS(4088), - [anon_sym_AT_LBRACK] = ACTIONS(4088), - [sym___double_quote] = ACTIONS(4088), - [sym___single_quote] = ACTIONS(4088), - [sym___c_double_quote] = ACTIONS(4088), - [sym___c_single_quote] = ACTIONS(4088), - [sym___r_double_quote] = ACTIONS(4088), - [sym___r_single_quote] = ACTIONS(4088), + [anon_sym_DOT] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_const] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym___global] = ACTIONS(2427), + [anon_sym_type] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2427), + [anon_sym_fn] = ACTIONS(2427), + [anon_sym_PLUS] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2427), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2427), + [anon_sym_union] = ACTIONS(2427), + [anon_sym_pub] = ACTIONS(2427), + [anon_sym_mut] = ACTIONS(2427), + [anon_sym_enum] = ACTIONS(2427), + [anon_sym_interface] = ACTIONS(2427), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_go] = ACTIONS(2427), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(2427), + [anon_sym_LBRACK2] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_CARET] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2427), + [anon_sym_LT_DASH] = ACTIONS(2427), + [sym_none] = ACTIONS(2427), + [sym_true] = ACTIONS(2427), + [sym_false] = ACTIONS(2427), + [sym_nil] = ACTIONS(2427), + [anon_sym_if] = ACTIONS(2427), + [anon_sym_DOLLARif] = ACTIONS(2427), + [anon_sym_match] = ACTIONS(2427), + [anon_sym_select] = ACTIONS(2427), + [anon_sym_lock] = ACTIONS(2427), + [anon_sym_rlock] = ACTIONS(2427), + [anon_sym_unsafe] = ACTIONS(2427), + [anon_sym_sql] = ACTIONS(2427), + [sym_int_literal] = ACTIONS(2427), + [sym_float_literal] = ACTIONS(2427), + [sym_rune_literal] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(2427), + [anon_sym_c_SQUOTE] = ACTIONS(2427), + [anon_sym_c_DQUOTE] = ACTIONS(2427), + [anon_sym_r_SQUOTE] = ACTIONS(2427), + [anon_sym_r_DQUOTE] = ACTIONS(2427), + [sym_pseudo_compile_time_identifier] = ACTIONS(2427), + [anon_sym_shared] = ACTIONS(2427), + [anon_sym_map_LBRACK] = ACTIONS(2427), + [anon_sym_chan] = ACTIONS(2427), + [anon_sym_thread] = ACTIONS(2427), + [anon_sym_atomic] = ACTIONS(2427), + [anon_sym_assert] = ACTIONS(2427), + [anon_sym_defer] = ACTIONS(2427), + [anon_sym_goto] = ACTIONS(2427), + [anon_sym_break] = ACTIONS(2427), + [anon_sym_continue] = ACTIONS(2427), + [anon_sym_return] = ACTIONS(2427), + [anon_sym_DOLLARfor] = ACTIONS(2427), + [anon_sym_for] = ACTIONS(2427), + [anon_sym_POUND] = ACTIONS(2427), + [anon_sym_asm] = ACTIONS(2427), + [anon_sym_AT_LBRACK] = ACTIONS(2427), }, [1438] = { [sym_line_comment] = STATE(1438), [sym_block_comment] = STATE(1438), - [sym_block] = STATE(1556), - [ts_builtin_sym_end] = ACTIONS(4090), - [sym_identifier] = ACTIONS(4092), - [anon_sym_LF] = ACTIONS(4092), - [anon_sym_CR] = ACTIONS(4092), - [anon_sym_CR_LF] = ACTIONS(4092), + [ts_builtin_sym_end] = ACTIONS(2179), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LF] = ACTIONS(2181), + [anon_sym_CR] = ACTIONS(2181), + [anon_sym_CR_LF] = ACTIONS(2181), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4092), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4092), - [anon_sym_LPAREN] = ACTIONS(4092), - [anon_sym___global] = ACTIONS(4092), - [anon_sym_type] = ACTIONS(4092), - [anon_sym_fn] = ACTIONS(4092), - [anon_sym_PLUS] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4092), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_struct] = ACTIONS(4092), - [anon_sym_union] = ACTIONS(4092), - [anon_sym_pub] = ACTIONS(4092), - [anon_sym_mut] = ACTIONS(4092), - [anon_sym_enum] = ACTIONS(4092), - [anon_sym_interface] = ACTIONS(4092), - [anon_sym_QMARK] = ACTIONS(4092), - [anon_sym_BANG] = ACTIONS(4092), - [anon_sym_go] = ACTIONS(4092), - [anon_sym_spawn] = ACTIONS(4092), - [anon_sym_json_DOTdecode] = ACTIONS(4092), - [anon_sym_LBRACK2] = ACTIONS(4092), - [anon_sym_TILDE] = ACTIONS(4092), - [anon_sym_CARET] = ACTIONS(4092), - [anon_sym_AMP] = ACTIONS(4092), - [anon_sym_LT_DASH] = ACTIONS(4092), - [sym_none] = ACTIONS(4092), - [sym_true] = ACTIONS(4092), - [sym_false] = ACTIONS(4092), - [sym_nil] = ACTIONS(4092), - [anon_sym_if] = ACTIONS(4092), - [anon_sym_DOLLARif] = ACTIONS(4092), - [anon_sym_match] = ACTIONS(4092), - [anon_sym_select] = ACTIONS(4092), - [anon_sym_lock] = ACTIONS(4092), - [anon_sym_rlock] = ACTIONS(4092), - [anon_sym_unsafe] = ACTIONS(4092), - [anon_sym_sql] = ACTIONS(4092), - [sym_int_literal] = ACTIONS(4092), - [sym_float_literal] = ACTIONS(4092), - [sym_rune_literal] = ACTIONS(4092), - [sym_pseudo_compile_time_identifier] = ACTIONS(4092), - [anon_sym_shared] = ACTIONS(4092), - [anon_sym_map_LBRACK] = ACTIONS(4092), - [anon_sym_chan] = ACTIONS(4092), - [anon_sym_thread] = ACTIONS(4092), - [anon_sym_atomic] = ACTIONS(4092), - [anon_sym_assert] = ACTIONS(4092), - [anon_sym_defer] = ACTIONS(4092), - [anon_sym_goto] = ACTIONS(4092), - [anon_sym_break] = ACTIONS(4092), - [anon_sym_continue] = ACTIONS(4092), - [anon_sym_return] = ACTIONS(4092), - [anon_sym_DOLLARfor] = ACTIONS(4092), - [anon_sym_for] = ACTIONS(4092), - [anon_sym_POUND] = ACTIONS(4092), - [anon_sym_asm] = ACTIONS(4092), - [anon_sym_AT_LBRACK] = ACTIONS(4092), - [sym___double_quote] = ACTIONS(4092), - [sym___single_quote] = ACTIONS(4092), - [sym___c_double_quote] = ACTIONS(4092), - [sym___c_single_quote] = ACTIONS(4092), - [sym___r_double_quote] = ACTIONS(4092), - [sym___r_single_quote] = ACTIONS(4092), + [anon_sym_DOT] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym___global] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_mut] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_interface] = ACTIONS(2181), + [anon_sym_QMARK] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2181), + [anon_sym_go] = ACTIONS(2181), + [anon_sym_spawn] = ACTIONS(2181), + [anon_sym_json_DOTdecode] = ACTIONS(2181), + [anon_sym_LBRACK2] = ACTIONS(2181), + [anon_sym_TILDE] = ACTIONS(2181), + [anon_sym_CARET] = ACTIONS(2181), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_LT_DASH] = ACTIONS(2181), + [sym_none] = ACTIONS(2181), + [sym_true] = ACTIONS(2181), + [sym_false] = ACTIONS(2181), + [sym_nil] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_DOLLARif] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_select] = ACTIONS(2181), + [anon_sym_lock] = ACTIONS(2181), + [anon_sym_rlock] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_sql] = ACTIONS(2181), + [sym_int_literal] = ACTIONS(2181), + [sym_float_literal] = ACTIONS(2181), + [sym_rune_literal] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_DQUOTE] = ACTIONS(2181), + [anon_sym_c_SQUOTE] = ACTIONS(2181), + [anon_sym_c_DQUOTE] = ACTIONS(2181), + [anon_sym_r_SQUOTE] = ACTIONS(2181), + [anon_sym_r_DQUOTE] = ACTIONS(2181), + [sym_pseudo_compile_time_identifier] = ACTIONS(2181), + [anon_sym_shared] = ACTIONS(2181), + [anon_sym_map_LBRACK] = ACTIONS(2181), + [anon_sym_chan] = ACTIONS(2181), + [anon_sym_thread] = ACTIONS(2181), + [anon_sym_atomic] = ACTIONS(2181), + [anon_sym_assert] = ACTIONS(2181), + [anon_sym_defer] = ACTIONS(2181), + [anon_sym_goto] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_DOLLARfor] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_POUND] = ACTIONS(2181), + [anon_sym_asm] = ACTIONS(2181), + [anon_sym_AT_LBRACK] = ACTIONS(2181), }, [1439] = { [sym_line_comment] = STATE(1439), [sym_block_comment] = STATE(1439), - [ts_builtin_sym_end] = ACTIONS(4094), - [sym_identifier] = ACTIONS(4096), - [anon_sym_LF] = ACTIONS(4096), - [anon_sym_CR] = ACTIONS(4096), - [anon_sym_CR_LF] = ACTIONS(4096), + [sym_block] = STATE(1563), + [ts_builtin_sym_end] = ACTIONS(4112), + [sym_identifier] = ACTIONS(4114), + [anon_sym_LF] = ACTIONS(4114), + [anon_sym_CR] = ACTIONS(4114), + [anon_sym_CR_LF] = ACTIONS(4114), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4096), - [anon_sym_const] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4096), - [anon_sym___global] = ACTIONS(4096), - [anon_sym_type] = ACTIONS(4096), - [anon_sym_PIPE] = ACTIONS(4096), - [anon_sym_fn] = ACTIONS(4096), - [anon_sym_PLUS] = ACTIONS(4096), - [anon_sym_DASH] = ACTIONS(4096), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_struct] = ACTIONS(4096), - [anon_sym_union] = ACTIONS(4096), - [anon_sym_pub] = ACTIONS(4096), - [anon_sym_mut] = ACTIONS(4096), - [anon_sym_enum] = ACTIONS(4096), - [anon_sym_interface] = ACTIONS(4096), - [anon_sym_QMARK] = ACTIONS(4096), - [anon_sym_BANG] = ACTIONS(4096), - [anon_sym_go] = ACTIONS(4096), - [anon_sym_spawn] = ACTIONS(4096), - [anon_sym_json_DOTdecode] = ACTIONS(4096), - [anon_sym_LBRACK2] = ACTIONS(4096), - [anon_sym_TILDE] = ACTIONS(4096), - [anon_sym_CARET] = ACTIONS(4096), - [anon_sym_AMP] = ACTIONS(4096), - [anon_sym_LT_DASH] = ACTIONS(4096), - [sym_none] = ACTIONS(4096), - [sym_true] = ACTIONS(4096), - [sym_false] = ACTIONS(4096), - [sym_nil] = ACTIONS(4096), - [anon_sym_if] = ACTIONS(4096), - [anon_sym_DOLLARif] = ACTIONS(4096), - [anon_sym_match] = ACTIONS(4096), - [anon_sym_select] = ACTIONS(4096), - [anon_sym_lock] = ACTIONS(4096), - [anon_sym_rlock] = ACTIONS(4096), - [anon_sym_unsafe] = ACTIONS(4096), - [anon_sym_sql] = ACTIONS(4096), - [sym_int_literal] = ACTIONS(4096), - [sym_float_literal] = ACTIONS(4096), - [sym_rune_literal] = ACTIONS(4096), - [sym_pseudo_compile_time_identifier] = ACTIONS(4096), - [anon_sym_shared] = ACTIONS(4096), - [anon_sym_map_LBRACK] = ACTIONS(4096), - [anon_sym_chan] = ACTIONS(4096), - [anon_sym_thread] = ACTIONS(4096), - [anon_sym_atomic] = ACTIONS(4096), - [anon_sym_assert] = ACTIONS(4096), - [anon_sym_defer] = ACTIONS(4096), - [anon_sym_goto] = ACTIONS(4096), - [anon_sym_break] = ACTIONS(4096), - [anon_sym_continue] = ACTIONS(4096), - [anon_sym_return] = ACTIONS(4096), - [anon_sym_DOLLARfor] = ACTIONS(4096), - [anon_sym_for] = ACTIONS(4096), - [anon_sym_POUND] = ACTIONS(4096), - [anon_sym_asm] = ACTIONS(4096), - [anon_sym_AT_LBRACK] = ACTIONS(4096), - [sym___double_quote] = ACTIONS(4096), - [sym___single_quote] = ACTIONS(4096), - [sym___c_double_quote] = ACTIONS(4096), - [sym___c_single_quote] = ACTIONS(4096), - [sym___r_double_quote] = ACTIONS(4096), - [sym___r_single_quote] = ACTIONS(4096), + [anon_sym_DOT] = ACTIONS(4114), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4114), + [anon_sym___global] = ACTIONS(4114), + [anon_sym_type] = ACTIONS(4114), + [anon_sym_fn] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4114), + [anon_sym_struct] = ACTIONS(4114), + [anon_sym_union] = ACTIONS(4114), + [anon_sym_pub] = ACTIONS(4114), + [anon_sym_mut] = ACTIONS(4114), + [anon_sym_enum] = ACTIONS(4114), + [anon_sym_interface] = ACTIONS(4114), + [anon_sym_QMARK] = ACTIONS(4114), + [anon_sym_BANG] = ACTIONS(4114), + [anon_sym_go] = ACTIONS(4114), + [anon_sym_spawn] = ACTIONS(4114), + [anon_sym_json_DOTdecode] = ACTIONS(4114), + [anon_sym_LBRACK2] = ACTIONS(4114), + [anon_sym_TILDE] = ACTIONS(4114), + [anon_sym_CARET] = ACTIONS(4114), + [anon_sym_AMP] = ACTIONS(4114), + [anon_sym_LT_DASH] = ACTIONS(4114), + [sym_none] = ACTIONS(4114), + [sym_true] = ACTIONS(4114), + [sym_false] = ACTIONS(4114), + [sym_nil] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_DOLLARif] = ACTIONS(4114), + [anon_sym_match] = ACTIONS(4114), + [anon_sym_select] = ACTIONS(4114), + [anon_sym_lock] = ACTIONS(4114), + [anon_sym_rlock] = ACTIONS(4114), + [anon_sym_unsafe] = ACTIONS(4114), + [anon_sym_sql] = ACTIONS(4114), + [sym_int_literal] = ACTIONS(4114), + [sym_float_literal] = ACTIONS(4114), + [sym_rune_literal] = ACTIONS(4114), + [anon_sym_SQUOTE] = ACTIONS(4114), + [anon_sym_DQUOTE] = ACTIONS(4114), + [anon_sym_c_SQUOTE] = ACTIONS(4114), + [anon_sym_c_DQUOTE] = ACTIONS(4114), + [anon_sym_r_SQUOTE] = ACTIONS(4114), + [anon_sym_r_DQUOTE] = ACTIONS(4114), + [sym_pseudo_compile_time_identifier] = ACTIONS(4114), + [anon_sym_shared] = ACTIONS(4114), + [anon_sym_map_LBRACK] = ACTIONS(4114), + [anon_sym_chan] = ACTIONS(4114), + [anon_sym_thread] = ACTIONS(4114), + [anon_sym_atomic] = ACTIONS(4114), + [anon_sym_assert] = ACTIONS(4114), + [anon_sym_defer] = ACTIONS(4114), + [anon_sym_goto] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_DOLLARfor] = ACTIONS(4114), + [anon_sym_for] = ACTIONS(4114), + [anon_sym_POUND] = ACTIONS(4114), + [anon_sym_asm] = ACTIONS(4114), + [anon_sym_AT_LBRACK] = ACTIONS(4114), }, [1440] = { [sym_line_comment] = STATE(1440), [sym_block_comment] = STATE(1440), - [sym_block] = STATE(1554), - [ts_builtin_sym_end] = ACTIONS(4098), - [sym_identifier] = ACTIONS(4100), - [anon_sym_LF] = ACTIONS(4100), - [anon_sym_CR] = ACTIONS(4100), - [anon_sym_CR_LF] = ACTIONS(4100), + [ts_builtin_sym_end] = ACTIONS(1897), + [sym_identifier] = ACTIONS(1899), + [anon_sym_LF] = ACTIONS(1899), + [anon_sym_CR] = ACTIONS(1899), + [anon_sym_CR_LF] = ACTIONS(1899), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4100), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4100), - [anon_sym_LPAREN] = ACTIONS(4100), - [anon_sym___global] = ACTIONS(4100), - [anon_sym_type] = ACTIONS(4100), - [anon_sym_fn] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(4100), - [anon_sym_union] = ACTIONS(4100), - [anon_sym_pub] = ACTIONS(4100), - [anon_sym_mut] = ACTIONS(4100), - [anon_sym_enum] = ACTIONS(4100), - [anon_sym_interface] = ACTIONS(4100), - [anon_sym_QMARK] = ACTIONS(4100), - [anon_sym_BANG] = ACTIONS(4100), - [anon_sym_go] = ACTIONS(4100), - [anon_sym_spawn] = ACTIONS(4100), - [anon_sym_json_DOTdecode] = ACTIONS(4100), - [anon_sym_LBRACK2] = ACTIONS(4100), - [anon_sym_TILDE] = ACTIONS(4100), - [anon_sym_CARET] = ACTIONS(4100), - [anon_sym_AMP] = ACTIONS(4100), - [anon_sym_LT_DASH] = ACTIONS(4100), - [sym_none] = ACTIONS(4100), - [sym_true] = ACTIONS(4100), - [sym_false] = ACTIONS(4100), - [sym_nil] = ACTIONS(4100), - [anon_sym_if] = ACTIONS(4100), - [anon_sym_DOLLARif] = ACTIONS(4100), - [anon_sym_match] = ACTIONS(4100), - [anon_sym_select] = ACTIONS(4100), - [anon_sym_lock] = ACTIONS(4100), - [anon_sym_rlock] = ACTIONS(4100), - [anon_sym_unsafe] = ACTIONS(4100), - [anon_sym_sql] = ACTIONS(4100), - [sym_int_literal] = ACTIONS(4100), - [sym_float_literal] = ACTIONS(4100), - [sym_rune_literal] = ACTIONS(4100), - [sym_pseudo_compile_time_identifier] = ACTIONS(4100), - [anon_sym_shared] = ACTIONS(4100), - [anon_sym_map_LBRACK] = ACTIONS(4100), - [anon_sym_chan] = ACTIONS(4100), - [anon_sym_thread] = ACTIONS(4100), - [anon_sym_atomic] = ACTIONS(4100), - [anon_sym_assert] = ACTIONS(4100), - [anon_sym_defer] = ACTIONS(4100), - [anon_sym_goto] = ACTIONS(4100), - [anon_sym_break] = ACTIONS(4100), - [anon_sym_continue] = ACTIONS(4100), - [anon_sym_return] = ACTIONS(4100), - [anon_sym_DOLLARfor] = ACTIONS(4100), - [anon_sym_for] = ACTIONS(4100), - [anon_sym_POUND] = ACTIONS(4100), - [anon_sym_asm] = ACTIONS(4100), - [anon_sym_AT_LBRACK] = ACTIONS(4100), - [sym___double_quote] = ACTIONS(4100), - [sym___single_quote] = ACTIONS(4100), - [sym___c_double_quote] = ACTIONS(4100), - [sym___c_single_quote] = ACTIONS(4100), - [sym___r_double_quote] = ACTIONS(4100), - [sym___r_single_quote] = ACTIONS(4100), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym___global] = ACTIONS(1899), + [anon_sym_type] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_struct] = ACTIONS(1899), + [anon_sym_union] = ACTIONS(1899), + [anon_sym_pub] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_enum] = ACTIONS(1899), + [anon_sym_interface] = ACTIONS(1899), + [anon_sym_QMARK] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_go] = ACTIONS(1899), + [anon_sym_spawn] = ACTIONS(1899), + [anon_sym_json_DOTdecode] = ACTIONS(1899), + [anon_sym_LBRACK2] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1899), + [sym_none] = ACTIONS(1899), + [sym_true] = ACTIONS(1899), + [sym_false] = ACTIONS(1899), + [sym_nil] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_DOLLARif] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_select] = ACTIONS(1899), + [anon_sym_lock] = ACTIONS(1899), + [anon_sym_rlock] = ACTIONS(1899), + [anon_sym_unsafe] = ACTIONS(1899), + [anon_sym_sql] = ACTIONS(1899), + [sym_int_literal] = ACTIONS(1899), + [sym_float_literal] = ACTIONS(1899), + [sym_rune_literal] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_c_SQUOTE] = ACTIONS(1899), + [anon_sym_c_DQUOTE] = ACTIONS(1899), + [anon_sym_r_SQUOTE] = ACTIONS(1899), + [anon_sym_r_DQUOTE] = ACTIONS(1899), + [sym_pseudo_compile_time_identifier] = ACTIONS(1899), + [anon_sym_shared] = ACTIONS(1899), + [anon_sym_map_LBRACK] = ACTIONS(1899), + [anon_sym_chan] = ACTIONS(1899), + [anon_sym_thread] = ACTIONS(1899), + [anon_sym_atomic] = ACTIONS(1899), + [anon_sym_assert] = ACTIONS(1899), + [anon_sym_defer] = ACTIONS(1899), + [anon_sym_goto] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_DOLLARfor] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(1899), + [anon_sym_asm] = ACTIONS(1899), + [anon_sym_AT_LBRACK] = ACTIONS(1899), }, [1441] = { [sym_line_comment] = STATE(1441), [sym_block_comment] = STATE(1441), - [sym_block] = STATE(1553), - [ts_builtin_sym_end] = ACTIONS(4102), - [sym_identifier] = ACTIONS(4104), - [anon_sym_LF] = ACTIONS(4104), - [anon_sym_CR] = ACTIONS(4104), - [anon_sym_CR_LF] = ACTIONS(4104), + [ts_builtin_sym_end] = ACTIONS(2187), + [sym_identifier] = ACTIONS(2189), + [anon_sym_LF] = ACTIONS(2189), + [anon_sym_CR] = ACTIONS(2189), + [anon_sym_CR_LF] = ACTIONS(2189), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4104), - [anon_sym_LPAREN] = ACTIONS(4104), - [anon_sym___global] = ACTIONS(4104), - [anon_sym_type] = ACTIONS(4104), - [anon_sym_fn] = ACTIONS(4104), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4104), - [anon_sym_struct] = ACTIONS(4104), - [anon_sym_union] = ACTIONS(4104), - [anon_sym_pub] = ACTIONS(4104), - [anon_sym_mut] = ACTIONS(4104), - [anon_sym_enum] = ACTIONS(4104), - [anon_sym_interface] = ACTIONS(4104), - [anon_sym_QMARK] = ACTIONS(4104), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_go] = ACTIONS(4104), - [anon_sym_spawn] = ACTIONS(4104), - [anon_sym_json_DOTdecode] = ACTIONS(4104), - [anon_sym_LBRACK2] = ACTIONS(4104), - [anon_sym_TILDE] = ACTIONS(4104), - [anon_sym_CARET] = ACTIONS(4104), - [anon_sym_AMP] = ACTIONS(4104), - [anon_sym_LT_DASH] = ACTIONS(4104), - [sym_none] = ACTIONS(4104), - [sym_true] = ACTIONS(4104), - [sym_false] = ACTIONS(4104), - [sym_nil] = ACTIONS(4104), - [anon_sym_if] = ACTIONS(4104), - [anon_sym_DOLLARif] = ACTIONS(4104), - [anon_sym_match] = ACTIONS(4104), - [anon_sym_select] = ACTIONS(4104), - [anon_sym_lock] = ACTIONS(4104), - [anon_sym_rlock] = ACTIONS(4104), - [anon_sym_unsafe] = ACTIONS(4104), - [anon_sym_sql] = ACTIONS(4104), - [sym_int_literal] = ACTIONS(4104), - [sym_float_literal] = ACTIONS(4104), - [sym_rune_literal] = ACTIONS(4104), - [sym_pseudo_compile_time_identifier] = ACTIONS(4104), - [anon_sym_shared] = ACTIONS(4104), - [anon_sym_map_LBRACK] = ACTIONS(4104), - [anon_sym_chan] = ACTIONS(4104), - [anon_sym_thread] = ACTIONS(4104), - [anon_sym_atomic] = ACTIONS(4104), - [anon_sym_assert] = ACTIONS(4104), - [anon_sym_defer] = ACTIONS(4104), - [anon_sym_goto] = ACTIONS(4104), - [anon_sym_break] = ACTIONS(4104), - [anon_sym_continue] = ACTIONS(4104), - [anon_sym_return] = ACTIONS(4104), - [anon_sym_DOLLARfor] = ACTIONS(4104), - [anon_sym_for] = ACTIONS(4104), - [anon_sym_POUND] = ACTIONS(4104), - [anon_sym_asm] = ACTIONS(4104), - [anon_sym_AT_LBRACK] = ACTIONS(4104), - [sym___double_quote] = ACTIONS(4104), - [sym___single_quote] = ACTIONS(4104), - [sym___c_double_quote] = ACTIONS(4104), - [sym___c_single_quote] = ACTIONS(4104), - [sym___r_double_quote] = ACTIONS(4104), - [sym___r_single_quote] = ACTIONS(4104), + [anon_sym_DOT] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym___global] = ACTIONS(2189), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_fn] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_struct] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_pub] = ACTIONS(2189), + [anon_sym_mut] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [anon_sym_interface] = ACTIONS(2189), + [anon_sym_QMARK] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_go] = ACTIONS(2189), + [anon_sym_spawn] = ACTIONS(2189), + [anon_sym_json_DOTdecode] = ACTIONS(2189), + [anon_sym_LBRACK2] = ACTIONS(2189), + [anon_sym_TILDE] = ACTIONS(2189), + [anon_sym_CARET] = ACTIONS(2189), + [anon_sym_AMP] = ACTIONS(2189), + [anon_sym_LT_DASH] = ACTIONS(2189), + [sym_none] = ACTIONS(2189), + [sym_true] = ACTIONS(2189), + [sym_false] = ACTIONS(2189), + [sym_nil] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_DOLLARif] = ACTIONS(2189), + [anon_sym_match] = ACTIONS(2189), + [anon_sym_select] = ACTIONS(2189), + [anon_sym_lock] = ACTIONS(2189), + [anon_sym_rlock] = ACTIONS(2189), + [anon_sym_unsafe] = ACTIONS(2189), + [anon_sym_sql] = ACTIONS(2189), + [sym_int_literal] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), + [sym_rune_literal] = ACTIONS(2189), + [anon_sym_SQUOTE] = ACTIONS(2189), + [anon_sym_DQUOTE] = ACTIONS(2189), + [anon_sym_c_SQUOTE] = ACTIONS(2189), + [anon_sym_c_DQUOTE] = ACTIONS(2189), + [anon_sym_r_SQUOTE] = ACTIONS(2189), + [anon_sym_r_DQUOTE] = ACTIONS(2189), + [sym_pseudo_compile_time_identifier] = ACTIONS(2189), + [anon_sym_shared] = ACTIONS(2189), + [anon_sym_map_LBRACK] = ACTIONS(2189), + [anon_sym_chan] = ACTIONS(2189), + [anon_sym_thread] = ACTIONS(2189), + [anon_sym_atomic] = ACTIONS(2189), + [anon_sym_assert] = ACTIONS(2189), + [anon_sym_defer] = ACTIONS(2189), + [anon_sym_goto] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_DOLLARfor] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_POUND] = ACTIONS(2189), + [anon_sym_asm] = ACTIONS(2189), + [anon_sym_AT_LBRACK] = ACTIONS(2189), }, [1442] = { [sym_line_comment] = STATE(1442), [sym_block_comment] = STATE(1442), - [sym_block] = STATE(1552), - [ts_builtin_sym_end] = ACTIONS(4106), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LF] = ACTIONS(4108), - [anon_sym_CR] = ACTIONS(4108), - [anon_sym_CR_LF] = ACTIONS(4108), + [ts_builtin_sym_end] = ACTIONS(3534), + [sym_identifier] = ACTIONS(1759), + [anon_sym_LF] = ACTIONS(1759), + [anon_sym_CR] = ACTIONS(1759), + [anon_sym_CR_LF] = ACTIONS(1759), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4108), - [anon_sym_LPAREN] = ACTIONS(4108), - [anon_sym___global] = ACTIONS(4108), - [anon_sym_type] = ACTIONS(4108), - [anon_sym_fn] = ACTIONS(4108), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4108), - [anon_sym_struct] = ACTIONS(4108), - [anon_sym_union] = ACTIONS(4108), - [anon_sym_pub] = ACTIONS(4108), - [anon_sym_mut] = ACTIONS(4108), - [anon_sym_enum] = ACTIONS(4108), - [anon_sym_interface] = ACTIONS(4108), - [anon_sym_QMARK] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(4108), - [anon_sym_go] = ACTIONS(4108), - [anon_sym_spawn] = ACTIONS(4108), - [anon_sym_json_DOTdecode] = ACTIONS(4108), - [anon_sym_LBRACK2] = ACTIONS(4108), - [anon_sym_TILDE] = ACTIONS(4108), - [anon_sym_CARET] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_LT_DASH] = ACTIONS(4108), - [sym_none] = ACTIONS(4108), - [sym_true] = ACTIONS(4108), - [sym_false] = ACTIONS(4108), - [sym_nil] = ACTIONS(4108), - [anon_sym_if] = ACTIONS(4108), - [anon_sym_DOLLARif] = ACTIONS(4108), - [anon_sym_match] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(4108), - [anon_sym_lock] = ACTIONS(4108), - [anon_sym_rlock] = ACTIONS(4108), - [anon_sym_unsafe] = ACTIONS(4108), - [anon_sym_sql] = ACTIONS(4108), - [sym_int_literal] = ACTIONS(4108), - [sym_float_literal] = ACTIONS(4108), - [sym_rune_literal] = ACTIONS(4108), - [sym_pseudo_compile_time_identifier] = ACTIONS(4108), - [anon_sym_shared] = ACTIONS(4108), - [anon_sym_map_LBRACK] = ACTIONS(4108), - [anon_sym_chan] = ACTIONS(4108), - [anon_sym_thread] = ACTIONS(4108), - [anon_sym_atomic] = ACTIONS(4108), - [anon_sym_assert] = ACTIONS(4108), - [anon_sym_defer] = ACTIONS(4108), - [anon_sym_goto] = ACTIONS(4108), - [anon_sym_break] = ACTIONS(4108), - [anon_sym_continue] = ACTIONS(4108), - [anon_sym_return] = ACTIONS(4108), - [anon_sym_DOLLARfor] = ACTIONS(4108), - [anon_sym_for] = ACTIONS(4108), - [anon_sym_POUND] = ACTIONS(4108), - [anon_sym_asm] = ACTIONS(4108), - [anon_sym_AT_LBRACK] = ACTIONS(4108), - [sym___double_quote] = ACTIONS(4108), - [sym___single_quote] = ACTIONS(4108), - [sym___c_double_quote] = ACTIONS(4108), - [sym___c_single_quote] = ACTIONS(4108), - [sym___r_double_quote] = ACTIONS(4108), - [sym___r_single_quote] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_COMMA] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym___global] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_fn] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1759), + [anon_sym_STAR] = ACTIONS(1759), + [anon_sym_struct] = ACTIONS(1759), + [anon_sym_union] = ACTIONS(1759), + [anon_sym_pub] = ACTIONS(1759), + [anon_sym_mut] = ACTIONS(1759), + [anon_sym_enum] = ACTIONS(1759), + [anon_sym_interface] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(1759), + [anon_sym_go] = ACTIONS(1759), + [anon_sym_spawn] = ACTIONS(1759), + [anon_sym_json_DOTdecode] = ACTIONS(1759), + [anon_sym_LBRACK2] = ACTIONS(1759), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_CARET] = ACTIONS(1759), + [anon_sym_AMP] = ACTIONS(1759), + [anon_sym_LT_DASH] = ACTIONS(1759), + [sym_none] = ACTIONS(1759), + [sym_true] = ACTIONS(1759), + [sym_false] = ACTIONS(1759), + [sym_nil] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_DOLLARif] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1759), + [anon_sym_select] = ACTIONS(1759), + [anon_sym_lock] = ACTIONS(1759), + [anon_sym_rlock] = ACTIONS(1759), + [anon_sym_unsafe] = ACTIONS(1759), + [anon_sym_sql] = ACTIONS(1759), + [sym_int_literal] = ACTIONS(1759), + [sym_float_literal] = ACTIONS(1759), + [sym_rune_literal] = ACTIONS(1759), + [anon_sym_SQUOTE] = ACTIONS(1759), + [anon_sym_DQUOTE] = ACTIONS(1759), + [anon_sym_c_SQUOTE] = ACTIONS(1759), + [anon_sym_c_DQUOTE] = ACTIONS(1759), + [anon_sym_r_SQUOTE] = ACTIONS(1759), + [anon_sym_r_DQUOTE] = ACTIONS(1759), + [sym_pseudo_compile_time_identifier] = ACTIONS(1759), + [anon_sym_shared] = ACTIONS(1759), + [anon_sym_map_LBRACK] = ACTIONS(1759), + [anon_sym_chan] = ACTIONS(1759), + [anon_sym_thread] = ACTIONS(1759), + [anon_sym_atomic] = ACTIONS(1759), + [anon_sym_assert] = ACTIONS(1759), + [anon_sym_defer] = ACTIONS(1759), + [anon_sym_goto] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_DOLLARfor] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_POUND] = ACTIONS(1759), + [anon_sym_asm] = ACTIONS(1759), + [anon_sym_AT_LBRACK] = ACTIONS(1759), }, [1443] = { [sym_line_comment] = STATE(1443), [sym_block_comment] = STATE(1443), - [sym_block] = STATE(1550), - [ts_builtin_sym_end] = ACTIONS(4110), - [sym_identifier] = ACTIONS(4112), - [anon_sym_LF] = ACTIONS(4112), - [anon_sym_CR] = ACTIONS(4112), - [anon_sym_CR_LF] = ACTIONS(4112), + [ts_builtin_sym_end] = ACTIONS(2421), + [sym_identifier] = ACTIONS(2423), + [anon_sym_LF] = ACTIONS(2423), + [anon_sym_CR] = ACTIONS(2423), + [anon_sym_CR_LF] = ACTIONS(2423), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4112), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_const] = ACTIONS(4112), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym___global] = ACTIONS(4112), - [anon_sym_type] = ACTIONS(4112), - [anon_sym_fn] = ACTIONS(4112), - [anon_sym_PLUS] = ACTIONS(4112), - [anon_sym_DASH] = ACTIONS(4112), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_struct] = ACTIONS(4112), - [anon_sym_union] = ACTIONS(4112), - [anon_sym_pub] = ACTIONS(4112), - [anon_sym_mut] = ACTIONS(4112), - [anon_sym_enum] = ACTIONS(4112), - [anon_sym_interface] = ACTIONS(4112), - [anon_sym_QMARK] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(4112), - [anon_sym_go] = ACTIONS(4112), - [anon_sym_spawn] = ACTIONS(4112), - [anon_sym_json_DOTdecode] = ACTIONS(4112), - [anon_sym_LBRACK2] = ACTIONS(4112), - [anon_sym_TILDE] = ACTIONS(4112), - [anon_sym_CARET] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_DASH] = ACTIONS(4112), - [sym_none] = ACTIONS(4112), - [sym_true] = ACTIONS(4112), - [sym_false] = ACTIONS(4112), - [sym_nil] = ACTIONS(4112), - [anon_sym_if] = ACTIONS(4112), - [anon_sym_DOLLARif] = ACTIONS(4112), - [anon_sym_match] = ACTIONS(4112), - [anon_sym_select] = ACTIONS(4112), - [anon_sym_lock] = ACTIONS(4112), - [anon_sym_rlock] = ACTIONS(4112), - [anon_sym_unsafe] = ACTIONS(4112), - [anon_sym_sql] = ACTIONS(4112), - [sym_int_literal] = ACTIONS(4112), - [sym_float_literal] = ACTIONS(4112), - [sym_rune_literal] = ACTIONS(4112), - [sym_pseudo_compile_time_identifier] = ACTIONS(4112), - [anon_sym_shared] = ACTIONS(4112), - [anon_sym_map_LBRACK] = ACTIONS(4112), - [anon_sym_chan] = ACTIONS(4112), - [anon_sym_thread] = ACTIONS(4112), - [anon_sym_atomic] = ACTIONS(4112), - [anon_sym_assert] = ACTIONS(4112), - [anon_sym_defer] = ACTIONS(4112), - [anon_sym_goto] = ACTIONS(4112), - [anon_sym_break] = ACTIONS(4112), - [anon_sym_continue] = ACTIONS(4112), - [anon_sym_return] = ACTIONS(4112), - [anon_sym_DOLLARfor] = ACTIONS(4112), - [anon_sym_for] = ACTIONS(4112), - [anon_sym_POUND] = ACTIONS(4112), - [anon_sym_asm] = ACTIONS(4112), - [anon_sym_AT_LBRACK] = ACTIONS(4112), - [sym___double_quote] = ACTIONS(4112), - [sym___single_quote] = ACTIONS(4112), - [sym___c_double_quote] = ACTIONS(4112), - [sym___c_single_quote] = ACTIONS(4112), - [sym___r_double_quote] = ACTIONS(4112), - [sym___r_single_quote] = ACTIONS(4112), + [anon_sym_DOT] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_const] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym___global] = ACTIONS(2423), + [anon_sym_type] = ACTIONS(2423), + [anon_sym_PIPE] = ACTIONS(2423), + [anon_sym_fn] = ACTIONS(2423), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_struct] = ACTIONS(2423), + [anon_sym_union] = ACTIONS(2423), + [anon_sym_pub] = ACTIONS(2423), + [anon_sym_mut] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2423), + [anon_sym_interface] = ACTIONS(2423), + [anon_sym_QMARK] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2423), + [anon_sym_spawn] = ACTIONS(2423), + [anon_sym_json_DOTdecode] = ACTIONS(2423), + [anon_sym_LBRACK2] = ACTIONS(2423), + [anon_sym_TILDE] = ACTIONS(2423), + [anon_sym_CARET] = ACTIONS(2423), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_LT_DASH] = ACTIONS(2423), + [sym_none] = ACTIONS(2423), + [sym_true] = ACTIONS(2423), + [sym_false] = ACTIONS(2423), + [sym_nil] = ACTIONS(2423), + [anon_sym_if] = ACTIONS(2423), + [anon_sym_DOLLARif] = ACTIONS(2423), + [anon_sym_match] = ACTIONS(2423), + [anon_sym_select] = ACTIONS(2423), + [anon_sym_lock] = ACTIONS(2423), + [anon_sym_rlock] = ACTIONS(2423), + [anon_sym_unsafe] = ACTIONS(2423), + [anon_sym_sql] = ACTIONS(2423), + [sym_int_literal] = ACTIONS(2423), + [sym_float_literal] = ACTIONS(2423), + [sym_rune_literal] = ACTIONS(2423), + [anon_sym_SQUOTE] = ACTIONS(2423), + [anon_sym_DQUOTE] = ACTIONS(2423), + [anon_sym_c_SQUOTE] = ACTIONS(2423), + [anon_sym_c_DQUOTE] = ACTIONS(2423), + [anon_sym_r_SQUOTE] = ACTIONS(2423), + [anon_sym_r_DQUOTE] = ACTIONS(2423), + [sym_pseudo_compile_time_identifier] = ACTIONS(2423), + [anon_sym_shared] = ACTIONS(2423), + [anon_sym_map_LBRACK] = ACTIONS(2423), + [anon_sym_chan] = ACTIONS(2423), + [anon_sym_thread] = ACTIONS(2423), + [anon_sym_atomic] = ACTIONS(2423), + [anon_sym_assert] = ACTIONS(2423), + [anon_sym_defer] = ACTIONS(2423), + [anon_sym_goto] = ACTIONS(2423), + [anon_sym_break] = ACTIONS(2423), + [anon_sym_continue] = ACTIONS(2423), + [anon_sym_return] = ACTIONS(2423), + [anon_sym_DOLLARfor] = ACTIONS(2423), + [anon_sym_for] = ACTIONS(2423), + [anon_sym_POUND] = ACTIONS(2423), + [anon_sym_asm] = ACTIONS(2423), + [anon_sym_AT_LBRACK] = ACTIONS(2423), }, [1444] = { [sym_line_comment] = STATE(1444), [sym_block_comment] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(2507), - [sym_identifier] = ACTIONS(2509), - [anon_sym_LF] = ACTIONS(2509), - [anon_sym_CR] = ACTIONS(2509), - [anon_sym_CR_LF] = ACTIONS(2509), + [ts_builtin_sym_end] = ACTIONS(2271), + [sym_identifier] = ACTIONS(2273), + [anon_sym_LF] = ACTIONS(2273), + [anon_sym_CR] = ACTIONS(2273), + [anon_sym_CR_LF] = ACTIONS(2273), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_const] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2509), - [anon_sym___global] = ACTIONS(2509), - [anon_sym_type] = ACTIONS(2509), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_fn] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_struct] = ACTIONS(2509), - [anon_sym_union] = ACTIONS(2509), - [anon_sym_pub] = ACTIONS(2509), - [anon_sym_mut] = ACTIONS(2509), - [anon_sym_enum] = ACTIONS(2509), - [anon_sym_interface] = ACTIONS(2509), - [anon_sym_QMARK] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_go] = ACTIONS(2509), - [anon_sym_spawn] = ACTIONS(2509), - [anon_sym_json_DOTdecode] = ACTIONS(2509), - [anon_sym_LBRACK2] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2509), - [anon_sym_CARET] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2509), - [anon_sym_LT_DASH] = ACTIONS(2509), - [sym_none] = ACTIONS(2509), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_nil] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_DOLLARif] = ACTIONS(2509), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_select] = ACTIONS(2509), - [anon_sym_lock] = ACTIONS(2509), - [anon_sym_rlock] = ACTIONS(2509), - [anon_sym_unsafe] = ACTIONS(2509), - [anon_sym_sql] = ACTIONS(2509), - [sym_int_literal] = ACTIONS(2509), - [sym_float_literal] = ACTIONS(2509), - [sym_rune_literal] = ACTIONS(2509), - [sym_pseudo_compile_time_identifier] = ACTIONS(2509), - [anon_sym_shared] = ACTIONS(2509), - [anon_sym_map_LBRACK] = ACTIONS(2509), - [anon_sym_chan] = ACTIONS(2509), - [anon_sym_thread] = ACTIONS(2509), - [anon_sym_atomic] = ACTIONS(2509), - [anon_sym_assert] = ACTIONS(2509), - [anon_sym_defer] = ACTIONS(2509), - [anon_sym_goto] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_DOLLARfor] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2509), - [anon_sym_AT_LBRACK] = ACTIONS(2509), - [sym___double_quote] = ACTIONS(2509), - [sym___single_quote] = ACTIONS(2509), - [sym___c_double_quote] = ACTIONS(2509), - [sym___c_single_quote] = ACTIONS(2509), - [sym___r_double_quote] = ACTIONS(2509), - [sym___r_single_quote] = ACTIONS(2509), + [anon_sym_DOT] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym___global] = ACTIONS(2273), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_PIPE] = ACTIONS(2273), + [anon_sym_fn] = ACTIONS(2273), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_pub] = ACTIONS(2273), + [anon_sym_mut] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [anon_sym_interface] = ACTIONS(2273), + [anon_sym_QMARK] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2273), + [anon_sym_go] = ACTIONS(2273), + [anon_sym_spawn] = ACTIONS(2273), + [anon_sym_json_DOTdecode] = ACTIONS(2273), + [anon_sym_LBRACK2] = ACTIONS(2273), + [anon_sym_TILDE] = ACTIONS(2273), + [anon_sym_CARET] = ACTIONS(2273), + [anon_sym_AMP] = ACTIONS(2273), + [anon_sym_LT_DASH] = ACTIONS(2273), + [sym_none] = ACTIONS(2273), + [sym_true] = ACTIONS(2273), + [sym_false] = ACTIONS(2273), + [sym_nil] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_DOLLARif] = ACTIONS(2273), + [anon_sym_match] = ACTIONS(2273), + [anon_sym_select] = ACTIONS(2273), + [anon_sym_lock] = ACTIONS(2273), + [anon_sym_rlock] = ACTIONS(2273), + [anon_sym_unsafe] = ACTIONS(2273), + [anon_sym_sql] = ACTIONS(2273), + [sym_int_literal] = ACTIONS(2273), + [sym_float_literal] = ACTIONS(2273), + [sym_rune_literal] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(2273), + [anon_sym_c_SQUOTE] = ACTIONS(2273), + [anon_sym_c_DQUOTE] = ACTIONS(2273), + [anon_sym_r_SQUOTE] = ACTIONS(2273), + [anon_sym_r_DQUOTE] = ACTIONS(2273), + [sym_pseudo_compile_time_identifier] = ACTIONS(2273), + [anon_sym_shared] = ACTIONS(2273), + [anon_sym_map_LBRACK] = ACTIONS(2273), + [anon_sym_chan] = ACTIONS(2273), + [anon_sym_thread] = ACTIONS(2273), + [anon_sym_atomic] = ACTIONS(2273), + [anon_sym_assert] = ACTIONS(2273), + [anon_sym_defer] = ACTIONS(2273), + [anon_sym_goto] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_DOLLARfor] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_POUND] = ACTIONS(2273), + [anon_sym_asm] = ACTIONS(2273), + [anon_sym_AT_LBRACK] = ACTIONS(2273), }, [1445] = { [sym_line_comment] = STATE(1445), [sym_block_comment] = STATE(1445), - [ts_builtin_sym_end] = ACTIONS(1879), - [sym_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1881), - [anon_sym_CR] = ACTIONS(1881), - [anon_sym_CR_LF] = ACTIONS(1881), + [sym_block] = STATE(1554), + [ts_builtin_sym_end] = ACTIONS(4116), + [sym_identifier] = ACTIONS(4118), + [anon_sym_LF] = ACTIONS(4118), + [anon_sym_CR] = ACTIONS(4118), + [anon_sym_CR_LF] = ACTIONS(4118), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym___global] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_union] = ACTIONS(1881), - [anon_sym_pub] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_enum] = ACTIONS(1881), - [anon_sym_interface] = ACTIONS(1881), - [anon_sym_QMARK] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_go] = ACTIONS(1881), - [anon_sym_spawn] = ACTIONS(1881), - [anon_sym_json_DOTdecode] = ACTIONS(1881), - [anon_sym_LBRACK2] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1881), - [sym_none] = ACTIONS(1881), - [sym_true] = ACTIONS(1881), - [sym_false] = ACTIONS(1881), - [sym_nil] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_DOLLARif] = ACTIONS(1881), - [anon_sym_match] = ACTIONS(1881), - [anon_sym_select] = ACTIONS(1881), - [anon_sym_lock] = ACTIONS(1881), - [anon_sym_rlock] = ACTIONS(1881), - [anon_sym_unsafe] = ACTIONS(1881), - [anon_sym_sql] = ACTIONS(1881), - [sym_int_literal] = ACTIONS(1881), - [sym_float_literal] = ACTIONS(1881), - [sym_rune_literal] = ACTIONS(1881), - [sym_pseudo_compile_time_identifier] = ACTIONS(1881), - [anon_sym_shared] = ACTIONS(1881), - [anon_sym_map_LBRACK] = ACTIONS(1881), - [anon_sym_chan] = ACTIONS(1881), - [anon_sym_thread] = ACTIONS(1881), - [anon_sym_atomic] = ACTIONS(1881), - [anon_sym_assert] = ACTIONS(1881), - [anon_sym_defer] = ACTIONS(1881), - [anon_sym_goto] = ACTIONS(1881), - [anon_sym_break] = ACTIONS(1881), - [anon_sym_continue] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1881), - [anon_sym_DOLLARfor] = ACTIONS(1881), - [anon_sym_for] = ACTIONS(1881), - [anon_sym_POUND] = ACTIONS(1881), - [anon_sym_asm] = ACTIONS(1881), - [anon_sym_AT_LBRACK] = ACTIONS(1881), - [sym___double_quote] = ACTIONS(1881), - [sym___single_quote] = ACTIONS(1881), - [sym___c_double_quote] = ACTIONS(1881), - [sym___c_single_quote] = ACTIONS(1881), - [sym___r_double_quote] = ACTIONS(1881), - [sym___r_single_quote] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(4118), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4118), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym___global] = ACTIONS(4118), + [anon_sym_type] = ACTIONS(4118), + [anon_sym_fn] = ACTIONS(4118), + [anon_sym_PLUS] = ACTIONS(4118), + [anon_sym_DASH] = ACTIONS(4118), + [anon_sym_STAR] = ACTIONS(4118), + [anon_sym_struct] = ACTIONS(4118), + [anon_sym_union] = ACTIONS(4118), + [anon_sym_pub] = ACTIONS(4118), + [anon_sym_mut] = ACTIONS(4118), + [anon_sym_enum] = ACTIONS(4118), + [anon_sym_interface] = ACTIONS(4118), + [anon_sym_QMARK] = ACTIONS(4118), + [anon_sym_BANG] = ACTIONS(4118), + [anon_sym_go] = ACTIONS(4118), + [anon_sym_spawn] = ACTIONS(4118), + [anon_sym_json_DOTdecode] = ACTIONS(4118), + [anon_sym_LBRACK2] = ACTIONS(4118), + [anon_sym_TILDE] = ACTIONS(4118), + [anon_sym_CARET] = ACTIONS(4118), + [anon_sym_AMP] = ACTIONS(4118), + [anon_sym_LT_DASH] = ACTIONS(4118), + [sym_none] = ACTIONS(4118), + [sym_true] = ACTIONS(4118), + [sym_false] = ACTIONS(4118), + [sym_nil] = ACTIONS(4118), + [anon_sym_if] = ACTIONS(4118), + [anon_sym_DOLLARif] = ACTIONS(4118), + [anon_sym_match] = ACTIONS(4118), + [anon_sym_select] = ACTIONS(4118), + [anon_sym_lock] = ACTIONS(4118), + [anon_sym_rlock] = ACTIONS(4118), + [anon_sym_unsafe] = ACTIONS(4118), + [anon_sym_sql] = ACTIONS(4118), + [sym_int_literal] = ACTIONS(4118), + [sym_float_literal] = ACTIONS(4118), + [sym_rune_literal] = ACTIONS(4118), + [anon_sym_SQUOTE] = ACTIONS(4118), + [anon_sym_DQUOTE] = ACTIONS(4118), + [anon_sym_c_SQUOTE] = ACTIONS(4118), + [anon_sym_c_DQUOTE] = ACTIONS(4118), + [anon_sym_r_SQUOTE] = ACTIONS(4118), + [anon_sym_r_DQUOTE] = ACTIONS(4118), + [sym_pseudo_compile_time_identifier] = ACTIONS(4118), + [anon_sym_shared] = ACTIONS(4118), + [anon_sym_map_LBRACK] = ACTIONS(4118), + [anon_sym_chan] = ACTIONS(4118), + [anon_sym_thread] = ACTIONS(4118), + [anon_sym_atomic] = ACTIONS(4118), + [anon_sym_assert] = ACTIONS(4118), + [anon_sym_defer] = ACTIONS(4118), + [anon_sym_goto] = ACTIONS(4118), + [anon_sym_break] = ACTIONS(4118), + [anon_sym_continue] = ACTIONS(4118), + [anon_sym_return] = ACTIONS(4118), + [anon_sym_DOLLARfor] = ACTIONS(4118), + [anon_sym_for] = ACTIONS(4118), + [anon_sym_POUND] = ACTIONS(4118), + [anon_sym_asm] = ACTIONS(4118), + [anon_sym_AT_LBRACK] = ACTIONS(4118), }, [1446] = { [sym_line_comment] = STATE(1446), [sym_block_comment] = STATE(1446), - [ts_builtin_sym_end] = ACTIONS(2766), - [sym_identifier] = ACTIONS(2768), - [anon_sym_LF] = ACTIONS(2768), - [anon_sym_CR] = ACTIONS(2768), - [anon_sym_CR_LF] = ACTIONS(2768), + [sym_block] = STATE(1488), + [ts_builtin_sym_end] = ACTIONS(4120), + [sym_identifier] = ACTIONS(4122), + [anon_sym_LF] = ACTIONS(4122), + [anon_sym_CR] = ACTIONS(4122), + [anon_sym_CR_LF] = ACTIONS(4122), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym___global] = ACTIONS(2768), - [anon_sym_type] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_fn] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2768), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_pub] = ACTIONS(2768), - [anon_sym_mut] = ACTIONS(2768), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_interface] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2768), - [anon_sym_BANG] = ACTIONS(2768), - [anon_sym_go] = ACTIONS(2768), - [anon_sym_spawn] = ACTIONS(2768), - [anon_sym_json_DOTdecode] = ACTIONS(2768), - [anon_sym_LBRACK2] = ACTIONS(2768), - [anon_sym_TILDE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_LT_DASH] = ACTIONS(2768), - [sym_none] = ACTIONS(2768), - [sym_true] = ACTIONS(2768), - [sym_false] = ACTIONS(2768), - [sym_nil] = ACTIONS(2768), - [anon_sym_if] = ACTIONS(2768), - [anon_sym_DOLLARif] = ACTIONS(2768), - [anon_sym_match] = ACTIONS(2768), - [anon_sym_select] = ACTIONS(2768), - [anon_sym_lock] = ACTIONS(2768), - [anon_sym_rlock] = ACTIONS(2768), - [anon_sym_unsafe] = ACTIONS(2768), - [anon_sym_sql] = ACTIONS(2768), - [sym_int_literal] = ACTIONS(2768), - [sym_float_literal] = ACTIONS(2768), - [sym_rune_literal] = ACTIONS(2768), - [sym_pseudo_compile_time_identifier] = ACTIONS(2768), - [anon_sym_shared] = ACTIONS(2768), - [anon_sym_map_LBRACK] = ACTIONS(2768), - [anon_sym_chan] = ACTIONS(2768), - [anon_sym_thread] = ACTIONS(2768), - [anon_sym_atomic] = ACTIONS(2768), - [anon_sym_assert] = ACTIONS(2768), - [anon_sym_defer] = ACTIONS(2768), - [anon_sym_goto] = ACTIONS(2768), - [anon_sym_break] = ACTIONS(2768), - [anon_sym_continue] = ACTIONS(2768), - [anon_sym_return] = ACTIONS(2768), - [anon_sym_DOLLARfor] = ACTIONS(2768), - [anon_sym_for] = ACTIONS(2768), - [anon_sym_POUND] = ACTIONS(2768), - [anon_sym_asm] = ACTIONS(2768), - [anon_sym_AT_LBRACK] = ACTIONS(2768), - [sym___double_quote] = ACTIONS(2768), - [sym___single_quote] = ACTIONS(2768), - [sym___c_double_quote] = ACTIONS(2768), - [sym___c_single_quote] = ACTIONS(2768), - [sym___r_double_quote] = ACTIONS(2768), - [sym___r_single_quote] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4122), + [anon_sym_LPAREN] = ACTIONS(4122), + [anon_sym___global] = ACTIONS(4122), + [anon_sym_type] = ACTIONS(4122), + [anon_sym_fn] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_STAR] = ACTIONS(4122), + [anon_sym_struct] = ACTIONS(4122), + [anon_sym_union] = ACTIONS(4122), + [anon_sym_pub] = ACTIONS(4122), + [anon_sym_mut] = ACTIONS(4122), + [anon_sym_enum] = ACTIONS(4122), + [anon_sym_interface] = ACTIONS(4122), + [anon_sym_QMARK] = ACTIONS(4122), + [anon_sym_BANG] = ACTIONS(4122), + [anon_sym_go] = ACTIONS(4122), + [anon_sym_spawn] = ACTIONS(4122), + [anon_sym_json_DOTdecode] = ACTIONS(4122), + [anon_sym_LBRACK2] = ACTIONS(4122), + [anon_sym_TILDE] = ACTIONS(4122), + [anon_sym_CARET] = ACTIONS(4122), + [anon_sym_AMP] = ACTIONS(4122), + [anon_sym_LT_DASH] = ACTIONS(4122), + [sym_none] = ACTIONS(4122), + [sym_true] = ACTIONS(4122), + [sym_false] = ACTIONS(4122), + [sym_nil] = ACTIONS(4122), + [anon_sym_if] = ACTIONS(4122), + [anon_sym_DOLLARif] = ACTIONS(4122), + [anon_sym_match] = ACTIONS(4122), + [anon_sym_select] = ACTIONS(4122), + [anon_sym_lock] = ACTIONS(4122), + [anon_sym_rlock] = ACTIONS(4122), + [anon_sym_unsafe] = ACTIONS(4122), + [anon_sym_sql] = ACTIONS(4122), + [sym_int_literal] = ACTIONS(4122), + [sym_float_literal] = ACTIONS(4122), + [sym_rune_literal] = ACTIONS(4122), + [anon_sym_SQUOTE] = ACTIONS(4122), + [anon_sym_DQUOTE] = ACTIONS(4122), + [anon_sym_c_SQUOTE] = ACTIONS(4122), + [anon_sym_c_DQUOTE] = ACTIONS(4122), + [anon_sym_r_SQUOTE] = ACTIONS(4122), + [anon_sym_r_DQUOTE] = ACTIONS(4122), + [sym_pseudo_compile_time_identifier] = ACTIONS(4122), + [anon_sym_shared] = ACTIONS(4122), + [anon_sym_map_LBRACK] = ACTIONS(4122), + [anon_sym_chan] = ACTIONS(4122), + [anon_sym_thread] = ACTIONS(4122), + [anon_sym_atomic] = ACTIONS(4122), + [anon_sym_assert] = ACTIONS(4122), + [anon_sym_defer] = ACTIONS(4122), + [anon_sym_goto] = ACTIONS(4122), + [anon_sym_break] = ACTIONS(4122), + [anon_sym_continue] = ACTIONS(4122), + [anon_sym_return] = ACTIONS(4122), + [anon_sym_DOLLARfor] = ACTIONS(4122), + [anon_sym_for] = ACTIONS(4122), + [anon_sym_POUND] = ACTIONS(4122), + [anon_sym_asm] = ACTIONS(4122), + [anon_sym_AT_LBRACK] = ACTIONS(4122), }, [1447] = { [sym_line_comment] = STATE(1447), [sym_block_comment] = STATE(1447), - [ts_builtin_sym_end] = ACTIONS(3056), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LF] = ACTIONS(3058), - [anon_sym_CR] = ACTIONS(3058), - [anon_sym_CR_LF] = ACTIONS(3058), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2386), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), + [anon_sym_LF] = ACTIONS(607), + [anon_sym_CR] = ACTIONS(607), + [anon_sym_CR_LF] = ACTIONS(607), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_const] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym___global] = ACTIONS(3058), - [anon_sym_type] = ACTIONS(3058), - [anon_sym_PIPE] = ACTIONS(3058), - [anon_sym_fn] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_struct] = ACTIONS(3058), - [anon_sym_union] = ACTIONS(3058), - [anon_sym_pub] = ACTIONS(3058), - [anon_sym_mut] = ACTIONS(3058), - [anon_sym_enum] = ACTIONS(3058), - [anon_sym_interface] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_BANG] = ACTIONS(3058), - [anon_sym_go] = ACTIONS(3058), - [anon_sym_spawn] = ACTIONS(3058), - [anon_sym_json_DOTdecode] = ACTIONS(3058), - [anon_sym_LBRACK2] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3058), - [anon_sym_CARET] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3058), - [sym_none] = ACTIONS(3058), - [sym_true] = ACTIONS(3058), - [sym_false] = ACTIONS(3058), - [sym_nil] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_DOLLARif] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_select] = ACTIONS(3058), - [anon_sym_lock] = ACTIONS(3058), - [anon_sym_rlock] = ACTIONS(3058), - [anon_sym_unsafe] = ACTIONS(3058), - [anon_sym_sql] = ACTIONS(3058), - [sym_int_literal] = ACTIONS(3058), - [sym_float_literal] = ACTIONS(3058), - [sym_rune_literal] = ACTIONS(3058), - [sym_pseudo_compile_time_identifier] = ACTIONS(3058), - [anon_sym_shared] = ACTIONS(3058), - [anon_sym_map_LBRACK] = ACTIONS(3058), - [anon_sym_chan] = ACTIONS(3058), - [anon_sym_thread] = ACTIONS(3058), - [anon_sym_atomic] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_defer] = ACTIONS(3058), - [anon_sym_goto] = ACTIONS(3058), - [anon_sym_break] = ACTIONS(3058), - [anon_sym_continue] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_DOLLARfor] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_asm] = ACTIONS(3058), - [anon_sym_AT_LBRACK] = ACTIONS(3058), - [sym___double_quote] = ACTIONS(3058), - [sym___single_quote] = ACTIONS(3058), - [sym___c_double_quote] = ACTIONS(3058), - [sym___c_single_quote] = ACTIONS(3058), - [sym___r_double_quote] = ACTIONS(3058), - [sym___r_single_quote] = ACTIONS(3058), + [anon_sym_SEMI] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_PIPE] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4124), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(607), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_is] = ACTIONS(607), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(607), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(561), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [1448] = { [sym_line_comment] = STATE(1448), [sym_block_comment] = STATE(1448), - [ts_builtin_sym_end] = ACTIONS(2708), - [sym_identifier] = ACTIONS(2710), - [anon_sym_LF] = ACTIONS(2710), - [anon_sym_CR] = ACTIONS(2710), - [anon_sym_CR_LF] = ACTIONS(2710), + [sym_block] = STATE(1545), + [ts_builtin_sym_end] = ACTIONS(4126), + [sym_identifier] = ACTIONS(4128), + [anon_sym_LF] = ACTIONS(4128), + [anon_sym_CR] = ACTIONS(4128), + [anon_sym_CR_LF] = ACTIONS(4128), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_const] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym___global] = ACTIONS(2710), - [anon_sym_type] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_fn] = ACTIONS(2710), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_STAR] = ACTIONS(2710), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_union] = ACTIONS(2710), - [anon_sym_pub] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(2710), - [anon_sym_enum] = ACTIONS(2710), - [anon_sym_interface] = ACTIONS(2710), - [anon_sym_QMARK] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(2710), - [anon_sym_go] = ACTIONS(2710), - [anon_sym_spawn] = ACTIONS(2710), - [anon_sym_json_DOTdecode] = ACTIONS(2710), - [anon_sym_LBRACK2] = ACTIONS(2710), - [anon_sym_TILDE] = ACTIONS(2710), - [anon_sym_CARET] = ACTIONS(2710), - [anon_sym_AMP] = ACTIONS(2710), - [anon_sym_LT_DASH] = ACTIONS(2710), - [sym_none] = ACTIONS(2710), - [sym_true] = ACTIONS(2710), - [sym_false] = ACTIONS(2710), - [sym_nil] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_DOLLARif] = ACTIONS(2710), - [anon_sym_match] = ACTIONS(2710), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2710), - [anon_sym_rlock] = ACTIONS(2710), - [anon_sym_unsafe] = ACTIONS(2710), - [anon_sym_sql] = ACTIONS(2710), - [sym_int_literal] = ACTIONS(2710), - [sym_float_literal] = ACTIONS(2710), - [sym_rune_literal] = ACTIONS(2710), - [sym_pseudo_compile_time_identifier] = ACTIONS(2710), - [anon_sym_shared] = ACTIONS(2710), - [anon_sym_map_LBRACK] = ACTIONS(2710), - [anon_sym_chan] = ACTIONS(2710), - [anon_sym_thread] = ACTIONS(2710), - [anon_sym_atomic] = ACTIONS(2710), - [anon_sym_assert] = ACTIONS(2710), - [anon_sym_defer] = ACTIONS(2710), - [anon_sym_goto] = ACTIONS(2710), - [anon_sym_break] = ACTIONS(2710), - [anon_sym_continue] = ACTIONS(2710), - [anon_sym_return] = ACTIONS(2710), - [anon_sym_DOLLARfor] = ACTIONS(2710), - [anon_sym_for] = ACTIONS(2710), - [anon_sym_POUND] = ACTIONS(2710), - [anon_sym_asm] = ACTIONS(2710), - [anon_sym_AT_LBRACK] = ACTIONS(2710), - [sym___double_quote] = ACTIONS(2710), - [sym___single_quote] = ACTIONS(2710), - [sym___c_double_quote] = ACTIONS(2710), - [sym___c_single_quote] = ACTIONS(2710), - [sym___r_double_quote] = ACTIONS(2710), - [sym___r_single_quote] = ACTIONS(2710), + [anon_sym_DOT] = ACTIONS(4128), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4128), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym___global] = ACTIONS(4128), + [anon_sym_type] = ACTIONS(4128), + [anon_sym_fn] = ACTIONS(4128), + [anon_sym_PLUS] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4128), + [anon_sym_struct] = ACTIONS(4128), + [anon_sym_union] = ACTIONS(4128), + [anon_sym_pub] = ACTIONS(4128), + [anon_sym_mut] = ACTIONS(4128), + [anon_sym_enum] = ACTIONS(4128), + [anon_sym_interface] = ACTIONS(4128), + [anon_sym_QMARK] = ACTIONS(4128), + [anon_sym_BANG] = ACTIONS(4128), + [anon_sym_go] = ACTIONS(4128), + [anon_sym_spawn] = ACTIONS(4128), + [anon_sym_json_DOTdecode] = ACTIONS(4128), + [anon_sym_LBRACK2] = ACTIONS(4128), + [anon_sym_TILDE] = ACTIONS(4128), + [anon_sym_CARET] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4128), + [anon_sym_LT_DASH] = ACTIONS(4128), + [sym_none] = ACTIONS(4128), + [sym_true] = ACTIONS(4128), + [sym_false] = ACTIONS(4128), + [sym_nil] = ACTIONS(4128), + [anon_sym_if] = ACTIONS(4128), + [anon_sym_DOLLARif] = ACTIONS(4128), + [anon_sym_match] = ACTIONS(4128), + [anon_sym_select] = ACTIONS(4128), + [anon_sym_lock] = ACTIONS(4128), + [anon_sym_rlock] = ACTIONS(4128), + [anon_sym_unsafe] = ACTIONS(4128), + [anon_sym_sql] = ACTIONS(4128), + [sym_int_literal] = ACTIONS(4128), + [sym_float_literal] = ACTIONS(4128), + [sym_rune_literal] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(4128), + [anon_sym_DQUOTE] = ACTIONS(4128), + [anon_sym_c_SQUOTE] = ACTIONS(4128), + [anon_sym_c_DQUOTE] = ACTIONS(4128), + [anon_sym_r_SQUOTE] = ACTIONS(4128), + [anon_sym_r_DQUOTE] = ACTIONS(4128), + [sym_pseudo_compile_time_identifier] = ACTIONS(4128), + [anon_sym_shared] = ACTIONS(4128), + [anon_sym_map_LBRACK] = ACTIONS(4128), + [anon_sym_chan] = ACTIONS(4128), + [anon_sym_thread] = ACTIONS(4128), + [anon_sym_atomic] = ACTIONS(4128), + [anon_sym_assert] = ACTIONS(4128), + [anon_sym_defer] = ACTIONS(4128), + [anon_sym_goto] = ACTIONS(4128), + [anon_sym_break] = ACTIONS(4128), + [anon_sym_continue] = ACTIONS(4128), + [anon_sym_return] = ACTIONS(4128), + [anon_sym_DOLLARfor] = ACTIONS(4128), + [anon_sym_for] = ACTIONS(4128), + [anon_sym_POUND] = ACTIONS(4128), + [anon_sym_asm] = ACTIONS(4128), + [anon_sym_AT_LBRACK] = ACTIONS(4128), }, [1449] = { [sym_line_comment] = STATE(1449), [sym_block_comment] = STATE(1449), - [ts_builtin_sym_end] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), + [ts_builtin_sym_end] = ACTIONS(2191), + [sym_identifier] = ACTIONS(2193), + [anon_sym_LF] = ACTIONS(2193), + [anon_sym_CR] = ACTIONS(2193), + [anon_sym_CR_LF] = ACTIONS(2193), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_const] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym___global] = ACTIONS(2704), - [anon_sym_type] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_union] = ACTIONS(2704), - [anon_sym_pub] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_interface] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [sym_pseudo_compile_time_identifier] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [anon_sym_assert] = ACTIONS(2704), - [anon_sym_defer] = ACTIONS(2704), - [anon_sym_goto] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_DOLLARfor] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2704), - [anon_sym_AT_LBRACK] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym___global] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_fn] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_struct] = ACTIONS(2193), + [anon_sym_union] = ACTIONS(2193), + [anon_sym_pub] = ACTIONS(2193), + [anon_sym_mut] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [anon_sym_interface] = ACTIONS(2193), + [anon_sym_QMARK] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_go] = ACTIONS(2193), + [anon_sym_spawn] = ACTIONS(2193), + [anon_sym_json_DOTdecode] = ACTIONS(2193), + [anon_sym_LBRACK2] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_LT_DASH] = ACTIONS(2193), + [sym_none] = ACTIONS(2193), + [sym_true] = ACTIONS(2193), + [sym_false] = ACTIONS(2193), + [sym_nil] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_DOLLARif] = ACTIONS(2193), + [anon_sym_match] = ACTIONS(2193), + [anon_sym_select] = ACTIONS(2193), + [anon_sym_lock] = ACTIONS(2193), + [anon_sym_rlock] = ACTIONS(2193), + [anon_sym_unsafe] = ACTIONS(2193), + [anon_sym_sql] = ACTIONS(2193), + [sym_int_literal] = ACTIONS(2193), + [sym_float_literal] = ACTIONS(2193), + [sym_rune_literal] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2193), + [anon_sym_c_SQUOTE] = ACTIONS(2193), + [anon_sym_c_DQUOTE] = ACTIONS(2193), + [anon_sym_r_SQUOTE] = ACTIONS(2193), + [anon_sym_r_DQUOTE] = ACTIONS(2193), + [sym_pseudo_compile_time_identifier] = ACTIONS(2193), + [anon_sym_shared] = ACTIONS(2193), + [anon_sym_map_LBRACK] = ACTIONS(2193), + [anon_sym_chan] = ACTIONS(2193), + [anon_sym_thread] = ACTIONS(2193), + [anon_sym_atomic] = ACTIONS(2193), + [anon_sym_assert] = ACTIONS(2193), + [anon_sym_defer] = ACTIONS(2193), + [anon_sym_goto] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_DOLLARfor] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(2193), + [anon_sym_asm] = ACTIONS(2193), + [anon_sym_AT_LBRACK] = ACTIONS(2193), }, [1450] = { [sym_line_comment] = STATE(1450), [sym_block_comment] = STATE(1450), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(1649), - [anon_sym_LF] = ACTIONS(1649), - [anon_sym_CR] = ACTIONS(1649), - [anon_sym_CR_LF] = ACTIONS(1649), + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2197), + [anon_sym_LF] = ACTIONS(2197), + [anon_sym_CR] = ACTIONS(2197), + [anon_sym_CR_LF] = ACTIONS(2197), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_COMMA] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym___global] = ACTIONS(1649), - [anon_sym_type] = ACTIONS(1649), - [anon_sym_fn] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1649), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_union] = ACTIONS(1649), - [anon_sym_pub] = ACTIONS(1649), - [anon_sym_mut] = ACTIONS(1649), - [anon_sym_enum] = ACTIONS(1649), - [anon_sym_interface] = ACTIONS(1649), - [anon_sym_QMARK] = ACTIONS(1649), - [anon_sym_BANG] = ACTIONS(1649), - [anon_sym_go] = ACTIONS(1649), - [anon_sym_spawn] = ACTIONS(1649), - [anon_sym_json_DOTdecode] = ACTIONS(1649), - [anon_sym_LBRACK2] = ACTIONS(1649), - [anon_sym_TILDE] = ACTIONS(1649), - [anon_sym_CARET] = ACTIONS(1649), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_LT_DASH] = ACTIONS(1649), - [sym_none] = ACTIONS(1649), - [sym_true] = ACTIONS(1649), - [sym_false] = ACTIONS(1649), - [sym_nil] = ACTIONS(1649), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_DOLLARif] = ACTIONS(1649), - [anon_sym_match] = ACTIONS(1649), - [anon_sym_select] = ACTIONS(1649), - [anon_sym_lock] = ACTIONS(1649), - [anon_sym_rlock] = ACTIONS(1649), - [anon_sym_unsafe] = ACTIONS(1649), - [anon_sym_sql] = ACTIONS(1649), - [sym_int_literal] = ACTIONS(1649), - [sym_float_literal] = ACTIONS(1649), - [sym_rune_literal] = ACTIONS(1649), - [sym_pseudo_compile_time_identifier] = ACTIONS(1649), - [anon_sym_shared] = ACTIONS(1649), - [anon_sym_map_LBRACK] = ACTIONS(1649), - [anon_sym_chan] = ACTIONS(1649), - [anon_sym_thread] = ACTIONS(1649), - [anon_sym_atomic] = ACTIONS(1649), - [anon_sym_assert] = ACTIONS(1649), - [anon_sym_defer] = ACTIONS(1649), - [anon_sym_goto] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_DOLLARfor] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_POUND] = ACTIONS(1649), - [anon_sym_asm] = ACTIONS(1649), - [anon_sym_AT_LBRACK] = ACTIONS(1649), - [sym___double_quote] = ACTIONS(1649), - [sym___single_quote] = ACTIONS(1649), - [sym___c_double_quote] = ACTIONS(1649), - [sym___c_single_quote] = ACTIONS(1649), - [sym___r_double_quote] = ACTIONS(1649), - [sym___r_single_quote] = ACTIONS(1649), + [anon_sym_DOT] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym___global] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2197), + [anon_sym_fn] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2197), + [anon_sym_struct] = ACTIONS(2197), + [anon_sym_union] = ACTIONS(2197), + [anon_sym_pub] = ACTIONS(2197), + [anon_sym_mut] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_QMARK] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_go] = ACTIONS(2197), + [anon_sym_spawn] = ACTIONS(2197), + [anon_sym_json_DOTdecode] = ACTIONS(2197), + [anon_sym_LBRACK2] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_CARET] = ACTIONS(2197), + [anon_sym_AMP] = ACTIONS(2197), + [anon_sym_LT_DASH] = ACTIONS(2197), + [sym_none] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_nil] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_DOLLARif] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_select] = ACTIONS(2197), + [anon_sym_lock] = ACTIONS(2197), + [anon_sym_rlock] = ACTIONS(2197), + [anon_sym_unsafe] = ACTIONS(2197), + [anon_sym_sql] = ACTIONS(2197), + [sym_int_literal] = ACTIONS(2197), + [sym_float_literal] = ACTIONS(2197), + [sym_rune_literal] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_c_SQUOTE] = ACTIONS(2197), + [anon_sym_c_DQUOTE] = ACTIONS(2197), + [anon_sym_r_SQUOTE] = ACTIONS(2197), + [anon_sym_r_DQUOTE] = ACTIONS(2197), + [sym_pseudo_compile_time_identifier] = ACTIONS(2197), + [anon_sym_shared] = ACTIONS(2197), + [anon_sym_map_LBRACK] = ACTIONS(2197), + [anon_sym_chan] = ACTIONS(2197), + [anon_sym_thread] = ACTIONS(2197), + [anon_sym_atomic] = ACTIONS(2197), + [anon_sym_assert] = ACTIONS(2197), + [anon_sym_defer] = ACTIONS(2197), + [anon_sym_goto] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_DOLLARfor] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_POUND] = ACTIONS(2197), + [anon_sym_asm] = ACTIONS(2197), + [anon_sym_AT_LBRACK] = ACTIONS(2197), }, [1451] = { [sym_line_comment] = STATE(1451), [sym_block_comment] = STATE(1451), - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LF] = ACTIONS(2201), + [anon_sym_CR] = ACTIONS(2201), + [anon_sym_CR_LF] = ACTIONS(2201), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [sym_pseudo_compile_time_identifier] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2201), + [anon_sym___global] = ACTIONS(2201), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_fn] = ACTIONS(2201), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(2201), + [anon_sym_struct] = ACTIONS(2201), + [anon_sym_union] = ACTIONS(2201), + [anon_sym_pub] = ACTIONS(2201), + [anon_sym_mut] = ACTIONS(2201), + [anon_sym_enum] = ACTIONS(2201), + [anon_sym_interface] = ACTIONS(2201), + [anon_sym_QMARK] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2201), + [anon_sym_go] = ACTIONS(2201), + [anon_sym_spawn] = ACTIONS(2201), + [anon_sym_json_DOTdecode] = ACTIONS(2201), + [anon_sym_LBRACK2] = ACTIONS(2201), + [anon_sym_TILDE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2201), + [anon_sym_AMP] = ACTIONS(2201), + [anon_sym_LT_DASH] = ACTIONS(2201), + [sym_none] = ACTIONS(2201), + [sym_true] = ACTIONS(2201), + [sym_false] = ACTIONS(2201), + [sym_nil] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_DOLLARif] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_select] = ACTIONS(2201), + [anon_sym_lock] = ACTIONS(2201), + [anon_sym_rlock] = ACTIONS(2201), + [anon_sym_unsafe] = ACTIONS(2201), + [anon_sym_sql] = ACTIONS(2201), + [sym_int_literal] = ACTIONS(2201), + [sym_float_literal] = ACTIONS(2201), + [sym_rune_literal] = ACTIONS(2201), + [anon_sym_SQUOTE] = ACTIONS(2201), + [anon_sym_DQUOTE] = ACTIONS(2201), + [anon_sym_c_SQUOTE] = ACTIONS(2201), + [anon_sym_c_DQUOTE] = ACTIONS(2201), + [anon_sym_r_SQUOTE] = ACTIONS(2201), + [anon_sym_r_DQUOTE] = ACTIONS(2201), + [sym_pseudo_compile_time_identifier] = ACTIONS(2201), + [anon_sym_shared] = ACTIONS(2201), + [anon_sym_map_LBRACK] = ACTIONS(2201), + [anon_sym_chan] = ACTIONS(2201), + [anon_sym_thread] = ACTIONS(2201), + [anon_sym_atomic] = ACTIONS(2201), + [anon_sym_assert] = ACTIONS(2201), + [anon_sym_defer] = ACTIONS(2201), + [anon_sym_goto] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_DOLLARfor] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(2201), + [anon_sym_asm] = ACTIONS(2201), + [anon_sym_AT_LBRACK] = ACTIONS(2201), }, [1452] = { [sym_line_comment] = STATE(1452), [sym_block_comment] = STATE(1452), - [ts_builtin_sym_end] = ACTIONS(2904), - [sym_identifier] = ACTIONS(2906), - [anon_sym_LF] = ACTIONS(2906), - [anon_sym_CR] = ACTIONS(2906), - [anon_sym_CR_LF] = ACTIONS(2906), + [sym_block] = STATE(1490), + [ts_builtin_sym_end] = ACTIONS(4130), + [sym_identifier] = ACTIONS(4132), + [anon_sym_LF] = ACTIONS(4132), + [anon_sym_CR] = ACTIONS(4132), + [anon_sym_CR_LF] = ACTIONS(4132), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2906), - [anon_sym_const] = ACTIONS(2906), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym___global] = ACTIONS(2906), - [anon_sym_type] = ACTIONS(2906), - [anon_sym_PIPE] = ACTIONS(2906), - [anon_sym_fn] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2906), - [anon_sym_struct] = ACTIONS(2906), - [anon_sym_union] = ACTIONS(2906), - [anon_sym_pub] = ACTIONS(2906), - [anon_sym_mut] = ACTIONS(2906), - [anon_sym_enum] = ACTIONS(2906), - [anon_sym_interface] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2906), - [anon_sym_go] = ACTIONS(2906), - [anon_sym_spawn] = ACTIONS(2906), - [anon_sym_json_DOTdecode] = ACTIONS(2906), - [anon_sym_LBRACK2] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2906), - [anon_sym_CARET] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2906), - [anon_sym_LT_DASH] = ACTIONS(2906), - [sym_none] = ACTIONS(2906), - [sym_true] = ACTIONS(2906), - [sym_false] = ACTIONS(2906), - [sym_nil] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_DOLLARif] = ACTIONS(2906), - [anon_sym_match] = ACTIONS(2906), - [anon_sym_select] = ACTIONS(2906), - [anon_sym_lock] = ACTIONS(2906), - [anon_sym_rlock] = ACTIONS(2906), - [anon_sym_unsafe] = ACTIONS(2906), - [anon_sym_sql] = ACTIONS(2906), - [sym_int_literal] = ACTIONS(2906), - [sym_float_literal] = ACTIONS(2906), - [sym_rune_literal] = ACTIONS(2906), - [sym_pseudo_compile_time_identifier] = ACTIONS(2906), - [anon_sym_shared] = ACTIONS(2906), - [anon_sym_map_LBRACK] = ACTIONS(2906), - [anon_sym_chan] = ACTIONS(2906), - [anon_sym_thread] = ACTIONS(2906), - [anon_sym_atomic] = ACTIONS(2906), - [anon_sym_assert] = ACTIONS(2906), - [anon_sym_defer] = ACTIONS(2906), - [anon_sym_goto] = ACTIONS(2906), - [anon_sym_break] = ACTIONS(2906), - [anon_sym_continue] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_DOLLARfor] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_POUND] = ACTIONS(2906), - [anon_sym_asm] = ACTIONS(2906), - [anon_sym_AT_LBRACK] = ACTIONS(2906), - [sym___double_quote] = ACTIONS(2906), - [sym___single_quote] = ACTIONS(2906), - [sym___c_double_quote] = ACTIONS(2906), - [sym___c_single_quote] = ACTIONS(2906), - [sym___r_double_quote] = ACTIONS(2906), - [sym___r_single_quote] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(4132), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4132), + [anon_sym_LPAREN] = ACTIONS(4132), + [anon_sym___global] = ACTIONS(4132), + [anon_sym_type] = ACTIONS(4132), + [anon_sym_fn] = ACTIONS(4132), + [anon_sym_PLUS] = ACTIONS(4132), + [anon_sym_DASH] = ACTIONS(4132), + [anon_sym_STAR] = ACTIONS(4132), + [anon_sym_struct] = ACTIONS(4132), + [anon_sym_union] = ACTIONS(4132), + [anon_sym_pub] = ACTIONS(4132), + [anon_sym_mut] = ACTIONS(4132), + [anon_sym_enum] = ACTIONS(4132), + [anon_sym_interface] = ACTIONS(4132), + [anon_sym_QMARK] = ACTIONS(4132), + [anon_sym_BANG] = ACTIONS(4132), + [anon_sym_go] = ACTIONS(4132), + [anon_sym_spawn] = ACTIONS(4132), + [anon_sym_json_DOTdecode] = ACTIONS(4132), + [anon_sym_LBRACK2] = ACTIONS(4132), + [anon_sym_TILDE] = ACTIONS(4132), + [anon_sym_CARET] = ACTIONS(4132), + [anon_sym_AMP] = ACTIONS(4132), + [anon_sym_LT_DASH] = ACTIONS(4132), + [sym_none] = ACTIONS(4132), + [sym_true] = ACTIONS(4132), + [sym_false] = ACTIONS(4132), + [sym_nil] = ACTIONS(4132), + [anon_sym_if] = ACTIONS(4132), + [anon_sym_DOLLARif] = ACTIONS(4132), + [anon_sym_match] = ACTIONS(4132), + [anon_sym_select] = ACTIONS(4132), + [anon_sym_lock] = ACTIONS(4132), + [anon_sym_rlock] = ACTIONS(4132), + [anon_sym_unsafe] = ACTIONS(4132), + [anon_sym_sql] = ACTIONS(4132), + [sym_int_literal] = ACTIONS(4132), + [sym_float_literal] = ACTIONS(4132), + [sym_rune_literal] = ACTIONS(4132), + [anon_sym_SQUOTE] = ACTIONS(4132), + [anon_sym_DQUOTE] = ACTIONS(4132), + [anon_sym_c_SQUOTE] = ACTIONS(4132), + [anon_sym_c_DQUOTE] = ACTIONS(4132), + [anon_sym_r_SQUOTE] = ACTIONS(4132), + [anon_sym_r_DQUOTE] = ACTIONS(4132), + [sym_pseudo_compile_time_identifier] = ACTIONS(4132), + [anon_sym_shared] = ACTIONS(4132), + [anon_sym_map_LBRACK] = ACTIONS(4132), + [anon_sym_chan] = ACTIONS(4132), + [anon_sym_thread] = ACTIONS(4132), + [anon_sym_atomic] = ACTIONS(4132), + [anon_sym_assert] = ACTIONS(4132), + [anon_sym_defer] = ACTIONS(4132), + [anon_sym_goto] = ACTIONS(4132), + [anon_sym_break] = ACTIONS(4132), + [anon_sym_continue] = ACTIONS(4132), + [anon_sym_return] = ACTIONS(4132), + [anon_sym_DOLLARfor] = ACTIONS(4132), + [anon_sym_for] = ACTIONS(4132), + [anon_sym_POUND] = ACTIONS(4132), + [anon_sym_asm] = ACTIONS(4132), + [anon_sym_AT_LBRACK] = ACTIONS(4132), }, [1453] = { [sym_line_comment] = STATE(1453), [sym_block_comment] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(2690), - [sym_identifier] = ACTIONS(2692), - [anon_sym_LF] = ACTIONS(2692), - [anon_sym_CR] = ACTIONS(2692), - [anon_sym_CR_LF] = ACTIONS(2692), + [ts_builtin_sym_end] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2167), + [anon_sym_LF] = ACTIONS(2167), + [anon_sym_CR] = ACTIONS(2167), + [anon_sym_CR_LF] = ACTIONS(2167), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2692), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym___global] = ACTIONS(2692), - [anon_sym_type] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_fn] = ACTIONS(2692), - [anon_sym_PLUS] = ACTIONS(2692), - [anon_sym_DASH] = ACTIONS(2692), - [anon_sym_STAR] = ACTIONS(2692), - [anon_sym_struct] = ACTIONS(2692), - [anon_sym_union] = ACTIONS(2692), - [anon_sym_pub] = ACTIONS(2692), - [anon_sym_mut] = ACTIONS(2692), - [anon_sym_enum] = ACTIONS(2692), - [anon_sym_interface] = ACTIONS(2692), - [anon_sym_QMARK] = ACTIONS(2692), - [anon_sym_BANG] = ACTIONS(2692), - [anon_sym_go] = ACTIONS(2692), - [anon_sym_spawn] = ACTIONS(2692), - [anon_sym_json_DOTdecode] = ACTIONS(2692), - [anon_sym_LBRACK2] = ACTIONS(2692), - [anon_sym_TILDE] = ACTIONS(2692), - [anon_sym_CARET] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2692), - [anon_sym_LT_DASH] = ACTIONS(2692), - [sym_none] = ACTIONS(2692), - [sym_true] = ACTIONS(2692), - [sym_false] = ACTIONS(2692), - [sym_nil] = ACTIONS(2692), - [anon_sym_if] = ACTIONS(2692), - [anon_sym_DOLLARif] = ACTIONS(2692), - [anon_sym_match] = ACTIONS(2692), - [anon_sym_select] = ACTIONS(2692), - [anon_sym_lock] = ACTIONS(2692), - [anon_sym_rlock] = ACTIONS(2692), - [anon_sym_unsafe] = ACTIONS(2692), - [anon_sym_sql] = ACTIONS(2692), - [sym_int_literal] = ACTIONS(2692), - [sym_float_literal] = ACTIONS(2692), - [sym_rune_literal] = ACTIONS(2692), - [sym_pseudo_compile_time_identifier] = ACTIONS(2692), - [anon_sym_shared] = ACTIONS(2692), - [anon_sym_map_LBRACK] = ACTIONS(2692), - [anon_sym_chan] = ACTIONS(2692), - [anon_sym_thread] = ACTIONS(2692), - [anon_sym_atomic] = ACTIONS(2692), - [anon_sym_assert] = ACTIONS(2692), - [anon_sym_defer] = ACTIONS(2692), - [anon_sym_goto] = ACTIONS(2692), - [anon_sym_break] = ACTIONS(2692), - [anon_sym_continue] = ACTIONS(2692), - [anon_sym_return] = ACTIONS(2692), - [anon_sym_DOLLARfor] = ACTIONS(2692), - [anon_sym_for] = ACTIONS(2692), - [anon_sym_POUND] = ACTIONS(2692), - [anon_sym_asm] = ACTIONS(2692), - [anon_sym_AT_LBRACK] = ACTIONS(2692), - [sym___double_quote] = ACTIONS(2692), - [sym___single_quote] = ACTIONS(2692), - [sym___c_double_quote] = ACTIONS(2692), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2692), - [sym___r_single_quote] = ACTIONS(2692), + [anon_sym_DOT] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym___global] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_PIPE] = ACTIONS(2167), + [anon_sym_fn] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2167), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_union] = ACTIONS(2167), + [anon_sym_pub] = ACTIONS(2167), + [anon_sym_mut] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_QMARK] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_go] = ACTIONS(2167), + [anon_sym_spawn] = ACTIONS(2167), + [anon_sym_json_DOTdecode] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_LT_DASH] = ACTIONS(2167), + [sym_none] = ACTIONS(2167), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_nil] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_DOLLARif] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_select] = ACTIONS(2167), + [anon_sym_lock] = ACTIONS(2167), + [anon_sym_rlock] = ACTIONS(2167), + [anon_sym_unsafe] = ACTIONS(2167), + [anon_sym_sql] = ACTIONS(2167), + [sym_int_literal] = ACTIONS(2167), + [sym_float_literal] = ACTIONS(2167), + [sym_rune_literal] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_c_SQUOTE] = ACTIONS(2167), + [anon_sym_c_DQUOTE] = ACTIONS(2167), + [anon_sym_r_SQUOTE] = ACTIONS(2167), + [anon_sym_r_DQUOTE] = ACTIONS(2167), + [sym_pseudo_compile_time_identifier] = ACTIONS(2167), + [anon_sym_shared] = ACTIONS(2167), + [anon_sym_map_LBRACK] = ACTIONS(2167), + [anon_sym_chan] = ACTIONS(2167), + [anon_sym_thread] = ACTIONS(2167), + [anon_sym_atomic] = ACTIONS(2167), + [anon_sym_assert] = ACTIONS(2167), + [anon_sym_defer] = ACTIONS(2167), + [anon_sym_goto] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_DOLLARfor] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_POUND] = ACTIONS(2167), + [anon_sym_asm] = ACTIONS(2167), + [anon_sym_AT_LBRACK] = ACTIONS(2167), }, [1454] = { [sym_line_comment] = STATE(1454), [sym_block_comment] = STATE(1454), - [sym_reference_expression] = STATE(4391), - [sym_type_reference_expression] = STATE(2446), - [sym_plain_type] = STATE(2516), - [sym__plain_type_without_special] = STATE(2471), - [sym_anon_struct_type] = STATE(2472), - [sym_multi_return_type] = STATE(2471), - [sym_result_type] = STATE(2471), - [sym_option_type] = STATE(2471), - [sym_qualified_type] = STATE(2446), - [sym_fixed_array_type] = STATE(2472), - [sym_array_type] = STATE(2472), - [sym_pointer_type] = STATE(2472), - [sym_wrong_pointer_type] = STATE(2472), - [sym_map_type] = STATE(2472), - [sym_channel_type] = STATE(2472), - [sym_shared_type] = STATE(2472), - [sym_thread_type] = STATE(2472), - [sym_atomic_type] = STATE(2472), - [sym_generic_type] = STATE(2472), - [sym_function_type] = STATE(2472), - [sym_identifier] = ACTIONS(4114), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), + [sym_block] = STATE(1549), + [ts_builtin_sym_end] = ACTIONS(4134), + [sym_identifier] = ACTIONS(4136), + [anon_sym_LF] = ACTIONS(4136), + [anon_sym_CR] = ACTIONS(4136), + [anon_sym_CR_LF] = ACTIONS(4136), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(4116), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(4120), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(4122), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4126), - [anon_sym_LBRACK2] = ACTIONS(4128), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(4130), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(4132), - [anon_sym_map_LBRACK] = ACTIONS(4134), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4136), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym___global] = ACTIONS(4136), + [anon_sym_type] = ACTIONS(4136), + [anon_sym_fn] = ACTIONS(4136), + [anon_sym_PLUS] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_struct] = ACTIONS(4136), + [anon_sym_union] = ACTIONS(4136), + [anon_sym_pub] = ACTIONS(4136), + [anon_sym_mut] = ACTIONS(4136), + [anon_sym_enum] = ACTIONS(4136), + [anon_sym_interface] = ACTIONS(4136), + [anon_sym_QMARK] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(4136), + [anon_sym_go] = ACTIONS(4136), + [anon_sym_spawn] = ACTIONS(4136), + [anon_sym_json_DOTdecode] = ACTIONS(4136), + [anon_sym_LBRACK2] = ACTIONS(4136), + [anon_sym_TILDE] = ACTIONS(4136), + [anon_sym_CARET] = ACTIONS(4136), + [anon_sym_AMP] = ACTIONS(4136), + [anon_sym_LT_DASH] = ACTIONS(4136), + [sym_none] = ACTIONS(4136), + [sym_true] = ACTIONS(4136), + [sym_false] = ACTIONS(4136), + [sym_nil] = ACTIONS(4136), + [anon_sym_if] = ACTIONS(4136), + [anon_sym_DOLLARif] = ACTIONS(4136), + [anon_sym_match] = ACTIONS(4136), + [anon_sym_select] = ACTIONS(4136), + [anon_sym_lock] = ACTIONS(4136), + [anon_sym_rlock] = ACTIONS(4136), + [anon_sym_unsafe] = ACTIONS(4136), + [anon_sym_sql] = ACTIONS(4136), + [sym_int_literal] = ACTIONS(4136), + [sym_float_literal] = ACTIONS(4136), + [sym_rune_literal] = ACTIONS(4136), + [anon_sym_SQUOTE] = ACTIONS(4136), + [anon_sym_DQUOTE] = ACTIONS(4136), + [anon_sym_c_SQUOTE] = ACTIONS(4136), + [anon_sym_c_DQUOTE] = ACTIONS(4136), + [anon_sym_r_SQUOTE] = ACTIONS(4136), + [anon_sym_r_DQUOTE] = ACTIONS(4136), + [sym_pseudo_compile_time_identifier] = ACTIONS(4136), + [anon_sym_shared] = ACTIONS(4136), + [anon_sym_map_LBRACK] = ACTIONS(4136), [anon_sym_chan] = ACTIONS(4136), - [anon_sym_thread] = ACTIONS(4138), - [anon_sym_atomic] = ACTIONS(4140), + [anon_sym_thread] = ACTIONS(4136), + [anon_sym_atomic] = ACTIONS(4136), + [anon_sym_assert] = ACTIONS(4136), + [anon_sym_defer] = ACTIONS(4136), + [anon_sym_goto] = ACTIONS(4136), + [anon_sym_break] = ACTIONS(4136), + [anon_sym_continue] = ACTIONS(4136), + [anon_sym_return] = ACTIONS(4136), + [anon_sym_DOLLARfor] = ACTIONS(4136), + [anon_sym_for] = ACTIONS(4136), + [anon_sym_POUND] = ACTIONS(4136), + [anon_sym_asm] = ACTIONS(4136), + [anon_sym_AT_LBRACK] = ACTIONS(4136), }, [1455] = { [sym_line_comment] = STATE(1455), [sym_block_comment] = STATE(1455), - [sym_reference_expression] = STATE(4391), - [sym_type_reference_expression] = STATE(2446), - [sym_plain_type] = STATE(2559), - [sym__plain_type_without_special] = STATE(2471), - [sym_anon_struct_type] = STATE(2472), - [sym_multi_return_type] = STATE(2471), - [sym_result_type] = STATE(2471), - [sym_option_type] = STATE(2471), - [sym_qualified_type] = STATE(2446), - [sym_fixed_array_type] = STATE(2472), - [sym_array_type] = STATE(2472), - [sym_pointer_type] = STATE(2472), - [sym_wrong_pointer_type] = STATE(2472), - [sym_map_type] = STATE(2472), - [sym_channel_type] = STATE(2472), - [sym_shared_type] = STATE(2472), - [sym_thread_type] = STATE(2472), - [sym_atomic_type] = STATE(2472), - [sym_generic_type] = STATE(2472), - [sym_function_type] = STATE(2472), - [sym_identifier] = ACTIONS(4114), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), + [ts_builtin_sym_end] = ACTIONS(2267), + [sym_identifier] = ACTIONS(2269), + [anon_sym_LF] = ACTIONS(2269), + [anon_sym_CR] = ACTIONS(2269), + [anon_sym_CR_LF] = ACTIONS(2269), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(4116), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(4120), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(4122), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4126), - [anon_sym_LBRACK2] = ACTIONS(4128), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(4130), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(4132), - [anon_sym_map_LBRACK] = ACTIONS(4134), - [anon_sym_chan] = ACTIONS(4136), - [anon_sym_thread] = ACTIONS(4138), - [anon_sym_atomic] = ACTIONS(4140), + [anon_sym_DOT] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2269), + [anon_sym___global] = ACTIONS(2269), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_PIPE] = ACTIONS(2269), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2269), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_pub] = ACTIONS(2269), + [anon_sym_mut] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_interface] = ACTIONS(2269), + [anon_sym_QMARK] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2269), + [anon_sym_go] = ACTIONS(2269), + [anon_sym_spawn] = ACTIONS(2269), + [anon_sym_json_DOTdecode] = ACTIONS(2269), + [anon_sym_LBRACK2] = ACTIONS(2269), + [anon_sym_TILDE] = ACTIONS(2269), + [anon_sym_CARET] = ACTIONS(2269), + [anon_sym_AMP] = ACTIONS(2269), + [anon_sym_LT_DASH] = ACTIONS(2269), + [sym_none] = ACTIONS(2269), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_nil] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_DOLLARif] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_select] = ACTIONS(2269), + [anon_sym_lock] = ACTIONS(2269), + [anon_sym_rlock] = ACTIONS(2269), + [anon_sym_unsafe] = ACTIONS(2269), + [anon_sym_sql] = ACTIONS(2269), + [sym_int_literal] = ACTIONS(2269), + [sym_float_literal] = ACTIONS(2269), + [sym_rune_literal] = ACTIONS(2269), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_DQUOTE] = ACTIONS(2269), + [anon_sym_c_SQUOTE] = ACTIONS(2269), + [anon_sym_c_DQUOTE] = ACTIONS(2269), + [anon_sym_r_SQUOTE] = ACTIONS(2269), + [anon_sym_r_DQUOTE] = ACTIONS(2269), + [sym_pseudo_compile_time_identifier] = ACTIONS(2269), + [anon_sym_shared] = ACTIONS(2269), + [anon_sym_map_LBRACK] = ACTIONS(2269), + [anon_sym_chan] = ACTIONS(2269), + [anon_sym_thread] = ACTIONS(2269), + [anon_sym_atomic] = ACTIONS(2269), + [anon_sym_assert] = ACTIONS(2269), + [anon_sym_defer] = ACTIONS(2269), + [anon_sym_goto] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_DOLLARfor] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_POUND] = ACTIONS(2269), + [anon_sym_asm] = ACTIONS(2269), + [anon_sym_AT_LBRACK] = ACTIONS(2269), }, [1456] = { [sym_line_comment] = STATE(1456), [sym_block_comment] = STATE(1456), - [sym_label_reference] = STATE(1526), - [ts_builtin_sym_end] = ACTIONS(4142), - [sym_identifier] = ACTIONS(4144), - [anon_sym_LF] = ACTIONS(4146), - [anon_sym_CR] = ACTIONS(4146), - [anon_sym_CR_LF] = ACTIONS(4146), + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_LF] = ACTIONS(2261), + [anon_sym_CR] = ACTIONS(2261), + [anon_sym_CR_LF] = ACTIONS(2261), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4146), - [anon_sym_const] = ACTIONS(4146), - [anon_sym_LPAREN] = ACTIONS(4146), - [anon_sym___global] = ACTIONS(4146), - [anon_sym_type] = ACTIONS(4146), - [anon_sym_fn] = ACTIONS(4146), - [anon_sym_PLUS] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4146), - [anon_sym_STAR] = ACTIONS(4146), - [anon_sym_struct] = ACTIONS(4146), - [anon_sym_union] = ACTIONS(4146), - [anon_sym_pub] = ACTIONS(4146), - [anon_sym_mut] = ACTIONS(4146), - [anon_sym_enum] = ACTIONS(4146), - [anon_sym_interface] = ACTIONS(4146), - [anon_sym_QMARK] = ACTIONS(4146), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_go] = ACTIONS(4146), - [anon_sym_spawn] = ACTIONS(4146), - [anon_sym_json_DOTdecode] = ACTIONS(4146), - [anon_sym_LBRACK2] = ACTIONS(4146), - [anon_sym_TILDE] = ACTIONS(4146), - [anon_sym_CARET] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4146), - [anon_sym_LT_DASH] = ACTIONS(4146), - [sym_none] = ACTIONS(4146), - [sym_true] = ACTIONS(4146), - [sym_false] = ACTIONS(4146), - [sym_nil] = ACTIONS(4146), - [anon_sym_if] = ACTIONS(4146), - [anon_sym_DOLLARif] = ACTIONS(4146), - [anon_sym_match] = ACTIONS(4146), - [anon_sym_select] = ACTIONS(4146), - [anon_sym_lock] = ACTIONS(4146), - [anon_sym_rlock] = ACTIONS(4146), - [anon_sym_unsafe] = ACTIONS(4146), - [anon_sym_sql] = ACTIONS(4146), - [sym_int_literal] = ACTIONS(4146), - [sym_float_literal] = ACTIONS(4146), - [sym_rune_literal] = ACTIONS(4146), - [sym_pseudo_compile_time_identifier] = ACTIONS(4146), - [anon_sym_shared] = ACTIONS(4146), - [anon_sym_map_LBRACK] = ACTIONS(4146), - [anon_sym_chan] = ACTIONS(4146), - [anon_sym_thread] = ACTIONS(4146), - [anon_sym_atomic] = ACTIONS(4146), - [anon_sym_assert] = ACTIONS(4146), - [anon_sym_defer] = ACTIONS(4146), - [anon_sym_goto] = ACTIONS(4146), - [anon_sym_break] = ACTIONS(4146), - [anon_sym_continue] = ACTIONS(4146), - [anon_sym_return] = ACTIONS(4146), - [anon_sym_DOLLARfor] = ACTIONS(4146), - [anon_sym_for] = ACTIONS(4146), - [anon_sym_POUND] = ACTIONS(4146), - [anon_sym_asm] = ACTIONS(4146), - [anon_sym_AT_LBRACK] = ACTIONS(4146), - [sym___double_quote] = ACTIONS(4146), - [sym___single_quote] = ACTIONS(4146), - [sym___c_double_quote] = ACTIONS(4146), - [sym___c_single_quote] = ACTIONS(4146), - [sym___r_double_quote] = ACTIONS(4146), - [sym___r_single_quote] = ACTIONS(4146), + [anon_sym_DOT] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym___global] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_fn] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(2261), + [anon_sym_struct] = ACTIONS(2261), + [anon_sym_union] = ACTIONS(2261), + [anon_sym_pub] = ACTIONS(2261), + [anon_sym_mut] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + [anon_sym_interface] = ACTIONS(2261), + [anon_sym_QMARK] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2261), + [anon_sym_go] = ACTIONS(2261), + [anon_sym_spawn] = ACTIONS(2261), + [anon_sym_json_DOTdecode] = ACTIONS(2261), + [anon_sym_LBRACK2] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2261), + [anon_sym_CARET] = ACTIONS(2261), + [anon_sym_AMP] = ACTIONS(2261), + [anon_sym_LT_DASH] = ACTIONS(2261), + [sym_none] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_nil] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_DOLLARif] = ACTIONS(2261), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_select] = ACTIONS(2261), + [anon_sym_lock] = ACTIONS(2261), + [anon_sym_rlock] = ACTIONS(2261), + [anon_sym_unsafe] = ACTIONS(2261), + [anon_sym_sql] = ACTIONS(2261), + [sym_int_literal] = ACTIONS(2261), + [sym_float_literal] = ACTIONS(2261), + [sym_rune_literal] = ACTIONS(2261), + [anon_sym_SQUOTE] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2261), + [anon_sym_c_SQUOTE] = ACTIONS(2261), + [anon_sym_c_DQUOTE] = ACTIONS(2261), + [anon_sym_r_SQUOTE] = ACTIONS(2261), + [anon_sym_r_DQUOTE] = ACTIONS(2261), + [sym_pseudo_compile_time_identifier] = ACTIONS(2261), + [anon_sym_shared] = ACTIONS(2261), + [anon_sym_map_LBRACK] = ACTIONS(2261), + [anon_sym_chan] = ACTIONS(2261), + [anon_sym_thread] = ACTIONS(2261), + [anon_sym_atomic] = ACTIONS(2261), + [anon_sym_assert] = ACTIONS(2261), + [anon_sym_defer] = ACTIONS(2261), + [anon_sym_goto] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_DOLLARfor] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(2261), + [anon_sym_asm] = ACTIONS(2261), + [anon_sym_AT_LBRACK] = ACTIONS(2261), }, [1457] = { [sym_line_comment] = STATE(1457), [sym_block_comment] = STATE(1457), - [sym_label_reference] = STATE(1525), - [ts_builtin_sym_end] = ACTIONS(4148), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2171), + [anon_sym_LF] = ACTIONS(2171), + [anon_sym_CR] = ACTIONS(2171), + [anon_sym_CR_LF] = ACTIONS(2171), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_const] = ACTIONS(2171), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym___global] = ACTIONS(2171), + [anon_sym_type] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2171), + [anon_sym_fn] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_struct] = ACTIONS(2171), + [anon_sym_union] = ACTIONS(2171), + [anon_sym_pub] = ACTIONS(2171), + [anon_sym_mut] = ACTIONS(2171), + [anon_sym_enum] = ACTIONS(2171), + [anon_sym_interface] = ACTIONS(2171), + [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_go] = ACTIONS(2171), + [anon_sym_spawn] = ACTIONS(2171), + [anon_sym_json_DOTdecode] = ACTIONS(2171), + [anon_sym_LBRACK2] = ACTIONS(2171), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2171), + [sym_none] = ACTIONS(2171), + [sym_true] = ACTIONS(2171), + [sym_false] = ACTIONS(2171), + [sym_nil] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(2171), + [anon_sym_DOLLARif] = ACTIONS(2171), + [anon_sym_match] = ACTIONS(2171), + [anon_sym_select] = ACTIONS(2171), + [anon_sym_lock] = ACTIONS(2171), + [anon_sym_rlock] = ACTIONS(2171), + [anon_sym_unsafe] = ACTIONS(2171), + [anon_sym_sql] = ACTIONS(2171), + [sym_int_literal] = ACTIONS(2171), + [sym_float_literal] = ACTIONS(2171), + [sym_rune_literal] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2171), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_c_SQUOTE] = ACTIONS(2171), + [anon_sym_c_DQUOTE] = ACTIONS(2171), + [anon_sym_r_SQUOTE] = ACTIONS(2171), + [anon_sym_r_DQUOTE] = ACTIONS(2171), + [sym_pseudo_compile_time_identifier] = ACTIONS(2171), + [anon_sym_shared] = ACTIONS(2171), + [anon_sym_map_LBRACK] = ACTIONS(2171), + [anon_sym_chan] = ACTIONS(2171), + [anon_sym_thread] = ACTIONS(2171), + [anon_sym_atomic] = ACTIONS(2171), + [anon_sym_assert] = ACTIONS(2171), + [anon_sym_defer] = ACTIONS(2171), + [anon_sym_goto] = ACTIONS(2171), + [anon_sym_break] = ACTIONS(2171), + [anon_sym_continue] = ACTIONS(2171), + [anon_sym_return] = ACTIONS(2171), + [anon_sym_DOLLARfor] = ACTIONS(2171), + [anon_sym_for] = ACTIONS(2171), + [anon_sym_POUND] = ACTIONS(2171), + [anon_sym_asm] = ACTIONS(2171), + [anon_sym_AT_LBRACK] = ACTIONS(2171), + }, + [1458] = { + [sym_line_comment] = STATE(1458), + [sym_block_comment] = STATE(1458), + [ts_builtin_sym_end] = ACTIONS(2251), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LF] = ACTIONS(2253), + [anon_sym_CR] = ACTIONS(2253), + [anon_sym_CR_LF] = ACTIONS(2253), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym___global] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_PIPE] = ACTIONS(2253), + [anon_sym_fn] = ACTIONS(2253), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_STAR] = ACTIONS(2253), + [anon_sym_struct] = ACTIONS(2253), + [anon_sym_union] = ACTIONS(2253), + [anon_sym_pub] = ACTIONS(2253), + [anon_sym_mut] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [anon_sym_interface] = ACTIONS(2253), + [anon_sym_QMARK] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2253), + [anon_sym_go] = ACTIONS(2253), + [anon_sym_spawn] = ACTIONS(2253), + [anon_sym_json_DOTdecode] = ACTIONS(2253), + [anon_sym_LBRACK2] = ACTIONS(2253), + [anon_sym_TILDE] = ACTIONS(2253), + [anon_sym_CARET] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(2253), + [anon_sym_LT_DASH] = ACTIONS(2253), + [sym_none] = ACTIONS(2253), + [sym_true] = ACTIONS(2253), + [sym_false] = ACTIONS(2253), + [sym_nil] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_DOLLARif] = ACTIONS(2253), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_select] = ACTIONS(2253), + [anon_sym_lock] = ACTIONS(2253), + [anon_sym_rlock] = ACTIONS(2253), + [anon_sym_unsafe] = ACTIONS(2253), + [anon_sym_sql] = ACTIONS(2253), + [sym_int_literal] = ACTIONS(2253), + [sym_float_literal] = ACTIONS(2253), + [sym_rune_literal] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2253), + [anon_sym_c_SQUOTE] = ACTIONS(2253), + [anon_sym_c_DQUOTE] = ACTIONS(2253), + [anon_sym_r_SQUOTE] = ACTIONS(2253), + [anon_sym_r_DQUOTE] = ACTIONS(2253), + [sym_pseudo_compile_time_identifier] = ACTIONS(2253), + [anon_sym_shared] = ACTIONS(2253), + [anon_sym_map_LBRACK] = ACTIONS(2253), + [anon_sym_chan] = ACTIONS(2253), + [anon_sym_thread] = ACTIONS(2253), + [anon_sym_atomic] = ACTIONS(2253), + [anon_sym_assert] = ACTIONS(2253), + [anon_sym_defer] = ACTIONS(2253), + [anon_sym_goto] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_DOLLARfor] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_POUND] = ACTIONS(2253), + [anon_sym_asm] = ACTIONS(2253), + [anon_sym_AT_LBRACK] = ACTIONS(2253), + }, + [1459] = { + [sym_line_comment] = STATE(1459), + [sym_block_comment] = STATE(1459), + [ts_builtin_sym_end] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2249), + [anon_sym_LF] = ACTIONS(2249), + [anon_sym_CR] = ACTIONS(2249), + [anon_sym_CR_LF] = ACTIONS(2249), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym___global] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_PIPE] = ACTIONS(2249), + [anon_sym_fn] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [anon_sym_pub] = ACTIONS(2249), + [anon_sym_mut] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_interface] = ACTIONS(2249), + [anon_sym_QMARK] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_go] = ACTIONS(2249), + [anon_sym_spawn] = ACTIONS(2249), + [anon_sym_json_DOTdecode] = ACTIONS(2249), + [anon_sym_LBRACK2] = ACTIONS(2249), + [anon_sym_TILDE] = ACTIONS(2249), + [anon_sym_CARET] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_LT_DASH] = ACTIONS(2249), + [sym_none] = ACTIONS(2249), + [sym_true] = ACTIONS(2249), + [sym_false] = ACTIONS(2249), + [sym_nil] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_DOLLARif] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_select] = ACTIONS(2249), + [anon_sym_lock] = ACTIONS(2249), + [anon_sym_rlock] = ACTIONS(2249), + [anon_sym_unsafe] = ACTIONS(2249), + [anon_sym_sql] = ACTIONS(2249), + [sym_int_literal] = ACTIONS(2249), + [sym_float_literal] = ACTIONS(2249), + [sym_rune_literal] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_c_SQUOTE] = ACTIONS(2249), + [anon_sym_c_DQUOTE] = ACTIONS(2249), + [anon_sym_r_SQUOTE] = ACTIONS(2249), + [anon_sym_r_DQUOTE] = ACTIONS(2249), + [sym_pseudo_compile_time_identifier] = ACTIONS(2249), + [anon_sym_shared] = ACTIONS(2249), + [anon_sym_map_LBRACK] = ACTIONS(2249), + [anon_sym_chan] = ACTIONS(2249), + [anon_sym_thread] = ACTIONS(2249), + [anon_sym_atomic] = ACTIONS(2249), + [anon_sym_assert] = ACTIONS(2249), + [anon_sym_defer] = ACTIONS(2249), + [anon_sym_goto] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_DOLLARfor] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_asm] = ACTIONS(2249), + [anon_sym_AT_LBRACK] = ACTIONS(2249), + }, + [1460] = { + [sym_line_comment] = STATE(1460), + [sym_block_comment] = STATE(1460), + [sym_block] = STATE(1550), + [ts_builtin_sym_end] = ACTIONS(4138), + [sym_identifier] = ACTIONS(4140), + [anon_sym_LF] = ACTIONS(4140), + [anon_sym_CR] = ACTIONS(4140), + [anon_sym_CR_LF] = ACTIONS(4140), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4140), + [anon_sym_LPAREN] = ACTIONS(4140), + [anon_sym___global] = ACTIONS(4140), + [anon_sym_type] = ACTIONS(4140), + [anon_sym_fn] = ACTIONS(4140), + [anon_sym_PLUS] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4140), + [anon_sym_STAR] = ACTIONS(4140), + [anon_sym_struct] = ACTIONS(4140), + [anon_sym_union] = ACTIONS(4140), + [anon_sym_pub] = ACTIONS(4140), + [anon_sym_mut] = ACTIONS(4140), + [anon_sym_enum] = ACTIONS(4140), + [anon_sym_interface] = ACTIONS(4140), + [anon_sym_QMARK] = ACTIONS(4140), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_go] = ACTIONS(4140), + [anon_sym_spawn] = ACTIONS(4140), + [anon_sym_json_DOTdecode] = ACTIONS(4140), + [anon_sym_LBRACK2] = ACTIONS(4140), + [anon_sym_TILDE] = ACTIONS(4140), + [anon_sym_CARET] = ACTIONS(4140), + [anon_sym_AMP] = ACTIONS(4140), + [anon_sym_LT_DASH] = ACTIONS(4140), + [sym_none] = ACTIONS(4140), + [sym_true] = ACTIONS(4140), + [sym_false] = ACTIONS(4140), + [sym_nil] = ACTIONS(4140), + [anon_sym_if] = ACTIONS(4140), + [anon_sym_DOLLARif] = ACTIONS(4140), + [anon_sym_match] = ACTIONS(4140), + [anon_sym_select] = ACTIONS(4140), + [anon_sym_lock] = ACTIONS(4140), + [anon_sym_rlock] = ACTIONS(4140), + [anon_sym_unsafe] = ACTIONS(4140), + [anon_sym_sql] = ACTIONS(4140), + [sym_int_literal] = ACTIONS(4140), + [sym_float_literal] = ACTIONS(4140), + [sym_rune_literal] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4140), + [anon_sym_DQUOTE] = ACTIONS(4140), + [anon_sym_c_SQUOTE] = ACTIONS(4140), + [anon_sym_c_DQUOTE] = ACTIONS(4140), + [anon_sym_r_SQUOTE] = ACTIONS(4140), + [anon_sym_r_DQUOTE] = ACTIONS(4140), + [sym_pseudo_compile_time_identifier] = ACTIONS(4140), + [anon_sym_shared] = ACTIONS(4140), + [anon_sym_map_LBRACK] = ACTIONS(4140), + [anon_sym_chan] = ACTIONS(4140), + [anon_sym_thread] = ACTIONS(4140), + [anon_sym_atomic] = ACTIONS(4140), + [anon_sym_assert] = ACTIONS(4140), + [anon_sym_defer] = ACTIONS(4140), + [anon_sym_goto] = ACTIONS(4140), + [anon_sym_break] = ACTIONS(4140), + [anon_sym_continue] = ACTIONS(4140), + [anon_sym_return] = ACTIONS(4140), + [anon_sym_DOLLARfor] = ACTIONS(4140), + [anon_sym_for] = ACTIONS(4140), + [anon_sym_POUND] = ACTIONS(4140), + [anon_sym_asm] = ACTIONS(4140), + [anon_sym_AT_LBRACK] = ACTIONS(4140), + }, + [1461] = { + [sym_line_comment] = STATE(1461), + [sym_block_comment] = STATE(1461), + [sym_block] = STATE(1516), + [ts_builtin_sym_end] = ACTIONS(4142), [sym_identifier] = ACTIONS(4144), + [anon_sym_LF] = ACTIONS(4144), + [anon_sym_CR] = ACTIONS(4144), + [anon_sym_CR_LF] = ACTIONS(4144), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4144), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_const] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym___global] = ACTIONS(4144), + [anon_sym_type] = ACTIONS(4144), + [anon_sym_fn] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4144), + [anon_sym_DASH] = ACTIONS(4144), + [anon_sym_STAR] = ACTIONS(4144), + [anon_sym_struct] = ACTIONS(4144), + [anon_sym_union] = ACTIONS(4144), + [anon_sym_pub] = ACTIONS(4144), + [anon_sym_mut] = ACTIONS(4144), + [anon_sym_enum] = ACTIONS(4144), + [anon_sym_interface] = ACTIONS(4144), + [anon_sym_QMARK] = ACTIONS(4144), + [anon_sym_BANG] = ACTIONS(4144), + [anon_sym_go] = ACTIONS(4144), + [anon_sym_spawn] = ACTIONS(4144), + [anon_sym_json_DOTdecode] = ACTIONS(4144), + [anon_sym_LBRACK2] = ACTIONS(4144), + [anon_sym_TILDE] = ACTIONS(4144), + [anon_sym_CARET] = ACTIONS(4144), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_LT_DASH] = ACTIONS(4144), + [sym_none] = ACTIONS(4144), + [sym_true] = ACTIONS(4144), + [sym_false] = ACTIONS(4144), + [sym_nil] = ACTIONS(4144), + [anon_sym_if] = ACTIONS(4144), + [anon_sym_DOLLARif] = ACTIONS(4144), + [anon_sym_match] = ACTIONS(4144), + [anon_sym_select] = ACTIONS(4144), + [anon_sym_lock] = ACTIONS(4144), + [anon_sym_rlock] = ACTIONS(4144), + [anon_sym_unsafe] = ACTIONS(4144), + [anon_sym_sql] = ACTIONS(4144), + [sym_int_literal] = ACTIONS(4144), + [sym_float_literal] = ACTIONS(4144), + [sym_rune_literal] = ACTIONS(4144), + [anon_sym_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_assert] = ACTIONS(4144), + [anon_sym_defer] = ACTIONS(4144), + [anon_sym_goto] = ACTIONS(4144), + [anon_sym_break] = ACTIONS(4144), + [anon_sym_continue] = ACTIONS(4144), + [anon_sym_return] = ACTIONS(4144), + [anon_sym_DOLLARfor] = ACTIONS(4144), + [anon_sym_for] = ACTIONS(4144), + [anon_sym_POUND] = ACTIONS(4144), + [anon_sym_asm] = ACTIONS(4144), + [anon_sym_AT_LBRACK] = ACTIONS(4144), + }, + [1462] = { + [sym_line_comment] = STATE(1462), + [sym_block_comment] = STATE(1462), + [ts_builtin_sym_end] = ACTIONS(2161), + [sym_identifier] = ACTIONS(2163), + [anon_sym_LF] = ACTIONS(2163), + [anon_sym_CR] = ACTIONS(2163), + [anon_sym_CR_LF] = ACTIONS(2163), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym___global] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_fn] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(2163), + [anon_sym_union] = ACTIONS(2163), + [anon_sym_pub] = ACTIONS(2163), + [anon_sym_mut] = ACTIONS(2163), + [anon_sym_enum] = ACTIONS(2163), + [anon_sym_interface] = ACTIONS(2163), + [anon_sym_QMARK] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_go] = ACTIONS(2163), + [anon_sym_spawn] = ACTIONS(2163), + [anon_sym_json_DOTdecode] = ACTIONS(2163), + [anon_sym_LBRACK2] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_CARET] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2163), + [anon_sym_LT_DASH] = ACTIONS(2163), + [sym_none] = ACTIONS(2163), + [sym_true] = ACTIONS(2163), + [sym_false] = ACTIONS(2163), + [sym_nil] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_DOLLARif] = ACTIONS(2163), + [anon_sym_match] = ACTIONS(2163), + [anon_sym_select] = ACTIONS(2163), + [anon_sym_lock] = ACTIONS(2163), + [anon_sym_rlock] = ACTIONS(2163), + [anon_sym_unsafe] = ACTIONS(2163), + [anon_sym_sql] = ACTIONS(2163), + [sym_int_literal] = ACTIONS(2163), + [sym_float_literal] = ACTIONS(2163), + [sym_rune_literal] = ACTIONS(2163), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [anon_sym_c_SQUOTE] = ACTIONS(2163), + [anon_sym_c_DQUOTE] = ACTIONS(2163), + [anon_sym_r_SQUOTE] = ACTIONS(2163), + [anon_sym_r_DQUOTE] = ACTIONS(2163), + [sym_pseudo_compile_time_identifier] = ACTIONS(2163), + [anon_sym_shared] = ACTIONS(2163), + [anon_sym_map_LBRACK] = ACTIONS(2163), + [anon_sym_chan] = ACTIONS(2163), + [anon_sym_thread] = ACTIONS(2163), + [anon_sym_atomic] = ACTIONS(2163), + [anon_sym_assert] = ACTIONS(2163), + [anon_sym_defer] = ACTIONS(2163), + [anon_sym_goto] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_DOLLARfor] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_POUND] = ACTIONS(2163), + [anon_sym_asm] = ACTIONS(2163), + [anon_sym_AT_LBRACK] = ACTIONS(2163), + }, + [1463] = { + [sym_line_comment] = STATE(1463), + [sym_block_comment] = STATE(1463), + [sym_reference_expression] = STATE(4386), + [sym_type_reference_expression] = STATE(2419), + [sym_plain_type] = STATE(2492), + [sym__plain_type_without_special] = STATE(2533), + [sym_anon_struct_type] = STATE(2535), + [sym_multi_return_type] = STATE(2533), + [sym_result_type] = STATE(2533), + [sym_option_type] = STATE(2533), + [sym_qualified_type] = STATE(2419), + [sym_fixed_array_type] = STATE(2535), + [sym_array_type] = STATE(2535), + [sym_pointer_type] = STATE(2535), + [sym_wrong_pointer_type] = STATE(2535), + [sym_map_type] = STATE(2535), + [sym_channel_type] = STATE(2535), + [sym_shared_type] = STATE(2535), + [sym_thread_type] = STATE(2535), + [sym_atomic_type] = STATE(2535), + [sym_generic_type] = STATE(2535), + [sym_function_type] = STATE(2535), + [sym_identifier] = ACTIONS(4068), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_CR] = ACTIONS(597), + [anon_sym_CR_LF] = ACTIONS(597), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(4070), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(4074), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(4076), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(4078), + [anon_sym_BANG] = ACTIONS(4080), + [anon_sym_LBRACK2] = ACTIONS(4082), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(4084), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(597), + [anon_sym_POUND_LBRACK] = ACTIONS(597), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(597), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(4086), + [anon_sym_map_LBRACK] = ACTIONS(4088), + [anon_sym_chan] = ACTIONS(4090), + [anon_sym_thread] = ACTIONS(4092), + [anon_sym_atomic] = ACTIONS(4094), + }, + [1464] = { + [sym_line_comment] = STATE(1464), + [sym_block_comment] = STATE(1464), + [ts_builtin_sym_end] = ACTIONS(2183), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LF] = ACTIONS(2185), + [anon_sym_CR] = ACTIONS(2185), + [anon_sym_CR_LF] = ACTIONS(2185), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym___global] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_mut] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_interface] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2185), + [anon_sym_go] = ACTIONS(2185), + [anon_sym_spawn] = ACTIONS(2185), + [anon_sym_json_DOTdecode] = ACTIONS(2185), + [anon_sym_LBRACK2] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_CARET] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_LT_DASH] = ACTIONS(2185), + [sym_none] = ACTIONS(2185), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), + [sym_nil] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_DOLLARif] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_select] = ACTIONS(2185), + [anon_sym_lock] = ACTIONS(2185), + [anon_sym_rlock] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_sql] = ACTIONS(2185), + [sym_int_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), + [sym_rune_literal] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(2185), + [anon_sym_c_SQUOTE] = ACTIONS(2185), + [anon_sym_c_DQUOTE] = ACTIONS(2185), + [anon_sym_r_SQUOTE] = ACTIONS(2185), + [anon_sym_r_DQUOTE] = ACTIONS(2185), + [sym_pseudo_compile_time_identifier] = ACTIONS(2185), + [anon_sym_shared] = ACTIONS(2185), + [anon_sym_map_LBRACK] = ACTIONS(2185), + [anon_sym_chan] = ACTIONS(2185), + [anon_sym_thread] = ACTIONS(2185), + [anon_sym_atomic] = ACTIONS(2185), + [anon_sym_assert] = ACTIONS(2185), + [anon_sym_defer] = ACTIONS(2185), + [anon_sym_goto] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_DOLLARfor] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_asm] = ACTIONS(2185), + [anon_sym_AT_LBRACK] = ACTIONS(2185), + }, + [1465] = { + [sym_line_comment] = STATE(1465), + [sym_block_comment] = STATE(1465), + [ts_builtin_sym_end] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LF] = ACTIONS(2205), + [anon_sym_CR] = ACTIONS(2205), + [anon_sym_CR_LF] = ACTIONS(2205), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym___global] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_PIPE] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_mut] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_QMARK] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_go] = ACTIONS(2205), + [anon_sym_spawn] = ACTIONS(2205), + [anon_sym_json_DOTdecode] = ACTIONS(2205), + [anon_sym_LBRACK2] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_CARET] = ACTIONS(2205), + [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_LT_DASH] = ACTIONS(2205), + [sym_none] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_nil] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_DOLLARif] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_select] = ACTIONS(2205), + [anon_sym_lock] = ACTIONS(2205), + [anon_sym_rlock] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_sql] = ACTIONS(2205), + [sym_int_literal] = ACTIONS(2205), + [sym_float_literal] = ACTIONS(2205), + [sym_rune_literal] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2205), + [anon_sym_c_SQUOTE] = ACTIONS(2205), + [anon_sym_c_DQUOTE] = ACTIONS(2205), + [anon_sym_r_SQUOTE] = ACTIONS(2205), + [anon_sym_r_DQUOTE] = ACTIONS(2205), + [sym_pseudo_compile_time_identifier] = ACTIONS(2205), + [anon_sym_shared] = ACTIONS(2205), + [anon_sym_map_LBRACK] = ACTIONS(2205), + [anon_sym_chan] = ACTIONS(2205), + [anon_sym_thread] = ACTIONS(2205), + [anon_sym_atomic] = ACTIONS(2205), + [anon_sym_assert] = ACTIONS(2205), + [anon_sym_defer] = ACTIONS(2205), + [anon_sym_goto] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_DOLLARfor] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_POUND] = ACTIONS(2205), + [anon_sym_asm] = ACTIONS(2205), + [anon_sym_AT_LBRACK] = ACTIONS(2205), + }, + [1466] = { + [sym_line_comment] = STATE(1466), + [sym_block_comment] = STATE(1466), + [ts_builtin_sym_end] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LF] = ACTIONS(2209), + [anon_sym_CR] = ACTIONS(2209), + [anon_sym_CR_LF] = ACTIONS(2209), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym___global] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_fn] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_struct] = ACTIONS(2209), + [anon_sym_union] = ACTIONS(2209), + [anon_sym_pub] = ACTIONS(2209), + [anon_sym_mut] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), + [anon_sym_interface] = ACTIONS(2209), + [anon_sym_QMARK] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2209), + [anon_sym_go] = ACTIONS(2209), + [anon_sym_spawn] = ACTIONS(2209), + [anon_sym_json_DOTdecode] = ACTIONS(2209), + [anon_sym_LBRACK2] = ACTIONS(2209), + [anon_sym_TILDE] = ACTIONS(2209), + [anon_sym_CARET] = ACTIONS(2209), + [anon_sym_AMP] = ACTIONS(2209), + [anon_sym_LT_DASH] = ACTIONS(2209), + [sym_none] = ACTIONS(2209), + [sym_true] = ACTIONS(2209), + [sym_false] = ACTIONS(2209), + [sym_nil] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_DOLLARif] = ACTIONS(2209), + [anon_sym_match] = ACTIONS(2209), + [anon_sym_select] = ACTIONS(2209), + [anon_sym_lock] = ACTIONS(2209), + [anon_sym_rlock] = ACTIONS(2209), + [anon_sym_unsafe] = ACTIONS(2209), + [anon_sym_sql] = ACTIONS(2209), + [sym_int_literal] = ACTIONS(2209), + [sym_float_literal] = ACTIONS(2209), + [sym_rune_literal] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_DQUOTE] = ACTIONS(2209), + [anon_sym_c_SQUOTE] = ACTIONS(2209), + [anon_sym_c_DQUOTE] = ACTIONS(2209), + [anon_sym_r_SQUOTE] = ACTIONS(2209), + [anon_sym_r_DQUOTE] = ACTIONS(2209), + [sym_pseudo_compile_time_identifier] = ACTIONS(2209), + [anon_sym_shared] = ACTIONS(2209), + [anon_sym_map_LBRACK] = ACTIONS(2209), + [anon_sym_chan] = ACTIONS(2209), + [anon_sym_thread] = ACTIONS(2209), + [anon_sym_atomic] = ACTIONS(2209), + [anon_sym_assert] = ACTIONS(2209), + [anon_sym_defer] = ACTIONS(2209), + [anon_sym_goto] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_DOLLARfor] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_POUND] = ACTIONS(2209), + [anon_sym_asm] = ACTIONS(2209), + [anon_sym_AT_LBRACK] = ACTIONS(2209), + }, + [1467] = { + [sym_line_comment] = STATE(1467), + [sym_block_comment] = STATE(1467), + [sym_label_reference] = STATE(1557), + [ts_builtin_sym_end] = ACTIONS(4146), + [sym_identifier] = ACTIONS(4148), [anon_sym_LF] = ACTIONS(4150), [anon_sym_CR] = ACTIONS(4150), [anon_sym_CR_LF] = ACTIONS(4150), @@ -177594,6 +178330,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4150), [sym_float_literal] = ACTIONS(4150), [sym_rune_literal] = ACTIONS(4150), + [anon_sym_SQUOTE] = ACTIONS(4150), + [anon_sym_DQUOTE] = ACTIONS(4150), + [anon_sym_c_SQUOTE] = ACTIONS(4150), + [anon_sym_c_DQUOTE] = ACTIONS(4150), + [anon_sym_r_SQUOTE] = ACTIONS(4150), + [anon_sym_r_DQUOTE] = ACTIONS(4150), [sym_pseudo_compile_time_identifier] = ACTIONS(4150), [anon_sym_shared] = ACTIONS(4150), [anon_sym_map_LBRACK] = ACTIONS(4150), @@ -177611,862 +178353,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4150), [anon_sym_asm] = ACTIONS(4150), [anon_sym_AT_LBRACK] = ACTIONS(4150), - [sym___double_quote] = ACTIONS(4150), - [sym___single_quote] = ACTIONS(4150), - [sym___c_double_quote] = ACTIONS(4150), - [sym___c_single_quote] = ACTIONS(4150), - [sym___r_double_quote] = ACTIONS(4150), - [sym___r_single_quote] = ACTIONS(4150), - }, - [1458] = { - [sym_line_comment] = STATE(1458), - [sym_block_comment] = STATE(1458), - [ts_builtin_sym_end] = ACTIONS(2900), - [sym_identifier] = ACTIONS(2902), - [anon_sym_LF] = ACTIONS(2902), - [anon_sym_CR] = ACTIONS(2902), - [anon_sym_CR_LF] = ACTIONS(2902), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2902), - [anon_sym_const] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2902), - [anon_sym___global] = ACTIONS(2902), - [anon_sym_type] = ACTIONS(2902), - [anon_sym_PIPE] = ACTIONS(2902), - [anon_sym_fn] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_struct] = ACTIONS(2902), - [anon_sym_union] = ACTIONS(2902), - [anon_sym_pub] = ACTIONS(2902), - [anon_sym_mut] = ACTIONS(2902), - [anon_sym_enum] = ACTIONS(2902), - [anon_sym_interface] = ACTIONS(2902), - [anon_sym_QMARK] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_go] = ACTIONS(2902), - [anon_sym_spawn] = ACTIONS(2902), - [anon_sym_json_DOTdecode] = ACTIONS(2902), - [anon_sym_LBRACK2] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [anon_sym_CARET] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_LT_DASH] = ACTIONS(2902), - [sym_none] = ACTIONS(2902), - [sym_true] = ACTIONS(2902), - [sym_false] = ACTIONS(2902), - [sym_nil] = ACTIONS(2902), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_DOLLARif] = ACTIONS(2902), - [anon_sym_match] = ACTIONS(2902), - [anon_sym_select] = ACTIONS(2902), - [anon_sym_lock] = ACTIONS(2902), - [anon_sym_rlock] = ACTIONS(2902), - [anon_sym_unsafe] = ACTIONS(2902), - [anon_sym_sql] = ACTIONS(2902), - [sym_int_literal] = ACTIONS(2902), - [sym_float_literal] = ACTIONS(2902), - [sym_rune_literal] = ACTIONS(2902), - [sym_pseudo_compile_time_identifier] = ACTIONS(2902), - [anon_sym_shared] = ACTIONS(2902), - [anon_sym_map_LBRACK] = ACTIONS(2902), - [anon_sym_chan] = ACTIONS(2902), - [anon_sym_thread] = ACTIONS(2902), - [anon_sym_atomic] = ACTIONS(2902), - [anon_sym_assert] = ACTIONS(2902), - [anon_sym_defer] = ACTIONS(2902), - [anon_sym_goto] = ACTIONS(2902), - [anon_sym_break] = ACTIONS(2902), - [anon_sym_continue] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2902), - [anon_sym_DOLLARfor] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2902), - [anon_sym_POUND] = ACTIONS(2902), - [anon_sym_asm] = ACTIONS(2902), - [anon_sym_AT_LBRACK] = ACTIONS(2902), - [sym___double_quote] = ACTIONS(2902), - [sym___single_quote] = ACTIONS(2902), - [sym___c_double_quote] = ACTIONS(2902), - [sym___c_single_quote] = ACTIONS(2902), - [sym___r_double_quote] = ACTIONS(2902), - [sym___r_single_quote] = ACTIONS(2902), }, - [1459] = { - [sym_line_comment] = STATE(1459), - [sym_block_comment] = STATE(1459), - [sym_reference_expression] = STATE(4391), - [sym_type_reference_expression] = STATE(2446), - [sym_plain_type] = STATE(2552), - [sym__plain_type_without_special] = STATE(2471), - [sym_anon_struct_type] = STATE(2472), - [sym_multi_return_type] = STATE(2471), - [sym_result_type] = STATE(2471), - [sym_option_type] = STATE(2471), - [sym_qualified_type] = STATE(2446), - [sym_fixed_array_type] = STATE(2472), - [sym_array_type] = STATE(2472), - [sym_pointer_type] = STATE(2472), - [sym_wrong_pointer_type] = STATE(2472), - [sym_map_type] = STATE(2472), - [sym_channel_type] = STATE(2472), - [sym_shared_type] = STATE(2472), - [sym_thread_type] = STATE(2472), - [sym_atomic_type] = STATE(2472), - [sym_generic_type] = STATE(2472), - [sym_function_type] = STATE(2472), - [sym_identifier] = ACTIONS(4114), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(623), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(4116), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(4120), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(4122), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4126), - [anon_sym_LBRACK2] = ACTIONS(4128), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(4130), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(623), - [anon_sym_POUND_LBRACK] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(623), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(4132), - [anon_sym_map_LBRACK] = ACTIONS(4134), - [anon_sym_chan] = ACTIONS(4136), - [anon_sym_thread] = ACTIONS(4138), - [anon_sym_atomic] = ACTIONS(4140), - }, - [1460] = { - [sym_line_comment] = STATE(1460), - [sym_block_comment] = STATE(1460), - [ts_builtin_sym_end] = ACTIONS(2838), - [sym_identifier] = ACTIONS(2840), - [anon_sym_LF] = ACTIONS(2840), - [anon_sym_CR] = ACTIONS(2840), - [anon_sym_CR_LF] = ACTIONS(2840), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym___global] = ACTIONS(2840), - [anon_sym_type] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_pub] = ACTIONS(2840), - [anon_sym_mut] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_interface] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_go] = ACTIONS(2840), - [anon_sym_spawn] = ACTIONS(2840), - [anon_sym_json_DOTdecode] = ACTIONS(2840), - [anon_sym_LBRACK2] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_LT_DASH] = ACTIONS(2840), - [sym_none] = ACTIONS(2840), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [sym_nil] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_DOLLARif] = ACTIONS(2840), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_select] = ACTIONS(2840), - [anon_sym_lock] = ACTIONS(2840), - [anon_sym_rlock] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_sql] = ACTIONS(2840), - [sym_int_literal] = ACTIONS(2840), - [sym_float_literal] = ACTIONS(2840), - [sym_rune_literal] = ACTIONS(2840), - [sym_pseudo_compile_time_identifier] = ACTIONS(2840), - [anon_sym_shared] = ACTIONS(2840), - [anon_sym_map_LBRACK] = ACTIONS(2840), - [anon_sym_chan] = ACTIONS(2840), - [anon_sym_thread] = ACTIONS(2840), - [anon_sym_atomic] = ACTIONS(2840), - [anon_sym_assert] = ACTIONS(2840), - [anon_sym_defer] = ACTIONS(2840), - [anon_sym_goto] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_DOLLARfor] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_POUND] = ACTIONS(2840), - [anon_sym_asm] = ACTIONS(2840), - [anon_sym_AT_LBRACK] = ACTIONS(2840), - [sym___double_quote] = ACTIONS(2840), - [sym___single_quote] = ACTIONS(2840), - [sym___c_double_quote] = ACTIONS(2840), - [sym___c_single_quote] = ACTIONS(2840), - [sym___r_double_quote] = ACTIONS(2840), - [sym___r_single_quote] = ACTIONS(2840), - }, - [1461] = { - [sym_line_comment] = STATE(1461), - [sym_block_comment] = STATE(1461), - [ts_builtin_sym_end] = ACTIONS(2686), - [sym_identifier] = ACTIONS(2688), - [anon_sym_LF] = ACTIONS(2688), - [anon_sym_CR] = ACTIONS(2688), - [anon_sym_CR_LF] = ACTIONS(2688), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2688), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_const] = ACTIONS(2688), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym___global] = ACTIONS(2688), - [anon_sym_type] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_fn] = ACTIONS(2688), - [anon_sym_PLUS] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2688), - [anon_sym_STAR] = ACTIONS(2688), - [anon_sym_struct] = ACTIONS(2688), - [anon_sym_union] = ACTIONS(2688), - [anon_sym_pub] = ACTIONS(2688), - [anon_sym_mut] = ACTIONS(2688), - [anon_sym_enum] = ACTIONS(2688), - [anon_sym_interface] = ACTIONS(2688), - [anon_sym_QMARK] = ACTIONS(2688), - [anon_sym_BANG] = ACTIONS(2688), - [anon_sym_go] = ACTIONS(2688), - [anon_sym_spawn] = ACTIONS(2688), - [anon_sym_json_DOTdecode] = ACTIONS(2688), - [anon_sym_LBRACK2] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2688), - [anon_sym_CARET] = ACTIONS(2688), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_LT_DASH] = ACTIONS(2688), - [sym_none] = ACTIONS(2688), - [sym_true] = ACTIONS(2688), - [sym_false] = ACTIONS(2688), - [sym_nil] = ACTIONS(2688), - [anon_sym_if] = ACTIONS(2688), - [anon_sym_DOLLARif] = ACTIONS(2688), - [anon_sym_match] = ACTIONS(2688), - [anon_sym_select] = ACTIONS(2688), - [anon_sym_lock] = ACTIONS(2688), - [anon_sym_rlock] = ACTIONS(2688), - [anon_sym_unsafe] = ACTIONS(2688), - [anon_sym_sql] = ACTIONS(2688), - [sym_int_literal] = ACTIONS(2688), - [sym_float_literal] = ACTIONS(2688), - [sym_rune_literal] = ACTIONS(2688), - [sym_pseudo_compile_time_identifier] = ACTIONS(2688), - [anon_sym_shared] = ACTIONS(2688), - [anon_sym_map_LBRACK] = ACTIONS(2688), - [anon_sym_chan] = ACTIONS(2688), - [anon_sym_thread] = ACTIONS(2688), - [anon_sym_atomic] = ACTIONS(2688), - [anon_sym_assert] = ACTIONS(2688), - [anon_sym_defer] = ACTIONS(2688), - [anon_sym_goto] = ACTIONS(2688), - [anon_sym_break] = ACTIONS(2688), - [anon_sym_continue] = ACTIONS(2688), - [anon_sym_return] = ACTIONS(2688), - [anon_sym_DOLLARfor] = ACTIONS(2688), - [anon_sym_for] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(2688), - [anon_sym_asm] = ACTIONS(2688), - [anon_sym_AT_LBRACK] = ACTIONS(2688), - [sym___double_quote] = ACTIONS(2688), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2688), - [sym___c_single_quote] = ACTIONS(2688), - [sym___r_double_quote] = ACTIONS(2688), - [sym___r_single_quote] = ACTIONS(2688), - }, - [1462] = { - [sym_line_comment] = STATE(1462), - [sym_block_comment] = STATE(1462), - [ts_builtin_sym_end] = ACTIONS(2868), - [sym_identifier] = ACTIONS(2870), - [anon_sym_LF] = ACTIONS(2870), - [anon_sym_CR] = ACTIONS(2870), - [anon_sym_CR_LF] = ACTIONS(2870), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_const] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym___global] = ACTIONS(2870), - [anon_sym_type] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_fn] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_struct] = ACTIONS(2870), - [anon_sym_union] = ACTIONS(2870), - [anon_sym_pub] = ACTIONS(2870), - [anon_sym_mut] = ACTIONS(2870), - [anon_sym_enum] = ACTIONS(2870), - [anon_sym_interface] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_go] = ACTIONS(2870), - [anon_sym_spawn] = ACTIONS(2870), - [anon_sym_json_DOTdecode] = ACTIONS(2870), - [anon_sym_LBRACK2] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2870), - [sym_none] = ACTIONS(2870), - [sym_true] = ACTIONS(2870), - [sym_false] = ACTIONS(2870), - [sym_nil] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_DOLLARif] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_select] = ACTIONS(2870), - [anon_sym_lock] = ACTIONS(2870), - [anon_sym_rlock] = ACTIONS(2870), - [anon_sym_unsafe] = ACTIONS(2870), - [anon_sym_sql] = ACTIONS(2870), - [sym_int_literal] = ACTIONS(2870), - [sym_float_literal] = ACTIONS(2870), - [sym_rune_literal] = ACTIONS(2870), - [sym_pseudo_compile_time_identifier] = ACTIONS(2870), - [anon_sym_shared] = ACTIONS(2870), - [anon_sym_map_LBRACK] = ACTIONS(2870), - [anon_sym_chan] = ACTIONS(2870), - [anon_sym_thread] = ACTIONS(2870), - [anon_sym_atomic] = ACTIONS(2870), - [anon_sym_assert] = ACTIONS(2870), - [anon_sym_defer] = ACTIONS(2870), - [anon_sym_goto] = ACTIONS(2870), - [anon_sym_break] = ACTIONS(2870), - [anon_sym_continue] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_DOLLARfor] = ACTIONS(2870), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_POUND] = ACTIONS(2870), - [anon_sym_asm] = ACTIONS(2870), - [anon_sym_AT_LBRACK] = ACTIONS(2870), - [sym___double_quote] = ACTIONS(2870), - [sym___single_quote] = ACTIONS(2870), - [sym___c_double_quote] = ACTIONS(2870), - [sym___c_single_quote] = ACTIONS(2870), - [sym___r_double_quote] = ACTIONS(2870), - [sym___r_single_quote] = ACTIONS(2870), - }, - [1463] = { - [sym_line_comment] = STATE(1463), - [sym_block_comment] = STATE(1463), - [ts_builtin_sym_end] = ACTIONS(2810), - [sym_identifier] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_CR] = ACTIONS(2812), - [anon_sym_CR_LF] = ACTIONS(2812), + [1468] = { + [sym_line_comment] = STATE(1468), + [sym_block_comment] = STATE(1468), + [ts_builtin_sym_end] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_LF] = ACTIONS(2175), + [anon_sym_CR] = ACTIONS(2175), + [anon_sym_CR_LF] = ACTIONS(2175), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_const] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym___global] = ACTIONS(2812), - [anon_sym_type] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_union] = ACTIONS(2812), - [anon_sym_pub] = ACTIONS(2812), - [anon_sym_mut] = ACTIONS(2812), - [anon_sym_enum] = ACTIONS(2812), - [anon_sym_interface] = ACTIONS(2812), - [anon_sym_QMARK] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_go] = ACTIONS(2812), - [anon_sym_spawn] = ACTIONS(2812), - [anon_sym_json_DOTdecode] = ACTIONS(2812), - [anon_sym_LBRACK2] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_LT_DASH] = ACTIONS(2812), - [sym_none] = ACTIONS(2812), - [sym_true] = ACTIONS(2812), - [sym_false] = ACTIONS(2812), - [sym_nil] = ACTIONS(2812), - [anon_sym_if] = ACTIONS(2812), - [anon_sym_DOLLARif] = ACTIONS(2812), - [anon_sym_match] = ACTIONS(2812), - [anon_sym_select] = ACTIONS(2812), - [anon_sym_lock] = ACTIONS(2812), - [anon_sym_rlock] = ACTIONS(2812), - [anon_sym_unsafe] = ACTIONS(2812), - [anon_sym_sql] = ACTIONS(2812), - [sym_int_literal] = ACTIONS(2812), - [sym_float_literal] = ACTIONS(2812), - [sym_rune_literal] = ACTIONS(2812), - [sym_pseudo_compile_time_identifier] = ACTIONS(2812), - [anon_sym_shared] = ACTIONS(2812), - [anon_sym_map_LBRACK] = ACTIONS(2812), - [anon_sym_chan] = ACTIONS(2812), - [anon_sym_thread] = ACTIONS(2812), - [anon_sym_atomic] = ACTIONS(2812), - [anon_sym_assert] = ACTIONS(2812), - [anon_sym_defer] = ACTIONS(2812), - [anon_sym_goto] = ACTIONS(2812), - [anon_sym_break] = ACTIONS(2812), - [anon_sym_continue] = ACTIONS(2812), - [anon_sym_return] = ACTIONS(2812), - [anon_sym_DOLLARfor] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2812), - [anon_sym_POUND] = ACTIONS(2812), - [anon_sym_asm] = ACTIONS(2812), - [anon_sym_AT_LBRACK] = ACTIONS(2812), - [sym___double_quote] = ACTIONS(2812), - [sym___single_quote] = ACTIONS(2812), - [sym___c_double_quote] = ACTIONS(2812), - [sym___c_single_quote] = ACTIONS(2812), - [sym___r_double_quote] = ACTIONS(2812), - [sym___r_single_quote] = ACTIONS(2812), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym___global] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_pub] = ACTIONS(2175), + [anon_sym_mut] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_go] = ACTIONS(2175), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [sym_none] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_nil] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_DOLLARif] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_select] = ACTIONS(2175), + [anon_sym_lock] = ACTIONS(2175), + [anon_sym_rlock] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_sql] = ACTIONS(2175), + [sym_int_literal] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), + [sym_rune_literal] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_c_SQUOTE] = ACTIONS(2175), + [anon_sym_c_DQUOTE] = ACTIONS(2175), + [anon_sym_r_SQUOTE] = ACTIONS(2175), + [anon_sym_r_DQUOTE] = ACTIONS(2175), + [sym_pseudo_compile_time_identifier] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(2175), + [anon_sym_map_LBRACK] = ACTIONS(2175), + [anon_sym_chan] = ACTIONS(2175), + [anon_sym_thread] = ACTIONS(2175), + [anon_sym_atomic] = ACTIONS(2175), + [anon_sym_assert] = ACTIONS(2175), + [anon_sym_defer] = ACTIONS(2175), + [anon_sym_goto] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_DOLLARfor] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_asm] = ACTIONS(2175), + [anon_sym_AT_LBRACK] = ACTIONS(2175), }, - [1464] = { - [sym_line_comment] = STATE(1464), - [sym_block_comment] = STATE(1464), - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2778), - [anon_sym_LF] = ACTIONS(2778), - [anon_sym_CR] = ACTIONS(2778), - [anon_sym_CR_LF] = ACTIONS(2778), + [1469] = { + [sym_line_comment] = STATE(1469), + [sym_block_comment] = STATE(1469), + [ts_builtin_sym_end] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2213), + [anon_sym_LF] = ACTIONS(2213), + [anon_sym_CR] = ACTIONS(2213), + [anon_sym_CR_LF] = ACTIONS(2213), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym___global] = ACTIONS(2778), - [anon_sym_type] = ACTIONS(2778), - [anon_sym_PIPE] = ACTIONS(2778), - [anon_sym_fn] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_pub] = ACTIONS(2778), - [anon_sym_mut] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_interface] = ACTIONS(2778), - [anon_sym_QMARK] = ACTIONS(2778), - [anon_sym_BANG] = ACTIONS(2778), - [anon_sym_go] = ACTIONS(2778), - [anon_sym_spawn] = ACTIONS(2778), - [anon_sym_json_DOTdecode] = ACTIONS(2778), - [anon_sym_LBRACK2] = ACTIONS(2778), - [anon_sym_TILDE] = ACTIONS(2778), - [anon_sym_CARET] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_LT_DASH] = ACTIONS(2778), - [sym_none] = ACTIONS(2778), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [sym_nil] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_DOLLARif] = ACTIONS(2778), - [anon_sym_match] = ACTIONS(2778), - [anon_sym_select] = ACTIONS(2778), - [anon_sym_lock] = ACTIONS(2778), - [anon_sym_rlock] = ACTIONS(2778), - [anon_sym_unsafe] = ACTIONS(2778), - [anon_sym_sql] = ACTIONS(2778), - [sym_int_literal] = ACTIONS(2778), - [sym_float_literal] = ACTIONS(2778), - [sym_rune_literal] = ACTIONS(2778), - [sym_pseudo_compile_time_identifier] = ACTIONS(2778), - [anon_sym_shared] = ACTIONS(2778), - [anon_sym_map_LBRACK] = ACTIONS(2778), - [anon_sym_chan] = ACTIONS(2778), - [anon_sym_thread] = ACTIONS(2778), - [anon_sym_atomic] = ACTIONS(2778), - [anon_sym_assert] = ACTIONS(2778), - [anon_sym_defer] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_DOLLARfor] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_POUND] = ACTIONS(2778), - [anon_sym_asm] = ACTIONS(2778), - [anon_sym_AT_LBRACK] = ACTIONS(2778), - [sym___double_quote] = ACTIONS(2778), - [sym___single_quote] = ACTIONS(2778), - [sym___c_double_quote] = ACTIONS(2778), - [sym___c_single_quote] = ACTIONS(2778), - [sym___r_double_quote] = ACTIONS(2778), - [sym___r_single_quote] = ACTIONS(2778), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym___global] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_fn] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2213), + [anon_sym_struct] = ACTIONS(2213), + [anon_sym_union] = ACTIONS(2213), + [anon_sym_pub] = ACTIONS(2213), + [anon_sym_mut] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_QMARK] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_go] = ACTIONS(2213), + [anon_sym_spawn] = ACTIONS(2213), + [anon_sym_json_DOTdecode] = ACTIONS(2213), + [anon_sym_LBRACK2] = ACTIONS(2213), + [anon_sym_TILDE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_LT_DASH] = ACTIONS(2213), + [sym_none] = ACTIONS(2213), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [sym_nil] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_DOLLARif] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_select] = ACTIONS(2213), + [anon_sym_lock] = ACTIONS(2213), + [anon_sym_rlock] = ACTIONS(2213), + [anon_sym_unsafe] = ACTIONS(2213), + [anon_sym_sql] = ACTIONS(2213), + [sym_int_literal] = ACTIONS(2213), + [sym_float_literal] = ACTIONS(2213), + [sym_rune_literal] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_c_SQUOTE] = ACTIONS(2213), + [anon_sym_c_DQUOTE] = ACTIONS(2213), + [anon_sym_r_SQUOTE] = ACTIONS(2213), + [anon_sym_r_DQUOTE] = ACTIONS(2213), + [sym_pseudo_compile_time_identifier] = ACTIONS(2213), + [anon_sym_shared] = ACTIONS(2213), + [anon_sym_map_LBRACK] = ACTIONS(2213), + [anon_sym_chan] = ACTIONS(2213), + [anon_sym_thread] = ACTIONS(2213), + [anon_sym_atomic] = ACTIONS(2213), + [anon_sym_assert] = ACTIONS(2213), + [anon_sym_defer] = ACTIONS(2213), + [anon_sym_goto] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_DOLLARfor] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(2213), + [anon_sym_asm] = ACTIONS(2213), + [anon_sym_AT_LBRACK] = ACTIONS(2213), }, - [1465] = { - [sym_line_comment] = STATE(1465), - [sym_block_comment] = STATE(1465), - [ts_builtin_sym_end] = ACTIONS(2682), - [sym_identifier] = ACTIONS(2684), - [anon_sym_LF] = ACTIONS(2684), - [anon_sym_CR] = ACTIONS(2684), - [anon_sym_CR_LF] = ACTIONS(2684), + [1470] = { + [sym_line_comment] = STATE(1470), + [sym_block_comment] = STATE(1470), + [ts_builtin_sym_end] = ACTIONS(2215), + [sym_identifier] = ACTIONS(2217), + [anon_sym_LF] = ACTIONS(2217), + [anon_sym_CR] = ACTIONS(2217), + [anon_sym_CR_LF] = ACTIONS(2217), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_const] = ACTIONS(2684), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym___global] = ACTIONS(2684), - [anon_sym_type] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_fn] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(2684), - [anon_sym_struct] = ACTIONS(2684), - [anon_sym_union] = ACTIONS(2684), - [anon_sym_pub] = ACTIONS(2684), - [anon_sym_mut] = ACTIONS(2684), - [anon_sym_enum] = ACTIONS(2684), - [anon_sym_interface] = ACTIONS(2684), - [anon_sym_QMARK] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2684), - [anon_sym_spawn] = ACTIONS(2684), - [anon_sym_json_DOTdecode] = ACTIONS(2684), - [anon_sym_LBRACK2] = ACTIONS(2684), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_CARET] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2684), - [anon_sym_LT_DASH] = ACTIONS(2684), - [sym_none] = ACTIONS(2684), - [sym_true] = ACTIONS(2684), - [sym_false] = ACTIONS(2684), - [sym_nil] = ACTIONS(2684), - [anon_sym_if] = ACTIONS(2684), - [anon_sym_DOLLARif] = ACTIONS(2684), - [anon_sym_match] = ACTIONS(2684), - [anon_sym_select] = ACTIONS(2684), - [anon_sym_lock] = ACTIONS(2684), - [anon_sym_rlock] = ACTIONS(2684), - [anon_sym_unsafe] = ACTIONS(2684), - [anon_sym_sql] = ACTIONS(2684), - [sym_int_literal] = ACTIONS(2684), - [sym_float_literal] = ACTIONS(2684), - [sym_rune_literal] = ACTIONS(2684), - [sym_pseudo_compile_time_identifier] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(2684), - [anon_sym_map_LBRACK] = ACTIONS(2684), - [anon_sym_chan] = ACTIONS(2684), - [anon_sym_thread] = ACTIONS(2684), - [anon_sym_atomic] = ACTIONS(2684), - [anon_sym_assert] = ACTIONS(2684), - [anon_sym_defer] = ACTIONS(2684), - [anon_sym_goto] = ACTIONS(2684), - [anon_sym_break] = ACTIONS(2684), - [anon_sym_continue] = ACTIONS(2684), - [anon_sym_return] = ACTIONS(2684), - [anon_sym_DOLLARfor] = ACTIONS(2684), - [anon_sym_for] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(2684), - [anon_sym_asm] = ACTIONS(2684), - [anon_sym_AT_LBRACK] = ACTIONS(2684), - [sym___double_quote] = ACTIONS(2684), - [sym___single_quote] = ACTIONS(2684), - [sym___c_double_quote] = ACTIONS(2684), - [sym___c_single_quote] = ACTIONS(2684), - [sym___r_double_quote] = ACTIONS(2684), - [sym___r_single_quote] = ACTIONS(2684), + [anon_sym_DOT] = ACTIONS(2217), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym___global] = ACTIONS(2217), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(2217), + [anon_sym_fn] = ACTIONS(2217), + [anon_sym_PLUS] = ACTIONS(2217), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_STAR] = ACTIONS(2217), + [anon_sym_struct] = ACTIONS(2217), + [anon_sym_union] = ACTIONS(2217), + [anon_sym_pub] = ACTIONS(2217), + [anon_sym_mut] = ACTIONS(2217), + [anon_sym_enum] = ACTIONS(2217), + [anon_sym_interface] = ACTIONS(2217), + [anon_sym_QMARK] = ACTIONS(2217), + [anon_sym_BANG] = ACTIONS(2217), + [anon_sym_go] = ACTIONS(2217), + [anon_sym_spawn] = ACTIONS(2217), + [anon_sym_json_DOTdecode] = ACTIONS(2217), + [anon_sym_LBRACK2] = ACTIONS(2217), + [anon_sym_TILDE] = ACTIONS(2217), + [anon_sym_CARET] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2217), + [anon_sym_LT_DASH] = ACTIONS(2217), + [sym_none] = ACTIONS(2217), + [sym_true] = ACTIONS(2217), + [sym_false] = ACTIONS(2217), + [sym_nil] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_DOLLARif] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_select] = ACTIONS(2217), + [anon_sym_lock] = ACTIONS(2217), + [anon_sym_rlock] = ACTIONS(2217), + [anon_sym_unsafe] = ACTIONS(2217), + [anon_sym_sql] = ACTIONS(2217), + [sym_int_literal] = ACTIONS(2217), + [sym_float_literal] = ACTIONS(2217), + [sym_rune_literal] = ACTIONS(2217), + [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_DQUOTE] = ACTIONS(2217), + [anon_sym_c_SQUOTE] = ACTIONS(2217), + [anon_sym_c_DQUOTE] = ACTIONS(2217), + [anon_sym_r_SQUOTE] = ACTIONS(2217), + [anon_sym_r_DQUOTE] = ACTIONS(2217), + [sym_pseudo_compile_time_identifier] = ACTIONS(2217), + [anon_sym_shared] = ACTIONS(2217), + [anon_sym_map_LBRACK] = ACTIONS(2217), + [anon_sym_chan] = ACTIONS(2217), + [anon_sym_thread] = ACTIONS(2217), + [anon_sym_atomic] = ACTIONS(2217), + [anon_sym_assert] = ACTIONS(2217), + [anon_sym_defer] = ACTIONS(2217), + [anon_sym_goto] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_DOLLARfor] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(2217), + [anon_sym_asm] = ACTIONS(2217), + [anon_sym_AT_LBRACK] = ACTIONS(2217), }, - [1466] = { - [sym_line_comment] = STATE(1466), - [sym_block_comment] = STATE(1466), - [ts_builtin_sym_end] = ACTIONS(2678), - [sym_identifier] = ACTIONS(2680), - [anon_sym_LF] = ACTIONS(2680), - [anon_sym_CR] = ACTIONS(2680), - [anon_sym_CR_LF] = ACTIONS(2680), + [1471] = { + [sym_line_comment] = STATE(1471), + [sym_block_comment] = STATE(1471), + [ts_builtin_sym_end] = ACTIONS(2219), + [sym_identifier] = ACTIONS(2221), + [anon_sym_LF] = ACTIONS(2221), + [anon_sym_CR] = ACTIONS(2221), + [anon_sym_CR_LF] = ACTIONS(2221), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_const] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2680), - [anon_sym___global] = ACTIONS(2680), - [anon_sym_type] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_fn] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_STAR] = ACTIONS(2680), - [anon_sym_struct] = ACTIONS(2680), - [anon_sym_union] = ACTIONS(2680), - [anon_sym_pub] = ACTIONS(2680), - [anon_sym_mut] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2680), - [anon_sym_QMARK] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2680), - [anon_sym_go] = ACTIONS(2680), - [anon_sym_spawn] = ACTIONS(2680), - [anon_sym_json_DOTdecode] = ACTIONS(2680), - [anon_sym_LBRACK2] = ACTIONS(2680), - [anon_sym_TILDE] = ACTIONS(2680), - [anon_sym_CARET] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2680), - [anon_sym_LT_DASH] = ACTIONS(2680), - [sym_none] = ACTIONS(2680), - [sym_true] = ACTIONS(2680), - [sym_false] = ACTIONS(2680), - [sym_nil] = ACTIONS(2680), - [anon_sym_if] = ACTIONS(2680), - [anon_sym_DOLLARif] = ACTIONS(2680), - [anon_sym_match] = ACTIONS(2680), - [anon_sym_select] = ACTIONS(2680), - [anon_sym_lock] = ACTIONS(2680), - [anon_sym_rlock] = ACTIONS(2680), - [anon_sym_unsafe] = ACTIONS(2680), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2680), - [sym_float_literal] = ACTIONS(2680), - [sym_rune_literal] = ACTIONS(2680), - [sym_pseudo_compile_time_identifier] = ACTIONS(2680), - [anon_sym_shared] = ACTIONS(2680), - [anon_sym_map_LBRACK] = ACTIONS(2680), - [anon_sym_chan] = ACTIONS(2680), - [anon_sym_thread] = ACTIONS(2680), - [anon_sym_atomic] = ACTIONS(2680), - [anon_sym_assert] = ACTIONS(2680), - [anon_sym_defer] = ACTIONS(2680), - [anon_sym_goto] = ACTIONS(2680), - [anon_sym_break] = ACTIONS(2680), - [anon_sym_continue] = ACTIONS(2680), - [anon_sym_return] = ACTIONS(2680), - [anon_sym_DOLLARfor] = ACTIONS(2680), - [anon_sym_for] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(2680), - [anon_sym_asm] = ACTIONS(2680), - [anon_sym_AT_LBRACK] = ACTIONS(2680), - [sym___double_quote] = ACTIONS(2680), - [sym___single_quote] = ACTIONS(2680), - [sym___c_double_quote] = ACTIONS(2680), - [sym___c_single_quote] = ACTIONS(2680), - [sym___r_double_quote] = ACTIONS(2680), - [sym___r_single_quote] = ACTIONS(2680), + [anon_sym_DOT] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym___global] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_PIPE] = ACTIONS(2221), + [anon_sym_fn] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_STAR] = ACTIONS(2221), + [anon_sym_struct] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(2221), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_mut] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_QMARK] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_go] = ACTIONS(2221), + [anon_sym_spawn] = ACTIONS(2221), + [anon_sym_json_DOTdecode] = ACTIONS(2221), + [anon_sym_LBRACK2] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_CARET] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_LT_DASH] = ACTIONS(2221), + [sym_none] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_nil] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_DOLLARif] = ACTIONS(2221), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_select] = ACTIONS(2221), + [anon_sym_lock] = ACTIONS(2221), + [anon_sym_rlock] = ACTIONS(2221), + [anon_sym_unsafe] = ACTIONS(2221), + [anon_sym_sql] = ACTIONS(2221), + [sym_int_literal] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), + [sym_rune_literal] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_c_SQUOTE] = ACTIONS(2221), + [anon_sym_c_DQUOTE] = ACTIONS(2221), + [anon_sym_r_SQUOTE] = ACTIONS(2221), + [anon_sym_r_DQUOTE] = ACTIONS(2221), + [sym_pseudo_compile_time_identifier] = ACTIONS(2221), + [anon_sym_shared] = ACTIONS(2221), + [anon_sym_map_LBRACK] = ACTIONS(2221), + [anon_sym_chan] = ACTIONS(2221), + [anon_sym_thread] = ACTIONS(2221), + [anon_sym_atomic] = ACTIONS(2221), + [anon_sym_assert] = ACTIONS(2221), + [anon_sym_defer] = ACTIONS(2221), + [anon_sym_goto] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_DOLLARfor] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(2221), + [anon_sym_asm] = ACTIONS(2221), + [anon_sym_AT_LBRACK] = ACTIONS(2221), }, - [1467] = { - [sym_line_comment] = STATE(1467), - [sym_block_comment] = STATE(1467), - [ts_builtin_sym_end] = ACTIONS(2666), - [sym_identifier] = ACTIONS(2668), - [anon_sym_LF] = ACTIONS(2668), - [anon_sym_CR] = ACTIONS(2668), - [anon_sym_CR_LF] = ACTIONS(2668), + [1472] = { + [sym_line_comment] = STATE(1472), + [sym_block_comment] = STATE(1472), + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2225), + [anon_sym_LF] = ACTIONS(2225), + [anon_sym_CR] = ACTIONS(2225), + [anon_sym_CR_LF] = ACTIONS(2225), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(2668), - [anon_sym_const] = ACTIONS(2668), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym___global] = ACTIONS(2668), - [anon_sym_type] = ACTIONS(2668), - [anon_sym_PIPE] = ACTIONS(2668), - [anon_sym_fn] = ACTIONS(2668), - [anon_sym_PLUS] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2668), - [anon_sym_STAR] = ACTIONS(2668), - [anon_sym_struct] = ACTIONS(2668), - [anon_sym_union] = ACTIONS(2668), - [anon_sym_pub] = ACTIONS(2668), - [anon_sym_mut] = ACTIONS(2668), - [anon_sym_enum] = ACTIONS(2668), - [anon_sym_interface] = ACTIONS(2668), - [anon_sym_QMARK] = ACTIONS(2668), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_go] = ACTIONS(2668), - [anon_sym_spawn] = ACTIONS(2668), - [anon_sym_json_DOTdecode] = ACTIONS(2668), - [anon_sym_LBRACK2] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_CARET] = ACTIONS(2668), - [anon_sym_AMP] = ACTIONS(2668), - [anon_sym_LT_DASH] = ACTIONS(2668), - [sym_none] = ACTIONS(2668), - [sym_true] = ACTIONS(2668), - [sym_false] = ACTIONS(2668), - [sym_nil] = ACTIONS(2668), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2668), - [anon_sym_match] = ACTIONS(2668), - [anon_sym_select] = ACTIONS(2668), - [anon_sym_lock] = ACTIONS(2668), - [anon_sym_rlock] = ACTIONS(2668), - [anon_sym_unsafe] = ACTIONS(2668), - [anon_sym_sql] = ACTIONS(2668), - [sym_int_literal] = ACTIONS(2668), - [sym_float_literal] = ACTIONS(2668), - [sym_rune_literal] = ACTIONS(2668), - [sym_pseudo_compile_time_identifier] = ACTIONS(2668), - [anon_sym_shared] = ACTIONS(2668), - [anon_sym_map_LBRACK] = ACTIONS(2668), - [anon_sym_chan] = ACTIONS(2668), - [anon_sym_thread] = ACTIONS(2668), - [anon_sym_atomic] = ACTIONS(2668), - [anon_sym_assert] = ACTIONS(2668), - [anon_sym_defer] = ACTIONS(2668), - [anon_sym_goto] = ACTIONS(2668), - [anon_sym_break] = ACTIONS(2668), - [anon_sym_continue] = ACTIONS(2668), - [anon_sym_return] = ACTIONS(2668), - [anon_sym_DOLLARfor] = ACTIONS(2668), - [anon_sym_for] = ACTIONS(2668), - [anon_sym_POUND] = ACTIONS(2668), - [anon_sym_asm] = ACTIONS(2668), - [anon_sym_AT_LBRACK] = ACTIONS(2668), - [sym___double_quote] = ACTIONS(2668), - [sym___single_quote] = ACTIONS(2668), - [sym___c_double_quote] = ACTIONS(2668), - [sym___c_single_quote] = ACTIONS(2668), - [sym___r_double_quote] = ACTIONS(2668), - [sym___r_single_quote] = ACTIONS(2668), + [anon_sym_DOT] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym___global] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(2225), + [anon_sym_fn] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2225), + [anon_sym_pub] = ACTIONS(2225), + [anon_sym_mut] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_QMARK] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_go] = ACTIONS(2225), + [anon_sym_spawn] = ACTIONS(2225), + [anon_sym_json_DOTdecode] = ACTIONS(2225), + [anon_sym_LBRACK2] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_CARET] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_LT_DASH] = ACTIONS(2225), + [sym_none] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_nil] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_DOLLARif] = ACTIONS(2225), + [anon_sym_match] = ACTIONS(2225), + [anon_sym_select] = ACTIONS(2225), + [anon_sym_lock] = ACTIONS(2225), + [anon_sym_rlock] = ACTIONS(2225), + [anon_sym_unsafe] = ACTIONS(2225), + [anon_sym_sql] = ACTIONS(2225), + [sym_int_literal] = ACTIONS(2225), + [sym_float_literal] = ACTIONS(2225), + [sym_rune_literal] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_c_SQUOTE] = ACTIONS(2225), + [anon_sym_c_DQUOTE] = ACTIONS(2225), + [anon_sym_r_SQUOTE] = ACTIONS(2225), + [anon_sym_r_DQUOTE] = ACTIONS(2225), + [sym_pseudo_compile_time_identifier] = ACTIONS(2225), + [anon_sym_shared] = ACTIONS(2225), + [anon_sym_map_LBRACK] = ACTIONS(2225), + [anon_sym_chan] = ACTIONS(2225), + [anon_sym_thread] = ACTIONS(2225), + [anon_sym_atomic] = ACTIONS(2225), + [anon_sym_assert] = ACTIONS(2225), + [anon_sym_defer] = ACTIONS(2225), + [anon_sym_goto] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_DOLLARfor] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_POUND] = ACTIONS(2225), + [anon_sym_asm] = ACTIONS(2225), + [anon_sym_AT_LBRACK] = ACTIONS(2225), }, - [1468] = { - [sym_line_comment] = STATE(1468), - [sym_block_comment] = STATE(1468), - [ts_builtin_sym_end] = ACTIONS(2536), - [sym_identifier] = ACTIONS(2538), - [anon_sym_LF] = ACTIONS(2538), - [anon_sym_CR] = ACTIONS(2538), - [anon_sym_CR_LF] = ACTIONS(2538), + [1473] = { + [sym_line_comment] = STATE(1473), + [sym_block_comment] = STATE(1473), + [ts_builtin_sym_end] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2229), + [anon_sym_LF] = ACTIONS(2229), + [anon_sym_CR] = ACTIONS(2229), + [anon_sym_CR_LF] = ACTIONS(2229), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2538), - [anon_sym_LBRACE] = ACTIONS(2538), - [anon_sym_const] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(2538), - [anon_sym___global] = ACTIONS(2538), - [anon_sym_type] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_fn] = ACTIONS(2538), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_struct] = ACTIONS(2538), - [anon_sym_union] = ACTIONS(2538), - [anon_sym_pub] = ACTIONS(2538), - [anon_sym_mut] = ACTIONS(2538), - [anon_sym_enum] = ACTIONS(2538), - [anon_sym_interface] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(2538), - [anon_sym_BANG] = ACTIONS(2538), - [anon_sym_go] = ACTIONS(2538), - [anon_sym_spawn] = ACTIONS(2538), - [anon_sym_json_DOTdecode] = ACTIONS(2538), - [anon_sym_LBRACK2] = ACTIONS(2538), - [anon_sym_TILDE] = ACTIONS(2538), - [anon_sym_CARET] = ACTIONS(2538), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2538), - [sym_none] = ACTIONS(2538), - [sym_true] = ACTIONS(2538), - [sym_false] = ACTIONS(2538), - [sym_nil] = ACTIONS(2538), - [anon_sym_if] = ACTIONS(2538), - [anon_sym_DOLLARif] = ACTIONS(2538), - [anon_sym_match] = ACTIONS(2538), - [anon_sym_select] = ACTIONS(2538), - [anon_sym_lock] = ACTIONS(2538), - [anon_sym_rlock] = ACTIONS(2538), - [anon_sym_unsafe] = ACTIONS(2538), - [anon_sym_sql] = ACTIONS(2538), - [sym_int_literal] = ACTIONS(2538), - [sym_float_literal] = ACTIONS(2538), - [sym_rune_literal] = ACTIONS(2538), - [sym_pseudo_compile_time_identifier] = ACTIONS(2538), - [anon_sym_shared] = ACTIONS(2538), - [anon_sym_map_LBRACK] = ACTIONS(2538), - [anon_sym_chan] = ACTIONS(2538), - [anon_sym_thread] = ACTIONS(2538), - [anon_sym_atomic] = ACTIONS(2538), - [anon_sym_assert] = ACTIONS(2538), - [anon_sym_defer] = ACTIONS(2538), - [anon_sym_goto] = ACTIONS(2538), - [anon_sym_break] = ACTIONS(2538), - [anon_sym_continue] = ACTIONS(2538), - [anon_sym_return] = ACTIONS(2538), - [anon_sym_DOLLARfor] = ACTIONS(2538), - [anon_sym_for] = ACTIONS(2538), - [anon_sym_POUND] = ACTIONS(2538), - [anon_sym_asm] = ACTIONS(2538), - [anon_sym_AT_LBRACK] = ACTIONS(2538), - [sym___double_quote] = ACTIONS(2538), - [sym___single_quote] = ACTIONS(2538), - [sym___c_double_quote] = ACTIONS(2538), - [sym___c_single_quote] = ACTIONS(2538), - [sym___r_double_quote] = ACTIONS(2538), - [sym___r_single_quote] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym___global] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_fn] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_struct] = ACTIONS(2229), + [anon_sym_union] = ACTIONS(2229), + [anon_sym_pub] = ACTIONS(2229), + [anon_sym_mut] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), + [anon_sym_interface] = ACTIONS(2229), + [anon_sym_QMARK] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_go] = ACTIONS(2229), + [anon_sym_spawn] = ACTIONS(2229), + [anon_sym_json_DOTdecode] = ACTIONS(2229), + [anon_sym_LBRACK2] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2229), + [anon_sym_CARET] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_LT_DASH] = ACTIONS(2229), + [sym_none] = ACTIONS(2229), + [sym_true] = ACTIONS(2229), + [sym_false] = ACTIONS(2229), + [sym_nil] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_DOLLARif] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_select] = ACTIONS(2229), + [anon_sym_lock] = ACTIONS(2229), + [anon_sym_rlock] = ACTIONS(2229), + [anon_sym_unsafe] = ACTIONS(2229), + [anon_sym_sql] = ACTIONS(2229), + [sym_int_literal] = ACTIONS(2229), + [sym_float_literal] = ACTIONS(2229), + [sym_rune_literal] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(2229), + [anon_sym_c_SQUOTE] = ACTIONS(2229), + [anon_sym_c_DQUOTE] = ACTIONS(2229), + [anon_sym_r_SQUOTE] = ACTIONS(2229), + [anon_sym_r_DQUOTE] = ACTIONS(2229), + [sym_pseudo_compile_time_identifier] = ACTIONS(2229), + [anon_sym_shared] = ACTIONS(2229), + [anon_sym_map_LBRACK] = ACTIONS(2229), + [anon_sym_chan] = ACTIONS(2229), + [anon_sym_thread] = ACTIONS(2229), + [anon_sym_atomic] = ACTIONS(2229), + [anon_sym_assert] = ACTIONS(2229), + [anon_sym_defer] = ACTIONS(2229), + [anon_sym_goto] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_DOLLARfor] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(2229), + [anon_sym_asm] = ACTIONS(2229), + [anon_sym_AT_LBRACK] = ACTIONS(2229), }, - [1469] = { - [sym_line_comment] = STATE(1469), - [sym_block_comment] = STATE(1469), - [sym_block] = STATE(1549), + [1474] = { + [sym_line_comment] = STATE(1474), + [sym_block_comment] = STATE(1474), + [sym_label_reference] = STATE(1541), [ts_builtin_sym_end] = ACTIONS(4152), - [sym_identifier] = ACTIONS(4154), + [sym_identifier] = ACTIONS(4148), [anon_sym_LF] = ACTIONS(4154), [anon_sym_CR] = ACTIONS(4154), [anon_sym_CR_LF] = ACTIONS(4154), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4154), - [anon_sym_LBRACE] = ACTIONS(4018), + [anon_sym_LBRACE] = ACTIONS(4154), [anon_sym_const] = ACTIONS(4154), [anon_sym_LPAREN] = ACTIONS(4154), [anon_sym___global] = ACTIONS(4154), @@ -178506,6 +178862,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4154), [sym_float_literal] = ACTIONS(4154), [sym_rune_literal] = ACTIONS(4154), + [anon_sym_SQUOTE] = ACTIONS(4154), + [anon_sym_DQUOTE] = ACTIONS(4154), + [anon_sym_c_SQUOTE] = ACTIONS(4154), + [anon_sym_c_DQUOTE] = ACTIONS(4154), + [anon_sym_r_SQUOTE] = ACTIONS(4154), + [anon_sym_r_DQUOTE] = ACTIONS(4154), [sym_pseudo_compile_time_identifier] = ACTIONS(4154), [anon_sym_shared] = ACTIONS(4154), [anon_sym_map_LBRACK] = ACTIONS(4154), @@ -178523,700 +178885,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4154), [anon_sym_asm] = ACTIONS(4154), [anon_sym_AT_LBRACK] = ACTIONS(4154), - [sym___double_quote] = ACTIONS(4154), - [sym___single_quote] = ACTIONS(4154), - [sym___c_double_quote] = ACTIONS(4154), - [sym___c_single_quote] = ACTIONS(4154), - [sym___r_double_quote] = ACTIONS(4154), - [sym___r_single_quote] = ACTIONS(4154), - }, - [1470] = { - [sym_line_comment] = STATE(1470), - [sym_block_comment] = STATE(1470), - [ts_builtin_sym_end] = ACTIONS(2754), - [sym_identifier] = ACTIONS(2756), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_CR] = ACTIONS(2756), - [anon_sym_CR_LF] = ACTIONS(2756), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2756), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_const] = ACTIONS(2756), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym___global] = ACTIONS(2756), - [anon_sym_type] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_fn] = ACTIONS(2756), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_struct] = ACTIONS(2756), - [anon_sym_union] = ACTIONS(2756), - [anon_sym_pub] = ACTIONS(2756), - [anon_sym_mut] = ACTIONS(2756), - [anon_sym_enum] = ACTIONS(2756), - [anon_sym_interface] = ACTIONS(2756), - [anon_sym_QMARK] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_go] = ACTIONS(2756), - [anon_sym_spawn] = ACTIONS(2756), - [anon_sym_json_DOTdecode] = ACTIONS(2756), - [anon_sym_LBRACK2] = ACTIONS(2756), - [anon_sym_TILDE] = ACTIONS(2756), - [anon_sym_CARET] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2756), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2756), - [sym_true] = ACTIONS(2756), - [sym_false] = ACTIONS(2756), - [sym_nil] = ACTIONS(2756), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_DOLLARif] = ACTIONS(2756), - [anon_sym_match] = ACTIONS(2756), - [anon_sym_select] = ACTIONS(2756), - [anon_sym_lock] = ACTIONS(2756), - [anon_sym_rlock] = ACTIONS(2756), - [anon_sym_unsafe] = ACTIONS(2756), - [anon_sym_sql] = ACTIONS(2756), - [sym_int_literal] = ACTIONS(2756), - [sym_float_literal] = ACTIONS(2756), - [sym_rune_literal] = ACTIONS(2756), - [sym_pseudo_compile_time_identifier] = ACTIONS(2756), - [anon_sym_shared] = ACTIONS(2756), - [anon_sym_map_LBRACK] = ACTIONS(2756), - [anon_sym_chan] = ACTIONS(2756), - [anon_sym_thread] = ACTIONS(2756), - [anon_sym_atomic] = ACTIONS(2756), - [anon_sym_assert] = ACTIONS(2756), - [anon_sym_defer] = ACTIONS(2756), - [anon_sym_goto] = ACTIONS(2756), - [anon_sym_break] = ACTIONS(2756), - [anon_sym_continue] = ACTIONS(2756), - [anon_sym_return] = ACTIONS(2756), - [anon_sym_DOLLARfor] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(2756), - [anon_sym_asm] = ACTIONS(2756), - [anon_sym_AT_LBRACK] = ACTIONS(2756), - [sym___double_quote] = ACTIONS(2756), - [sym___single_quote] = ACTIONS(2756), - [sym___c_double_quote] = ACTIONS(2756), - [sym___c_single_quote] = ACTIONS(2756), - [sym___r_double_quote] = ACTIONS(2756), - [sym___r_single_quote] = ACTIONS(2756), - }, - [1471] = { - [sym_line_comment] = STATE(1471), - [sym_block_comment] = STATE(1471), - [ts_builtin_sym_end] = ACTIONS(2748), - [sym_identifier] = ACTIONS(2750), - [anon_sym_LF] = ACTIONS(2750), - [anon_sym_CR] = ACTIONS(2750), - [anon_sym_CR_LF] = ACTIONS(2750), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2750), - [anon_sym_const] = ACTIONS(2750), - [anon_sym_LPAREN] = ACTIONS(2750), - [anon_sym___global] = ACTIONS(2750), - [anon_sym_type] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_fn] = ACTIONS(2750), - [anon_sym_PLUS] = ACTIONS(2750), - [anon_sym_DASH] = ACTIONS(2750), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(2750), - [anon_sym_union] = ACTIONS(2750), - [anon_sym_pub] = ACTIONS(2750), - [anon_sym_mut] = ACTIONS(2750), - [anon_sym_enum] = ACTIONS(2750), - [anon_sym_interface] = ACTIONS(2750), - [anon_sym_QMARK] = ACTIONS(2750), - [anon_sym_BANG] = ACTIONS(2750), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2750), - [anon_sym_json_DOTdecode] = ACTIONS(2750), - [anon_sym_LBRACK2] = ACTIONS(2750), - [anon_sym_TILDE] = ACTIONS(2750), - [anon_sym_CARET] = ACTIONS(2750), - [anon_sym_AMP] = ACTIONS(2750), - [anon_sym_LT_DASH] = ACTIONS(2750), - [sym_none] = ACTIONS(2750), - [sym_true] = ACTIONS(2750), - [sym_false] = ACTIONS(2750), - [sym_nil] = ACTIONS(2750), - [anon_sym_if] = ACTIONS(2750), - [anon_sym_DOLLARif] = ACTIONS(2750), - [anon_sym_match] = ACTIONS(2750), - [anon_sym_select] = ACTIONS(2750), - [anon_sym_lock] = ACTIONS(2750), - [anon_sym_rlock] = ACTIONS(2750), - [anon_sym_unsafe] = ACTIONS(2750), - [anon_sym_sql] = ACTIONS(2750), - [sym_int_literal] = ACTIONS(2750), - [sym_float_literal] = ACTIONS(2750), - [sym_rune_literal] = ACTIONS(2750), - [sym_pseudo_compile_time_identifier] = ACTIONS(2750), - [anon_sym_shared] = ACTIONS(2750), - [anon_sym_map_LBRACK] = ACTIONS(2750), - [anon_sym_chan] = ACTIONS(2750), - [anon_sym_thread] = ACTIONS(2750), - [anon_sym_atomic] = ACTIONS(2750), - [anon_sym_assert] = ACTIONS(2750), - [anon_sym_defer] = ACTIONS(2750), - [anon_sym_goto] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_return] = ACTIONS(2750), - [anon_sym_DOLLARfor] = ACTIONS(2750), - [anon_sym_for] = ACTIONS(2750), - [anon_sym_POUND] = ACTIONS(2750), - [anon_sym_asm] = ACTIONS(2750), - [anon_sym_AT_LBRACK] = ACTIONS(2750), - [sym___double_quote] = ACTIONS(2750), - [sym___single_quote] = ACTIONS(2750), - [sym___c_double_quote] = ACTIONS(2750), - [sym___c_single_quote] = ACTIONS(2750), - [sym___r_double_quote] = ACTIONS(2750), - [sym___r_single_quote] = ACTIONS(2750), - }, - [1472] = { - [sym_line_comment] = STATE(1472), - [sym_block_comment] = STATE(1472), - [ts_builtin_sym_end] = ACTIONS(2742), - [sym_identifier] = ACTIONS(2744), - [anon_sym_LF] = ACTIONS(2744), - [anon_sym_CR] = ACTIONS(2744), - [anon_sym_CR_LF] = ACTIONS(2744), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_const] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym___global] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_fn] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2744), - [anon_sym_struct] = ACTIONS(2744), - [anon_sym_union] = ACTIONS(2744), - [anon_sym_pub] = ACTIONS(2744), - [anon_sym_mut] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), - [anon_sym_interface] = ACTIONS(2744), - [anon_sym_QMARK] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2744), - [anon_sym_go] = ACTIONS(2744), - [anon_sym_spawn] = ACTIONS(2744), - [anon_sym_json_DOTdecode] = ACTIONS(2744), - [anon_sym_LBRACK2] = ACTIONS(2744), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2744), - [anon_sym_LT_DASH] = ACTIONS(2744), - [sym_none] = ACTIONS(2744), - [sym_true] = ACTIONS(2744), - [sym_false] = ACTIONS(2744), - [sym_nil] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_DOLLARif] = ACTIONS(2744), - [anon_sym_match] = ACTIONS(2744), - [anon_sym_select] = ACTIONS(2744), - [anon_sym_lock] = ACTIONS(2744), - [anon_sym_rlock] = ACTIONS(2744), - [anon_sym_unsafe] = ACTIONS(2744), - [anon_sym_sql] = ACTIONS(2744), - [sym_int_literal] = ACTIONS(2744), - [sym_float_literal] = ACTIONS(2744), - [sym_rune_literal] = ACTIONS(2744), - [sym_pseudo_compile_time_identifier] = ACTIONS(2744), - [anon_sym_shared] = ACTIONS(2744), - [anon_sym_map_LBRACK] = ACTIONS(2744), - [anon_sym_chan] = ACTIONS(2744), - [anon_sym_thread] = ACTIONS(2744), - [anon_sym_atomic] = ACTIONS(2744), - [anon_sym_assert] = ACTIONS(2744), - [anon_sym_defer] = ACTIONS(2744), - [anon_sym_goto] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_DOLLARfor] = ACTIONS(2744), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(2744), - [anon_sym_asm] = ACTIONS(2744), - [anon_sym_AT_LBRACK] = ACTIONS(2744), - [sym___double_quote] = ACTIONS(2744), - [sym___single_quote] = ACTIONS(2744), - [sym___c_double_quote] = ACTIONS(2744), - [sym___c_single_quote] = ACTIONS(2744), - [sym___r_double_quote] = ACTIONS(2744), - [sym___r_single_quote] = ACTIONS(2744), - }, - [1473] = { - [sym_line_comment] = STATE(1473), - [sym_block_comment] = STATE(1473), - [ts_builtin_sym_end] = ACTIONS(2722), - [sym_identifier] = ACTIONS(2724), - [anon_sym_LF] = ACTIONS(2724), - [anon_sym_CR] = ACTIONS(2724), - [anon_sym_CR_LF] = ACTIONS(2724), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_const] = ACTIONS(2724), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym___global] = ACTIONS(2724), - [anon_sym_type] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_fn] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_STAR] = ACTIONS(2724), - [anon_sym_struct] = ACTIONS(2724), - [anon_sym_union] = ACTIONS(2724), - [anon_sym_pub] = ACTIONS(2724), - [anon_sym_mut] = ACTIONS(2724), - [anon_sym_enum] = ACTIONS(2724), - [anon_sym_interface] = ACTIONS(2724), - [anon_sym_QMARK] = ACTIONS(2724), - [anon_sym_BANG] = ACTIONS(2724), - [anon_sym_go] = ACTIONS(2724), - [anon_sym_spawn] = ACTIONS(2724), - [anon_sym_json_DOTdecode] = ACTIONS(2724), - [anon_sym_LBRACK2] = ACTIONS(2724), - [anon_sym_TILDE] = ACTIONS(2724), - [anon_sym_CARET] = ACTIONS(2724), - [anon_sym_AMP] = ACTIONS(2724), - [anon_sym_LT_DASH] = ACTIONS(2724), - [sym_none] = ACTIONS(2724), - [sym_true] = ACTIONS(2724), - [sym_false] = ACTIONS(2724), - [sym_nil] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_DOLLARif] = ACTIONS(2724), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2724), - [anon_sym_lock] = ACTIONS(2724), - [anon_sym_rlock] = ACTIONS(2724), - [anon_sym_unsafe] = ACTIONS(2724), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(2724), - [sym_float_literal] = ACTIONS(2724), - [sym_rune_literal] = ACTIONS(2724), - [sym_pseudo_compile_time_identifier] = ACTIONS(2724), - [anon_sym_shared] = ACTIONS(2724), - [anon_sym_map_LBRACK] = ACTIONS(2724), - [anon_sym_chan] = ACTIONS(2724), - [anon_sym_thread] = ACTIONS(2724), - [anon_sym_atomic] = ACTIONS(2724), - [anon_sym_assert] = ACTIONS(2724), - [anon_sym_defer] = ACTIONS(2724), - [anon_sym_goto] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_DOLLARfor] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(2724), - [anon_sym_asm] = ACTIONS(2724), - [anon_sym_AT_LBRACK] = ACTIONS(2724), - [sym___double_quote] = ACTIONS(2724), - [sym___single_quote] = ACTIONS(2724), - [sym___c_double_quote] = ACTIONS(2724), - [sym___c_single_quote] = ACTIONS(2724), - [sym___r_double_quote] = ACTIONS(2724), - [sym___r_single_quote] = ACTIONS(2724), - }, - [1474] = { - [sym_line_comment] = STATE(1474), - [sym_block_comment] = STATE(1474), - [ts_builtin_sym_end] = ACTIONS(2135), - [sym_identifier] = ACTIONS(2137), - [anon_sym_LF] = ACTIONS(2137), - [anon_sym_CR] = ACTIONS(2137), - [anon_sym_CR_LF] = ACTIONS(2137), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym___global] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_PIPE] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_mut] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2137), - [anon_sym_QMARK] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_go] = ACTIONS(2137), - [anon_sym_spawn] = ACTIONS(2137), - [anon_sym_json_DOTdecode] = ACTIONS(2137), - [anon_sym_LBRACK2] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_LT_DASH] = ACTIONS(2137), - [sym_none] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_nil] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_DOLLARif] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_select] = ACTIONS(2137), - [anon_sym_lock] = ACTIONS(2137), - [anon_sym_rlock] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_sql] = ACTIONS(2137), - [sym_int_literal] = ACTIONS(2137), - [sym_float_literal] = ACTIONS(2137), - [sym_rune_literal] = ACTIONS(2137), - [sym_pseudo_compile_time_identifier] = ACTIONS(2137), - [anon_sym_shared] = ACTIONS(2137), - [anon_sym_map_LBRACK] = ACTIONS(2137), - [anon_sym_chan] = ACTIONS(2137), - [anon_sym_thread] = ACTIONS(2137), - [anon_sym_atomic] = ACTIONS(2137), - [anon_sym_assert] = ACTIONS(2137), - [anon_sym_defer] = ACTIONS(2137), - [anon_sym_goto] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_DOLLARfor] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_POUND] = ACTIONS(2137), - [anon_sym_asm] = ACTIONS(2137), - [anon_sym_AT_LBRACK] = ACTIONS(2137), - [sym___double_quote] = ACTIONS(2137), - [sym___single_quote] = ACTIONS(2137), - [sym___c_double_quote] = ACTIONS(2137), - [sym___c_single_quote] = ACTIONS(2137), - [sym___r_double_quote] = ACTIONS(2137), - [sym___r_single_quote] = ACTIONS(2137), }, [1475] = { [sym_line_comment] = STATE(1475), [sym_block_comment] = STATE(1475), - [ts_builtin_sym_end] = ACTIONS(2712), - [sym_identifier] = ACTIONS(2714), - [anon_sym_LF] = ACTIONS(2714), - [anon_sym_CR] = ACTIONS(2714), - [anon_sym_CR_LF] = ACTIONS(2714), + [sym_reference_expression] = STATE(4386), + [sym_type_reference_expression] = STATE(2419), + [sym_plain_type] = STATE(2573), + [sym__plain_type_without_special] = STATE(2533), + [sym_anon_struct_type] = STATE(2535), + [sym_multi_return_type] = STATE(2533), + [sym_result_type] = STATE(2533), + [sym_option_type] = STATE(2533), + [sym_qualified_type] = STATE(2419), + [sym_fixed_array_type] = STATE(2535), + [sym_array_type] = STATE(2535), + [sym_pointer_type] = STATE(2535), + [sym_wrong_pointer_type] = STATE(2535), + [sym_map_type] = STATE(2535), + [sym_channel_type] = STATE(2535), + [sym_shared_type] = STATE(2535), + [sym_thread_type] = STATE(2535), + [sym_atomic_type] = STATE(2535), + [sym_generic_type] = STATE(2535), + [sym_function_type] = STATE(2535), + [sym_identifier] = ACTIONS(4068), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_const] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym___global] = ACTIONS(2714), - [anon_sym_type] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_fn] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_STAR] = ACTIONS(2714), - [anon_sym_struct] = ACTIONS(2714), - [anon_sym_union] = ACTIONS(2714), - [anon_sym_pub] = ACTIONS(2714), - [anon_sym_mut] = ACTIONS(2714), - [anon_sym_enum] = ACTIONS(2714), - [anon_sym_interface] = ACTIONS(2714), - [anon_sym_QMARK] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(2714), - [anon_sym_go] = ACTIONS(2714), - [anon_sym_spawn] = ACTIONS(2714), - [anon_sym_json_DOTdecode] = ACTIONS(2714), - [anon_sym_LBRACK2] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2714), - [anon_sym_CARET] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_LT_DASH] = ACTIONS(2714), - [sym_none] = ACTIONS(2714), - [sym_true] = ACTIONS(2714), - [sym_false] = ACTIONS(2714), - [sym_nil] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2714), - [anon_sym_select] = ACTIONS(2714), - [anon_sym_lock] = ACTIONS(2714), - [anon_sym_rlock] = ACTIONS(2714), - [anon_sym_unsafe] = ACTIONS(2714), - [anon_sym_sql] = ACTIONS(2714), - [sym_int_literal] = ACTIONS(2714), - [sym_float_literal] = ACTIONS(2714), - [sym_rune_literal] = ACTIONS(2714), - [sym_pseudo_compile_time_identifier] = ACTIONS(2714), - [anon_sym_shared] = ACTIONS(2714), - [anon_sym_map_LBRACK] = ACTIONS(2714), - [anon_sym_chan] = ACTIONS(2714), - [anon_sym_thread] = ACTIONS(2714), - [anon_sym_atomic] = ACTIONS(2714), - [anon_sym_assert] = ACTIONS(2714), - [anon_sym_defer] = ACTIONS(2714), - [anon_sym_goto] = ACTIONS(2714), - [anon_sym_break] = ACTIONS(2714), - [anon_sym_continue] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_DOLLARfor] = ACTIONS(2714), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_POUND] = ACTIONS(2714), - [anon_sym_asm] = ACTIONS(2714), - [anon_sym_AT_LBRACK] = ACTIONS(2714), - [sym___double_quote] = ACTIONS(2714), - [sym___single_quote] = ACTIONS(2714), - [sym___c_double_quote] = ACTIONS(2714), - [sym___c_single_quote] = ACTIONS(2714), - [sym___r_double_quote] = ACTIONS(2714), - [sym___r_single_quote] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(601), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(4070), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(4074), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(4076), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(4078), + [anon_sym_BANG] = ACTIONS(4080), + [anon_sym_LBRACK2] = ACTIONS(4082), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(4084), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_POUND_LBRACK] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(4086), + [anon_sym_map_LBRACK] = ACTIONS(4088), + [anon_sym_chan] = ACTIONS(4090), + [anon_sym_thread] = ACTIONS(4092), + [anon_sym_atomic] = ACTIONS(4094), }, [1476] = { [sym_line_comment] = STATE(1476), [sym_block_comment] = STATE(1476), - [ts_builtin_sym_end] = ACTIONS(2726), - [sym_identifier] = ACTIONS(2728), - [anon_sym_LF] = ACTIONS(2728), - [anon_sym_CR] = ACTIONS(2728), - [anon_sym_CR_LF] = ACTIONS(2728), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_const] = ACTIONS(2728), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym___global] = ACTIONS(2728), - [anon_sym_type] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_fn] = ACTIONS(2728), - [anon_sym_PLUS] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2728), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2728), - [anon_sym_union] = ACTIONS(2728), - [anon_sym_pub] = ACTIONS(2728), - [anon_sym_mut] = ACTIONS(2728), - [anon_sym_enum] = ACTIONS(2728), - [anon_sym_interface] = ACTIONS(2728), - [anon_sym_QMARK] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2728), - [anon_sym_go] = ACTIONS(2728), - [anon_sym_spawn] = ACTIONS(2728), - [anon_sym_json_DOTdecode] = ACTIONS(2728), - [anon_sym_LBRACK2] = ACTIONS(2728), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_CARET] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2728), - [anon_sym_LT_DASH] = ACTIONS(2728), - [sym_none] = ACTIONS(2728), - [sym_true] = ACTIONS(2728), - [sym_false] = ACTIONS(2728), - [sym_nil] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2728), - [anon_sym_DOLLARif] = ACTIONS(2728), - [anon_sym_match] = ACTIONS(2728), - [anon_sym_select] = ACTIONS(2728), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2728), - [anon_sym_sql] = ACTIONS(2728), - [sym_int_literal] = ACTIONS(2728), - [sym_float_literal] = ACTIONS(2728), - [sym_rune_literal] = ACTIONS(2728), - [sym_pseudo_compile_time_identifier] = ACTIONS(2728), - [anon_sym_shared] = ACTIONS(2728), - [anon_sym_map_LBRACK] = ACTIONS(2728), - [anon_sym_chan] = ACTIONS(2728), - [anon_sym_thread] = ACTIONS(2728), - [anon_sym_atomic] = ACTIONS(2728), - [anon_sym_assert] = ACTIONS(2728), - [anon_sym_defer] = ACTIONS(2728), - [anon_sym_goto] = ACTIONS(2728), - [anon_sym_break] = ACTIONS(2728), - [anon_sym_continue] = ACTIONS(2728), - [anon_sym_return] = ACTIONS(2728), - [anon_sym_DOLLARfor] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(2728), - [anon_sym_asm] = ACTIONS(2728), - [anon_sym_AT_LBRACK] = ACTIONS(2728), - [sym___double_quote] = ACTIONS(2728), - [sym___single_quote] = ACTIONS(2728), - [sym___c_double_quote] = ACTIONS(2728), - [sym___c_single_quote] = ACTIONS(2728), - [sym___r_double_quote] = ACTIONS(2728), - [sym___r_single_quote] = ACTIONS(2728), - }, - [1477] = { - [sym_line_comment] = STATE(1477), - [sym_block_comment] = STATE(1477), - [ts_builtin_sym_end] = ACTIONS(2912), - [sym_identifier] = ACTIONS(2914), - [anon_sym_LF] = ACTIONS(2914), - [anon_sym_CR] = ACTIONS(2914), - [anon_sym_CR_LF] = ACTIONS(2914), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym___global] = ACTIONS(2914), - [anon_sym_type] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2914), - [anon_sym_fn] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_union] = ACTIONS(2914), - [anon_sym_pub] = ACTIONS(2914), - [anon_sym_mut] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2914), - [anon_sym_QMARK] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_go] = ACTIONS(2914), - [anon_sym_spawn] = ACTIONS(2914), - [anon_sym_json_DOTdecode] = ACTIONS(2914), - [anon_sym_LBRACK2] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [anon_sym_CARET] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_LT_DASH] = ACTIONS(2914), - [sym_none] = ACTIONS(2914), - [sym_true] = ACTIONS(2914), - [sym_false] = ACTIONS(2914), - [sym_nil] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_DOLLARif] = ACTIONS(2914), - [anon_sym_match] = ACTIONS(2914), - [anon_sym_select] = ACTIONS(2914), - [anon_sym_lock] = ACTIONS(2914), - [anon_sym_rlock] = ACTIONS(2914), - [anon_sym_unsafe] = ACTIONS(2914), - [anon_sym_sql] = ACTIONS(2914), - [sym_int_literal] = ACTIONS(2914), - [sym_float_literal] = ACTIONS(2914), - [sym_rune_literal] = ACTIONS(2914), - [sym_pseudo_compile_time_identifier] = ACTIONS(2914), - [anon_sym_shared] = ACTIONS(2914), - [anon_sym_map_LBRACK] = ACTIONS(2914), - [anon_sym_chan] = ACTIONS(2914), - [anon_sym_thread] = ACTIONS(2914), - [anon_sym_atomic] = ACTIONS(2914), - [anon_sym_assert] = ACTIONS(2914), - [anon_sym_defer] = ACTIONS(2914), - [anon_sym_goto] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_DOLLARfor] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_POUND] = ACTIONS(2914), - [anon_sym_asm] = ACTIONS(2914), - [anon_sym_AT_LBRACK] = ACTIONS(2914), - [sym___double_quote] = ACTIONS(2914), - [sym___single_quote] = ACTIONS(2914), - [sym___c_double_quote] = ACTIONS(2914), - [sym___c_single_quote] = ACTIONS(2914), - [sym___r_double_quote] = ACTIONS(2914), - [sym___r_single_quote] = ACTIONS(2914), - }, - [1478] = { - [sym_line_comment] = STATE(1478), - [sym_block_comment] = STATE(1478), - [ts_builtin_sym_end] = ACTIONS(2916), - [sym_identifier] = ACTIONS(2918), - [anon_sym_LF] = ACTIONS(2918), - [anon_sym_CR] = ACTIONS(2918), - [anon_sym_CR_LF] = ACTIONS(2918), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_const] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym___global] = ACTIONS(2918), - [anon_sym_type] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_fn] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_union] = ACTIONS(2918), - [anon_sym_pub] = ACTIONS(2918), - [anon_sym_mut] = ACTIONS(2918), - [anon_sym_enum] = ACTIONS(2918), - [anon_sym_interface] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_go] = ACTIONS(2918), - [anon_sym_spawn] = ACTIONS(2918), - [anon_sym_json_DOTdecode] = ACTIONS(2918), - [anon_sym_LBRACK2] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2918), - [anon_sym_CARET] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2918), - [sym_none] = ACTIONS(2918), - [sym_true] = ACTIONS(2918), - [sym_false] = ACTIONS(2918), - [sym_nil] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_DOLLARif] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_select] = ACTIONS(2918), - [anon_sym_lock] = ACTIONS(2918), - [anon_sym_rlock] = ACTIONS(2918), - [anon_sym_unsafe] = ACTIONS(2918), - [anon_sym_sql] = ACTIONS(2918), - [sym_int_literal] = ACTIONS(2918), - [sym_float_literal] = ACTIONS(2918), - [sym_rune_literal] = ACTIONS(2918), - [sym_pseudo_compile_time_identifier] = ACTIONS(2918), - [anon_sym_shared] = ACTIONS(2918), - [anon_sym_map_LBRACK] = ACTIONS(2918), - [anon_sym_chan] = ACTIONS(2918), - [anon_sym_thread] = ACTIONS(2918), - [anon_sym_atomic] = ACTIONS(2918), - [anon_sym_assert] = ACTIONS(2918), - [anon_sym_defer] = ACTIONS(2918), - [anon_sym_goto] = ACTIONS(2918), - [anon_sym_break] = ACTIONS(2918), - [anon_sym_continue] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_DOLLARfor] = ACTIONS(2918), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_asm] = ACTIONS(2918), - [anon_sym_AT_LBRACK] = ACTIONS(2918), - [sym___double_quote] = ACTIONS(2918), - [sym___single_quote] = ACTIONS(2918), - [sym___c_double_quote] = ACTIONS(2918), - [sym___c_single_quote] = ACTIONS(2918), - [sym___r_double_quote] = ACTIONS(2918), - [sym___r_single_quote] = ACTIONS(2918), - }, - [1479] = { - [sym_line_comment] = STATE(1479), - [sym_block_comment] = STATE(1479), + [sym_block] = STATE(1556), [ts_builtin_sym_end] = ACTIONS(4156), [sym_identifier] = ACTIONS(4158), [anon_sym_LF] = ACTIONS(4158), @@ -179225,7 +178974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4158), - [anon_sym_LBRACE] = ACTIONS(4158), + [anon_sym_LBRACE] = ACTIONS(4022), [anon_sym_const] = ACTIONS(4158), [anon_sym_LPAREN] = ACTIONS(4158), [anon_sym___global] = ACTIONS(4158), @@ -179265,6 +179014,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4158), [sym_float_literal] = ACTIONS(4158), [sym_rune_literal] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4158), + [anon_sym_DQUOTE] = ACTIONS(4158), + [anon_sym_c_SQUOTE] = ACTIONS(4158), + [anon_sym_c_DQUOTE] = ACTIONS(4158), + [anon_sym_r_SQUOTE] = ACTIONS(4158), + [anon_sym_r_DQUOTE] = ACTIONS(4158), [sym_pseudo_compile_time_identifier] = ACTIONS(4158), [anon_sym_shared] = ACTIONS(4158), [anon_sym_map_LBRACK] = ACTIONS(4158), @@ -179282,16 +179037,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4158), [anon_sym_asm] = ACTIONS(4158), [anon_sym_AT_LBRACK] = ACTIONS(4158), - [sym___double_quote] = ACTIONS(4158), - [sym___single_quote] = ACTIONS(4158), - [sym___c_double_quote] = ACTIONS(4158), - [sym___c_single_quote] = ACTIONS(4158), - [sym___r_double_quote] = ACTIONS(4158), - [sym___r_single_quote] = ACTIONS(4158), }, - [1480] = { - [sym_line_comment] = STATE(1480), - [sym_block_comment] = STATE(1480), + [1477] = { + [sym_line_comment] = STATE(1477), + [sym_block_comment] = STATE(1477), + [ts_builtin_sym_end] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LF] = ACTIONS(2237), + [anon_sym_CR] = ACTIONS(2237), + [anon_sym_CR_LF] = ACTIONS(2237), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym___global] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_mut] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_QMARK] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_go] = ACTIONS(2237), + [anon_sym_spawn] = ACTIONS(2237), + [anon_sym_json_DOTdecode] = ACTIONS(2237), + [anon_sym_LBRACK2] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_CARET] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_LT_DASH] = ACTIONS(2237), + [sym_none] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_nil] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_DOLLARif] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_select] = ACTIONS(2237), + [anon_sym_lock] = ACTIONS(2237), + [anon_sym_rlock] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_sql] = ACTIONS(2237), + [sym_int_literal] = ACTIONS(2237), + [sym_float_literal] = ACTIONS(2237), + [sym_rune_literal] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2237), + [anon_sym_c_SQUOTE] = ACTIONS(2237), + [anon_sym_c_DQUOTE] = ACTIONS(2237), + [anon_sym_r_SQUOTE] = ACTIONS(2237), + [anon_sym_r_DQUOTE] = ACTIONS(2237), + [sym_pseudo_compile_time_identifier] = ACTIONS(2237), + [anon_sym_shared] = ACTIONS(2237), + [anon_sym_map_LBRACK] = ACTIONS(2237), + [anon_sym_chan] = ACTIONS(2237), + [anon_sym_thread] = ACTIONS(2237), + [anon_sym_atomic] = ACTIONS(2237), + [anon_sym_assert] = ACTIONS(2237), + [anon_sym_defer] = ACTIONS(2237), + [anon_sym_goto] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_DOLLARfor] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(2237), + [anon_sym_asm] = ACTIONS(2237), + [anon_sym_AT_LBRACK] = ACTIONS(2237), + }, + [1478] = { + [sym_line_comment] = STATE(1478), + [sym_block_comment] = STATE(1478), + [ts_builtin_sym_end] = ACTIONS(2149), + [sym_identifier] = ACTIONS(2151), + [anon_sym_LF] = ACTIONS(2151), + [anon_sym_CR] = ACTIONS(2151), + [anon_sym_CR_LF] = ACTIONS(2151), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym___global] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_PIPE] = ACTIONS(2151), + [anon_sym_fn] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_struct] = ACTIONS(2151), + [anon_sym_union] = ACTIONS(2151), + [anon_sym_pub] = ACTIONS(2151), + [anon_sym_mut] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), + [anon_sym_interface] = ACTIONS(2151), + [anon_sym_QMARK] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_go] = ACTIONS(2151), + [anon_sym_spawn] = ACTIONS(2151), + [anon_sym_json_DOTdecode] = ACTIONS(2151), + [anon_sym_LBRACK2] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_LT_DASH] = ACTIONS(2151), + [sym_none] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_nil] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_DOLLARif] = ACTIONS(2151), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_select] = ACTIONS(2151), + [anon_sym_lock] = ACTIONS(2151), + [anon_sym_rlock] = ACTIONS(2151), + [anon_sym_unsafe] = ACTIONS(2151), + [anon_sym_sql] = ACTIONS(2151), + [sym_int_literal] = ACTIONS(2151), + [sym_float_literal] = ACTIONS(2151), + [sym_rune_literal] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2151), + [anon_sym_c_SQUOTE] = ACTIONS(2151), + [anon_sym_c_DQUOTE] = ACTIONS(2151), + [anon_sym_r_SQUOTE] = ACTIONS(2151), + [anon_sym_r_DQUOTE] = ACTIONS(2151), + [sym_pseudo_compile_time_identifier] = ACTIONS(2151), + [anon_sym_shared] = ACTIONS(2151), + [anon_sym_map_LBRACK] = ACTIONS(2151), + [anon_sym_chan] = ACTIONS(2151), + [anon_sym_thread] = ACTIONS(2151), + [anon_sym_atomic] = ACTIONS(2151), + [anon_sym_assert] = ACTIONS(2151), + [anon_sym_defer] = ACTIONS(2151), + [anon_sym_goto] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_DOLLARfor] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_POUND] = ACTIONS(2151), + [anon_sym_asm] = ACTIONS(2151), + [anon_sym_AT_LBRACK] = ACTIONS(2151), + }, + [1479] = { + [sym_line_comment] = STATE(1479), + [sym_block_comment] = STATE(1479), [ts_builtin_sym_end] = ACTIONS(4160), [sym_identifier] = ACTIONS(4162), [anon_sym_LF] = ACTIONS(4162), @@ -179340,6 +179241,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4162), [sym_float_literal] = ACTIONS(4162), [sym_rune_literal] = ACTIONS(4162), + [anon_sym_SQUOTE] = ACTIONS(4162), + [anon_sym_DQUOTE] = ACTIONS(4162), + [anon_sym_c_SQUOTE] = ACTIONS(4162), + [anon_sym_c_DQUOTE] = ACTIONS(4162), + [anon_sym_r_SQUOTE] = ACTIONS(4162), + [anon_sym_r_DQUOTE] = ACTIONS(4162), [sym_pseudo_compile_time_identifier] = ACTIONS(4162), [anon_sym_shared] = ACTIONS(4162), [anon_sym_map_LBRACK] = ACTIONS(4162), @@ -179357,16 +179264,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4162), [anon_sym_asm] = ACTIONS(4162), [anon_sym_AT_LBRACK] = ACTIONS(4162), - [sym___double_quote] = ACTIONS(4162), - [sym___single_quote] = ACTIONS(4162), - [sym___c_double_quote] = ACTIONS(4162), - [sym___c_single_quote] = ACTIONS(4162), - [sym___r_double_quote] = ACTIONS(4162), - [sym___r_single_quote] = ACTIONS(4162), }, - [1481] = { - [sym_line_comment] = STATE(1481), - [sym_block_comment] = STATE(1481), + [1480] = { + [sym_line_comment] = STATE(1480), + [sym_block_comment] = STATE(1480), [ts_builtin_sym_end] = ACTIONS(4164), [sym_identifier] = ACTIONS(4166), [anon_sym_LF] = ACTIONS(4166), @@ -179415,6 +179316,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4166), [sym_float_literal] = ACTIONS(4166), [sym_rune_literal] = ACTIONS(4166), + [anon_sym_SQUOTE] = ACTIONS(4166), + [anon_sym_DQUOTE] = ACTIONS(4166), + [anon_sym_c_SQUOTE] = ACTIONS(4166), + [anon_sym_c_DQUOTE] = ACTIONS(4166), + [anon_sym_r_SQUOTE] = ACTIONS(4166), + [anon_sym_r_DQUOTE] = ACTIONS(4166), [sym_pseudo_compile_time_identifier] = ACTIONS(4166), [anon_sym_shared] = ACTIONS(4166), [anon_sym_map_LBRACK] = ACTIONS(4166), @@ -179432,16 +179339,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4166), [anon_sym_asm] = ACTIONS(4166), [anon_sym_AT_LBRACK] = ACTIONS(4166), - [sym___double_quote] = ACTIONS(4166), - [sym___single_quote] = ACTIONS(4166), - [sym___c_double_quote] = ACTIONS(4166), - [sym___c_single_quote] = ACTIONS(4166), - [sym___r_double_quote] = ACTIONS(4166), - [sym___r_single_quote] = ACTIONS(4166), }, - [1482] = { - [sym_line_comment] = STATE(1482), - [sym_block_comment] = STATE(1482), + [1481] = { + [sym_line_comment] = STATE(1481), + [sym_block_comment] = STATE(1481), [ts_builtin_sym_end] = ACTIONS(4168), [sym_identifier] = ACTIONS(4170), [anon_sym_LF] = ACTIONS(4170), @@ -179490,6 +179391,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4170), [sym_float_literal] = ACTIONS(4170), [sym_rune_literal] = ACTIONS(4170), + [anon_sym_SQUOTE] = ACTIONS(4170), + [anon_sym_DQUOTE] = ACTIONS(4170), + [anon_sym_c_SQUOTE] = ACTIONS(4170), + [anon_sym_c_DQUOTE] = ACTIONS(4170), + [anon_sym_r_SQUOTE] = ACTIONS(4170), + [anon_sym_r_DQUOTE] = ACTIONS(4170), [sym_pseudo_compile_time_identifier] = ACTIONS(4170), [anon_sym_shared] = ACTIONS(4170), [anon_sym_map_LBRACK] = ACTIONS(4170), @@ -179507,16 +179414,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4170), [anon_sym_asm] = ACTIONS(4170), [anon_sym_AT_LBRACK] = ACTIONS(4170), - [sym___double_quote] = ACTIONS(4170), - [sym___single_quote] = ACTIONS(4170), - [sym___c_double_quote] = ACTIONS(4170), - [sym___c_single_quote] = ACTIONS(4170), - [sym___r_double_quote] = ACTIONS(4170), - [sym___r_single_quote] = ACTIONS(4170), }, - [1483] = { - [sym_line_comment] = STATE(1483), - [sym_block_comment] = STATE(1483), + [1482] = { + [sym_line_comment] = STATE(1482), + [sym_block_comment] = STATE(1482), [ts_builtin_sym_end] = ACTIONS(4172), [sym_identifier] = ACTIONS(4174), [anon_sym_LF] = ACTIONS(4174), @@ -179565,6 +179466,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4174), [sym_float_literal] = ACTIONS(4174), [sym_rune_literal] = ACTIONS(4174), + [anon_sym_SQUOTE] = ACTIONS(4174), + [anon_sym_DQUOTE] = ACTIONS(4174), + [anon_sym_c_SQUOTE] = ACTIONS(4174), + [anon_sym_c_DQUOTE] = ACTIONS(4174), + [anon_sym_r_SQUOTE] = ACTIONS(4174), + [anon_sym_r_DQUOTE] = ACTIONS(4174), [sym_pseudo_compile_time_identifier] = ACTIONS(4174), [anon_sym_shared] = ACTIONS(4174), [anon_sym_map_LBRACK] = ACTIONS(4174), @@ -179582,16 +179489,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4174), [anon_sym_asm] = ACTIONS(4174), [anon_sym_AT_LBRACK] = ACTIONS(4174), - [sym___double_quote] = ACTIONS(4174), - [sym___single_quote] = ACTIONS(4174), - [sym___c_double_quote] = ACTIONS(4174), - [sym___c_single_quote] = ACTIONS(4174), - [sym___r_double_quote] = ACTIONS(4174), - [sym___r_single_quote] = ACTIONS(4174), }, - [1484] = { - [sym_line_comment] = STATE(1484), - [sym_block_comment] = STATE(1484), + [1483] = { + [sym_line_comment] = STATE(1483), + [sym_block_comment] = STATE(1483), [ts_builtin_sym_end] = ACTIONS(4176), [sym_identifier] = ACTIONS(4178), [anon_sym_LF] = ACTIONS(4178), @@ -179640,6 +179541,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4178), [sym_float_literal] = ACTIONS(4178), [sym_rune_literal] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4178), + [anon_sym_DQUOTE] = ACTIONS(4178), + [anon_sym_c_SQUOTE] = ACTIONS(4178), + [anon_sym_c_DQUOTE] = ACTIONS(4178), + [anon_sym_r_SQUOTE] = ACTIONS(4178), + [anon_sym_r_DQUOTE] = ACTIONS(4178), [sym_pseudo_compile_time_identifier] = ACTIONS(4178), [anon_sym_shared] = ACTIONS(4178), [anon_sym_map_LBRACK] = ACTIONS(4178), @@ -179657,12 +179564,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4178), [anon_sym_asm] = ACTIONS(4178), [anon_sym_AT_LBRACK] = ACTIONS(4178), - [sym___double_quote] = ACTIONS(4178), - [sym___single_quote] = ACTIONS(4178), - [sym___c_double_quote] = ACTIONS(4178), - [sym___c_single_quote] = ACTIONS(4178), - [sym___r_double_quote] = ACTIONS(4178), - [sym___r_single_quote] = ACTIONS(4178), + }, + [1484] = { + [sym_line_comment] = STATE(1484), + [sym_block_comment] = STATE(1484), + [ts_builtin_sym_end] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1809), + [anon_sym_LF] = ACTIONS(1809), + [anon_sym_CR] = ACTIONS(1809), + [anon_sym_CR_LF] = ACTIONS(1809), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym___global] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_fn] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_pub] = ACTIONS(1809), + [anon_sym_mut] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_interface] = ACTIONS(1809), + [anon_sym_QMARK] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1809), + [anon_sym_json_DOTdecode] = ACTIONS(1809), + [anon_sym_LBRACK2] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_LT_DASH] = ACTIONS(1809), + [sym_none] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_nil] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_DOLLARif] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_select] = ACTIONS(1809), + [anon_sym_lock] = ACTIONS(1809), + [anon_sym_rlock] = ACTIONS(1809), + [anon_sym_unsafe] = ACTIONS(1809), + [anon_sym_sql] = ACTIONS(1809), + [sym_int_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), + [sym_rune_literal] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_c_SQUOTE] = ACTIONS(1809), + [anon_sym_c_DQUOTE] = ACTIONS(1809), + [anon_sym_r_SQUOTE] = ACTIONS(1809), + [anon_sym_r_DQUOTE] = ACTIONS(1809), + [sym_pseudo_compile_time_identifier] = ACTIONS(1809), + [anon_sym_shared] = ACTIONS(1809), + [anon_sym_map_LBRACK] = ACTIONS(1809), + [anon_sym_chan] = ACTIONS(1809), + [anon_sym_thread] = ACTIONS(1809), + [anon_sym_atomic] = ACTIONS(1809), + [anon_sym_assert] = ACTIONS(1809), + [anon_sym_defer] = ACTIONS(1809), + [anon_sym_goto] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_DOLLARfor] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_asm] = ACTIONS(1809), + [anon_sym_AT_LBRACK] = ACTIONS(1809), }, [1485] = { [sym_line_comment] = STATE(1485), @@ -179715,6 +179691,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4182), [sym_float_literal] = ACTIONS(4182), [sym_rune_literal] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4182), + [anon_sym_DQUOTE] = ACTIONS(4182), + [anon_sym_c_SQUOTE] = ACTIONS(4182), + [anon_sym_c_DQUOTE] = ACTIONS(4182), + [anon_sym_r_SQUOTE] = ACTIONS(4182), + [anon_sym_r_DQUOTE] = ACTIONS(4182), [sym_pseudo_compile_time_identifier] = ACTIONS(4182), [anon_sym_shared] = ACTIONS(4182), [anon_sym_map_LBRACK] = ACTIONS(4182), @@ -179732,12 +179714,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4182), [anon_sym_asm] = ACTIONS(4182), [anon_sym_AT_LBRACK] = ACTIONS(4182), - [sym___double_quote] = ACTIONS(4182), - [sym___single_quote] = ACTIONS(4182), - [sym___c_double_quote] = ACTIONS(4182), - [sym___c_single_quote] = ACTIONS(4182), - [sym___r_double_quote] = ACTIONS(4182), - [sym___r_single_quote] = ACTIONS(4182), }, [1486] = { [sym_line_comment] = STATE(1486), @@ -179790,6 +179766,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4186), [sym_float_literal] = ACTIONS(4186), [sym_rune_literal] = ACTIONS(4186), + [anon_sym_SQUOTE] = ACTIONS(4186), + [anon_sym_DQUOTE] = ACTIONS(4186), + [anon_sym_c_SQUOTE] = ACTIONS(4186), + [anon_sym_c_DQUOTE] = ACTIONS(4186), + [anon_sym_r_SQUOTE] = ACTIONS(4186), + [anon_sym_r_DQUOTE] = ACTIONS(4186), [sym_pseudo_compile_time_identifier] = ACTIONS(4186), [anon_sym_shared] = ACTIONS(4186), [anon_sym_map_LBRACK] = ACTIONS(4186), @@ -179807,12 +179789,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4186), [anon_sym_asm] = ACTIONS(4186), [anon_sym_AT_LBRACK] = ACTIONS(4186), - [sym___double_quote] = ACTIONS(4186), - [sym___single_quote] = ACTIONS(4186), - [sym___c_double_quote] = ACTIONS(4186), - [sym___c_single_quote] = ACTIONS(4186), - [sym___r_double_quote] = ACTIONS(4186), - [sym___r_single_quote] = ACTIONS(4186), }, [1487] = { [sym_line_comment] = STATE(1487), @@ -179865,6 +179841,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4190), [sym_float_literal] = ACTIONS(4190), [sym_rune_literal] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4190), + [anon_sym_DQUOTE] = ACTIONS(4190), + [anon_sym_c_SQUOTE] = ACTIONS(4190), + [anon_sym_c_DQUOTE] = ACTIONS(4190), + [anon_sym_r_SQUOTE] = ACTIONS(4190), + [anon_sym_r_DQUOTE] = ACTIONS(4190), [sym_pseudo_compile_time_identifier] = ACTIONS(4190), [anon_sym_shared] = ACTIONS(4190), [anon_sym_map_LBRACK] = ACTIONS(4190), @@ -179882,12 +179864,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4190), [anon_sym_asm] = ACTIONS(4190), [anon_sym_AT_LBRACK] = ACTIONS(4190), - [sym___double_quote] = ACTIONS(4190), - [sym___single_quote] = ACTIONS(4190), - [sym___c_double_quote] = ACTIONS(4190), - [sym___c_single_quote] = ACTIONS(4190), - [sym___r_double_quote] = ACTIONS(4190), - [sym___r_single_quote] = ACTIONS(4190), }, [1488] = { [sym_line_comment] = STATE(1488), @@ -179940,6 +179916,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4194), [sym_float_literal] = ACTIONS(4194), [sym_rune_literal] = ACTIONS(4194), + [anon_sym_SQUOTE] = ACTIONS(4194), + [anon_sym_DQUOTE] = ACTIONS(4194), + [anon_sym_c_SQUOTE] = ACTIONS(4194), + [anon_sym_c_DQUOTE] = ACTIONS(4194), + [anon_sym_r_SQUOTE] = ACTIONS(4194), + [anon_sym_r_DQUOTE] = ACTIONS(4194), [sym_pseudo_compile_time_identifier] = ACTIONS(4194), [anon_sym_shared] = ACTIONS(4194), [anon_sym_map_LBRACK] = ACTIONS(4194), @@ -179957,12 +179939,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4194), [anon_sym_asm] = ACTIONS(4194), [anon_sym_AT_LBRACK] = ACTIONS(4194), - [sym___double_quote] = ACTIONS(4194), - [sym___single_quote] = ACTIONS(4194), - [sym___c_double_quote] = ACTIONS(4194), - [sym___c_single_quote] = ACTIONS(4194), - [sym___r_double_quote] = ACTIONS(4194), - [sym___r_single_quote] = ACTIONS(4194), }, [1489] = { [sym_line_comment] = STATE(1489), @@ -180015,6 +179991,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4198), [sym_float_literal] = ACTIONS(4198), [sym_rune_literal] = ACTIONS(4198), + [anon_sym_SQUOTE] = ACTIONS(4198), + [anon_sym_DQUOTE] = ACTIONS(4198), + [anon_sym_c_SQUOTE] = ACTIONS(4198), + [anon_sym_c_DQUOTE] = ACTIONS(4198), + [anon_sym_r_SQUOTE] = ACTIONS(4198), + [anon_sym_r_DQUOTE] = ACTIONS(4198), [sym_pseudo_compile_time_identifier] = ACTIONS(4198), [anon_sym_shared] = ACTIONS(4198), [anon_sym_map_LBRACK] = ACTIONS(4198), @@ -180032,12 +180014,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4198), [anon_sym_asm] = ACTIONS(4198), [anon_sym_AT_LBRACK] = ACTIONS(4198), - [sym___double_quote] = ACTIONS(4198), - [sym___single_quote] = ACTIONS(4198), - [sym___c_double_quote] = ACTIONS(4198), - [sym___c_single_quote] = ACTIONS(4198), - [sym___r_double_quote] = ACTIONS(4198), - [sym___r_single_quote] = ACTIONS(4198), }, [1490] = { [sym_line_comment] = STATE(1490), @@ -180090,6 +180066,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4202), [sym_float_literal] = ACTIONS(4202), [sym_rune_literal] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4202), + [anon_sym_DQUOTE] = ACTIONS(4202), + [anon_sym_c_SQUOTE] = ACTIONS(4202), + [anon_sym_c_DQUOTE] = ACTIONS(4202), + [anon_sym_r_SQUOTE] = ACTIONS(4202), + [anon_sym_r_DQUOTE] = ACTIONS(4202), [sym_pseudo_compile_time_identifier] = ACTIONS(4202), [anon_sym_shared] = ACTIONS(4202), [anon_sym_map_LBRACK] = ACTIONS(4202), @@ -180107,12 +180089,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4202), [anon_sym_asm] = ACTIONS(4202), [anon_sym_AT_LBRACK] = ACTIONS(4202), - [sym___double_quote] = ACTIONS(4202), - [sym___single_quote] = ACTIONS(4202), - [sym___c_double_quote] = ACTIONS(4202), - [sym___c_single_quote] = ACTIONS(4202), - [sym___r_double_quote] = ACTIONS(4202), - [sym___r_single_quote] = ACTIONS(4202), }, [1491] = { [sym_line_comment] = STATE(1491), @@ -180165,6 +180141,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4206), [sym_float_literal] = ACTIONS(4206), [sym_rune_literal] = ACTIONS(4206), + [anon_sym_SQUOTE] = ACTIONS(4206), + [anon_sym_DQUOTE] = ACTIONS(4206), + [anon_sym_c_SQUOTE] = ACTIONS(4206), + [anon_sym_c_DQUOTE] = ACTIONS(4206), + [anon_sym_r_SQUOTE] = ACTIONS(4206), + [anon_sym_r_DQUOTE] = ACTIONS(4206), [sym_pseudo_compile_time_identifier] = ACTIONS(4206), [anon_sym_shared] = ACTIONS(4206), [anon_sym_map_LBRACK] = ACTIONS(4206), @@ -180182,12 +180164,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4206), [anon_sym_asm] = ACTIONS(4206), [anon_sym_AT_LBRACK] = ACTIONS(4206), - [sym___double_quote] = ACTIONS(4206), - [sym___single_quote] = ACTIONS(4206), - [sym___c_double_quote] = ACTIONS(4206), - [sym___c_single_quote] = ACTIONS(4206), - [sym___r_double_quote] = ACTIONS(4206), - [sym___r_single_quote] = ACTIONS(4206), }, [1492] = { [sym_line_comment] = STATE(1492), @@ -180240,6 +180216,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4210), [sym_float_literal] = ACTIONS(4210), [sym_rune_literal] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4210), + [anon_sym_DQUOTE] = ACTIONS(4210), + [anon_sym_c_SQUOTE] = ACTIONS(4210), + [anon_sym_c_DQUOTE] = ACTIONS(4210), + [anon_sym_r_SQUOTE] = ACTIONS(4210), + [anon_sym_r_DQUOTE] = ACTIONS(4210), [sym_pseudo_compile_time_identifier] = ACTIONS(4210), [anon_sym_shared] = ACTIONS(4210), [anon_sym_map_LBRACK] = ACTIONS(4210), @@ -180257,16 +180239,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4210), [anon_sym_asm] = ACTIONS(4210), [anon_sym_AT_LBRACK] = ACTIONS(4210), - [sym___double_quote] = ACTIONS(4210), - [sym___single_quote] = ACTIONS(4210), - [sym___c_double_quote] = ACTIONS(4210), - [sym___c_single_quote] = ACTIONS(4210), - [sym___r_double_quote] = ACTIONS(4210), - [sym___r_single_quote] = ACTIONS(4210), }, [1493] = { [sym_line_comment] = STATE(1493), [sym_block_comment] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_identifier] = ACTIONS(1889), + [anon_sym_LF] = ACTIONS(1889), + [anon_sym_CR] = ACTIONS(1889), + [anon_sym_CR_LF] = ACTIONS(1889), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym___global] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_union] = ACTIONS(1889), + [anon_sym_pub] = ACTIONS(1889), + [anon_sym_mut] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1889), + [anon_sym_interface] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1889), + [anon_sym_spawn] = ACTIONS(1889), + [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_LBRACK2] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_CARET] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1889), + [sym_none] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_nil] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_DOLLARif] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_select] = ACTIONS(1889), + [anon_sym_lock] = ACTIONS(1889), + [anon_sym_rlock] = ACTIONS(1889), + [anon_sym_unsafe] = ACTIONS(1889), + [anon_sym_sql] = ACTIONS(1889), + [sym_int_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1889), + [sym_rune_literal] = ACTIONS(1889), + [anon_sym_SQUOTE] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(1889), + [anon_sym_c_SQUOTE] = ACTIONS(1889), + [anon_sym_c_DQUOTE] = ACTIONS(1889), + [anon_sym_r_SQUOTE] = ACTIONS(1889), + [anon_sym_r_DQUOTE] = ACTIONS(1889), + [sym_pseudo_compile_time_identifier] = ACTIONS(1889), + [anon_sym_shared] = ACTIONS(1889), + [anon_sym_map_LBRACK] = ACTIONS(1889), + [anon_sym_chan] = ACTIONS(1889), + [anon_sym_thread] = ACTIONS(1889), + [anon_sym_atomic] = ACTIONS(1889), + [anon_sym_assert] = ACTIONS(1889), + [anon_sym_defer] = ACTIONS(1889), + [anon_sym_goto] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_DOLLARfor] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(1889), + [anon_sym_asm] = ACTIONS(1889), + [anon_sym_AT_LBRACK] = ACTIONS(1889), + }, + [1494] = { + [sym_line_comment] = STATE(1494), + [sym_block_comment] = STATE(1494), [ts_builtin_sym_end] = ACTIONS(4212), [sym_identifier] = ACTIONS(4214), [anon_sym_LF] = ACTIONS(4214), @@ -180315,6 +180366,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4214), [sym_float_literal] = ACTIONS(4214), [sym_rune_literal] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4214), + [anon_sym_DQUOTE] = ACTIONS(4214), + [anon_sym_c_SQUOTE] = ACTIONS(4214), + [anon_sym_c_DQUOTE] = ACTIONS(4214), + [anon_sym_r_SQUOTE] = ACTIONS(4214), + [anon_sym_r_DQUOTE] = ACTIONS(4214), [sym_pseudo_compile_time_identifier] = ACTIONS(4214), [anon_sym_shared] = ACTIONS(4214), [anon_sym_map_LBRACK] = ACTIONS(4214), @@ -180332,321 +180389,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4214), [anon_sym_asm] = ACTIONS(4214), [anon_sym_AT_LBRACK] = ACTIONS(4214), - [sym___double_quote] = ACTIONS(4214), - [sym___single_quote] = ACTIONS(4214), - [sym___c_double_quote] = ACTIONS(4214), - [sym___c_single_quote] = ACTIONS(4214), - [sym___r_double_quote] = ACTIONS(4214), - [sym___r_single_quote] = ACTIONS(4214), - }, - [1494] = { - [sym_line_comment] = STATE(1494), - [sym_block_comment] = STATE(1494), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2320), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(3564), - [anon_sym_RPAREN] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3566), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_RBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_LBRACK2] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(563), - [anon_sym_AMP_CARET] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(563), }, [1495] = { [sym_line_comment] = STATE(1495), [sym_block_comment] = STATE(1495), - [ts_builtin_sym_end] = ACTIONS(4218), - [sym_identifier] = ACTIONS(4220), - [anon_sym_LF] = ACTIONS(4220), - [anon_sym_CR] = ACTIONS(4220), - [anon_sym_CR_LF] = ACTIONS(4220), + [ts_builtin_sym_end] = ACTIONS(4216), + [sym_identifier] = ACTIONS(4218), + [anon_sym_LF] = ACTIONS(4218), + [anon_sym_CR] = ACTIONS(4218), + [anon_sym_CR_LF] = ACTIONS(4218), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_LBRACE] = ACTIONS(4220), - [anon_sym_const] = ACTIONS(4220), - [anon_sym_LPAREN] = ACTIONS(4220), - [anon_sym___global] = ACTIONS(4220), - [anon_sym_type] = ACTIONS(4220), - [anon_sym_fn] = ACTIONS(4220), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [anon_sym_struct] = ACTIONS(4220), - [anon_sym_union] = ACTIONS(4220), - [anon_sym_pub] = ACTIONS(4220), - [anon_sym_mut] = ACTIONS(4220), - [anon_sym_enum] = ACTIONS(4220), - [anon_sym_interface] = ACTIONS(4220), - [anon_sym_QMARK] = ACTIONS(4220), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_go] = ACTIONS(4220), - [anon_sym_spawn] = ACTIONS(4220), - [anon_sym_json_DOTdecode] = ACTIONS(4220), - [anon_sym_LBRACK2] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_CARET] = ACTIONS(4220), - [anon_sym_AMP] = ACTIONS(4220), - [anon_sym_LT_DASH] = ACTIONS(4220), - [sym_none] = ACTIONS(4220), - [sym_true] = ACTIONS(4220), - [sym_false] = ACTIONS(4220), - [sym_nil] = ACTIONS(4220), - [anon_sym_if] = ACTIONS(4220), - [anon_sym_DOLLARif] = ACTIONS(4220), - [anon_sym_match] = ACTIONS(4220), - [anon_sym_select] = ACTIONS(4220), - [anon_sym_lock] = ACTIONS(4220), - [anon_sym_rlock] = ACTIONS(4220), - [anon_sym_unsafe] = ACTIONS(4220), - [anon_sym_sql] = ACTIONS(4220), - [sym_int_literal] = ACTIONS(4220), - [sym_float_literal] = ACTIONS(4220), - [sym_rune_literal] = ACTIONS(4220), - [sym_pseudo_compile_time_identifier] = ACTIONS(4220), - [anon_sym_shared] = ACTIONS(4220), - [anon_sym_map_LBRACK] = ACTIONS(4220), - [anon_sym_chan] = ACTIONS(4220), - [anon_sym_thread] = ACTIONS(4220), - [anon_sym_atomic] = ACTIONS(4220), - [anon_sym_assert] = ACTIONS(4220), - [anon_sym_defer] = ACTIONS(4220), - [anon_sym_goto] = ACTIONS(4220), - [anon_sym_break] = ACTIONS(4220), - [anon_sym_continue] = ACTIONS(4220), - [anon_sym_return] = ACTIONS(4220), - [anon_sym_DOLLARfor] = ACTIONS(4220), - [anon_sym_for] = ACTIONS(4220), - [anon_sym_POUND] = ACTIONS(4220), - [anon_sym_asm] = ACTIONS(4220), - [anon_sym_AT_LBRACK] = ACTIONS(4220), - [sym___double_quote] = ACTIONS(4220), - [sym___single_quote] = ACTIONS(4220), - [sym___c_double_quote] = ACTIONS(4220), - [sym___c_single_quote] = ACTIONS(4220), - [sym___r_double_quote] = ACTIONS(4220), - [sym___r_single_quote] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4218), + [anon_sym_LBRACE] = ACTIONS(4218), + [anon_sym_const] = ACTIONS(4218), + [anon_sym_LPAREN] = ACTIONS(4218), + [anon_sym___global] = ACTIONS(4218), + [anon_sym_type] = ACTIONS(4218), + [anon_sym_fn] = ACTIONS(4218), + [anon_sym_PLUS] = ACTIONS(4218), + [anon_sym_DASH] = ACTIONS(4218), + [anon_sym_STAR] = ACTIONS(4218), + [anon_sym_struct] = ACTIONS(4218), + [anon_sym_union] = ACTIONS(4218), + [anon_sym_pub] = ACTIONS(4218), + [anon_sym_mut] = ACTIONS(4218), + [anon_sym_enum] = ACTIONS(4218), + [anon_sym_interface] = ACTIONS(4218), + [anon_sym_QMARK] = ACTIONS(4218), + [anon_sym_BANG] = ACTIONS(4218), + [anon_sym_go] = ACTIONS(4218), + [anon_sym_spawn] = ACTIONS(4218), + [anon_sym_json_DOTdecode] = ACTIONS(4218), + [anon_sym_LBRACK2] = ACTIONS(4218), + [anon_sym_TILDE] = ACTIONS(4218), + [anon_sym_CARET] = ACTIONS(4218), + [anon_sym_AMP] = ACTIONS(4218), + [anon_sym_LT_DASH] = ACTIONS(4218), + [sym_none] = ACTIONS(4218), + [sym_true] = ACTIONS(4218), + [sym_false] = ACTIONS(4218), + [sym_nil] = ACTIONS(4218), + [anon_sym_if] = ACTIONS(4218), + [anon_sym_DOLLARif] = ACTIONS(4218), + [anon_sym_match] = ACTIONS(4218), + [anon_sym_select] = ACTIONS(4218), + [anon_sym_lock] = ACTIONS(4218), + [anon_sym_rlock] = ACTIONS(4218), + [anon_sym_unsafe] = ACTIONS(4218), + [anon_sym_sql] = ACTIONS(4218), + [sym_int_literal] = ACTIONS(4218), + [sym_float_literal] = ACTIONS(4218), + [sym_rune_literal] = ACTIONS(4218), + [anon_sym_SQUOTE] = ACTIONS(4218), + [anon_sym_DQUOTE] = ACTIONS(4218), + [anon_sym_c_SQUOTE] = ACTIONS(4218), + [anon_sym_c_DQUOTE] = ACTIONS(4218), + [anon_sym_r_SQUOTE] = ACTIONS(4218), + [anon_sym_r_DQUOTE] = ACTIONS(4218), + [sym_pseudo_compile_time_identifier] = ACTIONS(4218), + [anon_sym_shared] = ACTIONS(4218), + [anon_sym_map_LBRACK] = ACTIONS(4218), + [anon_sym_chan] = ACTIONS(4218), + [anon_sym_thread] = ACTIONS(4218), + [anon_sym_atomic] = ACTIONS(4218), + [anon_sym_assert] = ACTIONS(4218), + [anon_sym_defer] = ACTIONS(4218), + [anon_sym_goto] = ACTIONS(4218), + [anon_sym_break] = ACTIONS(4218), + [anon_sym_continue] = ACTIONS(4218), + [anon_sym_return] = ACTIONS(4218), + [anon_sym_DOLLARfor] = ACTIONS(4218), + [anon_sym_for] = ACTIONS(4218), + [anon_sym_POUND] = ACTIONS(4218), + [anon_sym_asm] = ACTIONS(4218), + [anon_sym_AT_LBRACK] = ACTIONS(4218), }, [1496] = { [sym_line_comment] = STATE(1496), [sym_block_comment] = STATE(1496), - [ts_builtin_sym_end] = ACTIONS(4222), - [sym_identifier] = ACTIONS(4224), - [anon_sym_LF] = ACTIONS(4226), - [anon_sym_CR] = ACTIONS(4226), - [anon_sym_CR_LF] = ACTIONS(4226), + [ts_builtin_sym_end] = ACTIONS(4220), + [sym_identifier] = ACTIONS(4222), + [anon_sym_LF] = ACTIONS(4222), + [anon_sym_CR] = ACTIONS(4222), + [anon_sym_CR_LF] = ACTIONS(4222), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_LBRACE] = ACTIONS(4224), - [anon_sym_const] = ACTIONS(4224), - [anon_sym_LPAREN] = ACTIONS(4224), - [anon_sym___global] = ACTIONS(4224), - [anon_sym_type] = ACTIONS(4224), - [anon_sym_fn] = ACTIONS(4224), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_struct] = ACTIONS(4224), - [anon_sym_union] = ACTIONS(4224), - [anon_sym_pub] = ACTIONS(4224), - [anon_sym_mut] = ACTIONS(4224), - [anon_sym_enum] = ACTIONS(4224), - [anon_sym_interface] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_go] = ACTIONS(4224), - [anon_sym_spawn] = ACTIONS(4224), - [anon_sym_json_DOTdecode] = ACTIONS(4224), - [anon_sym_LBRACK2] = ACTIONS(4224), - [anon_sym_TILDE] = ACTIONS(4224), - [anon_sym_CARET] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_DASH] = ACTIONS(4224), - [sym_none] = ACTIONS(4224), - [sym_true] = ACTIONS(4224), - [sym_false] = ACTIONS(4224), - [sym_nil] = ACTIONS(4224), - [anon_sym_if] = ACTIONS(4224), - [anon_sym_DOLLARif] = ACTIONS(4224), - [anon_sym_match] = ACTIONS(4224), - [anon_sym_select] = ACTIONS(4224), - [anon_sym_lock] = ACTIONS(4224), - [anon_sym_rlock] = ACTIONS(4224), - [anon_sym_unsafe] = ACTIONS(4224), - [anon_sym_sql] = ACTIONS(4224), - [sym_int_literal] = ACTIONS(4224), - [sym_float_literal] = ACTIONS(4224), - [sym_rune_literal] = ACTIONS(4224), - [sym_pseudo_compile_time_identifier] = ACTIONS(4224), - [anon_sym_shared] = ACTIONS(4224), - [anon_sym_map_LBRACK] = ACTIONS(4224), - [anon_sym_chan] = ACTIONS(4224), - [anon_sym_thread] = ACTIONS(4224), - [anon_sym_atomic] = ACTIONS(4224), - [anon_sym_assert] = ACTIONS(4224), - [anon_sym_defer] = ACTIONS(4224), - [anon_sym_goto] = ACTIONS(4224), - [anon_sym_break] = ACTIONS(4224), - [anon_sym_continue] = ACTIONS(4224), - [anon_sym_return] = ACTIONS(4224), - [anon_sym_DOLLARfor] = ACTIONS(4224), - [anon_sym_for] = ACTIONS(4224), - [anon_sym_POUND] = ACTIONS(4224), - [anon_sym_asm] = ACTIONS(4224), - [anon_sym_AT_LBRACK] = ACTIONS(4224), - [sym___double_quote] = ACTIONS(4224), - [sym___single_quote] = ACTIONS(4224), - [sym___c_double_quote] = ACTIONS(4224), - [sym___c_single_quote] = ACTIONS(4224), - [sym___r_double_quote] = ACTIONS(4224), - [sym___r_single_quote] = ACTIONS(4224), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_const] = ACTIONS(4222), + [anon_sym_LPAREN] = ACTIONS(4222), + [anon_sym___global] = ACTIONS(4222), + [anon_sym_type] = ACTIONS(4222), + [anon_sym_fn] = ACTIONS(4222), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4222), + [anon_sym_struct] = ACTIONS(4222), + [anon_sym_union] = ACTIONS(4222), + [anon_sym_pub] = ACTIONS(4222), + [anon_sym_mut] = ACTIONS(4222), + [anon_sym_enum] = ACTIONS(4222), + [anon_sym_interface] = ACTIONS(4222), + [anon_sym_QMARK] = ACTIONS(4222), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_go] = ACTIONS(4222), + [anon_sym_spawn] = ACTIONS(4222), + [anon_sym_json_DOTdecode] = ACTIONS(4222), + [anon_sym_LBRACK2] = ACTIONS(4222), + [anon_sym_TILDE] = ACTIONS(4222), + [anon_sym_CARET] = ACTIONS(4222), + [anon_sym_AMP] = ACTIONS(4222), + [anon_sym_LT_DASH] = ACTIONS(4222), + [sym_none] = ACTIONS(4222), + [sym_true] = ACTIONS(4222), + [sym_false] = ACTIONS(4222), + [sym_nil] = ACTIONS(4222), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_DOLLARif] = ACTIONS(4222), + [anon_sym_match] = ACTIONS(4222), + [anon_sym_select] = ACTIONS(4222), + [anon_sym_lock] = ACTIONS(4222), + [anon_sym_rlock] = ACTIONS(4222), + [anon_sym_unsafe] = ACTIONS(4222), + [anon_sym_sql] = ACTIONS(4222), + [sym_int_literal] = ACTIONS(4222), + [sym_float_literal] = ACTIONS(4222), + [sym_rune_literal] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4222), + [anon_sym_DQUOTE] = ACTIONS(4222), + [anon_sym_c_SQUOTE] = ACTIONS(4222), + [anon_sym_c_DQUOTE] = ACTIONS(4222), + [anon_sym_r_SQUOTE] = ACTIONS(4222), + [anon_sym_r_DQUOTE] = ACTIONS(4222), + [sym_pseudo_compile_time_identifier] = ACTIONS(4222), + [anon_sym_shared] = ACTIONS(4222), + [anon_sym_map_LBRACK] = ACTIONS(4222), + [anon_sym_chan] = ACTIONS(4222), + [anon_sym_thread] = ACTIONS(4222), + [anon_sym_atomic] = ACTIONS(4222), + [anon_sym_assert] = ACTIONS(4222), + [anon_sym_defer] = ACTIONS(4222), + [anon_sym_goto] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_DOLLARfor] = ACTIONS(4222), + [anon_sym_for] = ACTIONS(4222), + [anon_sym_POUND] = ACTIONS(4222), + [anon_sym_asm] = ACTIONS(4222), + [anon_sym_AT_LBRACK] = ACTIONS(4222), }, [1497] = { [sym_line_comment] = STATE(1497), [sym_block_comment] = STATE(1497), - [ts_builtin_sym_end] = ACTIONS(1751), - [sym_identifier] = ACTIONS(1753), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_CR] = ACTIONS(1753), - [anon_sym_CR_LF] = ACTIONS(1753), + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LF] = ACTIONS(2833), + [anon_sym_CR] = ACTIONS(2833), + [anon_sym_CR_LF] = ACTIONS(2833), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1753), - [anon_sym___global] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_fn] = ACTIONS(1753), - [anon_sym_PLUS] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_STAR] = ACTIONS(1753), - [anon_sym_struct] = ACTIONS(1753), - [anon_sym_union] = ACTIONS(1753), - [anon_sym_pub] = ACTIONS(1753), - [anon_sym_mut] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_interface] = ACTIONS(1753), - [anon_sym_QMARK] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_go] = ACTIONS(1753), - [anon_sym_spawn] = ACTIONS(1753), - [anon_sym_json_DOTdecode] = ACTIONS(1753), - [anon_sym_LBRACK2] = ACTIONS(1753), - [anon_sym_TILDE] = ACTIONS(1753), - [anon_sym_CARET] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1753), - [anon_sym_LT_DASH] = ACTIONS(1753), - [sym_none] = ACTIONS(1753), - [sym_true] = ACTIONS(1753), - [sym_false] = ACTIONS(1753), - [sym_nil] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_DOLLARif] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1753), - [anon_sym_select] = ACTIONS(1753), - [anon_sym_lock] = ACTIONS(1753), - [anon_sym_rlock] = ACTIONS(1753), - [anon_sym_unsafe] = ACTIONS(1753), - [anon_sym_sql] = ACTIONS(1753), - [sym_int_literal] = ACTIONS(1753), - [sym_float_literal] = ACTIONS(1753), - [sym_rune_literal] = ACTIONS(1753), - [sym_pseudo_compile_time_identifier] = ACTIONS(1753), - [anon_sym_shared] = ACTIONS(1753), - [anon_sym_map_LBRACK] = ACTIONS(1753), - [anon_sym_chan] = ACTIONS(1753), - [anon_sym_thread] = ACTIONS(1753), - [anon_sym_atomic] = ACTIONS(1753), - [anon_sym_assert] = ACTIONS(1753), - [anon_sym_defer] = ACTIONS(1753), - [anon_sym_goto] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_DOLLARfor] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_POUND] = ACTIONS(1753), - [anon_sym_asm] = ACTIONS(1753), - [anon_sym_AT_LBRACK] = ACTIONS(1753), - [sym___double_quote] = ACTIONS(1753), - [sym___single_quote] = ACTIONS(1753), - [sym___c_double_quote] = ACTIONS(1753), - [sym___c_single_quote] = ACTIONS(1753), - [sym___r_double_quote] = ACTIONS(1753), - [sym___r_single_quote] = ACTIONS(1753), + [anon_sym_DOT] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym___global] = ACTIONS(2833), + [anon_sym_type] = ACTIONS(2833), + [anon_sym_fn] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_pub] = ACTIONS(2833), + [anon_sym_mut] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_interface] = ACTIONS(2833), + [anon_sym_QMARK] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_go] = ACTIONS(2833), + [anon_sym_spawn] = ACTIONS(2833), + [anon_sym_json_DOTdecode] = ACTIONS(2833), + [anon_sym_LBRACK2] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_LT_DASH] = ACTIONS(2833), + [sym_none] = ACTIONS(2833), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_nil] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_DOLLARif] = ACTIONS(2833), + [anon_sym_match] = ACTIONS(2833), + [anon_sym_select] = ACTIONS(2833), + [anon_sym_lock] = ACTIONS(2833), + [anon_sym_rlock] = ACTIONS(2833), + [anon_sym_unsafe] = ACTIONS(2833), + [anon_sym_sql] = ACTIONS(2833), + [sym_int_literal] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), + [sym_rune_literal] = ACTIONS(2833), + [anon_sym_SQUOTE] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2833), + [anon_sym_c_SQUOTE] = ACTIONS(2833), + [anon_sym_c_DQUOTE] = ACTIONS(2833), + [anon_sym_r_SQUOTE] = ACTIONS(2833), + [anon_sym_r_DQUOTE] = ACTIONS(2833), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(2833), + [anon_sym_map_LBRACK] = ACTIONS(2833), + [anon_sym_chan] = ACTIONS(2833), + [anon_sym_thread] = ACTIONS(2833), + [anon_sym_atomic] = ACTIONS(2833), + [anon_sym_assert] = ACTIONS(2833), + [anon_sym_defer] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_DOLLARfor] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_POUND] = ACTIONS(2833), + [anon_sym_asm] = ACTIONS(2833), + [anon_sym_AT_LBRACK] = ACTIONS(2833), }, [1498] = { [sym_line_comment] = STATE(1498), [sym_block_comment] = STATE(1498), + [ts_builtin_sym_end] = ACTIONS(4224), + [sym_identifier] = ACTIONS(4226), + [anon_sym_LF] = ACTIONS(4226), + [anon_sym_CR] = ACTIONS(4226), + [anon_sym_CR_LF] = ACTIONS(4226), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4226), + [anon_sym_const] = ACTIONS(4226), + [anon_sym_LPAREN] = ACTIONS(4226), + [anon_sym___global] = ACTIONS(4226), + [anon_sym_type] = ACTIONS(4226), + [anon_sym_fn] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4226), + [anon_sym_struct] = ACTIONS(4226), + [anon_sym_union] = ACTIONS(4226), + [anon_sym_pub] = ACTIONS(4226), + [anon_sym_mut] = ACTIONS(4226), + [anon_sym_enum] = ACTIONS(4226), + [anon_sym_interface] = ACTIONS(4226), + [anon_sym_QMARK] = ACTIONS(4226), + [anon_sym_BANG] = ACTIONS(4226), + [anon_sym_go] = ACTIONS(4226), + [anon_sym_spawn] = ACTIONS(4226), + [anon_sym_json_DOTdecode] = ACTIONS(4226), + [anon_sym_LBRACK2] = ACTIONS(4226), + [anon_sym_TILDE] = ACTIONS(4226), + [anon_sym_CARET] = ACTIONS(4226), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_LT_DASH] = ACTIONS(4226), + [sym_none] = ACTIONS(4226), + [sym_true] = ACTIONS(4226), + [sym_false] = ACTIONS(4226), + [sym_nil] = ACTIONS(4226), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_DOLLARif] = ACTIONS(4226), + [anon_sym_match] = ACTIONS(4226), + [anon_sym_select] = ACTIONS(4226), + [anon_sym_lock] = ACTIONS(4226), + [anon_sym_rlock] = ACTIONS(4226), + [anon_sym_unsafe] = ACTIONS(4226), + [anon_sym_sql] = ACTIONS(4226), + [sym_int_literal] = ACTIONS(4226), + [sym_float_literal] = ACTIONS(4226), + [sym_rune_literal] = ACTIONS(4226), + [anon_sym_SQUOTE] = ACTIONS(4226), + [anon_sym_DQUOTE] = ACTIONS(4226), + [anon_sym_c_SQUOTE] = ACTIONS(4226), + [anon_sym_c_DQUOTE] = ACTIONS(4226), + [anon_sym_r_SQUOTE] = ACTIONS(4226), + [anon_sym_r_DQUOTE] = ACTIONS(4226), + [sym_pseudo_compile_time_identifier] = ACTIONS(4226), + [anon_sym_shared] = ACTIONS(4226), + [anon_sym_map_LBRACK] = ACTIONS(4226), + [anon_sym_chan] = ACTIONS(4226), + [anon_sym_thread] = ACTIONS(4226), + [anon_sym_atomic] = ACTIONS(4226), + [anon_sym_assert] = ACTIONS(4226), + [anon_sym_defer] = ACTIONS(4226), + [anon_sym_goto] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_DOLLARfor] = ACTIONS(4226), + [anon_sym_for] = ACTIONS(4226), + [anon_sym_POUND] = ACTIONS(4226), + [anon_sym_asm] = ACTIONS(4226), + [anon_sym_AT_LBRACK] = ACTIONS(4226), + }, + [1499] = { + [sym_line_comment] = STATE(1499), + [sym_block_comment] = STATE(1499), [ts_builtin_sym_end] = ACTIONS(4228), [sym_identifier] = ACTIONS(4230), - [anon_sym_LF] = ACTIONS(4230), - [anon_sym_CR] = ACTIONS(4230), - [anon_sym_CR_LF] = ACTIONS(4230), + [anon_sym_LF] = ACTIONS(4232), + [anon_sym_CR] = ACTIONS(4232), + [anon_sym_CR_LF] = ACTIONS(4232), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4230), @@ -180690,6 +180741,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4230), [sym_float_literal] = ACTIONS(4230), [sym_rune_literal] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4230), + [anon_sym_DQUOTE] = ACTIONS(4230), + [anon_sym_c_SQUOTE] = ACTIONS(4230), + [anon_sym_c_DQUOTE] = ACTIONS(4230), + [anon_sym_r_SQUOTE] = ACTIONS(4230), + [anon_sym_r_DQUOTE] = ACTIONS(4230), [sym_pseudo_compile_time_identifier] = ACTIONS(4230), [anon_sym_shared] = ACTIONS(4230), [anon_sym_map_LBRACK] = ACTIONS(4230), @@ -180707,1441 +180764,1435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4230), [anon_sym_asm] = ACTIONS(4230), [anon_sym_AT_LBRACK] = ACTIONS(4230), - [sym___double_quote] = ACTIONS(4230), - [sym___single_quote] = ACTIONS(4230), - [sym___c_double_quote] = ACTIONS(4230), - [sym___c_single_quote] = ACTIONS(4230), - [sym___r_double_quote] = ACTIONS(4230), - [sym___r_single_quote] = ACTIONS(4230), - }, - [1499] = { - [sym_line_comment] = STATE(1499), - [sym_block_comment] = STATE(1499), - [ts_builtin_sym_end] = ACTIONS(4232), - [sym_identifier] = ACTIONS(4234), - [anon_sym_LF] = ACTIONS(4234), - [anon_sym_CR] = ACTIONS(4234), - [anon_sym_CR_LF] = ACTIONS(4234), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4234), - [anon_sym_LBRACE] = ACTIONS(4234), - [anon_sym_const] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym___global] = ACTIONS(4234), - [anon_sym_type] = ACTIONS(4234), - [anon_sym_fn] = ACTIONS(4234), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [anon_sym_struct] = ACTIONS(4234), - [anon_sym_union] = ACTIONS(4234), - [anon_sym_pub] = ACTIONS(4234), - [anon_sym_mut] = ACTIONS(4234), - [anon_sym_enum] = ACTIONS(4234), - [anon_sym_interface] = ACTIONS(4234), - [anon_sym_QMARK] = ACTIONS(4234), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_go] = ACTIONS(4234), - [anon_sym_spawn] = ACTIONS(4234), - [anon_sym_json_DOTdecode] = ACTIONS(4234), - [anon_sym_LBRACK2] = ACTIONS(4234), - [anon_sym_TILDE] = ACTIONS(4234), - [anon_sym_CARET] = ACTIONS(4234), - [anon_sym_AMP] = ACTIONS(4234), - [anon_sym_LT_DASH] = ACTIONS(4234), - [sym_none] = ACTIONS(4234), - [sym_true] = ACTIONS(4234), - [sym_false] = ACTIONS(4234), - [sym_nil] = ACTIONS(4234), - [anon_sym_if] = ACTIONS(4234), - [anon_sym_DOLLARif] = ACTIONS(4234), - [anon_sym_match] = ACTIONS(4234), - [anon_sym_select] = ACTIONS(4234), - [anon_sym_lock] = ACTIONS(4234), - [anon_sym_rlock] = ACTIONS(4234), - [anon_sym_unsafe] = ACTIONS(4234), - [anon_sym_sql] = ACTIONS(4234), - [sym_int_literal] = ACTIONS(4234), - [sym_float_literal] = ACTIONS(4234), - [sym_rune_literal] = ACTIONS(4234), - [sym_pseudo_compile_time_identifier] = ACTIONS(4234), - [anon_sym_shared] = ACTIONS(4234), - [anon_sym_map_LBRACK] = ACTIONS(4234), - [anon_sym_chan] = ACTIONS(4234), - [anon_sym_thread] = ACTIONS(4234), - [anon_sym_atomic] = ACTIONS(4234), - [anon_sym_assert] = ACTIONS(4234), - [anon_sym_defer] = ACTIONS(4234), - [anon_sym_goto] = ACTIONS(4234), - [anon_sym_break] = ACTIONS(4234), - [anon_sym_continue] = ACTIONS(4234), - [anon_sym_return] = ACTIONS(4234), - [anon_sym_DOLLARfor] = ACTIONS(4234), - [anon_sym_for] = ACTIONS(4234), - [anon_sym_POUND] = ACTIONS(4234), - [anon_sym_asm] = ACTIONS(4234), - [anon_sym_AT_LBRACK] = ACTIONS(4234), - [sym___double_quote] = ACTIONS(4234), - [sym___single_quote] = ACTIONS(4234), - [sym___c_double_quote] = ACTIONS(4234), - [sym___c_single_quote] = ACTIONS(4234), - [sym___r_double_quote] = ACTIONS(4234), - [sym___r_single_quote] = ACTIONS(4234), }, [1500] = { [sym_line_comment] = STATE(1500), [sym_block_comment] = STATE(1500), - [ts_builtin_sym_end] = ACTIONS(4236), - [sym_identifier] = ACTIONS(4238), - [anon_sym_LF] = ACTIONS(4238), - [anon_sym_CR] = ACTIONS(4238), - [anon_sym_CR_LF] = ACTIONS(4238), + [ts_builtin_sym_end] = ACTIONS(4234), + [sym_identifier] = ACTIONS(4236), + [anon_sym_LF] = ACTIONS(4236), + [anon_sym_CR] = ACTIONS(4236), + [anon_sym_CR_LF] = ACTIONS(4236), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(4238), - [anon_sym_const] = ACTIONS(4238), - [anon_sym_LPAREN] = ACTIONS(4238), - [anon_sym___global] = ACTIONS(4238), - [anon_sym_type] = ACTIONS(4238), - [anon_sym_fn] = ACTIONS(4238), - [anon_sym_PLUS] = ACTIONS(4238), - [anon_sym_DASH] = ACTIONS(4238), - [anon_sym_STAR] = ACTIONS(4238), - [anon_sym_struct] = ACTIONS(4238), - [anon_sym_union] = ACTIONS(4238), - [anon_sym_pub] = ACTIONS(4238), - [anon_sym_mut] = ACTIONS(4238), - [anon_sym_enum] = ACTIONS(4238), - [anon_sym_interface] = ACTIONS(4238), - [anon_sym_QMARK] = ACTIONS(4238), - [anon_sym_BANG] = ACTIONS(4238), - [anon_sym_go] = ACTIONS(4238), - [anon_sym_spawn] = ACTIONS(4238), - [anon_sym_json_DOTdecode] = ACTIONS(4238), - [anon_sym_LBRACK2] = ACTIONS(4238), - [anon_sym_TILDE] = ACTIONS(4238), - [anon_sym_CARET] = ACTIONS(4238), - [anon_sym_AMP] = ACTIONS(4238), - [anon_sym_LT_DASH] = ACTIONS(4238), - [sym_none] = ACTIONS(4238), - [sym_true] = ACTIONS(4238), - [sym_false] = ACTIONS(4238), - [sym_nil] = ACTIONS(4238), - [anon_sym_if] = ACTIONS(4238), - [anon_sym_DOLLARif] = ACTIONS(4238), - [anon_sym_match] = ACTIONS(4238), - [anon_sym_select] = ACTIONS(4238), - [anon_sym_lock] = ACTIONS(4238), - [anon_sym_rlock] = ACTIONS(4238), - [anon_sym_unsafe] = ACTIONS(4238), - [anon_sym_sql] = ACTIONS(4238), - [sym_int_literal] = ACTIONS(4238), - [sym_float_literal] = ACTIONS(4238), - [sym_rune_literal] = ACTIONS(4238), - [sym_pseudo_compile_time_identifier] = ACTIONS(4238), - [anon_sym_shared] = ACTIONS(4238), - [anon_sym_map_LBRACK] = ACTIONS(4238), - [anon_sym_chan] = ACTIONS(4238), - [anon_sym_thread] = ACTIONS(4238), - [anon_sym_atomic] = ACTIONS(4238), - [anon_sym_assert] = ACTIONS(4238), - [anon_sym_defer] = ACTIONS(4238), - [anon_sym_goto] = ACTIONS(4238), - [anon_sym_break] = ACTIONS(4238), - [anon_sym_continue] = ACTIONS(4238), - [anon_sym_return] = ACTIONS(4238), - [anon_sym_DOLLARfor] = ACTIONS(4238), - [anon_sym_for] = ACTIONS(4238), - [anon_sym_POUND] = ACTIONS(4238), - [anon_sym_asm] = ACTIONS(4238), - [anon_sym_AT_LBRACK] = ACTIONS(4238), - [sym___double_quote] = ACTIONS(4238), - [sym___single_quote] = ACTIONS(4238), - [sym___c_double_quote] = ACTIONS(4238), - [sym___c_single_quote] = ACTIONS(4238), - [sym___r_double_quote] = ACTIONS(4238), - [sym___r_single_quote] = ACTIONS(4238), + [anon_sym_DOT] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4236), + [anon_sym_const] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(4236), + [anon_sym___global] = ACTIONS(4236), + [anon_sym_type] = ACTIONS(4236), + [anon_sym_fn] = ACTIONS(4236), + [anon_sym_PLUS] = ACTIONS(4236), + [anon_sym_DASH] = ACTIONS(4236), + [anon_sym_STAR] = ACTIONS(4236), + [anon_sym_struct] = ACTIONS(4236), + [anon_sym_union] = ACTIONS(4236), + [anon_sym_pub] = ACTIONS(4236), + [anon_sym_mut] = ACTIONS(4236), + [anon_sym_enum] = ACTIONS(4236), + [anon_sym_interface] = ACTIONS(4236), + [anon_sym_QMARK] = ACTIONS(4236), + [anon_sym_BANG] = ACTIONS(4236), + [anon_sym_go] = ACTIONS(4236), + [anon_sym_spawn] = ACTIONS(4236), + [anon_sym_json_DOTdecode] = ACTIONS(4236), + [anon_sym_LBRACK2] = ACTIONS(4236), + [anon_sym_TILDE] = ACTIONS(4236), + [anon_sym_CARET] = ACTIONS(4236), + [anon_sym_AMP] = ACTIONS(4236), + [anon_sym_LT_DASH] = ACTIONS(4236), + [sym_none] = ACTIONS(4236), + [sym_true] = ACTIONS(4236), + [sym_false] = ACTIONS(4236), + [sym_nil] = ACTIONS(4236), + [anon_sym_if] = ACTIONS(4236), + [anon_sym_DOLLARif] = ACTIONS(4236), + [anon_sym_match] = ACTIONS(4236), + [anon_sym_select] = ACTIONS(4236), + [anon_sym_lock] = ACTIONS(4236), + [anon_sym_rlock] = ACTIONS(4236), + [anon_sym_unsafe] = ACTIONS(4236), + [anon_sym_sql] = ACTIONS(4236), + [sym_int_literal] = ACTIONS(4236), + [sym_float_literal] = ACTIONS(4236), + [sym_rune_literal] = ACTIONS(4236), + [anon_sym_SQUOTE] = ACTIONS(4236), + [anon_sym_DQUOTE] = ACTIONS(4236), + [anon_sym_c_SQUOTE] = ACTIONS(4236), + [anon_sym_c_DQUOTE] = ACTIONS(4236), + [anon_sym_r_SQUOTE] = ACTIONS(4236), + [anon_sym_r_DQUOTE] = ACTIONS(4236), + [sym_pseudo_compile_time_identifier] = ACTIONS(4236), + [anon_sym_shared] = ACTIONS(4236), + [anon_sym_map_LBRACK] = ACTIONS(4236), + [anon_sym_chan] = ACTIONS(4236), + [anon_sym_thread] = ACTIONS(4236), + [anon_sym_atomic] = ACTIONS(4236), + [anon_sym_assert] = ACTIONS(4236), + [anon_sym_defer] = ACTIONS(4236), + [anon_sym_goto] = ACTIONS(4236), + [anon_sym_break] = ACTIONS(4236), + [anon_sym_continue] = ACTIONS(4236), + [anon_sym_return] = ACTIONS(4236), + [anon_sym_DOLLARfor] = ACTIONS(4236), + [anon_sym_for] = ACTIONS(4236), + [anon_sym_POUND] = ACTIONS(4236), + [anon_sym_asm] = ACTIONS(4236), + [anon_sym_AT_LBRACK] = ACTIONS(4236), }, [1501] = { [sym_line_comment] = STATE(1501), [sym_block_comment] = STATE(1501), - [ts_builtin_sym_end] = ACTIONS(4240), - [sym_identifier] = ACTIONS(4242), - [anon_sym_LF] = ACTIONS(4242), - [anon_sym_CR] = ACTIONS(4242), - [anon_sym_CR_LF] = ACTIONS(4242), + [ts_builtin_sym_end] = ACTIONS(1709), + [sym_identifier] = ACTIONS(1711), + [anon_sym_LF] = ACTIONS(1711), + [anon_sym_CR] = ACTIONS(1711), + [anon_sym_CR_LF] = ACTIONS(1711), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_const] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym___global] = ACTIONS(1711), + [anon_sym_type] = ACTIONS(1711), + [anon_sym_fn] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_struct] = ACTIONS(1711), + [anon_sym_union] = ACTIONS(1711), + [anon_sym_pub] = ACTIONS(1711), + [anon_sym_mut] = ACTIONS(1711), + [anon_sym_enum] = ACTIONS(1711), + [anon_sym_interface] = ACTIONS(1711), + [anon_sym_QMARK] = ACTIONS(1711), + [anon_sym_BANG] = ACTIONS(1711), + [anon_sym_go] = ACTIONS(1711), + [anon_sym_spawn] = ACTIONS(1711), + [anon_sym_json_DOTdecode] = ACTIONS(1711), + [anon_sym_LBRACK2] = ACTIONS(1711), + [anon_sym_TILDE] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1711), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_LT_DASH] = ACTIONS(1711), + [sym_none] = ACTIONS(1711), + [sym_true] = ACTIONS(1711), + [sym_false] = ACTIONS(1711), + [sym_nil] = ACTIONS(1711), + [anon_sym_if] = ACTIONS(1711), + [anon_sym_DOLLARif] = ACTIONS(1711), + [anon_sym_match] = ACTIONS(1711), + [anon_sym_select] = ACTIONS(1711), + [anon_sym_lock] = ACTIONS(1711), + [anon_sym_rlock] = ACTIONS(1711), + [anon_sym_unsafe] = ACTIONS(1711), + [anon_sym_sql] = ACTIONS(1711), + [sym_int_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), + [sym_rune_literal] = ACTIONS(1711), + [anon_sym_SQUOTE] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(1711), + [anon_sym_c_SQUOTE] = ACTIONS(1711), + [anon_sym_c_DQUOTE] = ACTIONS(1711), + [anon_sym_r_SQUOTE] = ACTIONS(1711), + [anon_sym_r_DQUOTE] = ACTIONS(1711), + [sym_pseudo_compile_time_identifier] = ACTIONS(1711), + [anon_sym_shared] = ACTIONS(1711), + [anon_sym_map_LBRACK] = ACTIONS(1711), + [anon_sym_chan] = ACTIONS(1711), + [anon_sym_thread] = ACTIONS(1711), + [anon_sym_atomic] = ACTIONS(1711), + [anon_sym_assert] = ACTIONS(1711), + [anon_sym_defer] = ACTIONS(1711), + [anon_sym_goto] = ACTIONS(1711), + [anon_sym_break] = ACTIONS(1711), + [anon_sym_continue] = ACTIONS(1711), + [anon_sym_return] = ACTIONS(1711), + [anon_sym_DOLLARfor] = ACTIONS(1711), + [anon_sym_for] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(1711), + [anon_sym_asm] = ACTIONS(1711), + [anon_sym_AT_LBRACK] = ACTIONS(1711), + }, + [1502] = { + [sym_line_comment] = STATE(1502), + [sym_block_comment] = STATE(1502), + [ts_builtin_sym_end] = ACTIONS(4238), + [sym_identifier] = ACTIONS(4240), + [anon_sym_LF] = ACTIONS(4240), + [anon_sym_CR] = ACTIONS(4240), + [anon_sym_CR_LF] = ACTIONS(4240), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_LBRACE] = ACTIONS(4240), + [anon_sym_const] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4240), + [anon_sym___global] = ACTIONS(4240), + [anon_sym_type] = ACTIONS(4240), + [anon_sym_fn] = ACTIONS(4240), + [anon_sym_PLUS] = ACTIONS(4240), + [anon_sym_DASH] = ACTIONS(4240), + [anon_sym_STAR] = ACTIONS(4240), + [anon_sym_struct] = ACTIONS(4240), + [anon_sym_union] = ACTIONS(4240), + [anon_sym_pub] = ACTIONS(4240), + [anon_sym_mut] = ACTIONS(4240), + [anon_sym_enum] = ACTIONS(4240), + [anon_sym_interface] = ACTIONS(4240), + [anon_sym_QMARK] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4240), + [anon_sym_go] = ACTIONS(4240), + [anon_sym_spawn] = ACTIONS(4240), + [anon_sym_json_DOTdecode] = ACTIONS(4240), + [anon_sym_LBRACK2] = ACTIONS(4240), + [anon_sym_TILDE] = ACTIONS(4240), + [anon_sym_CARET] = ACTIONS(4240), + [anon_sym_AMP] = ACTIONS(4240), + [anon_sym_LT_DASH] = ACTIONS(4240), + [sym_none] = ACTIONS(4240), + [sym_true] = ACTIONS(4240), + [sym_false] = ACTIONS(4240), + [sym_nil] = ACTIONS(4240), + [anon_sym_if] = ACTIONS(4240), + [anon_sym_DOLLARif] = ACTIONS(4240), + [anon_sym_match] = ACTIONS(4240), + [anon_sym_select] = ACTIONS(4240), + [anon_sym_lock] = ACTIONS(4240), + [anon_sym_rlock] = ACTIONS(4240), + [anon_sym_unsafe] = ACTIONS(4240), + [anon_sym_sql] = ACTIONS(4240), + [sym_int_literal] = ACTIONS(4240), + [sym_float_literal] = ACTIONS(4240), + [sym_rune_literal] = ACTIONS(4240), + [anon_sym_SQUOTE] = ACTIONS(4240), + [anon_sym_DQUOTE] = ACTIONS(4240), + [anon_sym_c_SQUOTE] = ACTIONS(4240), + [anon_sym_c_DQUOTE] = ACTIONS(4240), + [anon_sym_r_SQUOTE] = ACTIONS(4240), + [anon_sym_r_DQUOTE] = ACTIONS(4240), + [sym_pseudo_compile_time_identifier] = ACTIONS(4240), + [anon_sym_shared] = ACTIONS(4240), + [anon_sym_map_LBRACK] = ACTIONS(4240), + [anon_sym_chan] = ACTIONS(4240), + [anon_sym_thread] = ACTIONS(4240), + [anon_sym_atomic] = ACTIONS(4240), + [anon_sym_assert] = ACTIONS(4240), + [anon_sym_defer] = ACTIONS(4240), + [anon_sym_goto] = ACTIONS(4240), + [anon_sym_break] = ACTIONS(4240), + [anon_sym_continue] = ACTIONS(4240), + [anon_sym_return] = ACTIONS(4240), + [anon_sym_DOLLARfor] = ACTIONS(4240), + [anon_sym_for] = ACTIONS(4240), + [anon_sym_POUND] = ACTIONS(4240), + [anon_sym_asm] = ACTIONS(4240), + [anon_sym_AT_LBRACK] = ACTIONS(4240), + }, + [1503] = { + [sym_line_comment] = STATE(1503), + [sym_block_comment] = STATE(1503), + [sym_import_declaration] = STATE(1583), + [aux_sym_import_list_repeat1] = STATE(1503), + [ts_builtin_sym_end] = ACTIONS(4242), + [sym_identifier] = ACTIONS(4244), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), [anon_sym_LBRACE] = ACTIONS(4242), - [anon_sym_const] = ACTIONS(4242), + [anon_sym_const] = ACTIONS(4244), [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym___global] = ACTIONS(4242), - [anon_sym_type] = ACTIONS(4242), - [anon_sym_fn] = ACTIONS(4242), + [anon_sym___global] = ACTIONS(4244), + [anon_sym_type] = ACTIONS(4244), + [anon_sym_fn] = ACTIONS(4244), [anon_sym_PLUS] = ACTIONS(4242), [anon_sym_DASH] = ACTIONS(4242), [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_struct] = ACTIONS(4242), - [anon_sym_union] = ACTIONS(4242), - [anon_sym_pub] = ACTIONS(4242), - [anon_sym_mut] = ACTIONS(4242), - [anon_sym_enum] = ACTIONS(4242), - [anon_sym_interface] = ACTIONS(4242), + [anon_sym_struct] = ACTIONS(4244), + [anon_sym_union] = ACTIONS(4244), + [anon_sym_pub] = ACTIONS(4244), + [anon_sym_mut] = ACTIONS(4244), + [anon_sym_enum] = ACTIONS(4244), + [anon_sym_interface] = ACTIONS(4244), [anon_sym_QMARK] = ACTIONS(4242), [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_go] = ACTIONS(4242), - [anon_sym_spawn] = ACTIONS(4242), + [anon_sym_go] = ACTIONS(4244), + [anon_sym_spawn] = ACTIONS(4244), [anon_sym_json_DOTdecode] = ACTIONS(4242), [anon_sym_LBRACK2] = ACTIONS(4242), [anon_sym_TILDE] = ACTIONS(4242), [anon_sym_CARET] = ACTIONS(4242), [anon_sym_AMP] = ACTIONS(4242), [anon_sym_LT_DASH] = ACTIONS(4242), - [sym_none] = ACTIONS(4242), - [sym_true] = ACTIONS(4242), - [sym_false] = ACTIONS(4242), - [sym_nil] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_DOLLARif] = ACTIONS(4242), - [anon_sym_match] = ACTIONS(4242), - [anon_sym_select] = ACTIONS(4242), - [anon_sym_lock] = ACTIONS(4242), - [anon_sym_rlock] = ACTIONS(4242), - [anon_sym_unsafe] = ACTIONS(4242), - [anon_sym_sql] = ACTIONS(4242), - [sym_int_literal] = ACTIONS(4242), + [sym_none] = ACTIONS(4244), + [sym_true] = ACTIONS(4244), + [sym_false] = ACTIONS(4244), + [sym_nil] = ACTIONS(4244), + [anon_sym_if] = ACTIONS(4244), + [anon_sym_DOLLARif] = ACTIONS(4244), + [anon_sym_match] = ACTIONS(4244), + [anon_sym_select] = ACTIONS(4244), + [anon_sym_lock] = ACTIONS(4244), + [anon_sym_rlock] = ACTIONS(4244), + [anon_sym_unsafe] = ACTIONS(4244), + [anon_sym_sql] = ACTIONS(4244), + [sym_int_literal] = ACTIONS(4244), [sym_float_literal] = ACTIONS(4242), [sym_rune_literal] = ACTIONS(4242), - [sym_pseudo_compile_time_identifier] = ACTIONS(4242), - [anon_sym_shared] = ACTIONS(4242), + [anon_sym_SQUOTE] = ACTIONS(4242), + [anon_sym_DQUOTE] = ACTIONS(4242), + [anon_sym_c_SQUOTE] = ACTIONS(4242), + [anon_sym_c_DQUOTE] = ACTIONS(4242), + [anon_sym_r_SQUOTE] = ACTIONS(4242), + [anon_sym_r_DQUOTE] = ACTIONS(4242), + [sym_pseudo_compile_time_identifier] = ACTIONS(4244), + [anon_sym_shared] = ACTIONS(4244), [anon_sym_map_LBRACK] = ACTIONS(4242), - [anon_sym_chan] = ACTIONS(4242), - [anon_sym_thread] = ACTIONS(4242), - [anon_sym_atomic] = ACTIONS(4242), - [anon_sym_assert] = ACTIONS(4242), - [anon_sym_defer] = ACTIONS(4242), - [anon_sym_goto] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_DOLLARfor] = ACTIONS(4242), - [anon_sym_for] = ACTIONS(4242), + [anon_sym_chan] = ACTIONS(4244), + [anon_sym_thread] = ACTIONS(4244), + [anon_sym_atomic] = ACTIONS(4244), + [anon_sym_assert] = ACTIONS(4244), + [anon_sym_defer] = ACTIONS(4244), + [anon_sym_goto] = ACTIONS(4244), + [anon_sym_break] = ACTIONS(4244), + [anon_sym_continue] = ACTIONS(4244), + [anon_sym_return] = ACTIONS(4244), + [anon_sym_DOLLARfor] = ACTIONS(4244), + [anon_sym_for] = ACTIONS(4244), [anon_sym_POUND] = ACTIONS(4242), - [anon_sym_asm] = ACTIONS(4242), + [anon_sym_asm] = ACTIONS(4244), [anon_sym_AT_LBRACK] = ACTIONS(4242), - [sym___double_quote] = ACTIONS(4242), - [sym___single_quote] = ACTIONS(4242), - [sym___c_double_quote] = ACTIONS(4242), - [sym___c_single_quote] = ACTIONS(4242), - [sym___r_double_quote] = ACTIONS(4242), - [sym___r_single_quote] = ACTIONS(4242), - }, - [1502] = { - [sym_line_comment] = STATE(1502), - [sym_block_comment] = STATE(1502), - [ts_builtin_sym_end] = ACTIONS(4244), - [sym_identifier] = ACTIONS(4246), - [anon_sym_LF] = ACTIONS(4246), - [anon_sym_CR] = ACTIONS(4246), - [anon_sym_CR_LF] = ACTIONS(4246), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4246), - [anon_sym_const] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym___global] = ACTIONS(4246), - [anon_sym_type] = ACTIONS(4246), - [anon_sym_fn] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4246), - [anon_sym_DASH] = ACTIONS(4246), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_struct] = ACTIONS(4246), - [anon_sym_union] = ACTIONS(4246), - [anon_sym_pub] = ACTIONS(4246), - [anon_sym_mut] = ACTIONS(4246), - [anon_sym_enum] = ACTIONS(4246), - [anon_sym_interface] = ACTIONS(4246), - [anon_sym_QMARK] = ACTIONS(4246), - [anon_sym_BANG] = ACTIONS(4246), - [anon_sym_go] = ACTIONS(4246), - [anon_sym_spawn] = ACTIONS(4246), - [anon_sym_json_DOTdecode] = ACTIONS(4246), - [anon_sym_LBRACK2] = ACTIONS(4246), - [anon_sym_TILDE] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_AMP] = ACTIONS(4246), - [anon_sym_LT_DASH] = ACTIONS(4246), - [sym_none] = ACTIONS(4246), - [sym_true] = ACTIONS(4246), - [sym_false] = ACTIONS(4246), - [sym_nil] = ACTIONS(4246), - [anon_sym_if] = ACTIONS(4246), - [anon_sym_DOLLARif] = ACTIONS(4246), - [anon_sym_match] = ACTIONS(4246), - [anon_sym_select] = ACTIONS(4246), - [anon_sym_lock] = ACTIONS(4246), - [anon_sym_rlock] = ACTIONS(4246), - [anon_sym_unsafe] = ACTIONS(4246), - [anon_sym_sql] = ACTIONS(4246), - [sym_int_literal] = ACTIONS(4246), - [sym_float_literal] = ACTIONS(4246), - [sym_rune_literal] = ACTIONS(4246), - [sym_pseudo_compile_time_identifier] = ACTIONS(4246), - [anon_sym_shared] = ACTIONS(4246), - [anon_sym_map_LBRACK] = ACTIONS(4246), - [anon_sym_chan] = ACTIONS(4246), - [anon_sym_thread] = ACTIONS(4246), - [anon_sym_atomic] = ACTIONS(4246), - [anon_sym_assert] = ACTIONS(4246), - [anon_sym_defer] = ACTIONS(4246), - [anon_sym_goto] = ACTIONS(4246), - [anon_sym_break] = ACTIONS(4246), - [anon_sym_continue] = ACTIONS(4246), - [anon_sym_return] = ACTIONS(4246), - [anon_sym_DOLLARfor] = ACTIONS(4246), - [anon_sym_for] = ACTIONS(4246), - [anon_sym_POUND] = ACTIONS(4246), - [anon_sym_asm] = ACTIONS(4246), - [anon_sym_AT_LBRACK] = ACTIONS(4246), - [sym___double_quote] = ACTIONS(4246), - [sym___single_quote] = ACTIONS(4246), - [sym___c_double_quote] = ACTIONS(4246), - [sym___c_single_quote] = ACTIONS(4246), - [sym___r_double_quote] = ACTIONS(4246), - [sym___r_single_quote] = ACTIONS(4246), - }, - [1503] = { - [sym_line_comment] = STATE(1503), - [sym_block_comment] = STATE(1503), - [ts_builtin_sym_end] = ACTIONS(4248), - [sym_identifier] = ACTIONS(4250), - [anon_sym_LF] = ACTIONS(4250), - [anon_sym_CR] = ACTIONS(4250), - [anon_sym_CR_LF] = ACTIONS(4250), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4250), - [anon_sym_const] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym___global] = ACTIONS(4250), - [anon_sym_type] = ACTIONS(4250), - [anon_sym_fn] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4250), - [anon_sym_DASH] = ACTIONS(4250), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_struct] = ACTIONS(4250), - [anon_sym_union] = ACTIONS(4250), - [anon_sym_pub] = ACTIONS(4250), - [anon_sym_mut] = ACTIONS(4250), - [anon_sym_enum] = ACTIONS(4250), - [anon_sym_interface] = ACTIONS(4250), - [anon_sym_QMARK] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(4250), - [anon_sym_go] = ACTIONS(4250), - [anon_sym_spawn] = ACTIONS(4250), - [anon_sym_json_DOTdecode] = ACTIONS(4250), - [anon_sym_LBRACK2] = ACTIONS(4250), - [anon_sym_TILDE] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_AMP] = ACTIONS(4250), - [anon_sym_LT_DASH] = ACTIONS(4250), - [sym_none] = ACTIONS(4250), - [sym_true] = ACTIONS(4250), - [sym_false] = ACTIONS(4250), - [sym_nil] = ACTIONS(4250), - [anon_sym_if] = ACTIONS(4250), - [anon_sym_DOLLARif] = ACTIONS(4250), - [anon_sym_match] = ACTIONS(4250), - [anon_sym_select] = ACTIONS(4250), - [anon_sym_lock] = ACTIONS(4250), - [anon_sym_rlock] = ACTIONS(4250), - [anon_sym_unsafe] = ACTIONS(4250), - [anon_sym_sql] = ACTIONS(4250), - [sym_int_literal] = ACTIONS(4250), - [sym_float_literal] = ACTIONS(4250), - [sym_rune_literal] = ACTIONS(4250), - [sym_pseudo_compile_time_identifier] = ACTIONS(4250), - [anon_sym_shared] = ACTIONS(4250), - [anon_sym_map_LBRACK] = ACTIONS(4250), - [anon_sym_chan] = ACTIONS(4250), - [anon_sym_thread] = ACTIONS(4250), - [anon_sym_atomic] = ACTIONS(4250), - [anon_sym_assert] = ACTIONS(4250), - [anon_sym_defer] = ACTIONS(4250), - [anon_sym_goto] = ACTIONS(4250), - [anon_sym_break] = ACTIONS(4250), - [anon_sym_continue] = ACTIONS(4250), - [anon_sym_return] = ACTIONS(4250), - [anon_sym_DOLLARfor] = ACTIONS(4250), - [anon_sym_for] = ACTIONS(4250), - [anon_sym_POUND] = ACTIONS(4250), - [anon_sym_asm] = ACTIONS(4250), - [anon_sym_AT_LBRACK] = ACTIONS(4250), - [sym___double_quote] = ACTIONS(4250), - [sym___single_quote] = ACTIONS(4250), - [sym___c_double_quote] = ACTIONS(4250), - [sym___c_single_quote] = ACTIONS(4250), - [sym___r_double_quote] = ACTIONS(4250), - [sym___r_single_quote] = ACTIONS(4250), }, [1504] = { [sym_line_comment] = STATE(1504), [sym_block_comment] = STATE(1504), - [ts_builtin_sym_end] = ACTIONS(4252), - [sym_identifier] = ACTIONS(4254), - [anon_sym_LF] = ACTIONS(4254), - [anon_sym_CR] = ACTIONS(4254), - [anon_sym_CR_LF] = ACTIONS(4254), + [ts_builtin_sym_end] = ACTIONS(4249), + [sym_identifier] = ACTIONS(4251), + [anon_sym_LF] = ACTIONS(4251), + [anon_sym_CR] = ACTIONS(4251), + [anon_sym_CR_LF] = ACTIONS(4251), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_LBRACE] = ACTIONS(4254), - [anon_sym_const] = ACTIONS(4254), - [anon_sym_LPAREN] = ACTIONS(4254), - [anon_sym___global] = ACTIONS(4254), - [anon_sym_type] = ACTIONS(4254), - [anon_sym_fn] = ACTIONS(4254), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [anon_sym_struct] = ACTIONS(4254), - [anon_sym_union] = ACTIONS(4254), - [anon_sym_pub] = ACTIONS(4254), - [anon_sym_mut] = ACTIONS(4254), - [anon_sym_enum] = ACTIONS(4254), - [anon_sym_interface] = ACTIONS(4254), - [anon_sym_QMARK] = ACTIONS(4254), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_go] = ACTIONS(4254), - [anon_sym_spawn] = ACTIONS(4254), - [anon_sym_json_DOTdecode] = ACTIONS(4254), - [anon_sym_LBRACK2] = ACTIONS(4254), - [anon_sym_TILDE] = ACTIONS(4254), - [anon_sym_CARET] = ACTIONS(4254), - [anon_sym_AMP] = ACTIONS(4254), - [anon_sym_LT_DASH] = ACTIONS(4254), - [sym_none] = ACTIONS(4254), - [sym_true] = ACTIONS(4254), - [sym_false] = ACTIONS(4254), - [sym_nil] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_DOLLARif] = ACTIONS(4254), - [anon_sym_match] = ACTIONS(4254), - [anon_sym_select] = ACTIONS(4254), - [anon_sym_lock] = ACTIONS(4254), - [anon_sym_rlock] = ACTIONS(4254), - [anon_sym_unsafe] = ACTIONS(4254), - [anon_sym_sql] = ACTIONS(4254), - [sym_int_literal] = ACTIONS(4254), - [sym_float_literal] = ACTIONS(4254), - [sym_rune_literal] = ACTIONS(4254), - [sym_pseudo_compile_time_identifier] = ACTIONS(4254), - [anon_sym_shared] = ACTIONS(4254), - [anon_sym_map_LBRACK] = ACTIONS(4254), - [anon_sym_chan] = ACTIONS(4254), - [anon_sym_thread] = ACTIONS(4254), - [anon_sym_atomic] = ACTIONS(4254), - [anon_sym_assert] = ACTIONS(4254), - [anon_sym_defer] = ACTIONS(4254), - [anon_sym_goto] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_DOLLARfor] = ACTIONS(4254), - [anon_sym_for] = ACTIONS(4254), - [anon_sym_POUND] = ACTIONS(4254), - [anon_sym_asm] = ACTIONS(4254), - [anon_sym_AT_LBRACK] = ACTIONS(4254), - [sym___double_quote] = ACTIONS(4254), - [sym___single_quote] = ACTIONS(4254), - [sym___c_double_quote] = ACTIONS(4254), - [sym___c_single_quote] = ACTIONS(4254), - [sym___r_double_quote] = ACTIONS(4254), - [sym___r_single_quote] = ACTIONS(4254), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_LBRACE] = ACTIONS(4251), + [anon_sym_const] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [anon_sym___global] = ACTIONS(4251), + [anon_sym_type] = ACTIONS(4251), + [anon_sym_fn] = ACTIONS(4251), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_struct] = ACTIONS(4251), + [anon_sym_union] = ACTIONS(4251), + [anon_sym_pub] = ACTIONS(4251), + [anon_sym_mut] = ACTIONS(4251), + [anon_sym_enum] = ACTIONS(4251), + [anon_sym_interface] = ACTIONS(4251), + [anon_sym_QMARK] = ACTIONS(4251), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_go] = ACTIONS(4251), + [anon_sym_spawn] = ACTIONS(4251), + [anon_sym_json_DOTdecode] = ACTIONS(4251), + [anon_sym_LBRACK2] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_CARET] = ACTIONS(4251), + [anon_sym_AMP] = ACTIONS(4251), + [anon_sym_LT_DASH] = ACTIONS(4251), + [sym_none] = ACTIONS(4251), + [sym_true] = ACTIONS(4251), + [sym_false] = ACTIONS(4251), + [sym_nil] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_DOLLARif] = ACTIONS(4251), + [anon_sym_match] = ACTIONS(4251), + [anon_sym_select] = ACTIONS(4251), + [anon_sym_lock] = ACTIONS(4251), + [anon_sym_rlock] = ACTIONS(4251), + [anon_sym_unsafe] = ACTIONS(4251), + [anon_sym_sql] = ACTIONS(4251), + [sym_int_literal] = ACTIONS(4251), + [sym_float_literal] = ACTIONS(4251), + [sym_rune_literal] = ACTIONS(4251), + [anon_sym_SQUOTE] = ACTIONS(4251), + [anon_sym_DQUOTE] = ACTIONS(4251), + [anon_sym_c_SQUOTE] = ACTIONS(4251), + [anon_sym_c_DQUOTE] = ACTIONS(4251), + [anon_sym_r_SQUOTE] = ACTIONS(4251), + [anon_sym_r_DQUOTE] = ACTIONS(4251), + [sym_pseudo_compile_time_identifier] = ACTIONS(4251), + [anon_sym_shared] = ACTIONS(4251), + [anon_sym_map_LBRACK] = ACTIONS(4251), + [anon_sym_chan] = ACTIONS(4251), + [anon_sym_thread] = ACTIONS(4251), + [anon_sym_atomic] = ACTIONS(4251), + [anon_sym_assert] = ACTIONS(4251), + [anon_sym_defer] = ACTIONS(4251), + [anon_sym_goto] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_DOLLARfor] = ACTIONS(4251), + [anon_sym_for] = ACTIONS(4251), + [anon_sym_POUND] = ACTIONS(4251), + [anon_sym_asm] = ACTIONS(4251), + [anon_sym_AT_LBRACK] = ACTIONS(4251), }, [1505] = { [sym_line_comment] = STATE(1505), [sym_block_comment] = STATE(1505), - [ts_builtin_sym_end] = ACTIONS(4256), - [sym_identifier] = ACTIONS(4258), - [anon_sym_LF] = ACTIONS(4258), - [anon_sym_CR] = ACTIONS(4258), - [anon_sym_CR_LF] = ACTIONS(4258), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_LBRACE] = ACTIONS(4258), - [anon_sym_const] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym___global] = ACTIONS(4258), - [anon_sym_type] = ACTIONS(4258), - [anon_sym_fn] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [anon_sym_struct] = ACTIONS(4258), - [anon_sym_union] = ACTIONS(4258), - [anon_sym_pub] = ACTIONS(4258), - [anon_sym_mut] = ACTIONS(4258), - [anon_sym_enum] = ACTIONS(4258), - [anon_sym_interface] = ACTIONS(4258), - [anon_sym_QMARK] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_go] = ACTIONS(4258), - [anon_sym_spawn] = ACTIONS(4258), - [anon_sym_json_DOTdecode] = ACTIONS(4258), - [anon_sym_LBRACK2] = ACTIONS(4258), - [anon_sym_TILDE] = ACTIONS(4258), - [anon_sym_CARET] = ACTIONS(4258), - [anon_sym_AMP] = ACTIONS(4258), - [anon_sym_LT_DASH] = ACTIONS(4258), - [sym_none] = ACTIONS(4258), - [sym_true] = ACTIONS(4258), - [sym_false] = ACTIONS(4258), - [sym_nil] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_DOLLARif] = ACTIONS(4258), - [anon_sym_match] = ACTIONS(4258), - [anon_sym_select] = ACTIONS(4258), - [anon_sym_lock] = ACTIONS(4258), - [anon_sym_rlock] = ACTIONS(4258), - [anon_sym_unsafe] = ACTIONS(4258), - [anon_sym_sql] = ACTIONS(4258), - [sym_int_literal] = ACTIONS(4258), - [sym_float_literal] = ACTIONS(4258), - [sym_rune_literal] = ACTIONS(4258), - [sym_pseudo_compile_time_identifier] = ACTIONS(4258), - [anon_sym_shared] = ACTIONS(4258), - [anon_sym_map_LBRACK] = ACTIONS(4258), - [anon_sym_chan] = ACTIONS(4258), - [anon_sym_thread] = ACTIONS(4258), - [anon_sym_atomic] = ACTIONS(4258), - [anon_sym_assert] = ACTIONS(4258), - [anon_sym_defer] = ACTIONS(4258), - [anon_sym_goto] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_DOLLARfor] = ACTIONS(4258), - [anon_sym_for] = ACTIONS(4258), - [anon_sym_POUND] = ACTIONS(4258), - [anon_sym_asm] = ACTIONS(4258), - [anon_sym_AT_LBRACK] = ACTIONS(4258), - [sym___double_quote] = ACTIONS(4258), - [sym___single_quote] = ACTIONS(4258), - [sym___c_double_quote] = ACTIONS(4258), - [sym___c_single_quote] = ACTIONS(4258), - [sym___r_double_quote] = ACTIONS(4258), - [sym___r_single_quote] = ACTIONS(4258), + [sym_import_declaration] = STATE(1583), + [aux_sym_import_list_repeat1] = STATE(1503), + [ts_builtin_sym_end] = ACTIONS(4253), + [sym_identifier] = ACTIONS(4255), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(15), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4253), + [anon_sym_const] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4253), + [anon_sym___global] = ACTIONS(4255), + [anon_sym_type] = ACTIONS(4255), + [anon_sym_fn] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4253), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_STAR] = ACTIONS(4253), + [anon_sym_struct] = ACTIONS(4255), + [anon_sym_union] = ACTIONS(4255), + [anon_sym_pub] = ACTIONS(4255), + [anon_sym_mut] = ACTIONS(4255), + [anon_sym_enum] = ACTIONS(4255), + [anon_sym_interface] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4253), + [anon_sym_BANG] = ACTIONS(4253), + [anon_sym_go] = ACTIONS(4255), + [anon_sym_spawn] = ACTIONS(4255), + [anon_sym_json_DOTdecode] = ACTIONS(4253), + [anon_sym_LBRACK2] = ACTIONS(4253), + [anon_sym_TILDE] = ACTIONS(4253), + [anon_sym_CARET] = ACTIONS(4253), + [anon_sym_AMP] = ACTIONS(4253), + [anon_sym_LT_DASH] = ACTIONS(4253), + [sym_none] = ACTIONS(4255), + [sym_true] = ACTIONS(4255), + [sym_false] = ACTIONS(4255), + [sym_nil] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_DOLLARif] = ACTIONS(4255), + [anon_sym_match] = ACTIONS(4255), + [anon_sym_select] = ACTIONS(4255), + [anon_sym_lock] = ACTIONS(4255), + [anon_sym_rlock] = ACTIONS(4255), + [anon_sym_unsafe] = ACTIONS(4255), + [anon_sym_sql] = ACTIONS(4255), + [sym_int_literal] = ACTIONS(4255), + [sym_float_literal] = ACTIONS(4253), + [sym_rune_literal] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4253), + [anon_sym_DQUOTE] = ACTIONS(4253), + [anon_sym_c_SQUOTE] = ACTIONS(4253), + [anon_sym_c_DQUOTE] = ACTIONS(4253), + [anon_sym_r_SQUOTE] = ACTIONS(4253), + [anon_sym_r_DQUOTE] = ACTIONS(4253), + [sym_pseudo_compile_time_identifier] = ACTIONS(4255), + [anon_sym_shared] = ACTIONS(4255), + [anon_sym_map_LBRACK] = ACTIONS(4253), + [anon_sym_chan] = ACTIONS(4255), + [anon_sym_thread] = ACTIONS(4255), + [anon_sym_atomic] = ACTIONS(4255), + [anon_sym_assert] = ACTIONS(4255), + [anon_sym_defer] = ACTIONS(4255), + [anon_sym_goto] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_DOLLARfor] = ACTIONS(4255), + [anon_sym_for] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4253), + [anon_sym_asm] = ACTIONS(4255), + [anon_sym_AT_LBRACK] = ACTIONS(4253), }, [1506] = { [sym_line_comment] = STATE(1506), [sym_block_comment] = STATE(1506), - [ts_builtin_sym_end] = ACTIONS(4260), - [sym_identifier] = ACTIONS(4262), - [anon_sym_LF] = ACTIONS(4262), - [anon_sym_CR] = ACTIONS(4262), - [anon_sym_CR_LF] = ACTIONS(4262), + [ts_builtin_sym_end] = ACTIONS(4257), + [sym_identifier] = ACTIONS(4259), + [anon_sym_LF] = ACTIONS(4259), + [anon_sym_CR] = ACTIONS(4259), + [anon_sym_CR_LF] = ACTIONS(4259), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4262), - [anon_sym_const] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym___global] = ACTIONS(4262), - [anon_sym_type] = ACTIONS(4262), - [anon_sym_fn] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4262), - [anon_sym_DASH] = ACTIONS(4262), - [anon_sym_STAR] = ACTIONS(4262), - [anon_sym_struct] = ACTIONS(4262), - [anon_sym_union] = ACTIONS(4262), - [anon_sym_pub] = ACTIONS(4262), - [anon_sym_mut] = ACTIONS(4262), - [anon_sym_enum] = ACTIONS(4262), - [anon_sym_interface] = ACTIONS(4262), - [anon_sym_QMARK] = ACTIONS(4262), - [anon_sym_BANG] = ACTIONS(4262), - [anon_sym_go] = ACTIONS(4262), - [anon_sym_spawn] = ACTIONS(4262), - [anon_sym_json_DOTdecode] = ACTIONS(4262), - [anon_sym_LBRACK2] = ACTIONS(4262), - [anon_sym_TILDE] = ACTIONS(4262), - [anon_sym_CARET] = ACTIONS(4262), - [anon_sym_AMP] = ACTIONS(4262), - [anon_sym_LT_DASH] = ACTIONS(4262), - [sym_none] = ACTIONS(4262), - [sym_true] = ACTIONS(4262), - [sym_false] = ACTIONS(4262), - [sym_nil] = ACTIONS(4262), - [anon_sym_if] = ACTIONS(4262), - [anon_sym_DOLLARif] = ACTIONS(4262), - [anon_sym_match] = ACTIONS(4262), - [anon_sym_select] = ACTIONS(4262), - [anon_sym_lock] = ACTIONS(4262), - [anon_sym_rlock] = ACTIONS(4262), - [anon_sym_unsafe] = ACTIONS(4262), - [anon_sym_sql] = ACTIONS(4262), - [sym_int_literal] = ACTIONS(4262), - [sym_float_literal] = ACTIONS(4262), - [sym_rune_literal] = ACTIONS(4262), - [sym_pseudo_compile_time_identifier] = ACTIONS(4262), - [anon_sym_shared] = ACTIONS(4262), - [anon_sym_map_LBRACK] = ACTIONS(4262), - [anon_sym_chan] = ACTIONS(4262), - [anon_sym_thread] = ACTIONS(4262), - [anon_sym_atomic] = ACTIONS(4262), - [anon_sym_assert] = ACTIONS(4262), - [anon_sym_defer] = ACTIONS(4262), - [anon_sym_goto] = ACTIONS(4262), - [anon_sym_break] = ACTIONS(4262), - [anon_sym_continue] = ACTIONS(4262), - [anon_sym_return] = ACTIONS(4262), - [anon_sym_DOLLARfor] = ACTIONS(4262), - [anon_sym_for] = ACTIONS(4262), - [anon_sym_POUND] = ACTIONS(4262), - [anon_sym_asm] = ACTIONS(4262), - [anon_sym_AT_LBRACK] = ACTIONS(4262), - [sym___double_quote] = ACTIONS(4262), - [sym___single_quote] = ACTIONS(4262), - [sym___c_double_quote] = ACTIONS(4262), - [sym___c_single_quote] = ACTIONS(4262), - [sym___r_double_quote] = ACTIONS(4262), - [sym___r_single_quote] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_const] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4259), + [anon_sym___global] = ACTIONS(4259), + [anon_sym_type] = ACTIONS(4259), + [anon_sym_fn] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [anon_sym_struct] = ACTIONS(4259), + [anon_sym_union] = ACTIONS(4259), + [anon_sym_pub] = ACTIONS(4259), + [anon_sym_mut] = ACTIONS(4259), + [anon_sym_enum] = ACTIONS(4259), + [anon_sym_interface] = ACTIONS(4259), + [anon_sym_QMARK] = ACTIONS(4259), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_go] = ACTIONS(4259), + [anon_sym_spawn] = ACTIONS(4259), + [anon_sym_json_DOTdecode] = ACTIONS(4259), + [anon_sym_LBRACK2] = ACTIONS(4259), + [anon_sym_TILDE] = ACTIONS(4259), + [anon_sym_CARET] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4259), + [anon_sym_LT_DASH] = ACTIONS(4259), + [sym_none] = ACTIONS(4259), + [sym_true] = ACTIONS(4259), + [sym_false] = ACTIONS(4259), + [sym_nil] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_DOLLARif] = ACTIONS(4259), + [anon_sym_match] = ACTIONS(4259), + [anon_sym_select] = ACTIONS(4259), + [anon_sym_lock] = ACTIONS(4259), + [anon_sym_rlock] = ACTIONS(4259), + [anon_sym_unsafe] = ACTIONS(4259), + [anon_sym_sql] = ACTIONS(4259), + [sym_int_literal] = ACTIONS(4259), + [sym_float_literal] = ACTIONS(4259), + [sym_rune_literal] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4259), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_c_SQUOTE] = ACTIONS(4259), + [anon_sym_c_DQUOTE] = ACTIONS(4259), + [anon_sym_r_SQUOTE] = ACTIONS(4259), + [anon_sym_r_DQUOTE] = ACTIONS(4259), + [sym_pseudo_compile_time_identifier] = ACTIONS(4259), + [anon_sym_shared] = ACTIONS(4259), + [anon_sym_map_LBRACK] = ACTIONS(4259), + [anon_sym_chan] = ACTIONS(4259), + [anon_sym_thread] = ACTIONS(4259), + [anon_sym_atomic] = ACTIONS(4259), + [anon_sym_assert] = ACTIONS(4259), + [anon_sym_defer] = ACTIONS(4259), + [anon_sym_goto] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_DOLLARfor] = ACTIONS(4259), + [anon_sym_for] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(4259), + [anon_sym_asm] = ACTIONS(4259), + [anon_sym_AT_LBRACK] = ACTIONS(4259), }, [1507] = { [sym_line_comment] = STATE(1507), [sym_block_comment] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(4264), - [sym_identifier] = ACTIONS(4266), - [anon_sym_LF] = ACTIONS(4266), - [anon_sym_CR] = ACTIONS(4266), - [anon_sym_CR_LF] = ACTIONS(4266), + [ts_builtin_sym_end] = ACTIONS(4261), + [sym_identifier] = ACTIONS(4263), + [anon_sym_LF] = ACTIONS(4263), + [anon_sym_CR] = ACTIONS(4263), + [anon_sym_CR_LF] = ACTIONS(4263), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(4266), - [anon_sym_const] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym___global] = ACTIONS(4266), - [anon_sym_type] = ACTIONS(4266), - [anon_sym_fn] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [anon_sym_struct] = ACTIONS(4266), - [anon_sym_union] = ACTIONS(4266), - [anon_sym_pub] = ACTIONS(4266), - [anon_sym_mut] = ACTIONS(4266), - [anon_sym_enum] = ACTIONS(4266), - [anon_sym_interface] = ACTIONS(4266), - [anon_sym_QMARK] = ACTIONS(4266), - [anon_sym_BANG] = ACTIONS(4266), - [anon_sym_go] = ACTIONS(4266), - [anon_sym_spawn] = ACTIONS(4266), - [anon_sym_json_DOTdecode] = ACTIONS(4266), - [anon_sym_LBRACK2] = ACTIONS(4266), - [anon_sym_TILDE] = ACTIONS(4266), - [anon_sym_CARET] = ACTIONS(4266), - [anon_sym_AMP] = ACTIONS(4266), - [anon_sym_LT_DASH] = ACTIONS(4266), - [sym_none] = ACTIONS(4266), - [sym_true] = ACTIONS(4266), - [sym_false] = ACTIONS(4266), - [sym_nil] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_DOLLARif] = ACTIONS(4266), - [anon_sym_match] = ACTIONS(4266), - [anon_sym_select] = ACTIONS(4266), - [anon_sym_lock] = ACTIONS(4266), - [anon_sym_rlock] = ACTIONS(4266), - [anon_sym_unsafe] = ACTIONS(4266), - [anon_sym_sql] = ACTIONS(4266), - [sym_int_literal] = ACTIONS(4266), - [sym_float_literal] = ACTIONS(4266), - [sym_rune_literal] = ACTIONS(4266), - [sym_pseudo_compile_time_identifier] = ACTIONS(4266), - [anon_sym_shared] = ACTIONS(4266), - [anon_sym_map_LBRACK] = ACTIONS(4266), - [anon_sym_chan] = ACTIONS(4266), - [anon_sym_thread] = ACTIONS(4266), - [anon_sym_atomic] = ACTIONS(4266), - [anon_sym_assert] = ACTIONS(4266), - [anon_sym_defer] = ACTIONS(4266), - [anon_sym_goto] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_DOLLARfor] = ACTIONS(4266), - [anon_sym_for] = ACTIONS(4266), - [anon_sym_POUND] = ACTIONS(4266), - [anon_sym_asm] = ACTIONS(4266), - [anon_sym_AT_LBRACK] = ACTIONS(4266), - [sym___double_quote] = ACTIONS(4266), - [sym___single_quote] = ACTIONS(4266), - [sym___c_double_quote] = ACTIONS(4266), - [sym___c_single_quote] = ACTIONS(4266), - [sym___r_double_quote] = ACTIONS(4266), - [sym___r_single_quote] = ACTIONS(4266), + [anon_sym_DOT] = ACTIONS(4263), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_const] = ACTIONS(4263), + [anon_sym_LPAREN] = ACTIONS(4263), + [anon_sym___global] = ACTIONS(4263), + [anon_sym_type] = ACTIONS(4263), + [anon_sym_fn] = ACTIONS(4263), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(4263), + [anon_sym_struct] = ACTIONS(4263), + [anon_sym_union] = ACTIONS(4263), + [anon_sym_pub] = ACTIONS(4263), + [anon_sym_mut] = ACTIONS(4263), + [anon_sym_enum] = ACTIONS(4263), + [anon_sym_interface] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_BANG] = ACTIONS(4263), + [anon_sym_go] = ACTIONS(4263), + [anon_sym_spawn] = ACTIONS(4263), + [anon_sym_json_DOTdecode] = ACTIONS(4263), + [anon_sym_LBRACK2] = ACTIONS(4263), + [anon_sym_TILDE] = ACTIONS(4263), + [anon_sym_CARET] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4263), + [anon_sym_LT_DASH] = ACTIONS(4263), + [sym_none] = ACTIONS(4263), + [sym_true] = ACTIONS(4263), + [sym_false] = ACTIONS(4263), + [sym_nil] = ACTIONS(4263), + [anon_sym_if] = ACTIONS(4263), + [anon_sym_DOLLARif] = ACTIONS(4263), + [anon_sym_match] = ACTIONS(4263), + [anon_sym_select] = ACTIONS(4263), + [anon_sym_lock] = ACTIONS(4263), + [anon_sym_rlock] = ACTIONS(4263), + [anon_sym_unsafe] = ACTIONS(4263), + [anon_sym_sql] = ACTIONS(4263), + [sym_int_literal] = ACTIONS(4263), + [sym_float_literal] = ACTIONS(4263), + [sym_rune_literal] = ACTIONS(4263), + [anon_sym_SQUOTE] = ACTIONS(4263), + [anon_sym_DQUOTE] = ACTIONS(4263), + [anon_sym_c_SQUOTE] = ACTIONS(4263), + [anon_sym_c_DQUOTE] = ACTIONS(4263), + [anon_sym_r_SQUOTE] = ACTIONS(4263), + [anon_sym_r_DQUOTE] = ACTIONS(4263), + [sym_pseudo_compile_time_identifier] = ACTIONS(4263), + [anon_sym_shared] = ACTIONS(4263), + [anon_sym_map_LBRACK] = ACTIONS(4263), + [anon_sym_chan] = ACTIONS(4263), + [anon_sym_thread] = ACTIONS(4263), + [anon_sym_atomic] = ACTIONS(4263), + [anon_sym_assert] = ACTIONS(4263), + [anon_sym_defer] = ACTIONS(4263), + [anon_sym_goto] = ACTIONS(4263), + [anon_sym_break] = ACTIONS(4263), + [anon_sym_continue] = ACTIONS(4263), + [anon_sym_return] = ACTIONS(4263), + [anon_sym_DOLLARfor] = ACTIONS(4263), + [anon_sym_for] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(4263), + [anon_sym_asm] = ACTIONS(4263), + [anon_sym_AT_LBRACK] = ACTIONS(4263), }, [1508] = { [sym_line_comment] = STATE(1508), [sym_block_comment] = STATE(1508), - [ts_builtin_sym_end] = ACTIONS(4268), - [sym_identifier] = ACTIONS(4270), - [anon_sym_LF] = ACTIONS(4270), - [anon_sym_CR] = ACTIONS(4270), - [anon_sym_CR_LF] = ACTIONS(4270), + [ts_builtin_sym_end] = ACTIONS(4265), + [sym_identifier] = ACTIONS(4267), + [anon_sym_LF] = ACTIONS(4267), + [anon_sym_CR] = ACTIONS(4267), + [anon_sym_CR_LF] = ACTIONS(4267), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4270), - [anon_sym_const] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym___global] = ACTIONS(4270), - [anon_sym_type] = ACTIONS(4270), - [anon_sym_fn] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4270), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_union] = ACTIONS(4270), - [anon_sym_pub] = ACTIONS(4270), - [anon_sym_mut] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4270), - [anon_sym_interface] = ACTIONS(4270), - [anon_sym_QMARK] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4270), - [anon_sym_go] = ACTIONS(4270), - [anon_sym_spawn] = ACTIONS(4270), - [anon_sym_json_DOTdecode] = ACTIONS(4270), - [anon_sym_LBRACK2] = ACTIONS(4270), - [anon_sym_TILDE] = ACTIONS(4270), - [anon_sym_CARET] = ACTIONS(4270), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_LT_DASH] = ACTIONS(4270), - [sym_none] = ACTIONS(4270), - [sym_true] = ACTIONS(4270), - [sym_false] = ACTIONS(4270), - [sym_nil] = ACTIONS(4270), - [anon_sym_if] = ACTIONS(4270), - [anon_sym_DOLLARif] = ACTIONS(4270), - [anon_sym_match] = ACTIONS(4270), - [anon_sym_select] = ACTIONS(4270), - [anon_sym_lock] = ACTIONS(4270), - [anon_sym_rlock] = ACTIONS(4270), - [anon_sym_unsafe] = ACTIONS(4270), - [anon_sym_sql] = ACTIONS(4270), - [sym_int_literal] = ACTIONS(4270), - [sym_float_literal] = ACTIONS(4270), - [sym_rune_literal] = ACTIONS(4270), - [sym_pseudo_compile_time_identifier] = ACTIONS(4270), - [anon_sym_shared] = ACTIONS(4270), - [anon_sym_map_LBRACK] = ACTIONS(4270), - [anon_sym_chan] = ACTIONS(4270), - [anon_sym_thread] = ACTIONS(4270), - [anon_sym_atomic] = ACTIONS(4270), - [anon_sym_assert] = ACTIONS(4270), - [anon_sym_defer] = ACTIONS(4270), - [anon_sym_goto] = ACTIONS(4270), - [anon_sym_break] = ACTIONS(4270), - [anon_sym_continue] = ACTIONS(4270), - [anon_sym_return] = ACTIONS(4270), - [anon_sym_DOLLARfor] = ACTIONS(4270), - [anon_sym_for] = ACTIONS(4270), - [anon_sym_POUND] = ACTIONS(4270), - [anon_sym_asm] = ACTIONS(4270), - [anon_sym_AT_LBRACK] = ACTIONS(4270), - [sym___double_quote] = ACTIONS(4270), - [sym___single_quote] = ACTIONS(4270), - [sym___c_double_quote] = ACTIONS(4270), - [sym___c_single_quote] = ACTIONS(4270), - [sym___r_double_quote] = ACTIONS(4270), - [sym___r_single_quote] = ACTIONS(4270), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_const] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym___global] = ACTIONS(4267), + [anon_sym_type] = ACTIONS(4267), + [anon_sym_fn] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [anon_sym_struct] = ACTIONS(4267), + [anon_sym_union] = ACTIONS(4267), + [anon_sym_pub] = ACTIONS(4267), + [anon_sym_mut] = ACTIONS(4267), + [anon_sym_enum] = ACTIONS(4267), + [anon_sym_interface] = ACTIONS(4267), + [anon_sym_QMARK] = ACTIONS(4267), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_go] = ACTIONS(4267), + [anon_sym_spawn] = ACTIONS(4267), + [anon_sym_json_DOTdecode] = ACTIONS(4267), + [anon_sym_LBRACK2] = ACTIONS(4267), + [anon_sym_TILDE] = ACTIONS(4267), + [anon_sym_CARET] = ACTIONS(4267), + [anon_sym_AMP] = ACTIONS(4267), + [anon_sym_LT_DASH] = ACTIONS(4267), + [sym_none] = ACTIONS(4267), + [sym_true] = ACTIONS(4267), + [sym_false] = ACTIONS(4267), + [sym_nil] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_DOLLARif] = ACTIONS(4267), + [anon_sym_match] = ACTIONS(4267), + [anon_sym_select] = ACTIONS(4267), + [anon_sym_lock] = ACTIONS(4267), + [anon_sym_rlock] = ACTIONS(4267), + [anon_sym_unsafe] = ACTIONS(4267), + [anon_sym_sql] = ACTIONS(4267), + [sym_int_literal] = ACTIONS(4267), + [sym_float_literal] = ACTIONS(4267), + [sym_rune_literal] = ACTIONS(4267), + [anon_sym_SQUOTE] = ACTIONS(4267), + [anon_sym_DQUOTE] = ACTIONS(4267), + [anon_sym_c_SQUOTE] = ACTIONS(4267), + [anon_sym_c_DQUOTE] = ACTIONS(4267), + [anon_sym_r_SQUOTE] = ACTIONS(4267), + [anon_sym_r_DQUOTE] = ACTIONS(4267), + [sym_pseudo_compile_time_identifier] = ACTIONS(4267), + [anon_sym_shared] = ACTIONS(4267), + [anon_sym_map_LBRACK] = ACTIONS(4267), + [anon_sym_chan] = ACTIONS(4267), + [anon_sym_thread] = ACTIONS(4267), + [anon_sym_atomic] = ACTIONS(4267), + [anon_sym_assert] = ACTIONS(4267), + [anon_sym_defer] = ACTIONS(4267), + [anon_sym_goto] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_DOLLARfor] = ACTIONS(4267), + [anon_sym_for] = ACTIONS(4267), + [anon_sym_POUND] = ACTIONS(4267), + [anon_sym_asm] = ACTIONS(4267), + [anon_sym_AT_LBRACK] = ACTIONS(4267), }, [1509] = { [sym_line_comment] = STATE(1509), [sym_block_comment] = STATE(1509), - [ts_builtin_sym_end] = ACTIONS(4272), - [sym_identifier] = ACTIONS(4274), - [anon_sym_LF] = ACTIONS(4274), - [anon_sym_CR] = ACTIONS(4274), - [anon_sym_CR_LF] = ACTIONS(4274), + [ts_builtin_sym_end] = ACTIONS(4269), + [sym_identifier] = ACTIONS(4271), + [anon_sym_LF] = ACTIONS(4271), + [anon_sym_CR] = ACTIONS(4271), + [anon_sym_CR_LF] = ACTIONS(4271), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4274), - [anon_sym_LBRACE] = ACTIONS(4274), - [anon_sym_const] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym___global] = ACTIONS(4274), - [anon_sym_type] = ACTIONS(4274), - [anon_sym_fn] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4274), - [anon_sym_DASH] = ACTIONS(4274), - [anon_sym_STAR] = ACTIONS(4274), - [anon_sym_struct] = ACTIONS(4274), - [anon_sym_union] = ACTIONS(4274), - [anon_sym_pub] = ACTIONS(4274), - [anon_sym_mut] = ACTIONS(4274), - [anon_sym_enum] = ACTIONS(4274), - [anon_sym_interface] = ACTIONS(4274), - [anon_sym_QMARK] = ACTIONS(4274), - [anon_sym_BANG] = ACTIONS(4274), - [anon_sym_go] = ACTIONS(4274), - [anon_sym_spawn] = ACTIONS(4274), - [anon_sym_json_DOTdecode] = ACTIONS(4274), - [anon_sym_LBRACK2] = ACTIONS(4274), - [anon_sym_TILDE] = ACTIONS(4274), - [anon_sym_CARET] = ACTIONS(4274), - [anon_sym_AMP] = ACTIONS(4274), - [anon_sym_LT_DASH] = ACTIONS(4274), - [sym_none] = ACTIONS(4274), - [sym_true] = ACTIONS(4274), - [sym_false] = ACTIONS(4274), - [sym_nil] = ACTIONS(4274), - [anon_sym_if] = ACTIONS(4274), - [anon_sym_DOLLARif] = ACTIONS(4274), - [anon_sym_match] = ACTIONS(4274), - [anon_sym_select] = ACTIONS(4274), - [anon_sym_lock] = ACTIONS(4274), - [anon_sym_rlock] = ACTIONS(4274), - [anon_sym_unsafe] = ACTIONS(4274), - [anon_sym_sql] = ACTIONS(4274), - [sym_int_literal] = ACTIONS(4274), - [sym_float_literal] = ACTIONS(4274), - [sym_rune_literal] = ACTIONS(4274), - [sym_pseudo_compile_time_identifier] = ACTIONS(4274), - [anon_sym_shared] = ACTIONS(4274), - [anon_sym_map_LBRACK] = ACTIONS(4274), - [anon_sym_chan] = ACTIONS(4274), - [anon_sym_thread] = ACTIONS(4274), - [anon_sym_atomic] = ACTIONS(4274), - [anon_sym_assert] = ACTIONS(4274), - [anon_sym_defer] = ACTIONS(4274), - [anon_sym_goto] = ACTIONS(4274), - [anon_sym_break] = ACTIONS(4274), - [anon_sym_continue] = ACTIONS(4274), - [anon_sym_return] = ACTIONS(4274), - [anon_sym_DOLLARfor] = ACTIONS(4274), - [anon_sym_for] = ACTIONS(4274), - [anon_sym_POUND] = ACTIONS(4274), - [anon_sym_asm] = ACTIONS(4274), - [anon_sym_AT_LBRACK] = ACTIONS(4274), - [sym___double_quote] = ACTIONS(4274), - [sym___single_quote] = ACTIONS(4274), - [sym___c_double_quote] = ACTIONS(4274), - [sym___c_single_quote] = ACTIONS(4274), - [sym___r_double_quote] = ACTIONS(4274), - [sym___r_single_quote] = ACTIONS(4274), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym___global] = ACTIONS(4271), + [anon_sym_type] = ACTIONS(4271), + [anon_sym_fn] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4271), + [anon_sym_struct] = ACTIONS(4271), + [anon_sym_union] = ACTIONS(4271), + [anon_sym_pub] = ACTIONS(4271), + [anon_sym_mut] = ACTIONS(4271), + [anon_sym_enum] = ACTIONS(4271), + [anon_sym_interface] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_go] = ACTIONS(4271), + [anon_sym_spawn] = ACTIONS(4271), + [anon_sym_json_DOTdecode] = ACTIONS(4271), + [anon_sym_LBRACK2] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_CARET] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4271), + [anon_sym_LT_DASH] = ACTIONS(4271), + [sym_none] = ACTIONS(4271), + [sym_true] = ACTIONS(4271), + [sym_false] = ACTIONS(4271), + [sym_nil] = ACTIONS(4271), + [anon_sym_if] = ACTIONS(4271), + [anon_sym_DOLLARif] = ACTIONS(4271), + [anon_sym_match] = ACTIONS(4271), + [anon_sym_select] = ACTIONS(4271), + [anon_sym_lock] = ACTIONS(4271), + [anon_sym_rlock] = ACTIONS(4271), + [anon_sym_unsafe] = ACTIONS(4271), + [anon_sym_sql] = ACTIONS(4271), + [sym_int_literal] = ACTIONS(4271), + [sym_float_literal] = ACTIONS(4271), + [sym_rune_literal] = ACTIONS(4271), + [anon_sym_SQUOTE] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(4271), + [anon_sym_c_SQUOTE] = ACTIONS(4271), + [anon_sym_c_DQUOTE] = ACTIONS(4271), + [anon_sym_r_SQUOTE] = ACTIONS(4271), + [anon_sym_r_DQUOTE] = ACTIONS(4271), + [sym_pseudo_compile_time_identifier] = ACTIONS(4271), + [anon_sym_shared] = ACTIONS(4271), + [anon_sym_map_LBRACK] = ACTIONS(4271), + [anon_sym_chan] = ACTIONS(4271), + [anon_sym_thread] = ACTIONS(4271), + [anon_sym_atomic] = ACTIONS(4271), + [anon_sym_assert] = ACTIONS(4271), + [anon_sym_defer] = ACTIONS(4271), + [anon_sym_goto] = ACTIONS(4271), + [anon_sym_break] = ACTIONS(4271), + [anon_sym_continue] = ACTIONS(4271), + [anon_sym_return] = ACTIONS(4271), + [anon_sym_DOLLARfor] = ACTIONS(4271), + [anon_sym_for] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_asm] = ACTIONS(4271), + [anon_sym_AT_LBRACK] = ACTIONS(4271), }, [1510] = { [sym_line_comment] = STATE(1510), [sym_block_comment] = STATE(1510), - [ts_builtin_sym_end] = ACTIONS(4276), - [sym_identifier] = ACTIONS(4278), - [anon_sym_LF] = ACTIONS(4278), - [anon_sym_CR] = ACTIONS(4278), - [anon_sym_CR_LF] = ACTIONS(4278), + [ts_builtin_sym_end] = ACTIONS(4273), + [sym_identifier] = ACTIONS(4275), + [anon_sym_LF] = ACTIONS(4275), + [anon_sym_CR] = ACTIONS(4275), + [anon_sym_CR_LF] = ACTIONS(4275), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4278), - [anon_sym_LBRACE] = ACTIONS(4278), - [anon_sym_const] = ACTIONS(4278), - [anon_sym_LPAREN] = ACTIONS(4278), - [anon_sym___global] = ACTIONS(4278), - [anon_sym_type] = ACTIONS(4278), - [anon_sym_fn] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(4278), - [anon_sym_struct] = ACTIONS(4278), - [anon_sym_union] = ACTIONS(4278), - [anon_sym_pub] = ACTIONS(4278), - [anon_sym_mut] = ACTIONS(4278), - [anon_sym_enum] = ACTIONS(4278), - [anon_sym_interface] = ACTIONS(4278), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_BANG] = ACTIONS(4278), - [anon_sym_go] = ACTIONS(4278), - [anon_sym_spawn] = ACTIONS(4278), - [anon_sym_json_DOTdecode] = ACTIONS(4278), - [anon_sym_LBRACK2] = ACTIONS(4278), - [anon_sym_TILDE] = ACTIONS(4278), - [anon_sym_CARET] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(4278), - [anon_sym_LT_DASH] = ACTIONS(4278), - [sym_none] = ACTIONS(4278), - [sym_true] = ACTIONS(4278), - [sym_false] = ACTIONS(4278), - [sym_nil] = ACTIONS(4278), - [anon_sym_if] = ACTIONS(4278), - [anon_sym_DOLLARif] = ACTIONS(4278), - [anon_sym_match] = ACTIONS(4278), - [anon_sym_select] = ACTIONS(4278), - [anon_sym_lock] = ACTIONS(4278), - [anon_sym_rlock] = ACTIONS(4278), - [anon_sym_unsafe] = ACTIONS(4278), - [anon_sym_sql] = ACTIONS(4278), - [sym_int_literal] = ACTIONS(4278), - [sym_float_literal] = ACTIONS(4278), - [sym_rune_literal] = ACTIONS(4278), - [sym_pseudo_compile_time_identifier] = ACTIONS(4278), - [anon_sym_shared] = ACTIONS(4278), - [anon_sym_map_LBRACK] = ACTIONS(4278), - [anon_sym_chan] = ACTIONS(4278), - [anon_sym_thread] = ACTIONS(4278), - [anon_sym_atomic] = ACTIONS(4278), - [anon_sym_assert] = ACTIONS(4278), - [anon_sym_defer] = ACTIONS(4278), - [anon_sym_goto] = ACTIONS(4278), - [anon_sym_break] = ACTIONS(4278), - [anon_sym_continue] = ACTIONS(4278), - [anon_sym_return] = ACTIONS(4278), - [anon_sym_DOLLARfor] = ACTIONS(4278), - [anon_sym_for] = ACTIONS(4278), - [anon_sym_POUND] = ACTIONS(4278), - [anon_sym_asm] = ACTIONS(4278), - [anon_sym_AT_LBRACK] = ACTIONS(4278), - [sym___double_quote] = ACTIONS(4278), - [sym___single_quote] = ACTIONS(4278), - [sym___c_double_quote] = ACTIONS(4278), - [sym___c_single_quote] = ACTIONS(4278), - [sym___r_double_quote] = ACTIONS(4278), - [sym___r_single_quote] = ACTIONS(4278), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_const] = ACTIONS(4275), + [anon_sym_LPAREN] = ACTIONS(4275), + [anon_sym___global] = ACTIONS(4275), + [anon_sym_type] = ACTIONS(4275), + [anon_sym_fn] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [anon_sym_struct] = ACTIONS(4275), + [anon_sym_union] = ACTIONS(4275), + [anon_sym_pub] = ACTIONS(4275), + [anon_sym_mut] = ACTIONS(4275), + [anon_sym_enum] = ACTIONS(4275), + [anon_sym_interface] = ACTIONS(4275), + [anon_sym_QMARK] = ACTIONS(4275), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_go] = ACTIONS(4275), + [anon_sym_spawn] = ACTIONS(4275), + [anon_sym_json_DOTdecode] = ACTIONS(4275), + [anon_sym_LBRACK2] = ACTIONS(4275), + [anon_sym_TILDE] = ACTIONS(4275), + [anon_sym_CARET] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4275), + [anon_sym_LT_DASH] = ACTIONS(4275), + [sym_none] = ACTIONS(4275), + [sym_true] = ACTIONS(4275), + [sym_false] = ACTIONS(4275), + [sym_nil] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_DOLLARif] = ACTIONS(4275), + [anon_sym_match] = ACTIONS(4275), + [anon_sym_select] = ACTIONS(4275), + [anon_sym_lock] = ACTIONS(4275), + [anon_sym_rlock] = ACTIONS(4275), + [anon_sym_unsafe] = ACTIONS(4275), + [anon_sym_sql] = ACTIONS(4275), + [sym_int_literal] = ACTIONS(4275), + [sym_float_literal] = ACTIONS(4275), + [sym_rune_literal] = ACTIONS(4275), + [anon_sym_SQUOTE] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(4275), + [anon_sym_c_SQUOTE] = ACTIONS(4275), + [anon_sym_c_DQUOTE] = ACTIONS(4275), + [anon_sym_r_SQUOTE] = ACTIONS(4275), + [anon_sym_r_DQUOTE] = ACTIONS(4275), + [sym_pseudo_compile_time_identifier] = ACTIONS(4275), + [anon_sym_shared] = ACTIONS(4275), + [anon_sym_map_LBRACK] = ACTIONS(4275), + [anon_sym_chan] = ACTIONS(4275), + [anon_sym_thread] = ACTIONS(4275), + [anon_sym_atomic] = ACTIONS(4275), + [anon_sym_assert] = ACTIONS(4275), + [anon_sym_defer] = ACTIONS(4275), + [anon_sym_goto] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_DOLLARfor] = ACTIONS(4275), + [anon_sym_for] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(4275), + [anon_sym_asm] = ACTIONS(4275), + [anon_sym_AT_LBRACK] = ACTIONS(4275), }, [1511] = { [sym_line_comment] = STATE(1511), [sym_block_comment] = STATE(1511), - [ts_builtin_sym_end] = ACTIONS(4280), - [sym_identifier] = ACTIONS(4282), - [anon_sym_LF] = ACTIONS(4282), - [anon_sym_CR] = ACTIONS(4282), - [anon_sym_CR_LF] = ACTIONS(4282), + [ts_builtin_sym_end] = ACTIONS(4277), + [sym_identifier] = ACTIONS(4279), + [anon_sym_LF] = ACTIONS(4279), + [anon_sym_CR] = ACTIONS(4279), + [anon_sym_CR_LF] = ACTIONS(4279), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4282), - [anon_sym_LBRACE] = ACTIONS(4282), - [anon_sym_const] = ACTIONS(4282), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym___global] = ACTIONS(4282), - [anon_sym_type] = ACTIONS(4282), - [anon_sym_fn] = ACTIONS(4282), - [anon_sym_PLUS] = ACTIONS(4282), - [anon_sym_DASH] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(4282), - [anon_sym_struct] = ACTIONS(4282), - [anon_sym_union] = ACTIONS(4282), - [anon_sym_pub] = ACTIONS(4282), - [anon_sym_mut] = ACTIONS(4282), - [anon_sym_enum] = ACTIONS(4282), - [anon_sym_interface] = ACTIONS(4282), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_BANG] = ACTIONS(4282), - [anon_sym_go] = ACTIONS(4282), - [anon_sym_spawn] = ACTIONS(4282), - [anon_sym_json_DOTdecode] = ACTIONS(4282), - [anon_sym_LBRACK2] = ACTIONS(4282), - [anon_sym_TILDE] = ACTIONS(4282), - [anon_sym_CARET] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(4282), - [anon_sym_LT_DASH] = ACTIONS(4282), - [sym_none] = ACTIONS(4282), - [sym_true] = ACTIONS(4282), - [sym_false] = ACTIONS(4282), - [sym_nil] = ACTIONS(4282), - [anon_sym_if] = ACTIONS(4282), - [anon_sym_DOLLARif] = ACTIONS(4282), - [anon_sym_match] = ACTIONS(4282), - [anon_sym_select] = ACTIONS(4282), - [anon_sym_lock] = ACTIONS(4282), - [anon_sym_rlock] = ACTIONS(4282), - [anon_sym_unsafe] = ACTIONS(4282), - [anon_sym_sql] = ACTIONS(4282), - [sym_int_literal] = ACTIONS(4282), - [sym_float_literal] = ACTIONS(4282), - [sym_rune_literal] = ACTIONS(4282), - [sym_pseudo_compile_time_identifier] = ACTIONS(4282), - [anon_sym_shared] = ACTIONS(4282), - [anon_sym_map_LBRACK] = ACTIONS(4282), - [anon_sym_chan] = ACTIONS(4282), - [anon_sym_thread] = ACTIONS(4282), - [anon_sym_atomic] = ACTIONS(4282), - [anon_sym_assert] = ACTIONS(4282), - [anon_sym_defer] = ACTIONS(4282), - [anon_sym_goto] = ACTIONS(4282), - [anon_sym_break] = ACTIONS(4282), - [anon_sym_continue] = ACTIONS(4282), - [anon_sym_return] = ACTIONS(4282), - [anon_sym_DOLLARfor] = ACTIONS(4282), - [anon_sym_for] = ACTIONS(4282), - [anon_sym_POUND] = ACTIONS(4282), - [anon_sym_asm] = ACTIONS(4282), - [anon_sym_AT_LBRACK] = ACTIONS(4282), - [sym___double_quote] = ACTIONS(4282), - [sym___single_quote] = ACTIONS(4282), - [sym___c_double_quote] = ACTIONS(4282), - [sym___c_single_quote] = ACTIONS(4282), - [sym___r_double_quote] = ACTIONS(4282), - [sym___r_single_quote] = ACTIONS(4282), + [anon_sym_DOT] = ACTIONS(4279), + [anon_sym_LBRACE] = ACTIONS(4279), + [anon_sym_const] = ACTIONS(4279), + [anon_sym_LPAREN] = ACTIONS(4279), + [anon_sym___global] = ACTIONS(4279), + [anon_sym_type] = ACTIONS(4279), + [anon_sym_fn] = ACTIONS(4279), + [anon_sym_PLUS] = ACTIONS(4279), + [anon_sym_DASH] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4279), + [anon_sym_struct] = ACTIONS(4279), + [anon_sym_union] = ACTIONS(4279), + [anon_sym_pub] = ACTIONS(4279), + [anon_sym_mut] = ACTIONS(4279), + [anon_sym_enum] = ACTIONS(4279), + [anon_sym_interface] = ACTIONS(4279), + [anon_sym_QMARK] = ACTIONS(4279), + [anon_sym_BANG] = ACTIONS(4279), + [anon_sym_go] = ACTIONS(4279), + [anon_sym_spawn] = ACTIONS(4279), + [anon_sym_json_DOTdecode] = ACTIONS(4279), + [anon_sym_LBRACK2] = ACTIONS(4279), + [anon_sym_TILDE] = ACTIONS(4279), + [anon_sym_CARET] = ACTIONS(4279), + [anon_sym_AMP] = ACTIONS(4279), + [anon_sym_LT_DASH] = ACTIONS(4279), + [sym_none] = ACTIONS(4279), + [sym_true] = ACTIONS(4279), + [sym_false] = ACTIONS(4279), + [sym_nil] = ACTIONS(4279), + [anon_sym_if] = ACTIONS(4279), + [anon_sym_DOLLARif] = ACTIONS(4279), + [anon_sym_match] = ACTIONS(4279), + [anon_sym_select] = ACTIONS(4279), + [anon_sym_lock] = ACTIONS(4279), + [anon_sym_rlock] = ACTIONS(4279), + [anon_sym_unsafe] = ACTIONS(4279), + [anon_sym_sql] = ACTIONS(4279), + [sym_int_literal] = ACTIONS(4279), + [sym_float_literal] = ACTIONS(4279), + [sym_rune_literal] = ACTIONS(4279), + [anon_sym_SQUOTE] = ACTIONS(4279), + [anon_sym_DQUOTE] = ACTIONS(4279), + [anon_sym_c_SQUOTE] = ACTIONS(4279), + [anon_sym_c_DQUOTE] = ACTIONS(4279), + [anon_sym_r_SQUOTE] = ACTIONS(4279), + [anon_sym_r_DQUOTE] = ACTIONS(4279), + [sym_pseudo_compile_time_identifier] = ACTIONS(4279), + [anon_sym_shared] = ACTIONS(4279), + [anon_sym_map_LBRACK] = ACTIONS(4279), + [anon_sym_chan] = ACTIONS(4279), + [anon_sym_thread] = ACTIONS(4279), + [anon_sym_atomic] = ACTIONS(4279), + [anon_sym_assert] = ACTIONS(4279), + [anon_sym_defer] = ACTIONS(4279), + [anon_sym_goto] = ACTIONS(4279), + [anon_sym_break] = ACTIONS(4279), + [anon_sym_continue] = ACTIONS(4279), + [anon_sym_return] = ACTIONS(4279), + [anon_sym_DOLLARfor] = ACTIONS(4279), + [anon_sym_for] = ACTIONS(4279), + [anon_sym_POUND] = ACTIONS(4279), + [anon_sym_asm] = ACTIONS(4279), + [anon_sym_AT_LBRACK] = ACTIONS(4279), }, [1512] = { [sym_line_comment] = STATE(1512), [sym_block_comment] = STATE(1512), - [ts_builtin_sym_end] = ACTIONS(4284), - [sym_identifier] = ACTIONS(4286), - [anon_sym_LF] = ACTIONS(4286), - [anon_sym_CR] = ACTIONS(4286), - [anon_sym_CR_LF] = ACTIONS(4286), + [ts_builtin_sym_end] = ACTIONS(4281), + [sym_identifier] = ACTIONS(4283), + [anon_sym_LF] = ACTIONS(4283), + [anon_sym_CR] = ACTIONS(4283), + [anon_sym_CR_LF] = ACTIONS(4283), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4286), - [anon_sym_LBRACE] = ACTIONS(4286), - [anon_sym_const] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4286), - [anon_sym___global] = ACTIONS(4286), - [anon_sym_type] = ACTIONS(4286), - [anon_sym_fn] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_struct] = ACTIONS(4286), - [anon_sym_union] = ACTIONS(4286), - [anon_sym_pub] = ACTIONS(4286), - [anon_sym_mut] = ACTIONS(4286), - [anon_sym_enum] = ACTIONS(4286), - [anon_sym_interface] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4286), - [anon_sym_BANG] = ACTIONS(4286), - [anon_sym_go] = ACTIONS(4286), - [anon_sym_spawn] = ACTIONS(4286), - [anon_sym_json_DOTdecode] = ACTIONS(4286), - [anon_sym_LBRACK2] = ACTIONS(4286), - [anon_sym_TILDE] = ACTIONS(4286), - [anon_sym_CARET] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_LT_DASH] = ACTIONS(4286), - [sym_none] = ACTIONS(4286), - [sym_true] = ACTIONS(4286), - [sym_false] = ACTIONS(4286), - [sym_nil] = ACTIONS(4286), - [anon_sym_if] = ACTIONS(4286), - [anon_sym_DOLLARif] = ACTIONS(4286), - [anon_sym_match] = ACTIONS(4286), - [anon_sym_select] = ACTIONS(4286), - [anon_sym_lock] = ACTIONS(4286), - [anon_sym_rlock] = ACTIONS(4286), - [anon_sym_unsafe] = ACTIONS(4286), - [anon_sym_sql] = ACTIONS(4286), - [sym_int_literal] = ACTIONS(4286), - [sym_float_literal] = ACTIONS(4286), - [sym_rune_literal] = ACTIONS(4286), - [sym_pseudo_compile_time_identifier] = ACTIONS(4286), - [anon_sym_shared] = ACTIONS(4286), - [anon_sym_map_LBRACK] = ACTIONS(4286), - [anon_sym_chan] = ACTIONS(4286), - [anon_sym_thread] = ACTIONS(4286), - [anon_sym_atomic] = ACTIONS(4286), - [anon_sym_assert] = ACTIONS(4286), - [anon_sym_defer] = ACTIONS(4286), - [anon_sym_goto] = ACTIONS(4286), - [anon_sym_break] = ACTIONS(4286), - [anon_sym_continue] = ACTIONS(4286), - [anon_sym_return] = ACTIONS(4286), - [anon_sym_DOLLARfor] = ACTIONS(4286), - [anon_sym_for] = ACTIONS(4286), - [anon_sym_POUND] = ACTIONS(4286), - [anon_sym_asm] = ACTIONS(4286), - [anon_sym_AT_LBRACK] = ACTIONS(4286), - [sym___double_quote] = ACTIONS(4286), - [sym___single_quote] = ACTIONS(4286), - [sym___c_double_quote] = ACTIONS(4286), - [sym___c_single_quote] = ACTIONS(4286), - [sym___r_double_quote] = ACTIONS(4286), - [sym___r_single_quote] = ACTIONS(4286), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4283), + [anon_sym_const] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym___global] = ACTIONS(4283), + [anon_sym_type] = ACTIONS(4283), + [anon_sym_fn] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_struct] = ACTIONS(4283), + [anon_sym_union] = ACTIONS(4283), + [anon_sym_pub] = ACTIONS(4283), + [anon_sym_mut] = ACTIONS(4283), + [anon_sym_enum] = ACTIONS(4283), + [anon_sym_interface] = ACTIONS(4283), + [anon_sym_QMARK] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_go] = ACTIONS(4283), + [anon_sym_spawn] = ACTIONS(4283), + [anon_sym_json_DOTdecode] = ACTIONS(4283), + [anon_sym_LBRACK2] = ACTIONS(4283), + [anon_sym_TILDE] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym_AMP] = ACTIONS(4283), + [anon_sym_LT_DASH] = ACTIONS(4283), + [sym_none] = ACTIONS(4283), + [sym_true] = ACTIONS(4283), + [sym_false] = ACTIONS(4283), + [sym_nil] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4283), + [anon_sym_DOLLARif] = ACTIONS(4283), + [anon_sym_match] = ACTIONS(4283), + [anon_sym_select] = ACTIONS(4283), + [anon_sym_lock] = ACTIONS(4283), + [anon_sym_rlock] = ACTIONS(4283), + [anon_sym_unsafe] = ACTIONS(4283), + [anon_sym_sql] = ACTIONS(4283), + [sym_int_literal] = ACTIONS(4283), + [sym_float_literal] = ACTIONS(4283), + [sym_rune_literal] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_DQUOTE] = ACTIONS(4283), + [anon_sym_c_SQUOTE] = ACTIONS(4283), + [anon_sym_c_DQUOTE] = ACTIONS(4283), + [anon_sym_r_SQUOTE] = ACTIONS(4283), + [anon_sym_r_DQUOTE] = ACTIONS(4283), + [sym_pseudo_compile_time_identifier] = ACTIONS(4283), + [anon_sym_shared] = ACTIONS(4283), + [anon_sym_map_LBRACK] = ACTIONS(4283), + [anon_sym_chan] = ACTIONS(4283), + [anon_sym_thread] = ACTIONS(4283), + [anon_sym_atomic] = ACTIONS(4283), + [anon_sym_assert] = ACTIONS(4283), + [anon_sym_defer] = ACTIONS(4283), + [anon_sym_goto] = ACTIONS(4283), + [anon_sym_break] = ACTIONS(4283), + [anon_sym_continue] = ACTIONS(4283), + [anon_sym_return] = ACTIONS(4283), + [anon_sym_DOLLARfor] = ACTIONS(4283), + [anon_sym_for] = ACTIONS(4283), + [anon_sym_POUND] = ACTIONS(4283), + [anon_sym_asm] = ACTIONS(4283), + [anon_sym_AT_LBRACK] = ACTIONS(4283), }, [1513] = { [sym_line_comment] = STATE(1513), [sym_block_comment] = STATE(1513), - [ts_builtin_sym_end] = ACTIONS(4288), - [sym_identifier] = ACTIONS(4290), - [anon_sym_LF] = ACTIONS(4290), - [anon_sym_CR] = ACTIONS(4290), - [anon_sym_CR_LF] = ACTIONS(4290), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4290), - [anon_sym_LBRACE] = ACTIONS(4290), - [anon_sym_const] = ACTIONS(4290), - [anon_sym_LPAREN] = ACTIONS(4290), - [anon_sym___global] = ACTIONS(4290), - [anon_sym_type] = ACTIONS(4290), - [anon_sym_fn] = ACTIONS(4290), - [anon_sym_PLUS] = ACTIONS(4290), - [anon_sym_DASH] = ACTIONS(4290), - [anon_sym_STAR] = ACTIONS(4290), - [anon_sym_struct] = ACTIONS(4290), - [anon_sym_union] = ACTIONS(4290), - [anon_sym_pub] = ACTIONS(4290), - [anon_sym_mut] = ACTIONS(4290), - [anon_sym_enum] = ACTIONS(4290), - [anon_sym_interface] = ACTIONS(4290), - [anon_sym_QMARK] = ACTIONS(4290), - [anon_sym_BANG] = ACTIONS(4290), - [anon_sym_go] = ACTIONS(4290), - [anon_sym_spawn] = ACTIONS(4290), - [anon_sym_json_DOTdecode] = ACTIONS(4290), - [anon_sym_LBRACK2] = ACTIONS(4290), - [anon_sym_TILDE] = ACTIONS(4290), - [anon_sym_CARET] = ACTIONS(4290), - [anon_sym_AMP] = ACTIONS(4290), - [anon_sym_LT_DASH] = ACTIONS(4290), - [sym_none] = ACTIONS(4290), - [sym_true] = ACTIONS(4290), - [sym_false] = ACTIONS(4290), - [sym_nil] = ACTIONS(4290), - [anon_sym_if] = ACTIONS(4290), - [anon_sym_DOLLARif] = ACTIONS(4290), - [anon_sym_match] = ACTIONS(4290), - [anon_sym_select] = ACTIONS(4290), - [anon_sym_lock] = ACTIONS(4290), - [anon_sym_rlock] = ACTIONS(4290), - [anon_sym_unsafe] = ACTIONS(4290), - [anon_sym_sql] = ACTIONS(4290), - [sym_int_literal] = ACTIONS(4290), - [sym_float_literal] = ACTIONS(4290), - [sym_rune_literal] = ACTIONS(4290), - [sym_pseudo_compile_time_identifier] = ACTIONS(4290), - [anon_sym_shared] = ACTIONS(4290), - [anon_sym_map_LBRACK] = ACTIONS(4290), - [anon_sym_chan] = ACTIONS(4290), - [anon_sym_thread] = ACTIONS(4290), - [anon_sym_atomic] = ACTIONS(4290), - [anon_sym_assert] = ACTIONS(4290), - [anon_sym_defer] = ACTIONS(4290), - [anon_sym_goto] = ACTIONS(4290), - [anon_sym_break] = ACTIONS(4290), - [anon_sym_continue] = ACTIONS(4290), - [anon_sym_return] = ACTIONS(4290), - [anon_sym_DOLLARfor] = ACTIONS(4290), - [anon_sym_for] = ACTIONS(4290), - [anon_sym_POUND] = ACTIONS(4290), - [anon_sym_asm] = ACTIONS(4290), - [anon_sym_AT_LBRACK] = ACTIONS(4290), - [sym___double_quote] = ACTIONS(4290), - [sym___single_quote] = ACTIONS(4290), - [sym___c_double_quote] = ACTIONS(4290), - [sym___c_single_quote] = ACTIONS(4290), - [sym___r_double_quote] = ACTIONS(4290), - [sym___r_single_quote] = ACTIONS(4290), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2386), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_RPAREN] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_RBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_COLON] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4285), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_GT_GT_GT] = ACTIONS(603), + [anon_sym_AMP_CARET] = ACTIONS(603), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_or] = ACTIONS(607), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_is] = ACTIONS(607), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(607), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(603), }, [1514] = { [sym_line_comment] = STATE(1514), [sym_block_comment] = STATE(1514), - [ts_builtin_sym_end] = ACTIONS(4292), - [sym_identifier] = ACTIONS(4294), - [anon_sym_LF] = ACTIONS(4294), - [anon_sym_CR] = ACTIONS(4294), - [anon_sym_CR_LF] = ACTIONS(4294), + [ts_builtin_sym_end] = ACTIONS(4287), + [sym_identifier] = ACTIONS(4289), + [anon_sym_LF] = ACTIONS(4289), + [anon_sym_CR] = ACTIONS(4289), + [anon_sym_CR_LF] = ACTIONS(4289), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4294), - [anon_sym_const] = ACTIONS(4294), - [anon_sym_LPAREN] = ACTIONS(4294), - [anon_sym___global] = ACTIONS(4294), - [anon_sym_type] = ACTIONS(4294), - [anon_sym_fn] = ACTIONS(4294), - [anon_sym_PLUS] = ACTIONS(4294), - [anon_sym_DASH] = ACTIONS(4294), - [anon_sym_STAR] = ACTIONS(4294), - [anon_sym_struct] = ACTIONS(4294), - [anon_sym_union] = ACTIONS(4294), - [anon_sym_pub] = ACTIONS(4294), - [anon_sym_mut] = ACTIONS(4294), - [anon_sym_enum] = ACTIONS(4294), - [anon_sym_interface] = ACTIONS(4294), - [anon_sym_QMARK] = ACTIONS(4294), - [anon_sym_BANG] = ACTIONS(4294), - [anon_sym_go] = ACTIONS(4294), - [anon_sym_spawn] = ACTIONS(4294), - [anon_sym_json_DOTdecode] = ACTIONS(4294), - [anon_sym_LBRACK2] = ACTIONS(4294), - [anon_sym_TILDE] = ACTIONS(4294), - [anon_sym_CARET] = ACTIONS(4294), - [anon_sym_AMP] = ACTIONS(4294), - [anon_sym_LT_DASH] = ACTIONS(4294), - [sym_none] = ACTIONS(4294), - [sym_true] = ACTIONS(4294), - [sym_false] = ACTIONS(4294), - [sym_nil] = ACTIONS(4294), - [anon_sym_if] = ACTIONS(4294), - [anon_sym_DOLLARif] = ACTIONS(4294), - [anon_sym_match] = ACTIONS(4294), - [anon_sym_select] = ACTIONS(4294), - [anon_sym_lock] = ACTIONS(4294), - [anon_sym_rlock] = ACTIONS(4294), - [anon_sym_unsafe] = ACTIONS(4294), - [anon_sym_sql] = ACTIONS(4294), - [sym_int_literal] = ACTIONS(4294), - [sym_float_literal] = ACTIONS(4294), - [sym_rune_literal] = ACTIONS(4294), - [sym_pseudo_compile_time_identifier] = ACTIONS(4294), - [anon_sym_shared] = ACTIONS(4294), - [anon_sym_map_LBRACK] = ACTIONS(4294), - [anon_sym_chan] = ACTIONS(4294), - [anon_sym_thread] = ACTIONS(4294), - [anon_sym_atomic] = ACTIONS(4294), - [anon_sym_assert] = ACTIONS(4294), - [anon_sym_defer] = ACTIONS(4294), - [anon_sym_goto] = ACTIONS(4294), - [anon_sym_break] = ACTIONS(4294), - [anon_sym_continue] = ACTIONS(4294), - [anon_sym_return] = ACTIONS(4294), - [anon_sym_DOLLARfor] = ACTIONS(4294), - [anon_sym_for] = ACTIONS(4294), - [anon_sym_POUND] = ACTIONS(4294), - [anon_sym_asm] = ACTIONS(4294), - [anon_sym_AT_LBRACK] = ACTIONS(4294), - [sym___double_quote] = ACTIONS(4294), - [sym___single_quote] = ACTIONS(4294), - [sym___c_double_quote] = ACTIONS(4294), - [sym___c_single_quote] = ACTIONS(4294), - [sym___r_double_quote] = ACTIONS(4294), - [sym___r_single_quote] = ACTIONS(4294), + [anon_sym_DOT] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4289), + [anon_sym_const] = ACTIONS(4289), + [anon_sym_LPAREN] = ACTIONS(4289), + [anon_sym___global] = ACTIONS(4289), + [anon_sym_type] = ACTIONS(4289), + [anon_sym_fn] = ACTIONS(4289), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4289), + [anon_sym_struct] = ACTIONS(4289), + [anon_sym_union] = ACTIONS(4289), + [anon_sym_pub] = ACTIONS(4289), + [anon_sym_mut] = ACTIONS(4289), + [anon_sym_enum] = ACTIONS(4289), + [anon_sym_interface] = ACTIONS(4289), + [anon_sym_QMARK] = ACTIONS(4289), + [anon_sym_BANG] = ACTIONS(4289), + [anon_sym_go] = ACTIONS(4289), + [anon_sym_spawn] = ACTIONS(4289), + [anon_sym_json_DOTdecode] = ACTIONS(4289), + [anon_sym_LBRACK2] = ACTIONS(4289), + [anon_sym_TILDE] = ACTIONS(4289), + [anon_sym_CARET] = ACTIONS(4289), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_LT_DASH] = ACTIONS(4289), + [sym_none] = ACTIONS(4289), + [sym_true] = ACTIONS(4289), + [sym_false] = ACTIONS(4289), + [sym_nil] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_DOLLARif] = ACTIONS(4289), + [anon_sym_match] = ACTIONS(4289), + [anon_sym_select] = ACTIONS(4289), + [anon_sym_lock] = ACTIONS(4289), + [anon_sym_rlock] = ACTIONS(4289), + [anon_sym_unsafe] = ACTIONS(4289), + [anon_sym_sql] = ACTIONS(4289), + [sym_int_literal] = ACTIONS(4289), + [sym_float_literal] = ACTIONS(4289), + [sym_rune_literal] = ACTIONS(4289), + [anon_sym_SQUOTE] = ACTIONS(4289), + [anon_sym_DQUOTE] = ACTIONS(4289), + [anon_sym_c_SQUOTE] = ACTIONS(4289), + [anon_sym_c_DQUOTE] = ACTIONS(4289), + [anon_sym_r_SQUOTE] = ACTIONS(4289), + [anon_sym_r_DQUOTE] = ACTIONS(4289), + [sym_pseudo_compile_time_identifier] = ACTIONS(4289), + [anon_sym_shared] = ACTIONS(4289), + [anon_sym_map_LBRACK] = ACTIONS(4289), + [anon_sym_chan] = ACTIONS(4289), + [anon_sym_thread] = ACTIONS(4289), + [anon_sym_atomic] = ACTIONS(4289), + [anon_sym_assert] = ACTIONS(4289), + [anon_sym_defer] = ACTIONS(4289), + [anon_sym_goto] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_DOLLARfor] = ACTIONS(4289), + [anon_sym_for] = ACTIONS(4289), + [anon_sym_POUND] = ACTIONS(4289), + [anon_sym_asm] = ACTIONS(4289), + [anon_sym_AT_LBRACK] = ACTIONS(4289), }, [1515] = { [sym_line_comment] = STATE(1515), [sym_block_comment] = STATE(1515), - [ts_builtin_sym_end] = ACTIONS(1811), - [sym_identifier] = ACTIONS(1813), - [anon_sym_LF] = ACTIONS(1813), - [anon_sym_CR] = ACTIONS(1813), - [anon_sym_CR_LF] = ACTIONS(1813), + [ts_builtin_sym_end] = ACTIONS(4291), + [sym_identifier] = ACTIONS(4293), + [anon_sym_LF] = ACTIONS(4293), + [anon_sym_CR] = ACTIONS(4293), + [anon_sym_CR_LF] = ACTIONS(4293), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(1813), - [anon_sym___global] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1813), - [anon_sym_fn] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_union] = ACTIONS(1813), - [anon_sym_pub] = ACTIONS(1813), - [anon_sym_mut] = ACTIONS(1813), - [anon_sym_enum] = ACTIONS(1813), - [anon_sym_interface] = ACTIONS(1813), - [anon_sym_QMARK] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_go] = ACTIONS(1813), - [anon_sym_spawn] = ACTIONS(1813), - [anon_sym_json_DOTdecode] = ACTIONS(1813), - [anon_sym_LBRACK2] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_LT_DASH] = ACTIONS(1813), - [sym_none] = ACTIONS(1813), - [sym_true] = ACTIONS(1813), - [sym_false] = ACTIONS(1813), - [sym_nil] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_DOLLARif] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1813), - [anon_sym_rlock] = ACTIONS(1813), - [anon_sym_unsafe] = ACTIONS(1813), - [anon_sym_sql] = ACTIONS(1813), - [sym_int_literal] = ACTIONS(1813), - [sym_float_literal] = ACTIONS(1813), - [sym_rune_literal] = ACTIONS(1813), - [sym_pseudo_compile_time_identifier] = ACTIONS(1813), - [anon_sym_shared] = ACTIONS(1813), - [anon_sym_map_LBRACK] = ACTIONS(1813), - [anon_sym_chan] = ACTIONS(1813), - [anon_sym_thread] = ACTIONS(1813), - [anon_sym_atomic] = ACTIONS(1813), - [anon_sym_assert] = ACTIONS(1813), - [anon_sym_defer] = ACTIONS(1813), - [anon_sym_goto] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_DOLLARfor] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_POUND] = ACTIONS(1813), - [anon_sym_asm] = ACTIONS(1813), - [anon_sym_AT_LBRACK] = ACTIONS(1813), - [sym___double_quote] = ACTIONS(1813), - [sym___single_quote] = ACTIONS(1813), - [sym___c_double_quote] = ACTIONS(1813), - [sym___c_single_quote] = ACTIONS(1813), - [sym___r_double_quote] = ACTIONS(1813), - [sym___r_single_quote] = ACTIONS(1813), + [anon_sym_DOT] = ACTIONS(4293), + [anon_sym_LBRACE] = ACTIONS(4293), + [anon_sym_const] = ACTIONS(4293), + [anon_sym_LPAREN] = ACTIONS(4293), + [anon_sym___global] = ACTIONS(4293), + [anon_sym_type] = ACTIONS(4293), + [anon_sym_fn] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4293), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_STAR] = ACTIONS(4293), + [anon_sym_struct] = ACTIONS(4293), + [anon_sym_union] = ACTIONS(4293), + [anon_sym_pub] = ACTIONS(4293), + [anon_sym_mut] = ACTIONS(4293), + [anon_sym_enum] = ACTIONS(4293), + [anon_sym_interface] = ACTIONS(4293), + [anon_sym_QMARK] = ACTIONS(4293), + [anon_sym_BANG] = ACTIONS(4293), + [anon_sym_go] = ACTIONS(4293), + [anon_sym_spawn] = ACTIONS(4293), + [anon_sym_json_DOTdecode] = ACTIONS(4293), + [anon_sym_LBRACK2] = ACTIONS(4293), + [anon_sym_TILDE] = ACTIONS(4293), + [anon_sym_CARET] = ACTIONS(4293), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_LT_DASH] = ACTIONS(4293), + [sym_none] = ACTIONS(4293), + [sym_true] = ACTIONS(4293), + [sym_false] = ACTIONS(4293), + [sym_nil] = ACTIONS(4293), + [anon_sym_if] = ACTIONS(4293), + [anon_sym_DOLLARif] = ACTIONS(4293), + [anon_sym_match] = ACTIONS(4293), + [anon_sym_select] = ACTIONS(4293), + [anon_sym_lock] = ACTIONS(4293), + [anon_sym_rlock] = ACTIONS(4293), + [anon_sym_unsafe] = ACTIONS(4293), + [anon_sym_sql] = ACTIONS(4293), + [sym_int_literal] = ACTIONS(4293), + [sym_float_literal] = ACTIONS(4293), + [sym_rune_literal] = ACTIONS(4293), + [anon_sym_SQUOTE] = ACTIONS(4293), + [anon_sym_DQUOTE] = ACTIONS(4293), + [anon_sym_c_SQUOTE] = ACTIONS(4293), + [anon_sym_c_DQUOTE] = ACTIONS(4293), + [anon_sym_r_SQUOTE] = ACTIONS(4293), + [anon_sym_r_DQUOTE] = ACTIONS(4293), + [sym_pseudo_compile_time_identifier] = ACTIONS(4293), + [anon_sym_shared] = ACTIONS(4293), + [anon_sym_map_LBRACK] = ACTIONS(4293), + [anon_sym_chan] = ACTIONS(4293), + [anon_sym_thread] = ACTIONS(4293), + [anon_sym_atomic] = ACTIONS(4293), + [anon_sym_assert] = ACTIONS(4293), + [anon_sym_defer] = ACTIONS(4293), + [anon_sym_goto] = ACTIONS(4293), + [anon_sym_break] = ACTIONS(4293), + [anon_sym_continue] = ACTIONS(4293), + [anon_sym_return] = ACTIONS(4293), + [anon_sym_DOLLARfor] = ACTIONS(4293), + [anon_sym_for] = ACTIONS(4293), + [anon_sym_POUND] = ACTIONS(4293), + [anon_sym_asm] = ACTIONS(4293), + [anon_sym_AT_LBRACK] = ACTIONS(4293), }, [1516] = { [sym_line_comment] = STATE(1516), [sym_block_comment] = STATE(1516), - [ts_builtin_sym_end] = ACTIONS(4296), - [sym_identifier] = ACTIONS(4298), - [anon_sym_LF] = ACTIONS(4298), - [anon_sym_CR] = ACTIONS(4298), - [anon_sym_CR_LF] = ACTIONS(4298), + [ts_builtin_sym_end] = ACTIONS(4295), + [sym_identifier] = ACTIONS(4297), + [anon_sym_LF] = ACTIONS(4297), + [anon_sym_CR] = ACTIONS(4297), + [anon_sym_CR_LF] = ACTIONS(4297), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4298), - [anon_sym_LBRACE] = ACTIONS(4298), - [anon_sym_const] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(4298), - [anon_sym___global] = ACTIONS(4298), - [anon_sym_type] = ACTIONS(4298), - [anon_sym_fn] = ACTIONS(4298), - [anon_sym_PLUS] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4298), - [anon_sym_struct] = ACTIONS(4298), - [anon_sym_union] = ACTIONS(4298), - [anon_sym_pub] = ACTIONS(4298), - [anon_sym_mut] = ACTIONS(4298), - [anon_sym_enum] = ACTIONS(4298), - [anon_sym_interface] = ACTIONS(4298), - [anon_sym_QMARK] = ACTIONS(4298), - [anon_sym_BANG] = ACTIONS(4298), - [anon_sym_go] = ACTIONS(4298), - [anon_sym_spawn] = ACTIONS(4298), - [anon_sym_json_DOTdecode] = ACTIONS(4298), - [anon_sym_LBRACK2] = ACTIONS(4298), - [anon_sym_TILDE] = ACTIONS(4298), - [anon_sym_CARET] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4298), - [anon_sym_LT_DASH] = ACTIONS(4298), - [sym_none] = ACTIONS(4298), - [sym_true] = ACTIONS(4298), - [sym_false] = ACTIONS(4298), - [sym_nil] = ACTIONS(4298), - [anon_sym_if] = ACTIONS(4298), - [anon_sym_DOLLARif] = ACTIONS(4298), - [anon_sym_match] = ACTIONS(4298), - [anon_sym_select] = ACTIONS(4298), - [anon_sym_lock] = ACTIONS(4298), - [anon_sym_rlock] = ACTIONS(4298), - [anon_sym_unsafe] = ACTIONS(4298), - [anon_sym_sql] = ACTIONS(4298), - [sym_int_literal] = ACTIONS(4298), - [sym_float_literal] = ACTIONS(4298), - [sym_rune_literal] = ACTIONS(4298), - [sym_pseudo_compile_time_identifier] = ACTIONS(4298), - [anon_sym_shared] = ACTIONS(4298), - [anon_sym_map_LBRACK] = ACTIONS(4298), - [anon_sym_chan] = ACTIONS(4298), - [anon_sym_thread] = ACTIONS(4298), - [anon_sym_atomic] = ACTIONS(4298), - [anon_sym_assert] = ACTIONS(4298), - [anon_sym_defer] = ACTIONS(4298), - [anon_sym_goto] = ACTIONS(4298), - [anon_sym_break] = ACTIONS(4298), - [anon_sym_continue] = ACTIONS(4298), - [anon_sym_return] = ACTIONS(4298), - [anon_sym_DOLLARfor] = ACTIONS(4298), - [anon_sym_for] = ACTIONS(4298), - [anon_sym_POUND] = ACTIONS(4298), - [anon_sym_asm] = ACTIONS(4298), - [anon_sym_AT_LBRACK] = ACTIONS(4298), - [sym___double_quote] = ACTIONS(4298), - [sym___single_quote] = ACTIONS(4298), - [sym___c_double_quote] = ACTIONS(4298), - [sym___c_single_quote] = ACTIONS(4298), - [sym___r_double_quote] = ACTIONS(4298), - [sym___r_single_quote] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4297), + [anon_sym_const] = ACTIONS(4297), + [anon_sym_LPAREN] = ACTIONS(4297), + [anon_sym___global] = ACTIONS(4297), + [anon_sym_type] = ACTIONS(4297), + [anon_sym_fn] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_DASH] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4297), + [anon_sym_struct] = ACTIONS(4297), + [anon_sym_union] = ACTIONS(4297), + [anon_sym_pub] = ACTIONS(4297), + [anon_sym_mut] = ACTIONS(4297), + [anon_sym_enum] = ACTIONS(4297), + [anon_sym_interface] = ACTIONS(4297), + [anon_sym_QMARK] = ACTIONS(4297), + [anon_sym_BANG] = ACTIONS(4297), + [anon_sym_go] = ACTIONS(4297), + [anon_sym_spawn] = ACTIONS(4297), + [anon_sym_json_DOTdecode] = ACTIONS(4297), + [anon_sym_LBRACK2] = ACTIONS(4297), + [anon_sym_TILDE] = ACTIONS(4297), + [anon_sym_CARET] = ACTIONS(4297), + [anon_sym_AMP] = ACTIONS(4297), + [anon_sym_LT_DASH] = ACTIONS(4297), + [sym_none] = ACTIONS(4297), + [sym_true] = ACTIONS(4297), + [sym_false] = ACTIONS(4297), + [sym_nil] = ACTIONS(4297), + [anon_sym_if] = ACTIONS(4297), + [anon_sym_DOLLARif] = ACTIONS(4297), + [anon_sym_match] = ACTIONS(4297), + [anon_sym_select] = ACTIONS(4297), + [anon_sym_lock] = ACTIONS(4297), + [anon_sym_rlock] = ACTIONS(4297), + [anon_sym_unsafe] = ACTIONS(4297), + [anon_sym_sql] = ACTIONS(4297), + [sym_int_literal] = ACTIONS(4297), + [sym_float_literal] = ACTIONS(4297), + [sym_rune_literal] = ACTIONS(4297), + [anon_sym_SQUOTE] = ACTIONS(4297), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_c_SQUOTE] = ACTIONS(4297), + [anon_sym_c_DQUOTE] = ACTIONS(4297), + [anon_sym_r_SQUOTE] = ACTIONS(4297), + [anon_sym_r_DQUOTE] = ACTIONS(4297), + [sym_pseudo_compile_time_identifier] = ACTIONS(4297), + [anon_sym_shared] = ACTIONS(4297), + [anon_sym_map_LBRACK] = ACTIONS(4297), + [anon_sym_chan] = ACTIONS(4297), + [anon_sym_thread] = ACTIONS(4297), + [anon_sym_atomic] = ACTIONS(4297), + [anon_sym_assert] = ACTIONS(4297), + [anon_sym_defer] = ACTIONS(4297), + [anon_sym_goto] = ACTIONS(4297), + [anon_sym_break] = ACTIONS(4297), + [anon_sym_continue] = ACTIONS(4297), + [anon_sym_return] = ACTIONS(4297), + [anon_sym_DOLLARfor] = ACTIONS(4297), + [anon_sym_for] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(4297), + [anon_sym_asm] = ACTIONS(4297), + [anon_sym_AT_LBRACK] = ACTIONS(4297), }, [1517] = { [sym_line_comment] = STATE(1517), [sym_block_comment] = STATE(1517), - [sym_import_declaration] = STATE(1586), - [aux_sym_import_list_repeat1] = STATE(1517), - [ts_builtin_sym_end] = ACTIONS(4300), - [sym_identifier] = ACTIONS(4302), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_import] = ACTIONS(4304), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_LBRACE] = ACTIONS(4300), - [anon_sym_const] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym___global] = ACTIONS(4302), - [anon_sym_type] = ACTIONS(4302), - [anon_sym_fn] = ACTIONS(4302), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_struct] = ACTIONS(4302), - [anon_sym_union] = ACTIONS(4302), - [anon_sym_pub] = ACTIONS(4302), - [anon_sym_mut] = ACTIONS(4302), - [anon_sym_enum] = ACTIONS(4302), - [anon_sym_interface] = ACTIONS(4302), - [anon_sym_QMARK] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4300), - [anon_sym_go] = ACTIONS(4302), - [anon_sym_spawn] = ACTIONS(4302), - [anon_sym_json_DOTdecode] = ACTIONS(4300), - [anon_sym_LBRACK2] = ACTIONS(4300), - [anon_sym_TILDE] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_AMP] = ACTIONS(4300), - [anon_sym_LT_DASH] = ACTIONS(4300), - [sym_none] = ACTIONS(4302), - [sym_true] = ACTIONS(4302), - [sym_false] = ACTIONS(4302), - [sym_nil] = ACTIONS(4302), - [anon_sym_if] = ACTIONS(4302), - [anon_sym_DOLLARif] = ACTIONS(4302), - [anon_sym_match] = ACTIONS(4302), - [anon_sym_select] = ACTIONS(4302), - [anon_sym_lock] = ACTIONS(4302), - [anon_sym_rlock] = ACTIONS(4302), - [anon_sym_unsafe] = ACTIONS(4302), - [anon_sym_sql] = ACTIONS(4302), - [sym_int_literal] = ACTIONS(4302), - [sym_float_literal] = ACTIONS(4300), - [sym_rune_literal] = ACTIONS(4300), - [sym_pseudo_compile_time_identifier] = ACTIONS(4302), - [anon_sym_shared] = ACTIONS(4302), - [anon_sym_map_LBRACK] = ACTIONS(4300), - [anon_sym_chan] = ACTIONS(4302), - [anon_sym_thread] = ACTIONS(4302), - [anon_sym_atomic] = ACTIONS(4302), - [anon_sym_assert] = ACTIONS(4302), - [anon_sym_defer] = ACTIONS(4302), - [anon_sym_goto] = ACTIONS(4302), - [anon_sym_break] = ACTIONS(4302), - [anon_sym_continue] = ACTIONS(4302), - [anon_sym_return] = ACTIONS(4302), - [anon_sym_DOLLARfor] = ACTIONS(4302), - [anon_sym_for] = ACTIONS(4302), - [anon_sym_POUND] = ACTIONS(4300), - [anon_sym_asm] = ACTIONS(4302), - [anon_sym_AT_LBRACK] = ACTIONS(4300), - [sym___double_quote] = ACTIONS(4300), - [sym___single_quote] = ACTIONS(4300), - [sym___c_double_quote] = ACTIONS(4300), - [sym___c_single_quote] = ACTIONS(4300), - [sym___r_double_quote] = ACTIONS(4300), - [sym___r_single_quote] = ACTIONS(4300), + [ts_builtin_sym_end] = ACTIONS(4299), + [sym_identifier] = ACTIONS(4301), + [anon_sym_LF] = ACTIONS(4301), + [anon_sym_CR] = ACTIONS(4301), + [anon_sym_CR_LF] = ACTIONS(4301), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4301), + [anon_sym_LBRACE] = ACTIONS(4301), + [anon_sym_const] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym___global] = ACTIONS(4301), + [anon_sym_type] = ACTIONS(4301), + [anon_sym_fn] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4301), + [anon_sym_struct] = ACTIONS(4301), + [anon_sym_union] = ACTIONS(4301), + [anon_sym_pub] = ACTIONS(4301), + [anon_sym_mut] = ACTIONS(4301), + [anon_sym_enum] = ACTIONS(4301), + [anon_sym_interface] = ACTIONS(4301), + [anon_sym_QMARK] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4301), + [anon_sym_go] = ACTIONS(4301), + [anon_sym_spawn] = ACTIONS(4301), + [anon_sym_json_DOTdecode] = ACTIONS(4301), + [anon_sym_LBRACK2] = ACTIONS(4301), + [anon_sym_TILDE] = ACTIONS(4301), + [anon_sym_CARET] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(4301), + [anon_sym_LT_DASH] = ACTIONS(4301), + [sym_none] = ACTIONS(4301), + [sym_true] = ACTIONS(4301), + [sym_false] = ACTIONS(4301), + [sym_nil] = ACTIONS(4301), + [anon_sym_if] = ACTIONS(4301), + [anon_sym_DOLLARif] = ACTIONS(4301), + [anon_sym_match] = ACTIONS(4301), + [anon_sym_select] = ACTIONS(4301), + [anon_sym_lock] = ACTIONS(4301), + [anon_sym_rlock] = ACTIONS(4301), + [anon_sym_unsafe] = ACTIONS(4301), + [anon_sym_sql] = ACTIONS(4301), + [sym_int_literal] = ACTIONS(4301), + [sym_float_literal] = ACTIONS(4301), + [sym_rune_literal] = ACTIONS(4301), + [anon_sym_SQUOTE] = ACTIONS(4301), + [anon_sym_DQUOTE] = ACTIONS(4301), + [anon_sym_c_SQUOTE] = ACTIONS(4301), + [anon_sym_c_DQUOTE] = ACTIONS(4301), + [anon_sym_r_SQUOTE] = ACTIONS(4301), + [anon_sym_r_DQUOTE] = ACTIONS(4301), + [sym_pseudo_compile_time_identifier] = ACTIONS(4301), + [anon_sym_shared] = ACTIONS(4301), + [anon_sym_map_LBRACK] = ACTIONS(4301), + [anon_sym_chan] = ACTIONS(4301), + [anon_sym_thread] = ACTIONS(4301), + [anon_sym_atomic] = ACTIONS(4301), + [anon_sym_assert] = ACTIONS(4301), + [anon_sym_defer] = ACTIONS(4301), + [anon_sym_goto] = ACTIONS(4301), + [anon_sym_break] = ACTIONS(4301), + [anon_sym_continue] = ACTIONS(4301), + [anon_sym_return] = ACTIONS(4301), + [anon_sym_DOLLARfor] = ACTIONS(4301), + [anon_sym_for] = ACTIONS(4301), + [anon_sym_POUND] = ACTIONS(4301), + [anon_sym_asm] = ACTIONS(4301), + [anon_sym_AT_LBRACK] = ACTIONS(4301), }, [1518] = { [sym_line_comment] = STATE(1518), [sym_block_comment] = STATE(1518), + [ts_builtin_sym_end] = ACTIONS(4303), + [sym_identifier] = ACTIONS(4305), + [anon_sym_LF] = ACTIONS(4305), + [anon_sym_CR] = ACTIONS(4305), + [anon_sym_CR_LF] = ACTIONS(4305), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_LBRACE] = ACTIONS(4305), + [anon_sym_const] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym___global] = ACTIONS(4305), + [anon_sym_type] = ACTIONS(4305), + [anon_sym_fn] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4305), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_STAR] = ACTIONS(4305), + [anon_sym_struct] = ACTIONS(4305), + [anon_sym_union] = ACTIONS(4305), + [anon_sym_pub] = ACTIONS(4305), + [anon_sym_mut] = ACTIONS(4305), + [anon_sym_enum] = ACTIONS(4305), + [anon_sym_interface] = ACTIONS(4305), + [anon_sym_QMARK] = ACTIONS(4305), + [anon_sym_BANG] = ACTIONS(4305), + [anon_sym_go] = ACTIONS(4305), + [anon_sym_spawn] = ACTIONS(4305), + [anon_sym_json_DOTdecode] = ACTIONS(4305), + [anon_sym_LBRACK2] = ACTIONS(4305), + [anon_sym_TILDE] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_LT_DASH] = ACTIONS(4305), + [sym_none] = ACTIONS(4305), + [sym_true] = ACTIONS(4305), + [sym_false] = ACTIONS(4305), + [sym_nil] = ACTIONS(4305), + [anon_sym_if] = ACTIONS(4305), + [anon_sym_DOLLARif] = ACTIONS(4305), + [anon_sym_match] = ACTIONS(4305), + [anon_sym_select] = ACTIONS(4305), + [anon_sym_lock] = ACTIONS(4305), + [anon_sym_rlock] = ACTIONS(4305), + [anon_sym_unsafe] = ACTIONS(4305), + [anon_sym_sql] = ACTIONS(4305), + [sym_int_literal] = ACTIONS(4305), + [sym_float_literal] = ACTIONS(4305), + [sym_rune_literal] = ACTIONS(4305), + [anon_sym_SQUOTE] = ACTIONS(4305), + [anon_sym_DQUOTE] = ACTIONS(4305), + [anon_sym_c_SQUOTE] = ACTIONS(4305), + [anon_sym_c_DQUOTE] = ACTIONS(4305), + [anon_sym_r_SQUOTE] = ACTIONS(4305), + [anon_sym_r_DQUOTE] = ACTIONS(4305), + [sym_pseudo_compile_time_identifier] = ACTIONS(4305), + [anon_sym_shared] = ACTIONS(4305), + [anon_sym_map_LBRACK] = ACTIONS(4305), + [anon_sym_chan] = ACTIONS(4305), + [anon_sym_thread] = ACTIONS(4305), + [anon_sym_atomic] = ACTIONS(4305), + [anon_sym_assert] = ACTIONS(4305), + [anon_sym_defer] = ACTIONS(4305), + [anon_sym_goto] = ACTIONS(4305), + [anon_sym_break] = ACTIONS(4305), + [anon_sym_continue] = ACTIONS(4305), + [anon_sym_return] = ACTIONS(4305), + [anon_sym_DOLLARfor] = ACTIONS(4305), + [anon_sym_for] = ACTIONS(4305), + [anon_sym_POUND] = ACTIONS(4305), + [anon_sym_asm] = ACTIONS(4305), + [anon_sym_AT_LBRACK] = ACTIONS(4305), + }, + [1519] = { + [sym_line_comment] = STATE(1519), + [sym_block_comment] = STATE(1519), [ts_builtin_sym_end] = ACTIONS(4307), [sym_identifier] = ACTIONS(4309), [anon_sym_LF] = ACTIONS(4309), @@ -182190,6 +182241,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4309), [sym_float_literal] = ACTIONS(4309), [sym_rune_literal] = ACTIONS(4309), + [anon_sym_SQUOTE] = ACTIONS(4309), + [anon_sym_DQUOTE] = ACTIONS(4309), + [anon_sym_c_SQUOTE] = ACTIONS(4309), + [anon_sym_c_DQUOTE] = ACTIONS(4309), + [anon_sym_r_SQUOTE] = ACTIONS(4309), + [anon_sym_r_DQUOTE] = ACTIONS(4309), [sym_pseudo_compile_time_identifier] = ACTIONS(4309), [anon_sym_shared] = ACTIONS(4309), [anon_sym_map_LBRACK] = ACTIONS(4309), @@ -182207,16 +182264,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4309), [anon_sym_asm] = ACTIONS(4309), [anon_sym_AT_LBRACK] = ACTIONS(4309), - [sym___double_quote] = ACTIONS(4309), - [sym___single_quote] = ACTIONS(4309), - [sym___c_double_quote] = ACTIONS(4309), - [sym___c_single_quote] = ACTIONS(4309), - [sym___r_double_quote] = ACTIONS(4309), - [sym___r_single_quote] = ACTIONS(4309), }, - [1519] = { - [sym_line_comment] = STATE(1519), - [sym_block_comment] = STATE(1519), + [1520] = { + [sym_line_comment] = STATE(1520), + [sym_block_comment] = STATE(1520), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2311), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_as] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(625), + [anon_sym_COMMA] = ACTIONS(625), + [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(625), + [anon_sym_DOT_DOT_DOT] = ACTIONS(625), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_LBRACK2] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_LT_LT] = ACTIONS(625), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_GT_GT_GT] = ACTIONS(625), + [anon_sym_AMP_CARET] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [anon_sym_or] = ACTIONS(627), + [anon_sym_QMARK_DOT] = ACTIONS(625), + [anon_sym_POUND_LBRACK] = ACTIONS(625), + [anon_sym_is] = ACTIONS(627), + [anon_sym_BANGis] = ACTIONS(625), + [anon_sym_in] = ACTIONS(627), + [anon_sym_BANGin] = ACTIONS(625), + [anon_sym_COLON_EQ] = ACTIONS(625), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(627), + }, + [1521] = { + [sym_line_comment] = STATE(1521), + [sym_block_comment] = STATE(1521), [ts_builtin_sym_end] = ACTIONS(4311), [sym_identifier] = ACTIONS(4313), [anon_sym_LF] = ACTIONS(4313), @@ -182265,6 +182391,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4313), [sym_float_literal] = ACTIONS(4313), [sym_rune_literal] = ACTIONS(4313), + [anon_sym_SQUOTE] = ACTIONS(4313), + [anon_sym_DQUOTE] = ACTIONS(4313), + [anon_sym_c_SQUOTE] = ACTIONS(4313), + [anon_sym_c_DQUOTE] = ACTIONS(4313), + [anon_sym_r_SQUOTE] = ACTIONS(4313), + [anon_sym_r_DQUOTE] = ACTIONS(4313), [sym_pseudo_compile_time_identifier] = ACTIONS(4313), [anon_sym_shared] = ACTIONS(4313), [anon_sym_map_LBRACK] = ACTIONS(4313), @@ -182282,16 +182414,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4313), [anon_sym_asm] = ACTIONS(4313), [anon_sym_AT_LBRACK] = ACTIONS(4313), - [sym___double_quote] = ACTIONS(4313), - [sym___single_quote] = ACTIONS(4313), - [sym___c_double_quote] = ACTIONS(4313), - [sym___c_single_quote] = ACTIONS(4313), - [sym___r_double_quote] = ACTIONS(4313), - [sym___r_single_quote] = ACTIONS(4313), }, - [1520] = { - [sym_line_comment] = STATE(1520), - [sym_block_comment] = STATE(1520), + [1522] = { + [sym_line_comment] = STATE(1522), + [sym_block_comment] = STATE(1522), [ts_builtin_sym_end] = ACTIONS(4315), [sym_identifier] = ACTIONS(4317), [anon_sym_LF] = ACTIONS(4317), @@ -182340,6 +182466,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4317), [sym_float_literal] = ACTIONS(4317), [sym_rune_literal] = ACTIONS(4317), + [anon_sym_SQUOTE] = ACTIONS(4317), + [anon_sym_DQUOTE] = ACTIONS(4317), + [anon_sym_c_SQUOTE] = ACTIONS(4317), + [anon_sym_c_DQUOTE] = ACTIONS(4317), + [anon_sym_r_SQUOTE] = ACTIONS(4317), + [anon_sym_r_DQUOTE] = ACTIONS(4317), [sym_pseudo_compile_time_identifier] = ACTIONS(4317), [anon_sym_shared] = ACTIONS(4317), [anon_sym_map_LBRACK] = ACTIONS(4317), @@ -182357,16 +182489,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4317), [anon_sym_asm] = ACTIONS(4317), [anon_sym_AT_LBRACK] = ACTIONS(4317), - [sym___double_quote] = ACTIONS(4317), - [sym___single_quote] = ACTIONS(4317), - [sym___c_double_quote] = ACTIONS(4317), - [sym___c_single_quote] = ACTIONS(4317), - [sym___r_double_quote] = ACTIONS(4317), - [sym___r_single_quote] = ACTIONS(4317), }, - [1521] = { - [sym_line_comment] = STATE(1521), - [sym_block_comment] = STATE(1521), + [1523] = { + [sym_line_comment] = STATE(1523), + [sym_block_comment] = STATE(1523), [ts_builtin_sym_end] = ACTIONS(4319), [sym_identifier] = ACTIONS(4321), [anon_sym_LF] = ACTIONS(4321), @@ -182415,6 +182541,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4321), [sym_float_literal] = ACTIONS(4321), [sym_rune_literal] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4321), + [anon_sym_DQUOTE] = ACTIONS(4321), + [anon_sym_c_SQUOTE] = ACTIONS(4321), + [anon_sym_c_DQUOTE] = ACTIONS(4321), + [anon_sym_r_SQUOTE] = ACTIONS(4321), + [anon_sym_r_DQUOTE] = ACTIONS(4321), [sym_pseudo_compile_time_identifier] = ACTIONS(4321), [anon_sym_shared] = ACTIONS(4321), [anon_sym_map_LBRACK] = ACTIONS(4321), @@ -182432,16 +182564,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4321), [anon_sym_asm] = ACTIONS(4321), [anon_sym_AT_LBRACK] = ACTIONS(4321), - [sym___double_quote] = ACTIONS(4321), - [sym___single_quote] = ACTIONS(4321), - [sym___c_double_quote] = ACTIONS(4321), - [sym___c_single_quote] = ACTIONS(4321), - [sym___r_double_quote] = ACTIONS(4321), - [sym___r_single_quote] = ACTIONS(4321), }, - [1522] = { - [sym_line_comment] = STATE(1522), - [sym_block_comment] = STATE(1522), + [1524] = { + [sym_line_comment] = STATE(1524), + [sym_block_comment] = STATE(1524), [ts_builtin_sym_end] = ACTIONS(4323), [sym_identifier] = ACTIONS(4325), [anon_sym_LF] = ACTIONS(4325), @@ -182490,6 +182616,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4325), [sym_float_literal] = ACTIONS(4325), [sym_rune_literal] = ACTIONS(4325), + [anon_sym_SQUOTE] = ACTIONS(4325), + [anon_sym_DQUOTE] = ACTIONS(4325), + [anon_sym_c_SQUOTE] = ACTIONS(4325), + [anon_sym_c_DQUOTE] = ACTIONS(4325), + [anon_sym_r_SQUOTE] = ACTIONS(4325), + [anon_sym_r_DQUOTE] = ACTIONS(4325), [sym_pseudo_compile_time_identifier] = ACTIONS(4325), [anon_sym_shared] = ACTIONS(4325), [anon_sym_map_LBRACK] = ACTIONS(4325), @@ -182507,16 +182639,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4325), [anon_sym_asm] = ACTIONS(4325), [anon_sym_AT_LBRACK] = ACTIONS(4325), - [sym___double_quote] = ACTIONS(4325), - [sym___single_quote] = ACTIONS(4325), - [sym___c_double_quote] = ACTIONS(4325), - [sym___c_single_quote] = ACTIONS(4325), - [sym___r_double_quote] = ACTIONS(4325), - [sym___r_single_quote] = ACTIONS(4325), }, - [1523] = { - [sym_line_comment] = STATE(1523), - [sym_block_comment] = STATE(1523), + [1525] = { + [sym_line_comment] = STATE(1525), + [sym_block_comment] = STATE(1525), [ts_builtin_sym_end] = ACTIONS(4327), [sym_identifier] = ACTIONS(4329), [anon_sym_LF] = ACTIONS(4329), @@ -182565,6 +182691,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4329), [sym_float_literal] = ACTIONS(4329), [sym_rune_literal] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_c_SQUOTE] = ACTIONS(4329), + [anon_sym_c_DQUOTE] = ACTIONS(4329), + [anon_sym_r_SQUOTE] = ACTIONS(4329), + [anon_sym_r_DQUOTE] = ACTIONS(4329), [sym_pseudo_compile_time_identifier] = ACTIONS(4329), [anon_sym_shared] = ACTIONS(4329), [anon_sym_map_LBRACK] = ACTIONS(4329), @@ -182582,16 +182714,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4329), [anon_sym_asm] = ACTIONS(4329), [anon_sym_AT_LBRACK] = ACTIONS(4329), - [sym___double_quote] = ACTIONS(4329), - [sym___single_quote] = ACTIONS(4329), - [sym___c_double_quote] = ACTIONS(4329), - [sym___c_single_quote] = ACTIONS(4329), - [sym___r_double_quote] = ACTIONS(4329), - [sym___r_single_quote] = ACTIONS(4329), }, - [1524] = { - [sym_line_comment] = STATE(1524), - [sym_block_comment] = STATE(1524), + [1526] = { + [sym_line_comment] = STATE(1526), + [sym_block_comment] = STATE(1526), [ts_builtin_sym_end] = ACTIONS(4331), [sym_identifier] = ACTIONS(4333), [anon_sym_LF] = ACTIONS(4333), @@ -182640,6 +182766,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4333), [sym_float_literal] = ACTIONS(4333), [sym_rune_literal] = ACTIONS(4333), + [anon_sym_SQUOTE] = ACTIONS(4333), + [anon_sym_DQUOTE] = ACTIONS(4333), + [anon_sym_c_SQUOTE] = ACTIONS(4333), + [anon_sym_c_DQUOTE] = ACTIONS(4333), + [anon_sym_r_SQUOTE] = ACTIONS(4333), + [anon_sym_r_DQUOTE] = ACTIONS(4333), [sym_pseudo_compile_time_identifier] = ACTIONS(4333), [anon_sym_shared] = ACTIONS(4333), [anon_sym_map_LBRACK] = ACTIONS(4333), @@ -182657,16 +182789,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4333), [anon_sym_asm] = ACTIONS(4333), [anon_sym_AT_LBRACK] = ACTIONS(4333), - [sym___double_quote] = ACTIONS(4333), - [sym___single_quote] = ACTIONS(4333), - [sym___c_double_quote] = ACTIONS(4333), - [sym___c_single_quote] = ACTIONS(4333), - [sym___r_double_quote] = ACTIONS(4333), - [sym___r_single_quote] = ACTIONS(4333), }, - [1525] = { - [sym_line_comment] = STATE(1525), - [sym_block_comment] = STATE(1525), + [1527] = { + [sym_line_comment] = STATE(1527), + [sym_block_comment] = STATE(1527), [ts_builtin_sym_end] = ACTIONS(4335), [sym_identifier] = ACTIONS(4337), [anon_sym_LF] = ACTIONS(4337), @@ -182715,6 +182841,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4337), [sym_float_literal] = ACTIONS(4337), [sym_rune_literal] = ACTIONS(4337), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [anon_sym_c_SQUOTE] = ACTIONS(4337), + [anon_sym_c_DQUOTE] = ACTIONS(4337), + [anon_sym_r_SQUOTE] = ACTIONS(4337), + [anon_sym_r_DQUOTE] = ACTIONS(4337), [sym_pseudo_compile_time_identifier] = ACTIONS(4337), [anon_sym_shared] = ACTIONS(4337), [anon_sym_map_LBRACK] = ACTIONS(4337), @@ -182732,16 +182864,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4337), [anon_sym_asm] = ACTIONS(4337), [anon_sym_AT_LBRACK] = ACTIONS(4337), - [sym___double_quote] = ACTIONS(4337), - [sym___single_quote] = ACTIONS(4337), - [sym___c_double_quote] = ACTIONS(4337), - [sym___c_single_quote] = ACTIONS(4337), - [sym___r_double_quote] = ACTIONS(4337), - [sym___r_single_quote] = ACTIONS(4337), }, - [1526] = { - [sym_line_comment] = STATE(1526), - [sym_block_comment] = STATE(1526), + [1528] = { + [sym_line_comment] = STATE(1528), + [sym_block_comment] = STATE(1528), [ts_builtin_sym_end] = ACTIONS(4339), [sym_identifier] = ACTIONS(4341), [anon_sym_LF] = ACTIONS(4341), @@ -182790,6 +182916,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4341), [sym_float_literal] = ACTIONS(4341), [sym_rune_literal] = ACTIONS(4341), + [anon_sym_SQUOTE] = ACTIONS(4341), + [anon_sym_DQUOTE] = ACTIONS(4341), + [anon_sym_c_SQUOTE] = ACTIONS(4341), + [anon_sym_c_DQUOTE] = ACTIONS(4341), + [anon_sym_r_SQUOTE] = ACTIONS(4341), + [anon_sym_r_DQUOTE] = ACTIONS(4341), [sym_pseudo_compile_time_identifier] = ACTIONS(4341), [anon_sym_shared] = ACTIONS(4341), [anon_sym_map_LBRACK] = ACTIONS(4341), @@ -182807,91 +182939,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4341), [anon_sym_asm] = ACTIONS(4341), [anon_sym_AT_LBRACK] = ACTIONS(4341), - [sym___double_quote] = ACTIONS(4341), - [sym___single_quote] = ACTIONS(4341), - [sym___c_double_quote] = ACTIONS(4341), - [sym___c_single_quote] = ACTIONS(4341), - [sym___r_double_quote] = ACTIONS(4341), - [sym___r_single_quote] = ACTIONS(4341), }, - [1527] = { - [sym_line_comment] = STATE(1527), - [sym_block_comment] = STATE(1527), - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_LF] = ACTIONS(1809), - [anon_sym_CR] = ACTIONS(1809), - [anon_sym_CR_LF] = ACTIONS(1809), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym___global] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_pub] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_go] = ACTIONS(1809), - [anon_sym_spawn] = ACTIONS(1809), - [anon_sym_json_DOTdecode] = ACTIONS(1809), - [anon_sym_LBRACK2] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_nil] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_DOLLARif] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_select] = ACTIONS(1809), - [anon_sym_lock] = ACTIONS(1809), - [anon_sym_rlock] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_sql] = ACTIONS(1809), - [sym_int_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), - [sym_rune_literal] = ACTIONS(1809), - [sym_pseudo_compile_time_identifier] = ACTIONS(1809), - [anon_sym_shared] = ACTIONS(1809), - [anon_sym_map_LBRACK] = ACTIONS(1809), - [anon_sym_chan] = ACTIONS(1809), - [anon_sym_thread] = ACTIONS(1809), - [anon_sym_atomic] = ACTIONS(1809), - [anon_sym_assert] = ACTIONS(1809), - [anon_sym_defer] = ACTIONS(1809), - [anon_sym_goto] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_DOLLARfor] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_POUND] = ACTIONS(1809), - [anon_sym_asm] = ACTIONS(1809), - [anon_sym_AT_LBRACK] = ACTIONS(1809), - [sym___double_quote] = ACTIONS(1809), - [sym___single_quote] = ACTIONS(1809), - [sym___c_double_quote] = ACTIONS(1809), - [sym___c_single_quote] = ACTIONS(1809), - [sym___r_double_quote] = ACTIONS(1809), - [sym___r_single_quote] = ACTIONS(1809), - }, - [1528] = { - [sym_line_comment] = STATE(1528), - [sym_block_comment] = STATE(1528), + [1529] = { + [sym_line_comment] = STATE(1529), + [sym_block_comment] = STATE(1529), [ts_builtin_sym_end] = ACTIONS(4343), [sym_identifier] = ACTIONS(4345), [anon_sym_LF] = ACTIONS(4345), @@ -182940,6 +182991,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4345), [sym_float_literal] = ACTIONS(4345), [sym_rune_literal] = ACTIONS(4345), + [anon_sym_SQUOTE] = ACTIONS(4345), + [anon_sym_DQUOTE] = ACTIONS(4345), + [anon_sym_c_SQUOTE] = ACTIONS(4345), + [anon_sym_c_DQUOTE] = ACTIONS(4345), + [anon_sym_r_SQUOTE] = ACTIONS(4345), + [anon_sym_r_DQUOTE] = ACTIONS(4345), [sym_pseudo_compile_time_identifier] = ACTIONS(4345), [anon_sym_shared] = ACTIONS(4345), [anon_sym_map_LBRACK] = ACTIONS(4345), @@ -182957,87 +183014,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4345), [anon_sym_asm] = ACTIONS(4345), [anon_sym_AT_LBRACK] = ACTIONS(4345), - [sym___double_quote] = ACTIONS(4345), - [sym___single_quote] = ACTIONS(4345), - [sym___c_double_quote] = ACTIONS(4345), - [sym___c_single_quote] = ACTIONS(4345), - [sym___r_double_quote] = ACTIONS(4345), - [sym___r_single_quote] = ACTIONS(4345), - }, - [1529] = { - [sym_line_comment] = STATE(1529), - [sym_block_comment] = STATE(1529), - [ts_builtin_sym_end] = ACTIONS(2469), - [sym_identifier] = ACTIONS(2471), - [anon_sym_LF] = ACTIONS(2471), - [anon_sym_CR] = ACTIONS(2471), - [anon_sym_CR_LF] = ACTIONS(2471), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_const] = ACTIONS(2471), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym___global] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_fn] = ACTIONS(2471), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2471), - [anon_sym_struct] = ACTIONS(2471), - [anon_sym_union] = ACTIONS(2471), - [anon_sym_pub] = ACTIONS(2471), - [anon_sym_mut] = ACTIONS(2471), - [anon_sym_enum] = ACTIONS(2471), - [anon_sym_interface] = ACTIONS(2471), - [anon_sym_QMARK] = ACTIONS(2471), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_go] = ACTIONS(2471), - [anon_sym_spawn] = ACTIONS(2471), - [anon_sym_json_DOTdecode] = ACTIONS(2471), - [anon_sym_LBRACK2] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2471), - [anon_sym_CARET] = ACTIONS(2471), - [anon_sym_AMP] = ACTIONS(2471), - [anon_sym_LT_DASH] = ACTIONS(2471), - [sym_none] = ACTIONS(2471), - [sym_true] = ACTIONS(2471), - [sym_false] = ACTIONS(2471), - [sym_nil] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_DOLLARif] = ACTIONS(2471), - [anon_sym_match] = ACTIONS(2471), - [anon_sym_select] = ACTIONS(2471), - [anon_sym_lock] = ACTIONS(2471), - [anon_sym_rlock] = ACTIONS(2471), - [anon_sym_unsafe] = ACTIONS(2471), - [anon_sym_sql] = ACTIONS(2471), - [sym_int_literal] = ACTIONS(2471), - [sym_float_literal] = ACTIONS(2471), - [sym_rune_literal] = ACTIONS(2471), - [sym_pseudo_compile_time_identifier] = ACTIONS(2471), - [anon_sym_shared] = ACTIONS(2471), - [anon_sym_map_LBRACK] = ACTIONS(2471), - [anon_sym_chan] = ACTIONS(2471), - [anon_sym_thread] = ACTIONS(2471), - [anon_sym_atomic] = ACTIONS(2471), - [anon_sym_assert] = ACTIONS(2471), - [anon_sym_defer] = ACTIONS(2471), - [anon_sym_goto] = ACTIONS(2471), - [anon_sym_break] = ACTIONS(2471), - [anon_sym_continue] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2471), - [anon_sym_DOLLARfor] = ACTIONS(2471), - [anon_sym_for] = ACTIONS(2471), - [anon_sym_POUND] = ACTIONS(2471), - [anon_sym_asm] = ACTIONS(2471), - [anon_sym_AT_LBRACK] = ACTIONS(2471), - [sym___double_quote] = ACTIONS(2471), - [sym___single_quote] = ACTIONS(2471), - [sym___c_double_quote] = ACTIONS(2471), - [sym___c_single_quote] = ACTIONS(2471), - [sym___r_double_quote] = ACTIONS(2471), - [sym___r_single_quote] = ACTIONS(2471), }, [1530] = { [sym_line_comment] = STATE(1530), @@ -183090,6 +183066,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4349), [sym_float_literal] = ACTIONS(4349), [sym_rune_literal] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4349), + [anon_sym_DQUOTE] = ACTIONS(4349), + [anon_sym_c_SQUOTE] = ACTIONS(4349), + [anon_sym_c_DQUOTE] = ACTIONS(4349), + [anon_sym_r_SQUOTE] = ACTIONS(4349), + [anon_sym_r_DQUOTE] = ACTIONS(4349), [sym_pseudo_compile_time_identifier] = ACTIONS(4349), [anon_sym_shared] = ACTIONS(4349), [anon_sym_map_LBRACK] = ACTIONS(4349), @@ -183107,12 +183089,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4349), [anon_sym_asm] = ACTIONS(4349), [anon_sym_AT_LBRACK] = ACTIONS(4349), - [sym___double_quote] = ACTIONS(4349), - [sym___single_quote] = ACTIONS(4349), - [sym___c_double_quote] = ACTIONS(4349), - [sym___c_single_quote] = ACTIONS(4349), - [sym___r_double_quote] = ACTIONS(4349), - [sym___r_single_quote] = ACTIONS(4349), }, [1531] = { [sym_line_comment] = STATE(1531), @@ -183165,6 +183141,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4353), [sym_float_literal] = ACTIONS(4353), [sym_rune_literal] = ACTIONS(4353), + [anon_sym_SQUOTE] = ACTIONS(4353), + [anon_sym_DQUOTE] = ACTIONS(4353), + [anon_sym_c_SQUOTE] = ACTIONS(4353), + [anon_sym_c_DQUOTE] = ACTIONS(4353), + [anon_sym_r_SQUOTE] = ACTIONS(4353), + [anon_sym_r_DQUOTE] = ACTIONS(4353), [sym_pseudo_compile_time_identifier] = ACTIONS(4353), [anon_sym_shared] = ACTIONS(4353), [anon_sym_map_LBRACK] = ACTIONS(4353), @@ -183182,12 +183164,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4353), [anon_sym_asm] = ACTIONS(4353), [anon_sym_AT_LBRACK] = ACTIONS(4353), - [sym___double_quote] = ACTIONS(4353), - [sym___single_quote] = ACTIONS(4353), - [sym___c_double_quote] = ACTIONS(4353), - [sym___c_single_quote] = ACTIONS(4353), - [sym___r_double_quote] = ACTIONS(4353), - [sym___r_single_quote] = ACTIONS(4353), }, [1532] = { [sym_line_comment] = STATE(1532), @@ -183240,6 +183216,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4357), [sym_float_literal] = ACTIONS(4357), [sym_rune_literal] = ACTIONS(4357), + [anon_sym_SQUOTE] = ACTIONS(4357), + [anon_sym_DQUOTE] = ACTIONS(4357), + [anon_sym_c_SQUOTE] = ACTIONS(4357), + [anon_sym_c_DQUOTE] = ACTIONS(4357), + [anon_sym_r_SQUOTE] = ACTIONS(4357), + [anon_sym_r_DQUOTE] = ACTIONS(4357), [sym_pseudo_compile_time_identifier] = ACTIONS(4357), [anon_sym_shared] = ACTIONS(4357), [anon_sym_map_LBRACK] = ACTIONS(4357), @@ -183257,12 +183239,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4357), [anon_sym_asm] = ACTIONS(4357), [anon_sym_AT_LBRACK] = ACTIONS(4357), - [sym___double_quote] = ACTIONS(4357), - [sym___single_quote] = ACTIONS(4357), - [sym___c_double_quote] = ACTIONS(4357), - [sym___c_single_quote] = ACTIONS(4357), - [sym___r_double_quote] = ACTIONS(4357), - [sym___r_single_quote] = ACTIONS(4357), }, [1533] = { [sym_line_comment] = STATE(1533), @@ -183315,6 +183291,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -183332,124 +183314,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4361), [anon_sym_asm] = ACTIONS(4361), [anon_sym_AT_LBRACK] = ACTIONS(4361), - [sym___double_quote] = ACTIONS(4361), - [sym___single_quote] = ACTIONS(4361), - [sym___c_double_quote] = ACTIONS(4361), - [sym___c_single_quote] = ACTIONS(4361), - [sym___r_double_quote] = ACTIONS(4361), - [sym___r_single_quote] = ACTIONS(4361), }, [1534] = { [sym_line_comment] = STATE(1534), [sym_block_comment] = STATE(1534), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2345), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(627), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(625), - [anon_sym_AMP_CARET] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(625), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(625), - [anon_sym_POUND_LBRACK] = ACTIONS(625), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(625), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(625), - [anon_sym_COLON_EQ] = ACTIONS(625), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(627), - }, - [1535] = { - [sym_line_comment] = STATE(1535), - [sym_block_comment] = STATE(1535), - [sym_import_declaration] = STATE(1586), - [aux_sym_import_list_repeat1] = STATE(1517), [ts_builtin_sym_end] = ACTIONS(4363), [sym_identifier] = ACTIONS(4365), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_import] = ACTIONS(15), + [anon_sym_LF] = ACTIONS(4365), + [anon_sym_CR] = ACTIONS(4365), + [anon_sym_CR_LF] = ACTIONS(4365), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4365), - [anon_sym_LBRACE] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(4365), [anon_sym_const] = ACTIONS(4365), - [anon_sym_LPAREN] = ACTIONS(4363), + [anon_sym_LPAREN] = ACTIONS(4365), [anon_sym___global] = ACTIONS(4365), [anon_sym_type] = ACTIONS(4365), [anon_sym_fn] = ACTIONS(4365), - [anon_sym_PLUS] = ACTIONS(4363), - [anon_sym_DASH] = ACTIONS(4363), - [anon_sym_STAR] = ACTIONS(4363), + [anon_sym_PLUS] = ACTIONS(4365), + [anon_sym_DASH] = ACTIONS(4365), + [anon_sym_STAR] = ACTIONS(4365), [anon_sym_struct] = ACTIONS(4365), [anon_sym_union] = ACTIONS(4365), [anon_sym_pub] = ACTIONS(4365), [anon_sym_mut] = ACTIONS(4365), [anon_sym_enum] = ACTIONS(4365), [anon_sym_interface] = ACTIONS(4365), - [anon_sym_QMARK] = ACTIONS(4363), - [anon_sym_BANG] = ACTIONS(4363), + [anon_sym_QMARK] = ACTIONS(4365), + [anon_sym_BANG] = ACTIONS(4365), [anon_sym_go] = ACTIONS(4365), [anon_sym_spawn] = ACTIONS(4365), - [anon_sym_json_DOTdecode] = ACTIONS(4363), - [anon_sym_LBRACK2] = ACTIONS(4363), - [anon_sym_TILDE] = ACTIONS(4363), - [anon_sym_CARET] = ACTIONS(4363), - [anon_sym_AMP] = ACTIONS(4363), - [anon_sym_LT_DASH] = ACTIONS(4363), + [anon_sym_json_DOTdecode] = ACTIONS(4365), + [anon_sym_LBRACK2] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4365), + [anon_sym_CARET] = ACTIONS(4365), + [anon_sym_AMP] = ACTIONS(4365), + [anon_sym_LT_DASH] = ACTIONS(4365), [sym_none] = ACTIONS(4365), [sym_true] = ACTIONS(4365), [sym_false] = ACTIONS(4365), @@ -183463,11 +183364,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(4365), [anon_sym_sql] = ACTIONS(4365), [sym_int_literal] = ACTIONS(4365), - [sym_float_literal] = ACTIONS(4363), - [sym_rune_literal] = ACTIONS(4363), + [sym_float_literal] = ACTIONS(4365), + [sym_rune_literal] = ACTIONS(4365), + [anon_sym_SQUOTE] = ACTIONS(4365), + [anon_sym_DQUOTE] = ACTIONS(4365), + [anon_sym_c_SQUOTE] = ACTIONS(4365), + [anon_sym_c_DQUOTE] = ACTIONS(4365), + [anon_sym_r_SQUOTE] = ACTIONS(4365), + [anon_sym_r_DQUOTE] = ACTIONS(4365), [sym_pseudo_compile_time_identifier] = ACTIONS(4365), [anon_sym_shared] = ACTIONS(4365), - [anon_sym_map_LBRACK] = ACTIONS(4363), + [anon_sym_map_LBRACK] = ACTIONS(4365), [anon_sym_chan] = ACTIONS(4365), [anon_sym_thread] = ACTIONS(4365), [anon_sym_atomic] = ACTIONS(4365), @@ -183479,19 +183386,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(4365), [anon_sym_DOLLARfor] = ACTIONS(4365), [anon_sym_for] = ACTIONS(4365), - [anon_sym_POUND] = ACTIONS(4363), + [anon_sym_POUND] = ACTIONS(4365), [anon_sym_asm] = ACTIONS(4365), - [anon_sym_AT_LBRACK] = ACTIONS(4363), - [sym___double_quote] = ACTIONS(4363), - [sym___single_quote] = ACTIONS(4363), - [sym___c_double_quote] = ACTIONS(4363), - [sym___c_single_quote] = ACTIONS(4363), - [sym___r_double_quote] = ACTIONS(4363), - [sym___r_single_quote] = ACTIONS(4363), + [anon_sym_AT_LBRACK] = ACTIONS(4365), }, - [1536] = { - [sym_line_comment] = STATE(1536), - [sym_block_comment] = STATE(1536), + [1535] = { + [sym_line_comment] = STATE(1535), + [sym_block_comment] = STATE(1535), [ts_builtin_sym_end] = ACTIONS(4367), [sym_identifier] = ACTIONS(4369), [anon_sym_LF] = ACTIONS(4369), @@ -183540,6 +183441,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4369), [sym_float_literal] = ACTIONS(4369), [sym_rune_literal] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4369), + [anon_sym_DQUOTE] = ACTIONS(4369), + [anon_sym_c_SQUOTE] = ACTIONS(4369), + [anon_sym_c_DQUOTE] = ACTIONS(4369), + [anon_sym_r_SQUOTE] = ACTIONS(4369), + [anon_sym_r_DQUOTE] = ACTIONS(4369), [sym_pseudo_compile_time_identifier] = ACTIONS(4369), [anon_sym_shared] = ACTIONS(4369), [anon_sym_map_LBRACK] = ACTIONS(4369), @@ -183557,16 +183464,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4369), [anon_sym_asm] = ACTIONS(4369), [anon_sym_AT_LBRACK] = ACTIONS(4369), - [sym___double_quote] = ACTIONS(4369), - [sym___single_quote] = ACTIONS(4369), - [sym___c_double_quote] = ACTIONS(4369), - [sym___c_single_quote] = ACTIONS(4369), - [sym___r_double_quote] = ACTIONS(4369), - [sym___r_single_quote] = ACTIONS(4369), }, - [1537] = { - [sym_line_comment] = STATE(1537), - [sym_block_comment] = STATE(1537), + [1536] = { + [sym_line_comment] = STATE(1536), + [sym_block_comment] = STATE(1536), [ts_builtin_sym_end] = ACTIONS(4371), [sym_identifier] = ACTIONS(4373), [anon_sym_LF] = ACTIONS(4373), @@ -183615,6 +183516,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4373), [sym_float_literal] = ACTIONS(4373), [sym_rune_literal] = ACTIONS(4373), + [anon_sym_SQUOTE] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4373), + [anon_sym_c_SQUOTE] = ACTIONS(4373), + [anon_sym_c_DQUOTE] = ACTIONS(4373), + [anon_sym_r_SQUOTE] = ACTIONS(4373), + [anon_sym_r_DQUOTE] = ACTIONS(4373), [sym_pseudo_compile_time_identifier] = ACTIONS(4373), [anon_sym_shared] = ACTIONS(4373), [anon_sym_map_LBRACK] = ACTIONS(4373), @@ -183632,16 +183539,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4373), [anon_sym_asm] = ACTIONS(4373), [anon_sym_AT_LBRACK] = ACTIONS(4373), - [sym___double_quote] = ACTIONS(4373), - [sym___single_quote] = ACTIONS(4373), - [sym___c_double_quote] = ACTIONS(4373), - [sym___c_single_quote] = ACTIONS(4373), - [sym___r_double_quote] = ACTIONS(4373), - [sym___r_single_quote] = ACTIONS(4373), }, - [1538] = { - [sym_line_comment] = STATE(1538), - [sym_block_comment] = STATE(1538), + [1537] = { + [sym_line_comment] = STATE(1537), + [sym_block_comment] = STATE(1537), [ts_builtin_sym_end] = ACTIONS(4375), [sym_identifier] = ACTIONS(4377), [anon_sym_LF] = ACTIONS(4377), @@ -183690,6 +183591,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4377), [sym_float_literal] = ACTIONS(4377), [sym_rune_literal] = ACTIONS(4377), + [anon_sym_SQUOTE] = ACTIONS(4377), + [anon_sym_DQUOTE] = ACTIONS(4377), + [anon_sym_c_SQUOTE] = ACTIONS(4377), + [anon_sym_c_DQUOTE] = ACTIONS(4377), + [anon_sym_r_SQUOTE] = ACTIONS(4377), + [anon_sym_r_DQUOTE] = ACTIONS(4377), [sym_pseudo_compile_time_identifier] = ACTIONS(4377), [anon_sym_shared] = ACTIONS(4377), [anon_sym_map_LBRACK] = ACTIONS(4377), @@ -183707,16 +183614,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4377), [anon_sym_asm] = ACTIONS(4377), [anon_sym_AT_LBRACK] = ACTIONS(4377), - [sym___double_quote] = ACTIONS(4377), - [sym___single_quote] = ACTIONS(4377), - [sym___c_double_quote] = ACTIONS(4377), - [sym___c_single_quote] = ACTIONS(4377), - [sym___r_double_quote] = ACTIONS(4377), - [sym___r_single_quote] = ACTIONS(4377), }, - [1539] = { - [sym_line_comment] = STATE(1539), - [sym_block_comment] = STATE(1539), + [1538] = { + [sym_line_comment] = STATE(1538), + [sym_block_comment] = STATE(1538), [ts_builtin_sym_end] = ACTIONS(4379), [sym_identifier] = ACTIONS(4381), [anon_sym_LF] = ACTIONS(4381), @@ -183765,6 +183666,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4381), [sym_float_literal] = ACTIONS(4381), [sym_rune_literal] = ACTIONS(4381), + [anon_sym_SQUOTE] = ACTIONS(4381), + [anon_sym_DQUOTE] = ACTIONS(4381), + [anon_sym_c_SQUOTE] = ACTIONS(4381), + [anon_sym_c_DQUOTE] = ACTIONS(4381), + [anon_sym_r_SQUOTE] = ACTIONS(4381), + [anon_sym_r_DQUOTE] = ACTIONS(4381), [sym_pseudo_compile_time_identifier] = ACTIONS(4381), [anon_sym_shared] = ACTIONS(4381), [anon_sym_map_LBRACK] = ACTIONS(4381), @@ -183782,16 +183689,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4381), [anon_sym_asm] = ACTIONS(4381), [anon_sym_AT_LBRACK] = ACTIONS(4381), - [sym___double_quote] = ACTIONS(4381), - [sym___single_quote] = ACTIONS(4381), - [sym___c_double_quote] = ACTIONS(4381), - [sym___c_single_quote] = ACTIONS(4381), - [sym___r_double_quote] = ACTIONS(4381), - [sym___r_single_quote] = ACTIONS(4381), }, - [1540] = { - [sym_line_comment] = STATE(1540), - [sym_block_comment] = STATE(1540), + [1539] = { + [sym_line_comment] = STATE(1539), + [sym_block_comment] = STATE(1539), [ts_builtin_sym_end] = ACTIONS(4383), [sym_identifier] = ACTIONS(4385), [anon_sym_LF] = ACTIONS(4385), @@ -183840,6 +183741,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4385), [sym_float_literal] = ACTIONS(4385), [sym_rune_literal] = ACTIONS(4385), + [anon_sym_SQUOTE] = ACTIONS(4385), + [anon_sym_DQUOTE] = ACTIONS(4385), + [anon_sym_c_SQUOTE] = ACTIONS(4385), + [anon_sym_c_DQUOTE] = ACTIONS(4385), + [anon_sym_r_SQUOTE] = ACTIONS(4385), + [anon_sym_r_DQUOTE] = ACTIONS(4385), [sym_pseudo_compile_time_identifier] = ACTIONS(4385), [anon_sym_shared] = ACTIONS(4385), [anon_sym_map_LBRACK] = ACTIONS(4385), @@ -183857,16 +183764,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4385), [anon_sym_asm] = ACTIONS(4385), [anon_sym_AT_LBRACK] = ACTIONS(4385), - [sym___double_quote] = ACTIONS(4385), - [sym___single_quote] = ACTIONS(4385), - [sym___c_double_quote] = ACTIONS(4385), - [sym___c_single_quote] = ACTIONS(4385), - [sym___r_double_quote] = ACTIONS(4385), - [sym___r_single_quote] = ACTIONS(4385), }, - [1541] = { - [sym_line_comment] = STATE(1541), - [sym_block_comment] = STATE(1541), + [1540] = { + [sym_line_comment] = STATE(1540), + [sym_block_comment] = STATE(1540), [ts_builtin_sym_end] = ACTIONS(4387), [sym_identifier] = ACTIONS(4389), [anon_sym_LF] = ACTIONS(4389), @@ -183915,6 +183816,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4389), [sym_float_literal] = ACTIONS(4389), [sym_rune_literal] = ACTIONS(4389), + [anon_sym_SQUOTE] = ACTIONS(4389), + [anon_sym_DQUOTE] = ACTIONS(4389), + [anon_sym_c_SQUOTE] = ACTIONS(4389), + [anon_sym_c_DQUOTE] = ACTIONS(4389), + [anon_sym_r_SQUOTE] = ACTIONS(4389), + [anon_sym_r_DQUOTE] = ACTIONS(4389), [sym_pseudo_compile_time_identifier] = ACTIONS(4389), [anon_sym_shared] = ACTIONS(4389), [anon_sym_map_LBRACK] = ACTIONS(4389), @@ -183932,16 +183839,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4389), [anon_sym_asm] = ACTIONS(4389), [anon_sym_AT_LBRACK] = ACTIONS(4389), - [sym___double_quote] = ACTIONS(4389), - [sym___single_quote] = ACTIONS(4389), - [sym___c_double_quote] = ACTIONS(4389), - [sym___c_single_quote] = ACTIONS(4389), - [sym___r_double_quote] = ACTIONS(4389), - [sym___r_single_quote] = ACTIONS(4389), }, - [1542] = { - [sym_line_comment] = STATE(1542), - [sym_block_comment] = STATE(1542), + [1541] = { + [sym_line_comment] = STATE(1541), + [sym_block_comment] = STATE(1541), [ts_builtin_sym_end] = ACTIONS(4391), [sym_identifier] = ACTIONS(4393), [anon_sym_LF] = ACTIONS(4393), @@ -183990,6 +183891,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4393), [sym_float_literal] = ACTIONS(4393), [sym_rune_literal] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4393), + [anon_sym_DQUOTE] = ACTIONS(4393), + [anon_sym_c_SQUOTE] = ACTIONS(4393), + [anon_sym_c_DQUOTE] = ACTIONS(4393), + [anon_sym_r_SQUOTE] = ACTIONS(4393), + [anon_sym_r_DQUOTE] = ACTIONS(4393), [sym_pseudo_compile_time_identifier] = ACTIONS(4393), [anon_sym_shared] = ACTIONS(4393), [anon_sym_map_LBRACK] = ACTIONS(4393), @@ -184007,16 +183914,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4393), [anon_sym_asm] = ACTIONS(4393), [anon_sym_AT_LBRACK] = ACTIONS(4393), - [sym___double_quote] = ACTIONS(4393), - [sym___single_quote] = ACTIONS(4393), - [sym___c_double_quote] = ACTIONS(4393), - [sym___c_single_quote] = ACTIONS(4393), - [sym___r_double_quote] = ACTIONS(4393), - [sym___r_single_quote] = ACTIONS(4393), }, - [1543] = { - [sym_line_comment] = STATE(1543), - [sym_block_comment] = STATE(1543), + [1542] = { + [sym_line_comment] = STATE(1542), + [sym_block_comment] = STATE(1542), [ts_builtin_sym_end] = ACTIONS(4395), [sym_identifier] = ACTIONS(4397), [anon_sym_LF] = ACTIONS(4397), @@ -184065,6 +183966,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4397), [sym_float_literal] = ACTIONS(4397), [sym_rune_literal] = ACTIONS(4397), + [anon_sym_SQUOTE] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4397), + [anon_sym_c_SQUOTE] = ACTIONS(4397), + [anon_sym_c_DQUOTE] = ACTIONS(4397), + [anon_sym_r_SQUOTE] = ACTIONS(4397), + [anon_sym_r_DQUOTE] = ACTIONS(4397), [sym_pseudo_compile_time_identifier] = ACTIONS(4397), [anon_sym_shared] = ACTIONS(4397), [anon_sym_map_LBRACK] = ACTIONS(4397), @@ -184082,16 +183989,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4397), [anon_sym_asm] = ACTIONS(4397), [anon_sym_AT_LBRACK] = ACTIONS(4397), - [sym___double_quote] = ACTIONS(4397), - [sym___single_quote] = ACTIONS(4397), - [sym___c_double_quote] = ACTIONS(4397), - [sym___c_single_quote] = ACTIONS(4397), - [sym___r_double_quote] = ACTIONS(4397), - [sym___r_single_quote] = ACTIONS(4397), }, - [1544] = { - [sym_line_comment] = STATE(1544), - [sym_block_comment] = STATE(1544), + [1543] = { + [sym_line_comment] = STATE(1543), + [sym_block_comment] = STATE(1543), [ts_builtin_sym_end] = ACTIONS(4399), [sym_identifier] = ACTIONS(4401), [anon_sym_LF] = ACTIONS(4401), @@ -184140,6 +184041,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4401), [sym_float_literal] = ACTIONS(4401), [sym_rune_literal] = ACTIONS(4401), + [anon_sym_SQUOTE] = ACTIONS(4401), + [anon_sym_DQUOTE] = ACTIONS(4401), + [anon_sym_c_SQUOTE] = ACTIONS(4401), + [anon_sym_c_DQUOTE] = ACTIONS(4401), + [anon_sym_r_SQUOTE] = ACTIONS(4401), + [anon_sym_r_DQUOTE] = ACTIONS(4401), [sym_pseudo_compile_time_identifier] = ACTIONS(4401), [anon_sym_shared] = ACTIONS(4401), [anon_sym_map_LBRACK] = ACTIONS(4401), @@ -184157,16 +184064,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4401), [anon_sym_asm] = ACTIONS(4401), [anon_sym_AT_LBRACK] = ACTIONS(4401), - [sym___double_quote] = ACTIONS(4401), - [sym___single_quote] = ACTIONS(4401), - [sym___c_double_quote] = ACTIONS(4401), - [sym___c_single_quote] = ACTIONS(4401), - [sym___r_double_quote] = ACTIONS(4401), - [sym___r_single_quote] = ACTIONS(4401), }, - [1545] = { - [sym_line_comment] = STATE(1545), - [sym_block_comment] = STATE(1545), + [1544] = { + [sym_line_comment] = STATE(1544), + [sym_block_comment] = STATE(1544), [ts_builtin_sym_end] = ACTIONS(4403), [sym_identifier] = ACTIONS(4405), [anon_sym_LF] = ACTIONS(4405), @@ -184215,6 +184116,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4405), [sym_float_literal] = ACTIONS(4405), [sym_rune_literal] = ACTIONS(4405), + [anon_sym_SQUOTE] = ACTIONS(4405), + [anon_sym_DQUOTE] = ACTIONS(4405), + [anon_sym_c_SQUOTE] = ACTIONS(4405), + [anon_sym_c_DQUOTE] = ACTIONS(4405), + [anon_sym_r_SQUOTE] = ACTIONS(4405), + [anon_sym_r_DQUOTE] = ACTIONS(4405), [sym_pseudo_compile_time_identifier] = ACTIONS(4405), [anon_sym_shared] = ACTIONS(4405), [anon_sym_map_LBRACK] = ACTIONS(4405), @@ -184232,16 +184139,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4405), [anon_sym_asm] = ACTIONS(4405), [anon_sym_AT_LBRACK] = ACTIONS(4405), - [sym___double_quote] = ACTIONS(4405), - [sym___single_quote] = ACTIONS(4405), - [sym___c_double_quote] = ACTIONS(4405), - [sym___c_single_quote] = ACTIONS(4405), - [sym___r_double_quote] = ACTIONS(4405), - [sym___r_single_quote] = ACTIONS(4405), }, - [1546] = { - [sym_line_comment] = STATE(1546), - [sym_block_comment] = STATE(1546), + [1545] = { + [sym_line_comment] = STATE(1545), + [sym_block_comment] = STATE(1545), [ts_builtin_sym_end] = ACTIONS(4407), [sym_identifier] = ACTIONS(4409), [anon_sym_LF] = ACTIONS(4409), @@ -184290,6 +184191,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -184307,16 +184214,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4409), [anon_sym_asm] = ACTIONS(4409), [anon_sym_AT_LBRACK] = ACTIONS(4409), - [sym___double_quote] = ACTIONS(4409), - [sym___single_quote] = ACTIONS(4409), - [sym___c_double_quote] = ACTIONS(4409), - [sym___c_single_quote] = ACTIONS(4409), - [sym___r_double_quote] = ACTIONS(4409), - [sym___r_single_quote] = ACTIONS(4409), }, - [1547] = { - [sym_line_comment] = STATE(1547), - [sym_block_comment] = STATE(1547), + [1546] = { + [sym_line_comment] = STATE(1546), + [sym_block_comment] = STATE(1546), [ts_builtin_sym_end] = ACTIONS(4411), [sym_identifier] = ACTIONS(4413), [anon_sym_LF] = ACTIONS(4413), @@ -184365,6 +184266,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -184382,16 +184289,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4413), [anon_sym_asm] = ACTIONS(4413), [anon_sym_AT_LBRACK] = ACTIONS(4413), - [sym___double_quote] = ACTIONS(4413), - [sym___single_quote] = ACTIONS(4413), - [sym___c_double_quote] = ACTIONS(4413), - [sym___c_single_quote] = ACTIONS(4413), - [sym___r_double_quote] = ACTIONS(4413), - [sym___r_single_quote] = ACTIONS(4413), }, - [1548] = { - [sym_line_comment] = STATE(1548), - [sym_block_comment] = STATE(1548), + [1547] = { + [sym_line_comment] = STATE(1547), + [sym_block_comment] = STATE(1547), [ts_builtin_sym_end] = ACTIONS(4415), [sym_identifier] = ACTIONS(4417), [anon_sym_LF] = ACTIONS(4417), @@ -184440,6 +184341,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4417), [sym_float_literal] = ACTIONS(4417), [sym_rune_literal] = ACTIONS(4417), + [anon_sym_SQUOTE] = ACTIONS(4417), + [anon_sym_DQUOTE] = ACTIONS(4417), + [anon_sym_c_SQUOTE] = ACTIONS(4417), + [anon_sym_c_DQUOTE] = ACTIONS(4417), + [anon_sym_r_SQUOTE] = ACTIONS(4417), + [anon_sym_r_DQUOTE] = ACTIONS(4417), [sym_pseudo_compile_time_identifier] = ACTIONS(4417), [anon_sym_shared] = ACTIONS(4417), [anon_sym_map_LBRACK] = ACTIONS(4417), @@ -184457,16 +184364,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4417), [anon_sym_asm] = ACTIONS(4417), [anon_sym_AT_LBRACK] = ACTIONS(4417), - [sym___double_quote] = ACTIONS(4417), - [sym___single_quote] = ACTIONS(4417), - [sym___c_double_quote] = ACTIONS(4417), - [sym___c_single_quote] = ACTIONS(4417), - [sym___r_double_quote] = ACTIONS(4417), - [sym___r_single_quote] = ACTIONS(4417), }, - [1549] = { - [sym_line_comment] = STATE(1549), - [sym_block_comment] = STATE(1549), + [1548] = { + [sym_line_comment] = STATE(1548), + [sym_block_comment] = STATE(1548), [ts_builtin_sym_end] = ACTIONS(4419), [sym_identifier] = ACTIONS(4421), [anon_sym_LF] = ACTIONS(4421), @@ -184515,6 +184416,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4421), [sym_float_literal] = ACTIONS(4421), [sym_rune_literal] = ACTIONS(4421), + [anon_sym_SQUOTE] = ACTIONS(4421), + [anon_sym_DQUOTE] = ACTIONS(4421), + [anon_sym_c_SQUOTE] = ACTIONS(4421), + [anon_sym_c_DQUOTE] = ACTIONS(4421), + [anon_sym_r_SQUOTE] = ACTIONS(4421), + [anon_sym_r_DQUOTE] = ACTIONS(4421), [sym_pseudo_compile_time_identifier] = ACTIONS(4421), [anon_sym_shared] = ACTIONS(4421), [anon_sym_map_LBRACK] = ACTIONS(4421), @@ -184532,16 +184439,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4421), [anon_sym_asm] = ACTIONS(4421), [anon_sym_AT_LBRACK] = ACTIONS(4421), - [sym___double_quote] = ACTIONS(4421), - [sym___single_quote] = ACTIONS(4421), - [sym___c_double_quote] = ACTIONS(4421), - [sym___c_single_quote] = ACTIONS(4421), - [sym___r_double_quote] = ACTIONS(4421), - [sym___r_single_quote] = ACTIONS(4421), }, - [1550] = { - [sym_line_comment] = STATE(1550), - [sym_block_comment] = STATE(1550), + [1549] = { + [sym_line_comment] = STATE(1549), + [sym_block_comment] = STATE(1549), [ts_builtin_sym_end] = ACTIONS(4423), [sym_identifier] = ACTIONS(4425), [anon_sym_LF] = ACTIONS(4425), @@ -184590,6 +184491,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4425), [sym_float_literal] = ACTIONS(4425), [sym_rune_literal] = ACTIONS(4425), + [anon_sym_SQUOTE] = ACTIONS(4425), + [anon_sym_DQUOTE] = ACTIONS(4425), + [anon_sym_c_SQUOTE] = ACTIONS(4425), + [anon_sym_c_DQUOTE] = ACTIONS(4425), + [anon_sym_r_SQUOTE] = ACTIONS(4425), + [anon_sym_r_DQUOTE] = ACTIONS(4425), [sym_pseudo_compile_time_identifier] = ACTIONS(4425), [anon_sym_shared] = ACTIONS(4425), [anon_sym_map_LBRACK] = ACTIONS(4425), @@ -184607,16 +184514,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4425), [anon_sym_asm] = ACTIONS(4425), [anon_sym_AT_LBRACK] = ACTIONS(4425), - [sym___double_quote] = ACTIONS(4425), - [sym___single_quote] = ACTIONS(4425), - [sym___c_double_quote] = ACTIONS(4425), - [sym___c_single_quote] = ACTIONS(4425), - [sym___r_double_quote] = ACTIONS(4425), - [sym___r_single_quote] = ACTIONS(4425), }, - [1551] = { - [sym_line_comment] = STATE(1551), - [sym_block_comment] = STATE(1551), + [1550] = { + [sym_line_comment] = STATE(1550), + [sym_block_comment] = STATE(1550), [ts_builtin_sym_end] = ACTIONS(4427), [sym_identifier] = ACTIONS(4429), [anon_sym_LF] = ACTIONS(4429), @@ -184665,6 +184566,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4429), [sym_float_literal] = ACTIONS(4429), [sym_rune_literal] = ACTIONS(4429), + [anon_sym_SQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [anon_sym_c_SQUOTE] = ACTIONS(4429), + [anon_sym_c_DQUOTE] = ACTIONS(4429), + [anon_sym_r_SQUOTE] = ACTIONS(4429), + [anon_sym_r_DQUOTE] = ACTIONS(4429), [sym_pseudo_compile_time_identifier] = ACTIONS(4429), [anon_sym_shared] = ACTIONS(4429), [anon_sym_map_LBRACK] = ACTIONS(4429), @@ -184682,16 +184589,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4429), [anon_sym_asm] = ACTIONS(4429), [anon_sym_AT_LBRACK] = ACTIONS(4429), - [sym___double_quote] = ACTIONS(4429), - [sym___single_quote] = ACTIONS(4429), - [sym___c_double_quote] = ACTIONS(4429), - [sym___c_single_quote] = ACTIONS(4429), - [sym___r_double_quote] = ACTIONS(4429), - [sym___r_single_quote] = ACTIONS(4429), }, - [1552] = { - [sym_line_comment] = STATE(1552), - [sym_block_comment] = STATE(1552), + [1551] = { + [sym_line_comment] = STATE(1551), + [sym_block_comment] = STATE(1551), [ts_builtin_sym_end] = ACTIONS(4431), [sym_identifier] = ACTIONS(4433), [anon_sym_LF] = ACTIONS(4433), @@ -184740,6 +184641,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4433), [sym_float_literal] = ACTIONS(4433), [sym_rune_literal] = ACTIONS(4433), + [anon_sym_SQUOTE] = ACTIONS(4433), + [anon_sym_DQUOTE] = ACTIONS(4433), + [anon_sym_c_SQUOTE] = ACTIONS(4433), + [anon_sym_c_DQUOTE] = ACTIONS(4433), + [anon_sym_r_SQUOTE] = ACTIONS(4433), + [anon_sym_r_DQUOTE] = ACTIONS(4433), [sym_pseudo_compile_time_identifier] = ACTIONS(4433), [anon_sym_shared] = ACTIONS(4433), [anon_sym_map_LBRACK] = ACTIONS(4433), @@ -184757,16 +184664,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4433), [anon_sym_asm] = ACTIONS(4433), [anon_sym_AT_LBRACK] = ACTIONS(4433), - [sym___double_quote] = ACTIONS(4433), - [sym___single_quote] = ACTIONS(4433), - [sym___c_double_quote] = ACTIONS(4433), - [sym___c_single_quote] = ACTIONS(4433), - [sym___r_double_quote] = ACTIONS(4433), - [sym___r_single_quote] = ACTIONS(4433), }, - [1553] = { - [sym_line_comment] = STATE(1553), - [sym_block_comment] = STATE(1553), + [1552] = { + [sym_line_comment] = STATE(1552), + [sym_block_comment] = STATE(1552), [ts_builtin_sym_end] = ACTIONS(4435), [sym_identifier] = ACTIONS(4437), [anon_sym_LF] = ACTIONS(4437), @@ -184815,6 +184716,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4437), [sym_float_literal] = ACTIONS(4437), [sym_rune_literal] = ACTIONS(4437), + [anon_sym_SQUOTE] = ACTIONS(4437), + [anon_sym_DQUOTE] = ACTIONS(4437), + [anon_sym_c_SQUOTE] = ACTIONS(4437), + [anon_sym_c_DQUOTE] = ACTIONS(4437), + [anon_sym_r_SQUOTE] = ACTIONS(4437), + [anon_sym_r_DQUOTE] = ACTIONS(4437), [sym_pseudo_compile_time_identifier] = ACTIONS(4437), [anon_sym_shared] = ACTIONS(4437), [anon_sym_map_LBRACK] = ACTIONS(4437), @@ -184832,16 +184739,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4437), [anon_sym_asm] = ACTIONS(4437), [anon_sym_AT_LBRACK] = ACTIONS(4437), - [sym___double_quote] = ACTIONS(4437), - [sym___single_quote] = ACTIONS(4437), - [sym___c_double_quote] = ACTIONS(4437), - [sym___c_single_quote] = ACTIONS(4437), - [sym___r_double_quote] = ACTIONS(4437), - [sym___r_single_quote] = ACTIONS(4437), }, - [1554] = { - [sym_line_comment] = STATE(1554), - [sym_block_comment] = STATE(1554), + [1553] = { + [sym_line_comment] = STATE(1553), + [sym_block_comment] = STATE(1553), [ts_builtin_sym_end] = ACTIONS(4439), [sym_identifier] = ACTIONS(4441), [anon_sym_LF] = ACTIONS(4441), @@ -184890,6 +184791,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4441), [sym_float_literal] = ACTIONS(4441), [sym_rune_literal] = ACTIONS(4441), + [anon_sym_SQUOTE] = ACTIONS(4441), + [anon_sym_DQUOTE] = ACTIONS(4441), + [anon_sym_c_SQUOTE] = ACTIONS(4441), + [anon_sym_c_DQUOTE] = ACTIONS(4441), + [anon_sym_r_SQUOTE] = ACTIONS(4441), + [anon_sym_r_DQUOTE] = ACTIONS(4441), [sym_pseudo_compile_time_identifier] = ACTIONS(4441), [anon_sym_shared] = ACTIONS(4441), [anon_sym_map_LBRACK] = ACTIONS(4441), @@ -184907,16 +184814,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4441), [anon_sym_asm] = ACTIONS(4441), [anon_sym_AT_LBRACK] = ACTIONS(4441), - [sym___double_quote] = ACTIONS(4441), - [sym___single_quote] = ACTIONS(4441), - [sym___c_double_quote] = ACTIONS(4441), - [sym___c_single_quote] = ACTIONS(4441), - [sym___r_double_quote] = ACTIONS(4441), - [sym___r_single_quote] = ACTIONS(4441), }, - [1555] = { - [sym_line_comment] = STATE(1555), - [sym_block_comment] = STATE(1555), + [1554] = { + [sym_line_comment] = STATE(1554), + [sym_block_comment] = STATE(1554), [ts_builtin_sym_end] = ACTIONS(4443), [sym_identifier] = ACTIONS(4445), [anon_sym_LF] = ACTIONS(4445), @@ -184965,6 +184866,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4445), [sym_float_literal] = ACTIONS(4445), [sym_rune_literal] = ACTIONS(4445), + [anon_sym_SQUOTE] = ACTIONS(4445), + [anon_sym_DQUOTE] = ACTIONS(4445), + [anon_sym_c_SQUOTE] = ACTIONS(4445), + [anon_sym_c_DQUOTE] = ACTIONS(4445), + [anon_sym_r_SQUOTE] = ACTIONS(4445), + [anon_sym_r_DQUOTE] = ACTIONS(4445), [sym_pseudo_compile_time_identifier] = ACTIONS(4445), [anon_sym_shared] = ACTIONS(4445), [anon_sym_map_LBRACK] = ACTIONS(4445), @@ -184982,16 +184889,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4445), [anon_sym_asm] = ACTIONS(4445), [anon_sym_AT_LBRACK] = ACTIONS(4445), - [sym___double_quote] = ACTIONS(4445), - [sym___single_quote] = ACTIONS(4445), - [sym___c_double_quote] = ACTIONS(4445), - [sym___c_single_quote] = ACTIONS(4445), - [sym___r_double_quote] = ACTIONS(4445), - [sym___r_single_quote] = ACTIONS(4445), }, - [1556] = { - [sym_line_comment] = STATE(1556), - [sym_block_comment] = STATE(1556), + [1555] = { + [sym_line_comment] = STATE(1555), + [sym_block_comment] = STATE(1555), [ts_builtin_sym_end] = ACTIONS(4447), [sym_identifier] = ACTIONS(4449), [anon_sym_LF] = ACTIONS(4449), @@ -185040,6 +184941,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4449), [sym_float_literal] = ACTIONS(4449), [sym_rune_literal] = ACTIONS(4449), + [anon_sym_SQUOTE] = ACTIONS(4449), + [anon_sym_DQUOTE] = ACTIONS(4449), + [anon_sym_c_SQUOTE] = ACTIONS(4449), + [anon_sym_c_DQUOTE] = ACTIONS(4449), + [anon_sym_r_SQUOTE] = ACTIONS(4449), + [anon_sym_r_DQUOTE] = ACTIONS(4449), [sym_pseudo_compile_time_identifier] = ACTIONS(4449), [anon_sym_shared] = ACTIONS(4449), [anon_sym_map_LBRACK] = ACTIONS(4449), @@ -185057,16 +184964,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4449), [anon_sym_asm] = ACTIONS(4449), [anon_sym_AT_LBRACK] = ACTIONS(4449), - [sym___double_quote] = ACTIONS(4449), - [sym___single_quote] = ACTIONS(4449), - [sym___c_double_quote] = ACTIONS(4449), - [sym___c_single_quote] = ACTIONS(4449), - [sym___r_double_quote] = ACTIONS(4449), - [sym___r_single_quote] = ACTIONS(4449), }, - [1557] = { - [sym_line_comment] = STATE(1557), - [sym_block_comment] = STATE(1557), + [1556] = { + [sym_line_comment] = STATE(1556), + [sym_block_comment] = STATE(1556), [ts_builtin_sym_end] = ACTIONS(4451), [sym_identifier] = ACTIONS(4453), [anon_sym_LF] = ACTIONS(4453), @@ -185115,6 +185016,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4453), [sym_float_literal] = ACTIONS(4453), [sym_rune_literal] = ACTIONS(4453), + [anon_sym_SQUOTE] = ACTIONS(4453), + [anon_sym_DQUOTE] = ACTIONS(4453), + [anon_sym_c_SQUOTE] = ACTIONS(4453), + [anon_sym_c_DQUOTE] = ACTIONS(4453), + [anon_sym_r_SQUOTE] = ACTIONS(4453), + [anon_sym_r_DQUOTE] = ACTIONS(4453), [sym_pseudo_compile_time_identifier] = ACTIONS(4453), [anon_sym_shared] = ACTIONS(4453), [anon_sym_map_LBRACK] = ACTIONS(4453), @@ -185132,16 +185039,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4453), [anon_sym_asm] = ACTIONS(4453), [anon_sym_AT_LBRACK] = ACTIONS(4453), - [sym___double_quote] = ACTIONS(4453), - [sym___single_quote] = ACTIONS(4453), - [sym___c_double_quote] = ACTIONS(4453), - [sym___c_single_quote] = ACTIONS(4453), - [sym___r_double_quote] = ACTIONS(4453), - [sym___r_single_quote] = ACTIONS(4453), }, - [1558] = { - [sym_line_comment] = STATE(1558), - [sym_block_comment] = STATE(1558), + [1557] = { + [sym_line_comment] = STATE(1557), + [sym_block_comment] = STATE(1557), [ts_builtin_sym_end] = ACTIONS(4455), [sym_identifier] = ACTIONS(4457), [anon_sym_LF] = ACTIONS(4457), @@ -185190,6 +185091,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4457), [sym_float_literal] = ACTIONS(4457), [sym_rune_literal] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DQUOTE] = ACTIONS(4457), + [anon_sym_c_SQUOTE] = ACTIONS(4457), + [anon_sym_c_DQUOTE] = ACTIONS(4457), + [anon_sym_r_SQUOTE] = ACTIONS(4457), + [anon_sym_r_DQUOTE] = ACTIONS(4457), [sym_pseudo_compile_time_identifier] = ACTIONS(4457), [anon_sym_shared] = ACTIONS(4457), [anon_sym_map_LBRACK] = ACTIONS(4457), @@ -185207,16 +185114,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4457), [anon_sym_asm] = ACTIONS(4457), [anon_sym_AT_LBRACK] = ACTIONS(4457), - [sym___double_quote] = ACTIONS(4457), - [sym___single_quote] = ACTIONS(4457), - [sym___c_double_quote] = ACTIONS(4457), - [sym___c_single_quote] = ACTIONS(4457), - [sym___r_double_quote] = ACTIONS(4457), - [sym___r_single_quote] = ACTIONS(4457), }, - [1559] = { - [sym_line_comment] = STATE(1559), - [sym_block_comment] = STATE(1559), + [1558] = { + [sym_line_comment] = STATE(1558), + [sym_block_comment] = STATE(1558), [ts_builtin_sym_end] = ACTIONS(4459), [sym_identifier] = ACTIONS(4461), [anon_sym_LF] = ACTIONS(4461), @@ -185265,6 +185166,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4461), [sym_float_literal] = ACTIONS(4461), [sym_rune_literal] = ACTIONS(4461), + [anon_sym_SQUOTE] = ACTIONS(4461), + [anon_sym_DQUOTE] = ACTIONS(4461), + [anon_sym_c_SQUOTE] = ACTIONS(4461), + [anon_sym_c_DQUOTE] = ACTIONS(4461), + [anon_sym_r_SQUOTE] = ACTIONS(4461), + [anon_sym_r_DQUOTE] = ACTIONS(4461), [sym_pseudo_compile_time_identifier] = ACTIONS(4461), [anon_sym_shared] = ACTIONS(4461), [anon_sym_map_LBRACK] = ACTIONS(4461), @@ -185282,16 +185189,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4461), [anon_sym_asm] = ACTIONS(4461), [anon_sym_AT_LBRACK] = ACTIONS(4461), - [sym___double_quote] = ACTIONS(4461), - [sym___single_quote] = ACTIONS(4461), - [sym___c_double_quote] = ACTIONS(4461), - [sym___c_single_quote] = ACTIONS(4461), - [sym___r_double_quote] = ACTIONS(4461), - [sym___r_single_quote] = ACTIONS(4461), }, - [1560] = { - [sym_line_comment] = STATE(1560), - [sym_block_comment] = STATE(1560), + [1559] = { + [sym_line_comment] = STATE(1559), + [sym_block_comment] = STATE(1559), [ts_builtin_sym_end] = ACTIONS(4463), [sym_identifier] = ACTIONS(4465), [anon_sym_LF] = ACTIONS(4465), @@ -185340,6 +185241,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4465), [sym_float_literal] = ACTIONS(4465), [sym_rune_literal] = ACTIONS(4465), + [anon_sym_SQUOTE] = ACTIONS(4465), + [anon_sym_DQUOTE] = ACTIONS(4465), + [anon_sym_c_SQUOTE] = ACTIONS(4465), + [anon_sym_c_DQUOTE] = ACTIONS(4465), + [anon_sym_r_SQUOTE] = ACTIONS(4465), + [anon_sym_r_DQUOTE] = ACTIONS(4465), [sym_pseudo_compile_time_identifier] = ACTIONS(4465), [anon_sym_shared] = ACTIONS(4465), [anon_sym_map_LBRACK] = ACTIONS(4465), @@ -185357,16 +185264,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4465), [anon_sym_asm] = ACTIONS(4465), [anon_sym_AT_LBRACK] = ACTIONS(4465), - [sym___double_quote] = ACTIONS(4465), - [sym___single_quote] = ACTIONS(4465), - [sym___c_double_quote] = ACTIONS(4465), - [sym___c_single_quote] = ACTIONS(4465), - [sym___r_double_quote] = ACTIONS(4465), - [sym___r_single_quote] = ACTIONS(4465), }, - [1561] = { - [sym_line_comment] = STATE(1561), - [sym_block_comment] = STATE(1561), + [1560] = { + [sym_line_comment] = STATE(1560), + [sym_block_comment] = STATE(1560), [ts_builtin_sym_end] = ACTIONS(4467), [sym_identifier] = ACTIONS(4469), [anon_sym_LF] = ACTIONS(4469), @@ -185415,6 +185316,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4469), [sym_float_literal] = ACTIONS(4469), [sym_rune_literal] = ACTIONS(4469), + [anon_sym_SQUOTE] = ACTIONS(4469), + [anon_sym_DQUOTE] = ACTIONS(4469), + [anon_sym_c_SQUOTE] = ACTIONS(4469), + [anon_sym_c_DQUOTE] = ACTIONS(4469), + [anon_sym_r_SQUOTE] = ACTIONS(4469), + [anon_sym_r_DQUOTE] = ACTIONS(4469), [sym_pseudo_compile_time_identifier] = ACTIONS(4469), [anon_sym_shared] = ACTIONS(4469), [anon_sym_map_LBRACK] = ACTIONS(4469), @@ -185432,16 +185339,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4469), [anon_sym_asm] = ACTIONS(4469), [anon_sym_AT_LBRACK] = ACTIONS(4469), - [sym___double_quote] = ACTIONS(4469), - [sym___single_quote] = ACTIONS(4469), - [sym___c_double_quote] = ACTIONS(4469), - [sym___c_single_quote] = ACTIONS(4469), - [sym___r_double_quote] = ACTIONS(4469), - [sym___r_single_quote] = ACTIONS(4469), }, - [1562] = { - [sym_line_comment] = STATE(1562), - [sym_block_comment] = STATE(1562), + [1561] = { + [sym_line_comment] = STATE(1561), + [sym_block_comment] = STATE(1561), [ts_builtin_sym_end] = ACTIONS(4471), [sym_identifier] = ACTIONS(4473), [anon_sym_LF] = ACTIONS(4473), @@ -185490,6 +185391,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4473), [sym_float_literal] = ACTIONS(4473), [sym_rune_literal] = ACTIONS(4473), + [anon_sym_SQUOTE] = ACTIONS(4473), + [anon_sym_DQUOTE] = ACTIONS(4473), + [anon_sym_c_SQUOTE] = ACTIONS(4473), + [anon_sym_c_DQUOTE] = ACTIONS(4473), + [anon_sym_r_SQUOTE] = ACTIONS(4473), + [anon_sym_r_DQUOTE] = ACTIONS(4473), [sym_pseudo_compile_time_identifier] = ACTIONS(4473), [anon_sym_shared] = ACTIONS(4473), [anon_sym_map_LBRACK] = ACTIONS(4473), @@ -185507,16 +185414,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4473), [anon_sym_asm] = ACTIONS(4473), [anon_sym_AT_LBRACK] = ACTIONS(4473), - [sym___double_quote] = ACTIONS(4473), - [sym___single_quote] = ACTIONS(4473), - [sym___c_double_quote] = ACTIONS(4473), - [sym___c_single_quote] = ACTIONS(4473), - [sym___r_double_quote] = ACTIONS(4473), - [sym___r_single_quote] = ACTIONS(4473), }, - [1563] = { - [sym_line_comment] = STATE(1563), - [sym_block_comment] = STATE(1563), + [1562] = { + [sym_line_comment] = STATE(1562), + [sym_block_comment] = STATE(1562), [ts_builtin_sym_end] = ACTIONS(4475), [sym_identifier] = ACTIONS(4477), [anon_sym_LF] = ACTIONS(4477), @@ -185565,6 +185466,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4477), [sym_float_literal] = ACTIONS(4477), [sym_rune_literal] = ACTIONS(4477), + [anon_sym_SQUOTE] = ACTIONS(4477), + [anon_sym_DQUOTE] = ACTIONS(4477), + [anon_sym_c_SQUOTE] = ACTIONS(4477), + [anon_sym_c_DQUOTE] = ACTIONS(4477), + [anon_sym_r_SQUOTE] = ACTIONS(4477), + [anon_sym_r_DQUOTE] = ACTIONS(4477), [sym_pseudo_compile_time_identifier] = ACTIONS(4477), [anon_sym_shared] = ACTIONS(4477), [anon_sym_map_LBRACK] = ACTIONS(4477), @@ -185582,16 +185489,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4477), [anon_sym_asm] = ACTIONS(4477), [anon_sym_AT_LBRACK] = ACTIONS(4477), - [sym___double_quote] = ACTIONS(4477), - [sym___single_quote] = ACTIONS(4477), - [sym___c_double_quote] = ACTIONS(4477), - [sym___c_single_quote] = ACTIONS(4477), - [sym___r_double_quote] = ACTIONS(4477), - [sym___r_single_quote] = ACTIONS(4477), }, - [1564] = { - [sym_line_comment] = STATE(1564), - [sym_block_comment] = STATE(1564), + [1563] = { + [sym_line_comment] = STATE(1563), + [sym_block_comment] = STATE(1563), [ts_builtin_sym_end] = ACTIONS(4479), [sym_identifier] = ACTIONS(4481), [anon_sym_LF] = ACTIONS(4481), @@ -185640,6 +185541,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4481), [sym_float_literal] = ACTIONS(4481), [sym_rune_literal] = ACTIONS(4481), + [anon_sym_SQUOTE] = ACTIONS(4481), + [anon_sym_DQUOTE] = ACTIONS(4481), + [anon_sym_c_SQUOTE] = ACTIONS(4481), + [anon_sym_c_DQUOTE] = ACTIONS(4481), + [anon_sym_r_SQUOTE] = ACTIONS(4481), + [anon_sym_r_DQUOTE] = ACTIONS(4481), [sym_pseudo_compile_time_identifier] = ACTIONS(4481), [anon_sym_shared] = ACTIONS(4481), [anon_sym_map_LBRACK] = ACTIONS(4481), @@ -185657,16 +185564,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4481), [anon_sym_asm] = ACTIONS(4481), [anon_sym_AT_LBRACK] = ACTIONS(4481), - [sym___double_quote] = ACTIONS(4481), - [sym___single_quote] = ACTIONS(4481), - [sym___c_double_quote] = ACTIONS(4481), - [sym___c_single_quote] = ACTIONS(4481), - [sym___r_double_quote] = ACTIONS(4481), - [sym___r_single_quote] = ACTIONS(4481), }, - [1565] = { - [sym_line_comment] = STATE(1565), - [sym_block_comment] = STATE(1565), + [1564] = { + [sym_line_comment] = STATE(1564), + [sym_block_comment] = STATE(1564), [ts_builtin_sym_end] = ACTIONS(4483), [sym_identifier] = ACTIONS(4485), [anon_sym_LF] = ACTIONS(4485), @@ -185715,6 +185616,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4485), [sym_float_literal] = ACTIONS(4485), [sym_rune_literal] = ACTIONS(4485), + [anon_sym_SQUOTE] = ACTIONS(4485), + [anon_sym_DQUOTE] = ACTIONS(4485), + [anon_sym_c_SQUOTE] = ACTIONS(4485), + [anon_sym_c_DQUOTE] = ACTIONS(4485), + [anon_sym_r_SQUOTE] = ACTIONS(4485), + [anon_sym_r_DQUOTE] = ACTIONS(4485), [sym_pseudo_compile_time_identifier] = ACTIONS(4485), [anon_sym_shared] = ACTIONS(4485), [anon_sym_map_LBRACK] = ACTIONS(4485), @@ -185732,16 +185639,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4485), [anon_sym_asm] = ACTIONS(4485), [anon_sym_AT_LBRACK] = ACTIONS(4485), - [sym___double_quote] = ACTIONS(4485), - [sym___single_quote] = ACTIONS(4485), - [sym___c_double_quote] = ACTIONS(4485), - [sym___c_single_quote] = ACTIONS(4485), - [sym___r_double_quote] = ACTIONS(4485), - [sym___r_single_quote] = ACTIONS(4485), }, - [1566] = { - [sym_line_comment] = STATE(1566), - [sym_block_comment] = STATE(1566), + [1565] = { + [sym_line_comment] = STATE(1565), + [sym_block_comment] = STATE(1565), [ts_builtin_sym_end] = ACTIONS(4487), [sym_identifier] = ACTIONS(4489), [anon_sym_LF] = ACTIONS(4489), @@ -185790,6 +185691,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4489), [sym_float_literal] = ACTIONS(4489), [sym_rune_literal] = ACTIONS(4489), + [anon_sym_SQUOTE] = ACTIONS(4489), + [anon_sym_DQUOTE] = ACTIONS(4489), + [anon_sym_c_SQUOTE] = ACTIONS(4489), + [anon_sym_c_DQUOTE] = ACTIONS(4489), + [anon_sym_r_SQUOTE] = ACTIONS(4489), + [anon_sym_r_DQUOTE] = ACTIONS(4489), [sym_pseudo_compile_time_identifier] = ACTIONS(4489), [anon_sym_shared] = ACTIONS(4489), [anon_sym_map_LBRACK] = ACTIONS(4489), @@ -185807,16 +185714,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4489), [anon_sym_asm] = ACTIONS(4489), [anon_sym_AT_LBRACK] = ACTIONS(4489), - [sym___double_quote] = ACTIONS(4489), - [sym___single_quote] = ACTIONS(4489), - [sym___c_double_quote] = ACTIONS(4489), - [sym___c_single_quote] = ACTIONS(4489), - [sym___r_double_quote] = ACTIONS(4489), - [sym___r_single_quote] = ACTIONS(4489), }, - [1567] = { - [sym_line_comment] = STATE(1567), - [sym_block_comment] = STATE(1567), + [1566] = { + [sym_line_comment] = STATE(1566), + [sym_block_comment] = STATE(1566), [ts_builtin_sym_end] = ACTIONS(4491), [sym_identifier] = ACTIONS(4493), [anon_sym_LF] = ACTIONS(4493), @@ -185865,6 +185766,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4493), [sym_float_literal] = ACTIONS(4493), [sym_rune_literal] = ACTIONS(4493), + [anon_sym_SQUOTE] = ACTIONS(4493), + [anon_sym_DQUOTE] = ACTIONS(4493), + [anon_sym_c_SQUOTE] = ACTIONS(4493), + [anon_sym_c_DQUOTE] = ACTIONS(4493), + [anon_sym_r_SQUOTE] = ACTIONS(4493), + [anon_sym_r_DQUOTE] = ACTIONS(4493), [sym_pseudo_compile_time_identifier] = ACTIONS(4493), [anon_sym_shared] = ACTIONS(4493), [anon_sym_map_LBRACK] = ACTIONS(4493), @@ -185882,16 +185789,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4493), [anon_sym_asm] = ACTIONS(4493), [anon_sym_AT_LBRACK] = ACTIONS(4493), - [sym___double_quote] = ACTIONS(4493), - [sym___single_quote] = ACTIONS(4493), - [sym___c_double_quote] = ACTIONS(4493), - [sym___c_single_quote] = ACTIONS(4493), - [sym___r_double_quote] = ACTIONS(4493), - [sym___r_single_quote] = ACTIONS(4493), }, - [1568] = { - [sym_line_comment] = STATE(1568), - [sym_block_comment] = STATE(1568), + [1567] = { + [sym_line_comment] = STATE(1567), + [sym_block_comment] = STATE(1567), [ts_builtin_sym_end] = ACTIONS(4495), [sym_identifier] = ACTIONS(4497), [anon_sym_LF] = ACTIONS(4497), @@ -185940,6 +185841,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4497), [sym_float_literal] = ACTIONS(4497), [sym_rune_literal] = ACTIONS(4497), + [anon_sym_SQUOTE] = ACTIONS(4497), + [anon_sym_DQUOTE] = ACTIONS(4497), + [anon_sym_c_SQUOTE] = ACTIONS(4497), + [anon_sym_c_DQUOTE] = ACTIONS(4497), + [anon_sym_r_SQUOTE] = ACTIONS(4497), + [anon_sym_r_DQUOTE] = ACTIONS(4497), [sym_pseudo_compile_time_identifier] = ACTIONS(4497), [anon_sym_shared] = ACTIONS(4497), [anon_sym_map_LBRACK] = ACTIONS(4497), @@ -185957,16 +185864,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4497), [anon_sym_asm] = ACTIONS(4497), [anon_sym_AT_LBRACK] = ACTIONS(4497), - [sym___double_quote] = ACTIONS(4497), - [sym___single_quote] = ACTIONS(4497), - [sym___c_double_quote] = ACTIONS(4497), - [sym___c_single_quote] = ACTIONS(4497), - [sym___r_double_quote] = ACTIONS(4497), - [sym___r_single_quote] = ACTIONS(4497), }, - [1569] = { - [sym_line_comment] = STATE(1569), - [sym_block_comment] = STATE(1569), + [1568] = { + [sym_line_comment] = STATE(1568), + [sym_block_comment] = STATE(1568), [ts_builtin_sym_end] = ACTIONS(4499), [sym_identifier] = ACTIONS(4501), [anon_sym_LF] = ACTIONS(4501), @@ -186015,6 +185916,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4501), [sym_float_literal] = ACTIONS(4501), [sym_rune_literal] = ACTIONS(4501), + [anon_sym_SQUOTE] = ACTIONS(4501), + [anon_sym_DQUOTE] = ACTIONS(4501), + [anon_sym_c_SQUOTE] = ACTIONS(4501), + [anon_sym_c_DQUOTE] = ACTIONS(4501), + [anon_sym_r_SQUOTE] = ACTIONS(4501), + [anon_sym_r_DQUOTE] = ACTIONS(4501), [sym_pseudo_compile_time_identifier] = ACTIONS(4501), [anon_sym_shared] = ACTIONS(4501), [anon_sym_map_LBRACK] = ACTIONS(4501), @@ -186032,16 +185939,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4501), [anon_sym_asm] = ACTIONS(4501), [anon_sym_AT_LBRACK] = ACTIONS(4501), - [sym___double_quote] = ACTIONS(4501), - [sym___single_quote] = ACTIONS(4501), - [sym___c_double_quote] = ACTIONS(4501), - [sym___c_single_quote] = ACTIONS(4501), - [sym___r_double_quote] = ACTIONS(4501), - [sym___r_single_quote] = ACTIONS(4501), }, - [1570] = { - [sym_line_comment] = STATE(1570), - [sym_block_comment] = STATE(1570), + [1569] = { + [sym_line_comment] = STATE(1569), + [sym_block_comment] = STATE(1569), [ts_builtin_sym_end] = ACTIONS(4503), [sym_identifier] = ACTIONS(4505), [anon_sym_LF] = ACTIONS(4505), @@ -186090,6 +185991,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4505), [sym_float_literal] = ACTIONS(4505), [sym_rune_literal] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4505), + [anon_sym_DQUOTE] = ACTIONS(4505), + [anon_sym_c_SQUOTE] = ACTIONS(4505), + [anon_sym_c_DQUOTE] = ACTIONS(4505), + [anon_sym_r_SQUOTE] = ACTIONS(4505), + [anon_sym_r_DQUOTE] = ACTIONS(4505), [sym_pseudo_compile_time_identifier] = ACTIONS(4505), [anon_sym_shared] = ACTIONS(4505), [anon_sym_map_LBRACK] = ACTIONS(4505), @@ -186107,16 +186014,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4505), [anon_sym_asm] = ACTIONS(4505), [anon_sym_AT_LBRACK] = ACTIONS(4505), - [sym___double_quote] = ACTIONS(4505), - [sym___single_quote] = ACTIONS(4505), - [sym___c_double_quote] = ACTIONS(4505), - [sym___c_single_quote] = ACTIONS(4505), - [sym___r_double_quote] = ACTIONS(4505), - [sym___r_single_quote] = ACTIONS(4505), }, - [1571] = { - [sym_line_comment] = STATE(1571), - [sym_block_comment] = STATE(1571), + [1570] = { + [sym_line_comment] = STATE(1570), + [sym_block_comment] = STATE(1570), [ts_builtin_sym_end] = ACTIONS(4507), [sym_identifier] = ACTIONS(4509), [anon_sym_LF] = ACTIONS(4509), @@ -186165,6 +186066,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4509), [sym_float_literal] = ACTIONS(4509), [sym_rune_literal] = ACTIONS(4509), + [anon_sym_SQUOTE] = ACTIONS(4509), + [anon_sym_DQUOTE] = ACTIONS(4509), + [anon_sym_c_SQUOTE] = ACTIONS(4509), + [anon_sym_c_DQUOTE] = ACTIONS(4509), + [anon_sym_r_SQUOTE] = ACTIONS(4509), + [anon_sym_r_DQUOTE] = ACTIONS(4509), [sym_pseudo_compile_time_identifier] = ACTIONS(4509), [anon_sym_shared] = ACTIONS(4509), [anon_sym_map_LBRACK] = ACTIONS(4509), @@ -186182,16 +186089,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4509), [anon_sym_asm] = ACTIONS(4509), [anon_sym_AT_LBRACK] = ACTIONS(4509), - [sym___double_quote] = ACTIONS(4509), - [sym___single_quote] = ACTIONS(4509), - [sym___c_double_quote] = ACTIONS(4509), - [sym___c_single_quote] = ACTIONS(4509), - [sym___r_double_quote] = ACTIONS(4509), - [sym___r_single_quote] = ACTIONS(4509), }, - [1572] = { - [sym_line_comment] = STATE(1572), - [sym_block_comment] = STATE(1572), + [1571] = { + [sym_line_comment] = STATE(1571), + [sym_block_comment] = STATE(1571), [ts_builtin_sym_end] = ACTIONS(4511), [sym_identifier] = ACTIONS(4513), [anon_sym_LF] = ACTIONS(4513), @@ -186240,6 +186141,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4513), [sym_float_literal] = ACTIONS(4513), [sym_rune_literal] = ACTIONS(4513), + [anon_sym_SQUOTE] = ACTIONS(4513), + [anon_sym_DQUOTE] = ACTIONS(4513), + [anon_sym_c_SQUOTE] = ACTIONS(4513), + [anon_sym_c_DQUOTE] = ACTIONS(4513), + [anon_sym_r_SQUOTE] = ACTIONS(4513), + [anon_sym_r_DQUOTE] = ACTIONS(4513), [sym_pseudo_compile_time_identifier] = ACTIONS(4513), [anon_sym_shared] = ACTIONS(4513), [anon_sym_map_LBRACK] = ACTIONS(4513), @@ -186257,16 +186164,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4513), [anon_sym_asm] = ACTIONS(4513), [anon_sym_AT_LBRACK] = ACTIONS(4513), - [sym___double_quote] = ACTIONS(4513), - [sym___single_quote] = ACTIONS(4513), - [sym___c_double_quote] = ACTIONS(4513), - [sym___c_single_quote] = ACTIONS(4513), - [sym___r_double_quote] = ACTIONS(4513), - [sym___r_single_quote] = ACTIONS(4513), }, - [1573] = { - [sym_line_comment] = STATE(1573), - [sym_block_comment] = STATE(1573), + [1572] = { + [sym_line_comment] = STATE(1572), + [sym_block_comment] = STATE(1572), [ts_builtin_sym_end] = ACTIONS(4515), [sym_identifier] = ACTIONS(4517), [anon_sym_LF] = ACTIONS(4517), @@ -186315,6 +186216,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4517), [sym_float_literal] = ACTIONS(4517), [sym_rune_literal] = ACTIONS(4517), + [anon_sym_SQUOTE] = ACTIONS(4517), + [anon_sym_DQUOTE] = ACTIONS(4517), + [anon_sym_c_SQUOTE] = ACTIONS(4517), + [anon_sym_c_DQUOTE] = ACTIONS(4517), + [anon_sym_r_SQUOTE] = ACTIONS(4517), + [anon_sym_r_DQUOTE] = ACTIONS(4517), [sym_pseudo_compile_time_identifier] = ACTIONS(4517), [anon_sym_shared] = ACTIONS(4517), [anon_sym_map_LBRACK] = ACTIONS(4517), @@ -186332,16 +186239,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4517), [anon_sym_asm] = ACTIONS(4517), [anon_sym_AT_LBRACK] = ACTIONS(4517), - [sym___double_quote] = ACTIONS(4517), - [sym___single_quote] = ACTIONS(4517), - [sym___c_double_quote] = ACTIONS(4517), - [sym___c_single_quote] = ACTIONS(4517), - [sym___r_double_quote] = ACTIONS(4517), - [sym___r_single_quote] = ACTIONS(4517), }, - [1574] = { - [sym_line_comment] = STATE(1574), - [sym_block_comment] = STATE(1574), + [1573] = { + [sym_line_comment] = STATE(1573), + [sym_block_comment] = STATE(1573), [ts_builtin_sym_end] = ACTIONS(4519), [sym_identifier] = ACTIONS(4521), [anon_sym_LF] = ACTIONS(4521), @@ -186390,6 +186291,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4521), [sym_float_literal] = ACTIONS(4521), [sym_rune_literal] = ACTIONS(4521), + [anon_sym_SQUOTE] = ACTIONS(4521), + [anon_sym_DQUOTE] = ACTIONS(4521), + [anon_sym_c_SQUOTE] = ACTIONS(4521), + [anon_sym_c_DQUOTE] = ACTIONS(4521), + [anon_sym_r_SQUOTE] = ACTIONS(4521), + [anon_sym_r_DQUOTE] = ACTIONS(4521), [sym_pseudo_compile_time_identifier] = ACTIONS(4521), [anon_sym_shared] = ACTIONS(4521), [anon_sym_map_LBRACK] = ACTIONS(4521), @@ -186407,345 +186314,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4521), [anon_sym_asm] = ACTIONS(4521), [anon_sym_AT_LBRACK] = ACTIONS(4521), - [sym___double_quote] = ACTIONS(4521), - [sym___single_quote] = ACTIONS(4521), - [sym___c_double_quote] = ACTIONS(4521), - [sym___c_single_quote] = ACTIONS(4521), - [sym___r_double_quote] = ACTIONS(4521), - [sym___r_single_quote] = ACTIONS(4521), + }, + [1574] = { + [sym_line_comment] = STATE(1574), + [sym_block_comment] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(4523), + [sym_identifier] = ACTIONS(4525), + [anon_sym_LF] = ACTIONS(4525), + [anon_sym_CR] = ACTIONS(4525), + [anon_sym_CR_LF] = ACTIONS(4525), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_const] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4525), + [anon_sym___global] = ACTIONS(4525), + [anon_sym_type] = ACTIONS(4525), + [anon_sym_fn] = ACTIONS(4525), + [anon_sym_PLUS] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4525), + [anon_sym_struct] = ACTIONS(4525), + [anon_sym_union] = ACTIONS(4525), + [anon_sym_pub] = ACTIONS(4525), + [anon_sym_mut] = ACTIONS(4525), + [anon_sym_enum] = ACTIONS(4525), + [anon_sym_interface] = ACTIONS(4525), + [anon_sym_QMARK] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4525), + [anon_sym_go] = ACTIONS(4525), + [anon_sym_spawn] = ACTIONS(4525), + [anon_sym_json_DOTdecode] = ACTIONS(4525), + [anon_sym_LBRACK2] = ACTIONS(4525), + [anon_sym_TILDE] = ACTIONS(4525), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym_AMP] = ACTIONS(4525), + [anon_sym_LT_DASH] = ACTIONS(4525), + [sym_none] = ACTIONS(4525), + [sym_true] = ACTIONS(4525), + [sym_false] = ACTIONS(4525), + [sym_nil] = ACTIONS(4525), + [anon_sym_if] = ACTIONS(4525), + [anon_sym_DOLLARif] = ACTIONS(4525), + [anon_sym_match] = ACTIONS(4525), + [anon_sym_select] = ACTIONS(4525), + [anon_sym_lock] = ACTIONS(4525), + [anon_sym_rlock] = ACTIONS(4525), + [anon_sym_unsafe] = ACTIONS(4525), + [anon_sym_sql] = ACTIONS(4525), + [sym_int_literal] = ACTIONS(4525), + [sym_float_literal] = ACTIONS(4525), + [sym_rune_literal] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4525), + [anon_sym_DQUOTE] = ACTIONS(4525), + [anon_sym_c_SQUOTE] = ACTIONS(4525), + [anon_sym_c_DQUOTE] = ACTIONS(4525), + [anon_sym_r_SQUOTE] = ACTIONS(4525), + [anon_sym_r_DQUOTE] = ACTIONS(4525), + [sym_pseudo_compile_time_identifier] = ACTIONS(4525), + [anon_sym_shared] = ACTIONS(4525), + [anon_sym_map_LBRACK] = ACTIONS(4525), + [anon_sym_chan] = ACTIONS(4525), + [anon_sym_thread] = ACTIONS(4525), + [anon_sym_atomic] = ACTIONS(4525), + [anon_sym_assert] = ACTIONS(4525), + [anon_sym_defer] = ACTIONS(4525), + [anon_sym_goto] = ACTIONS(4525), + [anon_sym_break] = ACTIONS(4525), + [anon_sym_continue] = ACTIONS(4525), + [anon_sym_return] = ACTIONS(4525), + [anon_sym_DOLLARfor] = ACTIONS(4525), + [anon_sym_for] = ACTIONS(4525), + [anon_sym_POUND] = ACTIONS(4525), + [anon_sym_asm] = ACTIONS(4525), + [anon_sym_AT_LBRACK] = ACTIONS(4525), }, [1575] = { [sym_line_comment] = STATE(1575), [sym_block_comment] = STATE(1575), - [sym_reference_expression] = STATE(4479), - [sym_type_reference_expression] = STATE(2597), - [sym_plain_type] = STATE(2722), - [sym__plain_type_without_special] = STATE(2699), - [sym_anon_struct_type] = STATE(2700), - [sym_multi_return_type] = STATE(2699), - [sym_result_type] = STATE(2699), - [sym_option_type] = STATE(2699), - [sym_qualified_type] = STATE(2597), - [sym_fixed_array_type] = STATE(2700), - [sym_array_type] = STATE(2700), - [sym_pointer_type] = STATE(2700), - [sym_wrong_pointer_type] = STATE(2700), - [sym_map_type] = STATE(2700), - [sym_channel_type] = STATE(2700), - [sym_shared_type] = STATE(2700), - [sym_thread_type] = STATE(2700), - [sym_atomic_type] = STATE(2700), - [sym_generic_type] = STATE(2700), - [sym_function_type] = STATE(2700), - [sym_identifier] = ACTIONS(4523), + [ts_builtin_sym_end] = ACTIONS(4527), + [sym_identifier] = ACTIONS(4529), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(4527), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(4529), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_BANG] = ACTIONS(4535), - [anon_sym_LBRACK2] = ACTIONS(4537), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(4539), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(617), - [anon_sym_AMP_CARET] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_or] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(617), - [anon_sym_POUND_LBRACK] = ACTIONS(617), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(617), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(617), - [anon_sym_shared] = ACTIONS(4541), - [anon_sym_map_LBRACK] = ACTIONS(4543), - [anon_sym_chan] = ACTIONS(4545), - [anon_sym_thread] = ACTIONS(4547), - [anon_sym_atomic] = ACTIONS(4549), - [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_module] = ACTIONS(4529), + [anon_sym_import] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_const] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym___global] = ACTIONS(4529), + [anon_sym_type] = ACTIONS(4529), + [anon_sym_fn] = ACTIONS(4529), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4527), + [anon_sym_struct] = ACTIONS(4529), + [anon_sym_union] = ACTIONS(4529), + [anon_sym_pub] = ACTIONS(4529), + [anon_sym_mut] = ACTIONS(4529), + [anon_sym_enum] = ACTIONS(4529), + [anon_sym_interface] = ACTIONS(4529), + [anon_sym_QMARK] = ACTIONS(4527), + [anon_sym_BANG] = ACTIONS(4527), + [anon_sym_go] = ACTIONS(4529), + [anon_sym_spawn] = ACTIONS(4529), + [anon_sym_json_DOTdecode] = ACTIONS(4527), + [anon_sym_LBRACK2] = ACTIONS(4527), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4527), + [anon_sym_LT_DASH] = ACTIONS(4527), + [sym_none] = ACTIONS(4529), + [sym_true] = ACTIONS(4529), + [sym_false] = ACTIONS(4529), + [sym_nil] = ACTIONS(4529), + [anon_sym_if] = ACTIONS(4529), + [anon_sym_DOLLARif] = ACTIONS(4529), + [anon_sym_match] = ACTIONS(4529), + [anon_sym_select] = ACTIONS(4529), + [anon_sym_lock] = ACTIONS(4529), + [anon_sym_rlock] = ACTIONS(4529), + [anon_sym_unsafe] = ACTIONS(4529), + [anon_sym_sql] = ACTIONS(4529), + [sym_int_literal] = ACTIONS(4529), + [sym_float_literal] = ACTIONS(4527), + [sym_rune_literal] = ACTIONS(4527), + [anon_sym_SQUOTE] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_c_SQUOTE] = ACTIONS(4527), + [anon_sym_c_DQUOTE] = ACTIONS(4527), + [anon_sym_r_SQUOTE] = ACTIONS(4527), + [anon_sym_r_DQUOTE] = ACTIONS(4527), + [sym_pseudo_compile_time_identifier] = ACTIONS(4529), + [anon_sym_shared] = ACTIONS(4529), + [anon_sym_map_LBRACK] = ACTIONS(4527), + [anon_sym_chan] = ACTIONS(4529), + [anon_sym_thread] = ACTIONS(4529), + [anon_sym_atomic] = ACTIONS(4529), + [anon_sym_assert] = ACTIONS(4529), + [anon_sym_defer] = ACTIONS(4529), + [anon_sym_goto] = ACTIONS(4529), + [anon_sym_break] = ACTIONS(4529), + [anon_sym_continue] = ACTIONS(4529), + [anon_sym_return] = ACTIONS(4529), + [anon_sym_DOLLARfor] = ACTIONS(4529), + [anon_sym_for] = ACTIONS(4529), + [anon_sym_POUND] = ACTIONS(4527), + [anon_sym_asm] = ACTIONS(4529), + [anon_sym_AT_LBRACK] = ACTIONS(4527), }, [1576] = { [sym_line_comment] = STATE(1576), [sym_block_comment] = STATE(1576), - [sym_reference_expression] = STATE(4479), - [sym_type_reference_expression] = STATE(2597), - [sym_plain_type] = STATE(2726), - [sym__plain_type_without_special] = STATE(2699), - [sym_anon_struct_type] = STATE(2700), - [sym_multi_return_type] = STATE(2699), - [sym_result_type] = STATE(2699), - [sym_option_type] = STATE(2699), - [sym_qualified_type] = STATE(2597), - [sym_fixed_array_type] = STATE(2700), - [sym_array_type] = STATE(2700), - [sym_pointer_type] = STATE(2700), - [sym_wrong_pointer_type] = STATE(2700), - [sym_map_type] = STATE(2700), - [sym_channel_type] = STATE(2700), - [sym_shared_type] = STATE(2700), - [sym_thread_type] = STATE(2700), - [sym_atomic_type] = STATE(2700), - [sym_generic_type] = STATE(2700), - [sym_function_type] = STATE(2700), - [sym_identifier] = ACTIONS(4523), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2311), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(4527), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(4529), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_BANG] = ACTIONS(4535), - [anon_sym_LBRACK2] = ACTIONS(4537), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(4539), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(4541), - [anon_sym_map_LBRACK] = ACTIONS(4543), - [anon_sym_chan] = ACTIONS(4545), - [anon_sym_thread] = ACTIONS(4547), - [anon_sym_atomic] = ACTIONS(4549), - [anon_sym_DOT_DOT] = ACTIONS(623), + [anon_sym_SEMI] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_as] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(625), + [anon_sym_LPAREN] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(627), + [anon_sym_DASH] = ACTIONS(627), + [anon_sym_STAR] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_PERCENT] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_EQ_EQ] = ACTIONS(625), + [anon_sym_BANG_EQ] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(625), + [anon_sym_GT_EQ] = ACTIONS(625), + [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(625), + [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_LBRACK2] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_LT_LT] = ACTIONS(625), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_GT_GT_GT] = ACTIONS(625), + [anon_sym_AMP_CARET] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [anon_sym_or] = ACTIONS(627), + [anon_sym_QMARK_DOT] = ACTIONS(625), + [anon_sym_POUND_LBRACK] = ACTIONS(625), + [anon_sym_is] = ACTIONS(627), + [anon_sym_BANGis] = ACTIONS(625), + [anon_sym_in] = ACTIONS(627), + [anon_sym_BANGin] = ACTIONS(625), + [anon_sym_COLON_EQ] = ACTIONS(625), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [1577] = { [sym_line_comment] = STATE(1577), [sym_block_comment] = STATE(1577), - [ts_builtin_sym_end] = ACTIONS(4551), - [sym_identifier] = ACTIONS(4553), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2386), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_module] = ACTIONS(4553), - [anon_sym_import] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4553), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_const] = ACTIONS(4553), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym___global] = ACTIONS(4553), - [anon_sym_type] = ACTIONS(4553), - [anon_sym_fn] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4551), - [anon_sym_DASH] = ACTIONS(4551), - [anon_sym_STAR] = ACTIONS(4551), - [anon_sym_struct] = ACTIONS(4553), - [anon_sym_union] = ACTIONS(4553), - [anon_sym_pub] = ACTIONS(4553), - [anon_sym_mut] = ACTIONS(4553), - [anon_sym_enum] = ACTIONS(4553), - [anon_sym_interface] = ACTIONS(4553), - [anon_sym_QMARK] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4551), - [anon_sym_go] = ACTIONS(4553), - [anon_sym_spawn] = ACTIONS(4553), - [anon_sym_json_DOTdecode] = ACTIONS(4551), - [anon_sym_LBRACK2] = ACTIONS(4551), - [anon_sym_TILDE] = ACTIONS(4551), - [anon_sym_CARET] = ACTIONS(4551), - [anon_sym_AMP] = ACTIONS(4551), - [anon_sym_LT_DASH] = ACTIONS(4551), - [sym_none] = ACTIONS(4553), - [sym_true] = ACTIONS(4553), - [sym_false] = ACTIONS(4553), - [sym_nil] = ACTIONS(4553), - [anon_sym_if] = ACTIONS(4553), - [anon_sym_DOLLARif] = ACTIONS(4553), - [anon_sym_match] = ACTIONS(4553), - [anon_sym_select] = ACTIONS(4553), - [anon_sym_lock] = ACTIONS(4553), - [anon_sym_rlock] = ACTIONS(4553), - [anon_sym_unsafe] = ACTIONS(4553), - [anon_sym_sql] = ACTIONS(4553), - [sym_int_literal] = ACTIONS(4553), - [sym_float_literal] = ACTIONS(4551), - [sym_rune_literal] = ACTIONS(4551), - [sym_pseudo_compile_time_identifier] = ACTIONS(4553), - [anon_sym_shared] = ACTIONS(4553), - [anon_sym_map_LBRACK] = ACTIONS(4551), - [anon_sym_chan] = ACTIONS(4553), - [anon_sym_thread] = ACTIONS(4553), - [anon_sym_atomic] = ACTIONS(4553), - [anon_sym_assert] = ACTIONS(4553), - [anon_sym_defer] = ACTIONS(4553), - [anon_sym_goto] = ACTIONS(4553), - [anon_sym_break] = ACTIONS(4553), - [anon_sym_continue] = ACTIONS(4553), - [anon_sym_return] = ACTIONS(4553), - [anon_sym_DOLLARfor] = ACTIONS(4553), - [anon_sym_for] = ACTIONS(4553), - [anon_sym_POUND] = ACTIONS(4551), - [anon_sym_asm] = ACTIONS(4553), - [anon_sym_AT_LBRACK] = ACTIONS(4551), - [sym___double_quote] = ACTIONS(4551), - [sym___single_quote] = ACTIONS(4551), - [sym___c_double_quote] = ACTIONS(4551), - [sym___c_single_quote] = ACTIONS(4551), - [sym___r_double_quote] = ACTIONS(4551), - [sym___r_single_quote] = ACTIONS(4551), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_PIPE] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4531), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_GT_GT_GT] = ACTIONS(603), + [anon_sym_AMP_CARET] = ACTIONS(603), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_or] = ACTIONS(607), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_is] = ACTIONS(607), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(607), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(607), }, [1578] = { [sym_line_comment] = STATE(1578), [sym_block_comment] = STATE(1578), - [sym_reference_expression] = STATE(4479), - [sym_type_reference_expression] = STATE(2597), - [sym_plain_type] = STATE(2710), - [sym__plain_type_without_special] = STATE(2699), - [sym_anon_struct_type] = STATE(2700), - [sym_multi_return_type] = STATE(2699), - [sym_result_type] = STATE(2699), - [sym_option_type] = STATE(2699), - [sym_qualified_type] = STATE(2597), - [sym_fixed_array_type] = STATE(2700), - [sym_array_type] = STATE(2700), - [sym_pointer_type] = STATE(2700), - [sym_wrong_pointer_type] = STATE(2700), - [sym_map_type] = STATE(2700), - [sym_channel_type] = STATE(2700), - [sym_shared_type] = STATE(2700), - [sym_thread_type] = STATE(2700), - [sym_atomic_type] = STATE(2700), - [sym_generic_type] = STATE(2700), - [sym_function_type] = STATE(2700), - [sym_identifier] = ACTIONS(4523), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(4525), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(4527), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(4529), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(4531), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_BANG] = ACTIONS(4535), - [anon_sym_LBRACK2] = ACTIONS(4537), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(4539), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(4541), - [anon_sym_map_LBRACK] = ACTIONS(4543), - [anon_sym_chan] = ACTIONS(4545), - [anon_sym_thread] = ACTIONS(4547), - [anon_sym_atomic] = ACTIONS(4549), - [anon_sym_DOT_DOT] = ACTIONS(589), - }, - [1579] = { - [sym_line_comment] = STATE(1579), - [sym_block_comment] = STATE(1579), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2320), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), + [sym_reference_expression] = STATE(4316), + [sym_type_reference_expression] = STATE(2611), + [sym_plain_type] = STATE(2719), + [sym__plain_type_without_special] = STATE(2692), + [sym_anon_struct_type] = STATE(2693), + [sym_multi_return_type] = STATE(2692), + [sym_result_type] = STATE(2692), + [sym_option_type] = STATE(2692), + [sym_qualified_type] = STATE(2611), + [sym_fixed_array_type] = STATE(2693), + [sym_array_type] = STATE(2693), + [sym_pointer_type] = STATE(2693), + [sym_wrong_pointer_type] = STATE(2693), + [sym_map_type] = STATE(2693), + [sym_channel_type] = STATE(2693), + [sym_shared_type] = STATE(2693), + [sym_thread_type] = STATE(2693), + [sym_atomic_type] = STATE(2693), + [sym_generic_type] = STATE(2693), + [sym_function_type] = STATE(2693), + [sym_identifier] = ACTIONS(4533), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(567), [anon_sym_as] = ACTIONS(567), [anon_sym_LBRACE] = ACTIONS(563), [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(4535), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(4537), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3566), + [anon_sym_STAR] = ACTIONS(4539), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(563), [anon_sym_LT] = ACTIONS(567), @@ -186756,14 +186658,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(563), [anon_sym_DOT_DOT_DOT] = ACTIONS(563), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(4541), [anon_sym_PLUS_PLUS] = ACTIONS(563), [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4555), - [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(4543), + [anon_sym_BANG] = ACTIONS(4545), + [anon_sym_LBRACK2] = ACTIONS(4547), [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(4549), [anon_sym_LT_LT] = ACTIONS(563), [anon_sym_GT_GT] = ACTIONS(567), [anon_sym_GT_GT_GT] = ACTIONS(563), @@ -186777,159 +186679,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(563), [anon_sym_in] = ACTIONS(567), [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(4551), + [anon_sym_map_LBRACK] = ACTIONS(4553), + [anon_sym_chan] = ACTIONS(4555), + [anon_sym_thread] = ACTIONS(4557), + [anon_sym_atomic] = ACTIONS(4559), [anon_sym_DOT_DOT] = ACTIONS(567), }, + [1579] = { + [sym_line_comment] = STATE(1579), + [sym_block_comment] = STATE(1579), + [sym_reference_expression] = STATE(4316), + [sym_type_reference_expression] = STATE(2611), + [sym_plain_type] = STATE(2715), + [sym__plain_type_without_special] = STATE(2692), + [sym_anon_struct_type] = STATE(2693), + [sym_multi_return_type] = STATE(2692), + [sym_result_type] = STATE(2692), + [sym_option_type] = STATE(2692), + [sym_qualified_type] = STATE(2611), + [sym_fixed_array_type] = STATE(2693), + [sym_array_type] = STATE(2693), + [sym_pointer_type] = STATE(2693), + [sym_wrong_pointer_type] = STATE(2693), + [sym_map_type] = STATE(2693), + [sym_channel_type] = STATE(2693), + [sym_shared_type] = STATE(2693), + [sym_thread_type] = STATE(2693), + [sym_atomic_type] = STATE(2693), + [sym_generic_type] = STATE(2693), + [sym_function_type] = STATE(2693), + [sym_identifier] = ACTIONS(4533), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(4535), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(4541), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_QMARK] = ACTIONS(4543), + [anon_sym_BANG] = ACTIONS(4545), + [anon_sym_LBRACK2] = ACTIONS(4547), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(4549), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(595), + [anon_sym_AMP_CARET] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(595), + [anon_sym_POUND_LBRACK] = ACTIONS(595), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(595), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(595), + [anon_sym_shared] = ACTIONS(4551), + [anon_sym_map_LBRACK] = ACTIONS(4553), + [anon_sym_chan] = ACTIONS(4555), + [anon_sym_thread] = ACTIONS(4557), + [anon_sym_atomic] = ACTIONS(4559), + [anon_sym_DOT_DOT] = ACTIONS(597), + }, [1580] = { [sym_line_comment] = STATE(1580), [sym_block_comment] = STATE(1580), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2345), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), + [sym_reference_expression] = STATE(4316), + [sym_type_reference_expression] = STATE(2611), + [sym_plain_type] = STATE(2703), + [sym__plain_type_without_special] = STATE(2692), + [sym_anon_struct_type] = STATE(2693), + [sym_multi_return_type] = STATE(2692), + [sym_result_type] = STATE(2692), + [sym_option_type] = STATE(2692), + [sym_qualified_type] = STATE(2611), + [sym_fixed_array_type] = STATE(2693), + [sym_array_type] = STATE(2693), + [sym_pointer_type] = STATE(2693), + [sym_wrong_pointer_type] = STATE(2693), + [sym_map_type] = STATE(2693), + [sym_channel_type] = STATE(2693), + [sym_shared_type] = STATE(2693), + [sym_thread_type] = STATE(2693), + [sym_atomic_type] = STATE(2693), + [sym_generic_type] = STATE(2693), + [sym_function_type] = STATE(2693), + [sym_identifier] = ACTIONS(4533), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(625), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(627), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(625), - [anon_sym_AMP_CARET] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(625), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(625), - [anon_sym_POUND_LBRACK] = ACTIONS(625), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(625), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(625), - [anon_sym_COLON_EQ] = ACTIONS(625), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(4535), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(4537), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(4539), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(599), + [anon_sym_GT_EQ] = ACTIONS(599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(4541), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(4543), + [anon_sym_BANG] = ACTIONS(4545), + [anon_sym_LBRACK2] = ACTIONS(4547), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(4549), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(599), + [anon_sym_AMP_CARET] = ACTIONS(599), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(599), + [anon_sym_shared] = ACTIONS(4551), + [anon_sym_map_LBRACK] = ACTIONS(4553), + [anon_sym_chan] = ACTIONS(4555), + [anon_sym_thread] = ACTIONS(4557), + [anon_sym_atomic] = ACTIONS(4559), + [anon_sym_DOT_DOT] = ACTIONS(601), }, [1581] = { [sym_line_comment] = STATE(1581), [sym_block_comment] = STATE(1581), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2332), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(4557), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2386), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4559), - [anon_sym_LPAREN] = ACTIONS(4559), - [anon_sym_fn] = ACTIONS(4557), - [anon_sym_PLUS] = ACTIONS(4559), - [anon_sym_DASH] = ACTIONS(4559), - [anon_sym_STAR] = ACTIONS(4559), - [anon_sym_struct] = ACTIONS(4557), - [anon_sym_mut] = ACTIONS(4557), - [anon_sym_QMARK] = ACTIONS(4559), - [anon_sym_BANG] = ACTIONS(4559), - [anon_sym_go] = ACTIONS(4557), - [anon_sym_spawn] = ACTIONS(4557), - [anon_sym_json_DOTdecode] = ACTIONS(4559), - [anon_sym_LBRACK2] = ACTIONS(4559), - [anon_sym_TILDE] = ACTIONS(4559), - [anon_sym_CARET] = ACTIONS(4559), - [anon_sym_AMP] = ACTIONS(4559), - [anon_sym_LT_DASH] = ACTIONS(4559), - [sym_none] = ACTIONS(4557), - [sym_true] = ACTIONS(4557), - [sym_false] = ACTIONS(4557), - [sym_nil] = ACTIONS(4557), - [anon_sym_if] = ACTIONS(4557), - [anon_sym_DOLLARif] = ACTIONS(4557), - [anon_sym_match] = ACTIONS(4557), - [anon_sym_select] = ACTIONS(4557), - [anon_sym_lock] = ACTIONS(4557), - [anon_sym_rlock] = ACTIONS(4557), - [anon_sym_unsafe] = ACTIONS(4557), - [anon_sym_sql] = ACTIONS(4557), - [sym_int_literal] = ACTIONS(4557), - [sym_float_literal] = ACTIONS(4559), - [sym_rune_literal] = ACTIONS(4559), - [sym_pseudo_compile_time_identifier] = ACTIONS(4557), - [anon_sym_shared] = ACTIONS(4557), - [anon_sym_map_LBRACK] = ACTIONS(4559), - [anon_sym_chan] = ACTIONS(4557), - [anon_sym_thread] = ACTIONS(4557), - [anon_sym_atomic] = ACTIONS(4557), - [sym___double_quote] = ACTIONS(4559), - [sym___single_quote] = ACTIONS(4559), - [sym___c_double_quote] = ACTIONS(4559), - [sym___c_single_quote] = ACTIONS(4559), - [sym___r_double_quote] = ACTIONS(4559), - [sym___r_single_quote] = ACTIONS(4559), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_PIPE] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4531), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_GT_GT_GT] = ACTIONS(603), + [anon_sym_AMP_CARET] = ACTIONS(603), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_or] = ACTIONS(607), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_is] = ACTIONS(607), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(607), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_COLON_EQ] = ACTIONS(603), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [1582] = { [sym_line_comment] = STATE(1582), @@ -186980,6 +186956,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4563), [sym_float_literal] = ACTIONS(4561), [sym_rune_literal] = ACTIONS(4561), + [anon_sym_SQUOTE] = ACTIONS(4561), + [anon_sym_DQUOTE] = ACTIONS(4561), + [anon_sym_c_SQUOTE] = ACTIONS(4561), + [anon_sym_c_DQUOTE] = ACTIONS(4561), + [anon_sym_r_SQUOTE] = ACTIONS(4561), + [anon_sym_r_DQUOTE] = ACTIONS(4561), [sym_pseudo_compile_time_identifier] = ACTIONS(4563), [anon_sym_shared] = ACTIONS(4563), [anon_sym_map_LBRACK] = ACTIONS(4561), @@ -186997,12 +186979,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4561), [anon_sym_asm] = ACTIONS(4563), [anon_sym_AT_LBRACK] = ACTIONS(4561), - [sym___double_quote] = ACTIONS(4561), - [sym___single_quote] = ACTIONS(4561), - [sym___c_double_quote] = ACTIONS(4561), - [sym___c_single_quote] = ACTIONS(4561), - [sym___r_double_quote] = ACTIONS(4561), - [sym___r_single_quote] = ACTIONS(4561), }, [1583] = { [sym_line_comment] = STATE(1583), @@ -187053,6 +187029,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_int_literal] = ACTIONS(4567), [sym_float_literal] = ACTIONS(4565), [sym_rune_literal] = ACTIONS(4565), + [anon_sym_SQUOTE] = ACTIONS(4565), + [anon_sym_DQUOTE] = ACTIONS(4565), + [anon_sym_c_SQUOTE] = ACTIONS(4565), + [anon_sym_c_DQUOTE] = ACTIONS(4565), + [anon_sym_r_SQUOTE] = ACTIONS(4565), + [anon_sym_r_DQUOTE] = ACTIONS(4565), [sym_pseudo_compile_time_identifier] = ACTIONS(4567), [anon_sym_shared] = ACTIONS(4567), [anon_sym_map_LBRACK] = ACTIONS(4565), @@ -187070,1876 +187052,1840 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(4565), [anon_sym_asm] = ACTIONS(4567), [anon_sym_AT_LBRACK] = ACTIONS(4565), - [sym___double_quote] = ACTIONS(4565), - [sym___single_quote] = ACTIONS(4565), - [sym___c_double_quote] = ACTIONS(4565), - [sym___c_single_quote] = ACTIONS(4565), - [sym___r_double_quote] = ACTIONS(4565), - [sym___r_single_quote] = ACTIONS(4565), }, [1584] = { [sym_line_comment] = STATE(1584), [sym_block_comment] = STATE(1584), - [ts_builtin_sym_end] = ACTIONS(4569), - [sym_identifier] = ACTIONS(4571), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2386), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(605), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_import] = ACTIONS(4571), - [anon_sym_DOT] = ACTIONS(4571), - [anon_sym_LBRACE] = ACTIONS(4569), - [anon_sym_const] = ACTIONS(4571), - [anon_sym_LPAREN] = ACTIONS(4569), - [anon_sym___global] = ACTIONS(4571), - [anon_sym_type] = ACTIONS(4571), - [anon_sym_fn] = ACTIONS(4571), - [anon_sym_PLUS] = ACTIONS(4569), - [anon_sym_DASH] = ACTIONS(4569), - [anon_sym_STAR] = ACTIONS(4569), - [anon_sym_struct] = ACTIONS(4571), - [anon_sym_union] = ACTIONS(4571), - [anon_sym_pub] = ACTIONS(4571), - [anon_sym_mut] = ACTIONS(4571), - [anon_sym_enum] = ACTIONS(4571), - [anon_sym_interface] = ACTIONS(4571), - [anon_sym_QMARK] = ACTIONS(4569), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_PIPE] = ACTIONS(607), + [anon_sym_fn] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_STAR] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(515), [anon_sym_BANG] = ACTIONS(4569), - [anon_sym_go] = ACTIONS(4571), - [anon_sym_spawn] = ACTIONS(4571), - [anon_sym_json_DOTdecode] = ACTIONS(4569), - [anon_sym_LBRACK2] = ACTIONS(4569), - [anon_sym_TILDE] = ACTIONS(4569), - [anon_sym_CARET] = ACTIONS(4569), - [anon_sym_AMP] = ACTIONS(4569), - [anon_sym_LT_DASH] = ACTIONS(4569), - [sym_none] = ACTIONS(4571), - [sym_true] = ACTIONS(4571), - [sym_false] = ACTIONS(4571), - [sym_nil] = ACTIONS(4571), - [anon_sym_if] = ACTIONS(4571), - [anon_sym_DOLLARif] = ACTIONS(4571), - [anon_sym_match] = ACTIONS(4571), - [anon_sym_select] = ACTIONS(4571), - [anon_sym_lock] = ACTIONS(4571), - [anon_sym_rlock] = ACTIONS(4571), - [anon_sym_unsafe] = ACTIONS(4571), - [anon_sym_sql] = ACTIONS(4571), - [sym_int_literal] = ACTIONS(4571), - [sym_float_literal] = ACTIONS(4569), - [sym_rune_literal] = ACTIONS(4569), - [sym_pseudo_compile_time_identifier] = ACTIONS(4571), - [anon_sym_shared] = ACTIONS(4571), - [anon_sym_map_LBRACK] = ACTIONS(4569), - [anon_sym_chan] = ACTIONS(4571), - [anon_sym_thread] = ACTIONS(4571), - [anon_sym_atomic] = ACTIONS(4571), - [anon_sym_assert] = ACTIONS(4571), - [anon_sym_defer] = ACTIONS(4571), - [anon_sym_goto] = ACTIONS(4571), - [anon_sym_break] = ACTIONS(4571), - [anon_sym_continue] = ACTIONS(4571), - [anon_sym_return] = ACTIONS(4571), - [anon_sym_DOLLARfor] = ACTIONS(4571), - [anon_sym_for] = ACTIONS(4571), - [anon_sym_POUND] = ACTIONS(4569), - [anon_sym_asm] = ACTIONS(4571), - [anon_sym_AT_LBRACK] = ACTIONS(4569), - [sym___double_quote] = ACTIONS(4569), - [sym___single_quote] = ACTIONS(4569), - [sym___c_double_quote] = ACTIONS(4569), - [sym___c_single_quote] = ACTIONS(4569), - [sym___r_double_quote] = ACTIONS(4569), - [sym___r_single_quote] = ACTIONS(4569), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_GT_GT_GT] = ACTIONS(603), + [anon_sym_AMP_CARET] = ACTIONS(603), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_or] = ACTIONS(607), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_is] = ACTIONS(607), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(607), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_COLON_EQ] = ACTIONS(603), + [anon_sym_shared] = ACTIONS(623), + [anon_sym_map_LBRACK] = ACTIONS(97), + [anon_sym_chan] = ACTIONS(99), + [anon_sym_thread] = ACTIONS(101), + [anon_sym_atomic] = ACTIONS(103), }, [1585] = { [sym_line_comment] = STATE(1585), [sym_block_comment] = STATE(1585), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2320), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), + [ts_builtin_sym_end] = ACTIONS(4571), + [sym_identifier] = ACTIONS(4573), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3564), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3566), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4573), - [anon_sym_LBRACK2] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(563), - [anon_sym_AMP_CARET] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_COLON_EQ] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_import] = ACTIONS(4573), + [anon_sym_DOT] = ACTIONS(4573), + [anon_sym_LBRACE] = ACTIONS(4571), + [anon_sym_const] = ACTIONS(4573), + [anon_sym_LPAREN] = ACTIONS(4571), + [anon_sym___global] = ACTIONS(4573), + [anon_sym_type] = ACTIONS(4573), + [anon_sym_fn] = ACTIONS(4573), + [anon_sym_PLUS] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [anon_sym_STAR] = ACTIONS(4571), + [anon_sym_struct] = ACTIONS(4573), + [anon_sym_union] = ACTIONS(4573), + [anon_sym_pub] = ACTIONS(4573), + [anon_sym_mut] = ACTIONS(4573), + [anon_sym_enum] = ACTIONS(4573), + [anon_sym_interface] = ACTIONS(4573), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_BANG] = ACTIONS(4571), + [anon_sym_go] = ACTIONS(4573), + [anon_sym_spawn] = ACTIONS(4573), + [anon_sym_json_DOTdecode] = ACTIONS(4571), + [anon_sym_LBRACK2] = ACTIONS(4571), + [anon_sym_TILDE] = ACTIONS(4571), + [anon_sym_CARET] = ACTIONS(4571), + [anon_sym_AMP] = ACTIONS(4571), + [anon_sym_LT_DASH] = ACTIONS(4571), + [sym_none] = ACTIONS(4573), + [sym_true] = ACTIONS(4573), + [sym_false] = ACTIONS(4573), + [sym_nil] = ACTIONS(4573), + [anon_sym_if] = ACTIONS(4573), + [anon_sym_DOLLARif] = ACTIONS(4573), + [anon_sym_match] = ACTIONS(4573), + [anon_sym_select] = ACTIONS(4573), + [anon_sym_lock] = ACTIONS(4573), + [anon_sym_rlock] = ACTIONS(4573), + [anon_sym_unsafe] = ACTIONS(4573), + [anon_sym_sql] = ACTIONS(4573), + [sym_int_literal] = ACTIONS(4573), + [sym_float_literal] = ACTIONS(4571), + [sym_rune_literal] = ACTIONS(4571), + [anon_sym_SQUOTE] = ACTIONS(4571), + [anon_sym_DQUOTE] = ACTIONS(4571), + [anon_sym_c_SQUOTE] = ACTIONS(4571), + [anon_sym_c_DQUOTE] = ACTIONS(4571), + [anon_sym_r_SQUOTE] = ACTIONS(4571), + [anon_sym_r_DQUOTE] = ACTIONS(4571), + [sym_pseudo_compile_time_identifier] = ACTIONS(4573), + [anon_sym_shared] = ACTIONS(4573), + [anon_sym_map_LBRACK] = ACTIONS(4571), + [anon_sym_chan] = ACTIONS(4573), + [anon_sym_thread] = ACTIONS(4573), + [anon_sym_atomic] = ACTIONS(4573), + [anon_sym_assert] = ACTIONS(4573), + [anon_sym_defer] = ACTIONS(4573), + [anon_sym_goto] = ACTIONS(4573), + [anon_sym_break] = ACTIONS(4573), + [anon_sym_continue] = ACTIONS(4573), + [anon_sym_return] = ACTIONS(4573), + [anon_sym_DOLLARfor] = ACTIONS(4573), + [anon_sym_for] = ACTIONS(4573), + [anon_sym_POUND] = ACTIONS(4571), + [anon_sym_asm] = ACTIONS(4573), + [anon_sym_AT_LBRACK] = ACTIONS(4571), }, [1586] = { [sym_line_comment] = STATE(1586), [sym_block_comment] = STATE(1586), - [ts_builtin_sym_end] = ACTIONS(4575), - [sym_identifier] = ACTIONS(4577), + [sym_reference_expression] = STATE(4423), + [sym_type_reference_expression] = STATE(3543), + [sym_plain_type] = STATE(2307), + [sym__plain_type_without_special] = STATE(2290), + [sym_anon_struct_type] = STATE(2292), + [sym_multi_return_type] = STATE(2290), + [sym_result_type] = STATE(2290), + [sym_option_type] = STATE(2290), + [sym_qualified_type] = STATE(3543), + [sym_fixed_array_type] = STATE(2292), + [sym_array_type] = STATE(2292), + [sym_pointer_type] = STATE(2292), + [sym_wrong_pointer_type] = STATE(2292), + [sym_map_type] = STATE(2292), + [sym_channel_type] = STATE(2292), + [sym_shared_type] = STATE(2292), + [sym_thread_type] = STATE(2292), + [sym_atomic_type] = STATE(2292), + [sym_generic_type] = STATE(2292), + [sym_function_type] = STATE(2292), + [sym_identifier] = ACTIONS(4575), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_import] = ACTIONS(4577), - [anon_sym_DOT] = ACTIONS(4577), - [anon_sym_LBRACE] = ACTIONS(4575), - [anon_sym_const] = ACTIONS(4577), - [anon_sym_LPAREN] = ACTIONS(4575), - [anon_sym___global] = ACTIONS(4577), - [anon_sym_type] = ACTIONS(4577), - [anon_sym_fn] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(4575), - [anon_sym_DASH] = ACTIONS(4575), - [anon_sym_STAR] = ACTIONS(4575), - [anon_sym_struct] = ACTIONS(4577), - [anon_sym_union] = ACTIONS(4577), - [anon_sym_pub] = ACTIONS(4577), - [anon_sym_mut] = ACTIONS(4577), - [anon_sym_enum] = ACTIONS(4577), - [anon_sym_interface] = ACTIONS(4577), - [anon_sym_QMARK] = ACTIONS(4575), - [anon_sym_BANG] = ACTIONS(4575), - [anon_sym_go] = ACTIONS(4577), - [anon_sym_spawn] = ACTIONS(4577), - [anon_sym_json_DOTdecode] = ACTIONS(4575), - [anon_sym_LBRACK2] = ACTIONS(4575), - [anon_sym_TILDE] = ACTIONS(4575), - [anon_sym_CARET] = ACTIONS(4575), - [anon_sym_AMP] = ACTIONS(4575), - [anon_sym_LT_DASH] = ACTIONS(4575), - [sym_none] = ACTIONS(4577), - [sym_true] = ACTIONS(4577), - [sym_false] = ACTIONS(4577), - [sym_nil] = ACTIONS(4577), - [anon_sym_if] = ACTIONS(4577), - [anon_sym_DOLLARif] = ACTIONS(4577), - [anon_sym_match] = ACTIONS(4577), - [anon_sym_select] = ACTIONS(4577), - [anon_sym_lock] = ACTIONS(4577), - [anon_sym_rlock] = ACTIONS(4577), - [anon_sym_unsafe] = ACTIONS(4577), - [anon_sym_sql] = ACTIONS(4577), - [sym_int_literal] = ACTIONS(4577), - [sym_float_literal] = ACTIONS(4575), - [sym_rune_literal] = ACTIONS(4575), - [sym_pseudo_compile_time_identifier] = ACTIONS(4577), - [anon_sym_shared] = ACTIONS(4577), - [anon_sym_map_LBRACK] = ACTIONS(4575), - [anon_sym_chan] = ACTIONS(4577), - [anon_sym_thread] = ACTIONS(4577), - [anon_sym_atomic] = ACTIONS(4577), - [anon_sym_assert] = ACTIONS(4577), - [anon_sym_defer] = ACTIONS(4577), - [anon_sym_goto] = ACTIONS(4577), - [anon_sym_break] = ACTIONS(4577), - [anon_sym_continue] = ACTIONS(4577), - [anon_sym_return] = ACTIONS(4577), - [anon_sym_DOLLARfor] = ACTIONS(4577), - [anon_sym_for] = ACTIONS(4577), - [anon_sym_POUND] = ACTIONS(4575), - [anon_sym_asm] = ACTIONS(4577), - [anon_sym_AT_LBRACK] = ACTIONS(4575), - [sym___double_quote] = ACTIONS(4575), - [sym___single_quote] = ACTIONS(4575), - [sym___c_double_quote] = ACTIONS(4575), - [sym___c_single_quote] = ACTIONS(4575), - [sym___r_double_quote] = ACTIONS(4575), - [sym___r_single_quote] = ACTIONS(4575), + [anon_sym_DOT] = ACTIONS(4575), + [anon_sym_LBRACE] = ACTIONS(4577), + [anon_sym_LPAREN] = ACTIONS(4577), + [anon_sym_fn] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(4577), + [anon_sym_DASH] = ACTIONS(4577), + [anon_sym_STAR] = ACTIONS(4577), + [anon_sym_struct] = ACTIONS(4575), + [anon_sym_mut] = ACTIONS(4575), + [anon_sym_QMARK] = ACTIONS(4577), + [anon_sym_BANG] = ACTIONS(4577), + [anon_sym_go] = ACTIONS(4575), + [anon_sym_spawn] = ACTIONS(4575), + [anon_sym_json_DOTdecode] = ACTIONS(4577), + [anon_sym_LBRACK2] = ACTIONS(4577), + [anon_sym_TILDE] = ACTIONS(4577), + [anon_sym_CARET] = ACTIONS(4577), + [anon_sym_AMP] = ACTIONS(4577), + [anon_sym_LT_DASH] = ACTIONS(4577), + [sym_none] = ACTIONS(4575), + [sym_true] = ACTIONS(4575), + [sym_false] = ACTIONS(4575), + [sym_nil] = ACTIONS(4575), + [anon_sym_if] = ACTIONS(4575), + [anon_sym_DOLLARif] = ACTIONS(4575), + [anon_sym_match] = ACTIONS(4575), + [anon_sym_select] = ACTIONS(4575), + [anon_sym_lock] = ACTIONS(4575), + [anon_sym_rlock] = ACTIONS(4575), + [anon_sym_unsafe] = ACTIONS(4575), + [anon_sym_sql] = ACTIONS(4575), + [sym_int_literal] = ACTIONS(4575), + [sym_float_literal] = ACTIONS(4577), + [sym_rune_literal] = ACTIONS(4577), + [anon_sym_SQUOTE] = ACTIONS(4577), + [anon_sym_DQUOTE] = ACTIONS(4577), + [anon_sym_c_SQUOTE] = ACTIONS(4577), + [anon_sym_c_DQUOTE] = ACTIONS(4577), + [anon_sym_r_SQUOTE] = ACTIONS(4577), + [anon_sym_r_DQUOTE] = ACTIONS(4577), + [sym_pseudo_compile_time_identifier] = ACTIONS(4575), + [anon_sym_shared] = ACTIONS(4575), + [anon_sym_map_LBRACK] = ACTIONS(4577), + [anon_sym_chan] = ACTIONS(4575), + [anon_sym_thread] = ACTIONS(4575), + [anon_sym_atomic] = ACTIONS(4575), }, [1587] = { [sym_line_comment] = STATE(1587), [sym_block_comment] = STATE(1587), - [sym_reference_expression] = STATE(4498), - [sym_type_reference_expression] = STATE(3460), - [sym_plain_type] = STATE(2320), - [sym__plain_type_without_special] = STATE(2360), - [sym_anon_struct_type] = STATE(2362), - [sym_multi_return_type] = STATE(2360), - [sym_result_type] = STATE(2360), - [sym_option_type] = STATE(2360), - [sym_qualified_type] = STATE(3460), - [sym_fixed_array_type] = STATE(2362), - [sym_array_type] = STATE(2362), - [sym_pointer_type] = STATE(2362), - [sym_wrong_pointer_type] = STATE(2362), - [sym_map_type] = STATE(2362), - [sym_channel_type] = STATE(2362), - [sym_shared_type] = STATE(2362), - [sym_thread_type] = STATE(2362), - [sym_atomic_type] = STATE(2362), - [sym_generic_type] = STATE(2362), - [sym_function_type] = STATE(2362), - [sym_identifier] = ACTIONS(565), + [ts_builtin_sym_end] = ACTIONS(4579), + [sym_identifier] = ACTIONS(4581), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3564), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3566), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4555), - [anon_sym_LBRACK2] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(563), - [anon_sym_AMP_CARET] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_COLON_EQ] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_import] = ACTIONS(4581), + [anon_sym_DOT] = ACTIONS(4581), + [anon_sym_LBRACE] = ACTIONS(4579), + [anon_sym_const] = ACTIONS(4581), + [anon_sym_LPAREN] = ACTIONS(4579), + [anon_sym___global] = ACTIONS(4581), + [anon_sym_type] = ACTIONS(4581), + [anon_sym_fn] = ACTIONS(4581), + [anon_sym_PLUS] = ACTIONS(4579), + [anon_sym_DASH] = ACTIONS(4579), + [anon_sym_STAR] = ACTIONS(4579), + [anon_sym_struct] = ACTIONS(4581), + [anon_sym_union] = ACTIONS(4581), + [anon_sym_pub] = ACTIONS(4581), + [anon_sym_mut] = ACTIONS(4581), + [anon_sym_enum] = ACTIONS(4581), + [anon_sym_interface] = ACTIONS(4581), + [anon_sym_QMARK] = ACTIONS(4579), + [anon_sym_BANG] = ACTIONS(4579), + [anon_sym_go] = ACTIONS(4581), + [anon_sym_spawn] = ACTIONS(4581), + [anon_sym_json_DOTdecode] = ACTIONS(4579), + [anon_sym_LBRACK2] = ACTIONS(4579), + [anon_sym_TILDE] = ACTIONS(4579), + [anon_sym_CARET] = ACTIONS(4579), + [anon_sym_AMP] = ACTIONS(4579), + [anon_sym_LT_DASH] = ACTIONS(4579), + [sym_none] = ACTIONS(4581), + [sym_true] = ACTIONS(4581), + [sym_false] = ACTIONS(4581), + [sym_nil] = ACTIONS(4581), + [anon_sym_if] = ACTIONS(4581), + [anon_sym_DOLLARif] = ACTIONS(4581), + [anon_sym_match] = ACTIONS(4581), + [anon_sym_select] = ACTIONS(4581), + [anon_sym_lock] = ACTIONS(4581), + [anon_sym_rlock] = ACTIONS(4581), + [anon_sym_unsafe] = ACTIONS(4581), + [anon_sym_sql] = ACTIONS(4581), + [sym_int_literal] = ACTIONS(4581), + [sym_float_literal] = ACTIONS(4579), + [sym_rune_literal] = ACTIONS(4579), + [anon_sym_SQUOTE] = ACTIONS(4579), + [anon_sym_DQUOTE] = ACTIONS(4579), + [anon_sym_c_SQUOTE] = ACTIONS(4579), + [anon_sym_c_DQUOTE] = ACTIONS(4579), + [anon_sym_r_SQUOTE] = ACTIONS(4579), + [anon_sym_r_DQUOTE] = ACTIONS(4579), + [sym_pseudo_compile_time_identifier] = ACTIONS(4581), + [anon_sym_shared] = ACTIONS(4581), + [anon_sym_map_LBRACK] = ACTIONS(4579), + [anon_sym_chan] = ACTIONS(4581), + [anon_sym_thread] = ACTIONS(4581), + [anon_sym_atomic] = ACTIONS(4581), + [anon_sym_assert] = ACTIONS(4581), + [anon_sym_defer] = ACTIONS(4581), + [anon_sym_goto] = ACTIONS(4581), + [anon_sym_break] = ACTIONS(4581), + [anon_sym_continue] = ACTIONS(4581), + [anon_sym_return] = ACTIONS(4581), + [anon_sym_DOLLARfor] = ACTIONS(4581), + [anon_sym_for] = ACTIONS(4581), + [anon_sym_POUND] = ACTIONS(4579), + [anon_sym_asm] = ACTIONS(4581), + [anon_sym_AT_LBRACK] = ACTIONS(4579), }, [1588] = { [sym_line_comment] = STATE(1588), [sym_block_comment] = STATE(1588), [ts_builtin_sym_end] = ACTIONS(135), - [sym_identifier] = ACTIONS(4579), + [sym_identifier] = ACTIONS(4583), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4579), + [anon_sym_DOT] = ACTIONS(4583), [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(4579), + [anon_sym_const] = ACTIONS(4583), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym___global] = ACTIONS(4579), - [anon_sym_type] = ACTIONS(4579), - [anon_sym_fn] = ACTIONS(4579), + [anon_sym___global] = ACTIONS(4583), + [anon_sym_type] = ACTIONS(4583), + [anon_sym_fn] = ACTIONS(4583), [anon_sym_PLUS] = ACTIONS(135), [anon_sym_DASH] = ACTIONS(135), [anon_sym_STAR] = ACTIONS(135), - [anon_sym_struct] = ACTIONS(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_struct] = ACTIONS(4583), + [anon_sym_union] = ACTIONS(4583), + [anon_sym_pub] = ACTIONS(4583), + [anon_sym_mut] = ACTIONS(4583), + [anon_sym_enum] = ACTIONS(4583), + [anon_sym_interface] = ACTIONS(4583), [anon_sym_QMARK] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(135), - [anon_sym_go] = ACTIONS(4579), - [anon_sym_spawn] = ACTIONS(4579), + [anon_sym_go] = ACTIONS(4583), + [anon_sym_spawn] = ACTIONS(4583), [anon_sym_json_DOTdecode] = ACTIONS(135), [anon_sym_LBRACK2] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(135), [anon_sym_CARET] = ACTIONS(135), [anon_sym_AMP] = ACTIONS(135), [anon_sym_LT_DASH] = ACTIONS(135), - [sym_none] = ACTIONS(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_none] = ACTIONS(4583), + [sym_true] = ACTIONS(4583), + [sym_false] = ACTIONS(4583), + [sym_nil] = ACTIONS(4583), + [anon_sym_if] = ACTIONS(4583), + [anon_sym_DOLLARif] = ACTIONS(4583), + [anon_sym_match] = ACTIONS(4583), + [anon_sym_select] = ACTIONS(4583), + [anon_sym_lock] = ACTIONS(4583), + [anon_sym_rlock] = ACTIONS(4583), + [anon_sym_unsafe] = ACTIONS(4583), + [anon_sym_sql] = ACTIONS(4583), + [sym_int_literal] = ACTIONS(4583), [sym_float_literal] = ACTIONS(135), [sym_rune_literal] = ACTIONS(135), - [sym_pseudo_compile_time_identifier] = ACTIONS(4579), - [anon_sym_shared] = ACTIONS(4579), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(135), + [anon_sym_c_SQUOTE] = ACTIONS(135), + [anon_sym_c_DQUOTE] = ACTIONS(135), + [anon_sym_r_SQUOTE] = ACTIONS(135), + [anon_sym_r_DQUOTE] = ACTIONS(135), + [sym_pseudo_compile_time_identifier] = ACTIONS(4583), + [anon_sym_shared] = ACTIONS(4583), [anon_sym_map_LBRACK] = ACTIONS(135), - [anon_sym_chan] = ACTIONS(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_chan] = ACTIONS(4583), + [anon_sym_thread] = ACTIONS(4583), + [anon_sym_atomic] = ACTIONS(4583), + [anon_sym_assert] = ACTIONS(4583), + [anon_sym_defer] = ACTIONS(4583), + [anon_sym_goto] = ACTIONS(4583), + [anon_sym_break] = ACTIONS(4583), + [anon_sym_continue] = ACTIONS(4583), + [anon_sym_return] = ACTIONS(4583), + [anon_sym_DOLLARfor] = ACTIONS(4583), + [anon_sym_for] = ACTIONS(4583), [anon_sym_POUND] = ACTIONS(135), - [anon_sym_asm] = ACTIONS(4579), + [anon_sym_asm] = ACTIONS(4583), [anon_sym_AT_LBRACK] = ACTIONS(135), - [sym___double_quote] = ACTIONS(135), - [sym___single_quote] = ACTIONS(135), - [sym___c_double_quote] = ACTIONS(135), - [sym___c_single_quote] = ACTIONS(135), - [sym___r_double_quote] = ACTIONS(135), - [sym___r_single_quote] = ACTIONS(135), }, [1589] = { [sym_line_comment] = STATE(1589), [sym_block_comment] = STATE(1589), - [sym_identifier] = ACTIONS(2870), - [anon_sym_LF] = ACTIONS(2870), - [anon_sym_CR] = ACTIONS(2870), - [anon_sym_CR_LF] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LF] = ACTIONS(2237), + [anon_sym_CR] = ACTIONS(2237), + [anon_sym_CR_LF] = ACTIONS(2237), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_as] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2870), - [anon_sym_RBRACE] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_EQ] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_fn] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_EQ_EQ] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2870), - [anon_sym_LT_EQ] = ACTIONS(2870), - [anon_sym_GT_EQ] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2870), - [anon_sym_COLON] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_LBRACK2] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_LT_LT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2870), - [anon_sym_GT_GT_GT] = ACTIONS(2870), - [anon_sym_AMP_CARET] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_or] = ACTIONS(2870), - [anon_sym_QMARK_DOT] = ACTIONS(2870), - [anon_sym_POUND_LBRACK] = ACTIONS(2870), - [anon_sym_is] = ACTIONS(2870), - [anon_sym_BANGis] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(2870), - [anon_sym_BANGin] = ACTIONS(2870), - [anon_sym_STAR_EQ] = ACTIONS(2870), - [anon_sym_SLASH_EQ] = ACTIONS(2870), - [anon_sym_PERCENT_EQ] = ACTIONS(2870), - [anon_sym_LT_LT_EQ] = ACTIONS(2870), - [anon_sym_GT_GT_EQ] = ACTIONS(2870), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2870), - [anon_sym_AMP_EQ] = ACTIONS(2870), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2870), - [anon_sym_PLUS_EQ] = ACTIONS(2870), - [anon_sym_DASH_EQ] = ACTIONS(2870), - [anon_sym_PIPE_EQ] = ACTIONS(2870), - [anon_sym_CARET_EQ] = ACTIONS(2870), - [anon_sym_COLON_EQ] = ACTIONS(2870), - [anon_sym_shared] = ACTIONS(2870), - [anon_sym_map_LBRACK] = ACTIONS(2870), - [anon_sym_chan] = ACTIONS(2870), - [anon_sym_thread] = ACTIONS(2870), - [anon_sym_atomic] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_COMMA] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_EQ] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_PERCENT] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_GT] = ACTIONS(2237), + [anon_sym_EQ_EQ] = ACTIONS(2237), + [anon_sym_BANG_EQ] = ACTIONS(2237), + [anon_sym_LT_EQ] = ACTIONS(2237), + [anon_sym_GT_EQ] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_COLON] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_QMARK] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_LBRACK2] = ACTIONS(2237), + [anon_sym_CARET] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_LT_DASH] = ACTIONS(2237), + [anon_sym_LT_LT] = ACTIONS(2237), + [anon_sym_GT_GT] = ACTIONS(2237), + [anon_sym_GT_GT_GT] = ACTIONS(2237), + [anon_sym_AMP_CARET] = ACTIONS(2237), + [anon_sym_AMP_AMP] = ACTIONS(2237), + [anon_sym_PIPE_PIPE] = ACTIONS(2237), + [anon_sym_or] = ACTIONS(2237), + [anon_sym_QMARK_DOT] = ACTIONS(2237), + [anon_sym_POUND_LBRACK] = ACTIONS(2237), + [anon_sym_is] = ACTIONS(2237), + [anon_sym_BANGis] = ACTIONS(2237), + [anon_sym_in] = ACTIONS(2237), + [anon_sym_BANGin] = ACTIONS(2237), + [anon_sym_STAR_EQ] = ACTIONS(2237), + [anon_sym_SLASH_EQ] = ACTIONS(2237), + [anon_sym_PERCENT_EQ] = ACTIONS(2237), + [anon_sym_LT_LT_EQ] = ACTIONS(2237), + [anon_sym_GT_GT_EQ] = ACTIONS(2237), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2237), + [anon_sym_AMP_EQ] = ACTIONS(2237), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2237), + [anon_sym_PLUS_EQ] = ACTIONS(2237), + [anon_sym_DASH_EQ] = ACTIONS(2237), + [anon_sym_PIPE_EQ] = ACTIONS(2237), + [anon_sym_CARET_EQ] = ACTIONS(2237), + [anon_sym_COLON_EQ] = ACTIONS(2237), + [anon_sym_shared] = ACTIONS(2237), + [anon_sym_map_LBRACK] = ACTIONS(2237), + [anon_sym_chan] = ACTIONS(2237), + [anon_sym_thread] = ACTIONS(2237), + [anon_sym_atomic] = ACTIONS(2237), }, [1590] = { [sym_line_comment] = STATE(1590), [sym_block_comment] = STATE(1590), - [sym_identifier] = ACTIONS(2918), - [anon_sym_LF] = ACTIONS(2918), - [anon_sym_CR] = ACTIONS(2918), - [anon_sym_CR_LF] = ACTIONS(2918), + [sym_identifier] = ACTIONS(2197), + [anon_sym_LF] = ACTIONS(2197), + [anon_sym_CR] = ACTIONS(2197), + [anon_sym_CR_LF] = ACTIONS(2197), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_as] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2918), - [anon_sym_RBRACE] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_EQ] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_fn] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_GT] = ACTIONS(2918), - [anon_sym_EQ_EQ] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2918), - [anon_sym_LT_EQ] = ACTIONS(2918), - [anon_sym_GT_EQ] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_COLON] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2918), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_LBRACK2] = ACTIONS(2918), - [anon_sym_CARET] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2918), - [anon_sym_LT_LT] = ACTIONS(2918), - [anon_sym_GT_GT] = ACTIONS(2918), - [anon_sym_GT_GT_GT] = ACTIONS(2918), - [anon_sym_AMP_CARET] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_or] = ACTIONS(2918), - [anon_sym_QMARK_DOT] = ACTIONS(2918), - [anon_sym_POUND_LBRACK] = ACTIONS(2918), - [anon_sym_is] = ACTIONS(2918), - [anon_sym_BANGis] = ACTIONS(2918), - [anon_sym_in] = ACTIONS(2918), - [anon_sym_BANGin] = ACTIONS(2918), - [anon_sym_STAR_EQ] = ACTIONS(2918), - [anon_sym_SLASH_EQ] = ACTIONS(2918), - [anon_sym_PERCENT_EQ] = ACTIONS(2918), - [anon_sym_LT_LT_EQ] = ACTIONS(2918), - [anon_sym_GT_GT_EQ] = ACTIONS(2918), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2918), - [anon_sym_AMP_EQ] = ACTIONS(2918), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2918), - [anon_sym_PLUS_EQ] = ACTIONS(2918), - [anon_sym_DASH_EQ] = ACTIONS(2918), - [anon_sym_PIPE_EQ] = ACTIONS(2918), - [anon_sym_CARET_EQ] = ACTIONS(2918), - [anon_sym_COLON_EQ] = ACTIONS(2918), - [anon_sym_shared] = ACTIONS(2918), - [anon_sym_map_LBRACK] = ACTIONS(2918), - [anon_sym_chan] = ACTIONS(2918), - [anon_sym_thread] = ACTIONS(2918), - [anon_sym_atomic] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_COMMA] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_EQ] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2197), + [anon_sym_fn] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_PERCENT] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_GT] = ACTIONS(2197), + [anon_sym_EQ_EQ] = ACTIONS(2197), + [anon_sym_BANG_EQ] = ACTIONS(2197), + [anon_sym_LT_EQ] = ACTIONS(2197), + [anon_sym_GT_EQ] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2197), + [anon_sym_COLON] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [anon_sym_QMARK] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_LBRACK2] = ACTIONS(2197), + [anon_sym_CARET] = ACTIONS(2197), + [anon_sym_AMP] = ACTIONS(2197), + [anon_sym_LT_DASH] = ACTIONS(2197), + [anon_sym_LT_LT] = ACTIONS(2197), + [anon_sym_GT_GT] = ACTIONS(2197), + [anon_sym_GT_GT_GT] = ACTIONS(2197), + [anon_sym_AMP_CARET] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(2197), + [anon_sym_PIPE_PIPE] = ACTIONS(2197), + [anon_sym_or] = ACTIONS(2197), + [anon_sym_QMARK_DOT] = ACTIONS(2197), + [anon_sym_POUND_LBRACK] = ACTIONS(2197), + [anon_sym_is] = ACTIONS(2197), + [anon_sym_BANGis] = ACTIONS(2197), + [anon_sym_in] = ACTIONS(2197), + [anon_sym_BANGin] = ACTIONS(2197), + [anon_sym_STAR_EQ] = ACTIONS(2197), + [anon_sym_SLASH_EQ] = ACTIONS(2197), + [anon_sym_PERCENT_EQ] = ACTIONS(2197), + [anon_sym_LT_LT_EQ] = ACTIONS(2197), + [anon_sym_GT_GT_EQ] = ACTIONS(2197), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2197), + [anon_sym_AMP_EQ] = ACTIONS(2197), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2197), + [anon_sym_PLUS_EQ] = ACTIONS(2197), + [anon_sym_DASH_EQ] = ACTIONS(2197), + [anon_sym_PIPE_EQ] = ACTIONS(2197), + [anon_sym_CARET_EQ] = ACTIONS(2197), + [anon_sym_COLON_EQ] = ACTIONS(2197), + [anon_sym_shared] = ACTIONS(2197), + [anon_sym_map_LBRACK] = ACTIONS(2197), + [anon_sym_chan] = ACTIONS(2197), + [anon_sym_thread] = ACTIONS(2197), + [anon_sym_atomic] = ACTIONS(2197), }, [1591] = { [sym_line_comment] = STATE(1591), [sym_block_comment] = STATE(1591), - [sym_identifier] = ACTIONS(2914), - [anon_sym_LF] = ACTIONS(2914), - [anon_sym_CR] = ACTIONS(2914), - [anon_sym_CR_LF] = ACTIONS(2914), + [sym_identifier] = ACTIONS(2171), + [anon_sym_LF] = ACTIONS(2171), + [anon_sym_CR] = ACTIONS(2171), + [anon_sym_CR_LF] = ACTIONS(2171), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2914), - [anon_sym_as] = ACTIONS(2914), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_RBRACE] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2914), - [anon_sym_fn] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_SLASH] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_GT] = ACTIONS(2914), - [anon_sym_EQ_EQ] = ACTIONS(2914), - [anon_sym_BANG_EQ] = ACTIONS(2914), - [anon_sym_LT_EQ] = ACTIONS(2914), - [anon_sym_GT_EQ] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_QMARK] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_LBRACK2] = ACTIONS(2914), - [anon_sym_CARET] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_LT_DASH] = ACTIONS(2914), - [anon_sym_LT_LT] = ACTIONS(2914), - [anon_sym_GT_GT] = ACTIONS(2914), - [anon_sym_GT_GT_GT] = ACTIONS(2914), - [anon_sym_AMP_CARET] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_PIPE_PIPE] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2914), - [anon_sym_QMARK_DOT] = ACTIONS(2914), - [anon_sym_POUND_LBRACK] = ACTIONS(2914), - [anon_sym_is] = ACTIONS(2914), - [anon_sym_BANGis] = ACTIONS(2914), - [anon_sym_in] = ACTIONS(2914), - [anon_sym_BANGin] = ACTIONS(2914), - [anon_sym_STAR_EQ] = ACTIONS(2914), - [anon_sym_SLASH_EQ] = ACTIONS(2914), - [anon_sym_PERCENT_EQ] = ACTIONS(2914), - [anon_sym_LT_LT_EQ] = ACTIONS(2914), - [anon_sym_GT_GT_EQ] = ACTIONS(2914), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2914), - [anon_sym_AMP_EQ] = ACTIONS(2914), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2914), - [anon_sym_PLUS_EQ] = ACTIONS(2914), - [anon_sym_DASH_EQ] = ACTIONS(2914), - [anon_sym_PIPE_EQ] = ACTIONS(2914), - [anon_sym_CARET_EQ] = ACTIONS(2914), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_shared] = ACTIONS(2914), - [anon_sym_map_LBRACK] = ACTIONS(2914), - [anon_sym_chan] = ACTIONS(2914), - [anon_sym_thread] = ACTIONS(2914), - [anon_sym_atomic] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2171), + [anon_sym_as] = ACTIONS(2171), + [anon_sym_COMMA] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_EQ] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2171), + [anon_sym_fn] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_GT] = ACTIONS(2171), + [anon_sym_EQ_EQ] = ACTIONS(2171), + [anon_sym_BANG_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_struct] = ACTIONS(2171), + [anon_sym_COLON] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_LBRACK2] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2171), + [anon_sym_LT_LT] = ACTIONS(2171), + [anon_sym_GT_GT] = ACTIONS(2171), + [anon_sym_GT_GT_GT] = ACTIONS(2171), + [anon_sym_AMP_CARET] = ACTIONS(2171), + [anon_sym_AMP_AMP] = ACTIONS(2171), + [anon_sym_PIPE_PIPE] = ACTIONS(2171), + [anon_sym_or] = ACTIONS(2171), + [anon_sym_QMARK_DOT] = ACTIONS(2171), + [anon_sym_POUND_LBRACK] = ACTIONS(2171), + [anon_sym_is] = ACTIONS(2171), + [anon_sym_BANGis] = ACTIONS(2171), + [anon_sym_in] = ACTIONS(2171), + [anon_sym_BANGin] = ACTIONS(2171), + [anon_sym_STAR_EQ] = ACTIONS(2171), + [anon_sym_SLASH_EQ] = ACTIONS(2171), + [anon_sym_PERCENT_EQ] = ACTIONS(2171), + [anon_sym_LT_LT_EQ] = ACTIONS(2171), + [anon_sym_GT_GT_EQ] = ACTIONS(2171), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2171), + [anon_sym_AMP_EQ] = ACTIONS(2171), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2171), + [anon_sym_PLUS_EQ] = ACTIONS(2171), + [anon_sym_DASH_EQ] = ACTIONS(2171), + [anon_sym_PIPE_EQ] = ACTIONS(2171), + [anon_sym_CARET_EQ] = ACTIONS(2171), + [anon_sym_COLON_EQ] = ACTIONS(2171), + [anon_sym_shared] = ACTIONS(2171), + [anon_sym_map_LBRACK] = ACTIONS(2171), + [anon_sym_chan] = ACTIONS(2171), + [anon_sym_thread] = ACTIONS(2171), + [anon_sym_atomic] = ACTIONS(2171), }, [1592] = { [sym_line_comment] = STATE(1592), [sym_block_comment] = STATE(1592), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), + [sym_identifier] = ACTIONS(2167), + [anon_sym_LF] = ACTIONS(2167), + [anon_sym_CR] = ACTIONS(2167), + [anon_sym_CR_LF] = ACTIONS(2167), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_COLON] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_or] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2704), - [anon_sym_POUND_LBRACK] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2704), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2704), - [anon_sym_STAR_EQ] = ACTIONS(2704), - [anon_sym_SLASH_EQ] = ACTIONS(2704), - [anon_sym_PERCENT_EQ] = ACTIONS(2704), - [anon_sym_LT_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_AMP_EQ] = ACTIONS(2704), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2704), - [anon_sym_PLUS_EQ] = ACTIONS(2704), - [anon_sym_DASH_EQ] = ACTIONS(2704), - [anon_sym_PIPE_EQ] = ACTIONS(2704), - [anon_sym_CARET_EQ] = ACTIONS(2704), - [anon_sym_COLON_EQ] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_COMMA] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_EQ] = ACTIONS(2167), + [anon_sym_PIPE] = ACTIONS(2167), + [anon_sym_fn] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_PERCENT] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2167), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_LT_EQ] = ACTIONS(2167), + [anon_sym_GT_EQ] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_COLON] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_QMARK] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2167), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_LT_DASH] = ACTIONS(2167), + [anon_sym_LT_LT] = ACTIONS(2167), + [anon_sym_GT_GT] = ACTIONS(2167), + [anon_sym_GT_GT_GT] = ACTIONS(2167), + [anon_sym_AMP_CARET] = ACTIONS(2167), + [anon_sym_AMP_AMP] = ACTIONS(2167), + [anon_sym_PIPE_PIPE] = ACTIONS(2167), + [anon_sym_or] = ACTIONS(2167), + [anon_sym_QMARK_DOT] = ACTIONS(2167), + [anon_sym_POUND_LBRACK] = ACTIONS(2167), + [anon_sym_is] = ACTIONS(2167), + [anon_sym_BANGis] = ACTIONS(2167), + [anon_sym_in] = ACTIONS(2167), + [anon_sym_BANGin] = ACTIONS(2167), + [anon_sym_STAR_EQ] = ACTIONS(2167), + [anon_sym_SLASH_EQ] = ACTIONS(2167), + [anon_sym_PERCENT_EQ] = ACTIONS(2167), + [anon_sym_LT_LT_EQ] = ACTIONS(2167), + [anon_sym_GT_GT_EQ] = ACTIONS(2167), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2167), + [anon_sym_AMP_EQ] = ACTIONS(2167), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2167), + [anon_sym_PLUS_EQ] = ACTIONS(2167), + [anon_sym_DASH_EQ] = ACTIONS(2167), + [anon_sym_PIPE_EQ] = ACTIONS(2167), + [anon_sym_CARET_EQ] = ACTIONS(2167), + [anon_sym_COLON_EQ] = ACTIONS(2167), + [anon_sym_shared] = ACTIONS(2167), + [anon_sym_map_LBRACK] = ACTIONS(2167), + [anon_sym_chan] = ACTIONS(2167), + [anon_sym_thread] = ACTIONS(2167), + [anon_sym_atomic] = ACTIONS(2167), }, [1593] = { [sym_line_comment] = STATE(1593), [sym_block_comment] = STATE(1593), - [sym_identifier] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_CR] = ACTIONS(2812), - [anon_sym_CR_LF] = ACTIONS(2812), + [sym_identifier] = ACTIONS(2193), + [anon_sym_LF] = ACTIONS(2193), + [anon_sym_CR] = ACTIONS(2193), + [anon_sym_CR_LF] = ACTIONS(2193), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2812), - [anon_sym_as] = ACTIONS(2812), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_SLASH] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_EQ_EQ] = ACTIONS(2812), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_EQ] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_QMARK] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_LBRACK2] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_LT_DASH] = ACTIONS(2812), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_GT_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_CARET] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_PIPE_PIPE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2812), - [anon_sym_QMARK_DOT] = ACTIONS(2812), - [anon_sym_POUND_LBRACK] = ACTIONS(2812), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_BANGis] = ACTIONS(2812), - [anon_sym_in] = ACTIONS(2812), - [anon_sym_BANGin] = ACTIONS(2812), - [anon_sym_STAR_EQ] = ACTIONS(2812), - [anon_sym_SLASH_EQ] = ACTIONS(2812), - [anon_sym_PERCENT_EQ] = ACTIONS(2812), - [anon_sym_LT_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_GT_EQ] = ACTIONS(2812), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2812), - [anon_sym_AMP_EQ] = ACTIONS(2812), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2812), - [anon_sym_PLUS_EQ] = ACTIONS(2812), - [anon_sym_DASH_EQ] = ACTIONS(2812), - [anon_sym_PIPE_EQ] = ACTIONS(2812), - [anon_sym_CARET_EQ] = ACTIONS(2812), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_shared] = ACTIONS(2812), - [anon_sym_map_LBRACK] = ACTIONS(2812), - [anon_sym_chan] = ACTIONS(2812), - [anon_sym_thread] = ACTIONS(2812), - [anon_sym_atomic] = ACTIONS(2812), + [anon_sym_DOT] = ACTIONS(2193), + [anon_sym_as] = ACTIONS(2193), + [anon_sym_COMMA] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_EQ] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_fn] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_PERCENT] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_GT] = ACTIONS(2193), + [anon_sym_EQ_EQ] = ACTIONS(2193), + [anon_sym_BANG_EQ] = ACTIONS(2193), + [anon_sym_LT_EQ] = ACTIONS(2193), + [anon_sym_GT_EQ] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2193), + [anon_sym_COLON] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [anon_sym_QMARK] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_LBRACK2] = ACTIONS(2193), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_LT_DASH] = ACTIONS(2193), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_GT_GT] = ACTIONS(2193), + [anon_sym_GT_GT_GT] = ACTIONS(2193), + [anon_sym_AMP_CARET] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2193), + [anon_sym_PIPE_PIPE] = ACTIONS(2193), + [anon_sym_or] = ACTIONS(2193), + [anon_sym_QMARK_DOT] = ACTIONS(2193), + [anon_sym_POUND_LBRACK] = ACTIONS(2193), + [anon_sym_is] = ACTIONS(2193), + [anon_sym_BANGis] = ACTIONS(2193), + [anon_sym_in] = ACTIONS(2193), + [anon_sym_BANGin] = ACTIONS(2193), + [anon_sym_STAR_EQ] = ACTIONS(2193), + [anon_sym_SLASH_EQ] = ACTIONS(2193), + [anon_sym_PERCENT_EQ] = ACTIONS(2193), + [anon_sym_LT_LT_EQ] = ACTIONS(2193), + [anon_sym_GT_GT_EQ] = ACTIONS(2193), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2193), + [anon_sym_AMP_EQ] = ACTIONS(2193), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2193), + [anon_sym_PLUS_EQ] = ACTIONS(2193), + [anon_sym_DASH_EQ] = ACTIONS(2193), + [anon_sym_PIPE_EQ] = ACTIONS(2193), + [anon_sym_CARET_EQ] = ACTIONS(2193), + [anon_sym_COLON_EQ] = ACTIONS(2193), + [anon_sym_shared] = ACTIONS(2193), + [anon_sym_map_LBRACK] = ACTIONS(2193), + [anon_sym_chan] = ACTIONS(2193), + [anon_sym_thread] = ACTIONS(2193), + [anon_sym_atomic] = ACTIONS(2193), }, [1594] = { [sym_line_comment] = STATE(1594), [sym_block_comment] = STATE(1594), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), + [sym_identifier] = ACTIONS(2193), + [anon_sym_LF] = ACTIONS(2193), + [anon_sym_CR] = ACTIONS(2193), + [anon_sym_CR_LF] = ACTIONS(2193), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_or] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2704), - [anon_sym_POUND_LBRACK] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2704), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2704), - [anon_sym_STAR_EQ] = ACTIONS(2704), - [anon_sym_SLASH_EQ] = ACTIONS(2704), - [anon_sym_PERCENT_EQ] = ACTIONS(2704), - [anon_sym_LT_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_AMP_EQ] = ACTIONS(2704), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2704), - [anon_sym_PLUS_EQ] = ACTIONS(2704), - [anon_sym_DASH_EQ] = ACTIONS(2704), - [anon_sym_PIPE_EQ] = ACTIONS(2704), - [anon_sym_CARET_EQ] = ACTIONS(2704), - [anon_sym_COLON_EQ] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2193), + [anon_sym_as] = ACTIONS(2193), + [anon_sym_COMMA] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_EQ] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_fn] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_PERCENT] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_GT] = ACTIONS(2193), + [anon_sym_EQ_EQ] = ACTIONS(2193), + [anon_sym_BANG_EQ] = ACTIONS(2193), + [anon_sym_LT_EQ] = ACTIONS(2193), + [anon_sym_GT_EQ] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2193), + [anon_sym_DASH_DASH] = ACTIONS(2193), + [anon_sym_QMARK] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_LBRACK2] = ACTIONS(2193), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_GT_GT] = ACTIONS(2193), + [anon_sym_GT_GT_GT] = ACTIONS(2193), + [anon_sym_AMP_CARET] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2193), + [anon_sym_PIPE_PIPE] = ACTIONS(2193), + [anon_sym_or] = ACTIONS(2193), + [anon_sym_QMARK_DOT] = ACTIONS(2193), + [anon_sym_POUND_LBRACK] = ACTIONS(2193), + [anon_sym_is] = ACTIONS(2193), + [anon_sym_BANGis] = ACTIONS(2193), + [anon_sym_in] = ACTIONS(2193), + [anon_sym_BANGin] = ACTIONS(2193), + [anon_sym_STAR_EQ] = ACTIONS(2193), + [anon_sym_SLASH_EQ] = ACTIONS(2193), + [anon_sym_PERCENT_EQ] = ACTIONS(2193), + [anon_sym_LT_LT_EQ] = ACTIONS(2193), + [anon_sym_GT_GT_EQ] = ACTIONS(2193), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2193), + [anon_sym_AMP_EQ] = ACTIONS(2193), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2193), + [anon_sym_PLUS_EQ] = ACTIONS(2193), + [anon_sym_DASH_EQ] = ACTIONS(2193), + [anon_sym_PIPE_EQ] = ACTIONS(2193), + [anon_sym_CARET_EQ] = ACTIONS(2193), + [anon_sym_COLON_EQ] = ACTIONS(2193), + [anon_sym_shared] = ACTIONS(2193), + [anon_sym_map_LBRACK] = ACTIONS(2193), + [anon_sym_chan] = ACTIONS(2193), + [anon_sym_thread] = ACTIONS(2193), + [anon_sym_atomic] = ACTIONS(2193), }, [1595] = { [sym_line_comment] = STATE(1595), [sym_block_comment] = STATE(1595), - [sym_identifier] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_CR] = ACTIONS(2812), - [anon_sym_CR_LF] = ACTIONS(2812), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LF] = ACTIONS(2237), + [anon_sym_CR] = ACTIONS(2237), + [anon_sym_CR_LF] = ACTIONS(2237), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2812), - [anon_sym_as] = ACTIONS(2812), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_SLASH] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_EQ_EQ] = ACTIONS(2812), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_EQ] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_QMARK] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_LBRACK2] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_GT_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_CARET] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_PIPE_PIPE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2812), - [anon_sym_QMARK_DOT] = ACTIONS(2812), - [anon_sym_POUND_LBRACK] = ACTIONS(2812), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_BANGis] = ACTIONS(2812), - [anon_sym_in] = ACTIONS(2812), - [anon_sym_BANGin] = ACTIONS(2812), - [anon_sym_STAR_EQ] = ACTIONS(2812), - [anon_sym_SLASH_EQ] = ACTIONS(2812), - [anon_sym_PERCENT_EQ] = ACTIONS(2812), - [anon_sym_LT_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_GT_EQ] = ACTIONS(2812), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2812), - [anon_sym_AMP_EQ] = ACTIONS(2812), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2812), - [anon_sym_PLUS_EQ] = ACTIONS(2812), - [anon_sym_DASH_EQ] = ACTIONS(2812), - [anon_sym_PIPE_EQ] = ACTIONS(2812), - [anon_sym_CARET_EQ] = ACTIONS(2812), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_shared] = ACTIONS(2812), - [anon_sym_map_LBRACK] = ACTIONS(2812), - [anon_sym_chan] = ACTIONS(2812), - [anon_sym_thread] = ACTIONS(2812), - [anon_sym_atomic] = ACTIONS(2812), + [anon_sym_DOT] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_COMMA] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_EQ] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_PERCENT] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_GT] = ACTIONS(2237), + [anon_sym_EQ_EQ] = ACTIONS(2237), + [anon_sym_BANG_EQ] = ACTIONS(2237), + [anon_sym_LT_EQ] = ACTIONS(2237), + [anon_sym_GT_EQ] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [anon_sym_QMARK] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_LBRACK2] = ACTIONS(2237), + [anon_sym_CARET] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_LT_LT] = ACTIONS(2237), + [anon_sym_GT_GT] = ACTIONS(2237), + [anon_sym_GT_GT_GT] = ACTIONS(2237), + [anon_sym_AMP_CARET] = ACTIONS(2237), + [anon_sym_AMP_AMP] = ACTIONS(2237), + [anon_sym_PIPE_PIPE] = ACTIONS(2237), + [anon_sym_or] = ACTIONS(2237), + [anon_sym_QMARK_DOT] = ACTIONS(2237), + [anon_sym_POUND_LBRACK] = ACTIONS(2237), + [anon_sym_is] = ACTIONS(2237), + [anon_sym_BANGis] = ACTIONS(2237), + [anon_sym_in] = ACTIONS(2237), + [anon_sym_BANGin] = ACTIONS(2237), + [anon_sym_STAR_EQ] = ACTIONS(2237), + [anon_sym_SLASH_EQ] = ACTIONS(2237), + [anon_sym_PERCENT_EQ] = ACTIONS(2237), + [anon_sym_LT_LT_EQ] = ACTIONS(2237), + [anon_sym_GT_GT_EQ] = ACTIONS(2237), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2237), + [anon_sym_AMP_EQ] = ACTIONS(2237), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2237), + [anon_sym_PLUS_EQ] = ACTIONS(2237), + [anon_sym_DASH_EQ] = ACTIONS(2237), + [anon_sym_PIPE_EQ] = ACTIONS(2237), + [anon_sym_CARET_EQ] = ACTIONS(2237), + [anon_sym_COLON_EQ] = ACTIONS(2237), + [anon_sym_shared] = ACTIONS(2237), + [anon_sym_map_LBRACK] = ACTIONS(2237), + [anon_sym_chan] = ACTIONS(2237), + [anon_sym_thread] = ACTIONS(2237), + [anon_sym_atomic] = ACTIONS(2237), }, [1596] = { [sym_line_comment] = STATE(1596), [sym_block_comment] = STATE(1596), - [sym_identifier] = ACTIONS(2870), - [anon_sym_LF] = ACTIONS(2870), - [anon_sym_CR] = ACTIONS(2870), - [anon_sym_CR_LF] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2197), + [anon_sym_LF] = ACTIONS(2197), + [anon_sym_CR] = ACTIONS(2197), + [anon_sym_CR_LF] = ACTIONS(2197), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_as] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2870), - [anon_sym_RBRACE] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_EQ] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_fn] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_EQ_EQ] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2870), - [anon_sym_LT_EQ] = ACTIONS(2870), - [anon_sym_GT_EQ] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_LBRACK2] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LT_LT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2870), - [anon_sym_GT_GT_GT] = ACTIONS(2870), - [anon_sym_AMP_CARET] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_or] = ACTIONS(2870), - [anon_sym_QMARK_DOT] = ACTIONS(2870), - [anon_sym_POUND_LBRACK] = ACTIONS(2870), - [anon_sym_is] = ACTIONS(2870), - [anon_sym_BANGis] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(2870), - [anon_sym_BANGin] = ACTIONS(2870), - [anon_sym_STAR_EQ] = ACTIONS(2870), - [anon_sym_SLASH_EQ] = ACTIONS(2870), - [anon_sym_PERCENT_EQ] = ACTIONS(2870), - [anon_sym_LT_LT_EQ] = ACTIONS(2870), - [anon_sym_GT_GT_EQ] = ACTIONS(2870), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2870), - [anon_sym_AMP_EQ] = ACTIONS(2870), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2870), - [anon_sym_PLUS_EQ] = ACTIONS(2870), - [anon_sym_DASH_EQ] = ACTIONS(2870), - [anon_sym_PIPE_EQ] = ACTIONS(2870), - [anon_sym_CARET_EQ] = ACTIONS(2870), - [anon_sym_COLON_EQ] = ACTIONS(2870), - [anon_sym_shared] = ACTIONS(2870), - [anon_sym_map_LBRACK] = ACTIONS(2870), - [anon_sym_chan] = ACTIONS(2870), - [anon_sym_thread] = ACTIONS(2870), - [anon_sym_atomic] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_COMMA] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_EQ] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2197), + [anon_sym_fn] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_PERCENT] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_GT] = ACTIONS(2197), + [anon_sym_EQ_EQ] = ACTIONS(2197), + [anon_sym_BANG_EQ] = ACTIONS(2197), + [anon_sym_LT_EQ] = ACTIONS(2197), + [anon_sym_GT_EQ] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [anon_sym_QMARK] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_LBRACK2] = ACTIONS(2197), + [anon_sym_CARET] = ACTIONS(2197), + [anon_sym_AMP] = ACTIONS(2197), + [anon_sym_LT_LT] = ACTIONS(2197), + [anon_sym_GT_GT] = ACTIONS(2197), + [anon_sym_GT_GT_GT] = ACTIONS(2197), + [anon_sym_AMP_CARET] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(2197), + [anon_sym_PIPE_PIPE] = ACTIONS(2197), + [anon_sym_or] = ACTIONS(2197), + [anon_sym_QMARK_DOT] = ACTIONS(2197), + [anon_sym_POUND_LBRACK] = ACTIONS(2197), + [anon_sym_is] = ACTIONS(2197), + [anon_sym_BANGis] = ACTIONS(2197), + [anon_sym_in] = ACTIONS(2197), + [anon_sym_BANGin] = ACTIONS(2197), + [anon_sym_STAR_EQ] = ACTIONS(2197), + [anon_sym_SLASH_EQ] = ACTIONS(2197), + [anon_sym_PERCENT_EQ] = ACTIONS(2197), + [anon_sym_LT_LT_EQ] = ACTIONS(2197), + [anon_sym_GT_GT_EQ] = ACTIONS(2197), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2197), + [anon_sym_AMP_EQ] = ACTIONS(2197), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2197), + [anon_sym_PLUS_EQ] = ACTIONS(2197), + [anon_sym_DASH_EQ] = ACTIONS(2197), + [anon_sym_PIPE_EQ] = ACTIONS(2197), + [anon_sym_CARET_EQ] = ACTIONS(2197), + [anon_sym_COLON_EQ] = ACTIONS(2197), + [anon_sym_shared] = ACTIONS(2197), + [anon_sym_map_LBRACK] = ACTIONS(2197), + [anon_sym_chan] = ACTIONS(2197), + [anon_sym_thread] = ACTIONS(2197), + [anon_sym_atomic] = ACTIONS(2197), }, [1597] = { [sym_line_comment] = STATE(1597), [sym_block_comment] = STATE(1597), - [sym_identifier] = ACTIONS(2914), - [anon_sym_LF] = ACTIONS(2914), - [anon_sym_CR] = ACTIONS(2914), - [anon_sym_CR_LF] = ACTIONS(2914), + [sym_identifier] = ACTIONS(2167), + [anon_sym_LF] = ACTIONS(2167), + [anon_sym_CR] = ACTIONS(2167), + [anon_sym_CR_LF] = ACTIONS(2167), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2914), - [anon_sym_as] = ACTIONS(2914), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_RBRACE] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2914), - [anon_sym_fn] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_SLASH] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_GT] = ACTIONS(2914), - [anon_sym_EQ_EQ] = ACTIONS(2914), - [anon_sym_BANG_EQ] = ACTIONS(2914), - [anon_sym_LT_EQ] = ACTIONS(2914), - [anon_sym_GT_EQ] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_QMARK] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_LBRACK2] = ACTIONS(2914), - [anon_sym_CARET] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_LT_LT] = ACTIONS(2914), - [anon_sym_GT_GT] = ACTIONS(2914), - [anon_sym_GT_GT_GT] = ACTIONS(2914), - [anon_sym_AMP_CARET] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_PIPE_PIPE] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2914), - [anon_sym_QMARK_DOT] = ACTIONS(2914), - [anon_sym_POUND_LBRACK] = ACTIONS(2914), - [anon_sym_is] = ACTIONS(2914), - [anon_sym_BANGis] = ACTIONS(2914), - [anon_sym_in] = ACTIONS(2914), - [anon_sym_BANGin] = ACTIONS(2914), - [anon_sym_STAR_EQ] = ACTIONS(2914), - [anon_sym_SLASH_EQ] = ACTIONS(2914), - [anon_sym_PERCENT_EQ] = ACTIONS(2914), - [anon_sym_LT_LT_EQ] = ACTIONS(2914), - [anon_sym_GT_GT_EQ] = ACTIONS(2914), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2914), - [anon_sym_AMP_EQ] = ACTIONS(2914), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2914), - [anon_sym_PLUS_EQ] = ACTIONS(2914), - [anon_sym_DASH_EQ] = ACTIONS(2914), - [anon_sym_PIPE_EQ] = ACTIONS(2914), - [anon_sym_CARET_EQ] = ACTIONS(2914), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_shared] = ACTIONS(2914), - [anon_sym_map_LBRACK] = ACTIONS(2914), - [anon_sym_chan] = ACTIONS(2914), - [anon_sym_thread] = ACTIONS(2914), - [anon_sym_atomic] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_COMMA] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_EQ] = ACTIONS(2167), + [anon_sym_PIPE] = ACTIONS(2167), + [anon_sym_fn] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_PERCENT] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2167), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_LT_EQ] = ACTIONS(2167), + [anon_sym_GT_EQ] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [anon_sym_QMARK] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2167), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_LT_LT] = ACTIONS(2167), + [anon_sym_GT_GT] = ACTIONS(2167), + [anon_sym_GT_GT_GT] = ACTIONS(2167), + [anon_sym_AMP_CARET] = ACTIONS(2167), + [anon_sym_AMP_AMP] = ACTIONS(2167), + [anon_sym_PIPE_PIPE] = ACTIONS(2167), + [anon_sym_or] = ACTIONS(2167), + [anon_sym_QMARK_DOT] = ACTIONS(2167), + [anon_sym_POUND_LBRACK] = ACTIONS(2167), + [anon_sym_is] = ACTIONS(2167), + [anon_sym_BANGis] = ACTIONS(2167), + [anon_sym_in] = ACTIONS(2167), + [anon_sym_BANGin] = ACTIONS(2167), + [anon_sym_STAR_EQ] = ACTIONS(2167), + [anon_sym_SLASH_EQ] = ACTIONS(2167), + [anon_sym_PERCENT_EQ] = ACTIONS(2167), + [anon_sym_LT_LT_EQ] = ACTIONS(2167), + [anon_sym_GT_GT_EQ] = ACTIONS(2167), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2167), + [anon_sym_AMP_EQ] = ACTIONS(2167), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2167), + [anon_sym_PLUS_EQ] = ACTIONS(2167), + [anon_sym_DASH_EQ] = ACTIONS(2167), + [anon_sym_PIPE_EQ] = ACTIONS(2167), + [anon_sym_CARET_EQ] = ACTIONS(2167), + [anon_sym_COLON_EQ] = ACTIONS(2167), + [anon_sym_shared] = ACTIONS(2167), + [anon_sym_map_LBRACK] = ACTIONS(2167), + [anon_sym_chan] = ACTIONS(2167), + [anon_sym_thread] = ACTIONS(2167), + [anon_sym_atomic] = ACTIONS(2167), }, [1598] = { [sym_line_comment] = STATE(1598), [sym_block_comment] = STATE(1598), - [sym_identifier] = ACTIONS(2918), - [anon_sym_LF] = ACTIONS(2918), - [anon_sym_CR] = ACTIONS(2918), - [anon_sym_CR_LF] = ACTIONS(2918), + [sym_identifier] = ACTIONS(2171), + [anon_sym_LF] = ACTIONS(2171), + [anon_sym_CR] = ACTIONS(2171), + [anon_sym_CR_LF] = ACTIONS(2171), [anon_sym_SLASH_SLASH] = ACTIONS(497), [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_as] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2918), - [anon_sym_RBRACE] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_EQ] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_fn] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_GT] = ACTIONS(2918), - [anon_sym_EQ_EQ] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2918), - [anon_sym_LT_EQ] = ACTIONS(2918), - [anon_sym_GT_EQ] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2918), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_LBRACK2] = ACTIONS(2918), - [anon_sym_CARET] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LT_LT] = ACTIONS(2918), - [anon_sym_GT_GT] = ACTIONS(2918), - [anon_sym_GT_GT_GT] = ACTIONS(2918), - [anon_sym_AMP_CARET] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_or] = ACTIONS(2918), - [anon_sym_QMARK_DOT] = ACTIONS(2918), - [anon_sym_POUND_LBRACK] = ACTIONS(2918), - [anon_sym_is] = ACTIONS(2918), - [anon_sym_BANGis] = ACTIONS(2918), - [anon_sym_in] = ACTIONS(2918), - [anon_sym_BANGin] = ACTIONS(2918), - [anon_sym_STAR_EQ] = ACTIONS(2918), - [anon_sym_SLASH_EQ] = ACTIONS(2918), - [anon_sym_PERCENT_EQ] = ACTIONS(2918), - [anon_sym_LT_LT_EQ] = ACTIONS(2918), - [anon_sym_GT_GT_EQ] = ACTIONS(2918), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2918), - [anon_sym_AMP_EQ] = ACTIONS(2918), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2918), - [anon_sym_PLUS_EQ] = ACTIONS(2918), - [anon_sym_DASH_EQ] = ACTIONS(2918), - [anon_sym_PIPE_EQ] = ACTIONS(2918), - [anon_sym_CARET_EQ] = ACTIONS(2918), - [anon_sym_COLON_EQ] = ACTIONS(2918), - [anon_sym_shared] = ACTIONS(2918), - [anon_sym_map_LBRACK] = ACTIONS(2918), - [anon_sym_chan] = ACTIONS(2918), - [anon_sym_thread] = ACTIONS(2918), - [anon_sym_atomic] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2171), + [anon_sym_as] = ACTIONS(2171), + [anon_sym_COMMA] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_EQ] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2171), + [anon_sym_fn] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_GT] = ACTIONS(2171), + [anon_sym_EQ_EQ] = ACTIONS(2171), + [anon_sym_BANG_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_struct] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2171), + [anon_sym_DASH_DASH] = ACTIONS(2171), + [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_LBRACK2] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_LT] = ACTIONS(2171), + [anon_sym_GT_GT] = ACTIONS(2171), + [anon_sym_GT_GT_GT] = ACTIONS(2171), + [anon_sym_AMP_CARET] = ACTIONS(2171), + [anon_sym_AMP_AMP] = ACTIONS(2171), + [anon_sym_PIPE_PIPE] = ACTIONS(2171), + [anon_sym_or] = ACTIONS(2171), + [anon_sym_QMARK_DOT] = ACTIONS(2171), + [anon_sym_POUND_LBRACK] = ACTIONS(2171), + [anon_sym_is] = ACTIONS(2171), + [anon_sym_BANGis] = ACTIONS(2171), + [anon_sym_in] = ACTIONS(2171), + [anon_sym_BANGin] = ACTIONS(2171), + [anon_sym_STAR_EQ] = ACTIONS(2171), + [anon_sym_SLASH_EQ] = ACTIONS(2171), + [anon_sym_PERCENT_EQ] = ACTIONS(2171), + [anon_sym_LT_LT_EQ] = ACTIONS(2171), + [anon_sym_GT_GT_EQ] = ACTIONS(2171), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2171), + [anon_sym_AMP_EQ] = ACTIONS(2171), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2171), + [anon_sym_PLUS_EQ] = ACTIONS(2171), + [anon_sym_DASH_EQ] = ACTIONS(2171), + [anon_sym_PIPE_EQ] = ACTIONS(2171), + [anon_sym_CARET_EQ] = ACTIONS(2171), + [anon_sym_COLON_EQ] = ACTIONS(2171), + [anon_sym_shared] = ACTIONS(2171), + [anon_sym_map_LBRACK] = ACTIONS(2171), + [anon_sym_chan] = ACTIONS(2171), + [anon_sym_thread] = ACTIONS(2171), + [anon_sym_atomic] = ACTIONS(2171), }, [1599] = { [sym_line_comment] = STATE(1599), [sym_block_comment] = STATE(1599), - [sym_identifier] = ACTIONS(2812), + [sym_identifier] = ACTIONS(2167), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_as] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_SLASH] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_EQ_EQ] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_LT_EQ] = ACTIONS(2810), - [anon_sym_GT_EQ] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_PLUS_PLUS] = ACTIONS(2810), - [anon_sym_DASH_DASH] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_LBRACK2] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_GT_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_CARET] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_or] = ACTIONS(2812), - [anon_sym_QMARK_DOT] = ACTIONS(2810), - [anon_sym_POUND_LBRACK] = ACTIONS(2810), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_BANGis] = ACTIONS(2810), - [anon_sym_in] = ACTIONS(2812), - [anon_sym_BANGin] = ACTIONS(2810), - [anon_sym_STAR_EQ] = ACTIONS(2810), - [anon_sym_SLASH_EQ] = ACTIONS(2810), - [anon_sym_PERCENT_EQ] = ACTIONS(2810), - [anon_sym_LT_LT_EQ] = ACTIONS(2810), - [anon_sym_GT_GT_EQ] = ACTIONS(2810), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2810), - [anon_sym_AMP_EQ] = ACTIONS(2810), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2810), - [anon_sym_PLUS_EQ] = ACTIONS(2810), - [anon_sym_DASH_EQ] = ACTIONS(2810), - [anon_sym_PIPE_EQ] = ACTIONS(2810), - [anon_sym_CARET_EQ] = ACTIONS(2810), - [anon_sym_shared] = ACTIONS(2812), - [anon_sym_map_LBRACK] = ACTIONS(2810), - [anon_sym_chan] = ACTIONS(2812), - [anon_sym_thread] = ACTIONS(2812), - [anon_sym_atomic] = ACTIONS(2812), + [anon_sym_DOT] = ACTIONS(2165), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_COMMA] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_EQ] = ACTIONS(2167), + [anon_sym_PIPE] = ACTIONS(2167), + [anon_sym_fn] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_PERCENT] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2167), + [anon_sym_EQ_EQ] = ACTIONS(2165), + [anon_sym_BANG_EQ] = ACTIONS(2165), + [anon_sym_LT_EQ] = ACTIONS(2165), + [anon_sym_GT_EQ] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_COLON] = ACTIONS(2165), + [anon_sym_PLUS_PLUS] = ACTIONS(2165), + [anon_sym_DASH_DASH] = ACTIONS(2165), + [anon_sym_QMARK] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2167), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_LT_DASH] = ACTIONS(2165), + [anon_sym_LT_LT] = ACTIONS(2167), + [anon_sym_GT_GT] = ACTIONS(2167), + [anon_sym_GT_GT_GT] = ACTIONS(2167), + [anon_sym_AMP_CARET] = ACTIONS(2167), + [anon_sym_AMP_AMP] = ACTIONS(2165), + [anon_sym_PIPE_PIPE] = ACTIONS(2165), + [anon_sym_or] = ACTIONS(2167), + [anon_sym_QMARK_DOT] = ACTIONS(2165), + [anon_sym_POUND_LBRACK] = ACTIONS(2165), + [anon_sym_is] = ACTIONS(2167), + [anon_sym_BANGis] = ACTIONS(2165), + [anon_sym_in] = ACTIONS(2167), + [anon_sym_BANGin] = ACTIONS(2165), + [anon_sym_STAR_EQ] = ACTIONS(2165), + [anon_sym_SLASH_EQ] = ACTIONS(2165), + [anon_sym_PERCENT_EQ] = ACTIONS(2165), + [anon_sym_LT_LT_EQ] = ACTIONS(2165), + [anon_sym_GT_GT_EQ] = ACTIONS(2165), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2165), + [anon_sym_AMP_EQ] = ACTIONS(2165), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2165), + [anon_sym_PLUS_EQ] = ACTIONS(2165), + [anon_sym_DASH_EQ] = ACTIONS(2165), + [anon_sym_PIPE_EQ] = ACTIONS(2165), + [anon_sym_CARET_EQ] = ACTIONS(2165), + [anon_sym_shared] = ACTIONS(2167), + [anon_sym_map_LBRACK] = ACTIONS(2165), + [anon_sym_chan] = ACTIONS(2167), + [anon_sym_thread] = ACTIONS(2167), + [anon_sym_atomic] = ACTIONS(2167), }, [1600] = { [sym_line_comment] = STATE(1600), [sym_block_comment] = STATE(1600), - [sym_identifier] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2171), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2868), - [anon_sym_as] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_EQ] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_fn] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_EQ_EQ] = ACTIONS(2868), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_LT_EQ] = ACTIONS(2868), - [anon_sym_GT_EQ] = ACTIONS(2868), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2870), - [anon_sym_COLON] = ACTIONS(2868), - [anon_sym_PLUS_PLUS] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_LBRACK2] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2868), - [anon_sym_LT_LT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2870), - [anon_sym_GT_GT_GT] = ACTIONS(2870), - [anon_sym_AMP_CARET] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_PIPE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2870), - [anon_sym_QMARK_DOT] = ACTIONS(2868), - [anon_sym_POUND_LBRACK] = ACTIONS(2868), - [anon_sym_is] = ACTIONS(2870), - [anon_sym_BANGis] = ACTIONS(2868), - [anon_sym_in] = ACTIONS(2870), - [anon_sym_BANGin] = ACTIONS(2868), - [anon_sym_STAR_EQ] = ACTIONS(2868), - [anon_sym_SLASH_EQ] = ACTIONS(2868), - [anon_sym_PERCENT_EQ] = ACTIONS(2868), - [anon_sym_LT_LT_EQ] = ACTIONS(2868), - [anon_sym_GT_GT_EQ] = ACTIONS(2868), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2868), - [anon_sym_AMP_EQ] = ACTIONS(2868), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2868), - [anon_sym_PLUS_EQ] = ACTIONS(2868), - [anon_sym_DASH_EQ] = ACTIONS(2868), - [anon_sym_PIPE_EQ] = ACTIONS(2868), - [anon_sym_CARET_EQ] = ACTIONS(2868), - [anon_sym_shared] = ACTIONS(2870), - [anon_sym_map_LBRACK] = ACTIONS(2868), - [anon_sym_chan] = ACTIONS(2870), - [anon_sym_thread] = ACTIONS(2870), - [anon_sym_atomic] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(2169), + [anon_sym_as] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2169), + [anon_sym_COMMA] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_EQ] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2171), + [anon_sym_fn] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_GT] = ACTIONS(2171), + [anon_sym_EQ_EQ] = ACTIONS(2169), + [anon_sym_BANG_EQ] = ACTIONS(2169), + [anon_sym_LT_EQ] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_struct] = ACTIONS(2171), + [anon_sym_COLON] = ACTIONS(2169), + [anon_sym_PLUS_PLUS] = ACTIONS(2169), + [anon_sym_DASH_DASH] = ACTIONS(2169), + [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_LBRACK2] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_DASH] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2171), + [anon_sym_GT_GT] = ACTIONS(2171), + [anon_sym_GT_GT_GT] = ACTIONS(2171), + [anon_sym_AMP_CARET] = ACTIONS(2171), + [anon_sym_AMP_AMP] = ACTIONS(2169), + [anon_sym_PIPE_PIPE] = ACTIONS(2169), + [anon_sym_or] = ACTIONS(2171), + [anon_sym_QMARK_DOT] = ACTIONS(2169), + [anon_sym_POUND_LBRACK] = ACTIONS(2169), + [anon_sym_is] = ACTIONS(2171), + [anon_sym_BANGis] = ACTIONS(2169), + [anon_sym_in] = ACTIONS(2171), + [anon_sym_BANGin] = ACTIONS(2169), + [anon_sym_STAR_EQ] = ACTIONS(2169), + [anon_sym_SLASH_EQ] = ACTIONS(2169), + [anon_sym_PERCENT_EQ] = ACTIONS(2169), + [anon_sym_LT_LT_EQ] = ACTIONS(2169), + [anon_sym_GT_GT_EQ] = ACTIONS(2169), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2169), + [anon_sym_AMP_EQ] = ACTIONS(2169), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2169), + [anon_sym_PLUS_EQ] = ACTIONS(2169), + [anon_sym_DASH_EQ] = ACTIONS(2169), + [anon_sym_PIPE_EQ] = ACTIONS(2169), + [anon_sym_CARET_EQ] = ACTIONS(2169), + [anon_sym_shared] = ACTIONS(2171), + [anon_sym_map_LBRACK] = ACTIONS(2169), + [anon_sym_chan] = ACTIONS(2171), + [anon_sym_thread] = ACTIONS(2171), + [anon_sym_atomic] = ACTIONS(2171), }, [1601] = { [sym_line_comment] = STATE(1601), [sym_block_comment] = STATE(1601), - [sym_identifier] = ACTIONS(2918), + [sym_identifier] = ACTIONS(2197), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_as] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_fn] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_GT] = ACTIONS(2918), - [anon_sym_EQ_EQ] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_LT_EQ] = ACTIONS(2916), - [anon_sym_GT_EQ] = ACTIONS(2916), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_PLUS_PLUS] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_LBRACK2] = ACTIONS(2918), - [anon_sym_CARET] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_LT_LT] = ACTIONS(2918), - [anon_sym_GT_GT] = ACTIONS(2918), - [anon_sym_GT_GT_GT] = ACTIONS(2918), - [anon_sym_AMP_CARET] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_or] = ACTIONS(2918), - [anon_sym_QMARK_DOT] = ACTIONS(2916), - [anon_sym_POUND_LBRACK] = ACTIONS(2916), - [anon_sym_is] = ACTIONS(2918), - [anon_sym_BANGis] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(2918), - [anon_sym_BANGin] = ACTIONS(2916), - [anon_sym_STAR_EQ] = ACTIONS(2916), - [anon_sym_SLASH_EQ] = ACTIONS(2916), - [anon_sym_PERCENT_EQ] = ACTIONS(2916), - [anon_sym_LT_LT_EQ] = ACTIONS(2916), - [anon_sym_GT_GT_EQ] = ACTIONS(2916), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2916), - [anon_sym_AMP_EQ] = ACTIONS(2916), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2916), - [anon_sym_PLUS_EQ] = ACTIONS(2916), - [anon_sym_DASH_EQ] = ACTIONS(2916), - [anon_sym_PIPE_EQ] = ACTIONS(2916), - [anon_sym_CARET_EQ] = ACTIONS(2916), - [anon_sym_shared] = ACTIONS(2918), - [anon_sym_map_LBRACK] = ACTIONS(2916), - [anon_sym_chan] = ACTIONS(2918), - [anon_sym_thread] = ACTIONS(2918), - [anon_sym_atomic] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2195), + [anon_sym_COMMA] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2195), + [anon_sym_EQ] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2197), + [anon_sym_fn] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_PERCENT] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_GT] = ACTIONS(2197), + [anon_sym_EQ_EQ] = ACTIONS(2195), + [anon_sym_BANG_EQ] = ACTIONS(2195), + [anon_sym_LT_EQ] = ACTIONS(2195), + [anon_sym_GT_EQ] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2197), + [anon_sym_COLON] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_QMARK] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_LBRACK2] = ACTIONS(2197), + [anon_sym_CARET] = ACTIONS(2197), + [anon_sym_AMP] = ACTIONS(2197), + [anon_sym_LT_DASH] = ACTIONS(2195), + [anon_sym_LT_LT] = ACTIONS(2197), + [anon_sym_GT_GT] = ACTIONS(2197), + [anon_sym_GT_GT_GT] = ACTIONS(2197), + [anon_sym_AMP_CARET] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(2195), + [anon_sym_PIPE_PIPE] = ACTIONS(2195), + [anon_sym_or] = ACTIONS(2197), + [anon_sym_QMARK_DOT] = ACTIONS(2195), + [anon_sym_POUND_LBRACK] = ACTIONS(2195), + [anon_sym_is] = ACTIONS(2197), + [anon_sym_BANGis] = ACTIONS(2195), + [anon_sym_in] = ACTIONS(2197), + [anon_sym_BANGin] = ACTIONS(2195), + [anon_sym_STAR_EQ] = ACTIONS(2195), + [anon_sym_SLASH_EQ] = ACTIONS(2195), + [anon_sym_PERCENT_EQ] = ACTIONS(2195), + [anon_sym_LT_LT_EQ] = ACTIONS(2195), + [anon_sym_GT_GT_EQ] = ACTIONS(2195), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2195), + [anon_sym_AMP_EQ] = ACTIONS(2195), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2195), + [anon_sym_PLUS_EQ] = ACTIONS(2195), + [anon_sym_DASH_EQ] = ACTIONS(2195), + [anon_sym_PIPE_EQ] = ACTIONS(2195), + [anon_sym_CARET_EQ] = ACTIONS(2195), + [anon_sym_shared] = ACTIONS(2197), + [anon_sym_map_LBRACK] = ACTIONS(2195), + [anon_sym_chan] = ACTIONS(2197), + [anon_sym_thread] = ACTIONS(2197), + [anon_sym_atomic] = ACTIONS(2197), }, [1602] = { [sym_line_comment] = STATE(1602), [sym_block_comment] = STATE(1602), - [sym_identifier] = ACTIONS(2914), + [sym_identifier] = ACTIONS(2237), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_as] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2914), - [anon_sym_fn] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_SLASH] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_GT] = ACTIONS(2914), - [anon_sym_EQ_EQ] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_LT_EQ] = ACTIONS(2912), - [anon_sym_GT_EQ] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_COLON] = ACTIONS(2912), - [anon_sym_PLUS_PLUS] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_LBRACK2] = ACTIONS(2914), - [anon_sym_CARET] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_LT_DASH] = ACTIONS(2912), - [anon_sym_LT_LT] = ACTIONS(2914), - [anon_sym_GT_GT] = ACTIONS(2914), - [anon_sym_GT_GT_GT] = ACTIONS(2914), - [anon_sym_AMP_CARET] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_or] = ACTIONS(2914), - [anon_sym_QMARK_DOT] = ACTIONS(2912), - [anon_sym_POUND_LBRACK] = ACTIONS(2912), - [anon_sym_is] = ACTIONS(2914), - [anon_sym_BANGis] = ACTIONS(2912), - [anon_sym_in] = ACTIONS(2914), - [anon_sym_BANGin] = ACTIONS(2912), - [anon_sym_STAR_EQ] = ACTIONS(2912), - [anon_sym_SLASH_EQ] = ACTIONS(2912), - [anon_sym_PERCENT_EQ] = ACTIONS(2912), - [anon_sym_LT_LT_EQ] = ACTIONS(2912), - [anon_sym_GT_GT_EQ] = ACTIONS(2912), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2912), - [anon_sym_AMP_EQ] = ACTIONS(2912), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2912), - [anon_sym_PLUS_EQ] = ACTIONS(2912), - [anon_sym_DASH_EQ] = ACTIONS(2912), - [anon_sym_PIPE_EQ] = ACTIONS(2912), - [anon_sym_CARET_EQ] = ACTIONS(2912), - [anon_sym_shared] = ACTIONS(2914), - [anon_sym_map_LBRACK] = ACTIONS(2912), - [anon_sym_chan] = ACTIONS(2914), - [anon_sym_thread] = ACTIONS(2914), - [anon_sym_atomic] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_COMMA] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_EQ] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_PERCENT] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_GT] = ACTIONS(2237), + [anon_sym_EQ_EQ] = ACTIONS(2235), + [anon_sym_BANG_EQ] = ACTIONS(2235), + [anon_sym_LT_EQ] = ACTIONS(2235), + [anon_sym_GT_EQ] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_COLON] = ACTIONS(2235), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2235), + [anon_sym_QMARK] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_LBRACK2] = ACTIONS(2237), + [anon_sym_CARET] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_LT_DASH] = ACTIONS(2235), + [anon_sym_LT_LT] = ACTIONS(2237), + [anon_sym_GT_GT] = ACTIONS(2237), + [anon_sym_GT_GT_GT] = ACTIONS(2237), + [anon_sym_AMP_CARET] = ACTIONS(2237), + [anon_sym_AMP_AMP] = ACTIONS(2235), + [anon_sym_PIPE_PIPE] = ACTIONS(2235), + [anon_sym_or] = ACTIONS(2237), + [anon_sym_QMARK_DOT] = ACTIONS(2235), + [anon_sym_POUND_LBRACK] = ACTIONS(2235), + [anon_sym_is] = ACTIONS(2237), + [anon_sym_BANGis] = ACTIONS(2235), + [anon_sym_in] = ACTIONS(2237), + [anon_sym_BANGin] = ACTIONS(2235), + [anon_sym_STAR_EQ] = ACTIONS(2235), + [anon_sym_SLASH_EQ] = ACTIONS(2235), + [anon_sym_PERCENT_EQ] = ACTIONS(2235), + [anon_sym_LT_LT_EQ] = ACTIONS(2235), + [anon_sym_GT_GT_EQ] = ACTIONS(2235), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2235), + [anon_sym_AMP_EQ] = ACTIONS(2235), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2235), + [anon_sym_PLUS_EQ] = ACTIONS(2235), + [anon_sym_DASH_EQ] = ACTIONS(2235), + [anon_sym_PIPE_EQ] = ACTIONS(2235), + [anon_sym_CARET_EQ] = ACTIONS(2235), + [anon_sym_shared] = ACTIONS(2237), + [anon_sym_map_LBRACK] = ACTIONS(2235), + [anon_sym_chan] = ACTIONS(2237), + [anon_sym_thread] = ACTIONS(2237), + [anon_sym_atomic] = ACTIONS(2237), }, [1603] = { [sym_line_comment] = STATE(1603), [sym_block_comment] = STATE(1603), - [sym_identifier] = ACTIONS(2704), + [sym_identifier] = ACTIONS(2193), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_DOT] = ACTIONS(2702), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_COMMA] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2702), - [anon_sym_EQ] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2702), - [anon_sym_BANG_EQ] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2702), - [anon_sym_GT_EQ] = ACTIONS(2702), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2702), - [anon_sym_DASH_DASH] = ACTIONS(2702), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2702), - [anon_sym_or] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2702), - [anon_sym_POUND_LBRACK] = ACTIONS(2702), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2702), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2702), - [anon_sym_STAR_EQ] = ACTIONS(2702), - [anon_sym_SLASH_EQ] = ACTIONS(2702), - [anon_sym_PERCENT_EQ] = ACTIONS(2702), - [anon_sym_LT_LT_EQ] = ACTIONS(2702), - [anon_sym_GT_GT_EQ] = ACTIONS(2702), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2702), - [anon_sym_AMP_EQ] = ACTIONS(2702), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2702), - [anon_sym_PLUS_EQ] = ACTIONS(2702), - [anon_sym_DASH_EQ] = ACTIONS(2702), - [anon_sym_PIPE_EQ] = ACTIONS(2702), - [anon_sym_CARET_EQ] = ACTIONS(2702), - [anon_sym_COLON_EQ] = ACTIONS(2702), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2702), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_EQ] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_fn] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_PERCENT] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_GT] = ACTIONS(2193), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2193), + [anon_sym_COLON] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_QMARK] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_LBRACK2] = ACTIONS(2193), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_LT_DASH] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_GT_GT] = ACTIONS(2193), + [anon_sym_GT_GT_GT] = ACTIONS(2193), + [anon_sym_AMP_CARET] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_or] = ACTIONS(2193), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_POUND_LBRACK] = ACTIONS(2191), + [anon_sym_is] = ACTIONS(2193), + [anon_sym_BANGis] = ACTIONS(2191), + [anon_sym_in] = ACTIONS(2193), + [anon_sym_BANGin] = ACTIONS(2191), + [anon_sym_STAR_EQ] = ACTIONS(2191), + [anon_sym_SLASH_EQ] = ACTIONS(2191), + [anon_sym_PERCENT_EQ] = ACTIONS(2191), + [anon_sym_LT_LT_EQ] = ACTIONS(2191), + [anon_sym_GT_GT_EQ] = ACTIONS(2191), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2191), + [anon_sym_AMP_EQ] = ACTIONS(2191), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2191), + [anon_sym_PLUS_EQ] = ACTIONS(2191), + [anon_sym_DASH_EQ] = ACTIONS(2191), + [anon_sym_PIPE_EQ] = ACTIONS(2191), + [anon_sym_CARET_EQ] = ACTIONS(2191), + [anon_sym_shared] = ACTIONS(2193), + [anon_sym_map_LBRACK] = ACTIONS(2191), + [anon_sym_chan] = ACTIONS(2193), + [anon_sym_thread] = ACTIONS(2193), + [anon_sym_atomic] = ACTIONS(2193), }, [1604] = { [sym_line_comment] = STATE(1604), [sym_block_comment] = STATE(1604), - [sym_identifier] = ACTIONS(2704), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2702), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_COMMA] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2702), - [anon_sym_EQ] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2702), - [anon_sym_BANG_EQ] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2702), - [anon_sym_GT_EQ] = ACTIONS(2702), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_COLON] = ACTIONS(2702), - [anon_sym_PLUS_PLUS] = ACTIONS(2702), - [anon_sym_DASH_DASH] = ACTIONS(2702), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2702), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2702), - [anon_sym_or] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2702), - [anon_sym_POUND_LBRACK] = ACTIONS(2702), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2702), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2702), - [anon_sym_STAR_EQ] = ACTIONS(2702), - [anon_sym_SLASH_EQ] = ACTIONS(2702), - [anon_sym_PERCENT_EQ] = ACTIONS(2702), - [anon_sym_LT_LT_EQ] = ACTIONS(2702), - [anon_sym_GT_GT_EQ] = ACTIONS(2702), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2702), - [anon_sym_AMP_EQ] = ACTIONS(2702), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2702), - [anon_sym_PLUS_EQ] = ACTIONS(2702), - [anon_sym_DASH_EQ] = ACTIONS(2702), - [anon_sym_PIPE_EQ] = ACTIONS(2702), - [anon_sym_CARET_EQ] = ACTIONS(2702), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2702), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), + [sym_type_parameters] = STATE(4227), + [sym_argument_list] = STATE(1718), + [sym_or_block] = STATE(1719), + [aux_sym_strictly_expression_list_repeat1] = STATE(3275), + [anon_sym_LF] = ACTIONS(1711), + [anon_sym_CR] = ACTIONS(1711), + [anon_sym_CR_LF] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(497), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4585), + [anon_sym_as] = ACTIONS(4587), + [anon_sym_COMMA] = ACTIONS(4589), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4593), + [anon_sym_DASH] = ACTIONS(4593), + [anon_sym_STAR] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_PERCENT] = ACTIONS(4595), + [anon_sym_LT] = ACTIONS(4597), + [anon_sym_GT] = ACTIONS(4597), + [anon_sym_EQ_EQ] = ACTIONS(4597), + [anon_sym_BANG_EQ] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4597), + [anon_sym_LBRACK] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4601), + [anon_sym_PLUS_PLUS] = ACTIONS(4603), + [anon_sym_DASH_DASH] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4607), + [anon_sym_BANG] = ACTIONS(4609), + [anon_sym_LBRACK2] = ACTIONS(4611), + [anon_sym_CARET] = ACTIONS(4593), + [anon_sym_AMP] = ACTIONS(4595), + [anon_sym_LT_DASH] = ACTIONS(4613), + [anon_sym_LT_LT] = ACTIONS(4615), + [anon_sym_GT_GT] = ACTIONS(4595), + [anon_sym_GT_GT_GT] = ACTIONS(4595), + [anon_sym_AMP_CARET] = ACTIONS(4595), + [anon_sym_AMP_AMP] = ACTIONS(4617), + [anon_sym_PIPE_PIPE] = ACTIONS(4619), + [anon_sym_or] = ACTIONS(4621), + [anon_sym_QMARK_DOT] = ACTIONS(4585), + [anon_sym_POUND_LBRACK] = ACTIONS(4611), + [anon_sym_is] = ACTIONS(4623), + [anon_sym_BANGis] = ACTIONS(4623), + [anon_sym_in] = ACTIONS(4625), + [anon_sym_BANGin] = ACTIONS(4625), + [anon_sym_STAR_EQ] = ACTIONS(1721), + [anon_sym_SLASH_EQ] = ACTIONS(1721), + [anon_sym_PERCENT_EQ] = ACTIONS(1721), + [anon_sym_LT_LT_EQ] = ACTIONS(1721), + [anon_sym_GT_GT_EQ] = ACTIONS(1721), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1721), + [anon_sym_AMP_EQ] = ACTIONS(1721), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1721), + [anon_sym_PLUS_EQ] = ACTIONS(1721), + [anon_sym_DASH_EQ] = ACTIONS(1721), + [anon_sym_PIPE_EQ] = ACTIONS(1721), + [anon_sym_CARET_EQ] = ACTIONS(1721), + [anon_sym_COLON_EQ] = ACTIONS(1721), }, [1605] = { [sym_line_comment] = STATE(1605), [sym_block_comment] = STATE(1605), - [sym_type_parameters] = STATE(4210), - [sym_argument_list] = STATE(1739), - [sym_or_block] = STATE(1727), - [aux_sym_strictly_expression_list_repeat1] = STATE(3270), - [anon_sym_LF] = ACTIONS(1753), - [anon_sym_CR] = ACTIONS(1753), - [anon_sym_CR_LF] = ACTIONS(1753), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [anon_sym_SLASH_STAR] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4581), - [anon_sym_as] = ACTIONS(4583), - [anon_sym_COMMA] = ACTIONS(4585), - [anon_sym_RBRACE] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(4589), - [anon_sym_PLUS] = ACTIONS(4589), - [anon_sym_DASH] = ACTIONS(4589), - [anon_sym_STAR] = ACTIONS(4591), - [anon_sym_SLASH] = ACTIONS(4591), - [anon_sym_PERCENT] = ACTIONS(4591), - [anon_sym_LT] = ACTIONS(4593), - [anon_sym_GT] = ACTIONS(4593), - [anon_sym_EQ_EQ] = ACTIONS(4593), - [anon_sym_BANG_EQ] = ACTIONS(4593), - [anon_sym_LT_EQ] = ACTIONS(4593), - [anon_sym_GT_EQ] = ACTIONS(4593), - [anon_sym_LBRACK] = ACTIONS(4595), - [anon_sym_COLON] = ACTIONS(4597), - [anon_sym_PLUS_PLUS] = ACTIONS(4599), - [anon_sym_DASH_DASH] = ACTIONS(4601), - [anon_sym_QMARK] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(4605), - [anon_sym_LBRACK2] = ACTIONS(4607), - [anon_sym_CARET] = ACTIONS(4589), - [anon_sym_AMP] = ACTIONS(4591), - [anon_sym_LT_DASH] = ACTIONS(4609), - [anon_sym_LT_LT] = ACTIONS(4611), - [anon_sym_GT_GT] = ACTIONS(4591), - [anon_sym_GT_GT_GT] = ACTIONS(4591), - [anon_sym_AMP_CARET] = ACTIONS(4591), - [anon_sym_AMP_AMP] = ACTIONS(4613), - [anon_sym_PIPE_PIPE] = ACTIONS(4615), - [anon_sym_or] = ACTIONS(4617), - [anon_sym_QMARK_DOT] = ACTIONS(4581), - [anon_sym_POUND_LBRACK] = ACTIONS(4607), - [anon_sym_is] = ACTIONS(4619), - [anon_sym_BANGis] = ACTIONS(4619), - [anon_sym_in] = ACTIONS(4621), - [anon_sym_BANGin] = ACTIONS(4621), - [anon_sym_STAR_EQ] = ACTIONS(1757), - [anon_sym_SLASH_EQ] = ACTIONS(1757), - [anon_sym_PERCENT_EQ] = ACTIONS(1757), - [anon_sym_LT_LT_EQ] = ACTIONS(1757), - [anon_sym_GT_GT_EQ] = ACTIONS(1757), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1757), - [anon_sym_AMP_EQ] = ACTIONS(1757), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1757), - [anon_sym_PLUS_EQ] = ACTIONS(1757), - [anon_sym_DASH_EQ] = ACTIONS(1757), - [anon_sym_PIPE_EQ] = ACTIONS(1757), - [anon_sym_CARET_EQ] = ACTIONS(1757), - [anon_sym_COLON_EQ] = ACTIONS(1757), + [sym_identifier] = ACTIONS(2171), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2169), + [anon_sym_DOT] = ACTIONS(2169), + [anon_sym_as] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2169), + [anon_sym_COMMA] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_EQ] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2171), + [anon_sym_fn] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_GT] = ACTIONS(2171), + [anon_sym_EQ_EQ] = ACTIONS(2169), + [anon_sym_BANG_EQ] = ACTIONS(2169), + [anon_sym_LT_EQ] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_struct] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(2169), + [anon_sym_DASH_DASH] = ACTIONS(2169), + [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_LBRACK2] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_LT_LT] = ACTIONS(2171), + [anon_sym_GT_GT] = ACTIONS(2171), + [anon_sym_GT_GT_GT] = ACTIONS(2171), + [anon_sym_AMP_CARET] = ACTIONS(2171), + [anon_sym_AMP_AMP] = ACTIONS(2169), + [anon_sym_PIPE_PIPE] = ACTIONS(2169), + [anon_sym_or] = ACTIONS(2171), + [anon_sym_QMARK_DOT] = ACTIONS(2169), + [anon_sym_POUND_LBRACK] = ACTIONS(2169), + [anon_sym_is] = ACTIONS(2171), + [anon_sym_BANGis] = ACTIONS(2169), + [anon_sym_in] = ACTIONS(2171), + [anon_sym_BANGin] = ACTIONS(2169), + [anon_sym_STAR_EQ] = ACTIONS(2169), + [anon_sym_SLASH_EQ] = ACTIONS(2169), + [anon_sym_PERCENT_EQ] = ACTIONS(2169), + [anon_sym_LT_LT_EQ] = ACTIONS(2169), + [anon_sym_GT_GT_EQ] = ACTIONS(2169), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2169), + [anon_sym_AMP_EQ] = ACTIONS(2169), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2169), + [anon_sym_PLUS_EQ] = ACTIONS(2169), + [anon_sym_DASH_EQ] = ACTIONS(2169), + [anon_sym_PIPE_EQ] = ACTIONS(2169), + [anon_sym_CARET_EQ] = ACTIONS(2169), + [anon_sym_COLON_EQ] = ACTIONS(2169), + [anon_sym_shared] = ACTIONS(2171), + [anon_sym_map_LBRACK] = ACTIONS(2169), + [anon_sym_chan] = ACTIONS(2171), + [anon_sym_thread] = ACTIONS(2171), + [anon_sym_atomic] = ACTIONS(2171), }, [1606] = { [sym_line_comment] = STATE(1606), [sym_block_comment] = STATE(1606), - [sym_identifier] = ACTIONS(2914), + [sym_identifier] = ACTIONS(2193), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2912), - [anon_sym_DOT] = ACTIONS(2912), - [anon_sym_as] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_COMMA] = ACTIONS(2912), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2914), - [anon_sym_fn] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_SLASH] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_GT] = ACTIONS(2914), - [anon_sym_EQ_EQ] = ACTIONS(2912), - [anon_sym_BANG_EQ] = ACTIONS(2912), - [anon_sym_LT_EQ] = ACTIONS(2912), - [anon_sym_GT_EQ] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2912), - [anon_sym_QMARK] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_LBRACK2] = ACTIONS(2914), - [anon_sym_CARET] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_LT_LT] = ACTIONS(2914), - [anon_sym_GT_GT] = ACTIONS(2914), - [anon_sym_GT_GT_GT] = ACTIONS(2914), - [anon_sym_AMP_CARET] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2912), - [anon_sym_PIPE_PIPE] = ACTIONS(2912), - [anon_sym_or] = ACTIONS(2914), - [anon_sym_QMARK_DOT] = ACTIONS(2912), - [anon_sym_POUND_LBRACK] = ACTIONS(2912), - [anon_sym_is] = ACTIONS(2914), - [anon_sym_BANGis] = ACTIONS(2912), - [anon_sym_in] = ACTIONS(2914), - [anon_sym_BANGin] = ACTIONS(2912), - [anon_sym_STAR_EQ] = ACTIONS(2912), - [anon_sym_SLASH_EQ] = ACTIONS(2912), - [anon_sym_PERCENT_EQ] = ACTIONS(2912), - [anon_sym_LT_LT_EQ] = ACTIONS(2912), - [anon_sym_GT_GT_EQ] = ACTIONS(2912), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2912), - [anon_sym_AMP_EQ] = ACTIONS(2912), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2912), - [anon_sym_PLUS_EQ] = ACTIONS(2912), - [anon_sym_DASH_EQ] = ACTIONS(2912), - [anon_sym_PIPE_EQ] = ACTIONS(2912), - [anon_sym_CARET_EQ] = ACTIONS(2912), - [anon_sym_COLON_EQ] = ACTIONS(2912), - [anon_sym_shared] = ACTIONS(2914), - [anon_sym_map_LBRACK] = ACTIONS(2912), - [anon_sym_chan] = ACTIONS(2914), - [anon_sym_thread] = ACTIONS(2914), - [anon_sym_atomic] = ACTIONS(2914), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_EQ] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_fn] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_SLASH] = ACTIONS(2193), + [anon_sym_PERCENT] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_GT] = ACTIONS(2193), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2193), + [anon_sym_PLUS_PLUS] = ACTIONS(2191), + [anon_sym_DASH_DASH] = ACTIONS(2191), + [anon_sym_QMARK] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_LBRACK2] = ACTIONS(2193), + [anon_sym_CARET] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_LT_LT] = ACTIONS(2193), + [anon_sym_GT_GT] = ACTIONS(2193), + [anon_sym_GT_GT_GT] = ACTIONS(2193), + [anon_sym_AMP_CARET] = ACTIONS(2193), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_or] = ACTIONS(2193), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_POUND_LBRACK] = ACTIONS(2191), + [anon_sym_is] = ACTIONS(2193), + [anon_sym_BANGis] = ACTIONS(2191), + [anon_sym_in] = ACTIONS(2193), + [anon_sym_BANGin] = ACTIONS(2191), + [anon_sym_STAR_EQ] = ACTIONS(2191), + [anon_sym_SLASH_EQ] = ACTIONS(2191), + [anon_sym_PERCENT_EQ] = ACTIONS(2191), + [anon_sym_LT_LT_EQ] = ACTIONS(2191), + [anon_sym_GT_GT_EQ] = ACTIONS(2191), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2191), + [anon_sym_AMP_EQ] = ACTIONS(2191), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2191), + [anon_sym_PLUS_EQ] = ACTIONS(2191), + [anon_sym_DASH_EQ] = ACTIONS(2191), + [anon_sym_PIPE_EQ] = ACTIONS(2191), + [anon_sym_CARET_EQ] = ACTIONS(2191), + [anon_sym_COLON_EQ] = ACTIONS(2191), + [anon_sym_shared] = ACTIONS(2193), + [anon_sym_map_LBRACK] = ACTIONS(2191), + [anon_sym_chan] = ACTIONS(2193), + [anon_sym_thread] = ACTIONS(2193), + [anon_sym_atomic] = ACTIONS(2193), }, [1607] = { [sym_line_comment] = STATE(1607), [sym_block_comment] = STATE(1607), - [sym_identifier] = ACTIONS(2918), + [sym_identifier] = ACTIONS(2197), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2916), - [anon_sym_DOT] = ACTIONS(2916), - [anon_sym_as] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_fn] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_GT] = ACTIONS(2918), - [anon_sym_EQ_EQ] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_LT_EQ] = ACTIONS(2916), - [anon_sym_GT_EQ] = ACTIONS(2916), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_LBRACK2] = ACTIONS(2918), - [anon_sym_CARET] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LT_LT] = ACTIONS(2918), - [anon_sym_GT_GT] = ACTIONS(2918), - [anon_sym_GT_GT_GT] = ACTIONS(2918), - [anon_sym_AMP_CARET] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_or] = ACTIONS(2918), - [anon_sym_QMARK_DOT] = ACTIONS(2916), - [anon_sym_POUND_LBRACK] = ACTIONS(2916), - [anon_sym_is] = ACTIONS(2918), - [anon_sym_BANGis] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(2918), - [anon_sym_BANGin] = ACTIONS(2916), - [anon_sym_STAR_EQ] = ACTIONS(2916), - [anon_sym_SLASH_EQ] = ACTIONS(2916), - [anon_sym_PERCENT_EQ] = ACTIONS(2916), - [anon_sym_LT_LT_EQ] = ACTIONS(2916), - [anon_sym_GT_GT_EQ] = ACTIONS(2916), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2916), - [anon_sym_AMP_EQ] = ACTIONS(2916), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2916), - [anon_sym_PLUS_EQ] = ACTIONS(2916), - [anon_sym_DASH_EQ] = ACTIONS(2916), - [anon_sym_PIPE_EQ] = ACTIONS(2916), - [anon_sym_CARET_EQ] = ACTIONS(2916), - [anon_sym_COLON_EQ] = ACTIONS(2916), - [anon_sym_shared] = ACTIONS(2918), - [anon_sym_map_LBRACK] = ACTIONS(2916), - [anon_sym_chan] = ACTIONS(2918), - [anon_sym_thread] = ACTIONS(2918), - [anon_sym_atomic] = ACTIONS(2918), + [anon_sym_SEMI] = ACTIONS(2195), + [anon_sym_DOT] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2195), + [anon_sym_COMMA] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2195), + [anon_sym_EQ] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2197), + [anon_sym_fn] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_PERCENT] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_GT] = ACTIONS(2197), + [anon_sym_EQ_EQ] = ACTIONS(2195), + [anon_sym_BANG_EQ] = ACTIONS(2195), + [anon_sym_LT_EQ] = ACTIONS(2195), + [anon_sym_GT_EQ] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2195), + [anon_sym_DASH_DASH] = ACTIONS(2195), + [anon_sym_QMARK] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_LBRACK2] = ACTIONS(2197), + [anon_sym_CARET] = ACTIONS(2197), + [anon_sym_AMP] = ACTIONS(2197), + [anon_sym_LT_LT] = ACTIONS(2197), + [anon_sym_GT_GT] = ACTIONS(2197), + [anon_sym_GT_GT_GT] = ACTIONS(2197), + [anon_sym_AMP_CARET] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(2195), + [anon_sym_PIPE_PIPE] = ACTIONS(2195), + [anon_sym_or] = ACTIONS(2197), + [anon_sym_QMARK_DOT] = ACTIONS(2195), + [anon_sym_POUND_LBRACK] = ACTIONS(2195), + [anon_sym_is] = ACTIONS(2197), + [anon_sym_BANGis] = ACTIONS(2195), + [anon_sym_in] = ACTIONS(2197), + [anon_sym_BANGin] = ACTIONS(2195), + [anon_sym_STAR_EQ] = ACTIONS(2195), + [anon_sym_SLASH_EQ] = ACTIONS(2195), + [anon_sym_PERCENT_EQ] = ACTIONS(2195), + [anon_sym_LT_LT_EQ] = ACTIONS(2195), + [anon_sym_GT_GT_EQ] = ACTIONS(2195), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2195), + [anon_sym_AMP_EQ] = ACTIONS(2195), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2195), + [anon_sym_PLUS_EQ] = ACTIONS(2195), + [anon_sym_DASH_EQ] = ACTIONS(2195), + [anon_sym_PIPE_EQ] = ACTIONS(2195), + [anon_sym_CARET_EQ] = ACTIONS(2195), + [anon_sym_COLON_EQ] = ACTIONS(2195), + [anon_sym_shared] = ACTIONS(2197), + [anon_sym_map_LBRACK] = ACTIONS(2195), + [anon_sym_chan] = ACTIONS(2197), + [anon_sym_thread] = ACTIONS(2197), + [anon_sym_atomic] = ACTIONS(2197), }, [1608] = { [sym_line_comment] = STATE(1608), [sym_block_comment] = STATE(1608), - [sym_identifier] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2237), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2868), - [anon_sym_DOT] = ACTIONS(2868), - [anon_sym_as] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_EQ] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_fn] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_EQ_EQ] = ACTIONS(2868), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_LT_EQ] = ACTIONS(2868), - [anon_sym_GT_EQ] = ACTIONS(2868), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_LBRACK2] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LT_LT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2870), - [anon_sym_GT_GT_GT] = ACTIONS(2870), - [anon_sym_AMP_CARET] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_PIPE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2870), - [anon_sym_QMARK_DOT] = ACTIONS(2868), - [anon_sym_POUND_LBRACK] = ACTIONS(2868), - [anon_sym_is] = ACTIONS(2870), - [anon_sym_BANGis] = ACTIONS(2868), - [anon_sym_in] = ACTIONS(2870), - [anon_sym_BANGin] = ACTIONS(2868), - [anon_sym_STAR_EQ] = ACTIONS(2868), - [anon_sym_SLASH_EQ] = ACTIONS(2868), - [anon_sym_PERCENT_EQ] = ACTIONS(2868), - [anon_sym_LT_LT_EQ] = ACTIONS(2868), - [anon_sym_GT_GT_EQ] = ACTIONS(2868), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2868), - [anon_sym_AMP_EQ] = ACTIONS(2868), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2868), - [anon_sym_PLUS_EQ] = ACTIONS(2868), - [anon_sym_DASH_EQ] = ACTIONS(2868), - [anon_sym_PIPE_EQ] = ACTIONS(2868), - [anon_sym_CARET_EQ] = ACTIONS(2868), - [anon_sym_COLON_EQ] = ACTIONS(2868), - [anon_sym_shared] = ACTIONS(2870), - [anon_sym_map_LBRACK] = ACTIONS(2868), - [anon_sym_chan] = ACTIONS(2870), - [anon_sym_thread] = ACTIONS(2870), - [anon_sym_atomic] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_DOT] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_COMMA] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_EQ] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_PERCENT] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_GT] = ACTIONS(2237), + [anon_sym_EQ_EQ] = ACTIONS(2235), + [anon_sym_BANG_EQ] = ACTIONS(2235), + [anon_sym_LT_EQ] = ACTIONS(2235), + [anon_sym_GT_EQ] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2235), + [anon_sym_DASH_DASH] = ACTIONS(2235), + [anon_sym_QMARK] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_LBRACK2] = ACTIONS(2237), + [anon_sym_CARET] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_LT_LT] = ACTIONS(2237), + [anon_sym_GT_GT] = ACTIONS(2237), + [anon_sym_GT_GT_GT] = ACTIONS(2237), + [anon_sym_AMP_CARET] = ACTIONS(2237), + [anon_sym_AMP_AMP] = ACTIONS(2235), + [anon_sym_PIPE_PIPE] = ACTIONS(2235), + [anon_sym_or] = ACTIONS(2237), + [anon_sym_QMARK_DOT] = ACTIONS(2235), + [anon_sym_POUND_LBRACK] = ACTIONS(2235), + [anon_sym_is] = ACTIONS(2237), + [anon_sym_BANGis] = ACTIONS(2235), + [anon_sym_in] = ACTIONS(2237), + [anon_sym_BANGin] = ACTIONS(2235), + [anon_sym_STAR_EQ] = ACTIONS(2235), + [anon_sym_SLASH_EQ] = ACTIONS(2235), + [anon_sym_PERCENT_EQ] = ACTIONS(2235), + [anon_sym_LT_LT_EQ] = ACTIONS(2235), + [anon_sym_GT_GT_EQ] = ACTIONS(2235), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2235), + [anon_sym_AMP_EQ] = ACTIONS(2235), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2235), + [anon_sym_PLUS_EQ] = ACTIONS(2235), + [anon_sym_DASH_EQ] = ACTIONS(2235), + [anon_sym_PIPE_EQ] = ACTIONS(2235), + [anon_sym_CARET_EQ] = ACTIONS(2235), + [anon_sym_COLON_EQ] = ACTIONS(2235), + [anon_sym_shared] = ACTIONS(2237), + [anon_sym_map_LBRACK] = ACTIONS(2235), + [anon_sym_chan] = ACTIONS(2237), + [anon_sym_thread] = ACTIONS(2237), + [anon_sym_atomic] = ACTIONS(2237), }, [1609] = { [sym_line_comment] = STATE(1609), [sym_block_comment] = STATE(1609), - [sym_identifier] = ACTIONS(2812), + [sym_identifier] = ACTIONS(2167), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_as] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_SLASH] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_EQ_EQ] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_LT_EQ] = ACTIONS(2810), - [anon_sym_GT_EQ] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2810), - [anon_sym_DASH_DASH] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_LBRACK2] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_GT_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_CARET] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_or] = ACTIONS(2812), - [anon_sym_QMARK_DOT] = ACTIONS(2810), - [anon_sym_POUND_LBRACK] = ACTIONS(2810), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_BANGis] = ACTIONS(2810), - [anon_sym_in] = ACTIONS(2812), - [anon_sym_BANGin] = ACTIONS(2810), - [anon_sym_STAR_EQ] = ACTIONS(2810), - [anon_sym_SLASH_EQ] = ACTIONS(2810), - [anon_sym_PERCENT_EQ] = ACTIONS(2810), - [anon_sym_LT_LT_EQ] = ACTIONS(2810), - [anon_sym_GT_GT_EQ] = ACTIONS(2810), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2810), - [anon_sym_AMP_EQ] = ACTIONS(2810), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2810), - [anon_sym_PLUS_EQ] = ACTIONS(2810), - [anon_sym_DASH_EQ] = ACTIONS(2810), - [anon_sym_PIPE_EQ] = ACTIONS(2810), - [anon_sym_CARET_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2810), - [anon_sym_shared] = ACTIONS(2812), - [anon_sym_map_LBRACK] = ACTIONS(2810), - [anon_sym_chan] = ACTIONS(2812), - [anon_sym_thread] = ACTIONS(2812), - [anon_sym_atomic] = ACTIONS(2812), + [anon_sym_SEMI] = ACTIONS(2165), + [anon_sym_DOT] = ACTIONS(2165), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_COMMA] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_EQ] = ACTIONS(2167), + [anon_sym_PIPE] = ACTIONS(2167), + [anon_sym_fn] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_PERCENT] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2167), + [anon_sym_EQ_EQ] = ACTIONS(2165), + [anon_sym_BANG_EQ] = ACTIONS(2165), + [anon_sym_LT_EQ] = ACTIONS(2165), + [anon_sym_GT_EQ] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2165), + [anon_sym_DASH_DASH] = ACTIONS(2165), + [anon_sym_QMARK] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_LBRACK2] = ACTIONS(2167), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_LT_LT] = ACTIONS(2167), + [anon_sym_GT_GT] = ACTIONS(2167), + [anon_sym_GT_GT_GT] = ACTIONS(2167), + [anon_sym_AMP_CARET] = ACTIONS(2167), + [anon_sym_AMP_AMP] = ACTIONS(2165), + [anon_sym_PIPE_PIPE] = ACTIONS(2165), + [anon_sym_or] = ACTIONS(2167), + [anon_sym_QMARK_DOT] = ACTIONS(2165), + [anon_sym_POUND_LBRACK] = ACTIONS(2165), + [anon_sym_is] = ACTIONS(2167), + [anon_sym_BANGis] = ACTIONS(2165), + [anon_sym_in] = ACTIONS(2167), + [anon_sym_BANGin] = ACTIONS(2165), + [anon_sym_STAR_EQ] = ACTIONS(2165), + [anon_sym_SLASH_EQ] = ACTIONS(2165), + [anon_sym_PERCENT_EQ] = ACTIONS(2165), + [anon_sym_LT_LT_EQ] = ACTIONS(2165), + [anon_sym_GT_GT_EQ] = ACTIONS(2165), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2165), + [anon_sym_AMP_EQ] = ACTIONS(2165), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2165), + [anon_sym_PLUS_EQ] = ACTIONS(2165), + [anon_sym_DASH_EQ] = ACTIONS(2165), + [anon_sym_PIPE_EQ] = ACTIONS(2165), + [anon_sym_CARET_EQ] = ACTIONS(2165), + [anon_sym_COLON_EQ] = ACTIONS(2165), + [anon_sym_shared] = ACTIONS(2167), + [anon_sym_map_LBRACK] = ACTIONS(2165), + [anon_sym_chan] = ACTIONS(2167), + [anon_sym_thread] = ACTIONS(2167), + [anon_sym_atomic] = ACTIONS(2167), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 24, + [0] = 14, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4583), 1, - anon_sym_as, - ACTIONS(4587), 1, + ACTIONS(4591), 1, anon_sym_LPAREN, - ACTIONS(4595), 1, - anon_sym_LBRACK, ACTIONS(4599), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4601), 1, - anon_sym_DASH_DASH, - ACTIONS(4603), 1, + anon_sym_LBRACK, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4605), 1, + ACTIONS(4609), 1, anon_sym_BANG, - ACTIONS(4613), 1, - anon_sym_AMP_AMP, - ACTIONS(4615), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4617), 1, - anon_sym_or, - STATE(1727), 1, - sym_or_block, - STATE(1739), 1, + STATE(1718), 1, sym_argument_list, - STATE(4210), 1, + STATE(1719), 1, + sym_or_block, + STATE(4227), 1, sym_type_parameters, - ACTIONS(4581), 2, + ACTIONS(4585), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4607), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4619), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4621), 2, - anon_sym_in, - anon_sym_BANGin, STATE(1610), 2, sym_line_comment, sym_block_comment, - ACTIONS(4589), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4593), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4591), 8, + ACTIONS(4595), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -188948,97 +188894,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1795), 21, + ACTIONS(1791), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [113] = 17, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4587), 1, - anon_sym_LPAREN, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(4603), 1, - anon_sym_QMARK, - ACTIONS(4605), 1, - anon_sym_BANG, - STATE(1727), 1, - sym_or_block, - STATE(1739), 1, - sym_argument_list, - STATE(4210), 1, - sym_type_parameters, - ACTIONS(4581), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4607), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4621), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1611), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4589), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4593), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4591), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1765), 29, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -189052,176 +188936,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [212] = 29, + [93] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4583), 1, - anon_sym_as, - ACTIONS(4585), 1, - anon_sym_COMMA, - ACTIONS(4587), 1, + ACTIONS(4591), 1, anon_sym_LPAREN, - ACTIONS(4595), 1, - anon_sym_LBRACK, ACTIONS(4599), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4601), 1, - anon_sym_DASH_DASH, - ACTIONS(4603), 1, + anon_sym_LBRACK, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4605), 1, - anon_sym_BANG, ACTIONS(4609), 1, - anon_sym_LT_DASH, - ACTIONS(4611), 1, - anon_sym_LT_LT, - ACTIONS(4613), 1, - anon_sym_AMP_AMP, - ACTIONS(4615), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4617), 1, - anon_sym_or, - STATE(1727), 1, - sym_or_block, - STATE(1739), 1, + anon_sym_BANG, + STATE(1718), 1, sym_argument_list, - STATE(3270), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4210), 1, + STATE(1719), 1, + sym_or_block, + STATE(4227), 1, sym_type_parameters, - ACTIONS(4581), 2, + ACTIONS(4585), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4607), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4619), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4621), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1612), 2, + STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(1753), 4, + ACTIONS(1791), 49, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4589), 4, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4593), 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(4591), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1757), 14, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [335] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4583), 1, - anon_sym_as, - ACTIONS(4587), 1, - anon_sym_LPAREN, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(4599), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4601), 1, - anon_sym_DASH_DASH, - ACTIONS(4603), 1, - anon_sym_QMARK, - ACTIONS(4605), 1, - anon_sym_BANG, - ACTIONS(4613), 1, anon_sym_AMP_AMP, - ACTIONS(4615), 1, anon_sym_PIPE_PIPE, - ACTIONS(4617), 1, anon_sym_or, - STATE(1727), 1, - sym_or_block, - STATE(1739), 1, - sym_argument_list, - STATE(4210), 1, - sym_type_parameters, - ACTIONS(4581), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4607), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4619), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4621), 2, anon_sym_in, anon_sym_BANGin, - STATE(1613), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4589), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4593), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4591), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1773), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -189235,35 +189014,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [448] = 14, + [184] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4587), 1, + ACTIONS(4591), 1, anon_sym_LPAREN, - ACTIONS(4595), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(4603), 1, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4605), 1, + ACTIONS(4609), 1, anon_sym_BANG, - STATE(1727), 1, - sym_or_block, - STATE(1739), 1, + STATE(1718), 1, sym_argument_list, - STATE(4210), 1, + STATE(1719), 1, + sym_or_block, + STATE(4227), 1, sym_type_parameters, - ACTIONS(4581), 2, + ACTIONS(4585), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4607), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1614), 2, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(4591), 8, + ACTIONS(4593), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4595), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -189272,7 +189056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 41, + ACTIONS(1791), 37, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -189280,9 +189064,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -189292,7 +189073,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -189314,41 +189094,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [541] = 13, + [279] = 14, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4587), 1, + ACTIONS(4591), 1, anon_sym_LPAREN, - ACTIONS(4595), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(4603), 1, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4605), 1, + ACTIONS(4609), 1, anon_sym_BANG, - STATE(1727), 1, - sym_or_block, - STATE(1739), 1, + STATE(1718), 1, sym_argument_list, - STATE(4210), 1, + STATE(1719), 1, + sym_or_block, + STATE(4227), 1, sym_type_parameters, - ACTIONS(4581), 2, + ACTIONS(4585), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4607), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1615), 2, + STATE(1613), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 49, + ACTIONS(1795), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(1791), 45, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -189392,71 +189173,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [632] = 13, + [372] = 17, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4587), 1, + ACTIONS(4591), 1, anon_sym_LPAREN, - ACTIONS(4595), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(4603), 1, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4605), 1, + ACTIONS(4609), 1, anon_sym_BANG, - STATE(1727), 1, - sym_or_block, - STATE(1739), 1, + STATE(1718), 1, sym_argument_list, - STATE(4210), 1, + STATE(1719), 1, + sym_or_block, + STATE(4227), 1, sym_type_parameters, - ACTIONS(4581), 2, + ACTIONS(4585), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4607), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1616), 2, + ACTIONS(4625), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 49, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(4593), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4597), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(4595), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1791), 29, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -189470,52 +189255,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [723] = 18, + [471] = 18, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4587), 1, + ACTIONS(4591), 1, anon_sym_LPAREN, - ACTIONS(4595), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(4603), 1, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4605), 1, + ACTIONS(4609), 1, anon_sym_BANG, - ACTIONS(4613), 1, + ACTIONS(4617), 1, anon_sym_AMP_AMP, - STATE(1727), 1, - sym_or_block, - STATE(1739), 1, + STATE(1718), 1, sym_argument_list, - STATE(4210), 1, + STATE(1719), 1, + sym_or_block, + STATE(4227), 1, sym_type_parameters, - ACTIONS(4581), 2, + ACTIONS(4585), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4607), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4621), 2, + ACTIONS(4625), 2, anon_sym_in, anon_sym_BANGin, - STATE(1617), 2, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(4589), 4, + ACTIONS(4593), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4593), 6, + ACTIONS(4597), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4591), 8, + ACTIONS(4595), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -189524,7 +189309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 28, + ACTIONS(1791), 28, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -189553,49 +189338,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [824] = 15, + [572] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4587), 1, + ACTIONS(4591), 1, anon_sym_LPAREN, - ACTIONS(4595), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(4603), 1, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4605), 1, + ACTIONS(4609), 1, anon_sym_BANG, - STATE(1727), 1, - sym_or_block, - STATE(1739), 1, + STATE(1718), 1, sym_argument_list, - STATE(4210), 1, + STATE(1719), 1, + sym_or_block, + STATE(4227), 1, sym_type_parameters, - ACTIONS(4581), 2, + ACTIONS(4585), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4607), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1618), 2, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(4589), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4591), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1781), 37, + ACTIONS(1783), 49, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -189603,6 +189374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -189612,7 +189389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -189633,40 +189416,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [919] = 15, + [663] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, ACTIONS(4587), 1, + anon_sym_as, + ACTIONS(4591), 1, anon_sym_LPAREN, - ACTIONS(4595), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(4603), 1, - anon_sym_QMARK, + anon_sym_PLUS_PLUS, ACTIONS(4605), 1, + anon_sym_DASH_DASH, + ACTIONS(4607), 1, + anon_sym_QMARK, + ACTIONS(4609), 1, anon_sym_BANG, - STATE(1727), 1, - sym_or_block, - STATE(1739), 1, + ACTIONS(4617), 1, + anon_sym_AMP_AMP, + ACTIONS(4619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4621), 1, + anon_sym_or, + STATE(1718), 1, sym_argument_list, - STATE(4210), 1, + STATE(1719), 1, + sym_or_block, + STATE(4227), 1, sym_type_parameters, - ACTIONS(4581), 2, + ACTIONS(4585), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4607), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1619), 2, + ACTIONS(4623), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4625), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1617), 2, sym_line_comment, sym_block_comment, - ACTIONS(4589), 4, + ACTIONS(4593), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4591), 8, + ACTIONS(4597), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4595), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -189675,31 +189483,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 37, + ACTIONS(1765), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -189713,35 +189505,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1014] = 13, + [776] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4587), 1, + ACTIONS(4591), 1, anon_sym_LPAREN, - ACTIONS(4595), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, - ACTIONS(4603), 1, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4605), 1, + ACTIONS(4609), 1, anon_sym_BANG, - STATE(1727), 1, - sym_or_block, - STATE(1739), 1, + STATE(1718), 1, sym_argument_list, - STATE(4210), 1, + STATE(1719), 1, + sym_or_block, + STATE(4227), 1, sym_type_parameters, - ACTIONS(4581), 2, + ACTIONS(4585), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4607), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1620), 2, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 49, + ACTIONS(1769), 49, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -189791,72 +189583,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1105] = 14, + [867] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, ACTIONS(4587), 1, + anon_sym_as, + ACTIONS(4591), 1, anon_sym_LPAREN, - ACTIONS(4595), 1, + ACTIONS(4599), 1, anon_sym_LBRACK, ACTIONS(4603), 1, - anon_sym_QMARK, + anon_sym_PLUS_PLUS, ACTIONS(4605), 1, + anon_sym_DASH_DASH, + ACTIONS(4607), 1, + anon_sym_QMARK, + ACTIONS(4609), 1, anon_sym_BANG, - STATE(1727), 1, - sym_or_block, - STATE(1739), 1, + ACTIONS(4617), 1, + anon_sym_AMP_AMP, + ACTIONS(4619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4621), 1, + anon_sym_or, + STATE(1718), 1, sym_argument_list, - STATE(4210), 1, + STATE(1719), 1, + sym_or_block, + STATE(4227), 1, sym_type_parameters, - ACTIONS(4581), 2, + ACTIONS(4585), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4607), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1621), 2, + ACTIONS(4623), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4625), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1619), 2, sym_line_comment, sym_block_comment, - ACTIONS(1777), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(1765), 45, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(4593), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4597), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(4595), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1779), 21, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LT_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -189870,101 +189672,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1198] = 5, + [980] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1807), 1, + ACTIONS(4591), 1, + anon_sym_LPAREN, + ACTIONS(4599), 1, anon_sym_LBRACK, - STATE(1622), 2, + ACTIONS(4607), 1, + anon_sym_QMARK, + ACTIONS(4609), 1, + anon_sym_BANG, + STATE(1718), 1, + sym_argument_list, + STATE(1719), 1, + sym_or_block, + STATE(4227), 1, + sym_type_parameters, + ACTIONS(4585), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4611), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1620), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 58, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4593), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4595), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, - [1272] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1811), 1, - anon_sym_LBRACK, - STATE(1623), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1813), 58, + ACTIONS(1787), 37, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -189974,23 +189731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -190008,135 +189752,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1346] = 7, + [1075] = 29, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1797), 1, - anon_sym_LBRACK, - ACTIONS(4623), 1, - anon_sym_else, - STATE(1721), 1, - sym_else_branch, - STATE(1624), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1799), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(4587), 1, anon_sym_as, + ACTIONS(4589), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4591), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, + ACTIONS(4599), 1, + anon_sym_LBRACK, + ACTIONS(4603), 1, anon_sym_PLUS_PLUS, + ACTIONS(4605), 1, anon_sym_DASH_DASH, + ACTIONS(4607), 1, anon_sym_QMARK, + ACTIONS(4609), 1, anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(4613), 1, anon_sym_LT_DASH, + ACTIONS(4615), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4617), 1, anon_sym_AMP_AMP, + ACTIONS(4619), 1, anon_sym_PIPE_PIPE, + ACTIONS(4621), 1, anon_sym_or, + STATE(1718), 1, + sym_argument_list, + STATE(1719), 1, + sym_or_block, + STATE(3275), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4227), 1, + sym_type_parameters, + ACTIONS(4585), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(4611), 2, + anon_sym_LBRACK2, anon_sym_POUND_LBRACK, + ACTIONS(4623), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(4625), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [1424] = 7, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1803), 1, - anon_sym_LBRACK, - ACTIONS(4623), 1, - anon_sym_else, - STATE(1741), 1, - sym_else_branch, - STATE(1625), 2, + STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 56, + ACTIONS(1711), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4593), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4597), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4595), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1721), 14, + anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -190150,72 +189846,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1502] = 26, + [1198] = 26, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4627), 1, - anon_sym_as, ACTIONS(4629), 1, + anon_sym_as, + ACTIONS(4631), 1, anon_sym_LPAREN, - ACTIONS(4637), 1, - anon_sym_LBRACK, ACTIONS(4639), 1, - anon_sym_PLUS_PLUS, + anon_sym_LBRACK, ACTIONS(4641), 1, - anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(4643), 1, - anon_sym_QMARK, + anon_sym_DASH_DASH, ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, anon_sym_BANG, - ACTIONS(4649), 1, - anon_sym_AMP_AMP, ACTIONS(4651), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(4653), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4655), 1, anon_sym_or, - STATE(1846), 1, - sym_argument_list, - STATE(1849), 1, + STATE(1780), 1, sym_or_block, - STATE(3468), 1, + STATE(1843), 1, + sym_argument_list, + STATE(3546), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4269), 1, + STATE(4302), 1, sym_type_parameters, - ACTIONS(4625), 2, + ACTIONS(4627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4647), 2, + ACTIONS(4649), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4655), 2, + ACTIONS(4657), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4657), 2, + ACTIONS(4659), 2, anon_sym_in, anon_sym_BANGin, - STATE(1626), 2, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(1643), 4, + ACTIONS(1757), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(4631), 4, + ACTIONS(4633), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4635), 6, + ACTIONS(4637), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4633), 8, + ACTIONS(4635), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -190224,7 +189920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1649), 15, + ACTIONS(1759), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -190240,21 +189936,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1618] = 5, + [1314] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2678), 1, + ACTIONS(1803), 1, anon_sym_LBRACK, - STATE(1627), 2, + ACTIONS(4661), 1, + anon_sym_else, + STATE(1689), 1, + sym_else_branch, + STATE(1623), 2, sym_line_comment, sym_block_comment, - ACTIONS(2680), 57, + ACTIONS(1805), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -190308,73 +190007,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1691] = 17, + [1392] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4629), 1, - anon_sym_LPAREN, - ACTIONS(4637), 1, + ACTIONS(1807), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_QMARK, - ACTIONS(4645), 1, - anon_sym_BANG, - STATE(1846), 1, - sym_argument_list, - STATE(1849), 1, - sym_or_block, - STATE(4269), 1, - sym_type_parameters, - ACTIONS(4625), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4647), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4657), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1628), 2, + STATE(1624), 2, sym_line_comment, sym_block_comment, - ACTIONS(4631), 4, + ACTIONS(1809), 58, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4635), 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(4633), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 27, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_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, @@ -190388,19 +190076,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1788] = 6, + [1466] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1987), 1, - anon_sym_LBRACE, - ACTIONS(2674), 1, + ACTIONS(1797), 1, anon_sym_LBRACK, - STATE(1629), 2, + ACTIONS(4661), 1, + anon_sym_else, + STATE(1685), 1, + sym_else_branch, + STATE(1625), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 56, + ACTIONS(1799), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190457,114 +190147,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1863] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1751), 1, - anon_sym_SEMI, - ACTIONS(1757), 1, - anon_sym_EQ, - ACTIONS(4661), 1, - anon_sym_as, - ACTIONS(4663), 1, - anon_sym_LBRACE, - ACTIONS(4665), 1, - anon_sym_COMMA, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, - anon_sym_DASH_DASH, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_AMP_AMP, - ACTIONS(4691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4693), 1, - anon_sym_or, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - STATE(1495), 1, - sym_block, - STATE(1972), 1, - sym_or_block, - STATE(1977), 1, - sym_argument_list, - STATE(3270), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4147), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4673), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4697), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4699), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1630), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4669), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4675), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4671), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3484), 13, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [1990] = 6, + [1544] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1879), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - STATE(1677), 1, - sym_type_parameters, - STATE(1631), 2, + STATE(1626), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 56, + ACTIONS(1889), 58, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190604,6 +190197,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -190621,80 +190216,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2065] = 24, + [1618] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4627), 1, - anon_sym_as, - ACTIONS(4629), 1, - anon_sym_LPAREN, - ACTIONS(4637), 1, + ACTIONS(2199), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4641), 1, - anon_sym_DASH_DASH, - ACTIONS(4643), 1, - anon_sym_QMARK, - ACTIONS(4645), 1, - anon_sym_BANG, - ACTIONS(4649), 1, - anon_sym_AMP_AMP, - ACTIONS(4651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4653), 1, - anon_sym_or, - STATE(1846), 1, - sym_argument_list, - STATE(1849), 1, - sym_or_block, - STATE(4269), 1, - sym_type_parameters, - ACTIONS(4625), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4647), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4657), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(4701), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(1632), 2, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(4631), 4, + ACTIONS(2201), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4635), 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(4633), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1789), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -190708,17 +190284,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2176] = 5, + [1691] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2742), 1, + ACTIONS(2267), 1, anon_sym_LBRACK, - STATE(1633), 2, + STATE(1628), 2, sym_line_comment, sym_block_comment, - ACTIONS(2744), 57, + ACTIONS(2269), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190776,21 +190352,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2249] = 5, + [1764] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2666), 1, + ACTIONS(2060), 1, anon_sym_LBRACK, - STATE(1634), 2, + ACTIONS(2159), 1, + anon_sym_LBRACE, + STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(2668), 57, + ACTIONS(2055), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -190844,17 +190421,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2322] = 5, + [1839] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2748), 1, + ACTIONS(2183), 1, anon_sym_LBRACK, - STATE(1635), 2, + STATE(1630), 2, sym_line_comment, sym_block_comment, - ACTIONS(2750), 57, + ACTIONS(2185), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190912,79 +190489,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2395] = 32, - ACTIONS(3), 1, + [1912] = 24, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1751), 1, - anon_sym_SEMI, - ACTIONS(1757), 1, - anon_sym_EQ, - ACTIONS(4661), 1, + ACTIONS(4629), 1, anon_sym_as, - ACTIONS(4665), 1, - anon_sym_COMMA, - ACTIONS(4667), 1, + ACTIONS(4631), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, + ACTIONS(4641), 1, anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, + ACTIONS(4643), 1, anon_sym_DASH_DASH, - ACTIONS(4683), 1, + ACTIONS(4645), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4647), 1, anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4651), 1, anon_sym_AMP_AMP, - ACTIONS(4691), 1, + ACTIONS(4653), 1, anon_sym_PIPE_PIPE, - ACTIONS(4693), 1, + ACTIONS(4655), 1, anon_sym_or, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4703), 1, - anon_sym_LBRACE, - STATE(1972), 1, + STATE(1780), 1, sym_or_block, - STATE(1977), 1, + STATE(1843), 1, sym_argument_list, - STATE(3270), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3668), 1, - sym_block, - STATE(4147), 1, + STATE(4302), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4673), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4697), 2, + ACTIONS(4649), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4657), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4699), 2, + ACTIONS(4659), 2, anon_sym_in, anon_sym_BANGin, - STATE(1636), 2, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(4669), 4, + ACTIONS(4633), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4675), 4, + ACTIONS(4637), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4671), 8, + ACTIONS(4635), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -190993,7 +190556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3484), 13, + ACTIONS(1779), 19, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -191007,17 +190576,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2522] = 5, + [2023] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2754), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - STATE(1637), 2, + STATE(1632), 2, sym_line_comment, sym_block_comment, - ACTIONS(2756), 57, + ACTIONS(2181), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191075,21 +190644,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2595] = 5, + [2096] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2712), 1, + ACTIONS(2039), 1, anon_sym_LBRACK, - STATE(1638), 2, + ACTIONS(4663), 1, + anon_sym_DOLLARelse, + STATE(1633), 2, sym_line_comment, sym_block_comment, - ACTIONS(2714), 57, + ACTIONS(2041), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -191143,17 +190713,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2668] = 5, + [2171] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2135), 1, + ACTIONS(2203), 1, anon_sym_LBRACK, - STATE(1639), 2, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(2137), 57, + ACTIONS(2205), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191211,17 +190781,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2741] = 5, + [2244] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2708), 1, + ACTIONS(2207), 1, anon_sym_LBRACK, - STATE(1640), 2, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 57, + ACTIONS(2209), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191279,61 +190849,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2814] = 5, + [2317] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2776), 1, + ACTIONS(4629), 1, + anon_sym_as, + ACTIONS(4631), 1, + anon_sym_LPAREN, + ACTIONS(4639), 1, anon_sym_LBRACK, - STATE(1641), 2, + ACTIONS(4641), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4643), 1, + anon_sym_DASH_DASH, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, + anon_sym_BANG, + ACTIONS(4651), 1, + anon_sym_AMP_AMP, + ACTIONS(4653), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4655), 1, + anon_sym_or, + STATE(1780), 1, + sym_or_block, + STATE(1843), 1, + sym_argument_list, + STATE(4302), 1, + sym_type_parameters, + ACTIONS(4627), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4649), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4659), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(4665), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4633), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4637), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4635), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1773), 19, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -191347,17 +190936,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2887] = 5, + [2428] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2900), 1, + ACTIONS(2211), 1, anon_sym_LBRACK, - STATE(1642), 2, + STATE(1637), 2, sym_line_comment, sym_block_comment, - ACTIONS(2902), 57, + ACTIONS(2213), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191415,17 +191004,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2960] = 5, + [2501] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3056), 1, + ACTIONS(2215), 1, anon_sym_LBRACK, - STATE(1643), 2, + STATE(1638), 2, sym_line_comment, sym_block_comment, - ACTIONS(3058), 57, + ACTIONS(2217), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191483,22 +191072,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3033] = 6, + [2574] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1911), 1, + ACTIONS(2219), 1, anon_sym_LBRACK, - ACTIONS(4705), 1, - anon_sym_DOLLARelse, - STATE(1644), 2, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(1913), 56, + ACTIONS(2221), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -191552,152 +191140,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3108] = 15, + [2647] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4629), 1, - anon_sym_LPAREN, - ACTIONS(4637), 1, + ACTIONS(2223), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_QMARK, - ACTIONS(4645), 1, - anon_sym_BANG, - STATE(1846), 1, - sym_argument_list, - STATE(1849), 1, - sym_or_block, - STATE(4269), 1, - sym_type_parameters, - ACTIONS(4625), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4647), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(1645), 2, + STATE(1640), 2, sym_line_comment, sym_block_comment, - ACTIONS(4631), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4633), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1781), 35, + ACTIONS(2225), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_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, - [3201] = 18, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4629), 1, - anon_sym_LPAREN, - ACTIONS(4637), 1, - anon_sym_LBRACK, - ACTIONS(4643), 1, anon_sym_QMARK, - ACTIONS(4645), 1, anon_sym_BANG, - ACTIONS(4649), 1, - anon_sym_AMP_AMP, - STATE(1846), 1, - sym_argument_list, - STATE(1849), 1, - sym_or_block, - STATE(4269), 1, - sym_type_parameters, - ACTIONS(4625), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4647), 2, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4657), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1646), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4631), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, - ACTIONS(4635), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4633), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 26, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_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, @@ -191711,17 +191208,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3300] = 5, + [2720] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2507), 1, + ACTIONS(2227), 1, anon_sym_LBRACK, - STATE(1647), 2, + STATE(1641), 2, sym_line_comment, sym_block_comment, - ACTIONS(2509), 57, + ACTIONS(2229), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191779,22 +191276,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3373] = 6, + [2793] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1841), 1, + ACTIONS(2243), 1, anon_sym_LBRACK, - ACTIONS(4707), 1, - anon_sym_DOLLARelse, - STATE(1648), 2, + STATE(1642), 2, sym_line_comment, sym_block_comment, - ACTIONS(1843), 56, + ACTIONS(2245), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -191848,40 +191344,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3448] = 15, + [2866] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4629), 1, + ACTIONS(4631), 1, anon_sym_LPAREN, - ACTIONS(4637), 1, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_QMARK, ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, anon_sym_BANG, - STATE(1846), 1, - sym_argument_list, - STATE(1849), 1, + STATE(1780), 1, sym_or_block, - STATE(4269), 1, + STATE(1843), 1, + sym_argument_list, + STATE(4302), 1, sym_type_parameters, - ACTIONS(4625), 2, + ACTIONS(4627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4647), 2, + ACTIONS(4649), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1649), 2, + STATE(1643), 2, sym_line_comment, sym_block_comment, - ACTIONS(4631), 4, + ACTIONS(4633), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4633), 8, + ACTIONS(4635), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -191890,7 +191386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 35, + ACTIONS(1787), 35, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191926,35 +191422,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3541] = 14, + [2959] = 18, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4629), 1, + ACTIONS(4631), 1, anon_sym_LPAREN, - ACTIONS(4637), 1, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_QMARK, ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, anon_sym_BANG, - STATE(1846), 1, - sym_argument_list, - STATE(1849), 1, + ACTIONS(4651), 1, + anon_sym_AMP_AMP, + STATE(1780), 1, sym_or_block, - STATE(4269), 1, + STATE(1843), 1, + sym_argument_list, + STATE(4302), 1, sym_type_parameters, - ACTIONS(4625), 2, + ACTIONS(4627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4647), 2, + ACTIONS(4649), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1650), 2, + ACTIONS(4659), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1644), 2, sym_line_comment, sym_block_comment, - ACTIONS(4633), 8, + ACTIONS(4633), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4637), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4635), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -191963,29 +191476,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 39, + ACTIONS(1791), 26, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [3058] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2247), 1, + anon_sym_LBRACK, + STATE(1645), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2249), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -192003,24 +191571,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3632] = 7, + [3131] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1894), 1, + ACTIONS(2251), 1, anon_sym_LBRACK, - ACTIONS(1897), 1, - anon_sym_COLON, - ACTIONS(2475), 1, - anon_sym_LBRACE, - STATE(1651), 2, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 55, + ACTIONS(2253), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -192039,6 +191604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -192073,17 +191639,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3709] = 5, + [3204] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2722), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - STATE(1652), 2, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(2724), 57, + ACTIONS(2261), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192141,22 +191707,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3782] = 6, + [3277] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1894), 1, + ACTIONS(2187), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LBRACE, - STATE(1653), 2, + STATE(1648), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 56, + ACTIONS(2189), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -192210,35 +191775,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3857] = 13, + [3350] = 17, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4629), 1, + ACTIONS(4631), 1, anon_sym_LPAREN, - ACTIONS(4637), 1, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_QMARK, ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, anon_sym_BANG, - STATE(1846), 1, - sym_argument_list, - STATE(1849), 1, + STATE(1780), 1, sym_or_block, - STATE(4269), 1, + STATE(1843), 1, + sym_argument_list, + STATE(4302), 1, sym_type_parameters, - ACTIONS(4625), 2, + ACTIONS(4627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4647), 2, + ACTIONS(4649), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1654), 2, + ACTIONS(4659), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 47, + ACTIONS(4633), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4637), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4635), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1791), 27, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192246,12 +191835,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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, + [3447] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4631), 1, + anon_sym_LPAREN, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, + anon_sym_BANG, + STATE(1780), 1, + sym_or_block, + STATE(1843), 1, + sym_argument_list, + STATE(4302), 1, + sym_type_parameters, + ACTIONS(4627), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4649), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1650), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4633), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4635), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1791), 35, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -192260,12 +191913,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -192286,21 +191933,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3946] = 5, + [3540] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2698), 1, + ACTIONS(2060), 1, anon_sym_LBRACK, - STATE(1655), 2, + ACTIONS(2063), 1, + anon_sym_COLON, + ACTIONS(2159), 1, + anon_sym_LBRACE, + STATE(1651), 2, sym_line_comment, sym_block_comment, - ACTIONS(2700), 57, + ACTIONS(2055), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -192319,7 +191969,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -192354,35 +192003,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4019] = 13, + [3617] = 14, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4629), 1, + ACTIONS(4631), 1, anon_sym_LPAREN, - ACTIONS(4637), 1, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_QMARK, ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, anon_sym_BANG, - STATE(1846), 1, - sym_argument_list, - STATE(1849), 1, + STATE(1780), 1, sym_or_block, - STATE(4269), 1, + STATE(1843), 1, + sym_argument_list, + STATE(4302), 1, sym_type_parameters, - ACTIONS(4625), 2, + ACTIONS(4627), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4647), 2, + ACTIONS(4649), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(1656), 2, + STATE(1652), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 47, + ACTIONS(4635), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1791), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192393,9 +192051,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -192405,11 +192060,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -192430,80 +192080,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4108] = 24, - ACTIONS(497), 1, + [3708] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4627), 1, - anon_sym_as, - ACTIONS(4629), 1, + STATE(1653), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4669), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4637), 1, - anon_sym_LBRACK, - ACTIONS(4639), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4641), 1, - anon_sym_DASH_DASH, - ACTIONS(4643), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, - ACTIONS(4645), 1, anon_sym_BANG, - ACTIONS(4649), 1, - anon_sym_AMP_AMP, - ACTIONS(4651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4653), 1, - anon_sym_or, - STATE(1846), 1, - sym_argument_list, - STATE(1849), 1, - sym_or_block, - STATE(4269), 1, - sym_type_parameters, - ACTIONS(4625), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4647), 2, + anon_sym_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4655), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4657), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1657), 2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + anon_sym_map_LBRACK, + anon_sym_POUND, + ACTIONS(4667), 34, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_assert, + anon_sym_defer, + anon_sym_goto, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_DOLLARfor, + anon_sym_for, + anon_sym_asm, + [3781] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2271), 1, + anon_sym_LBRACK, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(4631), 4, + ACTIONS(2273), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4635), 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(4633), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1795), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -192517,80 +192216,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4219] = 24, + [3854] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4627), 1, - anon_sym_as, - ACTIONS(4629), 1, - anon_sym_LPAREN, - ACTIONS(4637), 1, + ACTIONS(2421), 1, anon_sym_LBRACK, - ACTIONS(4639), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4641), 1, - anon_sym_DASH_DASH, - ACTIONS(4643), 1, - anon_sym_QMARK, - ACTIONS(4645), 1, - anon_sym_BANG, - ACTIONS(4649), 1, - anon_sym_AMP_AMP, - ACTIONS(4651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4653), 1, - anon_sym_or, - STATE(1846), 1, - sym_argument_list, - STATE(1849), 1, - sym_or_block, - STATE(4269), 1, - sym_type_parameters, - ACTIONS(4625), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4647), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4655), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4657), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1658), 2, + STATE(1655), 2, sym_line_comment, sym_block_comment, - ACTIONS(4631), 4, + ACTIONS(2423), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4635), 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(4633), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1773), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -192604,41 +192284,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4330] = 13, + [3927] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4629), 1, - anon_sym_LPAREN, - ACTIONS(4637), 1, + ACTIONS(1807), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, - anon_sym_QMARK, - ACTIONS(4645), 1, - anon_sym_BANG, - STATE(1846), 1, - sym_argument_list, - STATE(1849), 1, - sym_or_block, - STATE(4269), 1, - sym_type_parameters, - ACTIONS(4625), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4647), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(1659), 2, + ACTIONS(2029), 1, + anon_sym_LBRACE, + STATE(1656), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 47, + ACTIONS(1809), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -192652,10 +192318,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -192663,6 +192334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -192680,22 +192353,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4419] = 6, + [4002] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1807), 1, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(1987), 1, - anon_sym_LBRACE, - STATE(1660), 2, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 56, + ACTIONS(1899), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -192749,22 +192421,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4494] = 6, + [4075] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1894), 1, + ACTIONS(2425), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LBRACE, - STATE(1661), 2, + STATE(1658), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 56, + ACTIONS(2427), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -192818,21 +192489,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4569] = 5, + [4148] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2536), 1, + ACTIONS(1897), 1, anon_sym_LBRACK, - STATE(1662), 2, + STATE(1717), 1, + sym_type_parameters, + STATE(1659), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 57, + ACTIONS(1899), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -192886,94 +192558,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4642] = 5, - ACTIONS(3), 1, + [4223] = 13, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(1663), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4711), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4631), 1, anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, anon_sym_QMARK, + ACTIONS(4647), 1, anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - anon_sym_POUND, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4709), 34, + STATE(1780), 1, + sym_or_block, + STATE(1843), 1, + sym_argument_list, + STATE(4302), 1, + sym_type_parameters, + ACTIONS(4627), 2, anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_assert, - anon_sym_defer, - anon_sym_goto, - anon_sym_break, - anon_sym_continue, - anon_sym_return, - anon_sym_DOLLARfor, - anon_sym_for, - anon_sym_asm, - [4715] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2690), 1, - anon_sym_LBRACK, - STATE(1664), 2, + anon_sym_QMARK_DOT, + ACTIONS(4649), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1660), 2, sym_line_comment, sym_block_comment, - ACTIONS(2692), 57, + ACTIONS(1791), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -192987,15 +192606,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -193003,8 +192617,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, @@ -193022,26 +192634,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4788] = 5, + [4312] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2686), 1, + ACTIONS(4631), 1, + anon_sym_LPAREN, + ACTIONS(4639), 1, anon_sym_LBRACK, - STATE(1665), 2, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, + anon_sym_BANG, + STATE(1780), 1, + sym_or_block, + STATE(1843), 1, + sym_argument_list, + STATE(4302), 1, + sym_type_parameters, + ACTIONS(4627), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4649), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1661), 2, sym_line_comment, sym_block_comment, - ACTIONS(2688), 57, + ACTIONS(1769), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -193055,15 +192682,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -193071,8 +192693,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, @@ -193090,17 +192710,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4861] = 5, + [4401] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2904), 1, + ACTIONS(2173), 1, anon_sym_LBRACK, - STATE(1666), 2, + STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(2906), 57, + ACTIONS(2175), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193158,21 +192778,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4934] = 5, + [4474] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1879), 1, + ACTIONS(2029), 1, + anon_sym_LBRACE, + ACTIONS(2713), 1, anon_sym_LBRACK, - STATE(1667), 2, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 57, + ACTIONS(2715), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -193226,21 +192847,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5007] = 5, + [4549] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2682), 1, + ACTIONS(2077), 1, anon_sym_LBRACK, - STATE(1668), 2, + ACTIONS(4671), 1, + anon_sym_DOLLARelse, + STATE(1664), 2, sym_line_comment, sym_block_comment, - ACTIONS(2684), 57, + ACTIONS(2079), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -193294,61 +192916,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5080] = 5, - ACTIONS(497), 1, + [4624] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_LBRACK, - STATE(1669), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3062), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(1709), 1, anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(1721), 1, + anon_sym_EQ, + ACTIONS(4675), 1, anon_sym_as, + ACTIONS(4677), 1, + anon_sym_LBRACE, + ACTIONS(4679), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4681), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4691), 1, + anon_sym_LBRACK, + ACTIONS(4693), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH_DASH, + ACTIONS(4697), 1, + anon_sym_QMARK, + ACTIONS(4699), 1, + anon_sym_BANG, + ACTIONS(4701), 1, + anon_sym_LBRACK2, + ACTIONS(4703), 1, + anon_sym_AMP_AMP, + ACTIONS(4705), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4707), 1, + anon_sym_or, + ACTIONS(4709), 1, + anon_sym_POUND_LBRACK, + STATE(1515), 1, + sym_block, + STATE(1977), 1, + sym_or_block, + STATE(1984), 1, + sym_argument_list, + STATE(3275), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4284), 1, + sym_type_parameters, + ACTIONS(4673), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4687), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4711), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4713), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1665), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4683), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4689), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4685), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(3488), 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, + [4751] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1709), 1, + anon_sym_SEMI, + ACTIONS(1721), 1, + anon_sym_EQ, + ACTIONS(4675), 1, + anon_sym_as, + ACTIONS(4679), 1, + anon_sym_COMMA, + ACTIONS(4681), 1, + anon_sym_LPAREN, + ACTIONS(4691), 1, + anon_sym_LBRACK, + ACTIONS(4693), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH_DASH, + ACTIONS(4697), 1, + anon_sym_QMARK, + ACTIONS(4699), 1, + anon_sym_BANG, + ACTIONS(4701), 1, + anon_sym_LBRACK2, + ACTIONS(4703), 1, anon_sym_AMP_AMP, + ACTIONS(4705), 1, anon_sym_PIPE_PIPE, + ACTIONS(4707), 1, anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4709), 1, anon_sym_POUND_LBRACK, + ACTIONS(4715), 1, + anon_sym_LBRACE, + STATE(1977), 1, + sym_or_block, + STATE(1984), 1, + sym_argument_list, + STATE(3275), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3692), 1, + sym_block, + STATE(4284), 1, + sym_type_parameters, + ACTIONS(4673), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4687), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4711), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(4713), 2, anon_sym_in, anon_sym_BANGin, + STATE(1666), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4683), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4689), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4685), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3488), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -193362,17 +193106,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5153] = 5, + [4878] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1887), 1, + ACTIONS(2060), 1, anon_sym_LBRACK, - STATE(1670), 2, + ACTIONS(2159), 1, + anon_sym_LBRACE, + STATE(1667), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 56, + ACTIONS(2055), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193429,29 +193175,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5225] = 7, + [4953] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1797), 1, + ACTIONS(4631), 1, + anon_sym_LPAREN, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(4713), 1, - anon_sym_else, - STATE(1893), 1, - sym_else_branch, - STATE(1671), 2, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, + anon_sym_BANG, + STATE(1780), 1, + sym_or_block, + STATE(1843), 1, + sym_argument_list, + STATE(4302), 1, + sym_type_parameters, + ACTIONS(4627), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4649), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 54, + ACTIONS(1783), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -193467,9 +193225,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -193479,12 +193234,97 @@ static const uint16_t ts_small_parse_table[] = { 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, + [5042] = 24, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4629), 1, + anon_sym_as, + ACTIONS(4631), 1, + anon_sym_LPAREN, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4641), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4643), 1, + anon_sym_DASH_DASH, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, + anon_sym_BANG, + ACTIONS(4651), 1, + anon_sym_AMP_AMP, + ACTIONS(4653), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4655), 1, + anon_sym_or, + STATE(1780), 1, + sym_or_block, + STATE(1843), 1, + sym_argument_list, + STATE(4302), 1, + sym_type_parameters, + ACTIONS(4627), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(4649), 2, + anon_sym_LBRACK2, anon_sym_POUND_LBRACK, + ACTIONS(4657), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(4659), 2, anon_sym_in, anon_sym_BANGin, + STATE(1669), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4633), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4637), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4635), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1765), 19, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -193498,17 +193338,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5301] = 5, + [5153] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2770), 1, + ACTIONS(3050), 1, anon_sym_LBRACK, - STATE(1672), 2, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 56, + ACTIONS(3052), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193565,27 +193405,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5373] = 6, + [5225] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2222), 1, + ACTIONS(2451), 1, anon_sym_LBRACK, - STATE(1673), 2, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 6, + ACTIONS(2453), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_LT_DASH, - ACTIONS(2219), 50, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -193600,6 +193437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -193607,6 +193445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -193633,19 +193472,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5447] = 6, + [5297] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2540), 1, + ACTIONS(2505), 1, anon_sym_LBRACK, - ACTIONS(4715), 1, - anon_sym_BANG, - STATE(1674), 2, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(2542), 55, + ACTIONS(2507), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193671,6 +193508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -193701,17 +193539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5521] = 5, + [5369] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2295), 1, + ACTIONS(2861), 1, anon_sym_LBRACK, - STATE(1675), 2, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(2297), 56, + ACTIONS(2863), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193768,17 +193606,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5593] = 5, + [5441] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2766), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - STATE(1676), 2, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 56, + ACTIONS(2883), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193835,17 +193673,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5665] = 5, + [5513] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2838), 1, + ACTIONS(2885), 1, anon_sym_LBRACK, - STATE(1677), 2, + STATE(1675), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 56, + ACTIONS(2887), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193902,17 +193740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5737] = 5, + [5585] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2892), 1, + ACTIONS(2437), 1, anon_sym_LBRACK, - STATE(1678), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(2894), 56, + ACTIONS(2439), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193969,17 +193807,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5809] = 5, + [5657] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2726), 1, + ACTIONS(3009), 1, anon_sym_LBRACK, - STATE(1679), 2, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(2728), 56, + ACTIONS(3011), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194036,17 +193874,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5881] = 5, + [5729] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2896), 1, + ACTIONS(2113), 1, anon_sym_LBRACK, - STATE(1680), 2, + STATE(1678), 2, sym_line_comment, sym_block_comment, - ACTIONS(2898), 56, + ACTIONS(2115), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194103,17 +193941,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5953] = 5, + [5801] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2872), 1, + ACTIONS(2777), 1, anon_sym_LBRACK, - STATE(1681), 2, + STATE(1679), 2, sym_line_comment, sym_block_comment, - ACTIONS(2874), 56, + ACTIONS(2779), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194170,17 +194008,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6025] = 5, + [5873] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, + ACTIONS(2773), 1, anon_sym_LBRACK, - STATE(1682), 2, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(2211), 56, + ACTIONS(2775), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194237,17 +194075,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6097] = 5, + [5945] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2201), 1, + ACTIONS(2255), 1, anon_sym_LBRACK, - STATE(1683), 2, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(2203), 56, + ACTIONS(2257), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194304,17 +194142,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6169] = 5, + [6017] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2670), 1, + ACTIONS(2239), 1, anon_sym_LBRACK, - STATE(1684), 2, + STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(2672), 56, + ACTIONS(2241), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194371,17 +194209,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6241] = 5, + [6089] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2313), 1, + ACTIONS(2889), 1, anon_sym_LBRACK, - STATE(1685), 2, + STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(2315), 56, + ACTIONS(2891), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194438,21 +194276,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6313] = 5, + [6161] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2461), 1, + ACTIONS(2885), 1, anon_sym_LBRACK, - STATE(1686), 2, + ACTIONS(3039), 1, + anon_sym_DOT, + STATE(1684), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 56, + ACTIONS(2887), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -194505,17 +194344,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6385] = 5, + [6235] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1811), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - STATE(1687), 2, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(1813), 56, + ACTIONS(2457), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194537,6 +194376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -194544,6 +194384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -194553,8 +194394,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -194572,17 +194411,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6457] = 5, + [6307] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2123), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - STATE(1688), 2, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(2125), 56, + ACTIONS(2837), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194639,17 +194478,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6529] = 5, + [6379] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2147), 1, + ACTIONS(2761), 1, anon_sym_LBRACK, - STATE(1689), 2, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(2149), 56, + ACTIONS(2763), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194706,17 +194545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6601] = 5, + [6451] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2734), 1, + ACTIONS(2087), 1, anon_sym_LBRACK, - STATE(1690), 2, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(2736), 56, + ACTIONS(2089), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194773,42 +194612,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6673] = 6, + [6523] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2222), 1, + ACTIONS(2461), 1, anon_sym_LBRACK, - STATE(1691), 2, + STATE(1689), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 21, + ACTIONS(2463), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(2219), 35, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -194821,6 +194644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -194828,6 +194652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -194841,17 +194666,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [6747] = 5, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [6595] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2884), 1, + ACTIONS(2739), 1, anon_sym_LBRACK, - STATE(1692), 2, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(2886), 56, + ACTIONS(2741), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194908,17 +194746,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6819] = 5, + [6667] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2457), 1, + ACTIONS(2473), 1, anon_sym_LBRACK, - STATE(1693), 2, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(2459), 56, + ACTIONS(2475), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194975,27 +194813,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6891] = 6, + [6739] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1989), 1, + ACTIONS(2583), 1, anon_sym_LBRACK, - STATE(1694), 2, + ACTIONS(4717), 1, + anon_sym_BANG, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 4, + ACTIONS(2585), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(1987), 52, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -195010,13 +194847,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -195043,24 +194881,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6965] = 5, + [6813] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2465), 1, + ACTIONS(2031), 1, anon_sym_LBRACK, - STATE(1695), 2, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(2467), 56, + ACTIONS(1809), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(2029), 52, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -195110,17 +194949,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7037] = 5, + [6887] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2453), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - STATE(1696), 2, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(2455), 56, + ACTIONS(2101), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195177,17 +195016,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7109] = 5, + [6959] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2113), 1, + ACTIONS(2705), 1, anon_sym_LBRACK, - STATE(1697), 2, + STATE(1695), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 56, + ACTIONS(2707), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195244,17 +195083,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7181] = 5, + [7031] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2197), 1, + ACTIONS(2765), 1, anon_sym_LBRACK, - STATE(1698), 2, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(2199), 56, + ACTIONS(2767), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195311,17 +195150,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7253] = 5, + [7103] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2503), 1, + ACTIONS(2769), 1, anon_sym_LBRACK, - STATE(1699), 2, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(2505), 56, + ACTIONS(2771), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195378,17 +195217,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7325] = 5, + [7175] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1807), 1, + ACTIONS(2849), 1, anon_sym_LBRACK, - STATE(1700), 2, + STATE(1698), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 56, + ACTIONS(2851), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195410,6 +195249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -195417,6 +195257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -195426,8 +195267,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -195445,17 +195284,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7397] = 5, + [7247] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2860), 1, + ACTIONS(2091), 1, anon_sym_LBRACK, - STATE(1701), 2, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(2862), 56, + ACTIONS(2093), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195512,17 +195351,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7469] = 5, + [7319] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3066), 1, + ACTIONS(2875), 1, anon_sym_LBRACK, - STATE(1702), 2, + STATE(1700), 2, sym_line_comment, sym_block_comment, - ACTIONS(3068), 56, + ACTIONS(2877), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195579,17 +195418,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7541] = 5, + [7391] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2309), 1, + ACTIONS(2803), 1, anon_sym_LBRACK, - STATE(1703), 2, + STATE(1701), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 56, + ACTIONS(2805), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195646,17 +195485,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7613] = 5, + [7463] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2730), 1, + ACTIONS(1797), 1, anon_sym_LBRACK, - STATE(1704), 2, + ACTIONS(4719), 1, + anon_sym_else, + STATE(1876), 1, + sym_else_branch, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(2732), 56, + ACTIONS(1799), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195678,7 +195521,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -195686,7 +195528,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -195713,17 +195554,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7685] = 5, + [7539] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2908), 1, + ACTIONS(1803), 1, anon_sym_LBRACK, - STATE(1705), 2, + ACTIONS(4719), 1, + anon_sym_else, + STATE(1877), 1, + sym_else_branch, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(2910), 56, + ACTIONS(1805), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195745,7 +195590,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -195753,7 +195597,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -195780,17 +195623,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7757] = 5, + [7615] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2117), 1, + ACTIONS(2819), 1, anon_sym_LBRACK, - STATE(1706), 2, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 56, + ACTIONS(2821), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195847,22 +195690,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7829] = 6, + [7687] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1891), 1, - anon_sym_DOT, - ACTIONS(2473), 1, + ACTIONS(2231), 1, anon_sym_LBRACK, - STATE(1707), 2, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 55, + ACTIONS(2233), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -195915,17 +195757,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7903] = 5, + [7759] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1989), 1, + ACTIONS(2831), 1, anon_sym_LBRACK, - STATE(1708), 2, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(1987), 56, + ACTIONS(2833), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195982,21 +195824,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7975] = 5, + [7831] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3048), 1, + ACTIONS(2057), 1, + anon_sym_DOT, + ACTIONS(2157), 1, anon_sym_LBRACK, - STATE(1709), 2, + STATE(1707), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 56, + ACTIONS(2159), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -196049,17 +195892,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8047] = 5, + [7905] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2267), 1, + ACTIONS(1807), 1, anon_sym_LBRACK, - STATE(1710), 2, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(2269), 56, + ACTIONS(1809), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196081,7 +195924,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -196089,7 +195931,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -196099,6 +195940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -196116,17 +195959,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8119] = 5, + [7977] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2447), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - STATE(1711), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 56, + ACTIONS(1889), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196148,7 +195991,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -196156,7 +195998,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -196166,6 +196007,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -196183,17 +196026,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8191] = 5, + [8049] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2848), 1, + ACTIONS(2117), 1, anon_sym_LBRACK, - STATE(1712), 2, + STATE(1710), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 56, + ACTIONS(2119), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196250,24 +196093,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8263] = 5, + [8121] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2694), 1, + ACTIONS(2142), 1, anon_sym_LBRACK, - STATE(1713), 2, + STATE(1711), 2, sym_line_comment, sym_block_comment, - ACTIONS(2696), 56, + ACTIONS(2137), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LT_DASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + ACTIONS(2139), 35, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [8195] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2031), 1, + anon_sym_LBRACK, + STATE(1712), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1809), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_RBRACE, + ACTIONS(2029), 52, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -196282,7 +196196,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -196290,7 +196203,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -196317,17 +196229,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8335] = 5, + [8269] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2103), 1, anon_sym_LBRACK, - STATE(1714), 2, + STATE(1713), 2, sym_line_comment, sym_block_comment, - ACTIONS(2854), 56, + ACTIONS(2105), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196384,17 +196296,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8407] = 5, + [8341] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2856), 1, + ACTIONS(2125), 1, anon_sym_LBRACK, - STATE(1715), 2, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(2858), 56, + ACTIONS(2127), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196451,17 +196363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8479] = 5, + [8413] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(2121), 1, anon_sym_LBRACK, - STATE(1716), 2, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 56, + ACTIONS(2123), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196518,17 +196430,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8551] = 5, + [8485] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3042), 1, + ACTIONS(2095), 1, anon_sym_LBRACK, - STATE(1717), 2, + STATE(1716), 2, sym_line_comment, sym_block_comment, - ACTIONS(3044), 56, + ACTIONS(2097), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196585,17 +196497,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8623] = 5, + [8557] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2844), 1, + ACTIONS(2161), 1, anon_sym_LBRACK, - STATE(1718), 2, + STATE(1717), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 56, + ACTIONS(2163), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196652,17 +196564,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8695] = 5, + [8629] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2231), 1, + ACTIONS(2429), 1, anon_sym_LBRACK, - STATE(1719), 2, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 56, + ACTIONS(2431), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196719,17 +196631,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8767] = 5, + [8701] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2738), 1, + ACTIONS(2545), 1, anon_sym_LBRACK, - STATE(1720), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(2740), 56, + ACTIONS(2547), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196786,17 +196698,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8839] = 5, + [8773] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2830), 1, + ACTIONS(2469), 1, anon_sym_LBRACK, - STATE(1721), 2, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 56, + ACTIONS(2471), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196853,17 +196765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8911] = 5, + [8845] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2189), 1, + ACTIONS(2157), 1, anon_sym_LBRACK, - STATE(1722), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 56, + ACTIONS(2159), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196920,25 +196832,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8983] = 6, + [8917] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1989), 1, + ACTIONS(2153), 1, anon_sym_LBRACK, - STATE(1723), 2, + STATE(1722), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 4, + ACTIONS(2155), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(1987), 52, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -196988,21 +196899,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9057] = 7, + [8989] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1803), 1, + ACTIONS(2053), 1, anon_sym_LBRACK, - ACTIONS(4713), 1, - anon_sym_else, - STATE(1896), 1, - sym_else_branch, - STATE(1724), 2, + STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 54, + ACTIONS(2055), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197024,6 +196931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -197031,6 +196939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -197057,17 +196966,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9133] = 5, + [9061] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, + ACTIONS(2149), 1, anon_sym_LBRACK, - STATE(1725), 2, + STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(2924), 56, + ACTIONS(2151), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197124,17 +197033,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9205] = 5, + [9133] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2845), 1, anon_sym_LBRACK, - STATE(1726), 2, + STATE(1725), 2, sym_line_comment, sym_block_comment, - ACTIONS(2303), 56, + ACTIONS(2847), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197191,17 +197100,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9277] = 5, + [9205] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2291), 1, + ACTIONS(2717), 1, anon_sym_LBRACK, - STATE(1727), 2, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(2293), 56, + ACTIONS(2719), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197258,17 +197167,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9349] = 5, + [9277] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2786), 1, + ACTIONS(2723), 1, anon_sym_LBRACK, - STATE(1728), 2, + STATE(1727), 2, sym_line_comment, sym_block_comment, - ACTIONS(2788), 56, + ACTIONS(2725), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197325,17 +197234,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9421] = 5, + [9349] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2469), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - STATE(1729), 2, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 56, + ACTIONS(2729), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197392,17 +197301,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9493] = 5, + [9421] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2499), 1, + ACTIONS(2735), 1, anon_sym_LBRACK, - STATE(1730), 2, + STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(2501), 56, + ACTIONS(2737), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197459,17 +197368,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9565] = 5, + [9493] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2473), 1, + ACTIONS(2743), 1, anon_sym_LBRACK, - STATE(1731), 2, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 56, + ACTIONS(2745), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197526,17 +197435,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9637] = 5, + [9565] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2796), 1, + ACTIONS(2031), 1, anon_sym_LBRACK, - STATE(1732), 2, + STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 56, + ACTIONS(2029), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197593,17 +197502,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9709] = 5, + [9637] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2878), 1, + ACTIONS(2747), 1, anon_sym_LBRACK, - STATE(1733), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 56, + ACTIONS(2749), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197660,17 +197569,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9781] = 5, + [9709] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2716), 1, + ACTIONS(2799), 1, anon_sym_LBRACK, - STATE(1734), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(2718), 56, + ACTIONS(2801), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197727,17 +197636,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9853] = 5, + [9781] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2800), 1, + ACTIONS(2807), 1, anon_sym_LBRACK, - STATE(1735), 2, + STATE(1734), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 56, + ACTIONS(2809), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197794,17 +197703,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9925] = 5, + [9853] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2780), 1, + ACTIONS(2811), 1, anon_sym_LBRACK, - STATE(1736), 2, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 56, + ACTIONS(2813), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197861,17 +197770,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9997] = 5, + [9925] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2822), 1, + ACTIONS(2131), 1, anon_sym_LBRACK, - STATE(1737), 2, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 56, + ACTIONS(2133), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197928,17 +197837,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10069] = 5, + [9997] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2804), 1, + ACTIONS(2815), 1, anon_sym_LBRACK, - STATE(1738), 2, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 56, + ACTIONS(2817), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197995,17 +197904,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10141] = 5, + [10069] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2305), 1, + ACTIONS(2857), 1, anon_sym_LBRACK, - STATE(1739), 2, + STATE(1738), 2, sym_line_comment, sym_block_comment, - ACTIONS(2307), 56, + ACTIONS(2859), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198062,17 +197971,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10213] = 5, + [10141] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2141), 1, + ACTIONS(2841), 1, anon_sym_LBRACK, - STATE(1740), 2, + STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(2143), 56, + ACTIONS(2843), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198129,17 +198038,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10285] = 5, + [10213] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2792), 1, + ACTIONS(3013), 1, anon_sym_LBRACK, - STATE(1741), 2, + STATE(1740), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 56, + ACTIONS(3015), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198196,17 +198105,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10357] = 5, + [10285] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2826), 1, + ACTIONS(3019), 1, anon_sym_LBRACK, - STATE(1742), 2, + STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 56, + ACTIONS(3021), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198263,17 +198172,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10429] = 5, + [10357] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2227), 1, + ACTIONS(3064), 1, anon_sym_LBRACK, - STATE(1743), 2, + STATE(1742), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 56, + ACTIONS(3066), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198330,17 +198239,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10501] = 5, + [10429] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2441), 1, + ACTIONS(2853), 1, anon_sym_LBRACK, - STATE(1744), 2, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(2443), 56, + ACTIONS(2855), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198397,22 +198306,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10573] = 6, + [10501] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2511), 1, + ACTIONS(3023), 1, anon_sym_LBRACK, - ACTIONS(2515), 1, - anon_sym_DOT, - STATE(1745), 2, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 55, + ACTIONS(3025), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -198465,17 +198373,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10647] = 5, + [10573] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2520), 1, + ACTIONS(3027), 1, anon_sym_LBRACK, - STATE(1746), 2, + STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 56, + ACTIONS(3029), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198532,24 +198440,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10719] = 5, + [10645] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2530), 1, + ACTIONS(2142), 1, anon_sym_LBRACK, - STATE(1747), 2, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(2532), 56, + ACTIONS(2137), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_LT_DASH, + ACTIONS(2139), 50, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -198564,7 +198475,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -198572,7 +198482,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -198599,17 +198508,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10791] = 5, + [10719] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2834), 1, + ACTIONS(3054), 1, anon_sym_LBRACK, - STATE(1748), 2, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 56, + ACTIONS(3056), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198666,17 +198575,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10863] = 5, + [10791] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2511), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - STATE(1749), 2, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 56, + ACTIONS(2147), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198733,17 +198642,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10935] = 5, + [10863] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2888), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - STATE(1750), 2, + STATE(1749), 2, sym_line_comment, sym_block_comment, - ACTIONS(2890), 56, + ACTIONS(2265), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198800,19 +198709,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11007] = 6, + [10935] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1879), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - STATE(1818), 1, - sym_type_parameters, - STATE(1751), 2, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 54, + ACTIONS(3046), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198834,6 +198741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -198841,6 +198749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -198867,36 +198776,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11080] = 15, + [11007] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4719), 1, + ACTIONS(4681), 1, anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, + ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(4701), 1, anon_sym_LBRACK2, - ACTIONS(4729), 1, + ACTIONS(4709), 1, anon_sym_POUND_LBRACK, - STATE(2080), 1, - sym_argument_list, - STATE(2081), 1, + STATE(1977), 1, sym_or_block, - STATE(4267), 1, + STATE(1984), 1, + sym_argument_list, + STATE(4284), 1, sym_type_parameters, - ACTIONS(4717), 2, + ACTIONS(4673), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1752), 2, + STATE(1751), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 15, + ACTIONS(1783), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -198912,7 +198821,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 30, + ACTIONS(1781), 30, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -198920,10 +198830,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, @@ -198943,82 +198851,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11171] = 27, - ACTIONS(3), 1, + anon_sym_COLON_EQ, + [11098] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1795), 1, - anon_sym_EQ, - ACTIONS(4719), 1, - anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(1807), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_QMARK, - ACTIONS(4725), 1, - anon_sym_BANG, - ACTIONS(4727), 1, - anon_sym_LBRACK2, - ACTIONS(4729), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 1, + ACTIONS(2029), 1, + anon_sym_LBRACE, + STATE(1752), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1809), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, - ACTIONS(4741), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(4743), 1, anon_sym_DASH_DASH, - ACTIONS(4745), 1, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + 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(4747), 1, anon_sym_PIPE_PIPE, - ACTIONS(4749), 1, anon_sym_or, - STATE(2080), 1, - sym_argument_list, - STATE(2081), 1, - sym_or_block, - STATE(4267), 1, - sym_type_parameters, - ACTIONS(4717), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4737), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4751), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(4753), 2, anon_sym_in, anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [11171] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2029), 1, + anon_sym_LBRACE, + ACTIONS(2713), 1, + anon_sym_LBRACK, STATE(1753), 2, sym_line_comment, sym_block_comment, - ACTIONS(4733), 4, + ACTIONS(2715), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4739), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4735), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1793), 16, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -199031,82 +198985,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11286] = 27, - ACTIONS(3), 1, + anon_sym_COLON_EQ, + [11244] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1773), 1, - anon_sym_EQ, - ACTIONS(4719), 1, - anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(2039), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_QMARK, - ACTIONS(4725), 1, - anon_sym_BANG, - ACTIONS(4727), 1, - anon_sym_LBRACK2, - ACTIONS(4729), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 1, - anon_sym_as, - ACTIONS(4741), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4743), 1, - anon_sym_DASH_DASH, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4749), 1, - anon_sym_or, - STATE(2080), 1, - sym_argument_list, - STATE(2081), 1, - sym_or_block, - STATE(4267), 1, - sym_type_parameters, - ACTIONS(4717), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4737), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4751), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4753), 2, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(4721), 1, + anon_sym_DOLLARelse, STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(4733), 4, + ACTIONS(2041), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4739), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4735), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1771), 16, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -199119,52 +199052,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11401] = 15, + anon_sym_COLON_EQ, + [11317] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4719), 1, + ACTIONS(4725), 1, anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, + ACTIONS(4733), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4735), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(4737), 1, anon_sym_LBRACK2, - ACTIONS(4729), 1, + ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - STATE(2080), 1, + STATE(2073), 1, sym_argument_list, - STATE(2081), 1, + STATE(2074), 1, sym_or_block, - STATE(4267), 1, + STATE(4147), 1, sym_type_parameters, - ACTIONS(4717), 2, + ACTIONS(4723), 2, anon_sym_DOT, anon_sym_QMARK_DOT, STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 15, + ACTIONS(1787), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4727), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4729), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1767), 30, + ACTIONS(1785), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -199195,19 +199131,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11492] = 6, + [11412] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1841), 1, + ACTIONS(2060), 1, anon_sym_LBRACK, - ACTIONS(4755), 1, - anon_sym_DOLLARelse, + ACTIONS(2159), 1, + anon_sym_LBRACE, STATE(1756), 2, sym_line_comment, sym_block_comment, - ACTIONS(1843), 54, + ACTIONS(2055), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199262,60 +199198,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11565] = 6, - ACTIONS(497), 1, + [11485] = 21, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1807), 1, + ACTIONS(1791), 1, + anon_sym_EQ, + ACTIONS(4725), 1, + anon_sym_LPAREN, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(1987), 1, - anon_sym_LBRACE, + ACTIONS(4733), 1, + anon_sym_QMARK, + ACTIONS(4735), 1, + anon_sym_BANG, + ACTIONS(4737), 1, + anon_sym_LBRACK2, + ACTIONS(4739), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4745), 1, + anon_sym_AMP_AMP, + STATE(2073), 1, + sym_argument_list, + STATE(2074), 1, + sym_or_block, + STATE(4147), 1, + sym_type_parameters, + ACTIONS(4723), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4741), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4747), 2, + anon_sym_in, + anon_sym_BANGin, STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4727), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4743), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4729), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(1789), 23, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_PIPE_PIPE, anon_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, @@ -199328,45 +199280,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11638] = 16, + [11588] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4719), 1, + ACTIONS(1791), 1, + anon_sym_EQ, + ACTIONS(4725), 1, anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, + ACTIONS(4733), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4735), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(4737), 1, anon_sym_LBRACK2, - ACTIONS(4729), 1, + ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - STATE(2080), 1, + STATE(2073), 1, sym_argument_list, - STATE(2081), 1, + STATE(2074), 1, sym_or_block, - STATE(4267), 1, + STATE(4147), 1, sym_type_parameters, - ACTIONS(4717), 2, + ACTIONS(4723), 2, anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(4741), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4747), 2, + anon_sym_in, + anon_sym_BANGin, STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 7, - anon_sym_EQ, + ACTIONS(4727), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, anon_sym_CARET, - ACTIONS(4735), 8, + ACTIONS(4743), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4729), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -199375,14 +199336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 30, + ACTIONS(1789), 24, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -199392,8 +199349,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, @@ -199406,45 +199361,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11731] = 17, + [11689] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4719), 1, + ACTIONS(4725), 1, anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, + ACTIONS(4733), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4735), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(4737), 1, anon_sym_LBRACK2, - ACTIONS(4729), 1, + ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - STATE(2080), 1, + STATE(2073), 1, sym_argument_list, - STATE(2081), 1, + STATE(2074), 1, sym_or_block, - STATE(4267), 1, + STATE(4147), 1, sym_type_parameters, - ACTIONS(4717), 2, + ACTIONS(4723), 2, anon_sym_DOT, anon_sym_QMARK_DOT, STATE(1759), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 3, + ACTIONS(1791), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4733), 4, + ACTIONS(4727), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4735), 8, + ACTIONS(4729), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -199453,7 +199408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 30, + ACTIONS(1789), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -199484,75 +199439,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11826] = 20, - ACTIONS(3), 1, + [11784] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1765), 1, - anon_sym_EQ, - ACTIONS(4719), 1, - anon_sym_LPAREN, - ACTIONS(4721), 1, - anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_QMARK, - ACTIONS(4725), 1, - anon_sym_BANG, - ACTIONS(4727), 1, - anon_sym_LBRACK2, - ACTIONS(4729), 1, - anon_sym_POUND_LBRACK, - STATE(2080), 1, - sym_argument_list, - STATE(2081), 1, - sym_or_block, - STATE(4267), 1, - sym_type_parameters, - ACTIONS(4717), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4737), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4753), 2, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1897), 1, + anon_sym_LBRACK, + STATE(1810), 1, + sym_type_parameters, STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(4733), 4, + ACTIONS(1899), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4739), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4735), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 24, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_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, @@ -199565,56 +199505,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11927] = 21, + anon_sym_COLON_EQ, + [11857] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1765), 1, - anon_sym_EQ, - ACTIONS(4719), 1, + ACTIONS(4725), 1, anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, + ACTIONS(4733), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4735), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(4737), 1, anon_sym_LBRACK2, - ACTIONS(4729), 1, + ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - STATE(2080), 1, + STATE(2073), 1, sym_argument_list, - STATE(2081), 1, + STATE(2074), 1, sym_or_block, - STATE(4267), 1, + STATE(4147), 1, sym_type_parameters, - ACTIONS(4717), 2, + ACTIONS(4723), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4737), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4753), 2, - anon_sym_in, - anon_sym_BANGin, STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(4733), 4, + ACTIONS(1791), 7, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_CARET, - ACTIONS(4739), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4735), 8, + ACTIONS(4729), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -199623,18 +199552,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 23, + ACTIONS(1789), 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, @@ -199647,84 +199583,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12030] = 30, - ACTIONS(3), 1, + [11950] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1751), 1, - anon_sym_LBRACE, - ACTIONS(1757), 1, - anon_sym_EQ, - ACTIONS(4661), 1, - anon_sym_as, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(2077), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, - anon_sym_DASH_DASH, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_AMP_AMP, - ACTIONS(4691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4693), 1, - anon_sym_or, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4757), 1, - anon_sym_COMMA, - STATE(1972), 1, - sym_or_block, - STATE(1977), 1, - sym_argument_list, - STATE(3270), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4147), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4673), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4697), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4699), 2, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(4749), 1, + anon_sym_DOLLARelse, STATE(1762), 2, sym_line_comment, sym_block_comment, - ACTIONS(4669), 4, + ACTIONS(2079), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4675), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4671), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3484), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -199738,45 +199650,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12151] = 17, + [12023] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4719), 1, + ACTIONS(4681), 1, anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, + ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(4701), 1, anon_sym_LBRACK2, - ACTIONS(4729), 1, + ACTIONS(4709), 1, anon_sym_POUND_LBRACK, - STATE(2080), 1, - sym_argument_list, - STATE(2081), 1, + STATE(1977), 1, sym_or_block, - STATE(4267), 1, + STATE(1984), 1, + sym_argument_list, + STATE(4284), 1, sym_type_parameters, - ACTIONS(4717), 2, + ACTIONS(4673), 2, anon_sym_DOT, anon_sym_QMARK_DOT, STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(1781), 3, + ACTIONS(1787), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4733), 4, + ACTIONS(4683), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4735), 8, + ACTIONS(4685), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -199785,7 +199697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1779), 30, + ACTIONS(1785), 30, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -199793,10 +199706,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, @@ -199816,69 +199727,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12246] = 15, + anon_sym_COLON_EQ, + [12118] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, + ACTIONS(1791), 1, + anon_sym_EQ, + ACTIONS(4681), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4701), 1, anon_sym_LBRACK2, - ACTIONS(4695), 1, + ACTIONS(4703), 1, + anon_sym_AMP_AMP, + ACTIONS(4709), 1, anon_sym_POUND_LBRACK, - STATE(1972), 1, - sym_or_block, STATE(1977), 1, + sym_or_block, + STATE(1984), 1, sym_argument_list, - STATE(4147), 1, + STATE(4284), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4673), 2, anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(4687), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4713), 2, + anon_sym_in, + anon_sym_BANGin, STATE(1764), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 15, - anon_sym_EQ, + ACTIONS(4683), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4689), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4685), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1767), 30, + ACTIONS(1789), 23, 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, @@ -199892,73 +199810,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12337] = 29, + [12221] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1641), 1, - anon_sym_LBRACE, - ACTIONS(1649), 1, + ACTIONS(1791), 1, anon_sym_EQ, - ACTIONS(4661), 1, - anon_sym_as, - ACTIONS(4667), 1, + ACTIONS(4681), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, - anon_sym_DASH_DASH, - ACTIONS(4683), 1, + ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4701), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_AMP_AMP, - ACTIONS(4691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4693), 1, - anon_sym_or, - ACTIONS(4695), 1, + ACTIONS(4709), 1, anon_sym_POUND_LBRACK, - STATE(1972), 1, - sym_or_block, STATE(1977), 1, + sym_or_block, + STATE(1984), 1, sym_argument_list, - STATE(3891), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4147), 1, + STATE(4284), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4673), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4673), 2, + ACTIONS(4687), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4697), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4699), 2, + ACTIONS(4713), 2, anon_sym_in, anon_sym_BANGin, STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(4669), 4, + ACTIONS(4683), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4675), 4, + ACTIONS(4689), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4671), 8, + ACTIONS(4685), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -199967,8 +199866,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3522), 14, + ACTIONS(1789), 24, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -199982,73 +199891,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12456] = 29, + [12322] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1641), 1, - anon_sym_SEMI, - ACTIONS(1649), 1, + ACTIONS(1765), 1, anon_sym_EQ, - ACTIONS(4661), 1, + ACTIONS(4675), 1, anon_sym_as, - ACTIONS(4667), 1, + ACTIONS(4681), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, + ACTIONS(4693), 1, anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, + ACTIONS(4695), 1, anon_sym_DASH_DASH, - ACTIONS(4683), 1, + ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4701), 1, anon_sym_LBRACK2, - ACTIONS(4693), 1, - anon_sym_or, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4767), 1, + ACTIONS(4703), 1, anon_sym_AMP_AMP, - ACTIONS(4769), 1, + ACTIONS(4705), 1, anon_sym_PIPE_PIPE, - STATE(1972), 1, - sym_or_block, + ACTIONS(4707), 1, + anon_sym_or, + ACTIONS(4709), 1, + anon_sym_POUND_LBRACK, STATE(1977), 1, + sym_or_block, + STATE(1984), 1, sym_argument_list, - STATE(3905), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4147), 1, + STATE(4284), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4673), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4697), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4763), 2, + ACTIONS(4687), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4771), 2, + ACTIONS(4711), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4713), 2, anon_sym_in, anon_sym_BANGin, STATE(1766), 2, sym_line_comment, sym_block_comment, - ACTIONS(4759), 4, + ACTIONS(4683), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4765), 4, + ACTIONS(4689), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4761), 8, + ACTIONS(4685), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200057,7 +199962,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3522), 14, + ACTIONS(1763), 16, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -200072,69 +199979,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12575] = 27, + [12437] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1773), 1, - anon_sym_EQ, - ACTIONS(4661), 1, - anon_sym_as, - ACTIONS(4667), 1, + ACTIONS(4681), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, - anon_sym_DASH_DASH, - ACTIONS(4683), 1, + ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4701), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_AMP_AMP, - ACTIONS(4691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4693), 1, - anon_sym_or, - ACTIONS(4695), 1, + ACTIONS(4709), 1, anon_sym_POUND_LBRACK, - STATE(1972), 1, - sym_or_block, STATE(1977), 1, + sym_or_block, + STATE(1984), 1, sym_argument_list, - STATE(4147), 1, + STATE(4284), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4673), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4673), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4697), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4699), 2, - anon_sym_in, - anon_sym_BANGin, STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(4669), 4, + ACTIONS(1791), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4683), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4675), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4671), 8, + ACTIONS(4685), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200143,10 +200026,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1771), 16, + ACTIONS(1789), 30, anon_sym_SEMI, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_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, @@ -200160,36 +200057,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12690] = 15, + [12532] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4719), 1, + ACTIONS(4681), 1, anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, + ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(4701), 1, anon_sym_LBRACK2, - ACTIONS(4729), 1, + ACTIONS(4709), 1, anon_sym_POUND_LBRACK, - STATE(2080), 1, - sym_argument_list, - STATE(2081), 1, + STATE(1977), 1, sym_or_block, - STATE(4267), 1, + STATE(1984), 1, + sym_argument_list, + STATE(4284), 1, sym_type_parameters, - ACTIONS(4717), 2, + ACTIONS(4673), 2, anon_sym_DOT, anon_sym_QMARK_DOT, STATE(1768), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 15, + ACTIONS(1791), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -200205,7 +200102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 30, + ACTIONS(1789), 30, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -200213,10 +200111,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, @@ -200236,69 +200132,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12781] = 27, + anon_sym_COLON_EQ, + [12623] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1795), 1, - anon_sym_EQ, - ACTIONS(4661), 1, - anon_sym_as, - ACTIONS(4667), 1, + ACTIONS(4681), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, - anon_sym_DASH_DASH, - ACTIONS(4683), 1, + ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4701), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_AMP_AMP, - ACTIONS(4691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4693), 1, - anon_sym_or, - ACTIONS(4695), 1, + ACTIONS(4709), 1, anon_sym_POUND_LBRACK, - STATE(1972), 1, - sym_or_block, STATE(1977), 1, + sym_or_block, + STATE(1984), 1, sym_argument_list, - STATE(4147), 1, + STATE(4284), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4673), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4673), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4697), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4699), 2, - anon_sym_in, - anon_sym_BANGin, STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(4669), 4, + ACTIONS(1791), 7, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_CARET, - ACTIONS(4675), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4671), 8, + ACTIONS(4685), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200307,10 +200179,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1793), 16, + ACTIONS(1789), 30, anon_sym_SEMI, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_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, @@ -200324,55 +200210,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12896] = 17, + [12716] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, + ACTIONS(4725), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4733), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4735), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4737), 1, anon_sym_LBRACK2, - ACTIONS(4695), 1, + ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - STATE(1972), 1, - sym_or_block, - STATE(1977), 1, + STATE(2073), 1, sym_argument_list, + STATE(2074), 1, + sym_or_block, STATE(4147), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4723), 2, anon_sym_DOT, anon_sym_QMARK_DOT, STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(1781), 3, + ACTIONS(1783), 15, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4669), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4671), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1779), 30, - anon_sym_SEMI, + ACTIONS(1781), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -200380,8 +200263,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, @@ -200401,57 +200286,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12991] = 21, + [12807] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1765), 1, + ACTIONS(1709), 1, + anon_sym_LBRACE, + ACTIONS(1721), 1, anon_sym_EQ, - ACTIONS(4667), 1, + ACTIONS(4675), 1, + anon_sym_as, + ACTIONS(4681), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4693), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH_DASH, + ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4701), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4703), 1, anon_sym_AMP_AMP, - ACTIONS(4695), 1, + ACTIONS(4705), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4707), 1, + anon_sym_or, + ACTIONS(4709), 1, anon_sym_POUND_LBRACK, - STATE(1972), 1, - sym_or_block, + ACTIONS(4751), 1, + anon_sym_COMMA, STATE(1977), 1, + sym_or_block, + STATE(1984), 1, sym_argument_list, - STATE(4147), 1, + STATE(3275), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4284), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4673), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4673), 2, + ACTIONS(4687), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4699), 2, + ACTIONS(4711), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4713), 2, anon_sym_in, anon_sym_BANGin, STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(4669), 4, + ACTIONS(4683), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4675), 4, + ACTIONS(4689), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4671), 8, + ACTIONS(4685), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200460,17 +200363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 23, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(3488), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200484,54 +200377,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13094] = 20, + [12928] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(1765), 1, anon_sym_EQ, - ACTIONS(4667), 1, + ACTIONS(4725), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4733), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4735), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4737), 1, anon_sym_LBRACK2, - ACTIONS(4695), 1, + ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - STATE(1972), 1, - sym_or_block, - STATE(1977), 1, + ACTIONS(4745), 1, + anon_sym_AMP_AMP, + ACTIONS(4753), 1, + anon_sym_as, + ACTIONS(4755), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4757), 1, + anon_sym_DASH_DASH, + ACTIONS(4759), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4761), 1, + anon_sym_or, + STATE(2073), 1, sym_argument_list, + STATE(2074), 1, + sym_or_block, STATE(4147), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4723), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4673), 2, + ACTIONS(4741), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4699), 2, + ACTIONS(4747), 2, anon_sym_in, anon_sym_BANGin, + ACTIONS(4763), 2, + anon_sym_is, + anon_sym_BANGis, STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(4669), 4, + ACTIONS(4727), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4675), 4, + ACTIONS(4743), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4671), 8, + ACTIONS(4729), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200540,18 +200448,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 24, - anon_sym_SEMI, - anon_sym_as, + ACTIONS(1763), 16, 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, + anon_sym_LT_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200564,46 +200465,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13195] = 17, + [13043] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(4725), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4733), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4735), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4737), 1, anon_sym_LBRACK2, - ACTIONS(4695), 1, + ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - STATE(1972), 1, - sym_or_block, - STATE(1977), 1, + ACTIONS(4745), 1, + anon_sym_AMP_AMP, + ACTIONS(4753), 1, + anon_sym_as, + ACTIONS(4755), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4757), 1, + anon_sym_DASH_DASH, + ACTIONS(4759), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4761), 1, + anon_sym_or, + STATE(2073), 1, sym_argument_list, + STATE(2074), 1, + sym_or_block, STATE(4147), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4723), 2, anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(4741), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4747), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(4763), 2, + anon_sym_is, + anon_sym_BANGis, STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4669), 4, + ACTIONS(4727), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4671), 8, + ACTIONS(4743), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4729), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200612,24 +200536,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 30, - anon_sym_SEMI, - anon_sym_as, + ACTIONS(1777), 16, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_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, + anon_sym_LT_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200642,37 +200553,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, - [13290] = 15, + [13158] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, + ACTIONS(4725), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4733), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4735), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4737), 1, anon_sym_LBRACK2, - ACTIONS(4695), 1, + ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - STATE(1972), 1, - sym_or_block, - STATE(1977), 1, + STATE(2073), 1, sym_argument_list, + STATE(2074), 1, + sym_or_block, STATE(4147), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4723), 2, anon_sym_DOT, anon_sym_QMARK_DOT, STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 15, + ACTIONS(1769), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -200688,8 +200598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 30, - anon_sym_SEMI, + ACTIONS(1767), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -200697,8 +200606,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, @@ -200718,45 +200629,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13381] = 16, + [13249] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(4675), 1, + anon_sym_as, + ACTIONS(4681), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4693), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH_DASH, + ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4701), 1, anon_sym_LBRACK2, - ACTIONS(4695), 1, + ACTIONS(4703), 1, + anon_sym_AMP_AMP, + ACTIONS(4705), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4707), 1, + anon_sym_or, + ACTIONS(4709), 1, anon_sym_POUND_LBRACK, - STATE(1972), 1, - sym_or_block, STATE(1977), 1, + sym_or_block, + STATE(1984), 1, sym_argument_list, - STATE(4147), 1, + STATE(4284), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4673), 2, anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(4687), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4711), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4713), 2, + anon_sym_in, + anon_sym_BANGin, STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 7, - anon_sym_EQ, + ACTIONS(4683), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, anon_sym_CARET, - ACTIONS(4671), 8, + ACTIONS(4689), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4685), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200765,24 +200700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 30, + ACTIONS(1777), 16, anon_sym_SEMI, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200796,60 +200717,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13474] = 6, - ACTIONS(497), 1, + [13364] = 29, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1894), 1, - anon_sym_LBRACK, - ACTIONS(2475), 1, + ACTIONS(1755), 1, anon_sym_LBRACE, - STATE(1776), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1889), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(1759), 1, + anon_sym_EQ, + ACTIONS(4675), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4681), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4691), 1, + anon_sym_LBRACK, + ACTIONS(4693), 1, anon_sym_PLUS_PLUS, + ACTIONS(4695), 1, anon_sym_DASH_DASH, + ACTIONS(4697), 1, anon_sym_QMARK, + ACTIONS(4699), 1, anon_sym_BANG, + ACTIONS(4701), 1, anon_sym_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(4703), 1, anon_sym_AMP_AMP, + ACTIONS(4705), 1, anon_sym_PIPE_PIPE, + ACTIONS(4707), 1, anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4709), 1, anon_sym_POUND_LBRACK, + STATE(1977), 1, + sym_or_block, + STATE(1984), 1, + sym_argument_list, + STATE(3862), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4284), 1, + sym_type_parameters, + ACTIONS(4673), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4687), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4711), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(4713), 2, anon_sym_in, anon_sym_BANGin, + STATE(1776), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4683), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4689), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4685), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3534), 14, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200863,36 +200807,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13547] = 15, + [13483] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, + ACTIONS(4725), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4733), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4735), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4737), 1, anon_sym_LBRACK2, - ACTIONS(4695), 1, + ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - STATE(1972), 1, - sym_or_block, - STATE(1977), 1, + STATE(2073), 1, sym_argument_list, + STATE(2074), 1, + sym_or_block, STATE(4147), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4723), 2, anon_sym_DOT, anon_sym_QMARK_DOT, STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 15, + ACTIONS(1791), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -200908,8 +200852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1783), 30, - anon_sym_SEMI, + ACTIONS(1789), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -200917,8 +200860,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, @@ -200938,193 +200883,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13638] = 6, - ACTIONS(497), 1, + [13574] = 29, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1911), 1, - anon_sym_LBRACK, - ACTIONS(4773), 1, - anon_sym_DOLLARelse, - STATE(1778), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1913), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(1755), 1, + anon_sym_SEMI, + ACTIONS(1759), 1, + anon_sym_EQ, + ACTIONS(4675), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4681), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4691), 1, + anon_sym_LBRACK, + ACTIONS(4693), 1, anon_sym_PLUS_PLUS, + ACTIONS(4695), 1, anon_sym_DASH_DASH, + ACTIONS(4697), 1, anon_sym_QMARK, + ACTIONS(4699), 1, anon_sym_BANG, + ACTIONS(4701), 1, anon_sym_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(4707), 1, + anon_sym_or, + ACTIONS(4709), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4773), 1, anon_sym_AMP_AMP, + ACTIONS(4775), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(1977), 1, + sym_or_block, + STATE(1984), 1, + sym_argument_list, + STATE(3825), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4284), 1, + sym_type_parameters, + ACTIONS(4673), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4711), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(4769), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4777), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, - [13711] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1987), 1, - anon_sym_LBRACE, - ACTIONS(2674), 1, - anon_sym_LBRACK, - STATE(1779), 2, + STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4765), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4771), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, - [13784] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1989), 1, - anon_sym_LBRACK, - STATE(1780), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1987), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4767), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(3534), 14, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -201138,90 +200973,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13854] = 5, - ACTIONS(497), 1, + [13693] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2916), 1, - anon_sym_LBRACK, - STATE(1781), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2918), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4681), 1, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4691), 1, + anon_sym_LBRACK, + ACTIONS(4697), 1, anon_sym_QMARK, + ACTIONS(4699), 1, anon_sym_BANG, + ACTIONS(4701), 1, anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4709), 1, anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [13924] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(3042), 1, - anon_sym_LBRACK, - STATE(1782), 2, + STATE(1977), 1, + sym_or_block, + STATE(1984), 1, + sym_argument_list, + STATE(4284), 1, + sym_type_parameters, + ACTIONS(4673), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(3044), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1769), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -201231,91 +201012,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_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, - [13994] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2726), 1, - anon_sym_LBRACK, - STATE(1783), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2728), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(1767), 30, + anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -201333,17 +201049,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14064] = 5, + [13784] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2844), 1, + ACTIONS(2545), 1, anon_sym_LBRACK, - STATE(1784), 2, + STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 54, + ACTIONS(2547), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201398,17 +201114,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14134] = 5, + [13854] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2231), 1, + ACTIONS(2113), 1, anon_sym_LBRACK, - STATE(1785), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 54, + ACTIONS(2115), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201463,17 +201179,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14204] = 5, + [13924] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(2149), 1, anon_sym_LBRACK, - STATE(1786), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(3062), 54, + ACTIONS(2151), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201528,17 +201244,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14274] = 5, + [13994] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2766), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - STATE(1787), 2, + STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 54, + ACTIONS(2181), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201593,123 +201309,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14344] = 5, - ACTIONS(497), 1, + [14064] = 27, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3056), 1, - anon_sym_LBRACK, - STATE(1788), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3058), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(1773), 1, + anon_sym_EQ, + ACTIONS(4675), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4681), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4691), 1, + anon_sym_LBRACK, + ACTIONS(4693), 1, anon_sym_PLUS_PLUS, + ACTIONS(4695), 1, anon_sym_DASH_DASH, + ACTIONS(4697), 1, anon_sym_QMARK, + ACTIONS(4699), 1, anon_sym_BANG, + ACTIONS(4701), 1, anon_sym_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(4707), 1, + anon_sym_or, + ACTIONS(4709), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4773), 1, anon_sym_AMP_AMP, + ACTIONS(4775), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(1977), 1, + sym_or_block, + STATE(1984), 1, + sym_argument_list, + STATE(4284), 1, + sym_type_parameters, + ACTIONS(4673), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(4769), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4777), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, - [14414] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2904), 1, - anon_sym_LBRACK, - STATE(1789), 2, + ACTIONS(4779), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(2906), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4765), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4771), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4767), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1771), 15, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -201723,17 +201396,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14484] = 5, + [14178] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2900), 1, + ACTIONS(2183), 1, anon_sym_LBRACK, - STATE(1790), 2, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(2902), 54, + ACTIONS(2185), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201788,17 +201461,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14554] = 5, + [14248] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2295), 1, + ACTIONS(2187), 1, anon_sym_LBRACK, - STATE(1791), 2, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(2297), 54, + ACTIONS(2189), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201853,17 +201526,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14624] = 5, + [14318] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2878), 1, + ACTIONS(2199), 1, anon_sym_LBRACK, - STATE(1792), 2, + STATE(1787), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 54, + ACTIONS(2201), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201918,22 +201591,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14694] = 6, + [14388] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1891), 1, - anon_sym_DOT, - ACTIONS(2473), 1, + ACTIONS(2153), 1, anon_sym_LBRACK, - STATE(1793), 2, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 53, + ACTIONS(2155), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -201984,17 +201656,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14766] = 5, + [14458] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2776), 1, + ACTIONS(2157), 1, anon_sym_LBRACK, - STATE(1794), 2, + STATE(1789), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 54, + ACTIONS(2159), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202049,58 +201721,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14836] = 5, + [14528] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2770), 1, + ACTIONS(2142), 1, anon_sym_LBRACK, - STATE(1795), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 54, + ACTIONS(2137), 19, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -202114,26 +201751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14906] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2222), 1, - anon_sym_LBRACK, - STATE(1796), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2219), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2139), 35, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -202166,38 +201787,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [14976] = 5, - ACTIONS(497), 1, + [14600] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2804), 1, - anon_sym_LBRACK, - STATE(1797), 2, + ACTIONS(4781), 1, + anon_sym_else, + STATE(1988), 1, + sym_else_branch, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1799), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -202207,12 +201809,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -202222,71 +201818,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, - [15046] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2473), 1, - anon_sym_LBRACK, - STATE(1798), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2475), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(1797), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -202309,25 +201854,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15116] = 5, - ACTIONS(497), 1, + [14674] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2530), 1, - anon_sym_LBRACK, - STATE(1799), 2, + ACTIONS(4781), 1, + anon_sym_else, + STATE(1987), 1, + sym_else_branch, + STATE(1792), 2, sym_line_comment, sym_block_comment, - ACTIONS(2532), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1805), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -202337,12 +201876,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -202352,6 +201885,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1803), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -202374,17 +201921,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15186] = 5, + [14748] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2511), 1, + ACTIONS(2173), 1, anon_sym_LBRACK, - STATE(1800), 2, + STATE(1793), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 54, + ACTIONS(2175), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202439,17 +201986,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15256] = 5, + [14818] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1765), 1, + anon_sym_EQ, + ACTIONS(4675), 1, + anon_sym_as, + ACTIONS(4681), 1, + anon_sym_LPAREN, + ACTIONS(4691), 1, + anon_sym_LBRACK, + ACTIONS(4693), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH_DASH, + ACTIONS(4697), 1, + anon_sym_QMARK, + ACTIONS(4699), 1, + anon_sym_BANG, + ACTIONS(4701), 1, + anon_sym_LBRACK2, + ACTIONS(4707), 1, + anon_sym_or, + ACTIONS(4709), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4773), 1, + anon_sym_AMP_AMP, + ACTIONS(4775), 1, + anon_sym_PIPE_PIPE, + STATE(1977), 1, + sym_or_block, + STATE(1984), 1, + sym_argument_list, + STATE(4284), 1, + sym_type_parameters, + ACTIONS(4673), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4711), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4769), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4777), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1794), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4765), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4771), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4767), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1763), 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, + [14932] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2520), 1, + ACTIONS(2131), 1, anon_sym_LBRACK, - STATE(1801), 2, + STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 54, + ACTIONS(2133), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202504,17 +202138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15326] = 5, + [15002] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2856), 1, + ACTIONS(2203), 1, anon_sym_LBRACK, - STATE(1802), 2, + STATE(1796), 2, sym_line_comment, sym_block_comment, - ACTIONS(2858), 54, + ACTIONS(2205), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202569,54 +202203,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15396] = 5, - ACTIONS(497), 1, + [15072] = 16, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2141), 1, + ACTIONS(4681), 1, + anon_sym_LPAREN, + ACTIONS(4691), 1, anon_sym_LBRACK, - STATE(1803), 2, + ACTIONS(4697), 1, + anon_sym_QMARK, + ACTIONS(4699), 1, + anon_sym_BANG, + ACTIONS(4701), 1, + anon_sym_LBRACK2, + ACTIONS(4709), 1, + anon_sym_POUND_LBRACK, + STATE(1977), 1, + sym_or_block, + STATE(1984), 1, + sym_argument_list, + STATE(4284), 1, + sym_type_parameters, + ACTIONS(4673), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(2143), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1791), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_CARET, + ACTIONS(4767), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_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(1789), 29, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -202634,17 +202279,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15466] = 5, + [15164] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2207), 1, anon_sym_LBRACK, - STATE(1804), 2, + STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(2854), 54, + ACTIONS(2209), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202699,17 +202344,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15536] = 5, + [15234] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4681), 1, + anon_sym_LPAREN, + ACTIONS(4691), 1, + anon_sym_LBRACK, + ACTIONS(4697), 1, + anon_sym_QMARK, + ACTIONS(4699), 1, + anon_sym_BANG, + ACTIONS(4701), 1, + anon_sym_LBRACK2, + ACTIONS(4709), 1, + anon_sym_POUND_LBRACK, + STATE(1977), 1, + sym_or_block, + STATE(1984), 1, + sym_argument_list, + STATE(4284), 1, + sym_type_parameters, + ACTIONS(4673), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1799), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1791), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4765), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4767), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1789), 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, + [15328] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2694), 1, + ACTIONS(2211), 1, anon_sym_LBRACK, - STATE(1805), 2, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(2696), 54, + ACTIONS(2213), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202764,17 +202486,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15606] = 5, + [15398] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2754), 1, + ACTIONS(2215), 1, anon_sym_LBRACK, - STATE(1806), 2, + STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(2756), 54, + ACTIONS(2217), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202829,17 +202551,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15676] = 5, + [15468] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2503), 1, + ACTIONS(2219), 1, anon_sym_LBRACK, - STATE(1807), 2, + STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(2505), 54, + ACTIONS(2221), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202894,17 +202616,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15746] = 5, + [15538] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2465), 1, + ACTIONS(2223), 1, anon_sym_LBRACK, - STATE(1808), 2, + STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(2467), 54, + ACTIONS(2225), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202959,17 +202681,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15816] = 5, + [15608] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2748), 1, + ACTIONS(2227), 1, anon_sym_LBRACK, - STATE(1809), 2, + STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(2750), 54, + ACTIONS(2229), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203024,17 +202746,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15886] = 5, + [15678] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2461), 1, + ACTIONS(2243), 1, anon_sym_LBRACK, - STATE(1810), 2, + STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 54, + ACTIONS(2245), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203089,58 +202811,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15956] = 5, - ACTIONS(497), 1, + [15748] = 20, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2742), 1, + ACTIONS(1791), 1, + anon_sym_EQ, + ACTIONS(4681), 1, + anon_sym_LPAREN, + ACTIONS(4691), 1, anon_sym_LBRACK, - STATE(1811), 2, + ACTIONS(4697), 1, + anon_sym_QMARK, + ACTIONS(4699), 1, + anon_sym_BANG, + ACTIONS(4701), 1, + anon_sym_LBRACK2, + ACTIONS(4709), 1, + anon_sym_POUND_LBRACK, + STATE(1977), 1, + sym_or_block, + STATE(1984), 1, + sym_argument_list, + STATE(4284), 1, + sym_type_parameters, + ACTIONS(4673), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4769), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4777), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(2744), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4765), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4771), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4767), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1789), 23, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [15848] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1791), 1, + anon_sym_EQ, + ACTIONS(4681), 1, + anon_sym_LPAREN, + ACTIONS(4691), 1, + anon_sym_LBRACK, + ACTIONS(4697), 1, anon_sym_QMARK, + ACTIONS(4699), 1, anon_sym_BANG, + ACTIONS(4701), 1, anon_sym_LBRACK2, + ACTIONS(4709), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4773), 1, + anon_sym_AMP_AMP, + STATE(1977), 1, + sym_or_block, + STATE(1984), 1, + sym_argument_list, + STATE(4284), 1, + sym_type_parameters, + ACTIONS(4673), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4769), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4777), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(1807), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4765), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, + ACTIONS(4771), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4767), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(1789), 22, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -203154,58 +202972,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16026] = 5, - ACTIONS(497), 1, + [15950] = 17, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2722), 1, + ACTIONS(4681), 1, + anon_sym_LPAREN, + ACTIONS(4691), 1, anon_sym_LBRACK, - STATE(1812), 2, + ACTIONS(4697), 1, + anon_sym_QMARK, + ACTIONS(4699), 1, + anon_sym_BANG, + ACTIONS(4701), 1, + anon_sym_LBRACK2, + ACTIONS(4709), 1, + anon_sym_POUND_LBRACK, + STATE(1977), 1, + sym_or_block, + STATE(1984), 1, + sym_argument_list, + STATE(4284), 1, + sym_type_parameters, + ACTIONS(4673), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1808), 2, sym_line_comment, sym_block_comment, - ACTIONS(2724), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1787), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4765), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4767), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_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(1785), 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, + [16044] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1779), 1, + anon_sym_EQ, + ACTIONS(4675), 1, + anon_sym_as, + ACTIONS(4681), 1, + anon_sym_LPAREN, + ACTIONS(4691), 1, + anon_sym_LBRACK, + ACTIONS(4693), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH_DASH, + ACTIONS(4697), 1, anon_sym_QMARK, + ACTIONS(4699), 1, anon_sym_BANG, + ACTIONS(4701), 1, anon_sym_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(4707), 1, + anon_sym_or, + ACTIONS(4709), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4773), 1, anon_sym_AMP_AMP, + ACTIONS(4775), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(1977), 1, + sym_or_block, + STATE(1984), 1, + sym_argument_list, + STATE(4284), 1, + sym_type_parameters, + ACTIONS(4673), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4711), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(4769), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4777), 2, anon_sym_in, anon_sym_BANGin, + STATE(1809), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4765), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4771), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4767), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1777), 15, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -203219,17 +203136,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16096] = 5, + [16158] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2135), 1, + ACTIONS(2161), 1, anon_sym_LBRACK, - STATE(1813), 2, + STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(2137), 54, + ACTIONS(2163), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203284,17 +203201,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16166] = 5, + [16228] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2712), 1, + ACTIONS(2505), 1, anon_sym_LBRACK, - STATE(1814), 2, + STATE(1811), 2, sym_line_comment, sym_block_comment, - ACTIONS(2714), 54, + ACTIONS(2507), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203349,17 +203266,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16236] = 5, + [16298] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2708), 1, + ACTIONS(2861), 1, anon_sym_LBRACK, - STATE(1815), 2, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 54, + ACTIONS(2863), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203414,21 +203331,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16306] = 5, + [16368] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2698), 1, + ACTIONS(2057), 1, + anon_sym_DOT, + ACTIONS(2157), 1, anon_sym_LBRACK, - STATE(1816), 2, + STATE(1813), 2, sym_line_comment, sym_block_comment, - ACTIONS(2700), 54, + ACTIONS(2159), 53, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -203479,17 +203397,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16376] = 5, + [16440] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2267), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - STATE(1817), 2, + STATE(1814), 2, sym_line_comment, sym_block_comment, - ACTIONS(2269), 54, + ACTIONS(2883), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203544,17 +203462,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16446] = 5, + [16510] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2838), 1, + ACTIONS(2247), 1, anon_sym_LBRACK, - STATE(1818), 2, + STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 54, + ACTIONS(2249), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203609,17 +203527,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16516] = 5, + [16580] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2313), 1, + ACTIONS(2251), 1, anon_sym_LBRACK, - STATE(1819), 2, + STATE(1816), 2, sym_line_comment, sym_block_comment, - ACTIONS(2315), 54, + ACTIONS(2253), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203674,29 +203592,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16586] = 5, + [16650] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2912), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - STATE(1820), 2, + STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(2914), 54, + ACTIONS(2261), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -203708,10 +203624,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -203732,24 +203644,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [16656] = 5, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [16720] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3048), 1, + ACTIONS(2267), 1, anon_sym_LBRACK, - STATE(1821), 2, + STATE(1818), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 54, + ACTIONS(2269), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203804,17 +203722,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16726] = 5, + [16790] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2908), 1, + ACTIONS(2885), 1, anon_sym_LBRACK, - STATE(1822), 2, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(2910), 54, + ACTIONS(2887), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203869,17 +203787,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16796] = 5, + [16860] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1820), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1889), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1887), 37, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + 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, + [16930] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4783), 1, + anon_sym_else, + STATE(2114), 1, + sym_else_branch, + STATE(1821), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1805), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1803), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + 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, + [17004] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4783), 1, + anon_sym_else, + STATE(2101), 1, + sym_else_branch, + STATE(1822), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1799), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1797), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [17078] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2884), 1, + ACTIONS(2889), 1, anon_sym_LBRACK, STATE(1823), 2, sym_line_comment, sym_block_comment, - ACTIONS(2886), 54, + ACTIONS(2891), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203934,17 +204051,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16866] = 5, + [17148] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2690), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, STATE(1824), 2, sym_line_comment, sym_block_comment, - ACTIONS(2692), 54, + ACTIONS(2837), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203999,17 +204116,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16936] = 5, + [17218] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2686), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(2688), 54, + ACTIONS(2273), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204064,17 +204181,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17006] = 5, + [17288] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2682), 1, + ACTIONS(2421), 1, anon_sym_LBRACK, STATE(1826), 2, sym_line_comment, sym_block_comment, - ACTIONS(2684), 54, + ACTIONS(2423), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204129,17 +204246,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17076] = 5, + [17358] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2678), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(2680), 54, + ACTIONS(2101), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204194,17 +204311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17146] = 5, + [17428] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2738), 1, + ACTIONS(2717), 1, anon_sym_LBRACK, STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(2740), 54, + ACTIONS(2719), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204259,17 +204376,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17216] = 5, + [17498] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2734), 1, + ACTIONS(2765), 1, anon_sym_LBRACK, STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(2736), 54, + ACTIONS(2767), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204324,17 +204441,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17286] = 5, + [17568] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(1897), 1, anon_sym_LBRACK, STATE(1830), 2, sym_line_comment, sym_block_comment, - ACTIONS(2303), 54, + ACTIONS(1899), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [17638] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2425), 1, + anon_sym_LBRACK, + STATE(1831), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2427), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204389,19 +204571,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17356] = 7, - ACTIONS(3), 1, + [17708] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4775), 1, - anon_sym_else, - STATE(1918), 1, - sym_else_branch, - STATE(1831), 2, + ACTIONS(2723), 1, + anon_sym_LBRACK, + STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 18, + ACTIONS(2725), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -204411,6 +204599,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -204420,21 +204614,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1803), 35, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [17778] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2885), 1, + anon_sym_LBRACK, + ACTIONS(3039), 1, anon_sym_DOT, + STATE(1833), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2887), 53, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -204456,19 +204701,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [17430] = 7, - ACTIONS(3), 1, + anon_sym_COLON_EQ, + [17850] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4775), 1, - anon_sym_else, - STATE(1919), 1, - sym_else_branch, - STATE(1832), 2, + ACTIONS(2769), 1, + anon_sym_LBRACK, + STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 18, + ACTIONS(2771), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -204478,6 +204730,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -204487,21 +204745,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1797), 35, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [17920] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2849), 1, + anon_sym_LBRACK, + STATE(1835), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2851), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -204523,17 +204831,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [17504] = 5, + anon_sym_COLON_EQ, + [17990] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2670), 1, + ACTIONS(2091), 1, anon_sym_LBRACK, - STATE(1833), 2, + STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(2672), 54, + ACTIONS(2093), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204588,17 +204897,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17574] = 5, + [18060] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2666), 1, + ACTIONS(2875), 1, anon_sym_LBRACK, - STATE(1834), 2, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(2668), 54, + ACTIONS(2877), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204653,17 +204962,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17644] = 5, + [18130] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2457), 1, + ACTIONS(2803), 1, anon_sym_LBRACK, - STATE(1835), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(2459), 54, + ACTIONS(2805), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204718,23 +205027,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17714] = 6, + [18200] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2222), 1, + ACTIONS(2103), 1, anon_sym_LBRACK, - STATE(1836), 2, + STATE(1839), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 19, + ACTIONS(2105), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -204748,10 +205092,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - ACTIONS(2219), 35, + [18270] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2125), 1, + anon_sym_LBRACK, + STATE(1840), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2127), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -204784,17 +205144,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [17786] = 5, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [18340] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2453), 1, + ACTIONS(2121), 1, anon_sym_LBRACK, - STATE(1837), 2, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(2455), 54, + ACTIONS(2123), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204849,17 +205222,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17856] = 5, + [18410] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2536), 1, + ACTIONS(2095), 1, anon_sym_LBRACK, - STATE(1838), 2, + STATE(1842), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 54, + ACTIONS(2097), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204914,17 +205287,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17926] = 5, + [18480] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2447), 1, + ACTIONS(2429), 1, anon_sym_LBRACK, - STATE(1839), 2, + STATE(1843), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 54, + ACTIONS(2431), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204979,17 +205352,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17996] = 5, + [18550] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2441), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - STATE(1840), 2, + STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(2443), 54, + ACTIONS(2729), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205044,17 +205417,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18066] = 5, + [18620] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1879), 1, + ACTIONS(2469), 1, anon_sym_LBRACK, - STATE(1841), 2, + STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 54, + ACTIONS(2471), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205109,17 +205482,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18136] = 5, + [18690] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2507), 1, + ACTIONS(2735), 1, anon_sym_LBRACK, - STATE(1842), 2, + STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(2509), 54, + ACTIONS(2737), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205174,17 +205547,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18206] = 5, + [18760] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2309), 1, + ACTIONS(2031), 1, anon_sym_LBRACK, - STATE(1843), 2, + STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 54, + ACTIONS(2029), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205239,22 +205612,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18276] = 6, + [18830] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2511), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - ACTIONS(2515), 1, - anon_sym_DOT, - STATE(1844), 2, + STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 53, + ACTIONS(2147), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -205305,27 +205677,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18348] = 5, + [18900] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - STATE(1845), 2, + STATE(1849), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 54, + ACTIONS(2237), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -205337,6 +205711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -205357,30 +205735,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18418] = 5, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [18970] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2305), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - STATE(1846), 2, + STATE(1850), 2, sym_line_comment, sym_block_comment, - ACTIONS(2307), 54, + ACTIONS(2265), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205435,65 +205807,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18488] = 16, - ACTIONS(3), 1, + [19040] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(2583), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4785), 1, anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - STATE(1972), 1, - sym_or_block, - STATE(1977), 1, - sym_argument_list, - STATE(4147), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1847), 2, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 7, + ACTIONS(2585), 53, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - ACTIONS(4761), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1763), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -205511,66 +205873,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18580] = 17, - ACTIONS(3), 1, + [19112] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(2739), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - STATE(1972), 1, - sym_or_block, - STATE(1977), 1, - sym_argument_list, - STATE(4147), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1848), 2, + STATE(1852), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 3, + ACTIONS(2741), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4759), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4761), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1763), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -205588,17 +205938,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18674] = 5, + [19182] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2291), 1, + ACTIONS(2087), 1, anon_sym_LBRACK, - STATE(1849), 2, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(2293), 54, + ACTIONS(2089), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205653,73 +206003,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18744] = 20, - ACTIONS(3), 1, + [19252] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1765), 1, - anon_sym_EQ, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(2761), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - STATE(1972), 1, - sym_or_block, - STATE(1977), 1, - sym_argument_list, - STATE(4147), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4763), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4771), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1850), 2, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(4759), 4, + ACTIONS(2763), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4765), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4761), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 23, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -205733,74 +206068,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18844] = 21, - ACTIONS(3), 1, + [19322] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1765), 1, - anon_sym_EQ, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(2773), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4767), 1, - anon_sym_AMP_AMP, - STATE(1972), 1, - sym_or_block, - STATE(1977), 1, - sym_argument_list, - STATE(4147), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4763), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4771), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1851), 2, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(4759), 4, + ACTIONS(2775), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4765), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4761), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 22, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -205814,17 +206133,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18946] = 5, + [19392] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2189), 1, + ACTIONS(2777), 1, anon_sym_LBRACK, - STATE(1852), 2, + STATE(1856), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 54, + ACTIONS(2779), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205879,66 +206198,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19016] = 17, - ACTIONS(3), 1, + [19462] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(2841), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - STATE(1972), 1, - sym_or_block, - STATE(1977), 1, - sym_argument_list, - STATE(4147), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1853), 2, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(1781), 3, + ACTIONS(2843), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4759), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4761), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1779), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -205956,17 +206263,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19110] = 5, + [19532] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2201), 1, + ACTIONS(2845), 1, anon_sym_LBRACK, - STATE(1854), 2, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(2203), 54, + ACTIONS(2847), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206021,19 +206328,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19180] = 7, - ACTIONS(3), 1, + [19602] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4777), 1, - anon_sym_else, - STATE(1954), 1, - sym_else_branch, - STATE(1855), 2, + ACTIONS(2857), 1, + anon_sym_LBRACK, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 18, + ACTIONS(2859), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -206043,6 +206356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -206052,20 +206371,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1797), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -206088,17 +206393,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19254] = 5, + [19672] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, + ACTIONS(2743), 1, anon_sym_LBRACK, - STATE(1856), 2, + STATE(1860), 2, sym_line_comment, sym_block_comment, - ACTIONS(2211), 54, + ACTIONS(2745), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206153,80 +206458,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19324] = 27, - ACTIONS(3), 1, + [19742] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1789), 1, - anon_sym_EQ, - ACTIONS(4661), 1, + ACTIONS(3009), 1, + anon_sym_LBRACK, + STATE(1861), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3011), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, - ACTIONS(4667), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, anon_sym_DASH_DASH, - ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4691), 1, anon_sym_PIPE_PIPE, - ACTIONS(4693), 1, anon_sym_or, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - STATE(1972), 1, - sym_or_block, - STATE(1977), 1, - sym_argument_list, - STATE(4147), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4673), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4699), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(4779), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - STATE(1857), 2, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [19812] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3013), 1, + anon_sym_LBRACK, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(4669), 4, + ACTIONS(3015), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4675), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4671), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1787), 15, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -206240,17 +206588,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19438] = 5, + [19882] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2123), 1, + ACTIONS(3019), 1, anon_sym_LBRACK, - STATE(1858), 2, + STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(2125), 54, + ACTIONS(3021), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206305,17 +206653,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19508] = 5, + [19952] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2147), 1, + ACTIONS(3064), 1, anon_sym_LBRACK, - STATE(1859), 2, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(2149), 54, + ACTIONS(3066), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206370,17 +206718,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19578] = 5, + [20022] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2702), 1, + ACTIONS(2195), 1, anon_sym_LBRACK, - STATE(1860), 2, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(2704), 54, + ACTIONS(2197), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206435,27 +206783,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [19648] = 5, + [20092] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2113), 1, + ACTIONS(2191), 1, anon_sym_LBRACK, - STATE(1861), 2, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 54, + ACTIONS(2193), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206467,6 +206817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -206487,32 +206841,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [19718] = 6, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [20162] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2540), 1, + ACTIONS(2117), 1, anon_sym_LBRACK, - ACTIONS(4781), 1, - anon_sym_BANG, - STATE(1862), 2, + STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(2542), 53, + ACTIONS(2119), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206537,6 +206883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206566,19 +206913,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19790] = 7, - ACTIONS(3), 1, + [20232] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4777), 1, - anon_sym_else, - STATE(1957), 1, - sym_else_branch, - STATE(1863), 2, + ACTIONS(2747), 1, + anon_sym_LBRACK, + STATE(1868), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 18, + ACTIONS(2749), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -206588,6 +206941,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -206597,20 +206956,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1803), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -206633,104 +206978,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19864] = 27, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1789), 1, - anon_sym_EQ, - ACTIONS(4661), 1, - anon_sym_as, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, - anon_sym_DASH_DASH, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4693), 1, - anon_sym_or, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4767), 1, - anon_sym_AMP_AMP, - ACTIONS(4769), 1, - anon_sym_PIPE_PIPE, - STATE(1972), 1, - sym_or_block, - STATE(1977), 1, - sym_argument_list, - STATE(4147), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4763), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4771), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(4779), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(1864), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4759), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4765), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4761), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1787), 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, - [19978] = 5, + [20302] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2730), 1, + ACTIONS(2231), 1, anon_sym_LBRACK, - STATE(1865), 2, + STATE(1869), 2, sym_line_comment, sym_block_comment, - ACTIONS(2732), 54, + ACTIONS(2233), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206785,17 +207043,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20048] = 5, + [20372] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2117), 1, + ACTIONS(2239), 1, anon_sym_LBRACK, - STATE(1866), 2, + STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 54, + ACTIONS(2241), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206850,17 +207108,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20118] = 5, + [20442] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2786), 1, + ACTIONS(2142), 1, anon_sym_LBRACK, - STATE(1867), 2, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(2788), 54, + ACTIONS(2139), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206915,17 +207173,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20188] = 5, + [20512] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2796), 1, + ACTIONS(2255), 1, anon_sym_LBRACK, - STATE(1868), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 54, + ACTIONS(2257), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206980,17 +207238,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20258] = 5, + [20582] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2800), 1, + ACTIONS(2437), 1, anon_sym_LBRACK, - STATE(1869), 2, + STATE(1873), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 54, + ACTIONS(2439), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207045,12 +207303,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20328] = 5, + [20652] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1870), 2, + STATE(1874), 2, sym_line_comment, sym_block_comment, ACTIONS(1809), 18, @@ -207110,17 +207368,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [20398] = 5, + [20722] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2822), 1, + ACTIONS(2451), 1, anon_sym_LBRACK, - STATE(1871), 2, + STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 54, + ACTIONS(2453), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207175,24 +207433,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20468] = 9, - ACTIONS(3), 1, + [20792] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4783), 1, - anon_sym_COMMA, - ACTIONS(4785), 1, - anon_sym_COLON_EQ, - STATE(3820), 1, - aux_sym_identifier_list_repeat1, - ACTIONS(1894), 2, - anon_sym_LBRACE, + ACTIONS(2455), 1, anon_sym_LBRACK, - STATE(1872), 2, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 19, + ACTIONS(2457), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -207202,7 +207461,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -207212,17 +207476,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -207244,17 +207497,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [20546] = 5, + anon_sym_COLON_EQ, + [20862] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2826), 1, + ACTIONS(2461), 1, anon_sym_LBRACK, - STATE(1873), 2, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 54, + ACTIONS(2463), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207309,17 +207563,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20616] = 5, + [20932] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2499), 1, + ACTIONS(2473), 1, anon_sym_LBRACK, - STATE(1874), 2, + STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(2501), 54, + ACTIONS(2475), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207374,80 +207628,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20686] = 27, - ACTIONS(3), 1, + [21002] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1795), 1, - anon_sym_EQ, - ACTIONS(4661), 1, - anon_sym_as, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(2705), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, - anon_sym_DASH_DASH, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4693), 1, - anon_sym_or, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4767), 1, - anon_sym_AMP_AMP, - ACTIONS(4769), 1, - anon_sym_PIPE_PIPE, - STATE(1972), 1, - sym_or_block, - STATE(1977), 1, - sym_argument_list, - STATE(4147), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4697), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4763), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4771), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(1875), 2, + STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(4759), 4, + ACTIONS(2707), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4765), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4761), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1793), 15, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -207461,17 +207693,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20800] = 5, + [21072] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2834), 1, + ACTIONS(2819), 1, anon_sym_LBRACK, - STATE(1876), 2, + STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 54, + ACTIONS(2821), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207526,69 +207758,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20870] = 27, + [21142] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(1773), 1, anon_sym_EQ, - ACTIONS(4661), 1, + ACTIONS(4675), 1, anon_sym_as, - ACTIONS(4667), 1, + ACTIONS(4681), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, + ACTIONS(4693), 1, anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, + ACTIONS(4695), 1, anon_sym_DASH_DASH, - ACTIONS(4683), 1, + ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4701), 1, anon_sym_LBRACK2, - ACTIONS(4693), 1, - anon_sym_or, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4767), 1, + ACTIONS(4703), 1, anon_sym_AMP_AMP, - ACTIONS(4769), 1, + ACTIONS(4705), 1, anon_sym_PIPE_PIPE, - STATE(1972), 1, - sym_or_block, + ACTIONS(4707), 1, + anon_sym_or, + ACTIONS(4709), 1, + anon_sym_POUND_LBRACK, STATE(1977), 1, + sym_or_block, + STATE(1984), 1, sym_argument_list, - STATE(4147), 1, + STATE(4284), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4673), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4697), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4763), 2, + ACTIONS(4687), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4771), 2, + ACTIONS(4713), 2, anon_sym_in, anon_sym_BANGin, - STATE(1877), 2, + ACTIONS(4779), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(4759), 4, + ACTIONS(4683), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4765), 4, + ACTIONS(4689), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4761), 8, + ACTIONS(4685), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -207598,7 +207830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_AMP_CARET, ACTIONS(1771), 15, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -207613,25 +207845,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20984] = 5, - ACTIONS(497), 1, + [21256] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2888), 1, - anon_sym_LBRACK, - STATE(1878), 2, + STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(2890), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1889), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -207641,12 +207863,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -207656,76 +207872,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, - [21054] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2892), 1, - anon_sym_LBRACK, - STATE(1879), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2894), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(1887), 37, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -207742,18 +207910,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, - [21124] = 5, + [21326] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2896), 1, + ACTIONS(3054), 1, anon_sym_LBRACK, - STATE(1880), 2, + STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(2898), 54, + ACTIONS(3056), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207808,17 +207975,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21194] = 5, + [21396] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3066), 1, + ACTIONS(2831), 1, anon_sym_LBRACK, - STATE(1881), 2, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(3068), 54, + ACTIONS(2833), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207873,94 +208040,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21264] = 5, + [21466] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2810), 1, + ACTIONS(3050), 1, anon_sym_LBRACK, - STATE(1882), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2812), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [21334] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2868), 1, - anon_sym_LBRACK, - STATE(1883), 2, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(2870), 54, + ACTIONS(3052), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -207972,10 +208072,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -207996,65 +208092,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [21404] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(1884), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1809), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1807), 37, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -208068,17 +208105,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21474] = 5, + [21536] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2227), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - STATE(1885), 2, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 54, + ACTIONS(3046), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208133,17 +208170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21544] = 5, + [21606] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2469), 1, + ACTIONS(3027), 1, anon_sym_LBRACK, - STATE(1886), 2, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 54, + ACTIONS(3029), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208198,25 +208235,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21614] = 5, - ACTIONS(497), 1, + [21676] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2197), 1, - anon_sym_LBRACK, - STATE(1887), 2, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(2199), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1809), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -208226,12 +208253,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -208241,76 +208262,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, - [21684] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2860), 1, - anon_sym_LBRACK, - STATE(1888), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2862), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(1807), 37, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -208328,17 +208300,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21754] = 5, + [21746] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2872), 1, + ACTIONS(3023), 1, anon_sym_LBRACK, STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(2874), 54, + ACTIONS(3025), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208393,27 +208365,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21824] = 5, + [21816] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, + ACTIONS(2169), 1, anon_sym_LBRACK, STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(2924), 54, + ACTIONS(2171), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -208425,6 +208399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -208445,40 +208423,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21894] = 5, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [21886] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2848), 1, + ACTIONS(2165), 1, anon_sym_LBRACK, STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 54, + ACTIONS(2167), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -208490,6 +208464,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -208510,30 +208488,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21964] = 5, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [21956] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2716), 1, + ACTIONS(2053), 1, anon_sym_LBRACK, STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(2718), 54, + ACTIONS(2055), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208588,17 +208560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22034] = 5, + [22026] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2830), 1, + ACTIONS(2853), 1, anon_sym_LBRACK, STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 54, + ACTIONS(2855), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208653,17 +208625,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22104] = 5, + [22096] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1887), 1, + ACTIONS(2815), 1, anon_sym_LBRACK, STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 54, + ACTIONS(2817), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208718,15 +208690,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22174] = 5, + [22166] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(4789), 1, + anon_sym_COLON_EQ, + STATE(3833), 1, + aux_sym_identifier_list_repeat1, + ACTIONS(2060), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(1813), 18, + ACTIONS(2055), 19, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -208736,6 +208717,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_LBRACK2, @@ -208745,27 +208727,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1811), 37, - anon_sym_SEMI, + ACTIONS(2053), 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_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, @@ -208782,18 +208759,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, [22244] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2792), 1, + ACTIONS(2811), 1, anon_sym_LBRACK, STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 54, + ACTIONS(2813), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208853,12 +208829,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2780), 1, + ACTIONS(2807), 1, anon_sym_LBRACK, STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 54, + ACTIONS(2809), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208914,14 +208890,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, [22384] = 5, - ACTIONS(3), 1, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(2799), 1, + anon_sym_LBRACK, STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(1813), 18, + ACTIONS(2801), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -208931,6 +208917,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -208940,28 +208932,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1811), 37, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -208978,17 +208953,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_COLON_EQ, [22454] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1937), 1, + STATE(1966), 1, sym_type_parameters, STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 18, + ACTIONS(1899), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -209007,7 +208983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1879), 35, + ACTIONS(1897), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -209043,103 +209019,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [22525] = 27, + [22525] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1789), 1, - anon_sym_EQ, - ACTIONS(4661), 1, - anon_sym_as, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, - anon_sym_DASH_DASH, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4693), 1, - anon_sym_or, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4767), 1, - anon_sym_AMP_AMP, - ACTIONS(4769), 1, - anon_sym_PIPE_PIPE, - STATE(1972), 1, - sym_or_block, - STATE(1977), 1, - sym_argument_list, - STATE(4147), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4763), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4771), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(4787), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(1900), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4759), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4765), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4761), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1787), 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, - [22638] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4789), 1, + ACTIONS(4791), 1, anon_sym_DOLLARelse, - STATE(1901), 2, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(1913), 18, + ACTIONS(2041), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -209158,7 +209048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1911), 35, + ACTIONS(2039), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -209194,169 +209084,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22709] = 27, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1789), 1, - anon_sym_EQ, - ACTIONS(4661), 1, - anon_sym_as, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, - anon_sym_DASH_DASH, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4693), 1, - anon_sym_or, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4767), 1, - anon_sym_AMP_AMP, - ACTIONS(4769), 1, - anon_sym_PIPE_PIPE, - STATE(1972), 1, - sym_or_block, - STATE(1977), 1, - sym_argument_list, - STATE(4147), 1, - sym_type_parameters, - ACTIONS(4659), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4763), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4771), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(4791), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(1902), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4759), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4765), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4761), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1787), 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, - [22822] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4795), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, - anon_sym_EQ, - STATE(3274), 1, - aux_sym_expression_without_blocks_list_repeat1, - STATE(1903), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4793), 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(2532), 17, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2530), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [22899] = 4, + [22596] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(1904), 2, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(3732), 54, + ACTIONS(3728), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209398,6 +209134,12 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -209405,24 +209147,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - [22966] = 6, + [22663] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4799), 1, - anon_sym_DOLLARelse, - STATE(1905), 2, + ACTIONS(4795), 1, + anon_sym_COMMA, + ACTIONS(4797), 1, + anon_sym_EQ, + STATE(3273), 1, + aux_sym_expression_without_blocks_list_repeat1, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(1843), 18, - anon_sym_EQ, + ACTIONS(4793), 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(2883), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -209440,20 +209193,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1841), 35, - anon_sym_SEMI, + ACTIONS(2881), 21, 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, @@ -209463,82 +209215,69 @@ 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, - [23037] = 27, + [22740] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1649), 1, + ACTIONS(1759), 1, anon_sym_EQ, - ACTIONS(4661), 1, + ACTIONS(4675), 1, anon_sym_as, - ACTIONS(4667), 1, + ACTIONS(4681), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, + ACTIONS(4693), 1, anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, + ACTIONS(4695), 1, anon_sym_DASH_DASH, - ACTIONS(4683), 1, + ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4701), 1, anon_sym_LBRACK2, - ACTIONS(4693), 1, + ACTIONS(4707), 1, anon_sym_or, - ACTIONS(4695), 1, + ACTIONS(4709), 1, anon_sym_POUND_LBRACK, - ACTIONS(4767), 1, + ACTIONS(4773), 1, anon_sym_AMP_AMP, - ACTIONS(4769), 1, + ACTIONS(4775), 1, anon_sym_PIPE_PIPE, - STATE(1972), 1, - sym_or_block, STATE(1977), 1, + sym_or_block, + STATE(1984), 1, sym_argument_list, - STATE(4147), 1, + STATE(4284), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4673), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4697), 2, + ACTIONS(4711), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4763), 2, + ACTIONS(4769), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4771), 2, + ACTIONS(4777), 2, anon_sym_in, anon_sym_BANGin, - STATE(1906), 2, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(4759), 4, + ACTIONS(4765), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4765), 4, + ACTIONS(4771), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4761), 8, + ACTIONS(4767), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -209547,7 +209286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3522), 14, + ACTIONS(3534), 14, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -209562,133 +209301,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23150] = 5, - ACTIONS(497), 1, + [22853] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1907), 2, + STATE(2017), 1, + sym_type_parameters, + STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(4803), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4801), 49, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_fn, + ACTIONS(1899), 18, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_mut, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_float_literal, - sym_rune_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - [23219] = 27, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1897), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + 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, + [22924] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1789), 1, + ACTIONS(1773), 1, anon_sym_EQ, - ACTIONS(4661), 1, + ACTIONS(4675), 1, anon_sym_as, - ACTIONS(4667), 1, + ACTIONS(4681), 1, anon_sym_LPAREN, - ACTIONS(4677), 1, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, + ACTIONS(4693), 1, anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, + ACTIONS(4695), 1, anon_sym_DASH_DASH, - ACTIONS(4683), 1, + ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4701), 1, anon_sym_LBRACK2, - ACTIONS(4693), 1, + ACTIONS(4707), 1, anon_sym_or, - ACTIONS(4695), 1, + ACTIONS(4709), 1, anon_sym_POUND_LBRACK, - ACTIONS(4767), 1, + ACTIONS(4773), 1, anon_sym_AMP_AMP, - ACTIONS(4769), 1, + ACTIONS(4775), 1, anon_sym_PIPE_PIPE, - STATE(1972), 1, - sym_or_block, STATE(1977), 1, + sym_or_block, + STATE(1984), 1, sym_argument_list, - STATE(4147), 1, + STATE(4284), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4673), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4763), 2, + ACTIONS(4769), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4771), 2, + ACTIONS(4777), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(4805), 2, + ACTIONS(4799), 2, anon_sym_is, anon_sym_BANGis, - STATE(1908), 2, + STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(4759), 4, + ACTIONS(4765), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4765), 4, + ACTIONS(4771), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4761), 8, + ACTIONS(4767), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -209697,7 +209437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1787), 14, + ACTIONS(1771), 14, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -209712,58 +209452,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23332] = 6, + [23037] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2028), 1, + ACTIONS(1773), 1, + anon_sym_EQ, + ACTIONS(4675), 1, + anon_sym_as, + ACTIONS(4681), 1, + anon_sym_LPAREN, + ACTIONS(4691), 1, + anon_sym_LBRACK, + ACTIONS(4693), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH_DASH, + ACTIONS(4697), 1, + anon_sym_QMARK, + ACTIONS(4699), 1, + anon_sym_BANG, + ACTIONS(4701), 1, + anon_sym_LBRACK2, + ACTIONS(4707), 1, + anon_sym_or, + ACTIONS(4709), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4773), 1, + anon_sym_AMP_AMP, + ACTIONS(4775), 1, + anon_sym_PIPE_PIPE, + STATE(1977), 1, + sym_or_block, + STATE(1984), 1, + sym_argument_list, + STATE(4284), 1, sym_type_parameters, - STATE(1909), 2, + ACTIONS(4673), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4769), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4777), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(4801), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(1906), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 18, - anon_sym_EQ, + ACTIONS(4765), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4771), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4767), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1879), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(1771), 14, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -209777,17 +209538,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23403] = 6, + [23150] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4807), 1, + ACTIONS(4803), 1, anon_sym_DOLLARelse, - STATE(1910), 2, + STATE(1907), 2, sym_line_comment, sym_block_comment, - ACTIONS(1843), 18, + ACTIONS(2079), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -209806,7 +209567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1841), 35, + ACTIONS(2077), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -209842,17 +209603,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23474] = 6, + [23221] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4809), 1, + ACTIONS(4805), 1, anon_sym_DOLLARelse, - STATE(1911), 2, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(1913), 18, + ACTIONS(2079), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -209871,7 +209632,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1911), 35, + ACTIONS(2077), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -209882,10 +209644,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, @@ -209907,15 +209667,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23545] = 5, + anon_sym_COLON_EQ, + [23292] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1912), 2, + ACTIONS(4807), 1, + anon_sym_DOLLARelse, + STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(2199), 18, + ACTIONS(2041), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -209934,7 +209697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2197), 35, + ACTIONS(2039), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -209970,58 +209733,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23613] = 7, + [23363] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1894), 1, + ACTIONS(1773), 1, + anon_sym_EQ, + ACTIONS(4675), 1, + anon_sym_as, + ACTIONS(4681), 1, + anon_sym_LPAREN, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(2473), 1, - anon_sym_LBRACE, - STATE(1913), 2, + ACTIONS(4693), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH_DASH, + ACTIONS(4697), 1, + anon_sym_QMARK, + ACTIONS(4699), 1, + anon_sym_BANG, + ACTIONS(4701), 1, + anon_sym_LBRACK2, + ACTIONS(4707), 1, + anon_sym_or, + ACTIONS(4709), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4773), 1, + anon_sym_AMP_AMP, + ACTIONS(4775), 1, + anon_sym_PIPE_PIPE, + STATE(1977), 1, + sym_or_block, + STATE(1984), 1, + sym_argument_list, + STATE(4284), 1, + sym_type_parameters, + ACTIONS(4673), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4769), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4777), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(4809), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 18, - anon_sym_EQ, + ACTIONS(4765), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4771), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4767), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 33, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(1771), 14, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_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, @@ -210035,15 +209819,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23685] = 5, + [23476] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(1911), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4813), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4811), 49, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_fn, + 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, + [23545] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1914), 2, + ACTIONS(2060), 1, + anon_sym_LBRACK, + ACTIONS(2157), 1, + anon_sym_LBRACE, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(2680), 18, + ACTIONS(2055), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210062,21 +209914,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2678), 35, + ACTIONS(2053), 33, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -210098,15 +209947,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23753] = 5, + anon_sym_COLON_EQ, + [23617] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1915), 2, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(2532), 18, + ACTIONS(2745), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210125,7 +209975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2530), 35, + ACTIONS(2743), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210161,15 +210011,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23821] = 5, + [23685] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1916), 2, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(2684), 18, + ACTIONS(2817), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210188,7 +210038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2682), 35, + ACTIONS(2815), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210199,10 +210050,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, @@ -210224,17 +210073,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23889] = 6, + anon_sym_COLON_EQ, + [23753] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4811), 1, - anon_sym_BANG, - STATE(1917), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(2542), 17, + ACTIONS(2855), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210245,6 +210093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -210252,7 +210101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2540), 35, + ACTIONS(2853), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -210288,15 +210137,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23959] = 5, + [23821] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1918), 2, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 18, + ACTIONS(2245), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210315,7 +210164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2792), 35, + ACTIONS(2243), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210351,15 +210200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24027] = 5, + [23889] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1919), 2, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 18, + ACTIONS(2181), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210378,7 +210227,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2830), 35, + ACTIONS(2179), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210389,10 +210239,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, @@ -210414,15 +210262,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24095] = 5, + anon_sym_COLON_EQ, + [23957] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1920), 2, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(2732), 18, + ACTIONS(2427), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210441,8 +210290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2730), 35, - anon_sym_SEMI, + ACTIONS(2425), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210453,8 +210301,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, @@ -210476,16 +210326,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, - [24163] = 5, + [24025] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1921), 2, + STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 18, + ACTIONS(1809), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210504,8 +210353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2117), 35, - anon_sym_SEMI, + ACTIONS(1807), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210516,8 +210364,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, @@ -210539,16 +210389,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24231] = 5, + [24093] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1922), 2, + ACTIONS(2060), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(1920), 2, sym_line_comment, sym_block_comment, - ACTIONS(2788), 18, + ACTIONS(2055), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210567,20 +210419,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2786), 35, - anon_sym_SEMI, + ACTIONS(2053), 33, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -210602,16 +210453,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, - [24299] = 5, + [24163] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1923), 2, + ACTIONS(2060), 1, + anon_sym_DOT, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 18, + ACTIONS(2159), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210630,9 +210482,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2796), 35, + ACTIONS(2157), 34, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -210666,15 +210517,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24367] = 5, + [24233] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1924), 2, + STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 18, + ACTIONS(2273), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210693,7 +210544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2800), 35, + ACTIONS(2271), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -210729,15 +210580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24435] = 5, + [24301] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1925), 2, + STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 18, + ACTIONS(2229), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210756,8 +210607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2822), 35, - anon_sym_SEMI, + ACTIONS(2227), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210768,8 +210618,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, @@ -210791,16 +210643,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, - [24503] = 5, + [24369] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1926), 2, + ACTIONS(2060), 1, + anon_sym_DOT, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 18, + ACTIONS(2159), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210819,9 +210672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2826), 35, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(2157), 34, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -210831,8 +210682,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, @@ -210854,16 +210707,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, - [24571] = 5, + [24439] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1927), 2, + STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 18, + ACTIONS(3052), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210882,8 +210734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2834), 35, - anon_sym_SEMI, + ACTIONS(3050), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210894,8 +210745,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, @@ -210917,16 +210770,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24639] = 5, + [24507] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(1926), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4817), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4815), 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, + [24575] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1928), 2, + STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(2890), 18, + ACTIONS(2139), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210945,7 +210860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2888), 35, + ACTIONS(2142), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -210981,7 +210896,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24707] = 5, + [24643] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1928), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3056), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3054), 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, + [24711] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -210989,7 +210967,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(2894), 18, + ACTIONS(2147), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211008,7 +210986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2892), 35, + ACTIONS(2145), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211044,7 +211022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24775] = 5, + [24779] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -211052,7 +211030,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(2728), 18, + ACTIONS(2029), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211071,7 +211049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2726), 35, + ACTIONS(2031), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211082,10 +211061,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, @@ -211107,7 +211084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24843] = 5, + anon_sym_COLON_EQ, + [24847] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -211115,7 +211093,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(2898), 18, + ACTIONS(3025), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211134,7 +211112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2896), 35, + ACTIONS(3023), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211145,10 +211124,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, @@ -211170,7 +211147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24911] = 5, + anon_sym_COLON_EQ, + [24915] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -211178,7 +211156,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(2898), 18, + ACTIONS(3029), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211197,7 +211175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2896), 35, + ACTIONS(3027), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211233,7 +211211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24979] = 5, + [24983] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -211241,7 +211219,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(1987), 18, + ACTIONS(2821), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211260,8 +211238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1989), 35, - anon_sym_SEMI, + ACTIONS(2819), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211272,8 +211249,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, @@ -211295,8 +211274,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, - [25047] = 5, + [25051] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -211304,7 +211282,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 18, + ACTIONS(1809), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211323,7 +211301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2309), 35, + ACTIONS(1807), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211334,10 +211313,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, @@ -211359,7 +211336,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25115] = 5, + anon_sym_COLON_EQ, + [25119] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -211367,7 +211345,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(2894), 18, + ACTIONS(2055), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211386,7 +211364,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2892), 35, + ACTIONS(2053), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211397,10 +211376,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, @@ -211422,7 +211399,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25183] = 5, + anon_sym_COLON_EQ, + [25187] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -211430,7 +211408,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 18, + ACTIONS(2707), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211449,8 +211427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2113), 35, - anon_sym_SEMI, + ACTIONS(2705), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211461,8 +211438,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, @@ -211484,8 +211463,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, - [25251] = 5, + [25255] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -211493,7 +211471,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1937), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 18, + ACTIONS(2225), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211512,7 +211490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2838), 35, + ACTIONS(2223), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211548,7 +211526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25319] = 5, + [25323] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -211556,7 +211534,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(3068), 18, + ACTIONS(3046), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211575,7 +211553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3066), 35, + ACTIONS(3044), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211611,7 +211589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25387] = 5, + [25391] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -211619,7 +211597,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 18, + ACTIONS(2097), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211638,7 +211616,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2520), 35, + ACTIONS(2095), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211649,10 +211628,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, @@ -211674,7 +211651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25455] = 5, + anon_sym_COLON_EQ, + [25459] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -211682,7 +211660,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(2668), 18, + ACTIONS(2453), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211701,7 +211679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2666), 35, + ACTIONS(2451), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211737,7 +211715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25523] = 5, + [25527] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -211745,7 +211723,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1941), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 18, + ACTIONS(3052), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211764,7 +211742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2227), 35, + ACTIONS(3050), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211800,7 +211778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25591] = 5, + [25595] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -211808,7 +211786,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 18, + ACTIONS(2813), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211827,7 +211805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2878), 35, + ACTIONS(2811), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211863,7 +211841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25659] = 5, + [25663] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -211871,7 +211849,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 18, + ACTIONS(2715), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211890,8 +211868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2804), 35, - anon_sym_SEMI, + ACTIONS(2713), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211902,8 +211879,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, @@ -211925,18 +211904,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, - [25727] = 6, + [25731] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 18, + ACTIONS(2877), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211955,7 +211931,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2511), 34, + ACTIONS(2875), 35, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211965,10 +211943,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, @@ -211990,7 +211966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25797] = 5, + anon_sym_COLON_EQ, + [25799] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -211998,7 +211975,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1945), 2, sym_line_comment, sym_block_comment, - ACTIONS(2509), 18, + ACTIONS(2439), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212017,8 +211994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2507), 35, - anon_sym_SEMI, + ACTIONS(2437), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212029,8 +212005,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, @@ -212052,8 +212030,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, - [25865] = 5, + [25867] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -212061,7 +212038,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(2199), 18, + ACTIONS(2809), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212080,7 +212057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2197), 35, + ACTIONS(2807), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212116,7 +212093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25933] = 5, + [25935] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -212124,7 +212101,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1947), 2, sym_line_comment, sym_block_comment, - ACTIONS(2862), 18, + ACTIONS(3056), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212143,7 +212120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2860), 35, + ACTIONS(3054), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212179,7 +212156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26001] = 5, + [26003] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -212187,7 +212164,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1948), 2, sym_line_comment, sym_block_comment, - ACTIONS(2874), 18, + ACTIONS(2093), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212206,7 +212183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2872), 35, + ACTIONS(2091), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212242,7 +212219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26069] = 5, + [26071] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -212250,7 +212227,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 18, + ACTIONS(2801), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212269,7 +212246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1879), 35, + ACTIONS(2799), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212305,7 +212282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26137] = 5, + [26139] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -212313,7 +212290,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(2924), 18, + ACTIONS(2749), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212332,7 +212309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2922), 35, + ACTIONS(2747), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212368,7 +212345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26205] = 5, + [26207] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -212376,7 +212353,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(2125), 18, + ACTIONS(2507), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212395,7 +212372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2123), 35, + ACTIONS(2505), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212431,7 +212408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26273] = 5, + [26275] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -212439,7 +212416,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 18, + ACTIONS(2863), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212458,7 +212435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2848), 35, + ACTIONS(2861), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212494,7 +212471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26341] = 5, + [26343] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -212502,7 +212479,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(2532), 18, + ACTIONS(2745), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212521,7 +212498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2530), 35, + ACTIONS(2743), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212557,15 +212534,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26409] = 5, + [26411] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(4819), 1, + anon_sym_DOT, STATE(1954), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 18, + ACTIONS(2887), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212584,9 +212563,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2830), 35, + ACTIONS(2885), 34, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212620,7 +212598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26477] = 5, + [26481] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -212628,7 +212606,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 18, + ACTIONS(2737), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212647,7 +212625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2511), 35, + ACTIONS(2735), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212683,17 +212661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26545] = 6, + [26549] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 18, + ACTIONS(2729), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212712,8 +212688,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2511), 34, + ACTIONS(2727), 35, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212747,7 +212724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26615] = 5, + [26617] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -212755,7 +212732,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 18, + ACTIONS(2715), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212774,7 +212751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2792), 35, + ACTIONS(2713), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212810,7 +212787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26683] = 5, + [26685] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -212818,7 +212795,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 18, + ACTIONS(2883), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212837,7 +212814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2520), 35, + ACTIONS(2881), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212873,7 +212850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26751] = 5, + [26753] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -212881,7 +212858,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 18, + ACTIONS(2887), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212900,7 +212877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2780), 35, + ACTIONS(2885), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212936,15 +212913,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26819] = 5, + [26821] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(4819), 1, + anon_sym_DOT, STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(2718), 18, + ACTIONS(2887), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212963,9 +212942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2716), 35, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(2885), 34, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212975,8 +212952,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, @@ -212998,8 +212977,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, - [26887] = 5, + [26891] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -213007,7 +212985,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(2501), 18, + ACTIONS(2833), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213026,7 +213004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2499), 35, + ACTIONS(2831), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213062,7 +213040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26955] = 5, + [26959] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -213070,7 +213048,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 18, + ACTIONS(2891), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213089,7 +213067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2469), 35, + ACTIONS(2889), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213125,7 +213103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27023] = 5, + [27027] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -213133,7 +213111,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(2692), 18, + ACTIONS(2725), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213152,7 +213130,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2690), 35, + ACTIONS(2723), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213163,10 +213142,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, @@ -213188,7 +213165,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27091] = 5, + anon_sym_COLON_EQ, + [27095] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -213196,7 +213174,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 18, + ACTIONS(2719), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213215,7 +213193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2674), 35, + ACTIONS(2717), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213251,7 +213229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27159] = 5, + [27163] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -213259,7 +213237,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 18, + ACTIONS(2115), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213278,7 +213256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2309), 35, + ACTIONS(2113), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213314,17 +213292,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27227] = 6, + [27231] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1989), 1, - anon_sym_LBRACE, STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 18, + ACTIONS(2163), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213343,10 +213319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1807), 34, - anon_sym_SEMI, + ACTIONS(2161), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -213354,8 +213330,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, @@ -213377,8 +213355,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, - [27297] = 5, + [27299] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -213386,7 +213363,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(2303), 18, + ACTIONS(2249), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213405,8 +213382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2301), 35, - anon_sym_SEMI, + ACTIONS(2247), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213417,8 +213393,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, @@ -213440,19 +213418,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, - [27365] = 6, + [27367] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1894), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 18, + ACTIONS(2253), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213471,18 +213445,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 33, - anon_sym_SEMI, + ACTIONS(2251), 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, @@ -213504,7 +213481,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, [27435] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -213513,7 +213489,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 18, + ACTIONS(2821), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213532,7 +213508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2189), 35, + ACTIONS(2819), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213576,7 +213552,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(2297), 18, + ACTIONS(2471), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213595,7 +213571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2295), 35, + ACTIONS(2469), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213639,7 +213615,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 18, + ACTIONS(2261), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213658,8 +213634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2536), 35, - anon_sym_SEMI, + ACTIONS(2259), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213670,8 +213645,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, @@ -213693,7 +213670,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, [27639] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -213702,7 +213678,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(2293), 18, + ACTIONS(2269), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213721,8 +213697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2291), 35, - anon_sym_SEMI, + ACTIONS(2267), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213733,8 +213708,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, @@ -213756,7 +213733,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, [27707] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -213765,7 +213741,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(2668), 18, + ACTIONS(2265), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213784,7 +213760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2666), 35, + ACTIONS(2263), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213828,7 +213804,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(2211), 18, + ACTIONS(2273), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213847,8 +213823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2209), 35, - anon_sym_SEMI, + ACTIONS(2271), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213859,8 +213834,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, @@ -213882,7 +213859,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, [27843] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -213891,7 +213867,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(2203), 18, + ACTIONS(2883), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213910,8 +213886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2201), 35, - anon_sym_SEMI, + ACTIONS(2881), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213922,8 +213897,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, @@ -213945,7 +213922,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, [27911] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -213954,7 +213930,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(2890), 18, + ACTIONS(2891), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213973,7 +213949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2888), 35, + ACTIONS(2889), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214017,7 +213993,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(2307), 18, + ACTIONS(2547), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214036,7 +214012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2305), 35, + ACTIONS(2545), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214080,7 +214056,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(2688), 18, + ACTIONS(2427), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214099,7 +214075,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2686), 35, + ACTIONS(2425), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214110,10 +214087,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, @@ -214135,6 +214110,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, [28115] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -214143,7 +214119,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 18, + ACTIONS(2805), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214162,7 +214138,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2536), 35, + ACTIONS(2803), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214173,10 +214150,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, @@ -214198,6 +214173,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, [28183] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -214206,7 +214182,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(2315), 18, + ACTIONS(1899), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214225,7 +214201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2313), 35, + ACTIONS(1897), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214261,15 +214237,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28251] = 5, + [28251] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(2031), 1, + anon_sym_LBRACE, STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 18, + ACTIONS(1809), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214288,11 +214266,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2461), 35, + ACTIONS(1807), 34, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -214324,7 +214301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28319] = 5, + [28321] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -214332,7 +214309,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 18, + ACTIONS(2707), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214351,7 +214328,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3048), 35, + ACTIONS(2705), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214362,10 +214340,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, @@ -214387,15 +214363,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28387] = 5, + anon_sym_COLON_EQ, + [28389] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(2060), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(2910), 18, + ACTIONS(2055), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2053), 33, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [28459] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1984), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2431), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214414,7 +214455,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2908), 35, + ACTIONS(2429), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214425,10 +214467,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, @@ -214450,15 +214490,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28455] = 5, + anon_sym_COLON_EQ, + [28527] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1984), 2, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(2886), 18, + ACTIONS(2205), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214477,7 +214518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2884), 35, + ACTIONS(2203), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214513,15 +214554,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28523] = 5, + [28595] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1985), 2, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(2467), 18, + ACTIONS(2423), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214540,7 +214581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2465), 35, + ACTIONS(2421), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214576,15 +214617,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28591] = 5, + [28663] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1986), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(2680), 18, + ACTIONS(2463), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214603,7 +214644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2678), 35, + ACTIONS(2461), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214639,15 +214680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28659] = 5, + [28731] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1987), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(2684), 18, + ACTIONS(2457), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214666,7 +214707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2682), 35, + ACTIONS(2455), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214702,15 +214743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28727] = 5, + [28799] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1988), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(2505), 18, + ACTIONS(2423), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214729,8 +214770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2503), 35, - anon_sym_SEMI, + ACTIONS(2421), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214741,8 +214781,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, @@ -214764,16 +214806,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, - [28795] = 5, + [28867] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1989), 2, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(2688), 18, + ACTIONS(2055), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214792,8 +214833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2686), 35, - anon_sym_SEMI, + ACTIONS(2053), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214804,8 +214844,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, @@ -214827,16 +214869,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, - [28863] = 5, + [28935] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1990), 2, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(2696), 18, + ACTIONS(2475), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214855,7 +214896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2694), 35, + ACTIONS(2473), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214891,15 +214932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28931] = 5, + [29003] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1991), 2, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(2854), 18, + ACTIONS(2767), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214918,8 +214959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2852), 35, - anon_sym_SEMI, + ACTIONS(2765), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214930,8 +214970,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, @@ -214953,16 +214995,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, - [28999] = 5, + [29071] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1992), 2, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(2143), 18, + ACTIONS(2771), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214981,8 +215022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2141), 35, - anon_sym_SEMI, + ACTIONS(2769), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214993,8 +215033,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, @@ -215016,16 +215058,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, - [29067] = 5, + [29139] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1993), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(2692), 18, + ACTIONS(2851), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215044,8 +215085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2690), 35, - anon_sym_SEMI, + ACTIONS(2849), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215056,8 +215096,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, @@ -215079,16 +215121,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, - [29135] = 5, + [29207] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1994), 2, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(2858), 18, + ACTIONS(2233), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215107,8 +215148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2856), 35, - anon_sym_SEMI, + ACTIONS(2231), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215119,8 +215159,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, @@ -215142,16 +215184,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, - [29203] = 5, + [29275] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1995), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(3058), 18, + ACTIONS(1899), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215170,8 +215211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3056), 35, - anon_sym_SEMI, + ACTIONS(1897), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215182,8 +215222,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, @@ -215205,16 +215247,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, - [29271] = 5, + [29343] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1996), 2, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(2443), 18, + ACTIONS(2453), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215233,7 +215274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2441), 35, + ACTIONS(2451), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215269,15 +215310,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29339] = 5, + [29411] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1997), 2, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 18, + ACTIONS(2439), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215296,7 +215337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3052), 35, + ACTIONS(2437), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215332,15 +215373,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29407] = 5, + [29479] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1998), 2, + STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(3044), 18, + ACTIONS(2257), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215359,7 +215400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3042), 35, + ACTIONS(2255), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215395,15 +215436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29475] = 5, + [29547] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1999), 2, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 18, + ACTIONS(2151), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215422,7 +215463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2844), 35, + ACTIONS(2149), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215458,15 +215499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29543] = 5, + [29615] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2000), 2, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 18, + ACTIONS(2241), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215485,7 +215526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2231), 35, + ACTIONS(2239), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215521,15 +215562,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29611] = 5, + [29683] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2001), 2, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 18, + ACTIONS(2269), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215548,7 +215589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2447), 35, + ACTIONS(2267), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215584,15 +215625,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29679] = 5, + [29751] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2002), 2, + ACTIONS(2135), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(2700), 18, + ACTIONS(2139), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215611,10 +215655,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2698), 35, + ACTIONS(2142), 33, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -215622,10 +215665,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, @@ -215647,15 +215688,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29747] = 5, + anon_sym_COLON_EQ, + [29821] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2003), 2, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 18, + ACTIONS(2261), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215674,7 +215716,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 35, + ACTIONS(2259), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215685,10 +215728,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, @@ -215710,70 +215751,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29815] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - STATE(2004), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4818), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4816), 48, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_struct, - anon_sym_mut, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_float_literal, - sym_rune_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - [29883] = 5, + anon_sym_COLON_EQ, + [29889] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -215781,7 +215760,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 18, + ACTIONS(2253), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215800,7 +215779,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1879), 35, + ACTIONS(2251), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215811,10 +215791,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, @@ -215836,7 +215814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29951] = 5, + anon_sym_COLON_EQ, + [29957] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -215844,7 +215823,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(2509), 18, + ACTIONS(2249), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215863,7 +215842,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2507), 35, + ACTIONS(2247), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215874,10 +215854,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, @@ -215899,16 +215877,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30019] = 5, + anon_sym_COLON_EQ, + [30025] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(2137), 1, + anon_sym_EQ, STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(2910), 18, - anon_sym_EQ, + ACTIONS(2135), 16, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LT_DASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + ACTIONS(2139), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -215926,12 +215923,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2908), 35, - anon_sym_SEMI, + ACTIONS(2142), 19, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -215949,20 +215943,7 @@ 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, - [30087] = 5, + [30097] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -215970,7 +215951,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 18, + ACTIONS(2233), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215989,7 +215970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3048), 35, + ACTIONS(2231), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216025,83 +216006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30155] = 7, + [30165] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2217), 1, - anon_sym_EQ, STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(2215), 16, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(2219), 17, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2222), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [30227] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2215), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(2010), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2219), 18, + ACTIONS(2119), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216120,9 +216033,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2222), 33, + ACTIONS(2117), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -216154,15 +216069,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30297] = 5, + [30233] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2011), 2, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(2455), 18, + ACTIONS(2719), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216181,8 +216096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2453), 35, - anon_sym_SEMI, + ACTIONS(2717), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216193,8 +216107,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, @@ -216216,16 +216132,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, - [30365] = 5, + [30301] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2012), 2, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(2459), 18, + ACTIONS(2123), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216244,7 +216159,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, + ACTIONS(2121), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216280,15 +216195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30433] = 5, + [30369] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2013), 2, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 18, + ACTIONS(3046), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216307,7 +216222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2708), 35, + ACTIONS(3044), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216343,15 +216258,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30501] = 5, + [30437] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2014), 2, + STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 18, + ACTIONS(2725), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216370,7 +216285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2674), 35, + ACTIONS(2723), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216406,15 +216321,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30569] = 5, + [30505] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2015), 2, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(2714), 18, + ACTIONS(2221), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216433,7 +216348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2712), 35, + ACTIONS(2219), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216469,15 +216384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30637] = 5, + [30573] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2016), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(2137), 18, + ACTIONS(2217), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216496,7 +216411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2135), 35, + ACTIONS(2215), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216532,15 +216447,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30705] = 5, + [30641] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2017), 2, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(2672), 18, + ACTIONS(2133), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216559,7 +216474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2670), 35, + ACTIONS(2131), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216595,15 +216510,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30773] = 5, + [30709] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2018), 2, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(2219), 18, + ACTIONS(2163), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216622,7 +216537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2222), 35, + ACTIONS(2161), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216658,17 +216573,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30841] = 6, + [30777] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1894), 1, + STATE(2018), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2471), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2469), 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, + [30845] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, STATE(2019), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 18, + ACTIONS(2119), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216687,7 +216663,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2473), 34, + ACTIONS(2117), 35, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -216722,7 +216699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30911] = 5, + [30913] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -216730,7 +216707,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(2736), 18, + ACTIONS(3066), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216749,7 +216726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2734), 35, + ACTIONS(3064), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216785,7 +216762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30979] = 5, + [30981] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -216793,7 +216770,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(2724), 18, + ACTIONS(3021), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216812,7 +216789,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2722), 35, + ACTIONS(3019), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216823,10 +216801,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, @@ -216848,7 +216824,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31047] = 5, + anon_sym_COLON_EQ, + [31049] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -216856,7 +216833,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(2740), 18, + ACTIONS(2507), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216875,8 +216852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2738), 35, - anon_sym_SEMI, + ACTIONS(2505), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216887,8 +216863,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, @@ -216910,8 +216888,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, - [31115] = 5, + [31117] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -216919,7 +216896,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(2744), 18, + ACTIONS(2863), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216938,7 +216915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2742), 35, + ACTIONS(2861), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216974,7 +216951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31183] = 5, + [31185] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -216982,7 +216959,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 18, + ACTIONS(2749), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217001,7 +216978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2844), 35, + ACTIONS(2747), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217037,7 +217014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31251] = 5, + [31253] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -217045,7 +217022,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3044), 18, + ACTIONS(2115), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217064,7 +217041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3042), 35, + ACTIONS(2113), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217100,7 +217077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31319] = 5, + [31321] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -217108,7 +217085,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(2750), 18, + ACTIONS(2029), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217127,7 +217104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2748), 35, + ACTIONS(2031), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217163,7 +217140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31387] = 5, + [31389] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -217171,7 +217148,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(2728), 18, + ACTIONS(2801), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217190,8 +217167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2726), 35, - anon_sym_SEMI, + ACTIONS(2799), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217202,8 +217178,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, @@ -217225,8 +217203,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, - [31455] = 5, + [31457] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -217234,7 +217211,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 18, + ACTIONS(2887), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217253,8 +217230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2838), 35, - anon_sym_SEMI, + ACTIONS(2885), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217265,8 +217241,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, @@ -217288,8 +217266,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, - [31523] = 5, + [31525] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -217297,7 +217274,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 18, + ACTIONS(2245), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217316,7 +217293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2878), 35, + ACTIONS(2243), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217327,10 +217305,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, @@ -217352,7 +217328,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31591] = 5, + anon_sym_COLON_EQ, + [31593] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -217360,7 +217337,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 18, + ACTIONS(2809), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217379,7 +217356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2804), 35, + ACTIONS(2807), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217415,7 +217392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31659] = 5, + [31661] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -217423,7 +217400,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2031), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 18, + ACTIONS(2813), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217442,7 +217419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2189), 35, + ACTIONS(2811), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217478,7 +217455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31727] = 5, + [31729] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -217486,7 +217463,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2032), 2, sym_line_comment, sym_block_comment, - ACTIONS(2906), 18, + ACTIONS(2229), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217505,7 +217482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2904), 35, + ACTIONS(2227), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217541,7 +217518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31795] = 5, + [31797] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -217549,7 +217526,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2033), 2, sym_line_comment, sym_block_comment, - ACTIONS(2125), 18, + ACTIONS(2225), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217568,7 +217545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2123), 35, + ACTIONS(2223), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217579,10 +217557,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, @@ -217604,7 +217580,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31863] = 5, + anon_sym_COLON_EQ, + [31865] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -217612,7 +217589,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2034), 2, sym_line_comment, sym_block_comment, - ACTIONS(1987), 18, + ACTIONS(2221), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217631,7 +217608,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1989), 35, + ACTIONS(2219), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217642,10 +217620,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, @@ -217667,7 +217643,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31931] = 5, + anon_sym_COLON_EQ, + [31933] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -217675,7 +217652,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2035), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 18, + ACTIONS(2837), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217694,7 +217671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2511), 35, + ACTIONS(2835), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217730,7 +217707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31999] = 5, + [32001] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -217738,7 +217715,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2036), 2, sym_line_comment, sym_block_comment, - ACTIONS(2700), 18, + ACTIONS(2217), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217757,7 +217734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2698), 35, + ACTIONS(2215), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217793,7 +217770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32067] = 5, + [32069] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -217801,7 +217778,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(2211), 18, + ACTIONS(2213), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217820,7 +217797,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2209), 35, + ACTIONS(2211), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217831,10 +217809,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, @@ -217856,7 +217832,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32135] = 5, + anon_sym_COLON_EQ, + [32137] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -217864,7 +217841,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 18, + ACTIONS(3015), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217883,7 +217860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2708), 35, + ACTIONS(3013), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217919,7 +217896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32203] = 5, + [32205] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -217927,7 +217904,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2039), 2, sym_line_comment, sym_block_comment, - ACTIONS(2714), 18, + ACTIONS(3011), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217946,7 +217923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2712), 35, + ACTIONS(3009), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217982,7 +217959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32271] = 5, + [32273] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -217990,7 +217967,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(2137), 18, + ACTIONS(2817), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218009,8 +217986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2135), 35, - anon_sym_SEMI, + ACTIONS(2815), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218021,8 +217997,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, @@ -218044,8 +218022,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, - [32339] = 5, + [32341] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -218053,7 +218030,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(2886), 18, + ACTIONS(2859), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218072,7 +218049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2884), 35, + ACTIONS(2857), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218108,7 +218085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32407] = 5, + [32409] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -218116,7 +218093,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(2143), 18, + ACTIONS(2847), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218135,7 +218112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2141), 35, + ACTIONS(2845), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218146,10 +218124,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, @@ -218171,7 +218147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32475] = 5, + anon_sym_COLON_EQ, + [32477] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -218179,7 +218156,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(2724), 18, + ACTIONS(2843), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218198,7 +218175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2722), 35, + ACTIONS(2841), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218234,7 +218211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32543] = 5, + [32545] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -218242,7 +218219,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(2858), 18, + ACTIONS(2213), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218261,7 +218238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2856), 35, + ACTIONS(2211), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218297,7 +218274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32611] = 5, + [32613] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -218305,7 +218282,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2045), 2, sym_line_comment, sym_block_comment, - ACTIONS(2854), 18, + ACTIONS(2209), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218324,7 +218301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2852), 35, + ACTIONS(2207), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218335,10 +218313,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, @@ -218360,7 +218336,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32679] = 5, + anon_sym_COLON_EQ, + [32681] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -218368,7 +218345,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(2744), 18, + ACTIONS(2779), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218387,7 +218364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2742), 35, + ACTIONS(2777), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218423,7 +218400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32747] = 5, + [32749] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -218431,7 +218408,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3062), 18, + ACTIONS(2775), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218450,7 +218427,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3060), 35, + ACTIONS(2773), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218461,10 +218439,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, @@ -218486,7 +218462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32815] = 5, + anon_sym_COLON_EQ, + [32817] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -218494,7 +218471,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2048), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 18, + ACTIONS(2101), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218513,7 +218490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2231), 35, + ACTIONS(2099), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218549,7 +218526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32883] = 5, + [32885] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -218557,7 +218534,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(2696), 18, + ACTIONS(2763), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218576,7 +218553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2694), 35, + ACTIONS(2761), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218587,10 +218565,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, @@ -218612,7 +218588,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32951] = 5, + anon_sym_COLON_EQ, + [32953] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -218620,7 +218597,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2050), 2, sym_line_comment, sym_block_comment, - ACTIONS(2750), 18, + ACTIONS(2175), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218639,7 +218616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2748), 35, + ACTIONS(2173), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218675,7 +218652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [33019] = 5, + [33021] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -218683,7 +218660,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2051), 2, sym_line_comment, sym_block_comment, - ACTIONS(2505), 18, + ACTIONS(2205), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218702,7 +218679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2503), 35, + ACTIONS(2203), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218713,10 +218691,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, @@ -218738,7 +218714,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33087] = 5, + anon_sym_COLON_EQ, + [33089] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -218746,7 +218723,137 @@ static const uint16_t ts_small_parse_table[] = { STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(2756), 18, + ACTIONS(2089), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2087), 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, + [33157] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2060), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(4822), 2, + anon_sym_COMMA, + anon_sym_in, + STATE(2053), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2055), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2053), 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, + [33229] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4824), 1, + anon_sym_LBRACE, + STATE(2054), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2887), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218765,11 +218872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2754), 35, + ACTIONS(2885), 34, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -218801,133 +218907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [33155] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2053), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3054), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3052), 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, - [33223] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2054), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2768), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2766), 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, - [33291] = 5, + [33299] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -218935,7 +218915,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(2269), 18, + ACTIONS(3025), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218954,7 +218934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2267), 35, + ACTIONS(3023), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218990,7 +218970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33359] = 5, + [33367] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -218998,7 +218978,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(2467), 18, + ACTIONS(2093), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219017,7 +218997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2465), 35, + ACTIONS(2091), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219053,7 +219033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33427] = 5, + [33435] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -219061,7 +219041,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 18, + ACTIONS(2877), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219080,7 +219060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2461), 35, + ACTIONS(2875), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219116,7 +219096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33495] = 5, + [33503] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -219124,7 +219104,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(3062), 18, + ACTIONS(2805), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219143,8 +219123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3060), 35, - anon_sym_SEMI, + ACTIONS(2803), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219155,8 +219134,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, @@ -219178,8 +219159,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, - [33563] = 5, + [33571] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -219187,7 +219167,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3058), 18, + ACTIONS(2133), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219206,7 +219186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3056), 35, + ACTIONS(2131), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219242,7 +219222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33631] = 5, + [33639] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -219250,7 +219230,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(2203), 18, + ACTIONS(2741), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219269,7 +219249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2201), 35, + ACTIONS(2739), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219305,7 +219285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33699] = 5, + [33707] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -219313,7 +219293,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 18, + ACTIONS(3029), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219332,7 +219312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1807), 35, + ACTIONS(3027), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219368,18 +219348,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33767] = 6, + [33775] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1894), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 18, + ACTIONS(2127), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219398,19 +219375,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 33, + ACTIONS(2125), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -219432,7 +219410,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33837] = 5, + anon_sym_COLON_EQ, + [33843] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -219440,7 +219419,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(2732), 18, + ACTIONS(2101), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219459,7 +219438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2730), 35, + ACTIONS(2099), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219470,10 +219450,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, @@ -219495,7 +219473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33905] = 5, + anon_sym_COLON_EQ, + [33911] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -219503,7 +219482,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 18, + ACTIONS(2741), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219522,7 +219501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2469), 35, + ACTIONS(2739), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219533,10 +219513,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, @@ -219558,7 +219536,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33973] = 5, + anon_sym_COLON_EQ, + [33979] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -219566,7 +219545,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(2149), 18, + ACTIONS(2209), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219585,8 +219564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2147), 35, - anon_sym_SEMI, + ACTIONS(2207), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219597,8 +219575,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, @@ -219620,8 +219600,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, - [34041] = 5, + [34047] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -219629,7 +219608,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 18, + ACTIONS(2105), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219648,7 +219627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2117), 35, + ACTIONS(2103), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219684,7 +219663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34109] = 5, + [34115] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -219692,7 +219671,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(2740), 18, + ACTIONS(2127), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219711,7 +219690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2738), 35, + ACTIONS(2125), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219747,7 +219726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34177] = 5, + [34183] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -219755,7 +219734,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(2736), 18, + ACTIONS(2123), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219774,7 +219753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2734), 35, + ACTIONS(2121), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219810,7 +219789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34245] = 5, + [34251] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -219818,7 +219797,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(2672), 18, + ACTIONS(2097), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219837,7 +219816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2670), 35, + ACTIONS(2095), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219873,7 +219852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34313] = 5, + [34319] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -219881,7 +219860,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 18, + ACTIONS(2089), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219900,7 +219879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2780), 35, + ACTIONS(2087), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219936,7 +219915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34381] = 5, + [34387] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -219944,7 +219923,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(2906), 18, + ACTIONS(2175), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219963,7 +219942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2904), 35, + ACTIONS(2173), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219999,7 +219978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34449] = 5, + [34455] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -220007,7 +219986,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(2902), 18, + ACTIONS(2151), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220026,7 +220005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2900), 35, + ACTIONS(2149), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220062,7 +220041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34517] = 5, + [34523] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -220070,7 +220049,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(2459), 18, + ACTIONS(2431), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220089,7 +220068,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, + ACTIONS(2429), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220125,7 +220104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34585] = 5, + [34591] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -220133,7 +220112,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(2455), 18, + ACTIONS(2547), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220152,7 +220131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2453), 35, + ACTIONS(2545), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220188,7 +220167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34653] = 5, + [34659] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -220196,7 +220175,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 18, + ACTIONS(2181), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220215,7 +220194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2447), 35, + ACTIONS(2179), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220251,7 +220230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34721] = 5, + [34727] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -220259,7 +220238,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(2443), 18, + ACTIONS(2833), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220278,7 +220257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2441), 35, + ACTIONS(2831), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220314,7 +220293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34789] = 5, + [34795] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -220322,7 +220301,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 18, + ACTIONS(2851), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220341,7 +220320,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2776), 35, + ACTIONS(2849), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220352,10 +220332,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, @@ -220377,7 +220355,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34857] = 5, + anon_sym_COLON_EQ, + [34863] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -220385,7 +220364,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 18, + ACTIONS(2185), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220404,7 +220383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2770), 35, + ACTIONS(2183), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220440,7 +220419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34925] = 5, + [34931] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -220448,7 +220427,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(2718), 18, + ACTIONS(2189), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220467,7 +220446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2716), 35, + ACTIONS(2187), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220503,7 +220482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34993] = 5, + [34999] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -220511,7 +220490,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(2307), 18, + ACTIONS(2105), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220530,7 +220509,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2305), 35, + ACTIONS(2103), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220541,10 +220521,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, @@ -220566,7 +220544,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35061] = 5, + anon_sym_COLON_EQ, + [35067] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -220574,7 +220553,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(2293), 18, + ACTIONS(2147), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220593,7 +220572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2291), 35, + ACTIONS(2145), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220629,7 +220608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35129] = 5, + [35135] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -220637,7 +220616,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 18, + ACTIONS(2201), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220656,7 +220635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2473), 35, + ACTIONS(2199), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220692,7 +220671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35197] = 5, + [35203] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -220700,7 +220679,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(2269), 18, + ACTIONS(2729), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220719,8 +220698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2267), 35, - anon_sym_SEMI, + ACTIONS(2727), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220731,8 +220709,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, @@ -220754,8 +220734,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, - [35265] = 5, + [35271] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -220763,7 +220742,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 18, + ACTIONS(2265), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220782,7 +220761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2227), 35, + ACTIONS(2263), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220818,7 +220797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35333] = 5, + [35339] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -220826,7 +220805,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(2303), 18, + ACTIONS(2155), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220845,7 +220824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2301), 35, + ACTIONS(2153), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220881,7 +220860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35401] = 5, + [35407] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -220889,7 +220868,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 18, + ACTIONS(2159), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220908,7 +220887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2766), 35, + ACTIONS(2157), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -220944,7 +220923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [35469] = 5, + [35475] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -220952,7 +220931,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(2756), 18, + ACTIONS(2155), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220971,7 +220950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2754), 35, + ACTIONS(2153), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220982,10 +220962,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, @@ -221007,7 +220985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35537] = 5, + anon_sym_COLON_EQ, + [35543] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -221015,7 +220994,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(2149), 18, + ACTIONS(3066), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221034,7 +221013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2147), 35, + ACTIONS(3064), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221070,7 +221049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35605] = 5, + [35611] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -221078,7 +221057,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(2501), 18, + ACTIONS(2201), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221097,7 +221076,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2499), 35, + ACTIONS(2199), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221108,10 +221088,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, @@ -221133,7 +221111,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35673] = 5, + anon_sym_COLON_EQ, + [35679] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -221141,7 +221120,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2090), 2, sym_line_comment, sym_block_comment, - ACTIONS(2924), 18, + ACTIONS(2837), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221160,7 +221139,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2922), 35, + ACTIONS(2835), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221171,10 +221151,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, @@ -221196,7 +221174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35741] = 5, + anon_sym_COLON_EQ, + [35747] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -221204,7 +221183,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 18, + ACTIONS(2159), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221223,7 +221202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2113), 35, + ACTIONS(2157), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221259,7 +221238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35809] = 5, + [35815] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -221267,7 +221246,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(2297), 18, + ACTIONS(2241), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221286,7 +221265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2295), 35, + ACTIONS(2239), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221322,7 +221301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35877] = 5, + [35883] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -221330,7 +221309,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 18, + ACTIONS(2257), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221349,7 +221328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2848), 35, + ACTIONS(2255), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221385,7 +221364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35945] = 5, + [35951] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -221393,7 +221372,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 18, + ACTIONS(2189), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221412,7 +221391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1807), 35, + ACTIONS(2187), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221448,80 +221427,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36013] = 7, + [36019] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2217), 1, - anon_sym_EQ, - STATE(2095), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2215), 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(2219), 17, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4826), 1, anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2222), 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, - [36085] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2096), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 18, + ACTIONS(2585), 17, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221532,7 +221448,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -221540,8 +221455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2473), 35, - anon_sym_SEMI, + ACTIONS(2583), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221552,8 +221466,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, @@ -221575,16 +221491,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, - [36153] = 5, + [36089] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2097), 2, + STATE(2096), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 18, + ACTIONS(2737), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221603,8 +221518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2770), 35, - anon_sym_SEMI, + ACTIONS(2735), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221615,8 +221529,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, @@ -221638,16 +221554,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, - [36221] = 5, + [36157] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2098), 2, + STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(3068), 18, + ACTIONS(2767), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221666,7 +221581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3066), 35, + ACTIONS(2765), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221677,10 +221593,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, @@ -221702,17 +221616,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36289] = 6, + anon_sym_COLON_EQ, + [36225] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4820), 1, - anon_sym_LBRACE, - STATE(2099), 2, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 18, + ACTIONS(2855), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221731,10 +221644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2511), 34, - anon_sym_SEMI, + ACTIONS(2853), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -221742,8 +221655,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, @@ -221765,16 +221680,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, - [36359] = 5, + [36293] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2100), 2, + ACTIONS(2031), 1, + anon_sym_LBRACE, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 18, + ACTIONS(2715), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221793,11 +221709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2776), 35, + ACTIONS(2713), 34, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -221829,15 +221744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36427] = 5, + [36363] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2101), 2, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 18, + ACTIONS(2185), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221856,7 +221771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 35, + ACTIONS(2183), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221892,17 +221807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36495] = 6, + [36431] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4822), 1, - anon_sym_BANG, - STATE(2102), 2, + STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(2542), 17, + ACTIONS(2457), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221913,6 +221826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -221920,7 +221834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2540), 35, + ACTIONS(2455), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221956,21 +221870,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36565] = 7, + [36499] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1894), 2, + ACTIONS(2137), 1, + anon_sym_EQ, + STATE(2102), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2135), 16, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(4824), 2, anon_sym_COMMA, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + ACTIONS(2139), 17, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2142), 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, + [36571] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 18, + ACTIONS(2763), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221989,17 +221962,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 31, - anon_sym_SEMI, + ACTIONS(2761), 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, @@ -222007,6 +221984,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, @@ -222020,8 +221998,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, - [36637] = 5, + [36639] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -222029,7 +222006,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2104), 2, sym_line_comment, sym_block_comment, - ACTIONS(2862), 18, + ACTIONS(2775), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222048,7 +222025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2860), 35, + ACTIONS(2773), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222084,7 +222061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36705] = 5, + [36707] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -222092,7 +222069,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2105), 2, sym_line_comment, sym_block_comment, - ACTIONS(2315), 18, + ACTIONS(2779), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222111,7 +222088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2313), 35, + ACTIONS(2777), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222147,17 +222124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36773] = 6, + [36775] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1989), 1, - anon_sym_LBRACE, STATE(2106), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 18, + ACTIONS(2843), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222176,10 +222151,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2674), 34, - anon_sym_SEMI, + ACTIONS(2841), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -222187,8 +222162,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, @@ -222210,7 +222187,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, [36843] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -222219,7 +222195,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 18, + ACTIONS(2847), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222238,7 +222214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2834), 35, + ACTIONS(2845), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222274,17 +222250,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36911] = 6, + [36911] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1894), 1, - anon_sym_DOT, STATE(2108), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 18, + ACTIONS(2859), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222303,8 +222277,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2473), 34, - anon_sym_SEMI, + ACTIONS(2857), 35, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -222314,8 +222288,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, @@ -222337,8 +222313,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, - [36981] = 5, + [36979] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -222346,7 +222321,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(2874), 18, + ACTIONS(2771), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222365,7 +222340,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2872), 35, + ACTIONS(2769), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222376,10 +222352,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -222401,15 +222375,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [37049] = 5, + anon_sym_COLON_EQ, + [37047] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(4828), 1, + anon_sym_BANG, STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(2902), 18, + ACTIONS(2585), 17, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222420,7 +222397,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -222428,7 +222404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2900), 35, + ACTIONS(2583), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -222472,7 +222448,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(2788), 18, + ACTIONS(3011), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222491,7 +222467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2786), 35, + ACTIONS(3009), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222535,7 +222511,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 18, + ACTIONS(3015), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222554,7 +222530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2796), 35, + ACTIONS(3013), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222598,7 +222574,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 18, + ACTIONS(3021), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222617,7 +222593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2800), 35, + ACTIONS(3019), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222661,7 +222637,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2114), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 18, + ACTIONS(2463), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222680,7 +222656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2822), 35, + ACTIONS(2461), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222724,7 +222700,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2115), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 18, + ACTIONS(2475), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222743,7 +222719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2826), 35, + ACTIONS(2473), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222787,7 +222763,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(2914), 24, + ACTIONS(2197), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -222812,7 +222788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2912), 28, + ACTIONS(2195), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -222849,7 +222825,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2117), 2, sym_line_comment, sym_block_comment, - ACTIONS(2918), 24, + ACTIONS(2167), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -222874,7 +222850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2916), 28, + ACTIONS(2165), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -222911,7 +222887,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2118), 2, sym_line_comment, sym_block_comment, - ACTIONS(2704), 24, + ACTIONS(2171), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -222936,7 +222912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2702), 28, + ACTIONS(2169), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -222973,7 +222949,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2119), 2, sym_line_comment, sym_block_comment, - ACTIONS(2812), 24, + ACTIONS(2237), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -222998,7 +222974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2810), 28, + ACTIONS(2235), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -223035,7 +223011,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(2870), 24, + ACTIONS(2193), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -223060,7 +223036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2868), 28, + ACTIONS(2191), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -223089,155 +223065,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_map_LBRACK, anon_sym_DOT_DOT, - [37792] = 13, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4828), 1, - anon_sym_LPAREN, - ACTIONS(4830), 1, - anon_sym_LBRACK, - ACTIONS(4832), 1, - anon_sym_QMARK, - ACTIONS(4834), 1, - anon_sym_BANG, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, - sym_or_block, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(4826), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4836), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2121), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1785), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [37874] = 13, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4828), 1, - anon_sym_LPAREN, - ACTIONS(4830), 1, - anon_sym_LBRACK, - ACTIONS(4832), 1, - anon_sym_QMARK, - ACTIONS(4834), 1, - anon_sym_BANG, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, - sym_or_block, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(4826), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4836), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2122), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1769), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [37956] = 7, + [37792] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4840), 1, + ACTIONS(4832), 1, anon_sym_EQ, - STATE(2123), 2, + STATE(2121), 2, sym_line_comment, sym_block_comment, - ACTIONS(4838), 14, + ACTIONS(4830), 14, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_STAR_EQ, @@ -223252,7 +223090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(2532), 17, + ACTIONS(2883), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -223270,7 +223108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2530), 19, + ACTIONS(2881), 19, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -223290,35 +223128,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [38026] = 13, + [37862] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, + ACTIONS(4836), 1, anon_sym_LPAREN, - ACTIONS(4830), 1, + ACTIONS(4838), 1, anon_sym_LBRACK, - ACTIONS(4832), 1, + ACTIONS(4840), 1, anon_sym_QMARK, - ACTIONS(4834), 1, + ACTIONS(4842), 1, anon_sym_BANG, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, + STATE(2234), 1, sym_or_block, - STATE(4133), 1, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, sym_type_parameters, - ACTIONS(4826), 2, + ACTIONS(4834), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4836), 2, + ACTIONS(4844), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2124), 2, + STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 40, + ACTIONS(1791), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223359,30 +223197,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38108] = 7, + [37944] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1797), 1, + ACTIONS(4836), 1, + anon_sym_LPAREN, + ACTIONS(4838), 1, anon_sym_LBRACK, + ACTIONS(4840), 1, + anon_sym_QMARK, ACTIONS(4842), 1, - anon_sym_else, - STATE(2246), 1, - sym_else_branch, - STATE(2125), 2, + anon_sym_BANG, + STATE(2234), 1, + sym_or_block, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, + sym_type_parameters, + ACTIONS(4834), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4844), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2123), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 47, + ACTIONS(1783), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, @@ -223401,9 +223251,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -223413,38 +223260,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38177] = 7, + [38026] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1803), 1, + ACTIONS(4836), 1, + anon_sym_LPAREN, + ACTIONS(4838), 1, anon_sym_LBRACK, + ACTIONS(4840), 1, + anon_sym_QMARK, ACTIONS(4842), 1, - anon_sym_else, - STATE(2247), 1, - sym_else_branch, - STATE(2126), 2, + anon_sym_BANG, + STATE(2234), 1, + sym_or_block, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, + sym_type_parameters, + ACTIONS(4834), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4844), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 47, + ACTIONS(1769), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, @@ -223463,9 +223320,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -223475,29 +223329,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38246] = 8, + [38108] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2816), 1, + ACTIONS(2755), 1, anon_sym_static, - ACTIONS(2818), 1, + ACTIONS(2757), 1, anon_sym_volatile, - ACTIONS(4844), 1, + ACTIONS(4846), 1, anon_sym_COLON, - STATE(2127), 2, + STATE(2125), 2, sym_line_comment, sym_block_comment, - ACTIONS(4559), 22, + ACTIONS(4577), 22, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PLUS, @@ -223513,14 +223365,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4557), 25, + ACTIONS(4575), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -223546,19 +223398,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [38317] = 6, + [38179] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1894), 1, + ACTIONS(1803), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LBRACE, - STATE(2128), 2, + ACTIONS(4848), 1, + anon_sym_else, + STATE(2167), 1, + sym_else_branch, + STATE(2126), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 47, + ACTIONS(1805), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223606,76 +223460,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38383] = 5, + [38248] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1807), 1, + ACTIONS(1797), 1, anon_sym_LBRACK, - STATE(2129), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1809), 48, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4848), 1, anon_sym_else, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [38447] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1811), 1, - anon_sym_LBRACK, - STATE(2130), 2, + STATE(2168), 1, + sym_else_branch, + STATE(2127), 2, sym_line_comment, sym_block_comment, - ACTIONS(1813), 48, + ACTIONS(1799), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223717,26 +223516,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38511] = 6, + [38317] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1911), 1, + ACTIONS(2077), 1, anon_sym_LBRACK, - ACTIONS(4846), 1, + ACTIONS(4850), 1, anon_sym_DOLLARelse, - STATE(2131), 2, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(1913), 47, + ACTIONS(2079), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223784,136 +223582,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38577] = 6, - ACTIONS(497), 1, + [38383] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1841), 1, - anon_sym_LBRACK, - ACTIONS(4848), 1, - anon_sym_DOLLARelse, - STATE(2132), 2, + STATE(2129), 2, sym_line_comment, sym_block_comment, - ACTIONS(1843), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1514), 24, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_json_DOTdecode, anon_sym_LBRACK2, + anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [38643] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1811), 1, - anon_sym_LBRACK, - STATE(2133), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1813), 48, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + anon_sym_map_LBRACK, + ACTIONS(4852), 25, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, + anon_sym_fn, + anon_sym_struct, anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + anon_sym_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, - [38707] = 5, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [38447] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1807), 1, + ACTIONS(1897), 1, anon_sym_LBRACK, - STATE(2134), 2, + STATE(2209), 1, + sym_type_parameters, + STATE(2130), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 48, + ACTIONS(1899), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223955,29 +223695,30 @@ 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, - [38771] = 5, + [38513] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2135), 2, + ACTIONS(2755), 1, + anon_sym_static, + ACTIONS(2757), 1, + anon_sym_volatile, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(1516), 24, + ACTIONS(4577), 22, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_BANG, anon_sym_json_DOTdecode, @@ -223988,14 +223729,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4850), 25, + ACTIONS(4575), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224021,20 +223762,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [38835] = 7, + [38581] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2816), 1, - anon_sym_static, - ACTIONS(2818), 1, - anon_sym_volatile, - STATE(2136), 2, + STATE(2132), 2, sym_line_comment, sym_block_comment, - ACTIONS(4559), 22, + ACTIONS(1887), 23, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, @@ -224049,14 +223787,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4557), 25, + ACTIONS(1889), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224068,6 +223806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_nil, anon_sym_if, + anon_sym_else, anon_sym_DOLLARif, anon_sym_match, anon_sym_select, @@ -224082,96 +223821,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [38903] = 27, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4828), 1, - anon_sym_LPAREN, - ACTIONS(4830), 1, - anon_sym_LBRACK, - ACTIONS(4832), 1, - anon_sym_QMARK, - ACTIONS(4834), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4854), 1, - anon_sym_as, - ACTIONS(4862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4864), 1, - anon_sym_DASH_DASH, - ACTIONS(4866), 1, - anon_sym_LBRACK2, - ACTIONS(4868), 1, - anon_sym_AMP_AMP, - ACTIONS(4870), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4872), 1, - anon_sym_or, - ACTIONS(4878), 1, - anon_sym_AT_LBRACK, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, - sym_or_block, - STATE(3385), 1, - sym_attribute, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(4826), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4874), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4876), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2137), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4856), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4860), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4852), 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(4858), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [39011] = 5, + [38645] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2138), 2, + STATE(2133), 2, sym_line_comment, sym_block_comment, - ACTIONS(4882), 23, + ACTIONS(1807), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -224188,14 +223846,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4880), 26, + ACTIONS(1809), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224222,15 +223880,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [39075] = 5, + [38709] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2139), 2, + STATE(2134), 2, sym_line_comment, sym_block_comment, - ACTIONS(4886), 23, + ACTIONS(4856), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -224247,14 +223905,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4884), 26, + ACTIONS(4854), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224281,15 +223939,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [39139] = 5, + [38773] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(1807), 1, + anon_sym_LBRACK, + STATE(2135), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1809), 48, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [38837] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2140), 2, + STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(4890), 23, + ACTIONS(4860), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -224306,14 +224023,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4888), 26, + ACTIONS(4858), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224340,15 +224057,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [39203] = 5, + [38901] = 27, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4836), 1, + anon_sym_LPAREN, + ACTIONS(4838), 1, + anon_sym_LBRACK, + ACTIONS(4840), 1, + anon_sym_QMARK, + ACTIONS(4842), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4864), 1, + anon_sym_as, + ACTIONS(4872), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4874), 1, + anon_sym_DASH_DASH, + ACTIONS(4876), 1, + anon_sym_LBRACK2, + ACTIONS(4878), 1, + anon_sym_AMP_AMP, + ACTIONS(4880), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4882), 1, + anon_sym_or, + ACTIONS(4888), 1, + anon_sym_AT_LBRACK, + STATE(2234), 1, + sym_or_block, + STATE(2236), 1, + sym_argument_list, + STATE(3396), 1, + sym_attribute, + STATE(4213), 1, + sym_type_parameters, + ACTIONS(4834), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4884), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4886), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2137), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4866), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4870), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4862), 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(4868), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [39009] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2141), 2, + STATE(2138), 2, sym_line_comment, sym_block_comment, - ACTIONS(4894), 23, + ACTIONS(4892), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -224365,14 +224163,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4892), 26, + ACTIONS(4890), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224399,19 +224197,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [39267] = 6, + [39073] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1879), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - STATE(2222), 1, - sym_type_parameters, - STATE(2142), 2, + STATE(2139), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 47, + ACTIONS(1889), 48, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224453,21 +224249,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39333] = 5, + [39137] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2143), 2, + STATE(2140), 2, sym_line_comment, sym_block_comment, - ACTIONS(4898), 23, + ACTIONS(4896), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -224484,14 +224281,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4896), 26, + ACTIONS(4894), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224518,74 +224315,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [39397] = 5, - ACTIONS(3), 1, + [39201] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2144), 2, + ACTIONS(2039), 1, + anon_sym_LBRACK, + ACTIONS(4898), 1, + anon_sym_DOLLARelse, + STATE(2141), 2, sym_line_comment, sym_block_comment, - ACTIONS(1807), 23, - anon_sym_LBRACE, + ACTIONS(2041), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, - anon_sym_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(1809), 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_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [39267] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(1807), 1, + anon_sym_LBRACK, + STATE(2142), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1809), 48, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_else, - anon_sym_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, - [39461] = 5, + anon_sym_AT_LBRACK, + [39331] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2145), 2, + STATE(2143), 2, sym_line_comment, sym_block_comment, - ACTIONS(1811), 23, + ACTIONS(4902), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -224602,14 +224459,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(1813), 26, + ACTIONS(4900), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224636,143 +224493,484 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [39525] = 15, + [39395] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, - anon_sym_LPAREN, - ACTIONS(4830), 1, + ACTIONS(2060), 1, anon_sym_LBRACK, - ACTIONS(4832), 1, + ACTIONS(2159), 1, + anon_sym_LBRACE, + STATE(2144), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2055), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(4834), 1, anon_sym_BANG, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, - sym_or_block, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(4826), 2, - anon_sym_DOT, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(4836), 2, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [39461] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(1887), 1, + anon_sym_LBRACK, + STATE(2145), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1889), 48, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [39525] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2255), 1, + anon_sym_LBRACK, STATE(2146), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 4, + ACTIONS(2257), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, - ACTIONS(4858), 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, + [39588] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2717), 1, + anon_sym_LBRACK, + STATE(2147), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2719), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 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, + [39651] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2727), 1, + anon_sym_LBRACK, + STATE(2148), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2729), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39608] = 5, - ACTIONS(3), 1, + [39714] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2147), 2, + ACTIONS(2735), 1, + anon_sym_LBRACK, + STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(2868), 24, - anon_sym_LBRACE, + ACTIONS(2737), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [39777] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2743), 1, anon_sym_LBRACK, + STATE(2150), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2745), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(2870), 24, + sym_identifier, + anon_sym_AT_LBRACK, + [39840] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2747), 1, + anon_sym_LBRACK, + STATE(2151), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2749), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_struct, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, + anon_sym_BANGis, anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [39671] = 5, + anon_sym_AT_LBRACK, + [39903] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3056), 1, + ACTIONS(2799), 1, anon_sym_LBRACK, - STATE(2148), 2, + STATE(2152), 2, sym_line_comment, sym_block_comment, - ACTIONS(3058), 47, + ACTIONS(2801), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224820,17 +225018,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39734] = 5, + [39966] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3042), 1, + ACTIONS(2807), 1, anon_sym_LBRACK, - STATE(2149), 2, + STATE(2153), 2, sym_line_comment, sym_block_comment, - ACTIONS(3044), 47, + ACTIONS(2809), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224878,17 +225076,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39797] = 5, + [40029] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(2811), 1, anon_sym_LBRACK, - STATE(2150), 2, + STATE(2154), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 47, + ACTIONS(2813), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224936,17 +225134,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39860] = 5, + [40092] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3048), 1, + ACTIONS(2815), 1, anon_sym_LBRACK, - STATE(2151), 2, + STATE(2155), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 47, + ACTIONS(2817), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224994,17 +225192,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39923] = 5, + [40155] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2267), 1, + ACTIONS(2853), 1, anon_sym_LBRACK, - STATE(2152), 2, + STATE(2156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2269), 47, + ACTIONS(2855), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225052,17 +225250,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39986] = 5, + [40218] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2856), 1, + ACTIONS(3023), 1, anon_sym_LBRACK, - STATE(2153), 2, + STATE(2157), 2, sym_line_comment, sym_block_comment, - ACTIONS(2858), 47, + ACTIONS(3025), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225110,17 +225308,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40049] = 5, + [40281] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(3027), 1, anon_sym_LBRACK, - STATE(2154), 2, + STATE(2158), 2, sym_line_comment, sym_block_comment, - ACTIONS(2854), 47, + ACTIONS(3029), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225168,17 +225366,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40112] = 5, + [40344] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2694), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - STATE(2155), 2, + STATE(2159), 2, sym_line_comment, sym_block_comment, - ACTIONS(2696), 47, + ACTIONS(3046), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225226,23 +225424,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40175] = 6, + [40407] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1891), 1, - anon_sym_DOT, - ACTIONS(2473), 1, + ACTIONS(3050), 1, anon_sym_LBRACK, - STATE(2156), 2, + STATE(2160), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 46, + ACTIONS(3052), 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, @@ -225285,17 +225482,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40240] = 5, + [40470] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2469), 1, + ACTIONS(3054), 1, anon_sym_LBRACK, - STATE(2157), 2, + STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 47, + ACTIONS(3056), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225343,17 +225540,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40303] = 5, + [40533] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2141), 1, + ACTIONS(2149), 1, anon_sym_LBRACK, - STATE(2158), 2, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(2143), 47, + ACTIONS(2151), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225401,23 +225598,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40366] = 6, + [40596] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2163), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2610), 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(4904), 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, + [40659] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2511), 1, + ACTIONS(2819), 1, anon_sym_LBRACK, - ACTIONS(2515), 1, - anon_sym_DOT, - STATE(2159), 2, + STATE(2164), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 46, + ACTIONS(2821), 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, @@ -225460,17 +225714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40431] = 5, + [40722] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2520), 1, + ACTIONS(2705), 1, anon_sym_LBRACK, - STATE(2160), 2, + STATE(2165), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 47, + ACTIONS(2707), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225518,17 +225772,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40494] = 5, + [40785] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2511), 1, + ACTIONS(2473), 1, anon_sym_LBRACK, - STATE(2161), 2, + STATE(2166), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 47, + ACTIONS(2475), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225576,17 +225830,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40557] = 5, + [40848] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2530), 1, + ACTIONS(2461), 1, anon_sym_LBRACK, - STATE(2162), 2, + STATE(2167), 2, sym_line_comment, sym_block_comment, - ACTIONS(2532), 47, + ACTIONS(2463), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225634,17 +225888,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40620] = 5, + [40911] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2503), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - STATE(2163), 2, + STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2505), 47, + ACTIONS(2457), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225692,134 +225946,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40683] = 5, + [40974] = 17, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2804), 1, + ACTIONS(4836), 1, + anon_sym_LPAREN, + ACTIONS(4838), 1, anon_sym_LBRACK, - STATE(2164), 2, + ACTIONS(4840), 1, + anon_sym_QMARK, + ACTIONS(4842), 1, + anon_sym_BANG, + STATE(2234), 1, + sym_or_block, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, + sym_type_parameters, + ACTIONS(4834), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4844), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4886), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2169), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + ACTIONS(4866), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4870), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4868), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1791), 17, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40746] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4904), 1, - anon_sym_volatile, - STATE(2165), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4902), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4900), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [40811] = 5, + [41061] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2878), 1, + ACTIONS(2451), 1, anon_sym_LBRACK, - STATE(2166), 2, + STATE(2170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 47, + ACTIONS(2453), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225867,17 +226074,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40874] = 5, + [41124] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2189), 1, + ACTIONS(2437), 1, anon_sym_LBRACK, - STATE(2167), 2, + STATE(2171), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 47, + ACTIONS(2439), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225925,94 +226132,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40937] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4828), 1, - anon_sym_LPAREN, - ACTIONS(4830), 1, - anon_sym_LBRACK, - ACTIONS(4832), 1, - anon_sym_QMARK, - ACTIONS(4834), 1, - anon_sym_BANG, - ACTIONS(4854), 1, - anon_sym_as, - ACTIONS(4862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4864), 1, - anon_sym_DASH_DASH, - ACTIONS(4868), 1, - anon_sym_AMP_AMP, - ACTIONS(4870), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4872), 1, - anon_sym_or, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, - sym_or_block, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(4826), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4836), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4874), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4876), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2168), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4856), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4860), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4858), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1795), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - anon_sym_AT_LBRACK, - [41038] = 5, + [41187] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2457), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - STATE(2169), 2, + STATE(2172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2459), 47, + ACTIONS(2181), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226060,191 +226190,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41101] = 5, + [41250] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2453), 1, - anon_sym_LBRACK, - STATE(2170), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2455), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4836), 1, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4838), 1, + anon_sym_LBRACK, + ACTIONS(4840), 1, anon_sym_QMARK, + ACTIONS(4842), 1, anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(2234), 1, + sym_or_block, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, + sym_type_parameters, + ACTIONS(4834), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(4844), 2, + anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [41164] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2447), 1, - anon_sym_LBRACK, - STATE(2171), 2, + STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + ACTIONS(4866), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4868), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [41227] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2441), 1, - anon_sym_LBRACK, - STATE(2172), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2443), 47, + ACTIONS(1791), 25, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41290] = 5, + [41333] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2904), 1, + ACTIONS(2239), 1, anon_sym_LBRACK, - STATE(2173), 2, + STATE(2174), 2, sym_line_comment, sym_block_comment, - ACTIONS(2906), 47, + ACTIONS(2241), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226292,17 +226316,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41353] = 5, + [41396] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2305), 1, + ACTIONS(2231), 1, anon_sym_LBRACK, - STATE(2174), 2, + STATE(2175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2307), 47, + ACTIONS(2233), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226350,17 +226374,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41416] = 5, + [41459] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2900), 1, + ACTIONS(2117), 1, anon_sym_LBRACK, - STATE(2175), 2, + STATE(2176), 2, sym_line_comment, sym_block_comment, - ACTIONS(2902), 47, + ACTIONS(2119), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226408,17 +226432,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41479] = 5, + [41522] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2291), 1, + ACTIONS(2131), 1, anon_sym_LBRACK, - STATE(2176), 2, + STATE(2177), 2, sym_line_comment, sym_block_comment, - ACTIONS(2293), 47, + ACTIONS(2133), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226466,17 +226490,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41542] = 5, + [41585] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2465), 1, + ACTIONS(2425), 1, anon_sym_LBRACK, - STATE(2177), 2, + STATE(2178), 2, sym_line_comment, sym_block_comment, - ACTIONS(2467), 47, + ACTIONS(2427), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226524,17 +226548,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41605] = 5, + [41648] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2726), 1, + ACTIONS(1897), 1, anon_sym_LBRACK, - STATE(2178), 2, + STATE(2179), 2, sym_line_comment, sym_block_comment, - ACTIONS(2728), 47, + ACTIONS(1899), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226582,75 +226606,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41668] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2179), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2567), 23, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4906), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [41731] = 5, + [41711] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1887), 1, + ACTIONS(2889), 1, anon_sym_LBRACK, STATE(2180), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 47, + ACTIONS(2891), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226698,17 +226664,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41794] = 5, + [41774] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2461), 1, + ACTIONS(3064), 1, anon_sym_LBRACK, STATE(2181), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 47, + ACTIONS(3066), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226756,75 +226722,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41857] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2182), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2702), 24, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(2704), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [41920] = 5, + [41837] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2507), 1, + ACTIONS(2885), 1, anon_sym_LBRACK, - STATE(2183), 2, + STATE(2182), 2, sym_line_comment, sym_block_comment, - ACTIONS(2509), 47, + ACTIONS(2887), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226872,17 +226780,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41983] = 5, + [41900] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1879), 1, + ACTIONS(3019), 1, anon_sym_LBRACK, - STATE(2184), 2, + STATE(2183), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 47, + ACTIONS(3021), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226930,17 +226838,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42046] = 5, + [41963] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2313), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - STATE(2185), 2, + STATE(2184), 2, sym_line_comment, sym_block_comment, - ACTIONS(2315), 47, + ACTIONS(2883), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226988,75 +226896,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42109] = 5, - ACTIONS(3), 1, + [42026] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2186), 2, + ACTIONS(2421), 1, + anon_sym_LBRACK, + STATE(2185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2000), 23, - anon_sym_LBRACE, + ACTIONS(2423), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, - anon_sym_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4908), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [42089] = 14, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4836), 1, + anon_sym_LPAREN, + ACTIONS(4838), 1, + anon_sym_LBRACK, + ACTIONS(4840), 1, + anon_sym_QMARK, + ACTIONS(4842), 1, + anon_sym_BANG, + STATE(2234), 1, + sym_or_block, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, + sym_type_parameters, + ACTIONS(4834), 2, anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, + anon_sym_QMARK_DOT, + ACTIONS(4844), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2186), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4868), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1791), 29, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_pub, anon_sym_mut, - anon_sym_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_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [42172] = 5, + anon_sym_AT_LBRACK, + [42170] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2123), 1, + ACTIONS(3013), 1, anon_sym_LBRACK, STATE(2187), 2, sym_line_comment, sym_block_comment, - ACTIONS(2125), 47, + ACTIONS(3015), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227104,17 +227079,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42235] = 5, + [42233] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1989), 1, + ACTIONS(3009), 1, anon_sym_LBRACK, STATE(2188), 2, sym_line_comment, sym_block_comment, - ACTIONS(1987), 47, + ACTIONS(3011), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227162,17 +227137,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42298] = 5, + [42296] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2536), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, STATE(2189), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 47, + ACTIONS(2273), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227220,17 +227195,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42361] = 5, + [42359] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2147), 1, + ACTIONS(2857), 1, anon_sym_LBRACK, STATE(2190), 2, sym_line_comment, sym_block_comment, - ACTIONS(2149), 47, + ACTIONS(2859), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227278,17 +227253,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42424] = 5, + [42422] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2734), 1, + ACTIONS(2845), 1, anon_sym_LBRACK, STATE(2191), 2, sym_line_comment, sym_block_comment, - ACTIONS(2736), 47, + ACTIONS(2847), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227336,84 +227311,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42487] = 14, + [42485] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, - anon_sym_LPAREN, - ACTIONS(4830), 1, + ACTIONS(2841), 1, anon_sym_LBRACK, - ACTIONS(4832), 1, - anon_sym_QMARK, - ACTIONS(4834), 1, - anon_sym_BANG, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, - sym_or_block, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(4826), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4836), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, STATE(2192), 2, sym_line_comment, sym_block_comment, - ACTIONS(4858), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1765), 29, + ACTIONS(2843), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42568] = 5, + [42548] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2193), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2165), 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(2167), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_PIPE, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [42611] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2770), 1, + ACTIONS(2777), 1, anon_sym_LBRACK, - STATE(2193), 2, + STATE(2194), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 47, + ACTIONS(2779), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227461,17 +227485,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42631] = 5, + [42674] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2666), 1, + ACTIONS(2773), 1, anon_sym_LBRACK, - STATE(2194), 2, + STATE(2195), 2, sym_line_comment, sym_block_comment, - ACTIONS(2668), 47, + ACTIONS(2775), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227519,87 +227543,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42694] = 17, + [42737] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, - anon_sym_LPAREN, - ACTIONS(4830), 1, + ACTIONS(2053), 1, anon_sym_LBRACK, - ACTIONS(4832), 1, - anon_sym_QMARK, - ACTIONS(4834), 1, - anon_sym_BANG, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, - sym_or_block, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(4826), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4836), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4876), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2195), 2, + STATE(2196), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 4, + ACTIONS(2055), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4860), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4858), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 17, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42781] = 5, + [42800] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2776), 1, + ACTIONS(2831), 1, anon_sym_LBRACK, - STATE(2196), 2, + STATE(2197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 47, + ACTIONS(2833), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227647,204 +227659,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42844] = 5, - ACTIONS(497), 1, + [42863] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2113), 1, - anon_sym_LBRACK, - STATE(2197), 2, + STATE(2198), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(1916), 23, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_json_DOTdecode, anon_sym_LBRACK2, + anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42907] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2198), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2810), 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_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(2812), 24, + ACTIONS(4906), 25, anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, sym_identifier, anon_sym_shared, anon_sym_chan, anon_sym_thread, anon_sym_atomic, - anon_sym_DOT_DOT, - [42970] = 18, + [42926] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, - anon_sym_LPAREN, - ACTIONS(4830), 1, + ACTIONS(2183), 1, anon_sym_LBRACK, - ACTIONS(4832), 1, - anon_sym_QMARK, - ACTIONS(4834), 1, - anon_sym_BANG, - ACTIONS(4868), 1, - anon_sym_AMP_AMP, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, - sym_or_block, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(4826), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4836), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4876), 2, - anon_sym_in, - anon_sym_BANGin, STATE(2199), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4860), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4858), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1765), 16, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - sym_identifier, - anon_sym_AT_LBRACK, - [43059] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2844), 1, - anon_sym_LBRACK, - STATE(2200), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2846), 47, + ACTIONS(2185), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227892,17 +227775,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43122] = 5, + [42989] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2908), 1, + ACTIONS(2761), 1, anon_sym_LBRACK, - STATE(2201), 2, + STATE(2200), 2, sym_line_comment, sym_block_comment, - ACTIONS(2910), 47, + ACTIONS(2763), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227950,17 +227833,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43185] = 5, + [43052] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2231), 1, + ACTIONS(2267), 1, anon_sym_LBRACK, - STATE(2202), 2, + STATE(2201), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 47, + ACTIONS(2269), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228008,17 +227891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43248] = 5, + [43115] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2884), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - STATE(2203), 2, + STATE(2202), 2, sym_line_comment, sym_block_comment, - ACTIONS(2886), 47, + ACTIONS(2261), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228066,17 +227949,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43311] = 5, + [43178] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2201), 1, + ACTIONS(2251), 1, anon_sym_LBRACK, - STATE(2204), 2, + STATE(2203), 2, sym_line_comment, sym_block_comment, - ACTIONS(2203), 47, + ACTIONS(2253), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228124,17 +228007,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43374] = 5, + [43241] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2678), 1, + ACTIONS(2247), 1, anon_sym_LBRACK, - STATE(2205), 2, + STATE(2204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2680), 47, + ACTIONS(2249), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228182,17 +228065,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43437] = 5, + [43304] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2682), 1, + ACTIONS(2087), 1, anon_sym_LBRACK, - STATE(2206), 2, + STATE(2205), 2, sym_line_comment, sym_block_comment, - ACTIONS(2684), 47, + ACTIONS(2089), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228240,75 +228123,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43500] = 5, + [43367] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2686), 1, + ACTIONS(4836), 1, + anon_sym_LPAREN, + ACTIONS(4838), 1, anon_sym_LBRACK, - STATE(2207), 2, + ACTIONS(4840), 1, + anon_sym_QMARK, + ACTIONS(4842), 1, + anon_sym_BANG, + ACTIONS(4864), 1, + anon_sym_as, + ACTIONS(4872), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4874), 1, + anon_sym_DASH_DASH, + ACTIONS(4878), 1, + anon_sym_AMP_AMP, + ACTIONS(4880), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4882), 1, + anon_sym_or, + STATE(2234), 1, + sym_or_block, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, + sym_type_parameters, + ACTIONS(4834), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4844), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4884), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4886), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2688), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + ACTIONS(4866), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4870), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4868), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1765), 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, - [43563] = 5, + [43468] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2690), 1, + ACTIONS(2723), 1, anon_sym_LBRACK, - STATE(2208), 2, + STATE(2207), 2, sym_line_comment, sym_block_comment, - ACTIONS(2692), 47, + ACTIONS(2725), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228356,19 +228258,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43626] = 6, + [43531] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2540), 1, + ACTIONS(2739), 1, anon_sym_LBRACK, - ACTIONS(4910), 1, - anon_sym_BANG, - STATE(2209), 2, + STATE(2208), 2, sym_line_comment, sym_block_comment, - ACTIONS(2542), 46, + ACTIONS(2741), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228397,6 +228297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -228415,17 +228316,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43691] = 5, + [43594] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2766), 1, + ACTIONS(2161), 1, anon_sym_LBRACK, - STATE(2210), 2, + STATE(2209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 47, + ACTIONS(2163), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228473,143 +228374,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43754] = 15, - ACTIONS(497), 1, + [43657] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, - anon_sym_LPAREN, - ACTIONS(4830), 1, - anon_sym_LBRACK, - ACTIONS(4832), 1, - anon_sym_QMARK, - ACTIONS(4834), 1, - anon_sym_BANG, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, - sym_or_block, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(4826), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4836), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2211), 2, + STATE(2210), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4858), 8, + ACTIONS(2235), 24, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1781), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, + 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_is, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43837] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2212), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4914), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_map_LBRACK, + ACTIONS(2237), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, anon_sym_QMARK, anon_sym_BANG, - anon_sym_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4912), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, + 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, - [43900] = 5, + anon_sym_DOT_DOT, + [43720] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2730), 1, + ACTIONS(2583), 1, anon_sym_LBRACK, - STATE(2213), 2, + ACTIONS(4908), 1, + anon_sym_BANG, + STATE(2211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2732), 47, + ACTIONS(2585), 46, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228638,7 +228473,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -228657,73 +228491,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43963] = 5, - ACTIONS(497), 1, + [43785] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2117), 1, - anon_sym_LBRACK, - STATE(2214), 2, + STATE(2212), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2191), 24, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, + anon_sym_map_LBRACK, + ACTIONS(2193), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_PIPE, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, sym_identifier, - anon_sym_AT_LBRACK, - [44026] = 5, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [43848] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2215), 2, + STATE(2213), 2, sym_line_comment, sym_block_comment, - ACTIONS(2916), 24, + ACTIONS(2195), 24, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -228748,7 +228582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_BANGin, anon_sym_map_LBRACK, - ACTIONS(2918), 24, + ACTIONS(2197), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -228773,17 +228607,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_DOT_DOT, - [44089] = 5, + [43911] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2786), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, - STATE(2216), 2, + STATE(2214), 2, sym_line_comment, sym_block_comment, - ACTIONS(2788), 47, + ACTIONS(2837), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228831,17 +228665,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44152] = 5, + [43974] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2796), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - STATE(2217), 2, + STATE(2215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 47, + ACTIONS(2265), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228889,133 +228723,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44215] = 5, - ACTIONS(497), 1, + [44037] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2800), 1, - anon_sym_LBRACK, - STATE(2218), 2, + STATE(2216), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2169), 24, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44278] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(3060), 1, - anon_sym_LBRACK, - STATE(2219), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3062), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_map_LBRACK, + ACTIONS(2171), 24, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_struct, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, - anon_sym_BANGis, anon_sym_in, - anon_sym_BANGin, sym_identifier, - anon_sym_AT_LBRACK, - [44341] = 5, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [44100] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2822), 1, + ACTIONS(2187), 1, anon_sym_LBRACK, - STATE(2220), 2, + STATE(2217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 47, + ACTIONS(2189), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229063,22 +228839,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44404] = 5, + [44163] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2826), 1, + ACTIONS(2885), 1, anon_sym_LBRACK, - STATE(2221), 2, + ACTIONS(3039), 1, + anon_sym_DOT, + STATE(2218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 47, + ACTIONS(2887), 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, @@ -229121,17 +228898,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44467] = 5, + [44228] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4914), 1, + anon_sym_volatile, + STATE(2219), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4912), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + anon_sym_c_SQUOTE, + anon_sym_c_DQUOTE, + anon_sym_r_SQUOTE, + anon_sym_r_DQUOTE, + anon_sym_map_LBRACK, + ACTIONS(4910), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [44293] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2838), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - STATE(2222), 2, + STATE(2220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 47, + ACTIONS(2147), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229179,17 +229015,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44530] = 5, + [44356] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2834), 1, + ACTIONS(2031), 1, anon_sym_LBRACK, - STATE(2223), 2, + STATE(2221), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 47, + ACTIONS(2029), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229237,76 +229073,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44593] = 6, - ACTIONS(497), 1, + [44419] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2222), 1, - anon_sym_LBRACK, - STATE(2224), 2, + STATE(2222), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(4918), 23, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym___global, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - anon_sym_AT_LBRACK, - ACTIONS(2219), 35, - anon_sym_DOT, - anon_sym_as, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, + anon_sym_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, - [44658] = 5, + 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(4916), 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, + [44482] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2888), 1, + ACTIONS(2113), 1, anon_sym_LBRACK, - STATE(2225), 2, + STATE(2223), 2, sym_line_comment, sym_block_comment, - ACTIONS(2890), 47, + ACTIONS(2115), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229354,17 +229189,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44721] = 5, + [44545] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2892), 1, + ACTIONS(2243), 1, anon_sym_LBRACK, - STATE(2226), 2, + STATE(2224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2894), 47, + ACTIONS(2245), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229412,133 +229247,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44784] = 5, + [44608] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2896), 1, + ACTIONS(4836), 1, + anon_sym_LPAREN, + ACTIONS(4838), 1, anon_sym_LBRACK, - STATE(2227), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2898), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4840), 1, + anon_sym_QMARK, + ACTIONS(4842), 1, + anon_sym_BANG, + ACTIONS(4864), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + ACTIONS(4872), 1, anon_sym_PLUS_PLUS, + ACTIONS(4874), 1, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4878), 1, anon_sym_AMP_AMP, + ACTIONS(4880), 1, anon_sym_PIPE_PIPE, + ACTIONS(4882), 1, anon_sym_or, + STATE(2234), 1, + sym_or_block, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, + sym_type_parameters, + ACTIONS(4834), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(4844), 2, + anon_sym_LBRACK2, anon_sym_POUND_LBRACK, + ACTIONS(4884), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(4886), 2, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44847] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(3066), 1, - anon_sym_LBRACK, - STATE(2228), 2, + STATE(2225), 2, sym_line_comment, sym_block_comment, - ACTIONS(3068), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + ACTIONS(4866), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4870), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4868), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1779), 9, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, sym_identifier, anon_sym_AT_LBRACK, - [44910] = 5, + [44709] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2698), 1, + ACTIONS(2469), 1, anon_sym_LBRACK, - STATE(2229), 2, + STATE(2226), 2, sym_line_comment, sym_block_comment, - ACTIONS(2700), 47, + ACTIONS(2471), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229586,14 +229382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44973] = 5, + [44772] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, ACTIONS(2227), 1, anon_sym_LBRACK, - STATE(2230), 2, + STATE(2227), 2, sym_line_comment, sym_block_comment, ACTIONS(2229), 47, @@ -229644,17 +229440,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45036] = 5, + [44835] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2708), 1, + ACTIONS(2223), 1, anon_sym_LBRACK, - STATE(2231), 2, + STATE(2228), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 47, + ACTIONS(2225), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229702,17 +229498,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45099] = 5, + [44898] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2712), 1, + ACTIONS(2219), 1, anon_sym_LBRACK, - STATE(2232), 2, + STATE(2229), 2, sym_line_comment, sym_block_comment, - ACTIONS(2714), 47, + ACTIONS(2221), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229760,17 +229556,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45162] = 5, + [44961] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2135), 1, + ACTIONS(2215), 1, anon_sym_LBRACK, - STATE(2233), 2, + STATE(2230), 2, sym_line_comment, sym_block_comment, - ACTIONS(2137), 47, + ACTIONS(2217), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229818,17 +229614,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45225] = 5, + [45024] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2722), 1, + ACTIONS(2211), 1, anon_sym_LBRACK, - STATE(2234), 2, + STATE(2231), 2, sym_line_comment, sym_block_comment, - ACTIONS(2724), 47, + ACTIONS(2213), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229876,17 +229672,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45288] = 5, + [45087] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2742), 1, + ACTIONS(4836), 1, + anon_sym_LPAREN, + ACTIONS(4838), 1, anon_sym_LBRACK, - STATE(2235), 2, + ACTIONS(4840), 1, + anon_sym_QMARK, + ACTIONS(4842), 1, + anon_sym_BANG, + STATE(2234), 1, + sym_or_block, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, + sym_type_parameters, + ACTIONS(4834), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4844), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2232), 2, sym_line_comment, sym_block_comment, - ACTIONS(2744), 47, + ACTIONS(4866), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4868), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1787), 25, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [45170] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2207), 1, + anon_sym_LBRACK, + STATE(2233), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2209), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229934,17 +229798,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45351] = 5, + [45233] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2197), 1, + ACTIONS(2545), 1, anon_sym_LBRACK, - STATE(2236), 2, + STATE(2234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2199), 47, + ACTIONS(2547), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229992,17 +229856,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45414] = 5, + [45296] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2748), 1, + ACTIONS(2203), 1, anon_sym_LBRACK, - STATE(2237), 2, + STATE(2235), 2, sym_line_comment, sym_block_comment, - ACTIONS(2750), 47, + ACTIONS(2205), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230050,17 +229914,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45477] = 5, + [45359] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2754), 1, + ACTIONS(2429), 1, anon_sym_LBRACK, - STATE(2238), 2, + STATE(2236), 2, sym_line_comment, sym_block_comment, - ACTIONS(2756), 47, + ACTIONS(2431), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230108,17 +229972,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45540] = 5, + [45422] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2860), 1, + ACTIONS(2861), 1, anon_sym_LBRACK, - STATE(2239), 2, + STATE(2237), 2, sym_line_comment, sym_block_comment, - ACTIONS(2862), 47, + ACTIONS(2863), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230166,17 +230030,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45603] = 5, + [45485] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2872), 1, + ACTIONS(2095), 1, anon_sym_LBRACK, - STATE(2240), 2, + STATE(2238), 2, sym_line_comment, sym_block_comment, - ACTIONS(2874), 47, + ACTIONS(2097), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230224,75 +230088,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45666] = 5, - ACTIONS(3), 1, + [45548] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2241), 2, + ACTIONS(2121), 1, + anon_sym_LBRACK, + STATE(2239), 2, sym_line_comment, sym_block_comment, - ACTIONS(2912), 24, - anon_sym_LBRACE, + ACTIONS(2123), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(2914), 24, + sym_identifier, + anon_sym_AT_LBRACK, + [45611] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2125), 1, + anon_sym_LBRACK, + STATE(2240), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2127), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_struct, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, + anon_sym_BANGis, anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [45729] = 5, + anon_sym_AT_LBRACK, + [45674] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2670), 1, + ACTIONS(2505), 1, anon_sym_LBRACK, - STATE(2242), 2, + STATE(2241), 2, sym_line_comment, sym_block_comment, - ACTIONS(2672), 47, + ACTIONS(2507), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230340,17 +230262,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45792] = 5, + [45737] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, + ACTIONS(2199), 1, anon_sym_LBRACK, - STATE(2243), 2, + STATE(2242), 2, sym_line_comment, sym_block_comment, - ACTIONS(2924), 47, + ACTIONS(2201), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230398,94 +230320,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45855] = 24, + [45800] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, - anon_sym_LPAREN, - ACTIONS(4830), 1, + ACTIONS(2103), 1, anon_sym_LBRACK, - ACTIONS(4832), 1, - anon_sym_QMARK, - ACTIONS(4834), 1, - anon_sym_BANG, - ACTIONS(4854), 1, + STATE(2243), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2105), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - ACTIONS(4862), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, - ACTIONS(4864), 1, anon_sym_DASH_DASH, - ACTIONS(4868), 1, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + 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(4870), 1, anon_sym_PIPE_PIPE, - ACTIONS(4872), 1, anon_sym_or, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, - sym_or_block, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(4826), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4836), 2, - anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4874), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4876), 2, anon_sym_in, anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [45863] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2173), 1, + anon_sym_LBRACK, STATE(2244), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 4, + 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_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4860), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4858), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1773), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45956] = 5, + [45926] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2848), 1, + ACTIONS(2153), 1, anon_sym_LBRACK, STATE(2245), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 47, + ACTIONS(2155), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230533,17 +230494,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46019] = 5, + [45989] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2830), 1, + ACTIONS(2803), 1, anon_sym_LBRACK, STATE(2246), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 47, + ACTIONS(2805), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230591,17 +230552,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46082] = 5, + [46052] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2792), 1, + ACTIONS(2875), 1, anon_sym_LBRACK, STATE(2247), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 47, + ACTIONS(2877), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230649,27 +230610,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46145] = 5, + [46115] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2738), 1, + ACTIONS(2142), 1, anon_sym_LBRACK, STATE(2248), 2, sym_line_comment, sym_block_comment, - ACTIONS(2740), 47, + ACTIONS(2137), 12, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + anon_sym_AT_LBRACK, + ACTIONS(2139), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -230682,9 +230649,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, @@ -230705,19 +230669,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [46208] = 5, + [46180] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2780), 1, + ACTIONS(2091), 1, anon_sym_LBRACK, STATE(2249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 47, + ACTIONS(2093), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230765,17 +230727,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46271] = 5, + [46243] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2716), 1, + ACTIONS(2849), 1, anon_sym_LBRACK, STATE(2250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2718), 47, + ACTIONS(2851), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230823,17 +230785,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46334] = 5, + [46306] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2499), 1, + ACTIONS(2769), 1, anon_sym_LBRACK, STATE(2251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2501), 47, + ACTIONS(2771), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230881,17 +230843,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46397] = 5, + [46369] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2309), 1, + ACTIONS(2765), 1, anon_sym_LBRACK, STATE(2252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 47, + ACTIONS(2767), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230939,22 +230901,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46460] = 5, + [46432] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2057), 1, + anon_sym_DOT, + ACTIONS(2157), 1, anon_sym_LBRACK, STATE(2253), 2, sym_line_comment, sym_block_comment, - ACTIONS(2303), 47, + ACTIONS(2159), 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, @@ -230997,99 +230960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46523] = 29, + [46497] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1889), 1, - anon_sym_DOT, - ACTIONS(2473), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(3426), 1, - sym_identifier, - ACTIONS(3430), 1, - anon_sym_fn, - ACTIONS(3432), 1, - anon_sym_STAR, - ACTIONS(3434), 1, - anon_sym_struct, - ACTIONS(3436), 1, - anon_sym_QMARK, - ACTIONS(3438), 1, - anon_sym_BANG, - ACTIONS(3440), 1, - anon_sym_LBRACK2, - ACTIONS(3442), 1, - anon_sym_AMP, - ACTIONS(3444), 1, - anon_sym_shared, - ACTIONS(3446), 1, - anon_sym_map_LBRACK, - ACTIONS(3448), 1, - anon_sym_chan, - ACTIONS(3450), 1, - anon_sym_thread, - ACTIONS(3452), 1, - anon_sym_atomic, - ACTIONS(4916), 1, - anon_sym_LPAREN, - ACTIONS(4918), 1, - anon_sym_LT2, - STATE(3337), 1, - sym_plain_type, - STATE(3343), 1, - sym_signature, - STATE(3674), 1, - sym_generic_parameters, - STATE(4351), 1, - sym_reference_expression, STATE(2254), 2, sym_line_comment, sym_block_comment, - STATE(2429), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3305), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3362), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(2475), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3340), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [46634] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2295), 1, - anon_sym_LBRACK, - STATE(2255), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2297), 47, + ACTIONS(2101), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231137,17 +231018,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46697] = 5, + [46560] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, + ACTIONS(2157), 1, anon_sym_LBRACK, - STATE(2256), 2, + STATE(2255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2211), 47, + ACTIONS(2159), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231195,64 +231076,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46760] = 5, + [46623] = 18, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2473), 1, + ACTIONS(4836), 1, + anon_sym_LPAREN, + ACTIONS(4838), 1, anon_sym_LBRACK, - STATE(2257), 2, + ACTIONS(4840), 1, + anon_sym_QMARK, + ACTIONS(4842), 1, + anon_sym_BANG, + ACTIONS(4878), 1, + anon_sym_AMP_AMP, + STATE(2234), 1, + sym_or_block, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, + sym_type_parameters, + ACTIONS(4834), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4844), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4886), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2256), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + ACTIONS(4866), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4870), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4868), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(1791), 16, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, + [46712] = 29, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2055), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(3430), 1, + sym_identifier, + ACTIONS(3434), 1, + anon_sym_fn, + ACTIONS(3436), 1, + anon_sym_STAR, + ACTIONS(3438), 1, + anon_sym_struct, + ACTIONS(3440), 1, + anon_sym_QMARK, + ACTIONS(3442), 1, + anon_sym_BANG, + ACTIONS(3444), 1, + anon_sym_LBRACK2, + ACTIONS(3446), 1, + anon_sym_AMP, + ACTIONS(3448), 1, + anon_sym_shared, + ACTIONS(3450), 1, + anon_sym_map_LBRACK, + ACTIONS(3452), 1, + anon_sym_chan, + ACTIONS(3454), 1, + anon_sym_thread, + ACTIONS(3456), 1, + anon_sym_atomic, + ACTIONS(4920), 1, + anon_sym_LPAREN, + ACTIONS(4922), 1, + anon_sym_LT2, + STATE(3337), 1, + sym_plain_type, + STATE(3349), 1, + sym_signature, + STATE(3713), 1, + sym_generic_parameters, + STATE(4356), 1, + sym_reference_expression, + STATE(2257), 2, + sym_line_comment, + sym_block_comment, + STATE(2422), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3302), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3360), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(2159), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + STATE(3354), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, [46823] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -231261,7 +231237,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2258), 2, sym_line_comment, sym_block_comment, - ACTIONS(4922), 22, + ACTIONS(4912), 22, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PLUS, @@ -231277,14 +231253,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4920), 25, + ACTIONS(4910), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -231310,117 +231286,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [46885] = 15, + [46885] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, - anon_sym_LPAREN, - ACTIONS(4830), 1, + ACTIONS(1807), 1, anon_sym_LBRACK, - ACTIONS(4832), 1, - anon_sym_QMARK, - ACTIONS(4834), 1, - anon_sym_BANG, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, - sym_or_block, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(4826), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4836), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, + ACTIONS(2029), 2, + anon_sym_LBRACE, + anon_sym_COMMA, STATE(2259), 2, sym_line_comment, sym_block_comment, - ACTIONS(4924), 4, + ACTIONS(1809), 44, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4926), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1781), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, - [46967] = 24, + anon_sym_AT_LBRACK, + [46949] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, + ACTIONS(4836), 1, anon_sym_LPAREN, - ACTIONS(4830), 1, + ACTIONS(4838), 1, anon_sym_LBRACK, - ACTIONS(4832), 1, + ACTIONS(4840), 1, anon_sym_QMARK, - ACTIONS(4834), 1, + ACTIONS(4842), 1, anon_sym_BANG, - ACTIONS(4854), 1, + ACTIONS(4864), 1, anon_sym_as, - ACTIONS(4862), 1, + ACTIONS(4872), 1, anon_sym_PLUS_PLUS, + ACTIONS(4874), 1, + anon_sym_DASH_DASH, + ACTIONS(4882), 1, + anon_sym_or, + ACTIONS(4930), 1, + anon_sym_AMP_AMP, + ACTIONS(4932), 1, + anon_sym_PIPE_PIPE, + STATE(2234), 1, + sym_or_block, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, + sym_type_parameters, + ACTIONS(4834), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4844), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4884), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4934), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2260), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4924), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4928), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1765), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(4926), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [47049] = 24, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4836), 1, + anon_sym_LPAREN, + ACTIONS(4838), 1, + anon_sym_LBRACK, + ACTIONS(4840), 1, + anon_sym_QMARK, + ACTIONS(4842), 1, + anon_sym_BANG, ACTIONS(4864), 1, + anon_sym_as, + ACTIONS(4872), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4874), 1, anon_sym_DASH_DASH, - ACTIONS(4872), 1, + ACTIONS(4882), 1, anon_sym_or, ACTIONS(4930), 1, anon_sym_AMP_AMP, ACTIONS(4932), 1, anon_sym_PIPE_PIPE, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, + STATE(2234), 1, sym_or_block, - STATE(4133), 1, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, sym_type_parameters, - ACTIONS(4826), 2, + ACTIONS(4834), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4836), 2, + ACTIONS(4844), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4874), 2, + ACTIONS(4884), 2, anon_sym_is, anon_sym_BANGis, ACTIONS(4934), 2, anon_sym_in, anon_sym_BANGin, - STATE(2260), 2, + STATE(2261), 2, sym_line_comment, sym_block_comment, ACTIONS(4924), 4, @@ -231435,7 +231478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3730), 8, + ACTIONS(1779), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231453,37 +231496,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47067] = 16, + [47149] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - STATE(2261), 2, + STATE(2262), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 9, + ACTIONS(1809), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -231491,13 +231513,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1783), 27, + ACTIONS(1807), 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, @@ -231505,6 +231532,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, @@ -231515,22 +231543,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47151] = 5, + [47211] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2262), 2, + ACTIONS(4936), 1, + anon_sym_DOT, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + STATE(2263), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 13, - anon_sym_DOT, + ACTIONS(1769), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -231538,18 +231591,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1807), 34, + ACTIONS(1767), 27, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -231557,7 +231605,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -231568,132 +231615,283 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47213] = 6, + [47295] = 18, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1807), 1, + ACTIONS(4836), 1, + anon_sym_LPAREN, + ACTIONS(4838), 1, anon_sym_LBRACK, - ACTIONS(1987), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2263), 2, + ACTIONS(4840), 1, + anon_sym_QMARK, + ACTIONS(4842), 1, + anon_sym_BANG, + ACTIONS(4930), 1, + anon_sym_AMP_AMP, + STATE(2234), 1, + sym_or_block, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, + sym_type_parameters, + ACTIONS(4834), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4844), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4934), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2264), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 44, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + ACTIONS(4924), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4928), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, + ACTIONS(4926), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1791), 15, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + sym_identifier, + [47383] = 15, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4836), 1, + anon_sym_LPAREN, + ACTIONS(4838), 1, + anon_sym_LBRACK, + ACTIONS(4840), 1, anon_sym_QMARK, + ACTIONS(4842), 1, anon_sym_BANG, + STATE(2234), 1, + sym_or_block, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, + sym_type_parameters, + ACTIONS(4834), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4844), 2, anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2265), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4924), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, + ACTIONS(4926), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1787), 24, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, - anon_sym_AT_LBRACK, - [47277] = 5, + [47465] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2264), 2, + STATE(2266), 2, sym_line_comment, sym_block_comment, - ACTIONS(1813), 13, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(4954), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, + anon_sym_json_DOTdecode, anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1811), 34, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + 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(4952), 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, + [47527] = 24, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4836), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4838), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4840), 1, + anon_sym_QMARK, + ACTIONS(4842), 1, + anon_sym_BANG, + ACTIONS(4864), 1, + anon_sym_as, + ACTIONS(4872), 1, anon_sym_PLUS_PLUS, + ACTIONS(4874), 1, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4882), 1, + anon_sym_or, + ACTIONS(4930), 1, anon_sym_AMP_AMP, + ACTIONS(4932), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(2234), 1, + sym_or_block, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, + sym_type_parameters, + ACTIONS(4834), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(4844), 2, + anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, + ACTIONS(4884), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(4934), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [47339] = 16, + STATE(2267), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4924), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4928), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3730), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(4926), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [47627] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -231714,16 +231912,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - STATE(2265), 2, + STATE(2268), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 9, + ACTIONS(1791), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -231733,7 +231931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1763), 27, + ACTIONS(1789), 27, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -231761,34 +231959,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47423] = 14, + [47711] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, + ACTIONS(4836), 1, anon_sym_LPAREN, - ACTIONS(4830), 1, + ACTIONS(4838), 1, anon_sym_LBRACK, - ACTIONS(4832), 1, + ACTIONS(4840), 1, anon_sym_QMARK, - ACTIONS(4834), 1, + ACTIONS(4842), 1, anon_sym_BANG, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, + STATE(2234), 1, sym_or_block, - STATE(4133), 1, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, sym_type_parameters, - ACTIONS(4826), 2, + ACTIONS(4834), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4836), 2, + ACTIONS(4844), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2266), 2, + STATE(2269), 2, sym_line_comment, sym_block_comment, + ACTIONS(4924), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, ACTIONS(4926), 8, anon_sym_STAR, anon_sym_SLASH, @@ -231798,7 +232001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 28, + ACTIONS(1791), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231806,9 +232009,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -231818,7 +232018,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -231827,7 +232026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, sym_identifier, - [47503] = 16, + [47793] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -231848,16 +232047,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - STATE(2267), 2, + STATE(2270), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 9, + ACTIONS(1783), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -231867,7 +232066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1767), 27, + ACTIONS(1781), 27, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -231895,32 +232094,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47587] = 15, + [47877] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, + ACTIONS(4836), 1, anon_sym_LPAREN, - ACTIONS(4830), 1, + ACTIONS(4838), 1, anon_sym_LBRACK, - ACTIONS(4832), 1, + ACTIONS(4840), 1, anon_sym_QMARK, - ACTIONS(4834), 1, + ACTIONS(4842), 1, anon_sym_BANG, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, + ACTIONS(4864), 1, + anon_sym_as, + ACTIONS(4872), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4874), 1, + anon_sym_DASH_DASH, + ACTIONS(4882), 1, + anon_sym_or, + ACTIONS(4930), 1, + anon_sym_AMP_AMP, + ACTIONS(4932), 1, + anon_sym_PIPE_PIPE, + STATE(2234), 1, sym_or_block, - STATE(4133), 1, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, sym_type_parameters, - ACTIONS(4826), 2, + ACTIONS(4834), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4836), 2, + ACTIONS(4844), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2268), 2, + ACTIONS(4884), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4934), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2271), 2, sym_line_comment, sym_block_comment, ACTIONS(4924), 4, @@ -231928,6 +232145,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + ACTIONS(4928), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3732), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, ACTIONS(4926), 8, anon_sym_STAR, anon_sym_SLASH, @@ -231937,76 +232170,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - [47669] = 6, - ACTIONS(497), 1, + [47977] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2674), 1, - anon_sym_LBRACK, - ACTIONS(1987), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2269), 2, + STATE(2272), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 44, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(1889), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1887), 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_pub, - anon_sym_mut, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -232014,55 +232219,42 @@ 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, - sym_identifier, - anon_sym_AT_LBRACK, - [47733] = 17, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [48039] = 14, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, + ACTIONS(4836), 1, anon_sym_LPAREN, - ACTIONS(4830), 1, + ACTIONS(4838), 1, anon_sym_LBRACK, - ACTIONS(4832), 1, + ACTIONS(4840), 1, anon_sym_QMARK, - ACTIONS(4834), 1, + ACTIONS(4842), 1, anon_sym_BANG, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, + STATE(2234), 1, sym_or_block, - STATE(4133), 1, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, sym_type_parameters, - ACTIONS(4826), 2, + ACTIONS(4834), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4836), 2, + ACTIONS(4844), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4934), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2270), 2, + STATE(2273), 2, sym_line_comment, sym_block_comment, - ACTIONS(4924), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4928), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, ACTIONS(4926), 8, anon_sym_STAR, anon_sym_SLASH, @@ -232072,7 +232264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 16, + ACTIONS(1791), 28, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232080,46 +232272,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, - [47819] = 18, + [48119] = 17, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, + ACTIONS(4836), 1, anon_sym_LPAREN, - ACTIONS(4830), 1, + ACTIONS(4838), 1, anon_sym_LBRACK, - ACTIONS(4832), 1, + ACTIONS(4840), 1, anon_sym_QMARK, - ACTIONS(4834), 1, + ACTIONS(4842), 1, anon_sym_BANG, - ACTIONS(4930), 1, - anon_sym_AMP_AMP, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, + STATE(2234), 1, sym_or_block, - STATE(4133), 1, + STATE(2236), 1, + sym_argument_list, + STATE(4213), 1, sym_type_parameters, - ACTIONS(4826), 2, + ACTIONS(4834), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4836), 2, + ACTIONS(4844), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, ACTIONS(4934), 2, anon_sym_in, anon_sym_BANGin, - STATE(2271), 2, + STATE(2274), 2, sym_line_comment, sym_block_comment, ACTIONS(4924), 4, @@ -232143,7 +232345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 15, + ACTIONS(1791), 16, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232154,387 +232356,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, sym_identifier, - [47907] = 24, + [48205] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, - anon_sym_LPAREN, - ACTIONS(4830), 1, + ACTIONS(2713), 1, anon_sym_LBRACK, - ACTIONS(4832), 1, - anon_sym_QMARK, - ACTIONS(4834), 1, - anon_sym_BANG, - ACTIONS(4854), 1, - anon_sym_as, - ACTIONS(4862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4864), 1, - anon_sym_DASH_DASH, - ACTIONS(4872), 1, - anon_sym_or, - ACTIONS(4930), 1, - anon_sym_AMP_AMP, - ACTIONS(4932), 1, - anon_sym_PIPE_PIPE, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, - sym_or_block, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(4826), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4836), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4874), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4934), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2272), 2, + ACTIONS(2029), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2275), 2, sym_line_comment, sym_block_comment, - ACTIONS(4924), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4928), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3694), 8, + ACTIONS(2715), 44, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(4926), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [48007] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2273), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4902), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4900), 25, anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [48069] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4828), 1, - anon_sym_LPAREN, - ACTIONS(4830), 1, - anon_sym_LBRACK, - ACTIONS(4832), 1, - anon_sym_QMARK, - ACTIONS(4834), 1, - anon_sym_BANG, - ACTIONS(4854), 1, anon_sym_as, - ACTIONS(4862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4864), 1, - anon_sym_DASH_DASH, - ACTIONS(4872), 1, - anon_sym_or, - ACTIONS(4930), 1, - anon_sym_AMP_AMP, - ACTIONS(4932), 1, - anon_sym_PIPE_PIPE, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, - sym_or_block, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(4826), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4836), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4874), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4934), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2274), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4924), 4, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4928), 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(1773), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(4926), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [48169] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4828), 1, - anon_sym_LPAREN, - ACTIONS(4830), 1, - anon_sym_LBRACK, - ACTIONS(4832), 1, - anon_sym_QMARK, - ACTIONS(4834), 1, - anon_sym_BANG, - ACTIONS(4854), 1, - anon_sym_as, - ACTIONS(4862), 1, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, - ACTIONS(4864), 1, anon_sym_DASH_DASH, - ACTIONS(4872), 1, - anon_sym_or, - ACTIONS(4930), 1, - anon_sym_AMP_AMP, - ACTIONS(4932), 1, - anon_sym_PIPE_PIPE, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, - sym_or_block, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(4826), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4836), 2, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4874), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4934), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2275), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4924), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, - ACTIONS(4928), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1795), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(4926), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [48269] = 27, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4828), 1, - anon_sym_LPAREN, - ACTIONS(4830), 1, - anon_sym_LBRACK, - ACTIONS(4832), 1, - anon_sym_QMARK, - ACTIONS(4834), 1, - anon_sym_BANG, - ACTIONS(4836), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4854), 1, - anon_sym_as, - ACTIONS(4862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4864), 1, - anon_sym_DASH_DASH, - ACTIONS(4866), 1, - anon_sym_LBRACK2, - ACTIONS(4868), 1, anon_sym_AMP_AMP, - ACTIONS(4870), 1, anon_sym_PIPE_PIPE, - ACTIONS(4872), 1, anon_sym_or, - ACTIONS(4878), 1, - anon_sym_AT_LBRACK, - STATE(2174), 1, - sym_argument_list, - STATE(2176), 1, - sym_or_block, - STATE(3549), 1, - sym_attribute, - STATE(4133), 1, - sym_type_parameters, - ACTIONS(4826), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4874), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(4876), 2, anon_sym_in, anon_sym_BANGin, - STATE(2276), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4856), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4952), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, sym_identifier, - ACTIONS(4860), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4858), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [48374] = 7, + anon_sym_AT_LBRACK, + [48269] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4954), 1, + ACTIONS(4956), 1, anon_sym_else, - STATE(2385), 1, + STATE(2365), 1, sym_else_branch, - STATE(2277), 2, + STATE(2276), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 13, + ACTIONS(1805), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -232548,7 +232446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1797), 31, + ACTIONS(1803), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -232580,19 +232478,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48439] = 7, + [48334] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4954), 1, + ACTIONS(4956), 1, anon_sym_else, - STATE(2386), 1, + STATE(2296), 1, sym_else_branch, - STATE(2278), 2, + STATE(2277), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 13, + ACTIONS(1799), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -232606,7 +232504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1803), 31, + ACTIONS(1797), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -232638,17 +232536,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, + [48399] = 27, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4836), 1, + anon_sym_LPAREN, + ACTIONS(4838), 1, + anon_sym_LBRACK, + ACTIONS(4840), 1, + anon_sym_QMARK, + ACTIONS(4842), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4864), 1, + anon_sym_as, + ACTIONS(4872), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4874), 1, + anon_sym_DASH_DASH, + ACTIONS(4876), 1, + anon_sym_LBRACK2, + ACTIONS(4878), 1, + anon_sym_AMP_AMP, + ACTIONS(4880), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4882), 1, + anon_sym_or, + ACTIONS(4888), 1, + anon_sym_AT_LBRACK, + STATE(2234), 1, + sym_or_block, + STATE(2236), 1, + sym_argument_list, + STATE(3566), 1, + sym_attribute, + STATE(4213), 1, + sym_type_parameters, + ACTIONS(4834), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4884), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4886), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2278), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4866), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4958), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4870), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4868), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, [48504] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(4960), 1, anon_sym_DOLLARelse, STATE(2279), 2, sym_line_comment, sym_block_comment, - ACTIONS(1913), 13, + ACTIONS(2079), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -232662,7 +232638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1911), 31, + ACTIONS(2077), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -232694,28 +232670,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48566] = 6, + [48566] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1807), 1, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(1987), 1, - anon_sym_LBRACE, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + STATE(2553), 1, + sym_or_block, + STATE(2554), 1, + sym_argument_list, + STATE(4167), 1, + sym_type_parameters, + ACTIONS(4962), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4972), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, STATE(2280), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 43, + ACTIONS(1769), 34, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -232728,12 +232718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -232743,49 +232729,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - [48628] = 13, + [48642] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4962), 1, + ACTIONS(2029), 1, + anon_sym_LBRACE, + ACTIONS(2713), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, - anon_sym_QMARK, - ACTIONS(4966), 1, - anon_sym_BANG, - STATE(2569), 1, - sym_or_block, - STATE(2570), 1, - sym_argument_list, - STATE(4070), 1, - sym_type_parameters, - ACTIONS(4958), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4968), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, STATE(2281), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 34, + ACTIONS(2715), 43, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -232798,8 +232767,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_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -232809,153 +232782,87 @@ 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, - [48704] = 26, + sym_identifier, + [48704] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4962), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4966), 1, - anon_sym_BANG, ACTIONS(4970), 1, - anon_sym_as, - ACTIONS(4972), 1, - anon_sym_COMMA, - ACTIONS(4980), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4982), 1, - anon_sym_DASH_DASH, - ACTIONS(4984), 1, - anon_sym_AMP_AMP, - ACTIONS(4986), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4988), 1, - anon_sym_or, - STATE(2569), 1, + anon_sym_BANG, + STATE(2553), 1, sym_or_block, - STATE(2570), 1, + STATE(2554), 1, sym_argument_list, - STATE(3437), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4070), 1, + STATE(4167), 1, sym_type_parameters, - ACTIONS(4958), 2, + ACTIONS(4962), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4968), 2, + ACTIONS(4972), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4990), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4992), 2, - anon_sym_in, - anon_sym_BANGin, STATE(2282), 2, sym_line_comment, sym_block_comment, - ACTIONS(1757), 4, + ACTIONS(1791), 34, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4974), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4978), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4976), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [48806] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2366), 1, - sym_type_parameters, - STATE(2283), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1881), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1879), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48868] = 6, + [48780] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4994), 1, + ACTIONS(4974), 1, anon_sym_DOLLARelse, - STATE(2284), 2, + STATE(2283), 2, sym_line_comment, sym_block_comment, - ACTIONS(1843), 13, + ACTIONS(2041), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -232969,7 +232876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1841), 31, + ACTIONS(2039), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233001,98 +232908,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48930] = 13, - ACTIONS(497), 1, + [48842] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4962), 1, - anon_sym_LBRACK, - ACTIONS(4964), 1, - anon_sym_QMARK, - ACTIONS(4966), 1, - anon_sym_BANG, - STATE(2569), 1, - sym_or_block, - STATE(2570), 1, - sym_argument_list, - STATE(4070), 1, + STATE(2409), 1, sym_type_parameters, - ACTIONS(4958), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4968), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2285), 2, + STATE(2284), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 34, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1899), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1897), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [49006] = 13, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [48904] = 13, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4962), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4966), 1, + ACTIONS(4970), 1, anon_sym_BANG, - STATE(2569), 1, + STATE(2553), 1, sym_or_block, - STATE(2570), 1, + STATE(2554), 1, sym_argument_list, - STATE(4070), 1, + STATE(4167), 1, sym_type_parameters, - ACTIONS(4958), 2, + ACTIONS(4962), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4968), 2, + ACTIONS(4972), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2286), 2, + STATE(2285), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 34, + ACTIONS(1783), 34, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -233127,19 +233027,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [49082] = 6, + [48980] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1987), 1, - anon_sym_LBRACE, - ACTIONS(2674), 1, + ACTIONS(1807), 1, anon_sym_LBRACK, - STATE(2287), 2, + ACTIONS(2029), 1, + anon_sym_LBRACE, + STATE(2286), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 43, + ACTIONS(1809), 43, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -233183,150 +233083,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, sym_identifier, - [49144] = 32, - ACTIONS(3), 1, + [49042] = 26, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3484), 1, - anon_sym_COLON_EQ, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(4976), 1, anon_sym_as, - ACTIONS(4998), 1, - anon_sym_LBRACE, - ACTIONS(5000), 1, + ACTIONS(4978), 1, anon_sym_COMMA, - ACTIONS(5012), 1, + ACTIONS(4986), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(4988), 1, anon_sym_DASH_DASH, - ACTIONS(5016), 1, - anon_sym_CARET, - ACTIONS(5018), 1, + ACTIONS(4990), 1, anon_sym_AMP_AMP, - ACTIONS(5020), 1, + ACTIONS(4992), 1, anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, + ACTIONS(4994), 1, anon_sym_or, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, + STATE(2553), 1, sym_or_block, - STATE(2574), 1, - sym_block, - STATE(3809), 1, + STATE(2554), 1, + sym_argument_list, + STATE(3532), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4251), 1, + STATE(4167), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4962), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5008), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5024), 2, + ACTIONS(4972), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5026), 2, + ACTIONS(4998), 2, anon_sym_in, anon_sym_BANGin, - STATE(2288), 2, + STATE(2287), 2, sym_line_comment, sym_block_comment, - ACTIONS(5002), 3, + ACTIONS(1721), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(4980), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5006), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5010), 4, + anon_sym_CARET, + ACTIONS(4984), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5004), 5, + ACTIONS(4982), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [49257] = 5, - ACTIONS(3), 1, + [49144] = 14, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2289), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1987), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, anon_sym_QMARK, + ACTIONS(4970), 1, anon_sym_BANG, + STATE(2553), 1, + sym_or_block, + STATE(2554), 1, + sym_argument_list, + STATE(4167), 1, + sym_type_parameters, + ACTIONS(4962), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4972), 2, anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2288), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5000), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1989), 31, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1791), 25, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49316] = 5, + [49221] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2290), 2, + STATE(2289), 2, sym_line_comment, sym_block_comment, - ACTIONS(3062), 13, + ACTIONS(2257), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233340,7 +233244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3060), 31, + ACTIONS(2255), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233372,15 +233276,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49375] = 5, + [49280] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2291), 2, + STATE(2290), 2, sym_line_comment, sym_block_comment, - ACTIONS(2455), 13, + ACTIONS(2427), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233394,7 +233298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2453), 31, + ACTIONS(2425), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233426,96 +233330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49434] = 32, + [49339] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3484), 1, - anon_sym_COLON_EQ, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5016), 1, - anon_sym_CARET, - ACTIONS(5018), 1, - anon_sym_AMP_AMP, - ACTIONS(5020), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5028), 1, - anon_sym_LBRACE, - STATE(1119), 1, - sym_block, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(3809), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5008), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5026), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2292), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5002), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5006), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5010), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5004), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [49547] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2293), 2, + STATE(2291), 2, sym_line_comment, sym_block_comment, - ACTIONS(2443), 13, + ACTIONS(2189), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233529,7 +233352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2441), 31, + ACTIONS(2187), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233561,15 +233384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49606] = 5, + [49398] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2294), 2, + STATE(2292), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 13, + ACTIONS(1899), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233583,7 +233406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2770), 31, + ACTIONS(1897), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233615,17 +233438,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49665] = 6, + [49457] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5030), 1, - anon_sym_BANG, - STATE(2295), 2, + STATE(2293), 2, sym_line_comment, sym_block_comment, - ACTIONS(2542), 12, + ACTIONS(2249), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233635,10 +233456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2540), 31, + ACTIONS(2247), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233670,15 +233492,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49726] = 5, + [49516] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2296), 2, + STATE(2294), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 13, + ACTIONS(2253), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233692,7 +233514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2473), 31, + ACTIONS(2251), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233724,12 +233546,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49785] = 32, + [49575] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3484), 1, + ACTIONS(3488), 1, anon_sym_COLON_EQ, ACTIONS(4938), 1, anon_sym_LPAREN, @@ -233743,77 +233565,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5000), 1, + ACTIONS(5004), 1, + anon_sym_LBRACE, + ACTIONS(5006), 1, anon_sym_COMMA, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5016), 1, + ACTIONS(5022), 1, anon_sym_CARET, - ACTIONS(5018), 1, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(5020), 1, + ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5032), 1, - anon_sym_LBRACE, - STATE(1855), 1, + STATE(1127), 1, sym_block, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(3809), 1, + STATE(3880), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5008), 2, + ACTIONS(5014), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5026), 2, + ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - STATE(2297), 2, + STATE(2295), 2, sym_line_comment, sym_block_comment, - ACTIONS(5002), 3, + ACTIONS(5008), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5006), 3, + ACTIONS(5012), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5010), 4, + ACTIONS(5016), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5004), 5, + ACTIONS(5010), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [49898] = 5, + [49688] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2298), 2, + STATE(2296), 2, sym_line_comment, sym_block_comment, - ACTIONS(2307), 13, + ACTIONS(2457), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233827,7 +233649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2305), 31, + ACTIONS(2455), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233859,15 +233681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49957] = 5, + [49747] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2299), 2, + STATE(2297), 2, sym_line_comment, sym_block_comment, - ACTIONS(2293), 13, + ACTIONS(2261), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233881,7 +233703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2291), 31, + ACTIONS(2259), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233913,15 +233735,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50016] = 5, + [49806] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2300), 2, + STATE(2298), 2, sym_line_comment, sym_block_comment, - ACTIONS(2125), 13, + ACTIONS(2029), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233935,7 +233757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2123), 31, + ACTIONS(2031), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233967,15 +233789,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50075] = 5, + [49865] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2301), 2, + STATE(2299), 2, sym_line_comment, sym_block_comment, - ACTIONS(2149), 13, + ACTIONS(2221), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233989,7 +233811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2147), 31, + ACTIONS(2219), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234021,15 +233843,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50134] = 5, + [49924] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2302), 2, + STATE(2300), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 13, + ACTIONS(2245), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234043,7 +233865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2113), 31, + ACTIONS(2243), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234075,160 +233897,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50193] = 32, - ACTIONS(3), 1, + [49983] = 24, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3484), 1, - anon_sym_COLON_EQ, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(4976), 1, anon_sym_as, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5012), 1, + ACTIONS(4986), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(4988), 1, anon_sym_DASH_DASH, - ACTIONS(5016), 1, - anon_sym_CARET, - ACTIONS(5018), 1, + ACTIONS(4990), 1, anon_sym_AMP_AMP, - ACTIONS(5020), 1, + ACTIONS(4992), 1, anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, + ACTIONS(4994), 1, anon_sym_or, - ACTIONS(5034), 1, - anon_sym_LBRACE, - STATE(979), 1, - sym_block, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(3809), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5008), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5026), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2303), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5002), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5006), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5010), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5004), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [50306] = 15, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4962), 1, - anon_sym_LBRACK, - ACTIONS(4964), 1, - anon_sym_QMARK, - ACTIONS(4966), 1, - anon_sym_BANG, - STATE(2569), 1, + STATE(2553), 1, sym_or_block, - STATE(2570), 1, + STATE(2554), 1, sym_argument_list, - STATE(4070), 1, + STATE(4167), 1, sym_type_parameters, - ACTIONS(4958), 2, + ACTIONS(4962), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4968), 2, + ACTIONS(4972), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2304), 2, + ACTIONS(4998), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(5034), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2301), 2, sym_line_comment, sym_block_comment, - ACTIONS(5036), 4, + ACTIONS(4980), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(5038), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1781), 21, + ACTIONS(1773), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(4984), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - 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, - [50385] = 5, + ACTIONS(4982), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [50080] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2305), 2, + STATE(2302), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 13, + ACTIONS(2471), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234242,7 +233992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2766), 31, + ACTIONS(2469), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234274,12 +234024,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50444] = 32, + [50139] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3484), 1, + ACTIONS(3488), 1, anon_sym_COLON_EQ, ACTIONS(4938), 1, anon_sym_LPAREN, @@ -234293,195 +234043,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5000), 1, + ACTIONS(5006), 1, anon_sym_COMMA, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5016), 1, + ACTIONS(5022), 1, anon_sym_CARET, - ACTIONS(5018), 1, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(5020), 1, + ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5040), 1, + ACTIONS(5036), 1, anon_sym_LBRACE, - STATE(2298), 1, + STATE(1822), 1, + sym_block, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(2758), 1, - sym_block, - STATE(3809), 1, + STATE(3880), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5008), 2, + ACTIONS(5014), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5026), 2, + ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - STATE(2306), 2, + STATE(2303), 2, sym_line_comment, sym_block_comment, - ACTIONS(5002), 3, + ACTIONS(5008), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5006), 3, + ACTIONS(5012), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5010), 4, + ACTIONS(5016), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5004), 5, + ACTIONS(5010), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [50557] = 32, + [50252] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3484), 1, - anon_sym_COLON_EQ, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + STATE(2304), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2779), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2777), 31, + anon_sym_SEMI, anon_sym_as, - ACTIONS(5000), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5012), 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(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5016), 1, anon_sym_CARET, - ACTIONS(5018), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5020), 1, anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5042), 1, - anon_sym_LBRACE, - STATE(1261), 1, - sym_block, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, + 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, + [50311] = 24, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4976), 1, + anon_sym_as, + ACTIONS(4986), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4988), 1, + anon_sym_DASH_DASH, + ACTIONS(4990), 1, + anon_sym_AMP_AMP, + ACTIONS(4992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4994), 1, + anon_sym_or, + STATE(2553), 1, sym_or_block, - STATE(3809), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4251), 1, + STATE(2554), 1, + sym_argument_list, + STATE(4167), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4962), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5008), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5024), 2, + ACTIONS(4972), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5026), 2, + ACTIONS(4998), 2, anon_sym_in, anon_sym_BANGin, - STATE(2307), 2, + STATE(2305), 2, sym_line_comment, sym_block_comment, - ACTIONS(5002), 3, + ACTIONS(4980), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5006), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5010), 4, + anon_sym_CARET, + ACTIONS(1759), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4984), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5004), 5, + ACTIONS(4982), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [50670] = 18, + [50408] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4962), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4966), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(5046), 1, - anon_sym_AMP_AMP, - STATE(2569), 1, + STATE(2553), 1, sym_or_block, - STATE(2570), 1, + STATE(2554), 1, sym_argument_list, - STATE(4070), 1, + STATE(4167), 1, sym_type_parameters, - ACTIONS(4958), 2, + ACTIONS(4962), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4968), 2, + ACTIONS(4972), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5048), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2308), 2, + STATE(2306), 2, sym_line_comment, sym_block_comment, - ACTIONS(5036), 4, + ACTIONS(5038), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(5044), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5038), 8, + ACTIONS(5000), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -234490,63 +234274,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 12, + ACTIONS(1791), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [50487] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2307), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2269), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2267), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_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, - [50755] = 17, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [50546] = 17, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4962), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4966), 1, + ACTIONS(4970), 1, anon_sym_BANG, - STATE(2569), 1, + STATE(2553), 1, sym_or_block, - STATE(2570), 1, + STATE(2554), 1, sym_argument_list, - STATE(4070), 1, + STATE(4167), 1, sym_type_parameters, - ACTIONS(4958), 2, + ACTIONS(4962), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4968), 2, + ACTIONS(4972), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5048), 2, + ACTIONS(5042), 2, anon_sym_in, anon_sym_BANGin, - STATE(2309), 2, + STATE(2308), 2, sym_line_comment, sym_block_comment, - ACTIONS(5036), 4, + ACTIONS(5038), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(5044), 6, + ACTIONS(5040), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5038), 8, + ACTIONS(5000), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -234555,7 +234402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 13, + ACTIONS(1791), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -234569,40 +234416,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - [50838] = 15, + [50629] = 18, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4962), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4966), 1, + ACTIONS(4970), 1, anon_sym_BANG, - STATE(2569), 1, + ACTIONS(5044), 1, + anon_sym_AMP_AMP, + STATE(2553), 1, sym_or_block, - STATE(2570), 1, + STATE(2554), 1, sym_argument_list, - STATE(4070), 1, + STATE(4167), 1, sym_type_parameters, - ACTIONS(4958), 2, + ACTIONS(4962), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4968), 2, + ACTIONS(4972), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2310), 2, + ACTIONS(5042), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2309), 2, sym_line_comment, sym_block_comment, - ACTIONS(5036), 4, + ACTIONS(5038), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(5038), 8, + ACTIONS(5040), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5000), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -234611,57 +234470,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 21, + ACTIONS(1791), 12, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [50917] = 14, + [50714] = 15, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4962), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4966), 1, + ACTIONS(4970), 1, anon_sym_BANG, - STATE(2569), 1, + STATE(2553), 1, sym_or_block, - STATE(2570), 1, + STATE(2554), 1, sym_argument_list, - STATE(4070), 1, + STATE(4167), 1, sym_type_parameters, - ACTIONS(4958), 2, + ACTIONS(4962), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4968), 2, + ACTIONS(4972), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2311), 2, + STATE(2310), 2, sym_line_comment, sym_block_comment, - ACTIONS(5038), 8, + ACTIONS(5038), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5000), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -234670,33 +234525,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 25, + ACTIONS(1787), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [50793] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2311), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2213), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2211), 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, - [50994] = 5, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [50852] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -234704,7 +234609,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2312), 2, sym_line_comment, sym_block_comment, - ACTIONS(2459), 13, + ACTIONS(2201), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234718,7 +234623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2457), 31, + ACTIONS(2199), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234750,7 +234655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51053] = 5, + [50911] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -234758,7 +234663,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2313), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 13, + ACTIONS(2843), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234772,7 +234677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2536), 31, + ACTIONS(2841), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234804,15 +234709,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51112] = 32, + [50970] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3484), 1, + ACTIONS(3488), 1, anon_sym_COLON_EQ, - ACTIONS(4703), 1, - anon_sym_LBRACE, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, @@ -234825,140 +234728,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5000), 1, + ACTIONS(5006), 1, anon_sym_COMMA, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5016), 1, + ACTIONS(5022), 1, anon_sym_CARET, - ACTIONS(5018), 1, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(5020), 1, + ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - STATE(1624), 1, + ACTIONS(5046), 1, + anon_sym_LBRACE, + STATE(968), 1, sym_block, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(3809), 1, + STATE(3880), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5008), 2, + ACTIONS(5014), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5026), 2, + ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, STATE(2314), 2, sym_line_comment, sym_block_comment, - ACTIONS(5002), 3, + ACTIONS(5008), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5006), 3, + ACTIONS(5012), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5010), 4, + ACTIONS(5016), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5004), 5, + ACTIONS(5010), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [51225] = 24, + [51083] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4962), 1, + ACTIONS(1797), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, - anon_sym_QMARK, - ACTIONS(4966), 1, - anon_sym_BANG, - ACTIONS(4970), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4982), 1, - anon_sym_DASH_DASH, - ACTIONS(4984), 1, - anon_sym_AMP_AMP, - ACTIONS(4986), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4988), 1, - anon_sym_or, - STATE(2569), 1, - sym_or_block, - STATE(2570), 1, - sym_argument_list, - STATE(4070), 1, - sym_type_parameters, - ACTIONS(4958), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4968), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4990), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4992), 2, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(5048), 1, + anon_sym_else, + STATE(2487), 1, + sym_else_branch, STATE(2315), 2, sym_line_comment, sym_block_comment, - ACTIONS(4974), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1773), 5, + ACTIONS(1799), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4978), 6, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4976), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [51322] = 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, + [51146] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -234966,7 +234854,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2316), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 13, + ACTIONS(2127), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234980,7 +234868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2776), 31, + ACTIONS(2125), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235012,7 +234900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51381] = 5, + [51205] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -235020,7 +234908,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2317), 2, sym_line_comment, sym_block_comment, - ACTIONS(2732), 13, + ACTIONS(2105), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235034,7 +234922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2730), 31, + ACTIONS(2103), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235066,88 +234954,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51440] = 24, + [51264] = 7, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, + ACTIONS(1803), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, + anon_sym_else, + STATE(2486), 1, + sym_else_branch, + STATE(2318), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1805), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [51327] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3488), 1, + anon_sym_COLON_EQ, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4962), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4966), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4970), 1, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(5006), 1, + anon_sym_COMMA, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(4982), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(4984), 1, + ACTIONS(5022), 1, + anon_sym_CARET, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(4986), 1, + ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - ACTIONS(4988), 1, + ACTIONS(5028), 1, anon_sym_or, - STATE(2569), 1, - sym_or_block, - STATE(2570), 1, + ACTIONS(5050), 1, + anon_sym_LBRACE, + STATE(2351), 1, sym_argument_list, - STATE(4070), 1, + STATE(2359), 1, + sym_or_block, + STATE(2455), 1, + sym_block, + STATE(3880), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(4958), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4968), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4990), 2, + ACTIONS(5014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4992), 2, + ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - STATE(2318), 2, + STATE(2319), 2, sym_line_comment, sym_block_comment, - ACTIONS(4974), 4, + ACTIONS(5008), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1795), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4978), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5012), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5016), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4976), 8, + ACTIONS(5010), 5, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [51537] = 5, + [51440] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2319), 2, + STATE(2320), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 13, + ACTIONS(2859), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235161,7 +235113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2117), 31, + ACTIONS(2857), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235193,15 +235145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51596] = 5, + [51499] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2320), 2, + STATE(2321), 2, sym_line_comment, sym_block_comment, - ACTIONS(2756), 13, + ACTIONS(2805), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235215,7 +235167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2754), 31, + ACTIONS(2803), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235247,15 +235199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51655] = 5, + [51558] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2321), 2, + STATE(2322), 2, sym_line_comment, sym_block_comment, - ACTIONS(3058), 13, + ACTIONS(2877), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235269,7 +235221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3056), 31, + ACTIONS(2875), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235301,12 +235253,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51714] = 32, + [51617] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3484), 1, + ACTIONS(3488), 1, anon_sym_COLON_EQ, ACTIONS(4938), 1, anon_sym_LPAREN, @@ -235320,123 +235272,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5000), 1, + ACTIONS(5006), 1, anon_sym_COMMA, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5016), 1, + ACTIONS(5022), 1, anon_sym_CARET, - ACTIONS(5018), 1, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(5020), 1, + ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5050), 1, + ACTIONS(5052), 1, anon_sym_LBRACE, - STATE(2298), 1, + STATE(2315), 1, + sym_block, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(2357), 1, - sym_block, - STATE(3809), 1, + STATE(3880), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5008), 2, + ACTIONS(5014), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5026), 2, + ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - STATE(2322), 2, + STATE(2323), 2, sym_line_comment, sym_block_comment, - ACTIONS(5002), 3, + ACTIONS(5008), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5006), 3, + ACTIONS(5012), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5010), 4, + ACTIONS(5016), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5004), 5, + ACTIONS(5010), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [51827] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2323), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2672), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2670), 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, - [51886] = 5, + [51730] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -235444,7 +235342,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2324), 2, sym_line_comment, sym_block_comment, - ACTIONS(2736), 13, + ACTIONS(2093), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235458,7 +235356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2734), 31, + ACTIONS(2091), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235490,7 +235388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51945] = 5, + [51789] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -235498,7 +235396,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2325), 2, sym_line_comment, sym_block_comment, - ACTIONS(2668), 13, + ACTIONS(2725), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235512,7 +235410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2666), 31, + ACTIONS(2723), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235544,96 +235442,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52004] = 32, + [51848] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3484), 1, - anon_sym_COLON_EQ, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + STATE(2326), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2851), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2849), 31, + anon_sym_SEMI, anon_sym_as, - ACTIONS(5000), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5012), 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(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5016), 1, anon_sym_CARET, - ACTIONS(5018), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5020), 1, anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, anon_sym_or, - ACTIONS(5052), 1, - anon_sym_LBRACE, - STATE(229), 1, - sym_block, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(3809), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5008), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5024), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5026), 2, anon_sym_in, anon_sym_BANGin, - STATE(2326), 2, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [51907] = 14, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + STATE(2553), 1, + sym_or_block, + STATE(2554), 1, + sym_argument_list, + STATE(4167), 1, + sym_type_parameters, + ACTIONS(4962), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4972), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2327), 2, sym_line_comment, sym_block_comment, - ACTIONS(5002), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5006), 3, + ACTIONS(4982), 8, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5010), 4, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1791), 25, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5004), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [52117] = 5, + 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, + [51984] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2327), 2, + STATE(2328), 2, sym_line_comment, sym_block_comment, - ACTIONS(2750), 13, + ACTIONS(2273), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235647,7 +235581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2748), 31, + ACTIONS(2271), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235679,15 +235613,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52176] = 5, + [52043] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2328), 2, + STATE(2329), 2, sym_line_comment, sym_block_comment, - ACTIONS(2740), 13, + ACTIONS(2771), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235701,7 +235635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2738), 31, + ACTIONS(2769), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235733,15 +235667,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52235] = 5, + [52102] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2329), 2, + STATE(2330), 2, sym_line_comment, sym_block_comment, - ACTIONS(2886), 13, + ACTIONS(2729), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235755,7 +235689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2884), 31, + ACTIONS(2727), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235787,15 +235721,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52294] = 5, + [52161] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2330), 2, + STATE(2331), 2, sym_line_comment, sym_block_comment, - ACTIONS(2906), 13, + ACTIONS(2737), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235809,7 +235743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2904), 31, + ACTIONS(2735), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235841,15 +235775,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52353] = 5, + [52220] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2331), 2, + STATE(2332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2910), 13, + ACTIONS(2745), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235863,7 +235797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2908), 31, + ACTIONS(2743), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235895,15 +235829,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52412] = 5, + [52279] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2332), 2, + STATE(2333), 2, sym_line_comment, sym_block_comment, - ACTIONS(2680), 13, + ACTIONS(2767), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235917,7 +235851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2678), 31, + ACTIONS(2765), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235949,15 +235883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52471] = 5, + [52338] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2333), 2, + STATE(2334), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 13, + ACTIONS(2749), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235971,7 +235905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3048), 31, + ACTIONS(2747), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236003,143 +235937,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52530] = 25, - ACTIONS(497), 1, + [52397] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, + ACTIONS(3488), 1, + anon_sym_COLON_EQ, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4962), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4966), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4970), 1, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(5006), 1, + anon_sym_COMMA, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(4982), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(4984), 1, + ACTIONS(5022), 1, + anon_sym_CARET, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(4986), 1, + ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - ACTIONS(4988), 1, + ACTIONS(5028), 1, anon_sym_or, ACTIONS(5054), 1, - anon_sym_COMMA, - STATE(2569), 1, - sym_or_block, - STATE(2570), 1, + anon_sym_LBRACE, + STATE(2277), 1, + sym_block, + STATE(2351), 1, sym_argument_list, - STATE(4070), 1, + STATE(2359), 1, + sym_or_block, + STATE(3880), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(4958), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4968), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4990), 2, + ACTIONS(5014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4992), 2, + ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - STATE(2334), 2, + STATE(2335), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4974), 4, + ACTIONS(5008), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4978), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5012), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5016), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4976), 8, + ACTIONS(5010), 5, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [52629] = 5, - ACTIONS(3), 1, + [52510] = 15, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2335), 2, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + STATE(2553), 1, + sym_or_block, + STATE(2554), 1, + sym_argument_list, + STATE(4167), 1, + sym_type_parameters, + ACTIONS(4962), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4972), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2336), 2, sym_line_comment, sym_block_comment, - ACTIONS(2788), 13, - anon_sym_DOT, + ACTIONS(4980), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4982), 8, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2786), 31, - anon_sym_SEMI, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1791), 21, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52688] = 5, + [52589] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2336), 2, + STATE(2337), 2, sym_line_comment, sym_block_comment, - ACTIONS(2684), 13, + ACTIONS(2097), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236153,7 +236104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2682), 31, + ACTIONS(2095), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236185,15 +236136,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52747] = 5, + [52648] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2337), 2, + STATE(2338), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 13, + ACTIONS(2801), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236207,7 +236158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2796), 31, + ACTIONS(2799), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236239,15 +236190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52806] = 5, + [52707] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2338), 2, + STATE(2339), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 13, + ACTIONS(2809), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236261,7 +236212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2800), 31, + ACTIONS(2807), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236293,15 +236244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52865] = 5, + [52766] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2339), 2, + STATE(2340), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 13, + ACTIONS(2813), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236315,7 +236266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2822), 31, + ACTIONS(2811), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236347,15 +236298,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52924] = 5, + [52825] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2340), 2, + STATE(2341), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 13, + ACTIONS(2817), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236369,7 +236320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2826), 31, + ACTIONS(2815), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236401,17 +236352,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52983] = 6, + [52884] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1891), 1, - anon_sym_DOT, - STATE(2341), 2, + STATE(2342), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 12, + ACTIONS(2855), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -236424,7 +236374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2473), 31, + ACTIONS(2853), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236456,15 +236406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53044] = 5, + [52943] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2342), 2, + STATE(2343), 2, sym_line_comment, sym_block_comment, - ACTIONS(2688), 13, + ACTIONS(3025), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236478,7 +236428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2686), 31, + ACTIONS(3023), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236510,69 +236460,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53103] = 5, + [53002] = 17, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1807), 1, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, anon_sym_LBRACK, - STATE(2343), 2, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + STATE(2553), 1, + sym_or_block, + STATE(2554), 1, + sym_argument_list, + STATE(4167), 1, + sym_type_parameters, + ACTIONS(4962), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4972), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4998), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2344), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(4980), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4984), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4982), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1791), 13, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [53162] = 5, + [53085] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2344), 2, + STATE(2345), 2, sym_line_comment, sym_block_comment, - ACTIONS(2692), 13, + ACTIONS(3029), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236586,7 +236548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2690), 31, + ACTIONS(3027), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236618,15 +236580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53221] = 5, + [53144] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2345), 2, + STATE(2346), 2, sym_line_comment, sym_block_comment, - ACTIONS(2744), 13, + ACTIONS(2155), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236640,7 +236602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2742), 31, + ACTIONS(2153), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236672,15 +236634,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53280] = 5, + [53203] = 18, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4990), 1, + anon_sym_AMP_AMP, + STATE(2553), 1, + sym_or_block, + STATE(2554), 1, + sym_argument_list, + STATE(4167), 1, + sym_type_parameters, + ACTIONS(4962), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4972), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4998), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2347), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4980), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4984), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4982), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1791), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [53288] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2346), 2, + STATE(2348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 13, + ACTIONS(2101), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236694,7 +236723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2834), 31, + ACTIONS(2099), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236726,15 +236755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53339] = 5, + [53347] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2347), 2, + STATE(2349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2532), 13, + ACTIONS(2159), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236748,7 +236777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2530), 31, + ACTIONS(2157), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236780,15 +236809,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53398] = 5, + [53406] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2348), 2, + ACTIONS(2137), 1, + anon_sym_COLON, + STATE(2350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2728), 13, + ACTIONS(2135), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(2139), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236796,19 +236833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2726), 31, - anon_sym_SEMI, + ACTIONS(2142), 26, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -236816,7 +236849,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -236833,16 +236865,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53457] = 5, + [53469] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2349), 2, + STATE(2351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2724), 13, + ACTIONS(2431), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236856,7 +236887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2722), 31, + ACTIONS(2429), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236888,15 +236919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53516] = 5, + [53528] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2350), 2, + STATE(2352), 2, sym_line_comment, sym_block_comment, - ACTIONS(2269), 13, + ACTIONS(3046), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236910,7 +236941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2267), 31, + ACTIONS(3044), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236942,15 +236973,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53575] = 5, + [53587] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2351), 2, + STATE(2353), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 13, + ACTIONS(2185), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236964,7 +236995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2189), 31, + ACTIONS(2183), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236996,147 +237027,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53634] = 32, - ACTIONS(3), 1, + [53646] = 15, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3484), 1, - anon_sym_COLON_EQ, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5016), 1, - anon_sym_CARET, - ACTIONS(5018), 1, - anon_sym_AMP_AMP, - ACTIONS(5020), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5056), 1, - anon_sym_LBRACE, - STATE(2125), 1, - sym_block, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, + STATE(2553), 1, sym_or_block, - STATE(3809), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4251), 1, + STATE(2554), 1, + sym_argument_list, + STATE(4167), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4962), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5008), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5026), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2352), 2, + ACTIONS(4972), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2354), 2, sym_line_comment, sym_block_comment, - ACTIONS(5002), 3, + ACTIONS(4980), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5006), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5010), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5004), 5, + anon_sym_CARET, + ACTIONS(4982), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [53747] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2353), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1889), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1887), 31, - anon_sym_SEMI, + ACTIONS(1787), 21, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53806] = 32, + [53725] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3484), 1, + ACTIONS(3488), 1, anon_sym_COLON_EQ, ACTIONS(4938), 1, anon_sym_LPAREN, @@ -237150,77 +237110,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5000), 1, + ACTIONS(5006), 1, anon_sym_COMMA, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5016), 1, + ACTIONS(5022), 1, anon_sym_CARET, - ACTIONS(5018), 1, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(5020), 1, + ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5058), 1, + ACTIONS(5056), 1, anon_sym_LBRACE, - STATE(1832), 1, + STATE(229), 1, sym_block, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(3809), 1, + STATE(3880), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5008), 2, + ACTIONS(5014), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5026), 2, + ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - STATE(2354), 2, + STATE(2355), 2, sym_line_comment, sym_block_comment, - ACTIONS(5002), 3, + ACTIONS(5008), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5006), 3, + ACTIONS(5012), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5010), 4, + ACTIONS(5016), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5004), 5, + ACTIONS(5010), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [53919] = 5, + [53838] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2355), 2, + STATE(2356), 2, sym_line_comment, sym_block_comment, - ACTIONS(2890), 13, + ACTIONS(3052), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237234,7 +237194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2888), 31, + ACTIONS(3050), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237266,15 +237226,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53978] = 5, + [53897] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2356), 2, + STATE(2357), 2, sym_line_comment, sym_block_comment, - ACTIONS(2137), 13, + ACTIONS(2423), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237288,7 +237248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2135), 31, + ACTIONS(2421), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237320,183 +237280,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54037] = 7, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1797), 1, - anon_sym_LBRACK, - ACTIONS(5060), 1, - anon_sym_else, - STATE(2507), 1, - sym_else_branch, - STATE(2357), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1799), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [54100] = 7, + [53956] = 25, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1803), 1, - anon_sym_LBRACK, - ACTIONS(5060), 1, - anon_sym_else, - STATE(2506), 1, - sym_else_branch, - STATE(2358), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1805), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [54163] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4960), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4962), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4966), 1, - anon_sym_BANG, ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4976), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(4986), 1, anon_sym_PLUS_PLUS, - ACTIONS(4982), 1, + ACTIONS(4988), 1, anon_sym_DASH_DASH, - ACTIONS(4984), 1, + ACTIONS(4990), 1, anon_sym_AMP_AMP, - ACTIONS(4986), 1, + ACTIONS(4992), 1, anon_sym_PIPE_PIPE, - ACTIONS(4988), 1, + ACTIONS(4994), 1, anon_sym_or, - STATE(2569), 1, + ACTIONS(5058), 1, + anon_sym_COMMA, + STATE(2553), 1, sym_or_block, - STATE(2570), 1, + STATE(2554), 1, sym_argument_list, - STATE(4070), 1, + STATE(4167), 1, sym_type_parameters, - ACTIONS(4958), 2, + ACTIONS(4962), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4968), 2, + ACTIONS(4972), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4990), 2, + ACTIONS(4996), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4992), 2, + ACTIONS(4998), 2, anon_sym_in, anon_sym_BANGin, - STATE(2359), 2, + STATE(2358), 2, sym_line_comment, sym_block_comment, - ACTIONS(4974), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1649), 5, + ACTIONS(3528), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4978), 6, + ACTIONS(4980), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4984), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4976), 8, + ACTIONS(4982), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -237505,69 +237354,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [54260] = 5, + [54055] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2360), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2509), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2507), 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, - [54319] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2361), 2, + STATE(2359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2894), 13, + ACTIONS(2547), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237581,7 +237376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2892), 31, + ACTIONS(2545), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237613,15 +237408,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54378] = 5, + [54114] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2362), 2, + STATE(2360), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 13, + ACTIONS(2833), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237635,7 +237430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1879), 31, + ACTIONS(2831), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237667,96 +237462,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54437] = 32, - ACTIONS(3), 1, + [54173] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3484), 1, - anon_sym_COLON_EQ, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(1887), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5016), 1, - anon_sym_CARET, - ACTIONS(5018), 1, - anon_sym_AMP_AMP, - ACTIONS(5020), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5062), 1, - anon_sym_LBRACE, - STATE(1671), 1, - sym_block, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(3809), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5008), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5026), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2363), 2, + STATE(2361), 2, sym_line_comment, sym_block_comment, - ACTIONS(5002), 3, + ACTIONS(1889), 43, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5006), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5010), 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(5004), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [54550] = 5, + 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, + [54232] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2364), 2, + STATE(2362), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 13, + ACTIONS(2821), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237770,7 +237538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2447), 31, + ACTIONS(2819), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237802,15 +237570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54609] = 5, + [54291] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2365), 2, + STATE(2363), 2, sym_line_comment, sym_block_comment, - ACTIONS(2718), 13, + ACTIONS(2707), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237824,7 +237592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2716), 31, + ACTIONS(2705), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237856,15 +237624,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54668] = 5, + [54350] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2366), 2, + STATE(2364), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 13, + ACTIONS(2475), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237878,7 +237646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2838), 31, + ACTIONS(2473), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237910,15 +237678,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54727] = 5, + [54409] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2367), 2, + STATE(2365), 2, sym_line_comment, sym_block_comment, - ACTIONS(2898), 13, + ACTIONS(2463), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237932,7 +237700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2896), 31, + ACTIONS(2461), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237964,110 +237732,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54786] = 14, - ACTIONS(497), 1, + [54468] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4962), 1, - anon_sym_LBRACK, - ACTIONS(4964), 1, - anon_sym_QMARK, - ACTIONS(4966), 1, - anon_sym_BANG, - STATE(2569), 1, - sym_or_block, - STATE(2570), 1, - sym_argument_list, - STATE(4070), 1, - sym_type_parameters, - ACTIONS(4958), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4968), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2368), 2, + STATE(2366), 2, sym_line_comment, sym_block_comment, - ACTIONS(4976), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1765), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2775), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - 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, - [54863] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1811), 1, - anon_sym_LBRACK, - STATE(2369), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1813), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2773), 31, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_RPAREN, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -238075,21 +237780,21 @@ 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, - [54922] = 5, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [54527] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2370), 2, + STATE(2367), 2, sym_line_comment, sym_block_comment, - ACTIONS(2902), 13, + ACTIONS(2453), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238103,7 +237808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2900), 31, + ACTIONS(2451), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238135,15 +237840,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54981] = 5, + [54586] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2371), 2, + STATE(2368), 2, sym_line_comment, sym_block_comment, - ACTIONS(3068), 13, + ACTIONS(2439), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238157,7 +237862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3066), 31, + ACTIONS(2437), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238189,15 +237894,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55040] = 5, + [54645] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2372), 2, + STATE(2369), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 13, + ACTIONS(2719), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238211,7 +237916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2227), 31, + ACTIONS(2717), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238243,15 +237948,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55099] = 5, + [54704] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2373), 2, + STATE(2370), 2, sym_line_comment, sym_block_comment, - ACTIONS(2199), 13, + ACTIONS(2241), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238265,7 +237970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2197), 31, + ACTIONS(2239), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238297,88 +238002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55158] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4962), 1, - anon_sym_LBRACK, - ACTIONS(4964), 1, - anon_sym_QMARK, - ACTIONS(4966), 1, - anon_sym_BANG, - ACTIONS(4970), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4982), 1, - anon_sym_DASH_DASH, - ACTIONS(4984), 1, - anon_sym_AMP_AMP, - ACTIONS(4986), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4988), 1, - anon_sym_or, - STATE(2569), 1, - sym_or_block, - STATE(2570), 1, - sym_argument_list, - STATE(4070), 1, - sym_type_parameters, - ACTIONS(4958), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4968), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4992), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5064), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2374), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4974), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1789), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4978), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4976), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [55255] = 5, + [54763] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2375), 2, + STATE(2371), 2, sym_line_comment, sym_block_comment, - ACTIONS(2862), 13, + ACTIONS(2837), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238392,7 +238024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2860), 31, + ACTIONS(2835), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238424,15 +238056,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55314] = 5, + [54822] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2376), 2, + STATE(2372), 2, sym_line_comment, sym_block_comment, - ACTIONS(2143), 13, + ACTIONS(2233), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238446,7 +238078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2141), 31, + ACTIONS(2231), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238478,17 +238110,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55373] = 6, + [54881] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2515), 1, + ACTIONS(3039), 1, anon_sym_DOT, - STATE(2377), 2, + STATE(2373), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 12, + ACTIONS(2887), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -238501,7 +238133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 31, + ACTIONS(2885), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238533,15 +238165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55434] = 5, + [54942] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2378), 2, + STATE(2374), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 13, + ACTIONS(2847), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238555,7 +238187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2520), 31, + ACTIONS(2845), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238587,15 +238219,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55493] = 5, + [55001] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2379), 2, + STATE(2375), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 13, + ACTIONS(2891), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238609,7 +238241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 31, + ACTIONS(2889), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238641,79 +238273,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55552] = 15, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4962), 1, - anon_sym_LBRACK, - ACTIONS(4964), 1, - anon_sym_QMARK, - ACTIONS(4966), 1, - anon_sym_BANG, - STATE(2569), 1, - sym_or_block, - STATE(2570), 1, - sym_argument_list, - STATE(4070), 1, - sym_type_parameters, - ACTIONS(4958), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4968), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2380), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4974), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4976), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1765), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [55631] = 5, + [55060] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2381), 2, + STATE(2376), 2, sym_line_comment, sym_block_comment, - ACTIONS(2874), 13, + ACTIONS(2887), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238727,7 +238295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2872), 31, + ACTIONS(2885), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238759,69 +238327,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55690] = 5, - ACTIONS(3), 1, + [55119] = 24, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2382), 2, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4976), 1, + anon_sym_as, + ACTIONS(4986), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4988), 1, + anon_sym_DASH_DASH, + ACTIONS(4994), 1, + anon_sym_or, + ACTIONS(5044), 1, + anon_sym_AMP_AMP, + ACTIONS(5060), 1, + anon_sym_PIPE_PIPE, + STATE(2553), 1, + sym_or_block, + STATE(2554), 1, + sym_argument_list, + STATE(4167), 1, + sym_type_parameters, + ACTIONS(4962), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4972), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5042), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2377), 2, sym_line_comment, sym_block_comment, - ACTIONS(2924), 13, - anon_sym_DOT, + ACTIONS(5038), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(1779), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(5040), 6, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2922), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5000), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [55216] = 32, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3488), 1, + anon_sym_COLON_EQ, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5006), 1, + anon_sym_COMMA, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, anon_sym_DASH_DASH, + ACTIONS(5022), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5024), 1, anon_sym_AMP_AMP, + ACTIONS(5026), 1, anon_sym_PIPE_PIPE, + ACTIONS(5028), 1, anon_sym_or, + ACTIONS(5062), 1, + anon_sym_LBRACE, + STATE(1791), 1, + sym_block, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(3880), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [55749] = 5, + STATE(2378), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5008), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5012), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5016), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5010), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [55329] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2383), 2, + STATE(2379), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 13, + ACTIONS(2123), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238835,7 +238503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2848), 31, + ACTIONS(2121), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238867,88 +238535,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55808] = 24, - ACTIONS(497), 1, + [55388] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, + ACTIONS(3488), 1, + anon_sym_COLON_EQ, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4962), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4966), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4970), 1, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(5006), 1, + anon_sym_COMMA, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(4982), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(4988), 1, - anon_sym_or, - ACTIONS(5046), 1, + ACTIONS(5022), 1, + anon_sym_CARET, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(5066), 1, + ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - STATE(2569), 1, - sym_or_block, - STATE(2570), 1, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5064), 1, + anon_sym_LBRACE, + STATE(2127), 1, + sym_block, + STATE(2351), 1, sym_argument_list, - STATE(4070), 1, + STATE(2359), 1, + sym_or_block, + STATE(3880), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(4958), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4968), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4990), 2, + ACTIONS(5014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5048), 2, + ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - STATE(2384), 2, + STATE(2380), 2, sym_line_comment, sym_block_comment, - ACTIONS(5036), 4, + ACTIONS(5008), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1773), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(5044), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5012), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5016), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5038), 8, + ACTIONS(5010), 5, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55905] = 5, + [55501] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2385), 2, + STATE(2381), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 13, + ACTIONS(2119), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238962,7 +238638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2830), 31, + ACTIONS(2117), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238994,15 +238670,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55964] = 5, + [55560] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2386), 2, + STATE(2382), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 13, + ACTIONS(3066), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239016,7 +238692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2792), 31, + ACTIONS(3064), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239048,15 +238724,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56023] = 5, + [55619] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2387), 2, + STATE(2383), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 13, + ACTIONS(2883), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239070,7 +238746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2780), 31, + ACTIONS(2881), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239102,47 +238778,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56082] = 5, - ACTIONS(3), 1, + [55678] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2388), 2, + ACTIONS(1807), 1, + anon_sym_LBRACK, + STATE(2384), 2, sym_line_comment, sym_block_comment, - ACTIONS(2501), 13, + ACTIONS(1809), 43, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2499), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -239150,21 +238826,21 @@ 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, - [56141] = 5, + [55737] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2389), 2, + STATE(2385), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 13, + ACTIONS(2209), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239178,7 +238854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2469), 31, + ACTIONS(2207), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239210,88 +238886,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56200] = 24, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4962), 1, - anon_sym_LBRACK, - ACTIONS(4964), 1, - anon_sym_QMARK, - ACTIONS(4966), 1, - anon_sym_BANG, - ACTIONS(4970), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4982), 1, - anon_sym_DASH_DASH, - ACTIONS(4988), 1, - anon_sym_or, - ACTIONS(5046), 1, - anon_sym_AMP_AMP, - ACTIONS(5066), 1, - anon_sym_PIPE_PIPE, - STATE(2569), 1, - sym_or_block, - STATE(2570), 1, - sym_argument_list, - STATE(4070), 1, - sym_type_parameters, - ACTIONS(4958), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4968), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4990), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5048), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2390), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5036), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1795), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(5044), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5038), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [56297] = 5, + [55796] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2391), 2, + STATE(2386), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 13, + ACTIONS(2205), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239305,7 +238908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2309), 31, + ACTIONS(2203), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239337,15 +238940,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56356] = 5, + [55855] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2392), 2, + STATE(2387), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 13, + ACTIONS(2115), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239359,7 +238962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2804), 31, + ACTIONS(2113), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239391,81 +238994,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56415] = 17, - ACTIONS(497), 1, + [55914] = 32, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, + ACTIONS(3488), 1, + anon_sym_COLON_EQ, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4962), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4966), 1, + ACTIONS(4944), 1, anon_sym_BANG, - STATE(2569), 1, - sym_or_block, - STATE(2570), 1, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5006), 1, + anon_sym_COMMA, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_CARET, + ACTIONS(5024), 1, + anon_sym_AMP_AMP, + ACTIONS(5026), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5066), 1, + anon_sym_LBRACE, + STATE(1261), 1, + sym_block, + STATE(2351), 1, sym_argument_list, - STATE(4070), 1, + STATE(2359), 1, + sym_or_block, + STATE(3880), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(4958), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4968), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4992), 2, + ACTIONS(5014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - STATE(2393), 2, + STATE(2388), 2, sym_line_comment, sym_block_comment, - ACTIONS(4974), 4, + ACTIONS(5008), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4978), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5012), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5016), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4976), 8, + ACTIONS(5010), 5, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [56498] = 5, + [56027] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2394), 2, + STATE(2389), 2, sym_line_comment, sym_block_comment, - ACTIONS(2303), 13, + ACTIONS(2763), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239479,7 +239097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2301), 31, + ACTIONS(2761), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239511,15 +239129,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56557] = 5, + [56086] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2395), 2, + STATE(2390), 2, sym_line_comment, sym_block_comment, - ACTIONS(2700), 13, + ACTIONS(2147), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239533,7 +239151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2698), 31, + ACTIONS(2145), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239565,15 +239183,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56616] = 5, + [56145] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2396), 2, + ACTIONS(3488), 1, + anon_sym_COLON_EQ, + ACTIONS(4715), 1, + anon_sym_LBRACE, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5006), 1, + anon_sym_COMMA, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_CARET, + ACTIONS(5024), 1, + anon_sym_AMP_AMP, + ACTIONS(5026), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5028), 1, + anon_sym_or, + STATE(1625), 1, + sym_block, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(3880), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5032), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2391), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5008), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5012), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5016), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5010), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [56258] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2392), 2, sym_line_comment, sym_block_comment, - ACTIONS(2297), 13, + ACTIONS(2089), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239587,7 +239286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2295), 31, + ACTIONS(2087), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239619,23 +239318,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56675] = 7, + [56317] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2217), 1, - anon_sym_COLON, - STATE(2397), 2, + STATE(2393), 2, sym_line_comment, sym_block_comment, - ACTIONS(2215), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(2219), 12, + ACTIONS(2265), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239643,15 +239334,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2222), 26, + ACTIONS(2263), 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, @@ -239659,6 +239354,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, @@ -239675,15 +239371,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [56738] = 5, + anon_sym_DOT_DOT, + [56376] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2398), 2, + STATE(2394), 2, sym_line_comment, sym_block_comment, - ACTIONS(2211), 13, + ACTIONS(2181), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239697,7 +239394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2209), 31, + ACTIONS(2179), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239729,15 +239426,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56797] = 5, + [56435] = 24, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4976), 1, + anon_sym_as, + ACTIONS(4986), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4988), 1, + anon_sym_DASH_DASH, + ACTIONS(4994), 1, + anon_sym_or, + ACTIONS(5044), 1, + anon_sym_AMP_AMP, + ACTIONS(5060), 1, + anon_sym_PIPE_PIPE, + STATE(2553), 1, + sym_or_block, + STATE(2554), 1, + sym_argument_list, + STATE(4167), 1, + sym_type_parameters, + ACTIONS(4962), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4972), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5042), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2395), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5038), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1765), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(5040), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5000), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [56532] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2399), 2, + STATE(2396), 2, sym_line_comment, sym_block_comment, - ACTIONS(2203), 13, + ACTIONS(2229), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239751,7 +239521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2201), 31, + ACTIONS(2227), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239783,15 +239553,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56856] = 5, + [56591] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2400), 2, + STATE(2397), 2, sym_line_comment, sym_block_comment, - ACTIONS(2315), 13, + ACTIONS(2863), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239805,7 +239575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2313), 31, + ACTIONS(2861), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239837,15 +239607,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56915] = 5, + [56650] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2401), 2, + STATE(2398), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 13, + ACTIONS(2507), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239859,7 +239629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 31, + ACTIONS(2505), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239891,15 +239661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56974] = 5, + [56709] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2402), 2, + STATE(2399), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 13, + ACTIONS(2055), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239913,7 +239683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2461), 31, + ACTIONS(2053), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239945,15 +239715,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57033] = 5, + [56768] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2403), 2, + STATE(2400), 2, sym_line_comment, sym_block_comment, - ACTIONS(2467), 13, + ACTIONS(2151), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239967,7 +239737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2465), 31, + ACTIONS(2149), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239999,15 +239769,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57092] = 5, + [56827] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2404), 2, + STATE(2401), 2, sym_line_comment, sym_block_comment, - ACTIONS(2505), 13, + ACTIONS(3021), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240021,7 +239791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2503), 31, + ACTIONS(3019), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240053,15 +239823,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57151] = 5, + [56886] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2405), 2, + ACTIONS(5068), 1, + anon_sym_BANG, + STATE(2402), 2, sym_line_comment, sym_block_comment, - ACTIONS(2696), 13, + ACTIONS(2585), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240071,11 +239843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2694), 31, + ACTIONS(2583), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240107,16 +239878,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57210] = 5, + [56947] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2406), 2, + ACTIONS(2057), 1, + anon_sym_DOT, + STATE(2403), 2, sym_line_comment, sym_block_comment, - ACTIONS(2854), 13, - anon_sym_DOT, + ACTIONS(2159), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -240129,7 +239901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2852), 31, + ACTIONS(2157), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240161,15 +239933,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57269] = 5, + [57008] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2407), 2, + STATE(2404), 2, sym_line_comment, sym_block_comment, - ACTIONS(2858), 13, + ACTIONS(2217), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240183,7 +239955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2856), 31, + ACTIONS(2215), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240215,12 +239987,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57328] = 32, + [57067] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3484), 1, + ACTIONS(3488), 1, anon_sym_COLON_EQ, ACTIONS(4938), 1, anon_sym_LPAREN, @@ -240234,77 +240006,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5000), 1, + ACTIONS(5006), 1, anon_sym_COMMA, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5016), 1, + ACTIONS(5022), 1, anon_sym_CARET, - ACTIONS(5018), 1, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(5020), 1, + ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5068), 1, + ACTIONS(5070), 1, anon_sym_LBRACE, - STATE(2277), 1, - sym_block, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(3809), 1, + STATE(2697), 1, + sym_block, + STATE(3880), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5008), 2, + ACTIONS(5014), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5026), 2, + ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - STATE(2408), 2, + STATE(2405), 2, sym_line_comment, sym_block_comment, - ACTIONS(5002), 3, + ACTIONS(5008), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5006), 3, + ACTIONS(5012), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5010), 4, + ACTIONS(5016), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5004), 5, + ACTIONS(5010), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [57441] = 5, + [57180] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2409), 2, + STATE(2406), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 13, + ACTIONS(2175), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240318,7 +240090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3052), 31, + ACTIONS(2173), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240350,15 +240122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57500] = 5, + [57239] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2410), 2, + STATE(2407), 2, sym_line_comment, sym_block_comment, - ACTIONS(3044), 13, + ACTIONS(2133), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240372,7 +240144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3042), 31, + ACTIONS(2131), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240404,15 +240176,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57559] = 5, + [57298] = 32, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2411), 2, + ACTIONS(3488), 1, + anon_sym_COLON_EQ, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5006), 1, + anon_sym_COMMA, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_CARET, + ACTIONS(5024), 1, + anon_sym_AMP_AMP, + ACTIONS(5026), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(1702), 1, + sym_block, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(3880), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5032), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2408), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 13, + ACTIONS(5008), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5012), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5016), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5010), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [57411] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2409), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2163), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240426,7 +240279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2844), 31, + ACTIONS(2161), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240458,15 +240311,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57618] = 5, + [57470] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2412), 2, + STATE(2410), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 13, + ACTIONS(2225), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240480,7 +240333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2231), 31, + ACTIONS(2223), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240512,52 +240365,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57677] = 18, + [57529] = 24, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4962), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4966), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4984), 1, + ACTIONS(4976), 1, + anon_sym_as, + ACTIONS(4986), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4988), 1, + anon_sym_DASH_DASH, + ACTIONS(4990), 1, anon_sym_AMP_AMP, - STATE(2569), 1, + ACTIONS(4992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4994), 1, + anon_sym_or, + STATE(2553), 1, sym_or_block, - STATE(2570), 1, + STATE(2554), 1, sym_argument_list, - STATE(4070), 1, + STATE(4167), 1, sym_type_parameters, - ACTIONS(4958), 2, + ACTIONS(4962), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4968), 2, + ACTIONS(4972), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4992), 2, + ACTIONS(4996), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4998), 2, anon_sym_in, anon_sym_BANGin, - STATE(2413), 2, + STATE(2411), 2, sym_line_comment, sym_block_comment, - ACTIONS(4974), 4, + ACTIONS(4980), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4978), 6, + ACTIONS(1779), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4984), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4976), 8, + ACTIONS(4982), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -240566,92 +240438,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [57762] = 15, - ACTIONS(497), 1, + [57626] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4962), 1, - anon_sym_LBRACK, - ACTIONS(4964), 1, - anon_sym_QMARK, - ACTIONS(4966), 1, - anon_sym_BANG, - STATE(2569), 1, - sym_or_block, - STATE(2570), 1, - sym_argument_list, - STATE(4070), 1, - sym_type_parameters, - ACTIONS(4958), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4968), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - STATE(2414), 2, + STATE(2412), 2, sym_line_comment, sym_block_comment, - ACTIONS(4974), 4, + ACTIONS(3056), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4976), 8, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1781), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(3054), 31, + anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_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, - [57841] = 5, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [57685] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2415), 2, + STATE(2413), 2, sym_line_comment, sym_block_comment, - ACTIONS(2714), 13, + ACTIONS(3015), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240665,7 +240514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2712), 31, + ACTIONS(3013), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240697,15 +240546,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57900] = 5, + [57744] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2416), 2, + STATE(2414), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 13, + ACTIONS(3011), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240719,7 +240568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2708), 31, + ACTIONS(3009), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240751,446 +240600,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57959] = 20, + [57803] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_CARET, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(1781), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2417), 2, + STATE(2415), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(2741), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5072), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1779), 18, + ACTIONS(2739), 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_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [58047] = 23, - ACTIONS(3), 1, + [57862] = 24, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_CARET, - ACTIONS(5082), 1, - anon_sym_AMP_AMP, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(5078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2418), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5070), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5074), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5080), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5072), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1763), 11, - anon_sym_SEMI, + ACTIONS(4976), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(4986), 1, anon_sym_PLUS_PLUS, + ACTIONS(4988), 1, anon_sym_DASH_DASH, + ACTIONS(4990), 1, + anon_sym_AMP_AMP, + ACTIONS(4992), 1, anon_sym_PIPE_PIPE, + ACTIONS(4994), 1, anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_DOT_DOT, - [58141] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + STATE(2553), 1, + sym_or_block, + STATE(2554), 1, + sym_argument_list, + STATE(4167), 1, + sym_type_parameters, + ACTIONS(4962), 2, anon_sym_DOT, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4948), 1, anon_sym_QMARK_DOT, - ACTIONS(4950), 1, + ACTIONS(4972), 2, + anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_CARET, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(5078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(4996), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(4998), 2, anon_sym_in, anon_sym_BANGin, - STATE(2419), 2, + STATE(2416), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(4980), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5080), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5072), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1763), 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, - [58233] = 20, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, anon_sym_CARET, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(1765), 2, + ACTIONS(1765), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4984), 6, anon_sym_LT, anon_sym_GT, - STATE(2420), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5070), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5074), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5072), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1763), 18, - anon_sym_SEMI, - anon_sym_as, 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, - [58321] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - STATE(2421), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5074), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1765), 5, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5072), 5, + ACTIONS(4982), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 19, - anon_sym_SEMI, - anon_sym_as, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [58405] = 6, - ACTIONS(497), 1, + [57959] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1807), 1, - anon_sym_LBRACK, - ACTIONS(1987), 2, + ACTIONS(2031), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(2422), 2, + STATE(2417), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(1809), 12, anon_sym_DOT, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [58465] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1911), 1, - anon_sym_LBRACK, - ACTIONS(5086), 1, - anon_sym_DOLLARelse, - STATE(2423), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1913), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(1807), 29, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_RPAREN, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -241202,91 +240780,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58525] = 24, - ACTIONS(497), 1, + anon_sym_DOT_DOT, + [58019] = 24, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, + ACTIONS(1791), 1, + anon_sym_DOT_DOT, + ACTIONS(5074), 1, + anon_sym_DOT, + ACTIONS(5076), 1, anon_sym_LPAREN, - ACTIONS(4962), 1, + ACTIONS(5088), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, + ACTIONS(5090), 1, anon_sym_QMARK, - ACTIONS(4966), 1, + ACTIONS(5092), 1, anon_sym_BANG, - ACTIONS(4970), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4982), 1, - anon_sym_DASH_DASH, - ACTIONS(4988), 1, - anon_sym_or, - ACTIONS(5046), 1, + ACTIONS(5094), 1, + anon_sym_LBRACK2, + ACTIONS(5096), 1, + anon_sym_CARET, + ACTIONS(5098), 1, anon_sym_AMP_AMP, - ACTIONS(5066), 1, - anon_sym_PIPE_PIPE, - STATE(2569), 1, + ACTIONS(5100), 1, + anon_sym_QMARK_DOT, + ACTIONS(5102), 1, + anon_sym_POUND_LBRACK, + STATE(2725), 1, sym_or_block, - STATE(2570), 1, + STATE(2731), 1, sym_argument_list, - STATE(4070), 1, + STATE(4080), 1, sym_type_parameters, - ACTIONS(4958), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4968), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4990), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5048), 2, + ACTIONS(5084), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5104), 2, anon_sym_in, anon_sym_BANGin, - STATE(2424), 2, + STATE(2418), 2, sym_line_comment, sym_block_comment, - ACTIONS(3556), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(5036), 4, + ACTIONS(5078), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5044), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5082), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5086), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5038), 8, + ACTIONS(5080), 5, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [58621] = 6, + ACTIONS(1789), 10, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [58115] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1894), 1, + ACTIONS(1897), 1, anon_sym_LBRACK, - ACTIONS(2475), 1, - anon_sym_LBRACE, - STATE(2425), 2, + STATE(2552), 1, + sym_type_parameters, + STATE(2419), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 41, + ACTIONS(1899), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241328,119 +240907,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58681] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1989), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2426), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1809), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1807), 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, - [58741] = 23, + [58175] = 25, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(2055), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3428), 1, + ACTIONS(3432), 1, anon_sym_LPAREN, - ACTIONS(3430), 1, + ACTIONS(3434), 1, anon_sym_fn, - ACTIONS(3432), 1, + ACTIONS(3436), 1, anon_sym_STAR, - ACTIONS(3434), 1, + ACTIONS(3438), 1, anon_sym_struct, - ACTIONS(3436), 1, + ACTIONS(3440), 1, anon_sym_QMARK, - ACTIONS(3438), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3440), 1, + ACTIONS(3444), 1, anon_sym_LBRACK2, - ACTIONS(3442), 1, + ACTIONS(3446), 1, anon_sym_AMP, - ACTIONS(3444), 1, + ACTIONS(3448), 1, anon_sym_shared, - ACTIONS(3446), 1, + ACTIONS(3450), 1, anon_sym_map_LBRACK, - ACTIONS(3448), 1, + ACTIONS(3452), 1, anon_sym_chan, - ACTIONS(3450), 1, + ACTIONS(3454), 1, anon_sym_thread, - ACTIONS(3452), 1, + ACTIONS(3456), 1, anon_sym_atomic, - STATE(3358), 1, + STATE(3337), 1, sym_plain_type, - STATE(4351), 1, + STATE(4356), 1, sym_reference_expression, - STATE(2427), 2, + STATE(2420), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, + STATE(3302), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3362), 4, + STATE(3360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - ACTIONS(623), 9, + ACTIONS(2159), 7, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - anon_sym_EQ, anon_sym___global, anon_sym_pub, anon_sym_mut, - anon_sym_AT_LBRACK, - STATE(3340), 12, + STATE(3354), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -241453,55 +240980,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [58835] = 23, + [58273] = 23, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3428), 1, + ACTIONS(3432), 1, anon_sym_LPAREN, - ACTIONS(3430), 1, + ACTIONS(3434), 1, anon_sym_fn, - ACTIONS(3432), 1, + ACTIONS(3436), 1, anon_sym_STAR, - ACTIONS(3434), 1, + ACTIONS(3438), 1, anon_sym_struct, - ACTIONS(3436), 1, + ACTIONS(3440), 1, anon_sym_QMARK, - ACTIONS(3438), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3440), 1, + ACTIONS(3444), 1, anon_sym_LBRACK2, - ACTIONS(3442), 1, + ACTIONS(3446), 1, anon_sym_AMP, - ACTIONS(3444), 1, + ACTIONS(3448), 1, anon_sym_shared, - ACTIONS(3446), 1, + ACTIONS(3450), 1, anon_sym_map_LBRACK, - ACTIONS(3448), 1, + ACTIONS(3452), 1, anon_sym_chan, - ACTIONS(3450), 1, + ACTIONS(3454), 1, anon_sym_thread, - ACTIONS(3452), 1, + ACTIONS(3456), 1, anon_sym_atomic, - STATE(3341), 1, + STATE(3346), 1, sym_plain_type, - STATE(4351), 1, + STATE(4356), 1, sym_reference_expression, - STATE(2428), 2, + STATE(2421), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, + STATE(3302), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3362), 4, + STATE(3360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - ACTIONS(589), 9, + ACTIONS(567), 9, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241511,7 +241038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, anon_sym_AT_LBRACK, - STATE(3340), 12, + STATE(3354), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -241524,55 +241051,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [58929] = 23, + [58367] = 23, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3428), 1, + ACTIONS(3432), 1, anon_sym_LPAREN, - ACTIONS(3430), 1, + ACTIONS(3434), 1, anon_sym_fn, - ACTIONS(3432), 1, + ACTIONS(3436), 1, anon_sym_STAR, - ACTIONS(3434), 1, + ACTIONS(3438), 1, anon_sym_struct, - ACTIONS(3436), 1, + ACTIONS(3440), 1, anon_sym_QMARK, - ACTIONS(3438), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3440), 1, + ACTIONS(3444), 1, anon_sym_LBRACK2, - ACTIONS(3442), 1, + ACTIONS(3446), 1, anon_sym_AMP, - ACTIONS(3444), 1, + ACTIONS(3448), 1, anon_sym_shared, - ACTIONS(3446), 1, + ACTIONS(3450), 1, anon_sym_map_LBRACK, - ACTIONS(3448), 1, + ACTIONS(3452), 1, anon_sym_chan, - ACTIONS(3450), 1, + ACTIONS(3454), 1, anon_sym_thread, - ACTIONS(3452), 1, + ACTIONS(3456), 1, anon_sym_atomic, - STATE(3353), 1, + STATE(3363), 1, sym_plain_type, - STATE(4351), 1, + STATE(4356), 1, sym_reference_expression, - STATE(2429), 2, + STATE(2422), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, + STATE(3302), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3362), 4, + STATE(3360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - ACTIONS(619), 9, + ACTIONS(597), 9, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241582,7 +241109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, anon_sym_AT_LBRACK, - STATE(3340), 12, + STATE(3354), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -241595,579 +241122,425 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [59023] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1841), 1, - anon_sym_LBRACK, - ACTIONS(5088), 1, - anon_sym_DOLLARelse, - STATE(2430), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1843), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [59083] = 16, + [58461] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5090), 1, + ACTIONS(1779), 1, + anon_sym_DOT_DOT, + ACTIONS(5074), 1, anon_sym_DOT, - ACTIONS(5092), 1, + ACTIONS(5076), 1, anon_sym_LPAREN, - ACTIONS(5094), 1, + ACTIONS(5088), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(5090), 1, anon_sym_QMARK, - ACTIONS(5098), 1, + ACTIONS(5092), 1, anon_sym_BANG, - ACTIONS(5100), 1, + ACTIONS(5094), 1, anon_sym_LBRACK2, - ACTIONS(5102), 1, + ACTIONS(5096), 1, + anon_sym_CARET, + ACTIONS(5098), 1, + anon_sym_AMP_AMP, + ACTIONS(5100), 1, anon_sym_QMARK_DOT, - ACTIONS(5104), 1, + ACTIONS(5102), 1, anon_sym_POUND_LBRACK, - STATE(2698), 1, + ACTIONS(5106), 1, + anon_sym_as, + ACTIONS(5108), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5110), 1, + anon_sym_DASH_DASH, + ACTIONS(5112), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5114), 1, + anon_sym_or, + STATE(2725), 1, sym_or_block, - STATE(2702), 1, + STATE(2731), 1, sym_argument_list, - STATE(4053), 1, + STATE(4080), 1, sym_type_parameters, - STATE(2431), 2, + ACTIONS(5084), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5104), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(5116), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2423), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 9, + ACTIONS(1777), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(5078), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5082), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1763), 23, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5086), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5080), 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_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [59163] = 20, - ACTIONS(3), 1, + [58569] = 24, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5090), 1, - anon_sym_DOT, - ACTIONS(5092), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(5094), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(5098), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(5100), 1, - anon_sym_LBRACK2, - ACTIONS(5102), 1, - anon_sym_QMARK_DOT, - ACTIONS(5104), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5112), 1, - anon_sym_CARET, - STATE(2698), 1, - sym_or_block, - STATE(2702), 1, - sym_argument_list, - STATE(4053), 1, - sym_type_parameters, - STATE(2432), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1781), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5106), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5110), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5108), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1779), 17, + ACTIONS(4976), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + ACTIONS(4986), 1, anon_sym_PLUS_PLUS, + ACTIONS(4988), 1, anon_sym_DASH_DASH, + ACTIONS(4994), 1, + anon_sym_or, + ACTIONS(5044), 1, anon_sym_AMP_AMP, + ACTIONS(5060), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(2553), 1, + sym_or_block, + STATE(2554), 1, + sym_argument_list, + STATE(4167), 1, + sym_type_parameters, + ACTIONS(4962), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4972), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5042), 2, anon_sym_in, anon_sym_BANGin, - [59251] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5090), 1, - anon_sym_DOT, - ACTIONS(5092), 1, - anon_sym_LPAREN, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_QMARK, - ACTIONS(5098), 1, - anon_sym_BANG, - ACTIONS(5100), 1, - anon_sym_LBRACK2, - ACTIONS(5102), 1, - anon_sym_QMARK_DOT, - ACTIONS(5104), 1, - anon_sym_POUND_LBRACK, - STATE(2698), 1, - sym_or_block, - STATE(2702), 1, - sym_argument_list, - STATE(4053), 1, - sym_type_parameters, - STATE(2433), 2, + STATE(2424), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 9, + ACTIONS(3540), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + ACTIONS(5038), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(5040), 6, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1767), 23, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5000), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [59331] = 29, - ACTIONS(3), 1, + [58665] = 24, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(4976), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(4986), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(4988), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(4994), 1, anon_sym_or, - ACTIONS(5076), 1, - anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5044), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5060), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, + STATE(2553), 1, sym_or_block, - STATE(4251), 1, + STATE(2554), 1, + sym_argument_list, + STATE(4167), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(4962), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4972), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5042), 2, anon_sym_in, anon_sym_BANGin, - STATE(2434), 2, + STATE(2425), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(3564), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + ACTIONS(5038), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1793), 4, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(5080), 4, + anon_sym_CARET, + ACTIONS(5040), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5000), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [59437] = 6, + [58761] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1894), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - STATE(2435), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1889), 13, + ACTIONS(5074), 1, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5076), 1, + anon_sym_LPAREN, + ACTIONS(5088), 1, + anon_sym_LBRACK, + ACTIONS(5090), 1, anon_sym_QMARK, + ACTIONS(5092), 1, anon_sym_BANG, + ACTIONS(5094), 1, anon_sym_LBRACK2, + ACTIONS(5100), 1, + anon_sym_QMARK_DOT, + ACTIONS(5102), 1, + anon_sym_POUND_LBRACK, + STATE(2725), 1, + sym_or_block, + STATE(2731), 1, + sym_argument_list, + STATE(4080), 1, + sym_type_parameters, + STATE(2426), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5082), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1887), 28, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5080), 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_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, - [59497] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2674), 1, - anon_sym_LBRACK, - ACTIONS(1987), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2436), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2676), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1791), 6, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(1789), 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_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59557] = 29, - ACTIONS(3), 1, + [58845] = 24, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, - ACTIONS(4938), 1, + ACTIONS(4964), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4966), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4968), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4970), 1, anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(4976), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(4986), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(4988), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(4994), 1, anon_sym_or, - ACTIONS(5076), 1, - anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5044), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5060), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, + STATE(2553), 1, sym_or_block, - STATE(4251), 1, + STATE(2554), 1, + sym_argument_list, + STATE(4167), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(4962), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4972), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5042), 2, anon_sym_in, anon_sym_BANGin, - STATE(2437), 2, + STATE(2427), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(3560), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(5038), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1771), 4, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(5080), 4, + anon_sym_CARET, + ACTIONS(5040), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5000), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [59663] = 25, + [58941] = 23, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1889), 1, - anon_sym_DOT, - ACTIONS(2473), 1, - anon_sym_LBRACK, - ACTIONS(3426), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3428), 1, + ACTIONS(3432), 1, anon_sym_LPAREN, - ACTIONS(3430), 1, + ACTIONS(3434), 1, anon_sym_fn, - ACTIONS(3432), 1, + ACTIONS(3436), 1, anon_sym_STAR, - ACTIONS(3434), 1, + ACTIONS(3438), 1, anon_sym_struct, - ACTIONS(3436), 1, + ACTIONS(3440), 1, anon_sym_QMARK, - ACTIONS(3438), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3440), 1, + ACTIONS(3444), 1, anon_sym_LBRACK2, - ACTIONS(3442), 1, + ACTIONS(3446), 1, anon_sym_AMP, - ACTIONS(3444), 1, + ACTIONS(3448), 1, anon_sym_shared, - ACTIONS(3446), 1, + ACTIONS(3450), 1, anon_sym_map_LBRACK, - ACTIONS(3448), 1, + ACTIONS(3452), 1, anon_sym_chan, - ACTIONS(3450), 1, + ACTIONS(3454), 1, anon_sym_thread, - ACTIONS(3452), 1, + ACTIONS(3456), 1, anon_sym_atomic, - STATE(3337), 1, + STATE(3343), 1, sym_plain_type, - STATE(4351), 1, + STATE(4356), 1, sym_reference_expression, - STATE(2438), 2, + STATE(2428), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, + STATE(3302), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3362), 4, + STATE(3360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - ACTIONS(2475), 7, + ACTIONS(601), 9, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, + anon_sym_EQ, anon_sym___global, anon_sym_pub, anon_sym_mut, - STATE(3340), 12, + anon_sym_AT_LBRACK, + STATE(3354), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -242180,141 +241553,118 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [59761] = 24, - ACTIONS(3), 1, + [59035] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1765), 1, - anon_sym_DOT_DOT, - ACTIONS(5090), 1, - anon_sym_DOT, - ACTIONS(5092), 1, - anon_sym_LPAREN, - ACTIONS(5094), 1, + ACTIONS(2713), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_QMARK, - ACTIONS(5098), 1, - anon_sym_BANG, - ACTIONS(5100), 1, - anon_sym_LBRACK2, - ACTIONS(5102), 1, - anon_sym_QMARK_DOT, - ACTIONS(5104), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5112), 1, - anon_sym_CARET, - ACTIONS(5120), 1, - anon_sym_AMP_AMP, - STATE(2698), 1, - sym_or_block, - STATE(2702), 1, - sym_argument_list, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(5116), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5122), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2439), 2, + ACTIONS(2029), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2429), 2, sym_line_comment, sym_block_comment, - ACTIONS(5106), 3, + ACTIONS(2715), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5110), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5118), 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(5108), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 10, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - [59857] = 23, + anon_sym_in, + anon_sym_BANGin, + [59095] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1765), 1, - anon_sym_DOT_DOT, - ACTIONS(5090), 1, + ACTIONS(5074), 1, anon_sym_DOT, - ACTIONS(5092), 1, + ACTIONS(5076), 1, anon_sym_LPAREN, - ACTIONS(5094), 1, + ACTIONS(5088), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(5090), 1, anon_sym_QMARK, - ACTIONS(5098), 1, + ACTIONS(5092), 1, anon_sym_BANG, - ACTIONS(5100), 1, + ACTIONS(5094), 1, anon_sym_LBRACK2, - ACTIONS(5102), 1, + ACTIONS(5096), 1, + anon_sym_CARET, + ACTIONS(5100), 1, anon_sym_QMARK_DOT, - ACTIONS(5104), 1, + ACTIONS(5102), 1, anon_sym_POUND_LBRACK, - ACTIONS(5112), 1, - anon_sym_CARET, - STATE(2698), 1, + STATE(2725), 1, sym_or_block, - STATE(2702), 1, + STATE(2731), 1, sym_argument_list, - STATE(4053), 1, + STATE(4080), 1, sym_type_parameters, - ACTIONS(5116), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5122), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2440), 2, + STATE(2430), 2, sym_line_comment, sym_block_comment, - ACTIONS(5106), 3, + ACTIONS(1791), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5078), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5110), 3, + ACTIONS(5082), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5118), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5108), 5, + ACTIONS(5080), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 11, + ACTIONS(1789), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -242323,364 +241673,353 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - [59951] = 20, - ACTIONS(3), 1, + anon_sym_in, + anon_sym_BANGin, + [59183] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5090), 1, - anon_sym_DOT, - ACTIONS(5092), 1, - anon_sym_LPAREN, - ACTIONS(5094), 1, + ACTIONS(2060), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_QMARK, - ACTIONS(5098), 1, - anon_sym_BANG, - ACTIONS(5100), 1, - anon_sym_LBRACK2, - ACTIONS(5102), 1, - anon_sym_QMARK_DOT, - ACTIONS(5104), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5112), 1, - anon_sym_CARET, - STATE(2698), 1, - sym_or_block, - STATE(2702), 1, - sym_argument_list, - STATE(4053), 1, - sym_type_parameters, - STATE(2441), 2, + ACTIONS(2159), 1, + anon_sym_LBRACE, + STATE(2431), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5106), 3, + ACTIONS(2055), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5110), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5108), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1763), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60039] = 18, + [59243] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5090), 1, + ACTIONS(1791), 1, + anon_sym_DOT_DOT, + ACTIONS(5074), 1, anon_sym_DOT, - ACTIONS(5092), 1, + ACTIONS(5076), 1, anon_sym_LPAREN, - ACTIONS(5094), 1, + ACTIONS(5088), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(5090), 1, anon_sym_QMARK, - ACTIONS(5098), 1, + ACTIONS(5092), 1, anon_sym_BANG, - ACTIONS(5100), 1, + ACTIONS(5094), 1, anon_sym_LBRACK2, - ACTIONS(5102), 1, + ACTIONS(5096), 1, + anon_sym_CARET, + ACTIONS(5100), 1, anon_sym_QMARK_DOT, - ACTIONS(5104), 1, + ACTIONS(5102), 1, anon_sym_POUND_LBRACK, - STATE(2698), 1, + STATE(2725), 1, sym_or_block, - STATE(2702), 1, + STATE(2731), 1, sym_argument_list, - STATE(4053), 1, + STATE(4080), 1, sym_type_parameters, - STATE(2442), 2, + ACTIONS(5084), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5104), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2432), 2, sym_line_comment, sym_block_comment, - ACTIONS(5110), 3, + ACTIONS(5078), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5082), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5108), 5, + ACTIONS(5086), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5080), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(1763), 18, + ACTIONS(1789), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60123] = 24, - ACTIONS(497), 1, + [59337] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4962), 1, - anon_sym_LBRACK, - ACTIONS(4964), 1, - anon_sym_QMARK, - ACTIONS(4966), 1, - anon_sym_BANG, - ACTIONS(4970), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4982), 1, - anon_sym_DASH_DASH, - ACTIONS(4988), 1, - anon_sym_or, - ACTIONS(5046), 1, - anon_sym_AMP_AMP, - ACTIONS(5066), 1, - anon_sym_PIPE_PIPE, - STATE(2569), 1, - sym_or_block, - STATE(2570), 1, - sym_argument_list, - STATE(4070), 1, - sym_type_parameters, - ACTIONS(4958), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4968), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4990), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5048), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2443), 2, + ACTIONS(2031), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2433), 2, sym_line_comment, sym_block_comment, - ACTIONS(3560), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(5036), 4, + ACTIONS(2715), 12, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5044), 6, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2713), 29, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5038), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, + anon_sym_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, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [60219] = 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_DOT_DOT, + [59397] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1773), 1, + ACTIONS(1765), 1, anon_sym_DOT_DOT, - ACTIONS(5090), 1, + ACTIONS(5074), 1, anon_sym_DOT, - ACTIONS(5092), 1, + ACTIONS(5076), 1, anon_sym_LPAREN, - ACTIONS(5094), 1, + ACTIONS(5088), 1, anon_sym_LBRACK, + ACTIONS(5090), 1, + anon_sym_QMARK, + ACTIONS(5092), 1, + anon_sym_BANG, + ACTIONS(5094), 1, + anon_sym_LBRACK2, ACTIONS(5096), 1, - anon_sym_QMARK, + anon_sym_CARET, ACTIONS(5098), 1, - anon_sym_BANG, + anon_sym_AMP_AMP, ACTIONS(5100), 1, - anon_sym_LBRACK2, - ACTIONS(5102), 1, anon_sym_QMARK_DOT, - ACTIONS(5104), 1, + ACTIONS(5102), 1, anon_sym_POUND_LBRACK, - ACTIONS(5112), 1, - anon_sym_CARET, - ACTIONS(5120), 1, - anon_sym_AMP_AMP, - ACTIONS(5124), 1, + ACTIONS(5106), 1, anon_sym_as, - ACTIONS(5126), 1, + ACTIONS(5108), 1, anon_sym_PLUS_PLUS, - ACTIONS(5128), 1, + ACTIONS(5110), 1, anon_sym_DASH_DASH, - ACTIONS(5130), 1, + ACTIONS(5112), 1, anon_sym_PIPE_PIPE, - ACTIONS(5132), 1, + ACTIONS(5114), 1, anon_sym_or, - STATE(2698), 1, + STATE(2725), 1, sym_or_block, - STATE(2702), 1, + STATE(2731), 1, sym_argument_list, - STATE(4053), 1, + STATE(4080), 1, sym_type_parameters, - ACTIONS(5116), 2, + ACTIONS(5084), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5122), 2, + ACTIONS(5104), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5134), 2, + ACTIONS(5116), 2, anon_sym_is, anon_sym_BANGis, - STATE(2444), 2, + STATE(2434), 2, sym_line_comment, sym_block_comment, - ACTIONS(1771), 3, + ACTIONS(1763), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(5106), 3, + ACTIONS(5078), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5110), 3, + ACTIONS(5082), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5118), 4, + ACTIONS(5086), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5108), 5, + ACTIONS(5080), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [60327] = 6, + [59505] = 20, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1989), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2445), 2, + ACTIONS(5074), 1, + anon_sym_DOT, + ACTIONS(5076), 1, + anon_sym_LPAREN, + ACTIONS(5088), 1, + anon_sym_LBRACK, + ACTIONS(5090), 1, + anon_sym_QMARK, + ACTIONS(5092), 1, + anon_sym_BANG, + ACTIONS(5094), 1, + anon_sym_LBRACK2, + ACTIONS(5096), 1, + anon_sym_CARET, + ACTIONS(5100), 1, + anon_sym_QMARK_DOT, + ACTIONS(5102), 1, + anon_sym_POUND_LBRACK, + STATE(2725), 1, + sym_or_block, + STATE(2731), 1, + sym_argument_list, + STATE(4080), 1, + sym_type_parameters, + STATE(2435), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 12, - anon_sym_DOT, + ACTIONS(1787), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5078), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5082), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2674), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5080), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1785), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [60387] = 6, + [59593] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1879), 1, + ACTIONS(1807), 1, anon_sym_LBRACK, - STATE(2568), 1, - sym_type_parameters, - STATE(2446), 2, + ACTIONS(2029), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2436), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 41, + ACTIONS(1809), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PIPE, @@ -242715,21 +242054,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60447] = 7, + [59653] = 24, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4964), 1, + anon_sym_LPAREN, + ACTIONS(4966), 1, + anon_sym_LBRACK, + ACTIONS(4968), 1, + anon_sym_QMARK, + ACTIONS(4970), 1, + anon_sym_BANG, + ACTIONS(4976), 1, + anon_sym_as, + ACTIONS(4986), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4988), 1, + anon_sym_DASH_DASH, + ACTIONS(4994), 1, + anon_sym_or, + ACTIONS(5044), 1, + anon_sym_AMP_AMP, + ACTIONS(5060), 1, + anon_sym_PIPE_PIPE, + STATE(2553), 1, + sym_or_block, + STATE(2554), 1, + sym_argument_list, + STATE(4167), 1, + sym_type_parameters, + ACTIONS(4962), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4972), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4996), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5042), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2437), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3556), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(5038), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5040), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5000), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [59749] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1894), 2, + ACTIONS(2060), 2, anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2473), 2, + ACTIONS(2157), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(2447), 2, + STATE(2438), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 12, + ACTIONS(2055), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -242742,7 +242153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1887), 27, + ACTIONS(2053), 27, anon_sym_SEMI, anon_sym_as, anon_sym_LPAREN, @@ -242770,272 +242181,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_DOT_DOT, - [60509] = 30, + [59811] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1795), 1, - anon_sym_DOT_DOT, - ACTIONS(5090), 1, + ACTIONS(4936), 1, anon_sym_DOT, - ACTIONS(5092), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(5094), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(5098), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(5100), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(5102), 1, + ACTIONS(4948), 1, anon_sym_QMARK_DOT, - ACTIONS(5104), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5112), 1, - anon_sym_CARET, - ACTIONS(5120), 1, - anon_sym_AMP_AMP, - ACTIONS(5124), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5126), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5128), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5128), 1, + anon_sym_CARET, ACTIONS(5130), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5132), 1, - anon_sym_or, - STATE(2698), 1, - sym_or_block, - STATE(2702), 1, + anon_sym_PIPE_PIPE, + STATE(2351), 1, sym_argument_list, - STATE(4053), 1, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, sym_type_parameters, - ACTIONS(5116), 2, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5122), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5134), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2448), 2, + STATE(2439), 2, sym_line_comment, sym_block_comment, - ACTIONS(1793), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(5106), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5110), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5118), 4, + ACTIONS(1763), 4, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5108), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [60617] = 24, - ACTIONS(497), 1, + [59917] = 29, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, + ACTIONS(4936), 1, + anon_sym_DOT, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4962), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4966), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4970), 1, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(4982), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(4988), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5046), 1, + ACTIONS(5128), 1, + anon_sym_CARET, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5066), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - STATE(2569), 1, - sym_or_block, - STATE(2570), 1, + STATE(2351), 1, sym_argument_list, - STATE(4070), 1, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, sym_type_parameters, - ACTIONS(4958), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4968), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4990), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5048), 2, + ACTIONS(5124), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - STATE(2449), 2, + STATE(2440), 2, sym_line_comment, sym_block_comment, - ACTIONS(3548), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - ACTIONS(5036), 4, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5044), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5122), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1777), 4, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5038), 8, + ACTIONS(5120), 5, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [60713] = 24, + [60023] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - anon_sym_LPAREN, - ACTIONS(4962), 1, + ACTIONS(2077), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, - anon_sym_QMARK, - ACTIONS(4966), 1, - anon_sym_BANG, - ACTIONS(4970), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4982), 1, - anon_sym_DASH_DASH, - ACTIONS(4988), 1, - anon_sym_or, - ACTIONS(5046), 1, - anon_sym_AMP_AMP, - ACTIONS(5066), 1, - anon_sym_PIPE_PIPE, - STATE(2569), 1, - sym_or_block, - STATE(2570), 1, - sym_argument_list, - STATE(4070), 1, - sym_type_parameters, - ACTIONS(4958), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4968), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4990), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5048), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2450), 2, + ACTIONS(5136), 1, + anon_sym_DOLLARelse, + STATE(2441), 2, sym_line_comment, sym_block_comment, - ACTIONS(3552), 4, + ACTIONS(2079), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - ACTIONS(5036), 4, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5044), 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(5038), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [60809] = 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [60083] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5090), 1, - anon_sym_DOT, - ACTIONS(5092), 1, - anon_sym_LPAREN, - ACTIONS(5094), 1, + ACTIONS(2060), 2, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_QMARK, - ACTIONS(5098), 1, - anon_sym_BANG, - ACTIONS(5100), 1, - anon_sym_LBRACK2, - ACTIONS(5102), 1, - anon_sym_QMARK_DOT, - ACTIONS(5104), 1, - anon_sym_POUND_LBRACK, - STATE(2698), 1, - sym_or_block, - STATE(2702), 1, - sym_argument_list, - STATE(4053), 1, - sym_type_parameters, - STATE(2451), 2, + STATE(2442), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 9, + ACTIONS(2055), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1783), 23, + ACTIONS(2053), 28, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -243043,6 +242426,7 @@ 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, @@ -243052,89 +242436,121 @@ 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, - [60889] = 5, - ACTIONS(497), 1, + anon_sym_COLON_EQ, + [60143] = 16, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2117), 1, + ACTIONS(5074), 1, + anon_sym_DOT, + ACTIONS(5076), 1, + anon_sym_LPAREN, + ACTIONS(5088), 1, anon_sym_LBRACK, - STATE(2452), 2, + ACTIONS(5090), 1, + anon_sym_QMARK, + ACTIONS(5092), 1, + anon_sym_BANG, + ACTIONS(5094), 1, + anon_sym_LBRACK2, + ACTIONS(5100), 1, + anon_sym_QMARK_DOT, + ACTIONS(5102), 1, + anon_sym_POUND_LBRACK, + STATE(2725), 1, + sym_or_block, + STATE(2731), 1, + sym_argument_list, + STATE(4080), 1, + sym_type_parameters, + STATE(2443), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1791), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(1789), 23, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60946] = 5, + [60223] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2453), 2, + ACTIONS(5074), 1, + anon_sym_DOT, + ACTIONS(5076), 1, + anon_sym_LPAREN, + ACTIONS(5088), 1, + anon_sym_LBRACK, + ACTIONS(5090), 1, + anon_sym_QMARK, + ACTIONS(5092), 1, + anon_sym_BANG, + ACTIONS(5094), 1, + anon_sym_LBRACK2, + ACTIONS(5100), 1, + anon_sym_QMARK_DOT, + ACTIONS(5102), 1, + anon_sym_POUND_LBRACK, + STATE(2725), 1, + sym_or_block, + STATE(2731), 1, + sym_argument_list, + STATE(4080), 1, + sym_type_parameters, + STATE(2444), 2, sym_line_comment, sym_block_comment, - ACTIONS(1813), 13, - anon_sym_DOT, + ACTIONS(1769), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1811), 29, + ACTIONS(1767), 23, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -243142,7 +242558,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, @@ -243152,19 +242567,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61003] = 28, + [60303] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(4936), 1, + anon_sym_DOT, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, @@ -243175,187 +242588,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5016), 1, - anon_sym_CARET, - ACTIONS(5018), 1, - anon_sym_AMP_AMP, - ACTIONS(5020), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, - anon_sym_or, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5008), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5026), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2454), 2, + STATE(2445), 2, sym_line_comment, sym_block_comment, - ACTIONS(1771), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5002), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5006), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5010), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5004), 5, + ACTIONS(1791), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [61106] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1887), 1, - anon_sym_LBRACK, - STATE(2455), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1889), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(1789), 19, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61163] = 6, - ACTIONS(497), 1, + anon_sym_DOT_DOT, + [60387] = 20, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2222), 1, + ACTIONS(4936), 1, + anon_sym_DOT, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, anon_sym_LBRACK, - STATE(2456), 2, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5128), 1, + anon_sym_CARET, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(1791), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2446), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2219), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5122), 3, anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5120), 5, + anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1789), 18, + anon_sym_SEMI, + anon_sym_as, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61222] = 6, + anon_sym_DOT_DOT, + [60475] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1987), 1, - anon_sym_LBRACE, - ACTIONS(2674), 1, + ACTIONS(2039), 1, anon_sym_LBRACK, - STATE(2457), 2, + ACTIONS(5138), 1, + anon_sym_DOLLARelse, + STATE(2447), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 40, + ACTIONS(2041), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -243393,90 +242759,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61281] = 30, + [60535] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1795), 1, - anon_sym_DOT_DOT, - ACTIONS(5090), 1, + ACTIONS(4936), 1, anon_sym_DOT, - ACTIONS(5092), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(5094), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(5098), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(5100), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(5102), 1, + ACTIONS(4948), 1, anon_sym_QMARK_DOT, - ACTIONS(5104), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5124), 1, - anon_sym_as, - ACTIONS(5126), 1, - anon_sym_PLUS_PLUS, ACTIONS(5128), 1, - anon_sym_DASH_DASH, - ACTIONS(5132), 1, - anon_sym_or, - ACTIONS(5146), 1, anon_sym_CARET, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_PIPE_PIPE, - STATE(2698), 1, - sym_or_block, - STATE(2702), 1, + STATE(2351), 1, sym_argument_list, - STATE(4053), 1, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, sym_type_parameters, - ACTIONS(1793), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(5134), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5142), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5152), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - STATE(2458), 2, + STATE(2448), 2, sym_line_comment, sym_block_comment, - ACTIONS(5136), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5140), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5144), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5138), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [61388] = 30, + ACTIONS(1789), 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, + [60627] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3484), 1, - anon_sym_SEMI, + ACTIONS(4936), 1, + anon_sym_DOT, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, @@ -243487,147 +242846,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5154), 1, - anon_sym_COMMA, - ACTIONS(5166), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5168), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5170), 1, - anon_sym_PIPE_PIPE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(3948), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5162), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5172), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - STATE(2459), 2, + STATE(2449), 2, sym_line_comment, sym_block_comment, - ACTIONS(5156), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5160), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5164), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5158), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [61495] = 23, + ACTIONS(1789), 11, + anon_sym_SEMI, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_DOT_DOT, + [60721] = 16, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1765), 1, - anon_sym_DOT_DOT, - ACTIONS(5090), 1, + ACTIONS(5074), 1, anon_sym_DOT, - ACTIONS(5092), 1, + ACTIONS(5076), 1, anon_sym_LPAREN, - ACTIONS(5094), 1, + ACTIONS(5088), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(5090), 1, anon_sym_QMARK, - ACTIONS(5098), 1, + ACTIONS(5092), 1, anon_sym_BANG, - ACTIONS(5100), 1, + ACTIONS(5094), 1, anon_sym_LBRACK2, - ACTIONS(5102), 1, + ACTIONS(5100), 1, anon_sym_QMARK_DOT, - ACTIONS(5104), 1, + ACTIONS(5102), 1, anon_sym_POUND_LBRACK, - ACTIONS(5146), 1, - anon_sym_CARET, - STATE(2698), 1, + STATE(2725), 1, sym_or_block, - STATE(2702), 1, + STATE(2731), 1, sym_argument_list, - STATE(4053), 1, + STATE(4080), 1, sym_type_parameters, - ACTIONS(5142), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5152), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2460), 2, + STATE(2450), 2, sym_line_comment, sym_block_comment, - ACTIONS(5136), 3, + ACTIONS(1783), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5140), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5144), 4, + anon_sym_DOT_DOT, + ACTIONS(1781), 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(5138), 5, + 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, + [60801] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4936), 1, + anon_sym_DOT, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5128), 1, + anon_sym_CARET, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(1787), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2451), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5118), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5122), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 10, + ACTIONS(1785), 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, + [60889] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2452), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1889), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(1887), 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, - [61588] = 5, + anon_sym_in, + anon_sym_BANGin, + [60946] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2295), 1, + ACTIONS(2881), 1, anon_sym_LBRACK, - STATE(2461), 2, + STATE(2453), 2, sym_line_comment, sym_block_comment, - ACTIONS(2297), 41, + ACTIONS(2883), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243669,64 +243136,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61645] = 20, + [61003] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5090), 1, + ACTIONS(5140), 1, + anon_sym_else, + STATE(2664), 1, + sym_else_branch, + STATE(2454), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1805), 13, anon_sym_DOT, - ACTIONS(5092), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(1803), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(5094), 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(5096), 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, + [61064] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5140), 1, + anon_sym_else, + STATE(2663), 1, + sym_else_branch, + STATE(2455), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1799), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5098), 1, anon_sym_BANG, - ACTIONS(5100), 1, anon_sym_LBRACK2, - ACTIONS(5102), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(1797), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_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, - ACTIONS(5104), 1, anon_sym_POUND_LBRACK, - ACTIONS(5146), 1, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [61125] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5022), 1, anon_sym_CARET, - STATE(2698), 1, - sym_or_block, - STATE(2702), 1, + STATE(2351), 1, sym_argument_list, - STATE(4053), 1, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, sym_type_parameters, - STATE(2462), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1765), 3, + ACTIONS(1791), 2, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5136), 3, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2456), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5008), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5140), 3, + ACTIONS(5012), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5138), 5, + ACTIONS(5010), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 16, + ACTIONS(1789), 17, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -243736,87 +243309,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61732] = 18, + anon_sym_COLON_EQ, + [61210] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5090), 1, - anon_sym_DOT, - ACTIONS(5092), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(5094), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(5098), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(5100), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(5102), 1, - anon_sym_QMARK_DOT, - ACTIONS(5104), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - STATE(2698), 1, - sym_or_block, - STATE(2702), 1, + ACTIONS(5022), 1, + anon_sym_CARET, + STATE(2351), 1, sym_argument_list, - STATE(4053), 1, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, sym_type_parameters, - STATE(2463), 2, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5032), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2457), 2, sym_line_comment, sym_block_comment, - ACTIONS(5140), 3, + ACTIONS(5008), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5012), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5138), 5, + ACTIONS(5016), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5010), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1765), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(1763), 17, + ACTIONS(1789), 11, anon_sym_as, anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61815] = 5, + anon_sym_COLON_EQ, + [61299] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2878), 1, + ACTIONS(2885), 1, anon_sym_LBRACK, - STATE(2464), 2, + ACTIONS(3039), 1, + anon_sym_DOT, + STATE(2458), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 41, + ACTIONS(2887), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -243853,112 +243431,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61872] = 5, - ACTIONS(497), 1, + [61358] = 30, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2804), 1, - anon_sym_LBRACK, - STATE(2465), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2806), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(1779), 1, + anon_sym_DOT_DOT, + ACTIONS(5074), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5076), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5088), 1, + anon_sym_LBRACK, + ACTIONS(5090), 1, anon_sym_QMARK, + ACTIONS(5092), 1, anon_sym_BANG, + ACTIONS(5094), 1, anon_sym_LBRACK2, + ACTIONS(5100), 1, + anon_sym_QMARK_DOT, + ACTIONS(5102), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5106), 1, + anon_sym_as, + ACTIONS(5108), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5110), 1, + anon_sym_DASH_DASH, + ACTIONS(5114), 1, + anon_sym_or, + ACTIONS(5152), 1, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5154), 1, anon_sym_AMP_AMP, + ACTIONS(5156), 1, anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + STATE(2725), 1, + sym_or_block, + STATE(2731), 1, + sym_argument_list, + STATE(4080), 1, + sym_type_parameters, + ACTIONS(1777), 2, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + ACTIONS(5116), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5148), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5158), 2, anon_sym_in, anon_sym_BANGin, - [61929] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1807), 1, - anon_sym_LBRACK, - ACTIONS(1987), 1, - anon_sym_LBRACE, - STATE(2466), 2, + STATE(2459), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5142), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5146), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5150), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5144), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61988] = 19, + [61465] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -243975,38 +243525,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5016), 1, - anon_sym_CARET, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(1781), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2467), 2, + STATE(2460), 2, sym_line_comment, sym_block_comment, - ACTIONS(5002), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5006), 3, + ACTIONS(5012), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5004), 5, + ACTIONS(1791), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5010), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1779), 17, + ACTIONS(1789), 18, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -244016,6 +243563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -244024,17 +243572,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [62073] = 5, + [61546] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2530), 1, + ACTIONS(2142), 1, anon_sym_LBRACK, - STATE(2468), 2, + STATE(2461), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2137), 6, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2139), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [61605] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2717), 1, + anon_sym_LBRACK, + STATE(2462), 2, sym_line_comment, sym_block_comment, - ACTIONS(2532), 41, + ACTIONS(2719), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244076,17 +243677,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62130] = 5, + [61662] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2511), 1, + ACTIONS(2723), 1, anon_sym_LBRACK, - STATE(2469), 2, + STATE(2463), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 41, + ACTIONS(2725), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244128,17 +243729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62187] = 5, + [61719] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2520), 1, + ACTIONS(2727), 1, anon_sym_LBRACK, - STATE(2470), 2, + STATE(2464), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 41, + ACTIONS(2729), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244180,17 +243781,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62244] = 5, + [61776] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2507), 1, + ACTIONS(2131), 1, anon_sym_LBRACK, - STATE(2471), 2, + STATE(2465), 2, sym_line_comment, sym_block_comment, - ACTIONS(2509), 41, + ACTIONS(2133), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244232,17 +243833,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62301] = 5, + [61833] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1879), 1, + ACTIONS(2735), 1, anon_sym_LBRACK, - STATE(2472), 2, + STATE(2466), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 41, + ACTIONS(2737), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244284,17 +243885,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62358] = 5, + [61890] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2141), 1, + ACTIONS(2743), 1, anon_sym_LBRACK, - STATE(2473), 2, + STATE(2467), 2, sym_line_comment, sym_block_comment, - ACTIONS(2143), 41, + ACTIONS(2745), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244336,17 +243937,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62415] = 5, + [61947] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2231), 1, + ACTIONS(2747), 1, anon_sym_LBRACK, - STATE(2474), 2, + STATE(2468), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 41, + ACTIONS(2749), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244388,17 +243989,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62472] = 5, + [62004] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2844), 1, + ACTIONS(2799), 1, anon_sym_LBRACK, - STATE(2475), 2, + STATE(2469), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 41, + ACTIONS(2801), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244440,17 +244041,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62529] = 5, + [62061] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3042), 1, + ACTIONS(2807), 1, anon_sym_LBRACK, - STATE(2476), 2, + STATE(2470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3044), 41, + ACTIONS(2809), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244492,17 +244093,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62586] = 5, + [62118] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, + ACTIONS(2811), 1, anon_sym_LBRACK, - STATE(2477), 2, + STATE(2471), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 41, + ACTIONS(2813), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244544,17 +244145,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62643] = 5, + [62175] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2726), 1, + ACTIONS(2815), 1, anon_sym_LBRACK, - STATE(2478), 2, + STATE(2472), 2, sym_line_comment, sym_block_comment, - ACTIONS(2728), 41, + ACTIONS(2817), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244596,17 +244197,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62700] = 5, + [62232] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2856), 1, + ACTIONS(2853), 1, anon_sym_LBRACK, - STATE(2479), 2, + STATE(2473), 2, sym_line_comment, sym_block_comment, - ACTIONS(2858), 41, + ACTIONS(2855), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244648,17 +244249,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62757] = 5, + [62289] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1765), 1, + anon_sym_DOT_DOT, + ACTIONS(5074), 1, + anon_sym_DOT, + ACTIONS(5076), 1, + anon_sym_LPAREN, + ACTIONS(5088), 1, + anon_sym_LBRACK, + ACTIONS(5090), 1, + anon_sym_QMARK, + ACTIONS(5092), 1, + anon_sym_BANG, + ACTIONS(5094), 1, + anon_sym_LBRACK2, + ACTIONS(5100), 1, + anon_sym_QMARK_DOT, + ACTIONS(5102), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5106), 1, + anon_sym_as, + ACTIONS(5108), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5110), 1, + anon_sym_DASH_DASH, + ACTIONS(5114), 1, + anon_sym_or, + ACTIONS(5152), 1, + anon_sym_CARET, + ACTIONS(5154), 1, + anon_sym_AMP_AMP, + ACTIONS(5156), 1, + anon_sym_PIPE_PIPE, + STATE(2725), 1, + sym_or_block, + STATE(2731), 1, + sym_argument_list, + STATE(4080), 1, + sym_type_parameters, + ACTIONS(1763), 2, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + ACTIONS(5116), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5148), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5158), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2474), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5142), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5146), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5150), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5144), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [62396] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2173), 1, anon_sym_LBRACK, - STATE(2480), 2, + STATE(2475), 2, sym_line_comment, sym_block_comment, - ACTIONS(2854), 41, + ACTIONS(2175), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244700,17 +244378,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62814] = 5, + [62453] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2694), 1, + ACTIONS(3023), 1, anon_sym_LBRACK, - STATE(2481), 2, + STATE(2476), 2, sym_line_comment, sym_block_comment, - ACTIONS(2696), 41, + ACTIONS(3025), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244752,17 +244430,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62871] = 5, + [62510] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2503), 1, + ACTIONS(3027), 1, anon_sym_LBRACK, - STATE(2482), 2, + STATE(2477), 2, sym_line_comment, sym_block_comment, - ACTIONS(2505), 41, + ACTIONS(3029), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244804,17 +244482,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62928] = 5, + [62567] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2536), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - STATE(2483), 2, + STATE(2478), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 41, + ACTIONS(3046), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244856,17 +244534,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62985] = 5, + [62624] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2465), 1, + ACTIONS(2149), 1, anon_sym_LBRACK, - STATE(2484), 2, + STATE(2479), 2, sym_line_comment, sym_block_comment, - ACTIONS(2467), 41, + ACTIONS(2151), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244908,17 +244586,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63042] = 5, + [62681] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2461), 1, + ACTIONS(3050), 1, anon_sym_LBRACK, - STATE(2485), 2, + STATE(2480), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 41, + ACTIONS(3052), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244960,17 +244638,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63099] = 5, + [62738] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2313), 1, + ACTIONS(3054), 1, anon_sym_LBRACK, - STATE(2486), 2, + STATE(2481), 2, sym_line_comment, sym_block_comment, - ACTIONS(2315), 41, + ACTIONS(3056), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245012,23 +244690,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63156] = 6, + [62795] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2511), 1, + ACTIONS(2179), 1, anon_sym_LBRACK, - ACTIONS(2515), 1, - anon_sym_DOT, - STATE(2487), 2, + STATE(2482), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 40, + ACTIONS(2181), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -245065,92 +244742,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63215] = 28, - ACTIONS(3), 1, + [62852] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(2819), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + STATE(2483), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2821), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - ACTIONS(5012), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5166), 1, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, - ACTIONS(5168), 1, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5170), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5162), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5172), 2, anon_sym_in, anon_sym_BANGin, - STATE(2488), 2, + [62909] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2705), 1, + anon_sym_LBRACK, + STATE(2484), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 3, + ACTIONS(2707), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5156), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5160), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5164), 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(5158), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [63318] = 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, + [62966] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3060), 1, + ACTIONS(2473), 1, anon_sym_LBRACK, - STATE(2489), 2, + STATE(2485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3062), 41, + ACTIONS(2475), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245192,17 +244898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63375] = 5, + [63023] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2201), 1, + ACTIONS(2461), 1, anon_sym_LBRACK, - STATE(2490), 2, + STATE(2486), 2, sym_line_comment, sym_block_comment, - ACTIONS(2203), 41, + ACTIONS(2463), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245244,17 +244950,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63432] = 5, + [63080] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2209), 1, + ACTIONS(2455), 1, anon_sym_LBRACK, - STATE(2491), 2, + STATE(2487), 2, sym_line_comment, sym_block_comment, - ACTIONS(2211), 41, + ACTIONS(2457), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245296,17 +245002,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63489] = 5, + [63137] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_CARET, + ACTIONS(5024), 1, + anon_sym_AMP_AMP, + ACTIONS(5026), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5028), 1, + anon_sym_or, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5032), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2488), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1763), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5008), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5012), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5016), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5010), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [63240] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2123), 1, + ACTIONS(2505), 1, anon_sym_LBRACK, - STATE(2492), 2, + STATE(2489), 2, sym_line_comment, sym_block_comment, - ACTIONS(2125), 41, + ACTIONS(2507), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245348,17 +245129,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63546] = 5, + [63297] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2766), 1, + ACTIONS(2861), 1, anon_sym_LBRACK, - STATE(2493), 2, + STATE(2490), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 41, + ACTIONS(2863), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245400,17 +245181,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63603] = 5, + [63354] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, + anon_sym_CARET, + ACTIONS(5024), 1, + anon_sym_AMP_AMP, + ACTIONS(5026), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5028), 1, + anon_sym_or, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5032), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2491), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1777), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5008), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5012), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5016), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5010), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [63457] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2227), 1, anon_sym_LBRACK, - STATE(2494), 2, + STATE(2492), 2, sym_line_comment, sym_block_comment, - ACTIONS(2303), 41, + ACTIONS(2229), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245452,11 +245308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63660] = 19, + [63514] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(3488), 1, + anon_sym_LBRACE, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, @@ -245469,56 +245327,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5166), 1, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5022), 1, anon_sym_CARET, - STATE(2298), 1, + ACTIONS(5024), 1, + anon_sym_AMP_AMP, + ACTIONS(5026), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5160), 1, + anon_sym_COMMA, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(3835), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(1781), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2495), 2, + ACTIONS(5014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5032), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2493), 2, sym_line_comment, sym_block_comment, - ACTIONS(5156), 3, + ACTIONS(5008), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5160), 3, + ACTIONS(5012), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5158), 5, + ACTIONS(5016), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5010), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1779), 17, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [63745] = 17, + [63621] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -245535,37 +245402,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - STATE(2298), 1, + ACTIONS(5022), 1, + anon_sym_CARET, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, + ACTIONS(1787), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2496), 2, + STATE(2494), 2, sym_line_comment, sym_block_comment, - ACTIONS(5160), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1765), 5, + ACTIONS(5008), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5158), 5, + ACTIONS(5012), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5010), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 18, - anon_sym_SEMI, + ACTIONS(1785), 17, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -245573,7 +245443,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, @@ -245582,17 +245451,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [63826] = 5, + [63706] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2309), 1, + ACTIONS(2183), 1, anon_sym_LBRACK, - STATE(2497), 2, + STATE(2495), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 41, + ACTIONS(2185), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245634,17 +245503,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63883] = 5, + [63763] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3056), 1, + ACTIONS(2437), 1, anon_sym_LBRACK, - STATE(2498), 2, + STATE(2496), 2, sym_line_comment, sym_block_comment, - ACTIONS(3058), 41, + ACTIONS(2439), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245686,154 +245555,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63940] = 19, - ACTIONS(3), 1, + [63820] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(2187), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5166), 1, - anon_sym_CARET, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(1765), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2499), 2, + STATE(2497), 2, sym_line_comment, sym_block_comment, - ACTIONS(5156), 3, + ACTIONS(2189), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5160), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5158), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1763), 17, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [64025] = 24, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1765), 1, - anon_sym_DOT_DOT, - ACTIONS(5090), 1, - anon_sym_DOT, - ACTIONS(5092), 1, - anon_sym_LPAREN, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5096), 1, anon_sym_QMARK, - ACTIONS(5098), 1, anon_sym_BANG, - ACTIONS(5100), 1, anon_sym_LBRACK2, - ACTIONS(5102), 1, - anon_sym_QMARK_DOT, - ACTIONS(5104), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5146), 1, anon_sym_CARET, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - STATE(2698), 1, - sym_or_block, - STATE(2702), 1, - sym_argument_list, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(5142), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5152), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2500), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5136), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5140), 3, - anon_sym_SLASH, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5144), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5138), 5, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 9, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - [64120] = 5, + anon_sym_in, + anon_sym_BANGin, + [63877] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2499), 1, + ACTIONS(2255), 1, anon_sym_LBRACK, - STATE(2501), 2, + STATE(2498), 2, sym_line_comment, sym_block_comment, - ACTIONS(2501), 41, + ACTIONS(2257), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245875,7 +245659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64177] = 21, + [63934] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -245892,68 +245676,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5166), 1, - anon_sym_CARET, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5162), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5172), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2502), 2, + STATE(2499), 2, sym_line_comment, sym_block_comment, - ACTIONS(5156), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5160), 3, + ACTIONS(5164), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5164), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5158), 5, + ACTIONS(1791), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5162), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 11, + ACTIONS(1789), 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, - [64266] = 5, + [64015] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2716), 1, + ACTIONS(2239), 1, anon_sym_LBRACK, - STATE(2503), 2, + STATE(2500), 2, sym_line_comment, sym_block_comment, - ACTIONS(2718), 41, + ACTIONS(2241), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245995,17 +245775,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64323] = 5, + [64072] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2780), 1, + ACTIONS(2231), 1, anon_sym_LBRACK, - STATE(2504), 2, + STATE(2501), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 41, + ACTIONS(2233), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246047,86 +245827,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64380] = 22, + [64129] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5166), 1, - anon_sym_CARET, - ACTIONS(5168), 1, - anon_sym_AMP_AMP, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5162), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5172), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2505), 2, + STATE(2502), 2, sym_line_comment, sym_block_comment, - ACTIONS(5156), 3, + ACTIONS(1809), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5160), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5164), 4, + anon_sym_DOT_DOT, + ACTIONS(1807), 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, - ACTIONS(5158), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 10, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, - anon_sym_COLON_EQ, - [64471] = 5, + anon_sym_in, + anon_sym_BANGin, + [64186] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2792), 1, + ACTIONS(2117), 1, anon_sym_LBRACK, - STATE(2506), 2, + STATE(2503), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 41, + ACTIONS(2119), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246168,17 +245931,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64528] = 5, + [64243] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2830), 1, + ACTIONS(2451), 1, anon_sym_LBRACK, - STATE(2507), 2, + STATE(2504), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 41, + ACTIONS(2453), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246220,17 +245983,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64585] = 5, + [64300] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2848), 1, + ACTIONS(2199), 1, anon_sym_LBRACK, - STATE(2508), 2, + STATE(2505), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 41, + ACTIONS(2201), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246272,17 +246035,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64642] = 5, + [64357] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2904), 1, + ACTIONS(3064), 1, anon_sym_LBRACK, - STATE(2509), 2, + STATE(2506), 2, sym_line_comment, sym_block_comment, - ACTIONS(2906), 41, + ACTIONS(3066), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246324,17 +246087,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64699] = 5, + [64414] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, + ACTIONS(2153), 1, anon_sym_LBRACK, - STATE(2510), 2, + STATE(2507), 2, sym_line_comment, sym_block_comment, - ACTIONS(2924), 41, + ACTIONS(2155), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246376,17 +246139,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64756] = 5, + [64471] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2900), 1, + ACTIONS(2157), 1, anon_sym_LBRACK, - STATE(2511), 2, + STATE(2508), 2, sym_line_comment, sym_block_comment, - ACTIONS(2902), 41, + ACTIONS(2159), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246428,17 +246191,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64813] = 5, + [64528] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2872), 1, + ACTIONS(3019), 1, anon_sym_LBRACK, - STATE(2512), 2, + STATE(2509), 2, sym_line_comment, sym_block_comment, - ACTIONS(2874), 41, + ACTIONS(3021), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246480,17 +246243,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64870] = 5, + [64585] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5168), 1, + anon_sym_CARET, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(1791), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2510), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5164), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5166), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5162), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1789), 17, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [64670] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2860), 1, + ACTIONS(3013), 1, anon_sym_LBRACK, - STATE(2513), 2, + STATE(2511), 2, sym_line_comment, sym_block_comment, - ACTIONS(2862), 41, + ACTIONS(3015), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246532,17 +246361,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64927] = 5, + [64727] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2197), 1, + ACTIONS(3009), 1, anon_sym_LBRACK, - STATE(2514), 2, + STATE(2512), 2, sym_line_comment, sym_block_comment, - ACTIONS(2199), 41, + ACTIONS(3011), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246584,47 +246413,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64984] = 5, - ACTIONS(497), 1, + [64784] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2227), 1, - anon_sym_LBRACK, - STATE(2515), 2, + ACTIONS(2137), 1, + anon_sym_DOT_DOT, + STATE(2513), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2135), 5, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON_EQ, + ACTIONS(2139), 12, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2142), 24, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -246636,22 +246467,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65041] = 5, + [64845] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2666), 1, + ACTIONS(2057), 1, + anon_sym_DOT, + ACTIONS(2157), 1, anon_sym_LBRACK, - STATE(2516), 2, + STATE(2514), 2, sym_line_comment, sym_block_comment, - ACTIONS(2668), 41, + ACTIONS(2159), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -246688,69 +246520,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65098] = 5, - ACTIONS(497), 1, + [64904] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2776), 1, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, anon_sym_LBRACK, - STATE(2517), 2, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5168), 1, + anon_sym_CARET, + ACTIONS(5174), 1, + anon_sym_AMP_AMP, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5170), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5176), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2515), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5164), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5166), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5172), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5162), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1789), 10, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_COLON_EQ, + [64995] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5074), 1, + anon_sym_DOT, + ACTIONS(5076), 1, + anon_sym_LPAREN, + ACTIONS(5088), 1, + anon_sym_LBRACK, + ACTIONS(5090), 1, anon_sym_QMARK, + ACTIONS(5092), 1, anon_sym_BANG, + ACTIONS(5094), 1, anon_sym_LBRACK2, + ACTIONS(5100), 1, + anon_sym_QMARK_DOT, + ACTIONS(5102), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5152), 1, anon_sym_CARET, + STATE(2725), 1, + sym_or_block, + STATE(2731), 1, + sym_argument_list, + STATE(4080), 1, + sym_type_parameters, + STATE(2516), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1787), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5142), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5146), 3, + anon_sym_SLASH, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5144), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1785), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65155] = 5, + [65082] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3066), 1, + ACTIONS(2885), 1, anon_sym_LBRACK, - STATE(2518), 2, + STATE(2517), 2, sym_line_comment, sym_block_comment, - ACTIONS(3068), 41, + ACTIONS(2887), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246792,17 +246708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65212] = 5, + [65139] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2770), 1, + ACTIONS(2857), 1, anon_sym_LBRACK, - STATE(2519), 2, + STATE(2518), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 41, + ACTIONS(2859), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246844,17 +246760,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65269] = 5, + [65196] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1791), 1, + anon_sym_DOT_DOT, + ACTIONS(5074), 1, + anon_sym_DOT, + ACTIONS(5076), 1, + anon_sym_LPAREN, + ACTIONS(5088), 1, + anon_sym_LBRACK, + ACTIONS(5090), 1, + anon_sym_QMARK, + ACTIONS(5092), 1, + anon_sym_BANG, + ACTIONS(5094), 1, + anon_sym_LBRACK2, + ACTIONS(5100), 1, + anon_sym_QMARK_DOT, + ACTIONS(5102), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5152), 1, + anon_sym_CARET, + ACTIONS(5154), 1, + anon_sym_AMP_AMP, + STATE(2725), 1, + sym_or_block, + STATE(2731), 1, + sym_argument_list, + STATE(4080), 1, + sym_type_parameters, + ACTIONS(5148), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5158), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2519), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5142), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5146), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5150), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5144), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1789), 9, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [65291] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2473), 1, + ACTIONS(2845), 1, anon_sym_LBRACK, STATE(2520), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 41, + ACTIONS(2847), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246896,17 +246883,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65326] = 5, + [65348] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2896), 1, + ACTIONS(2841), 1, anon_sym_LBRACK, STATE(2521), 2, sym_line_comment, sym_block_comment, - ACTIONS(2898), 41, + ACTIONS(2843), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246948,92 +246935,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65383] = 28, + [65405] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(1791), 1, + anon_sym_DOT_DOT, + ACTIONS(5074), 1, + anon_sym_DOT, + ACTIONS(5076), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(5088), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(5090), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(5092), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(5094), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(5100), 1, + anon_sym_QMARK_DOT, + ACTIONS(5102), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_CARET, - ACTIONS(5168), 1, - anon_sym_AMP_AMP, - ACTIONS(5170), 1, - anon_sym_PIPE_PIPE, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, + STATE(2725), 1, sym_or_block, - STATE(4251), 1, + STATE(2731), 1, + sym_argument_list, + STATE(4080), 1, sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5162), 2, + ACTIONS(5148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5172), 2, + ACTIONS(5158), 2, anon_sym_in, anon_sym_BANGin, STATE(2522), 2, sym_line_comment, sym_block_comment, - ACTIONS(1793), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5156), 3, + ACTIONS(5142), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5160), 3, + ACTIONS(5146), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5164), 4, + ACTIONS(5150), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5158), 5, + ACTIONS(5144), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65486] = 5, + ACTIONS(1789), 10, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [65498] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2892), 1, + ACTIONS(2777), 1, anon_sym_LBRACK, STATE(2523), 2, sym_line_comment, sym_block_comment, - ACTIONS(2894), 41, + ACTIONS(2779), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247075,17 +247057,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65543] = 5, + [65555] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2888), 1, + ACTIONS(2773), 1, anon_sym_LBRACK, STATE(2524), 2, sym_line_comment, sym_block_comment, - ACTIONS(2890), 41, + ACTIONS(2775), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247127,17 +247109,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65600] = 5, + [65612] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2267), 1, + ACTIONS(2761), 1, anon_sym_LBRACK, STATE(2525), 2, sym_line_comment, sym_block_comment, - ACTIONS(2269), 41, + ACTIONS(2763), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247179,95 +247161,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65657] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5090), 1, - anon_sym_DOT, - ACTIONS(5092), 1, - anon_sym_LPAREN, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_QMARK, - ACTIONS(5098), 1, - anon_sym_BANG, - ACTIONS(5100), 1, - anon_sym_LBRACK2, - ACTIONS(5102), 1, - anon_sym_QMARK_DOT, - ACTIONS(5104), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5124), 1, - anon_sym_as, - ACTIONS(5126), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5128), 1, - anon_sym_DASH_DASH, - ACTIONS(5132), 1, - anon_sym_or, - ACTIONS(5146), 1, - anon_sym_CARET, - ACTIONS(5148), 1, - anon_sym_AMP_AMP, - ACTIONS(5150), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5174), 1, - anon_sym_LBRACE, - ACTIONS(5176), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5178), 1, - anon_sym_DOT_DOT, - STATE(2698), 1, - sym_or_block, - STATE(2702), 1, - sym_argument_list, - STATE(4053), 1, - sym_type_parameters, - ACTIONS(5134), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5142), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5152), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2526), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5136), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5140), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5144), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5138), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [65766] = 5, + [65669] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2469), 1, + ACTIONS(2087), 1, anon_sym_LBRACK, - STATE(2527), 2, + STATE(2526), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 41, + ACTIONS(2089), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247309,17 +247213,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65823] = 5, + [65726] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3048), 1, + ACTIONS(2739), 1, anon_sym_LBRACK, - STATE(2528), 2, + STATE(2527), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 41, + ACTIONS(2741), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247361,69 +247265,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65880] = 5, - ACTIONS(497), 1, + [65783] = 20, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2834), 1, + ACTIONS(5074), 1, + anon_sym_DOT, + ACTIONS(5076), 1, + anon_sym_LPAREN, + ACTIONS(5088), 1, anon_sym_LBRACK, - STATE(2529), 2, + ACTIONS(5090), 1, + anon_sym_QMARK, + ACTIONS(5092), 1, + anon_sym_BANG, + ACTIONS(5094), 1, + anon_sym_LBRACK2, + ACTIONS(5100), 1, + anon_sym_QMARK_DOT, + ACTIONS(5102), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5152), 1, + anon_sym_CARET, + STATE(2725), 1, + sym_or_block, + STATE(2731), 1, + sym_argument_list, + STATE(4080), 1, + sym_type_parameters, + STATE(2528), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1791), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5142), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5146), 3, anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5144), 5, + anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1789), 16, + anon_sym_as, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [65870] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5074), 1, + anon_sym_DOT, + ACTIONS(5076), 1, + anon_sym_LPAREN, + ACTIONS(5088), 1, + anon_sym_LBRACK, + ACTIONS(5090), 1, anon_sym_QMARK, + ACTIONS(5092), 1, anon_sym_BANG, + ACTIONS(5094), 1, anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(5100), 1, + anon_sym_QMARK_DOT, + ACTIONS(5102), 1, + anon_sym_POUND_LBRACK, + STATE(2725), 1, + sym_or_block, + STATE(2731), 1, + sym_argument_list, + STATE(4080), 1, + sym_type_parameters, + STATE(2529), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5146), 3, + anon_sym_SLASH, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5144), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1791), 6, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(1789), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65937] = 5, + [65953] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2826), 1, + ACTIONS(2889), 1, anon_sym_LBRACK, STATE(2530), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 41, + ACTIONS(2891), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247465,17 +247449,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65994] = 5, + [66010] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2822), 1, + ACTIONS(2583), 1, anon_sym_LBRACK, + ACTIONS(5178), 1, + anon_sym_BANG, STATE(2531), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 41, + ACTIONS(2585), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247500,7 +247486,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -247517,17 +247502,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66051] = 5, + [66069] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5168), 1, + anon_sym_CARET, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5170), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5176), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2532), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5164), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5166), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5172), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5162), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1789), 11, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_COLON_EQ, + [66158] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2800), 1, + ACTIONS(2425), 1, anon_sym_LBRACK, - STATE(2532), 2, + STATE(2533), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 41, + ACTIONS(2427), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247569,17 +247622,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66108] = 5, + [66215] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2796), 1, + ACTIONS(2203), 1, anon_sym_LBRACK, - STATE(2533), 2, + STATE(2534), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 41, + ACTIONS(2205), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247621,17 +247674,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66165] = 5, + [66272] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2786), 1, + ACTIONS(1897), 1, anon_sym_LBRACK, - STATE(2534), 2, + STATE(2535), 2, sym_line_comment, sym_block_comment, - ACTIONS(2788), 41, + ACTIONS(1899), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247673,17 +247726,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66222] = 5, + [66329] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2908), 1, + ACTIONS(2053), 1, anon_sym_LBRACK, - STATE(2535), 2, + STATE(2536), 2, sym_line_comment, sym_block_comment, - ACTIONS(2910), 41, + ACTIONS(2055), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247725,7 +247778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66279] = 28, + [66386] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -247742,75 +247795,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5016), 1, + ACTIONS(5022), 1, anon_sym_CARET, - ACTIONS(5018), 1, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(5020), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, - anon_sym_or, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5008), 2, + ACTIONS(5014), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5026), 2, + ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - STATE(2536), 2, + STATE(2537), 2, sym_line_comment, sym_block_comment, - ACTIONS(1793), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5002), 3, + ACTIONS(5008), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5006), 3, + ACTIONS(5012), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5010), 4, + ACTIONS(5016), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5004), 5, + ACTIONS(5010), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66382] = 5, + ACTIONS(1789), 10, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_COLON_EQ, + [66477] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2884), 1, + ACTIONS(2207), 1, anon_sym_LBRACK, - STATE(2537), 2, + STATE(2538), 2, sym_line_comment, sym_block_comment, - ACTIONS(2886), 41, + ACTIONS(2209), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247852,17 +247899,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66439] = 5, + [66534] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2730), 1, + ACTIONS(2831), 1, anon_sym_LBRACK, - STATE(2538), 2, + STATE(2539), 2, sym_line_comment, sym_block_comment, - ACTIONS(2732), 41, + ACTIONS(2833), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247904,21 +247951,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66496] = 5, + [66591] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2678), 1, + ACTIONS(2029), 1, + anon_sym_LBRACE, + ACTIONS(2713), 1, anon_sym_LBRACK, - STATE(2539), 2, + STATE(2540), 2, sym_line_comment, sym_block_comment, - ACTIONS(2680), 41, + ACTIONS(2715), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -247956,45 +248004,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66553] = 5, - ACTIONS(3), 1, + [66650] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(2540), 2, + ACTIONS(2211), 1, + anon_sym_LBRACK, + STATE(2541), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 13, + ACTIONS(2213), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1807), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -248002,228 +248052,73 @@ 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, - [66610] = 22, - ACTIONS(3), 1, + [66707] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(2215), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5016), 1, - anon_sym_CARET, - ACTIONS(5018), 1, - anon_sym_AMP_AMP, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5008), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5026), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2541), 2, + STATE(2542), 2, sym_line_comment, sym_block_comment, - ACTIONS(5002), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5006), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5010), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5004), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1763), 10, + ACTIONS(2217), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_COLON_EQ, - [66701] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5016), 1, - anon_sym_CARET, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5008), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5026), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2542), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5002), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5006), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5010), 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(5004), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1763), 11, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_COLON_EQ, - [66790] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5016), 1, anon_sym_CARET, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(1765), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2543), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5002), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5006), 3, - anon_sym_SLASH, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5004), 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(1763), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [66875] = 6, + [66764] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2540), 1, + ACTIONS(2219), 1, anon_sym_LBRACK, - ACTIONS(5180), 1, - anon_sym_BANG, - STATE(2544), 2, + STATE(2543), 2, sym_line_comment, sym_block_comment, - ACTIONS(2542), 40, + ACTIONS(2221), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248248,6 +248143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -248264,17 +248160,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66934] = 5, + [66821] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2682), 1, + ACTIONS(2223), 1, anon_sym_LBRACK, - STATE(2545), 2, + STATE(2544), 2, sym_line_comment, sym_block_comment, - ACTIONS(2684), 41, + ACTIONS(2225), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248316,17 +248212,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66991] = 5, + [66878] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2754), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - STATE(2546), 2, + STATE(2545), 2, sym_line_comment, sym_block_comment, - ACTIONS(2756), 41, + ACTIONS(2265), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248368,7 +248264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67048] = 17, + [66935] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -248385,96 +248281,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - STATE(2298), 1, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5168), 1, + anon_sym_CARET, + ACTIONS(5174), 1, + anon_sym_AMP_AMP, + ACTIONS(5180), 1, + anon_sym_PIPE_PIPE, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2547), 2, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5170), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5176), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2546), 2, sym_line_comment, sym_block_comment, - ACTIONS(5006), 3, + ACTIONS(3534), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5164), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1765), 5, + ACTIONS(5166), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5004), 5, + ACTIONS(5172), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5162), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 18, + [67038] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2243), 1, + anon_sym_LBRACK, + STATE(2547), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2245), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [67129] = 7, - ACTIONS(3), 1, + [67095] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2217), 1, - anon_sym_DOT_DOT, + ACTIONS(2145), 1, + anon_sym_LBRACK, STATE(2548), 2, sym_line_comment, sym_block_comment, - ACTIONS(2215), 5, + ACTIONS(2147), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON_EQ, - ACTIONS(2219), 12, anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2222), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -248486,17 +248443,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67190] = 5, + [67152] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2686), 1, + ACTIONS(2031), 1, anon_sym_LBRACK, STATE(2549), 2, sym_line_comment, sym_block_comment, - ACTIONS(2688), 41, + ACTIONS(2029), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248538,92 +248495,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67247] = 28, - ACTIONS(3), 1, + [67209] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(2113), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5166), 1, - anon_sym_CARET, - ACTIONS(5168), 1, - anon_sym_AMP_AMP, - ACTIONS(5170), 1, - anon_sym_PIPE_PIPE, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5162), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5172), 2, - anon_sym_in, - anon_sym_BANGin, STATE(2550), 2, sym_line_comment, sym_block_comment, - ACTIONS(1771), 3, + ACTIONS(2115), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5156), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5160), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5164), 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(5158), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67350] = 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, + [67266] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2748), 1, + ACTIONS(2469), 1, anon_sym_LBRACK, STATE(2551), 2, sym_line_comment, sym_block_comment, - ACTIONS(2750), 41, + ACTIONS(2471), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248665,17 +248599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67407] = 5, + [67323] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2742), 1, + ACTIONS(2161), 1, anon_sym_LBRACK, STATE(2552), 2, sym_line_comment, sym_block_comment, - ACTIONS(2744), 41, + ACTIONS(2163), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248717,17 +248651,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67464] = 5, + [67380] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2722), 1, + ACTIONS(2545), 1, anon_sym_LBRACK, STATE(2553), 2, sym_line_comment, sym_block_comment, - ACTIONS(2724), 41, + ACTIONS(2547), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248769,17 +248703,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67521] = 5, + [67437] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2135), 1, + ACTIONS(2429), 1, anon_sym_LBRACK, STATE(2554), 2, sym_line_comment, sym_block_comment, - ACTIONS(2137), 41, + ACTIONS(2431), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248821,94 +248755,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67578] = 30, + [67494] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2095), 1, + anon_sym_LBRACK, + STATE(2555), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2097), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [67551] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1773), 1, - anon_sym_DOT_DOT, - ACTIONS(5090), 1, - anon_sym_DOT, - ACTIONS(5092), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(5094), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(5098), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(5100), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(5102), 1, - anon_sym_QMARK_DOT, - ACTIONS(5104), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5126), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5128), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5132), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5146), 1, + ACTIONS(5168), 1, anon_sym_CARET, - ACTIONS(5148), 1, + ACTIONS(5174), 1, anon_sym_AMP_AMP, - ACTIONS(5150), 1, + ACTIONS(5180), 1, anon_sym_PIPE_PIPE, - STATE(2698), 1, - sym_or_block, - STATE(2702), 1, + STATE(2351), 1, sym_argument_list, - STATE(4053), 1, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, sym_type_parameters, - ACTIONS(1771), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(5134), 2, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5142), 2, + ACTIONS(5170), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5152), 2, + ACTIONS(5176), 2, anon_sym_in, anon_sym_BANGin, - STATE(2555), 2, + STATE(2556), 2, sym_line_comment, sym_block_comment, - ACTIONS(5136), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5140), 3, + ACTIONS(1777), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5164), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5144), 4, + ACTIONS(5166), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5172), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5138), 5, + ACTIONS(5162), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67685] = 5, + [67654] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2712), 1, + ACTIONS(2121), 1, anon_sym_LBRACK, - STATE(2556), 2, + STATE(2557), 2, sym_line_comment, sym_block_comment, - ACTIONS(2714), 41, + ACTIONS(2123), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248950,23 +248934,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67742] = 6, + [67711] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5168), 1, + anon_sym_CARET, + ACTIONS(5174), 1, + anon_sym_AMP_AMP, + ACTIONS(5180), 1, + anon_sym_PIPE_PIPE, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5170), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5176), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2558), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1763), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5164), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5166), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5172), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5162), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [67814] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1891), 1, - anon_sym_DOT, - ACTIONS(2473), 1, + ACTIONS(2125), 1, anon_sym_LBRACK, - STATE(2557), 2, + STATE(2559), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 40, + ACTIONS(2127), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -249003,94 +249061,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67801] = 30, - ACTIONS(3), 1, + [67871] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3484), 1, - anon_sym_LBRACE, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(2103), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5016), 1, - anon_sym_CARET, - ACTIONS(5018), 1, - anon_sym_AMP_AMP, - ACTIONS(5020), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5182), 1, - anon_sym_COMMA, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(3764), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5008), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5026), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2558), 2, + STATE(2560), 2, sym_line_comment, sym_block_comment, - ACTIONS(5002), 3, + ACTIONS(2105), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5006), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5010), 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(5004), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67908] = 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, + [67928] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2708), 1, + ACTIONS(2247), 1, anon_sym_LBRACK, - STATE(2559), 2, + STATE(2561), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 41, + ACTIONS(2249), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249132,17 +249165,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67965] = 5, + [67985] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2113), 1, + ACTIONS(2251), 1, anon_sym_LBRACK, - STATE(2560), 2, + STATE(2562), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 41, + ACTIONS(2253), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249184,17 +249217,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68022] = 5, + [68042] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2698), 1, + ACTIONS(2259), 1, anon_sym_LBRACK, - STATE(2561), 2, + STATE(2563), 2, sym_line_comment, sym_block_comment, - ACTIONS(2700), 41, + ACTIONS(2261), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249236,17 +249269,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68079] = 5, + [68099] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2147), 1, + ACTIONS(2267), 1, anon_sym_LBRACK, - STATE(2562), 2, + STATE(2564), 2, sym_line_comment, sym_block_comment, - ACTIONS(2149), 41, + ACTIONS(2269), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249288,17 +249321,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68136] = 5, + [68156] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1989), 1, + ACTIONS(2803), 1, anon_sym_LBRACK, - STATE(2563), 2, + STATE(2565), 2, sym_line_comment, sym_block_comment, - ACTIONS(1987), 41, + ACTIONS(2805), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249340,17 +249373,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68193] = 5, + [68213] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2690), 1, + ACTIONS(2875), 1, anon_sym_LBRACK, - STATE(2564), 2, + STATE(2566), 2, sym_line_comment, sym_block_comment, - ACTIONS(2692), 41, + ACTIONS(2877), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249392,17 +249425,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68250] = 5, + [68270] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2738), 1, + ACTIONS(2091), 1, anon_sym_LBRACK, - STATE(2565), 2, + STATE(2567), 2, sym_line_comment, sym_block_comment, - ACTIONS(2740), 41, + ACTIONS(2093), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249444,17 +249477,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68307] = 5, + [68327] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2734), 1, + ACTIONS(2849), 1, anon_sym_LBRACK, - STATE(2566), 2, + STATE(2568), 2, sym_line_comment, sym_block_comment, - ACTIONS(2736), 41, + ACTIONS(2851), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249496,17 +249529,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68364] = 5, + [68384] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2189), 1, + ACTIONS(2769), 1, anon_sym_LBRACK, - STATE(2567), 2, + STATE(2569), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 41, + ACTIONS(2771), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249548,17 +249581,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68421] = 5, + [68441] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2838), 1, + ACTIONS(2765), 1, anon_sym_LBRACK, - STATE(2568), 2, + STATE(2570), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 41, + ACTIONS(2767), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249600,17 +249633,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68478] = 5, + [68498] = 31, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5074), 1, + anon_sym_DOT, + ACTIONS(5076), 1, + anon_sym_LPAREN, + ACTIONS(5088), 1, + anon_sym_LBRACK, + ACTIONS(5090), 1, + anon_sym_QMARK, + ACTIONS(5092), 1, + anon_sym_BANG, + ACTIONS(5094), 1, + anon_sym_LBRACK2, + ACTIONS(5100), 1, + anon_sym_QMARK_DOT, + ACTIONS(5102), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5106), 1, + anon_sym_as, + ACTIONS(5108), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5110), 1, + anon_sym_DASH_DASH, + ACTIONS(5114), 1, + anon_sym_or, + ACTIONS(5152), 1, + anon_sym_CARET, + ACTIONS(5154), 1, + anon_sym_AMP_AMP, + ACTIONS(5156), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5182), 1, + anon_sym_LBRACE, + ACTIONS(5184), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5186), 1, + anon_sym_DOT_DOT, + STATE(2725), 1, + sym_or_block, + STATE(2731), 1, + sym_argument_list, + STATE(4080), 1, + sym_type_parameters, + ACTIONS(5116), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5148), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5158), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2571), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5142), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5146), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5150), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5144), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [68607] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2291), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - STATE(2569), 2, + STATE(2572), 2, sym_line_comment, sym_block_comment, - ACTIONS(2293), 41, + ACTIONS(2101), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249652,17 +249763,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68535] = 5, + [68664] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2305), 1, + ACTIONS(2271), 1, anon_sym_LBRACK, - STATE(2570), 2, + STATE(2573), 2, sym_line_comment, sym_block_comment, - ACTIONS(2307), 41, + ACTIONS(2273), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249704,88 +249815,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68592] = 20, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5090), 1, - anon_sym_DOT, - ACTIONS(5092), 1, - anon_sym_LPAREN, - ACTIONS(5094), 1, - anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_QMARK, - ACTIONS(5098), 1, - anon_sym_BANG, - ACTIONS(5100), 1, - anon_sym_LBRACK2, - ACTIONS(5102), 1, - anon_sym_QMARK_DOT, - ACTIONS(5104), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5146), 1, - anon_sym_CARET, - STATE(2698), 1, - sym_or_block, - STATE(2702), 1, - sym_argument_list, - STATE(4053), 1, - sym_type_parameters, - STATE(2571), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1781), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5136), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5140), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5138), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1779), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [68679] = 5, + [68721] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2441), 1, + ACTIONS(1807), 1, anon_sym_LBRACK, - STATE(2572), 2, + ACTIONS(2029), 1, + anon_sym_LBRACE, + STATE(2574), 2, sym_line_comment, sym_block_comment, - ACTIONS(2443), 41, + ACTIONS(1809), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -249823,177 +249868,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68736] = 7, + [68780] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5184), 1, - anon_sym_else, - STATE(2671), 1, - sym_else_branch, - STATE(2573), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1805), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1803), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3488), 1, + anon_sym_SEMI, + ACTIONS(4938), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + ACTIONS(4940), 1, anon_sym_LBRACK, - 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, - [68797] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5184), 1, - anon_sym_else, - STATE(2670), 1, - sym_else_branch, - STATE(2574), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1799), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4942), 1, anon_sym_QMARK, + ACTIONS(4944), 1, anon_sym_BANG, + ACTIONS(4946), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1797), 27, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5168), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5174), 1, anon_sym_AMP_AMP, + ACTIONS(5180), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5188), 1, + anon_sym_COMMA, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(3792), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5170), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5176), 2, anon_sym_in, anon_sym_BANGin, - [68858] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2447), 1, - anon_sym_LBRACK, STATE(2575), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5164), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5166), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5172), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5162), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [68915] = 5, + [68887] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2453), 1, + ACTIONS(2421), 1, anon_sym_LBRACK, STATE(2576), 2, sym_line_comment, sym_block_comment, - ACTIONS(2455), 41, + ACTIONS(2423), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -250035,69 +249997,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68972] = 5, - ACTIONS(497), 1, + [68944] = 19, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2670), 1, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5168), 1, + anon_sym_CARET, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(1787), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, STATE(2577), 2, sym_line_comment, sym_block_comment, - ACTIONS(2672), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5164), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5166), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5162), 5, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1785), 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_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + anon_sym_COLON_EQ, [69029] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(2457), 1, + ACTIONS(2835), 1, anon_sym_LBRACK, STATE(2578), 2, sym_line_comment, sym_block_comment, - ACTIONS(2459), 41, + ACTIONS(2837), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -250154,142 +250130,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5186), 1, + ACTIONS(5062), 1, anon_sym_LBRACE, - ACTIONS(5198), 1, - anon_sym_QMARK, ACTIONS(5200), 1, - anon_sym_CARET, + anon_sym_QMARK, ACTIONS(5202), 1, - anon_sym_AMP_AMP, + anon_sym_CARET, ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - STATE(2132), 1, + STATE(1908), 1, sym_block, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, STATE(2579), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69190] = 29, + [69190] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(4936), 1, + anon_sym_DOT, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, ACTIONS(4944), 1, anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5200), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5202), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5204), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - ACTIONS(5208), 1, - anon_sym_LBRACE, ACTIONS(5210), 1, - anon_sym_QMARK, - STATE(981), 1, - sym_block, - STATE(2298), 1, + anon_sym_RBRACK, + ACTIONS(5212), 1, + anon_sym_DOT_DOT, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, STATE(2580), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69294] = 29, + [69296] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -250304,119 +250281,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5200), 1, - anon_sym_CARET, + ACTIONS(5036), 1, + anon_sym_LBRACE, ACTIONS(5202), 1, - anon_sym_AMP_AMP, + anon_sym_CARET, ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5212), 1, - anon_sym_LBRACE, ACTIONS(5214), 1, anon_sym_QMARK, - STATE(235), 1, + STATE(1907), 1, sym_block, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, STATE(2581), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69398] = 6, + [69400] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5070), 1, + anon_sym_LBRACE, + ACTIONS(5202), 1, + anon_sym_CARET, + ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, + anon_sym_PIPE_PIPE, ACTIONS(5216), 1, - anon_sym_DOLLARelse, + anon_sym_QMARK, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(2826), 1, + sym_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5196), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5208), 2, + anon_sym_in, + anon_sym_BANGin, STATE(2582), 2, sym_line_comment, sym_block_comment, - ACTIONS(1843), 13, - anon_sym_DOT, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5194), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1841), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + ACTIONS(5192), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [69504] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4936), 1, + anon_sym_DOT, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5128), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5130), 1, anon_sym_AMP_AMP, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5212), 1, + anon_sym_DOT_DOT, + ACTIONS(5218), 1, + anon_sym_RBRACK, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5124), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - [69456] = 30, + STATE(2583), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5118), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5122), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5126), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5120), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [69610] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -250437,77 +250513,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - ACTIONS(5218), 1, - anon_sym_RBRACK, - ACTIONS(5220), 1, + ACTIONS(5212), 1, anon_sym_DOT_DOT, - STATE(2298), 1, + ACTIONS(5220), 1, + anon_sym_RBRACK, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5078), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - STATE(2583), 2, + STATE(2584), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69562] = 8, + [69716] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5222), 1, + ACTIONS(2060), 1, + anon_sym_LBRACK, + ACTIONS(2157), 1, anon_sym_LBRACE, - ACTIONS(5224), 1, - anon_sym_COMMA, - STATE(3756), 1, - aux_sym_match_expression_list_repeat1, - STATE(2584), 2, + STATE(2585), 2, sym_line_comment, sym_block_comment, - ACTIONS(2532), 13, - anon_sym_DOT, + ACTIONS(2055), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -250519,18 +250592,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2530), 25, + ACTIONS(2053), 28, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, 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, @@ -250546,289 +250620,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69624] = 30, + anon_sym_COLON_EQ, + [69776] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5090), 1, - anon_sym_DOT, - ACTIONS(5092), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(5094), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_QMARK, - ACTIONS(5098), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(5100), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(5102), 1, - anon_sym_QMARK_DOT, - ACTIONS(5104), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5112), 1, - anon_sym_CARET, - ACTIONS(5120), 1, - anon_sym_AMP_AMP, - ACTIONS(5124), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5126), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5128), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5130), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5132), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5226), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5228), 1, - anon_sym_DOT_DOT, - STATE(2698), 1, - sym_or_block, - STATE(2702), 1, + ACTIONS(5054), 1, + anon_sym_LBRACE, + ACTIONS(5202), 1, + anon_sym_CARET, + ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5222), 1, + anon_sym_QMARK, + STATE(2279), 1, + sym_block, + STATE(2351), 1, sym_argument_list, - STATE(4053), 1, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, sym_type_parameters, - ACTIONS(5116), 2, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5122), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5134), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2585), 2, + STATE(2586), 2, sym_line_comment, sym_block_comment, - ACTIONS(5106), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5110), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5118), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5108), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69730] = 29, + [69880] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4719), 1, + ACTIONS(5074), 1, + anon_sym_DOT, + ACTIONS(5076), 1, anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(5088), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, + ACTIONS(5090), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(5092), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(5094), 1, anon_sym_LBRACK2, - ACTIONS(4729), 1, + ACTIONS(5096), 1, + anon_sym_CARET, + ACTIONS(5098), 1, + anon_sym_AMP_AMP, + ACTIONS(5100), 1, + anon_sym_QMARK_DOT, + ACTIONS(5102), 1, anon_sym_POUND_LBRACK, - ACTIONS(4731), 1, + ACTIONS(5106), 1, anon_sym_as, - ACTIONS(4741), 1, + ACTIONS(5108), 1, anon_sym_PLUS_PLUS, - ACTIONS(4743), 1, + ACTIONS(5110), 1, anon_sym_DASH_DASH, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, + ACTIONS(5112), 1, anon_sym_PIPE_PIPE, - ACTIONS(4749), 1, + ACTIONS(5114), 1, anon_sym_or, - ACTIONS(5232), 1, - anon_sym_COLON, - ACTIONS(5234), 1, - anon_sym_CARET, - ACTIONS(5236), 1, - anon_sym_LT_DASH, - STATE(2080), 1, - sym_argument_list, - STATE(2081), 1, + ACTIONS(5224), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5226), 1, + anon_sym_DOT_DOT, + STATE(2725), 1, sym_or_block, - STATE(4267), 1, + STATE(2731), 1, + sym_argument_list, + STATE(4080), 1, sym_type_parameters, - ACTIONS(4717), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4737), 2, + ACTIONS(5084), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4751), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4753), 2, + ACTIONS(5104), 2, anon_sym_in, anon_sym_BANGin, - STATE(2586), 2, + ACTIONS(5116), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2587), 2, sym_line_comment, sym_block_comment, - ACTIONS(4733), 3, + ACTIONS(5078), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4735), 3, + ACTIONS(5082), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4739), 4, + ACTIONS(5086), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5230), 5, + ACTIONS(5080), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69834] = 29, + [69986] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(4936), 1, + anon_sym_DOT, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, ACTIONS(4944), 1, anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5062), 1, - anon_sym_LBRACE, - ACTIONS(5200), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5202), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5204), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - ACTIONS(5238), 1, - anon_sym_QMARK, - STATE(1756), 1, - sym_block, - STATE(2298), 1, + ACTIONS(5212), 1, + anon_sym_DOT_DOT, + ACTIONS(5228), 1, + anon_sym_RBRACK, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - STATE(2587), 2, + STATE(2588), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69938] = 6, + [70092] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5240), 1, - anon_sym_DOLLARelse, - STATE(2588), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1913), 13, + ACTIONS(4936), 1, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1911), 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, - [69996] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, @@ -250839,141 +250865,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5016), 1, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5018), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5020), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, - anon_sym_or, - STATE(2298), 1, + ACTIONS(5212), 1, + anon_sym_DOT_DOT, + ACTIONS(5230), 1, + anon_sym_RBRACK, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(1787), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5008), 2, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5026), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5242), 2, - anon_sym_is, - anon_sym_BANGis, STATE(2589), 2, sym_line_comment, sym_block_comment, - ACTIONS(5002), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5006), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5010), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5004), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70098] = 29, + [70198] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5068), 1, + ACTIONS(5232), 1, anon_sym_LBRACE, - ACTIONS(5200), 1, - anon_sym_CARET, - ACTIONS(5202), 1, - anon_sym_AMP_AMP, - ACTIONS(5204), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5244), 1, - anon_sym_QMARK, - STATE(2284), 1, - sym_block, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5194), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5206), 2, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(5234), 1, + anon_sym_COMMA, + STATE(3782), 1, + aux_sym_match_expression_list_repeat1, STATE(2590), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(2883), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + anon_sym_DOT_DOT, + ACTIONS(2881), 25, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 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, - [70202] = 28, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [70260] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -250990,64 +250995,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5166), 1, anon_sym_CARET, - ACTIONS(5168), 1, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(5170), 1, + ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, + ACTIONS(5028), 1, + anon_sym_or, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(1787), 2, - anon_sym_SEMI, - anon_sym_COMMA, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5162), 2, + ACTIONS(5014), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5172), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5242), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5032), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(5236), 2, + anon_sym_LBRACE, + anon_sym_COMMA, STATE(2591), 2, sym_line_comment, sym_block_comment, - ACTIONS(5156), 3, + ACTIONS(5008), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5160), 3, + ACTIONS(5012), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5164), 4, + ACTIONS(5016), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5158), 5, + ACTIONS(5010), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70304] = 28, + [70362] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -251056,77 +251061,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, ACTIONS(4944), 1, anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5166), 1, + ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5168), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5170), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, + ACTIONS(5238), 1, + anon_sym_LBRACE, + ACTIONS(5240), 1, + anon_sym_QMARK, + STATE(1274), 1, + sym_block, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(1787), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5162), 2, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5172), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5246), 2, - anon_sym_is, - anon_sym_BANGis, STATE(2592), 2, sym_line_comment, sym_block_comment, - ACTIONS(5156), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5160), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5164), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5158), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70406] = 29, + [70466] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, + ACTIONS(4715), 1, anon_sym_LBRACE, ACTIONS(4938), 1, anon_sym_LPAREN, @@ -251138,65 +251144,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5200), 1, - anon_sym_CARET, ACTIONS(5202), 1, - anon_sym_AMP_AMP, + anon_sym_CARET, ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5248), 1, + ACTIONS(5242), 1, anon_sym_QMARK, - STATE(1648), 1, + STATE(1664), 1, sym_block, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, STATE(2593), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70510] = 30, + [70570] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -251217,137 +251223,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - ACTIONS(5220), 1, + ACTIONS(5212), 1, anon_sym_DOT_DOT, - ACTIONS(5250), 1, + ACTIONS(5244), 1, anon_sym_RBRACK, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5078), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, STATE(2594), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70616] = 29, + [70676] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(4936), 1, + anon_sym_DOT, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, ACTIONS(4944), 1, anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5040), 1, - anon_sym_LBRACE, - ACTIONS(5200), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5202), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5204), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - ACTIONS(5252), 1, - anon_sym_QMARK, - STATE(2298), 1, + ACTIONS(5212), 1, + anon_sym_DOT_DOT, + ACTIONS(5246), 1, + anon_sym_RBRACK, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(2806), 1, - sym_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, STATE(2595), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5120), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [70782] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2142), 1, + anon_sym_LBRACK, + STATE(2596), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2139), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70720] = 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, + [70838] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -251368,274 +251426,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - ACTIONS(5220), 1, + ACTIONS(5212), 1, anon_sym_DOT_DOT, - ACTIONS(5254), 1, + ACTIONS(5248), 1, anon_sym_RBRACK, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5078), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - STATE(2596), 2, + STATE(2597), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [70826] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2717), 1, - sym_type_parameters, - STATE(2597), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1881), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1879), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5120), 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, - [70884] = 30, + [70944] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, ACTIONS(4944), 1, anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5220), 1, - anon_sym_DOT_DOT, - ACTIONS(5256), 1, - anon_sym_RBRACK, - STATE(2298), 1, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(5252), 1, + anon_sym_QMARK, + STATE(984), 1, + sym_block, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5078), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, STATE(2598), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70990] = 30, + [71048] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, ACTIONS(4944), 1, anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5052), 1, + anon_sym_LBRACE, + ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5220), 1, - anon_sym_DOT_DOT, - ACTIONS(5258), 1, - anon_sym_RBRACK, - STATE(2298), 1, + ACTIONS(5254), 1, + anon_sym_QMARK, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(2441), 1, + sym_block, + STATE(4149), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5078), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, STATE(2599), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71096] = 5, + [71152] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(5256), 1, + anon_sym_DOLLARelse, STATE(2600), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 13, + ACTIONS(2041), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251649,7 +251655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1807), 28, + ACTIONS(2039), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -251677,216 +251683,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [71152] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(2222), 1, - anon_sym_LBRACK, - STATE(2601), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2219), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [71208] = 30, + [71210] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, ACTIONS(4944), 1, anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, - anon_sym_CARET, - ACTIONS(5082), 1, - anon_sym_AMP_AMP, - ACTIONS(5114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5220), 1, - anon_sym_DOT_DOT, - ACTIONS(5260), 1, - anon_sym_RBRACK, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2602), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5070), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5074), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5080), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5072), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [71314] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(4998), 1, + ACTIONS(5050), 1, anon_sym_LBRACE, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5200), 1, - anon_sym_CARET, ACTIONS(5202), 1, - anon_sym_AMP_AMP, + anon_sym_CARET, ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5262), 1, + ACTIONS(5258), 1, anon_sym_QMARK, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(2582), 1, + STATE(2619), 1, sym_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2603), 2, + STATE(2601), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71418] = 30, + [71314] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, @@ -251897,66 +251773,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5168), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5174), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5180), 1, anon_sym_PIPE_PIPE, - ACTIONS(5220), 1, - anon_sym_DOT_DOT, - ACTIONS(5264), 1, - anon_sym_RBRACK, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5078), 2, + ACTIONS(1771), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5170), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5176), 2, anon_sym_in, anon_sym_BANGin, - STATE(2604), 2, + ACTIONS(5260), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2602), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5164), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5166), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5172), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5162), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71524] = 30, + [71416] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -251977,198 +251853,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - ACTIONS(5220), 1, + ACTIONS(5212), 1, anon_sym_DOT_DOT, - ACTIONS(5266), 1, + ACTIONS(5262), 1, anon_sym_RBRACK, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5078), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - STATE(2605), 2, + STATE(2603), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71630] = 7, + [71522] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1894), 1, - anon_sym_LBRACK, - ACTIONS(2473), 1, - anon_sym_LBRACE, - STATE(2606), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1889), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1887), 28, - anon_sym_SEMI, + ACTIONS(4936), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [71690] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, ACTIONS(4944), 1, anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5058), 1, - anon_sym_LBRACE, - ACTIONS(5200), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5202), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5204), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - ACTIONS(5268), 1, - anon_sym_QMARK, - STATE(1910), 1, - sym_block, - STATE(2298), 1, + ACTIONS(5212), 1, + anon_sym_DOT_DOT, + ACTIONS(5264), 1, + anon_sym_RBRACK, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - STATE(2607), 2, + STATE(2604), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71794] = 5, + [71628] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2608), 2, + STATE(2605), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 13, + ACTIONS(2715), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252182,7 +252006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2674), 28, + ACTIONS(2713), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252211,83 +252035,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [71850] = 30, + [71684] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, ACTIONS(4944), 1, anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5220), 1, - anon_sym_DOT_DOT, - ACTIONS(5270), 1, - anon_sym_RBRACK, - STATE(2298), 1, + ACTIONS(5266), 1, + anon_sym_LBRACE, + ACTIONS(5268), 1, + anon_sym_QMARK, + STATE(2128), 1, + sym_block, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5078), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2609), 2, + STATE(2606), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71956] = 30, + [71788] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -252308,137 +252131,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - ACTIONS(5220), 1, + ACTIONS(5212), 1, anon_sym_DOT_DOT, - ACTIONS(5272), 1, + ACTIONS(5270), 1, anon_sym_RBRACK, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5078), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - STATE(2610), 2, + STATE(2607), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72062] = 29, + [71894] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4725), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4944), 1, + ACTIONS(4733), 1, + anon_sym_QMARK, + ACTIONS(4735), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4737), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(4745), 1, + anon_sym_AMP_AMP, + ACTIONS(4753), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(4755), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(4757), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5032), 1, - anon_sym_LBRACE, - ACTIONS(5200), 1, - anon_sym_CARET, - ACTIONS(5202), 1, - anon_sym_AMP_AMP, - ACTIONS(5204), 1, + ACTIONS(4759), 1, anon_sym_PIPE_PIPE, + ACTIONS(4761), 1, + anon_sym_or, ACTIONS(5274), 1, - anon_sym_QMARK, - STATE(1905), 1, - sym_block, - STATE(2298), 1, + anon_sym_COLON, + ACTIONS(5276), 1, + anon_sym_CARET, + ACTIONS(5278), 1, + anon_sym_LT_DASH, + STATE(2073), 1, sym_argument_list, - STATE(2299), 1, + STATE(2074), 1, sym_or_block, - STATE(4251), 1, + STATE(4147), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4723), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(4741), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(4747), 2, anon_sym_in, anon_sym_BANGin, - STATE(2611), 2, + ACTIONS(4763), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2608), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(4727), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(4729), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(4743), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5272), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72166] = 29, + [71998] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -252447,73 +252270,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4940), 1, anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, ACTIONS(4944), 1, anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5202), 1, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(5204), 1, + ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - ACTIONS(5276), 1, - anon_sym_LBRACE, - ACTIONS(5278), 1, - anon_sym_QMARK, - STATE(1269), 1, - sym_block, - STATE(2298), 1, + ACTIONS(5028), 1, + anon_sym_or, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, + ACTIONS(1771), 2, + anon_sym_LBRACE, + anon_sym_COMMA, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5014), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - STATE(2612), 2, + ACTIONS(5280), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2609), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5008), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5012), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5016), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5010), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72270] = 29, + [72100] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -252522,99 +252344,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4940), 1, anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, ACTIONS(4944), 1, anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5200), 1, anon_sym_CARET, - ACTIONS(5202), 1, + ACTIONS(5024), 1, anon_sym_AMP_AMP, - ACTIONS(5204), 1, + ACTIONS(5026), 1, anon_sym_PIPE_PIPE, - ACTIONS(5280), 1, - anon_sym_LBRACE, - ACTIONS(5282), 1, - anon_sym_QMARK, - STATE(1129), 1, - sym_block, - STATE(2298), 1, + ACTIONS(5028), 1, + anon_sym_or, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, + ACTIONS(3534), 2, + anon_sym_LBRACE, + anon_sym_COMMA, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5014), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - STATE(2613), 2, + STATE(2610), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5008), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5012), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5016), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5010), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72374] = 8, + [72202] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(5286), 1, - anon_sym_QMARK, - ACTIONS(5284), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(2614), 2, + STATE(2710), 1, + sym_type_parameters, + STATE(2611), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 10, + ACTIONS(1899), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 27, + anon_sym_DOT_DOT, + ACTIONS(1897), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252625,6 +252444,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, @@ -252641,14 +252461,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [72436] = 30, + [72260] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_DOT, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, @@ -252659,66 +252476,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5168), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5174), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5180), 1, anon_sym_PIPE_PIPE, - ACTIONS(5220), 1, - anon_sym_DOT_DOT, - ACTIONS(5288), 1, - anon_sym_RBRACK, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5078), 2, + ACTIONS(1771), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5170), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5176), 2, anon_sym_in, anon_sym_BANGin, - STATE(2615), 2, + ACTIONS(5280), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2612), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5164), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5166), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5172), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5162), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72542] = 29, + [72362] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -252733,143 +252550,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5050), 1, - anon_sym_LBRACE, - ACTIONS(5200), 1, - anon_sym_CARET, ACTIONS(5202), 1, - anon_sym_AMP_AMP, + anon_sym_CARET, ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5290), 1, + ACTIONS(5282), 1, + anon_sym_LBRACE, + ACTIONS(5284), 1, anon_sym_QMARK, - STATE(2298), 1, + STATE(1137), 1, + sym_block, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(2430), 1, - sym_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2616), 2, + STATE(2613), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72646] = 30, + [72466] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4819), 1, anon_sym_DOT, + ACTIONS(5288), 1, + anon_sym_QMARK, + ACTIONS(5286), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(2614), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2887), 10, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2885), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [72528] = 29, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, ACTIONS(4944), 1, anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4948), 1, - anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5220), 1, - anon_sym_DOT_DOT, + ACTIONS(5290), 1, + anon_sym_LBRACE, ACTIONS(5292), 1, - anon_sym_RBRACK, - STATE(2298), 1, + anon_sym_QMARK, + STATE(300), 1, + sym_block, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(5024), 2, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5078), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2617), 2, + STATE(2615), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72752] = 28, + [72632] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -252878,76 +252748,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, ACTIONS(4944), 1, anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5016), 1, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5018), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5020), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, - anon_sym_or, - STATE(2298), 1, + ACTIONS(5294), 1, + anon_sym_QMARK, + STATE(1762), 1, + sym_block, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5008), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5026), 2, + ACTIONS(5196), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5294), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2618), 2, + STATE(2616), 2, sym_line_comment, sym_block_comment, - ACTIONS(5002), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5006), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5010), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5004), 5, + ACTIONS(5192), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [72736] = 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(1809), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(1807), 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, - [72854] = 28, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [72792] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(4936), 1, + anon_sym_DOT, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, @@ -252958,74 +252882,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(4946), 1, anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_QMARK_DOT, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5016), 1, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5018), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5020), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, - anon_sym_or, - STATE(2298), 1, + ACTIONS(5212), 1, + anon_sym_DOT_DOT, + ACTIONS(5296), 1, + anon_sym_RBRACK, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(3522), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5008), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5026), 2, + ACTIONS(5124), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - STATE(2619), 2, + STATE(2618), 2, sym_line_comment, sym_block_comment, - ACTIONS(5002), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5006), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5010), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5004), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72956] = 5, + [72898] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2620), 2, + ACTIONS(5298), 1, + anon_sym_DOLLARelse, + STATE(2619), 2, sym_line_comment, sym_block_comment, - ACTIONS(2788), 13, + ACTIONS(2079), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253039,7 +252965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2786), 27, + ACTIONS(2077), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253067,21 +252993,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73011] = 7, + [72956] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1894), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2473), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2621), 2, + STATE(2620), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 12, + ACTIONS(2771), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253094,8 +253014,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1887), 24, + anon_sym_DOT_DOT, + ACTIONS(2769), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -253103,6 +253026,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -253118,18 +253043,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [73070] = 6, + [73011] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5300), 1, + anon_sym_RPAREN, + ACTIONS(5312), 1, + anon_sym_CARET, + ACTIONS(5314), 1, + anon_sym_AMP_AMP, + ACTIONS(5316), 1, + anon_sym_PIPE_PIPE, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5308), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5318), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2621), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5302), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5306), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5310), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5304), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [73112] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1989), 1, - anon_sym_COMMA, STATE(2622), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 13, + ACTIONS(2729), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253143,9 +253138,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2674), 26, + ACTIONS(2727), 27, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -253170,21 +253166,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73127] = 7, + [73167] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2515), 1, - anon_sym_DOT, STATE(2623), 2, sym_line_comment, sym_block_comment, - ACTIONS(3909), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - ACTIONS(2513), 11, + ACTIONS(2471), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -253196,8 +253187,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, + 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, @@ -253205,6 +253199,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, @@ -253221,12 +253216,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [73186] = 28, + [73222] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(3554), 1, + anon_sym_LBRACE, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, @@ -253239,136 +253235,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5200), 1, - anon_sym_CARET, ACTIONS(5202), 1, - anon_sym_AMP_AMP, + anon_sym_CARET, ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, - anon_sym_LBRACE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, STATE(2624), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [73287] = 28, + [73323] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5320), 1, + sym_identifier, + ACTIONS(5322), 1, + anon_sym_RPAREN, + ACTIONS(5324), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5326), 1, + anon_sym_mut, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5200), 1, - anon_sym_CARET, - ACTIONS(5202), 1, - anon_sym_AMP_AMP, - ACTIONS(5204), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5298), 1, - anon_sym_LBRACE, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5194), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5206), 2, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(5332), 1, + anon_sym_AMP, + ACTIONS(5334), 1, + anon_sym_shared, + STATE(2963), 1, + sym_mutability_modifiers, + STATE(3838), 1, + sym_type_parameter_declaration, + STATE(3839), 1, + sym_parameter_declaration, + STATE(4013), 1, + sym_plain_type, + STATE(4423), 1, + sym_reference_expression, STATE(2625), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5192), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5196), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5190), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [73388] = 5, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2292), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [73424] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -253376,7 +253370,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2626), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 13, + ACTIONS(2115), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253390,7 +253384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3048), 27, + ACTIONS(2113), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253418,7 +253412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73443] = 5, + [73479] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -253426,7 +253420,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2627), 2, sym_line_comment, sym_block_comment, - ACTIONS(2910), 13, + ACTIONS(2029), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253440,7 +253434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2908), 27, + ACTIONS(2031), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253468,130 +253462,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73498] = 5, + [73534] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2628), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2886), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, anon_sym_QMARK, + ACTIONS(4944), 1, anon_sym_BANG, + ACTIONS(4946), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2884), 27, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5312), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5314), 1, anon_sym_AMP_AMP, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5336), 1, + anon_sym_RPAREN, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5308), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - [73553] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5300), 1, - sym_identifier, - ACTIONS(5302), 1, - anon_sym_RPAREN, - ACTIONS(5304), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5306), 1, - anon_sym_mut, - ACTIONS(5308), 1, - anon_sym_BANG, - ACTIONS(5310), 1, - anon_sym_LBRACK2, - ACTIONS(5312), 1, - anon_sym_AMP, - ACTIONS(5314), 1, - anon_sym_shared, - STATE(2993), 1, - sym_mutability_modifiers, - STATE(3760), 1, - sym_parameter_declaration, - STATE(3768), 1, - sym_type_parameter_declaration, - STATE(4254), 1, - sym_plain_type, - STATE(4498), 1, - sym_reference_expression, - STATE(2629), 2, + STATE(2628), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2362), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [73654] = 19, + ACTIONS(5302), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5306), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5310), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5304), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [73635] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -253608,38 +253552,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5200), 1, + ACTIONS(5202), 1, anon_sym_CARET, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(1781), 2, + ACTIONS(1791), 2, anon_sym_LT, anon_sym_GT, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2630), 2, + STATE(2629), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5190), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1779), 15, + ACTIONS(1789), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_EQ_EQ, @@ -253655,15 +253599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73737] = 5, + [73718] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2631), 2, + STATE(2630), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 13, + ACTIONS(2767), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253677,7 +253621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2189), 27, + ACTIONS(2765), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253705,88 +253649,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73792] = 28, + [73773] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5076), 1, - anon_sym_CARET, - ACTIONS(5082), 1, - anon_sym_AMP_AMP, - ACTIONS(5114), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5232), 1, - anon_sym_COLON, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2632), 2, + STATE(2631), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(2855), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + anon_sym_DOT_DOT, + ACTIONS(2853), 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(5072), 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, - [73893] = 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, + [73828] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2633), 2, + STATE(2632), 2, sym_line_comment, sym_block_comment, - ACTIONS(2125), 13, + ACTIONS(2851), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253800,7 +253721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2123), 27, + ACTIONS(2849), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253828,15 +253749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73948] = 5, + [73883] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2634), 2, + STATE(2633), 2, sym_line_comment, sym_block_comment, - ACTIONS(1987), 13, + ACTIONS(2737), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253850,7 +253771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1989), 27, + ACTIONS(2735), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253878,15 +253799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74003] = 5, + [73938] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2635), 2, + STATE(2634), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 13, + ACTIONS(3046), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253900,7 +253821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2309), 27, + ACTIONS(3044), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253928,7 +253849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74058] = 28, + [73993] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -253945,163 +253866,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5316), 1, - anon_sym_RPAREN, - ACTIONS(5328), 1, + ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5330), 1, - anon_sym_AMP_AMP, - ACTIONS(5332), 1, - anon_sym_PIPE_PIPE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2636), 2, + STATE(2635), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74159] = 5, + ACTIONS(1789), 9, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [74080] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2637), 2, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5312), 1, + anon_sym_CARET, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(1791), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2636), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 13, - anon_sym_DOT, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5306), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2520), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1789), 15, + anon_sym_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, - [74214] = 5, + [74163] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2638), 2, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2637), 2, sym_line_comment, sym_block_comment, - ACTIONS(2532), 13, - anon_sym_DOT, + ACTIONS(5194), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1791), 5, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2530), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1789), 16, + anon_sym_as, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74269] = 28, + [74242] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -254118,63 +254058,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5200), 1, + ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5202), 1, + ACTIONS(5314), 1, anon_sym_AMP_AMP, - ACTIONS(5204), 1, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - ACTIONS(5294), 1, - anon_sym_LBRACE, - STATE(2298), 1, + ACTIONS(5338), 1, + anon_sym_RPAREN, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5308), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2639), 2, + STATE(2638), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74370] = 28, + [74343] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -254191,125 +254131,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5200), 1, - anon_sym_CARET, ACTIONS(5202), 1, - anon_sym_AMP_AMP, + anon_sym_CARET, ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5336), 1, + ACTIONS(5340), 1, anon_sym_LBRACE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2640), 2, + STATE(2639), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74471] = 17, + [74444] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2641), 2, + STATE(2640), 2, sym_line_comment, sym_block_comment, - ACTIONS(5322), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1765), 5, + ACTIONS(2883), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5320), 5, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2881), 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(1763), 16, - anon_sym_as, - anon_sym_RPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_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, - [74550] = 28, + [74499] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -254326,71 +254254,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5314), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - ACTIONS(5338), 1, + ACTIONS(5342), 1, anon_sym_RPAREN, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5308), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2642), 2, + STATE(2641), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74651] = 5, + [74600] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2643), 2, + STATE(2642), 2, sym_line_comment, sym_block_comment, - ACTIONS(2233), 13, + ACTIONS(2891), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254404,7 +254332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2231), 27, + ACTIONS(2889), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254432,16 +254360,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74706] = 5, + [74655] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2644), 2, + ACTIONS(2031), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2643), 2, sym_line_comment, sym_block_comment, - ACTIONS(3054), 13, - anon_sym_DOT, + ACTIONS(2715), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -254453,11 +254383,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3052), 27, + ACTIONS(2713), 27, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -254465,11 +254393,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, @@ -254482,15 +254411,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74761] = 5, + [74712] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2645), 2, + STATE(2644), 2, sym_line_comment, sym_block_comment, - ACTIONS(2315), 13, + ACTIONS(2741), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254504,7 +254433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2313), 27, + ACTIONS(2739), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254532,88 +254461,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74816] = 28, + [74767] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5320), 1, + sym_identifier, + ACTIONS(5324), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5326), 1, + anon_sym_mut, ACTIONS(5328), 1, - anon_sym_CARET, + anon_sym_BANG, ACTIONS(5330), 1, - anon_sym_AMP_AMP, + anon_sym_LBRACK2, ACTIONS(5332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5340), 1, + anon_sym_AMP, + ACTIONS(5334), 1, + anon_sym_shared, + ACTIONS(5344), 1, anon_sym_RPAREN, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5334), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2646), 2, + STATE(2963), 1, + sym_mutability_modifiers, + STATE(3844), 1, + sym_parameter_declaration, + STATE(3864), 1, + sym_type_parameter_declaration, + STATE(4013), 1, + sym_plain_type, + STATE(4423), 1, + sym_reference_expression, + STATE(2645), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5322), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5326), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5320), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [74917] = 5, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2292), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [74868] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2647), 2, + STATE(2646), 2, sym_line_comment, sym_block_comment, - ACTIONS(2297), 13, + ACTIONS(2089), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254627,7 +254556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2295), 27, + ACTIONS(2087), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254655,118 +254584,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74972] = 5, + [74923] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2648), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2303), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, anon_sym_QMARK, + ACTIONS(4944), 1, anon_sym_BANG, + ACTIONS(4946), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2301), 27, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5312), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5314), 1, anon_sym_AMP_AMP, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5346), 1, + anon_sym_RPAREN, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5308), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - [75027] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2649), 2, + STATE(2647), 2, sym_line_comment, sym_block_comment, - ACTIONS(2143), 13, - anon_sym_DOT, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5306), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2141), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5310), 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(5304), 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, - [75082] = 6, + [75024] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1989), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2650), 2, + STATE(2648), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 11, + ACTIONS(3056), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -254778,9 +254678,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2674), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3054), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -254788,12 +254690,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, @@ -254806,15 +254707,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75139] = 5, + [75079] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2651), 2, + STATE(2649), 2, sym_line_comment, sym_block_comment, - ACTIONS(2732), 13, + ACTIONS(3052), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254828,7 +254729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2730), 27, + ACTIONS(3050), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254856,15 +254757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75194] = 5, + [75134] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2652), 2, + STATE(2650), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 13, + ACTIONS(2507), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254878,7 +254779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2848), 27, + ACTIONS(2505), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254906,15 +254807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75249] = 5, + [75189] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2653), 2, + STATE(2651), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 13, + ACTIONS(2453), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254928,7 +254829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2117), 27, + ACTIONS(2451), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254956,88 +254857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75304] = 28, + [75244] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5200), 1, - anon_sym_CARET, - ACTIONS(5202), 1, - anon_sym_AMP_AMP, - ACTIONS(5204), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5342), 1, - anon_sym_LBRACE, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5194), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5206), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2654), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5188), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5192), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5196), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5190), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [75405] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2655), 2, + STATE(2652), 2, sym_line_comment, sym_block_comment, - ACTIONS(2924), 13, + ACTIONS(2439), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255051,7 +254879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2922), 27, + ACTIONS(2437), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255079,15 +254907,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75460] = 5, + [75299] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2656), 2, + STATE(2653), 2, sym_line_comment, sym_block_comment, - ACTIONS(2199), 13, + ACTIONS(2233), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255101,7 +254929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2197), 27, + ACTIONS(2231), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255129,15 +254957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75515] = 5, + [75354] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2657), 2, + STATE(2654), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 13, + ACTIONS(2119), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255151,7 +254979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2227), 27, + ACTIONS(2117), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255179,15 +255007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75570] = 5, + [75409] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2658), 2, + STATE(2655), 2, sym_line_comment, sym_block_comment, - ACTIONS(2898), 13, + ACTIONS(3066), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255201,7 +255029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2896), 27, + ACTIONS(3064), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255229,15 +255057,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75625] = 5, + [75464] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2659), 2, + STATE(2656), 2, sym_line_comment, sym_block_comment, - ACTIONS(2894), 13, + ACTIONS(3021), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255251,7 +255079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2892), 27, + ACTIONS(3019), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255279,15 +255107,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75680] = 5, + [75519] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2660), 2, + STATE(2657), 2, sym_line_comment, sym_block_comment, - ACTIONS(2890), 13, + ACTIONS(3015), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255301,7 +255129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2888), 27, + ACTIONS(3013), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255329,115 +255157,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75735] = 5, + [75574] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2661), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2836), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, anon_sym_QMARK, + ACTIONS(4944), 1, anon_sym_BANG, + ACTIONS(4946), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2834), 27, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5202), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5204), 1, anon_sym_AMP_AMP, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5348), 1, + anon_sym_LBRACE, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5196), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - [75790] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2662), 2, + STATE(2658), 2, sym_line_comment, sym_block_comment, - ACTIONS(3068), 13, - anon_sym_DOT, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5194), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3066), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5198), 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(5192), 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, - [75845] = 5, + [75675] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2663), 2, + STATE(2659), 2, sym_line_comment, sym_block_comment, - ACTIONS(2828), 13, + ACTIONS(2241), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255451,7 +255252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2826), 27, + ACTIONS(2239), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255479,15 +255280,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75900] = 5, + [75730] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2664), 2, + STATE(2660), 2, sym_line_comment, sym_block_comment, - ACTIONS(2824), 13, + ACTIONS(2257), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255501,7 +255302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2822), 27, + ACTIONS(2255), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255529,17 +255330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75955] = 6, + [75785] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1989), 1, - anon_sym_COMMA, - STATE(2665), 2, + STATE(2661), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 13, + ACTIONS(3011), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255553,9 +255352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1807), 26, + ACTIONS(3009), 27, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -255580,15 +255380,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76012] = 5, + [75840] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2666), 2, + STATE(2662), 2, sym_line_comment, sym_block_comment, - ACTIONS(2862), 13, + ACTIONS(2859), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255602,7 +255402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2860), 27, + ACTIONS(2857), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255630,15 +255430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76067] = 5, + [75895] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2667), 2, + STATE(2663), 2, sym_line_comment, sym_block_comment, - ACTIONS(2874), 13, + ACTIONS(2457), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255652,7 +255452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2872), 27, + ACTIONS(2455), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255680,15 +255480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76122] = 5, + [75950] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2668), 2, + STATE(2664), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 13, + ACTIONS(2463), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255702,7 +255502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2800), 27, + ACTIONS(2461), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255730,15 +255530,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76177] = 5, + [76005] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2669), 2, + STATE(2665), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 13, + ACTIONS(2847), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255752,7 +255552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2796), 27, + ACTIONS(2845), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255780,15 +255580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76232] = 5, + [76060] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2670), 2, + STATE(2666), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 13, + ACTIONS(2475), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255802,7 +255602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2830), 27, + ACTIONS(2473), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255830,15 +255630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76287] = 5, + [76115] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2671), 2, + STATE(2667), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 13, + ACTIONS(2707), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255852,7 +255652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2792), 27, + ACTIONS(2705), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255880,88 +255680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76342] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5300), 1, - sym_identifier, - ACTIONS(5304), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5306), 1, - anon_sym_mut, - ACTIONS(5308), 1, - anon_sym_BANG, - ACTIONS(5310), 1, - anon_sym_LBRACK2, - ACTIONS(5312), 1, - anon_sym_AMP, - ACTIONS(5314), 1, - anon_sym_shared, - ACTIONS(5344), 1, - anon_sym_RPAREN, - STATE(2993), 1, - sym_mutability_modifiers, - STATE(3916), 1, - sym_type_parameter_declaration, - STATE(3917), 1, - sym_parameter_declaration, - STATE(4254), 1, - sym_plain_type, - STATE(4498), 1, - sym_reference_expression, - STATE(2672), 2, - sym_line_comment, - sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2362), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [76443] = 5, + [76170] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2673), 2, + STATE(2668), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 13, + ACTIONS(2821), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255975,7 +255702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2780), 27, + ACTIONS(2819), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256003,15 +255730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76498] = 5, + [76225] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2674), 2, + STATE(2669), 2, sym_line_comment, sym_block_comment, - ACTIONS(2718), 13, + ACTIONS(2843), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256025,7 +255752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2716), 27, + ACTIONS(2841), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256053,15 +255780,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76553] = 5, + [76280] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2675), 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(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5320), 1, + sym_identifier, + ACTIONS(5324), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5326), 1, + anon_sym_mut, + ACTIONS(5328), 1, + anon_sym_BANG, + ACTIONS(5330), 1, + anon_sym_LBRACK2, + ACTIONS(5332), 1, + anon_sym_AMP, + ACTIONS(5334), 1, + anon_sym_shared, + ACTIONS(5350), 1, + anon_sym_RPAREN, + STATE(2963), 1, + sym_mutability_modifiers, + STATE(3757), 1, + sym_plain_type, + STATE(3808), 1, + sym_type_parameter_declaration, + STATE(3809), 1, + sym_parameter_declaration, + STATE(4423), 1, + sym_reference_expression, + STATE(2670), 2, sym_line_comment, sym_block_comment, - ACTIONS(2501), 13, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2292), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [76381] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2671), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2779), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256075,7 +255875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2499), 27, + ACTIONS(2777), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256103,7 +255903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76608] = 28, + [76436] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -256120,71 +255920,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5200), 1, - anon_sym_CARET, ACTIONS(5202), 1, - anon_sym_AMP_AMP, + anon_sym_CARET, ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5346), 1, + ACTIONS(5352), 1, anon_sym_LBRACE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2676), 2, + STATE(2672), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [76709] = 5, + [76537] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2677), 2, + STATE(2673), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 11, + ACTIONS(3029), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -256196,9 +255997,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1807), 29, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3027), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -256206,12 +256009,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, @@ -256220,23 +256022,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76764] = 6, + [76592] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1989), 1, - anon_sym_LBRACE, - STATE(2678), 2, + STATE(2674), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 11, + ACTIONS(3025), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -256248,10 +256047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2674), 28, - anon_sym_SEMI, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3023), 27, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, @@ -256260,6 +256059,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, @@ -256276,18 +256076,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [76821] = 6, + [76647] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5348), 1, - anon_sym_BANG, - STATE(2679), 2, + STATE(2675), 2, sym_line_comment, sym_block_comment, - ACTIONS(2542), 12, + ACTIONS(2775), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256296,11 +256093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2540), 27, + ACTIONS(2773), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256328,65 +256126,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76878] = 5, + [76702] = 21, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2680), 2, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5312), 1, + anon_sym_CARET, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5308), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5318), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2676), 2, sym_line_comment, sym_block_comment, - ACTIONS(2211), 13, - anon_sym_DOT, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5306), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2209), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5310), 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(5304), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1789), 9, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [76933] = 5, + [76789] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2681), 2, + STATE(2677), 2, sym_line_comment, sym_block_comment, - ACTIONS(2203), 13, + ACTIONS(2763), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256400,7 +256214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2201), 27, + ACTIONS(2761), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256428,161 +256242,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76988] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5300), 1, - sym_identifier, - ACTIONS(5304), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5306), 1, - anon_sym_mut, - ACTIONS(5308), 1, - anon_sym_BANG, - ACTIONS(5310), 1, - anon_sym_LBRACK2, - ACTIONS(5312), 1, - anon_sym_AMP, - ACTIONS(5314), 1, - anon_sym_shared, - ACTIONS(5350), 1, - anon_sym_RPAREN, - STATE(2993), 1, - sym_mutability_modifiers, - STATE(3782), 1, - sym_parameter_declaration, - STATE(3783), 1, - sym_type_parameter_declaration, - STATE(4254), 1, - sym_plain_type, - STATE(4498), 1, - sym_reference_expression, - STATE(2682), 2, - sym_line_comment, - sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2362), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [77089] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5328), 1, - anon_sym_CARET, - ACTIONS(5330), 1, - anon_sym_AMP_AMP, - ACTIONS(5332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5352), 1, - anon_sym_RPAREN, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5334), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2683), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5318), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5322), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5326), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5320), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [77190] = 5, + [76844] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2684), 2, + STATE(2678), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 13, + ACTIONS(2817), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256596,7 +256264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2113), 27, + ACTIONS(2815), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256624,15 +256292,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77245] = 5, + [76899] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2685), 2, + STATE(2679), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 13, + ACTIONS(2813), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256646,7 +256314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2461), 27, + ACTIONS(2811), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256674,15 +256342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77300] = 5, + [76954] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2686), 2, + STATE(2680), 2, sym_line_comment, sym_block_comment, - ACTIONS(2467), 13, + ACTIONS(2809), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256696,7 +256364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2465), 27, + ACTIONS(2807), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256724,15 +256392,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77355] = 5, + [77009] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2687), 2, + STATE(2681), 2, sym_line_comment, sym_block_comment, - ACTIONS(2505), 13, + ACTIONS(2801), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256746,7 +256414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2503), 27, + ACTIONS(2799), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256774,15 +256442,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77410] = 5, + [77064] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2688), 2, + STATE(2682), 2, sym_line_comment, sym_block_comment, - ACTIONS(2696), 13, + ACTIONS(2749), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256796,7 +256464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2694), 27, + ACTIONS(2747), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256824,15 +256492,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77465] = 5, + [77119] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2689), 2, + STATE(2683), 2, sym_line_comment, sym_block_comment, - ACTIONS(2854), 13, + ACTIONS(2745), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256846,7 +256514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2852), 27, + ACTIONS(2743), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256874,16 +256542,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77520] = 5, + [77174] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2690), 2, + STATE(2684), 2, sym_line_comment, sym_block_comment, - ACTIONS(2858), 13, - anon_sym_DOT, + ACTIONS(1809), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -256895,11 +256562,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2856), 27, + ACTIONS(1807), 29, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -256907,11 +256572,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, @@ -256920,19 +256586,21 @@ 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, - [77575] = 5, + [77229] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2691), 2, + STATE(2685), 2, sym_line_comment, sym_block_comment, - ACTIONS(2149), 13, + ACTIONS(2725), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256946,7 +256614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2147), 27, + ACTIONS(2723), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256974,15 +256642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77630] = 5, + [77284] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2692), 2, + STATE(2686), 2, sym_line_comment, sym_block_comment, - ACTIONS(3044), 13, + ACTIONS(2719), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256996,7 +256664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3042), 27, + ACTIONS(2717), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257024,16 +256692,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77685] = 5, + [77339] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2693), 2, + ACTIONS(2031), 1, + anon_sym_LBRACE, + STATE(2687), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 13, - anon_sym_DOT, + ACTIONS(2715), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -257045,10 +256714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2844), 27, + ACTIONS(2713), 28, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, @@ -257057,7 +256726,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, @@ -257074,7 +256742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77740] = 19, + anon_sym_COLON_EQ, + [77396] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -257091,60 +256760,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5328), 1, + ACTIONS(5312), 1, anon_sym_CARET, - STATE(2298), 1, + ACTIONS(5314), 1, + anon_sym_AMP_AMP, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(1781), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2694), 2, + ACTIONS(5308), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5318), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2688), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5320), 5, + ACTIONS(5310), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1779), 15, + ACTIONS(1789), 8, anon_sym_as, anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77823] = 28, + [77485] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1787), 1, - anon_sym_LBRACE, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, @@ -257157,112 +256827,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5200), 1, + ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5202), 1, + ACTIONS(5314), 1, anon_sym_AMP_AMP, - ACTIONS(5204), 1, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, + ACTIONS(5354), 1, + anon_sym_RPAREN, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5308), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5242), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2695), 2, + STATE(2689), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [77924] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5354), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2696), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2532), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2530), 25, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - 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, - [77981] = 28, + [77586] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -257279,71 +256900,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - ACTIONS(5356), 1, - anon_sym_RPAREN, - STATE(2298), 1, + ACTIONS(5274), 1, + anon_sym_COLON, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - STATE(2697), 2, + STATE(2690), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78082] = 5, + [77687] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2698), 2, + ACTIONS(5356), 1, + anon_sym_BANG, + STATE(2691), 2, sym_line_comment, sym_block_comment, - ACTIONS(2293), 13, + ACTIONS(2585), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257352,12 +256975,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2291), 27, + ACTIONS(2583), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257385,15 +257007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78137] = 5, + [77744] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2699), 2, + STATE(2692), 2, sym_line_comment, sym_block_comment, - ACTIONS(2509), 13, + ACTIONS(2427), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257407,7 +257029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2507), 27, + ACTIONS(2425), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257435,15 +257057,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78192] = 5, + [77799] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2700), 2, + STATE(2693), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 13, + ACTIONS(1899), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257457,7 +257079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1879), 27, + ACTIONS(1897), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257485,15 +257107,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78247] = 5, + [77854] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2701), 2, + STATE(2694), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 13, + ACTIONS(2055), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257507,7 +257129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1887), 27, + ACTIONS(2053), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257535,57 +257157,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78302] = 5, + [77909] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2702), 2, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5312), 1, + anon_sym_CARET, + ACTIONS(5314), 1, + anon_sym_AMP_AMP, + ACTIONS(5316), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5358), 1, + anon_sym_RPAREN, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5308), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5318), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2695), 2, sym_line_comment, sym_block_comment, - ACTIONS(2307), 13, - anon_sym_DOT, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5306), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2305), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5310), 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(5304), 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, - [78357] = 22, + [78010] = 17, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -257602,57 +257247,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5200), 1, - anon_sym_CARET, - ACTIONS(5202), 1, - anon_sym_AMP_AMP, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + STATE(2696), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5306), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1791), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5304), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1789), 16, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - STATE(2703), 2, + [78089] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5360), 1, + anon_sym_else, + STATE(2858), 1, + sym_else_branch, + STATE(2697), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(1799), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(1797), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [78148] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2698), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2423), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2421), 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, - [78446] = 21, + anon_sym_in, + anon_sym_BANGin, + [78203] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -257669,64 +257411,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5200), 1, + ACTIONS(5202), 1, anon_sym_CARET, - STATE(2298), 1, + ACTIONS(5204), 1, + anon_sym_AMP_AMP, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2704), 2, + STATE(2699), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 9, + ACTIONS(1789), 8, anon_sym_as, anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - [78533] = 5, + [78292] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2705), 2, + STATE(2700), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 13, + ACTIONS(2265), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257740,7 +257483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2536), 27, + ACTIONS(2263), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257768,67 +257511,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78588] = 28, + [78347] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5300), 1, + ACTIONS(5320), 1, sym_identifier, - ACTIONS(5304), 1, + ACTIONS(5324), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5306), 1, + ACTIONS(5326), 1, anon_sym_mut, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5314), 1, + ACTIONS(5334), 1, anon_sym_shared, - ACTIONS(5358), 1, + ACTIONS(5362), 1, anon_sym_RPAREN, - STATE(2993), 1, + STATE(2963), 1, sym_mutability_modifiers, - STATE(3814), 1, + STATE(3960), 1, sym_parameter_declaration, - STATE(3819), 1, + STATE(3961), 1, sym_type_parameter_declaration, - STATE(4254), 1, + STATE(4013), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2706), 2, + STATE(2701), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -257841,219 +257584,88 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [78689] = 19, + [78448] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5200), 1, - anon_sym_CARET, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(1765), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2707), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5188), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5192), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5190), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1763), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_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, - [78772] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 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(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5320), 1, + sym_identifier, + ACTIONS(5324), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5326), 1, + anon_sym_mut, ACTIONS(5328), 1, - anon_sym_CARET, + anon_sym_BANG, ACTIONS(5330), 1, - anon_sym_AMP_AMP, + anon_sym_LBRACK2, ACTIONS(5332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5360), 1, - anon_sym_RPAREN, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5334), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2708), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5318), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5322), 3, - anon_sym_SLASH, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5326), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5320), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [78873] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5328), 1, - anon_sym_CARET, - ACTIONS(5330), 1, - anon_sym_AMP_AMP, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5334), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2709), 2, + ACTIONS(5334), 1, + anon_sym_shared, + ACTIONS(5364), 1, + anon_sym_RPAREN, + STATE(2963), 1, + sym_mutability_modifiers, + STATE(3933), 1, + sym_type_parameter_declaration, + STATE(3934), 1, + sym_parameter_declaration, + STATE(4013), 1, + sym_plain_type, + STATE(4423), 1, + sym_reference_expression, + STATE(2702), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5322), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5326), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5320), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1763), 8, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [78962] = 5, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2292), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [78549] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2710), 2, + STATE(2703), 2, sym_line_comment, sym_block_comment, - ACTIONS(2668), 13, + ACTIONS(2273), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258067,7 +257679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2666), 27, + ACTIONS(2271), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258095,7 +257707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79017] = 21, + [78604] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -258112,137 +257724,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5328), 1, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5128), 1, anon_sym_CARET, - STATE(2298), 1, + ACTIONS(5130), 1, + anon_sym_AMP_AMP, + ACTIONS(5132), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5366), 1, + anon_sym_RBRACK, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5324), 2, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - STATE(2711), 2, + STATE(2704), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 9, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [79104] = 28, + [78705] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3558), 1, - anon_sym_LBRACE, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5200), 1, - anon_sym_CARET, - ACTIONS(5202), 1, - anon_sym_AMP_AMP, - ACTIONS(5204), 1, - anon_sym_PIPE_PIPE, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5194), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5206), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2712), 2, + ACTIONS(5360), 1, + anon_sym_else, + STATE(2860), 1, + sym_else_branch, + STATE(2705), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(1805), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(1803), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 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, - [79205] = 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, + [78764] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2713), 2, + STATE(2706), 2, sym_line_comment, sym_block_comment, - ACTIONS(2680), 13, + ACTIONS(2269), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258256,7 +257854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2678), 27, + ACTIONS(2267), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258284,15 +257882,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79260] = 5, + [78819] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2714), 2, + STATE(2707), 2, sym_line_comment, sym_block_comment, - ACTIONS(2684), 13, + ACTIONS(2261), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258306,7 +257904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2682), 27, + ACTIONS(2259), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258334,15 +257932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79315] = 5, + [78874] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2715), 2, + STATE(2708), 2, sym_line_comment, sym_block_comment, - ACTIONS(2688), 13, + ACTIONS(2253), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258356,7 +257954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2686), 27, + ACTIONS(2251), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258384,15 +257982,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79370] = 5, + [78929] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2716), 2, + STATE(2709), 2, sym_line_comment, sym_block_comment, - ACTIONS(2692), 13, + ACTIONS(2249), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258406,7 +258004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2690), 27, + ACTIONS(2247), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258434,15 +258032,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79425] = 5, + [78984] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2717), 2, + STATE(2710), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 13, + ACTIONS(2163), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258456,7 +258054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2838), 27, + ACTIONS(2161), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258484,7 +258082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79480] = 19, + [79039] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -258501,62 +258099,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(5328), 1, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5312), 1, anon_sym_CARET, - STATE(2298), 1, + ACTIONS(5314), 1, + anon_sym_AMP_AMP, + ACTIONS(5316), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5368), 1, + anon_sym_RPAREN, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(1765), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(2718), 2, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5308), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5318), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2711), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5320), 5, + ACTIONS(5310), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1763), 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, - [79563] = 5, + [79140] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2719), 2, + STATE(2712), 2, sym_line_comment, sym_block_comment, - ACTIONS(2443), 13, + ACTIONS(2147), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258570,7 +258177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2441), 27, + ACTIONS(2145), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258598,15 +258205,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79618] = 5, + [79195] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2720), 2, + STATE(2713), 2, sym_line_comment, sym_block_comment, - ACTIONS(2700), 13, + ACTIONS(2245), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258620,7 +258227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2698), 27, + ACTIONS(2243), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258648,115 +258255,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79673] = 5, + [79250] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2721), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2449), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, anon_sym_QMARK, + ACTIONS(4944), 1, anon_sym_BANG, + ACTIONS(4946), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2447), 27, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5312), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5314), 1, anon_sym_AMP_AMP, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5370), 1, + anon_sym_RPAREN, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5308), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - [79728] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2722), 2, + STATE(2714), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 13, - anon_sym_DOT, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5306), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2708), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5310), 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(5304), 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, - [79783] = 5, + [79351] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2723), 2, + STATE(2715), 2, sym_line_comment, sym_block_comment, - ACTIONS(2714), 13, + ACTIONS(2229), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258770,7 +258350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2712), 27, + ACTIONS(2227), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258798,15 +258378,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79838] = 5, + [79406] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2724), 2, + STATE(2716), 2, sym_line_comment, sym_block_comment, - ACTIONS(2137), 13, + ACTIONS(2225), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258820,7 +258400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2135), 27, + ACTIONS(2223), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258848,15 +258428,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79893] = 5, + [79461] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2725), 2, + STATE(2717), 2, sym_line_comment, sym_block_comment, - ACTIONS(2724), 13, + ACTIONS(2221), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258870,7 +258450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2722), 27, + ACTIONS(2219), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258898,15 +258478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79948] = 5, + [79516] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2726), 2, + STATE(2718), 2, sym_line_comment, sym_block_comment, - ACTIONS(2744), 13, + ACTIONS(2217), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258920,7 +258500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2742), 27, + ACTIONS(2215), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258948,88 +258528,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80003] = 28, + [79571] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5300), 1, - sym_identifier, - ACTIONS(5304), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5306), 1, - anon_sym_mut, - ACTIONS(5308), 1, - anon_sym_BANG, - ACTIONS(5310), 1, - anon_sym_LBRACK2, - ACTIONS(5312), 1, - anon_sym_AMP, - ACTIONS(5314), 1, - anon_sym_shared, - ACTIONS(5362), 1, - anon_sym_RPAREN, - STATE(2993), 1, - sym_mutability_modifiers, - STATE(3932), 1, - sym_parameter_declaration, - STATE(3939), 1, - sym_type_parameter_declaration, - STATE(4254), 1, - sym_plain_type, - STATE(4498), 1, - sym_reference_expression, - STATE(2727), 2, - sym_line_comment, - sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2362), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [80104] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2728), 2, + STATE(2719), 2, sym_line_comment, sym_block_comment, - ACTIONS(2750), 13, + ACTIONS(2213), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259043,7 +258550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2748), 27, + ACTIONS(2211), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259071,65 +258578,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80159] = 5, + [79626] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2729), 2, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5202), 1, + anon_sym_CARET, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(1787), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2720), 2, sym_line_comment, sym_block_comment, - ACTIONS(2455), 13, - anon_sym_DOT, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5194), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2453), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1785), 15, + anon_sym_as, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_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, - [80214] = 5, + [79709] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2730), 2, + STATE(2721), 2, sym_line_comment, sym_block_comment, - ACTIONS(2756), 13, + ACTIONS(2209), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259143,7 +258664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2754), 27, + ACTIONS(2207), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259171,7 +258692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80269] = 28, + [79764] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -259188,279 +258709,390 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5200), 1, + ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5202), 1, + ACTIONS(5314), 1, anon_sym_AMP_AMP, - ACTIONS(5204), 1, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - ACTIONS(5364), 1, - anon_sym_LBRACE, - STATE(2298), 1, + ACTIONS(5372), 1, + anon_sym_RPAREN, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5308), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2731), 2, + STATE(2722), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80370] = 17, + [79865] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(2732), 2, + STATE(2723), 2, sym_line_comment, sym_block_comment, - ACTIONS(5192), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1765), 5, + ACTIONS(2205), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5190), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1763), 16, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2203), 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, - [80449] = 28, + [79920] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5320), 1, + sym_identifier, + ACTIONS(5324), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5326), 1, + anon_sym_mut, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5200), 1, - anon_sym_CARET, - ACTIONS(5202), 1, - anon_sym_AMP_AMP, - ACTIONS(5204), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5366), 1, - anon_sym_LBRACE, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5194), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5206), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2733), 2, + ACTIONS(5332), 1, + anon_sym_AMP, + ACTIONS(5334), 1, + anon_sym_shared, + ACTIONS(5374), 1, + anon_sym_RPAREN, + STATE(2963), 1, + sym_mutability_modifiers, + STATE(3911), 1, + sym_parameter_declaration, + STATE(3913), 1, + sym_type_parameter_declaration, + STATE(4013), 1, + sym_plain_type, + STATE(4423), 1, + sym_reference_expression, + STATE(2724), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2292), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [80021] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2725), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2547), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + anon_sym_DOT_DOT, + ACTIONS(2545), 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(5190), 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, - [80550] = 28, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [80076] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 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(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5320), 1, + sym_identifier, + ACTIONS(5324), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5326), 1, + anon_sym_mut, + ACTIONS(5328), 1, + anon_sym_BANG, + ACTIONS(5330), 1, + anon_sym_LBRACK2, + ACTIONS(5332), 1, + anon_sym_AMP, + ACTIONS(5334), 1, + anon_sym_shared, + ACTIONS(5376), 1, + anon_sym_RPAREN, + STATE(2963), 1, + sym_mutability_modifiers, + STATE(3858), 1, + sym_parameter_declaration, + STATE(3859), 1, + sym_type_parameter_declaration, + STATE(4013), 1, + sym_plain_type, + STATE(4423), 1, + sym_reference_expression, + STATE(2726), 2, + sym_line_comment, + sym_block_comment, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2292), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [80177] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4725), 1, + anon_sym_LPAREN, + ACTIONS(4731), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4733), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4735), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4737), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, + ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(4745), 1, + anon_sym_AMP_AMP, + ACTIONS(4753), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(4755), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(4757), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(4759), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4761), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5276), 1, anon_sym_CARET, - ACTIONS(5330), 1, - anon_sym_AMP_AMP, - ACTIONS(5332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5368), 1, - anon_sym_RPAREN, - STATE(2298), 1, + ACTIONS(5278), 1, + anon_sym_LT_DASH, + STATE(2073), 1, sym_argument_list, - STATE(2299), 1, + STATE(2074), 1, sym_or_block, - STATE(4251), 1, + STATE(4147), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4723), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(4741), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(4747), 2, anon_sym_in, anon_sym_BANGin, - STATE(2734), 2, + ACTIONS(4763), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2727), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(4727), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(4729), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(4743), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5272), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80651] = 5, + [80278] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2735), 2, + STATE(2728), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 13, + ACTIONS(2159), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259474,7 +259106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2473), 27, + ACTIONS(2157), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259502,15 +259134,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80706] = 5, + [80333] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2736), 2, + STATE(2729), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 13, + ACTIONS(2155), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259524,7 +259156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2770), 27, + ACTIONS(2153), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259552,15 +259184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80761] = 5, + [80388] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2737), 2, + STATE(2730), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 13, + ACTIONS(2201), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259574,7 +259206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2776), 27, + ACTIONS(2199), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259602,15 +259234,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80816] = 5, + [80443] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2738), 2, + STATE(2731), 2, sym_line_comment, sym_block_comment, - ACTIONS(2459), 13, + ACTIONS(2431), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259624,7 +259256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2457), 27, + ACTIONS(2429), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259652,88 +259284,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80871] = 28, + [80498] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5328), 1, - anon_sym_CARET, - ACTIONS(5330), 1, - anon_sym_AMP_AMP, - ACTIONS(5332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5370), 1, - anon_sym_RPAREN, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5334), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2739), 2, + STATE(2732), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(2097), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + anon_sym_DOT_DOT, + ACTIONS(2095), 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(5320), 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, - [80972] = 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, + [80553] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2740), 2, + STATE(2733), 2, sym_line_comment, sym_block_comment, - ACTIONS(2902), 13, + ACTIONS(2189), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259747,7 +259356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2900), 27, + ACTIONS(2187), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259775,15 +259384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81027] = 5, + [80608] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2741), 2, + STATE(2734), 2, sym_line_comment, sym_block_comment, - ACTIONS(2906), 13, + ACTIONS(2185), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259797,7 +259406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2904), 27, + ACTIONS(2183), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259825,15 +259434,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81082] = 5, + [80663] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2742), 2, + STATE(2735), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 13, + ACTIONS(2833), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259847,7 +259456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2469), 27, + ACTIONS(2831), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259875,15 +259484,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81137] = 5, + [80718] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2743), 2, + STATE(2736), 2, sym_line_comment, sym_block_comment, - ACTIONS(3058), 13, + ACTIONS(2181), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259897,7 +259506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3056), 27, + ACTIONS(2179), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259925,15 +259534,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81192] = 5, + [80773] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2744), 2, + STATE(2737), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 13, + ACTIONS(2151), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259947,7 +259556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2766), 27, + ACTIONS(2149), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259975,15 +259584,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81247] = 5, + [80828] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2745), 2, + STATE(2738), 2, sym_line_comment, sym_block_comment, - ACTIONS(2672), 13, + ACTIONS(2123), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259997,7 +259606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2670), 27, + ACTIONS(2121), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260025,15 +259634,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81302] = 5, + [80883] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2746), 2, + STATE(2739), 2, sym_line_comment, sym_block_comment, - ACTIONS(3062), 13, + ACTIONS(2175), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260047,7 +259656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3060), 27, + ACTIONS(2173), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260075,15 +259684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81357] = 5, + [80938] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2747), 2, + STATE(2740), 2, sym_line_comment, sym_block_comment, - ACTIONS(2736), 13, + ACTIONS(2127), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260097,7 +259706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2734), 27, + ACTIONS(2125), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260125,15 +259734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81412] = 5, + [80993] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2748), 2, + STATE(2741), 2, sym_line_comment, sym_block_comment, - ACTIONS(2740), 13, + ACTIONS(2105), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260147,7 +259756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2738), 27, + ACTIONS(2103), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260175,15 +259784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81467] = 5, + [81048] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2749), 2, + STATE(2742), 2, sym_line_comment, sym_block_comment, - ACTIONS(2728), 13, + ACTIONS(2133), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260197,7 +259806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2726), 27, + ACTIONS(2131), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260225,7 +259834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81522] = 28, + [81103] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -260242,70 +259851,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5314), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - ACTIONS(5372), 1, + ACTIONS(5378), 1, anon_sym_RPAREN, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5308), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2750), 2, + STATE(2743), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81623] = 6, + [81204] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1989), 1, + ACTIONS(2031), 1, anon_sym_LBRACE, - STATE(2751), 2, + STATE(2744), 2, sym_line_comment, sym_block_comment, ACTIONS(1809), 11, @@ -260349,7 +259958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [81680] = 28, + [81261] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -260366,136 +259975,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5314), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - ACTIONS(5374), 1, - anon_sym_SEMI, - STATE(2298), 1, + ACTIONS(5380), 1, + anon_sym_RPAREN, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5078), 2, + ACTIONS(5308), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2752), 2, + STATE(2745), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81781] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5300), 1, - sym_identifier, - ACTIONS(5304), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5306), 1, - anon_sym_mut, - ACTIONS(5308), 1, - anon_sym_BANG, - ACTIONS(5310), 1, - anon_sym_LBRACK2, - ACTIONS(5312), 1, - anon_sym_AMP, - ACTIONS(5314), 1, - anon_sym_shared, - ACTIONS(5376), 1, - anon_sym_RPAREN, - STATE(2993), 1, - sym_mutability_modifiers, - STATE(3923), 1, - sym_parameter_declaration, - STATE(3924), 1, - sym_type_parameter_declaration, - STATE(4254), 1, - sym_plain_type, - STATE(4498), 1, - sym_reference_expression, - STATE(2753), 2, - sym_line_comment, - sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2362), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [81882] = 28, + [81362] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -260512,144 +260048,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5200), 1, - anon_sym_CARET, ACTIONS(5202), 1, - anon_sym_AMP_AMP, + anon_sym_CARET, ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5378), 1, + ACTIONS(5382), 1, anon_sym_LBRACE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2754), 2, + STATE(2746), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81983] = 28, + [81463] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, + STATE(2747), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1889), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5300), 1, - sym_identifier, - ACTIONS(5304), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5306), 1, - anon_sym_mut, - ACTIONS(5308), 1, anon_sym_BANG, - ACTIONS(5310), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, anon_sym_AMP, - ACTIONS(5314), 1, - anon_sym_shared, - ACTIONS(5380), 1, - anon_sym_RPAREN, - STATE(2993), 1, - sym_mutability_modifiers, - STATE(3910), 1, - sym_type_parameter_declaration, - STATE(3914), 1, - sym_parameter_declaration, - STATE(4254), 1, - sym_plain_type, - STATE(4498), 1, - sym_reference_expression, - STATE(2755), 2, - sym_line_comment, - sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2362), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [82084] = 5, + anon_sym_GT_GT, + ACTIONS(1887), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [81518] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2756), 2, + ACTIONS(2031), 1, + anon_sym_COMMA, + STATE(2748), 2, sym_line_comment, sym_block_comment, - ACTIONS(2269), 13, + ACTIONS(1809), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260663,10 +260178,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2267), 27, + ACTIONS(1807), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -260691,92 +260205,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82139] = 28, + [81575] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5320), 1, + sym_identifier, + ACTIONS(5324), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5326), 1, + anon_sym_mut, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5200), 1, - anon_sym_CARET, - ACTIONS(5202), 1, - anon_sym_AMP_AMP, - ACTIONS(5204), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5382), 1, - anon_sym_LBRACE, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5194), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5206), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2757), 2, + ACTIONS(5332), 1, + anon_sym_AMP, + ACTIONS(5334), 1, + anon_sym_shared, + ACTIONS(5384), 1, + anon_sym_RPAREN, + STATE(2963), 1, + sym_mutability_modifiers, + STATE(3955), 1, + sym_parameter_declaration, + STATE(3956), 1, + sym_type_parameter_declaration, + STATE(4013), 1, + sym_plain_type, + STATE(4423), 1, + sym_reference_expression, + STATE(2749), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5192), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5196), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5190), 5, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2292), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [81676] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [82240] = 7, + ACTIONS(5324), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5326), 1, + anon_sym_mut, + ACTIONS(5328), 1, + anon_sym_BANG, + ACTIONS(5330), 1, + anon_sym_LBRACK2, + ACTIONS(5332), 1, + anon_sym_AMP, + ACTIONS(5334), 1, + anon_sym_shared, + ACTIONS(5386), 1, + sym_identifier, + ACTIONS(5388), 1, + anon_sym_RPAREN, + STATE(2993), 1, + sym_mutability_modifiers, + STATE(3764), 1, + sym_type_parameter_declaration, + STATE(3890), 1, + sym_parameter_declaration, + STATE(4013), 1, + sym_plain_type, + STATE(4423), 1, + sym_reference_expression, + STATE(2750), 2, + sym_line_comment, + sym_block_comment, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2292), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [81777] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5384), 1, - anon_sym_else, - STATE(2878), 1, - sym_else_branch, - STATE(2758), 2, + STATE(2751), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 11, + ACTIONS(2805), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -260788,9 +260372,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1797), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2803), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -260798,12 +260384,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, @@ -260816,88 +260401,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82299] = 28, + [81832] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5300), 1, - sym_identifier, - ACTIONS(5304), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5306), 1, - anon_sym_mut, - ACTIONS(5308), 1, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, ACTIONS(5312), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(5314), 1, - anon_sym_shared, - ACTIONS(5386), 1, + anon_sym_AMP_AMP, + ACTIONS(5316), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5390), 1, anon_sym_RPAREN, - STATE(2993), 1, - sym_mutability_modifiers, - STATE(3971), 1, - sym_type_parameter_declaration, - STATE(3972), 1, - sym_parameter_declaration, - STATE(4254), 1, - sym_plain_type, - STATE(4498), 1, - sym_reference_expression, - STATE(2759), 2, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5308), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5318), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2752), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2362), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [82400] = 6, + ACTIONS(5302), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5306), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5310), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5304), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [81933] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1989), 2, + ACTIONS(2031), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(2760), 2, + STATE(2753), 2, sym_line_comment, sym_block_comment, ACTIONS(1809), 11, @@ -260940,19 +260525,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82457] = 7, + [81990] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5384), 1, - anon_sym_else, - STATE(2876), 1, - sym_else_branch, - STATE(2761), 2, + STATE(2754), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 11, + ACTIONS(2877), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -260964,9 +260546,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1803), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2875), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -260974,12 +260558,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, @@ -260992,15 +260575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82516] = 5, + [82045] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2762), 2, + STATE(2755), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 13, + ACTIONS(2093), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -261014,7 +260597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2878), 27, + ACTIONS(2091), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -261042,7 +260625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82571] = 28, + [82100] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -261059,73 +260642,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5388), 1, - anon_sym_RPAREN, - STATE(2298), 1, + ACTIONS(5392), 1, + anon_sym_LBRACE, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2763), 2, + STATE(2756), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82672] = 6, + [82201] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2515), 1, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5312), 1, + anon_sym_CARET, + ACTIONS(5314), 1, + anon_sym_AMP_AMP, + ACTIONS(5316), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5394), 1, + anon_sym_RPAREN, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, anon_sym_DOT, - STATE(2764), 2, + anon_sym_QMARK_DOT, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5308), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5318), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2757), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5302), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5306), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5310), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5304), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [82302] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2031), 1, + anon_sym_COMMA, + STATE(2758), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 12, + ACTIONS(2715), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -261138,10 +260795,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2511), 27, + ACTIONS(2713), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -261166,15 +260822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82729] = 5, + [82359] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2765), 2, + STATE(2759), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 13, + ACTIONS(2101), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -261188,7 +260844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2511), 27, + ACTIONS(2099), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -261216,7 +260872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82784] = 28, + [82414] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -261233,63 +260889,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5390), 1, - anon_sym_RBRACK, - STATE(2298), 1, + ACTIONS(5396), 1, + anon_sym_LBRACE, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5078), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2766), 2, + STATE(2760), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82885] = 28, + [82515] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -261306,63 +260962,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5314), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - ACTIONS(5392), 1, - anon_sym_SEMI, - STATE(2298), 1, + ACTIONS(5398), 1, + anon_sym_RPAREN, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5078), 2, + ACTIONS(5308), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2767), 2, + STATE(2761), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82986] = 28, + [82616] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -261379,63 +261035,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5314), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - ACTIONS(5394), 1, + ACTIONS(5400), 1, anon_sym_RPAREN, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5308), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2768), 2, + STATE(2762), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5310), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5304), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [82717] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2763), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2837), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2835), 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(5320), 5, + 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, + [82772] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3039), 1, + anon_sym_DOT, + STATE(2764), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2887), 12, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2885), 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, - [83087] = 28, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [82829] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -261452,63 +261209,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5200), 1, - anon_sym_CARET, ACTIONS(5202), 1, - anon_sym_AMP_AMP, + anon_sym_CARET, ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5396), 1, + ACTIONS(5402), 1, anon_sym_LBRACE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2769), 2, + STATE(2765), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83188] = 28, + [82930] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -261525,71 +261282,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5398), 1, - anon_sym_RPAREN, - STATE(2298), 1, + ACTIONS(5404), 1, + anon_sym_LBRACE, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2770), 2, + STATE(2766), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83289] = 5, + [83031] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2771), 2, + STATE(2767), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 13, + ACTIONS(2887), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -261603,7 +261360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2804), 27, + ACTIONS(2885), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -261631,140 +261388,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83344] = 28, + [83086] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5300), 1, - sym_identifier, - ACTIONS(5304), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5306), 1, - anon_sym_mut, - ACTIONS(5308), 1, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, - anon_sym_AMP, - ACTIONS(5314), 1, - anon_sym_shared, - ACTIONS(5400), 1, - anon_sym_RPAREN, - STATE(2993), 1, - sym_mutability_modifiers, - STATE(3874), 1, - sym_type_parameter_declaration, - STATE(3875), 1, - sym_parameter_declaration, - STATE(4254), 1, - sym_plain_type, - STATE(4498), 1, - sym_reference_expression, - STATE(2772), 2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5202), 1, + anon_sym_CARET, + ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5406), 1, + anon_sym_LBRACE, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5196), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5208), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2768), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2362), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [83445] = 28, + ACTIONS(5190), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5194), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5198), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5192), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [83187] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5300), 1, + ACTIONS(5320), 1, sym_identifier, - ACTIONS(5304), 1, + ACTIONS(5324), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5306), 1, + ACTIONS(5326), 1, anon_sym_mut, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5314), 1, + ACTIONS(5334), 1, anon_sym_shared, - ACTIONS(5402), 1, + ACTIONS(5408), 1, anon_sym_RPAREN, - STATE(2993), 1, + STATE(2963), 1, sym_mutability_modifiers, - STATE(3870), 1, + STATE(3972), 1, sym_type_parameter_declaration, - STATE(3963), 1, + STATE(3973), 1, sym_parameter_declaration, - STATE(4254), 1, + STATE(4013), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2773), 2, + STATE(2769), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -261777,11 +261534,13 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [83546] = 28, + [83288] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(1771), 1, + anon_sym_LBRACE, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, @@ -261794,140 +261553,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5404), 1, - anon_sym_RPAREN, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2774), 2, + ACTIONS(5280), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2770), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83647] = 28, + [83389] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, - anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5200), 1, - anon_sym_CARET, - ACTIONS(5202), 1, - anon_sym_AMP_AMP, - ACTIONS(5204), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5406), 1, - anon_sym_LBRACE, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5194), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5206), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2775), 2, + STATE(2771), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(2863), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + anon_sym_DOT_DOT, + ACTIONS(2861), 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(5190), 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, - [83748] = 28, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [83444] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(1777), 1, + anon_sym_LBRACE, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, @@ -261940,63 +261676,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5408), 1, - anon_sym_RPAREN, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2776), 2, + STATE(2772), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83849] = 28, + [83545] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -262013,63 +261747,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5200), 1, + ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5202), 1, + ACTIONS(5314), 1, anon_sym_AMP_AMP, - ACTIONS(5204), 1, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, ACTIONS(5410), 1, - anon_sym_LBRACE, - STATE(2298), 1, + anon_sym_RPAREN, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5308), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2777), 2, + STATE(2773), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83950] = 28, + [83646] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -262086,333 +261820,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5200), 1, + ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5202), 1, + ACTIONS(5314), 1, anon_sym_AMP_AMP, - ACTIONS(5204), 1, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, ACTIONS(5412), 1, - anon_sym_LBRACE, - STATE(2298), 1, + anon_sym_RPAREN, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5308), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2778), 2, + STATE(2774), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [84051] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1891), 1, - anon_sym_DOT, - STATE(2779), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2475), 12, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2473), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5304), 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, - [84108] = 28, + [83747] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4719), 1, + ACTIONS(4938), 1, anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, + ACTIONS(4942), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4729), 1, + ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4731), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(4741), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(4743), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4749), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5234), 1, + ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5236), 1, - anon_sym_LT_DASH, - STATE(2080), 1, + ACTIONS(5314), 1, + anon_sym_AMP_AMP, + ACTIONS(5316), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5414), 1, + anon_sym_RPAREN, + STATE(2351), 1, sym_argument_list, - STATE(2081), 1, + STATE(2359), 1, sym_or_block, - STATE(4267), 1, + STATE(4149), 1, sym_type_parameters, - ACTIONS(4717), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4737), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4751), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(4753), 2, + ACTIONS(5308), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2780), 2, + STATE(2775), 2, sym_line_comment, sym_block_comment, - ACTIONS(4733), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4735), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4739), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5230), 5, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84209] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5300), 1, - sym_identifier, - ACTIONS(5304), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5306), 1, - anon_sym_mut, - ACTIONS(5308), 1, - anon_sym_BANG, - ACTIONS(5310), 1, - anon_sym_LBRACK2, - ACTIONS(5312), 1, - anon_sym_AMP, - ACTIONS(5314), 1, - anon_sym_shared, - ACTIONS(5414), 1, - anon_sym_RPAREN, - STATE(2993), 1, - sym_mutability_modifiers, - STATE(3766), 1, - sym_parameter_declaration, - STATE(3767), 1, - sym_type_parameter_declaration, - STATE(4254), 1, - sym_plain_type, - STATE(4498), 1, - sym_reference_expression, - STATE(2781), 2, - sym_line_comment, - sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2362), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [84310] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5302), 1, - anon_sym_RPAREN, - ACTIONS(5304), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5306), 1, - anon_sym_mut, - ACTIONS(5308), 1, - anon_sym_BANG, - ACTIONS(5310), 1, - anon_sym_LBRACK2, - ACTIONS(5312), 1, - anon_sym_AMP, - ACTIONS(5314), 1, - anon_sym_shared, - ACTIONS(5416), 1, - sym_identifier, - STATE(2963), 1, - sym_mutability_modifiers, - STATE(3760), 1, - sym_parameter_declaration, - STATE(3768), 1, - sym_type_parameter_declaration, - STATE(4254), 1, - sym_plain_type, - STATE(4498), 1, - sym_reference_expression, - STATE(2782), 2, - sym_line_comment, - sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2362), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [84411] = 28, + [83848] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -262429,63 +261966,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5314), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - ACTIONS(5418), 1, + ACTIONS(5416), 1, anon_sym_RPAREN, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5308), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2783), 2, + STATE(2776), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84512] = 28, + [83949] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -262502,63 +262039,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5330), 1, - anon_sym_AMP_AMP, - ACTIONS(5332), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5420), 1, - anon_sym_RPAREN, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, + ACTIONS(1787), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5334), 2, - anon_sym_in, - anon_sym_BANGin, - STATE(2784), 2, + STATE(2777), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84613] = 28, + ACTIONS(1785), 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, + [84032] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -262575,69 +262103,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5422), 1, - anon_sym_RPAREN, - STATE(2298), 1, + ACTIONS(5418), 1, + anon_sym_LBRACE, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2785), 2, + STATE(2778), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84714] = 28, + [84133] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1771), 1, - anon_sym_LBRACE, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, @@ -262650,139 +262176,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5200), 1, - anon_sym_CARET, ACTIONS(5202), 1, - anon_sym_AMP_AMP, + anon_sym_CARET, ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, + ACTIONS(5420), 1, + anon_sym_LBRACE, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2786), 2, + STATE(2779), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84815] = 28, + [84234] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(5422), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2780), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2883), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2881), 25, anon_sym_as, - ACTIONS(5012), 1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5082), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - ACTIONS(5424), 1, - anon_sym_RBRACK, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - ACTIONS(5078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 2, anon_sym_in, anon_sym_BANGin, - STATE(2787), 2, + [84291] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5320), 1, + sym_identifier, + ACTIONS(5324), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5326), 1, + anon_sym_mut, + ACTIONS(5328), 1, + anon_sym_BANG, + ACTIONS(5330), 1, + anon_sym_LBRACK2, + ACTIONS(5332), 1, + anon_sym_AMP, + ACTIONS(5334), 1, + anon_sym_shared, + ACTIONS(5388), 1, + anon_sym_RPAREN, + STATE(2963), 1, + sym_mutability_modifiers, + STATE(3764), 1, + sym_type_parameter_declaration, + STATE(3890), 1, + sym_parameter_declaration, + STATE(4013), 1, + sym_plain_type, + STATE(4423), 1, + sym_reference_expression, + STATE(2781), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5074), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5080), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5072), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [84916] = 28, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2292), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [84392] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1793), 1, + ACTIONS(1763), 1, anon_sym_LBRACE, ACTIONS(4938), 1, anon_sym_LPAREN, @@ -262796,134 +262375,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5200), 1, - anon_sym_CARET, ACTIONS(5202), 1, - anon_sym_AMP_AMP, + anon_sym_CARET, ACTIONS(5204), 1, + anon_sym_AMP_AMP, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5194), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5206), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2788), 2, + STATE(2782), 2, sym_line_comment, sym_block_comment, - ACTIONS(5188), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85017] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5300), 1, - sym_identifier, - ACTIONS(5304), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5306), 1, - anon_sym_mut, - ACTIONS(5308), 1, - anon_sym_BANG, - ACTIONS(5310), 1, - anon_sym_LBRACK2, - ACTIONS(5312), 1, - anon_sym_AMP, - ACTIONS(5314), 1, - anon_sym_shared, - ACTIONS(5426), 1, - anon_sym_RPAREN, - STATE(2993), 1, - sym_mutability_modifiers, - STATE(3961), 1, - sym_parameter_declaration, - STATE(3962), 1, - sym_type_parameter_declaration, - STATE(4254), 1, - sym_plain_type, - STATE(4498), 1, - sym_reference_expression, - STATE(2789), 2, - sym_line_comment, - sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2362), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [85118] = 28, + [84493] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -262940,75 +262446,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5428), 1, - anon_sym_RPAREN, - STATE(2298), 1, + ACTIONS(5424), 1, + anon_sym_LBRACE, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2790), 2, + STATE(2783), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85219] = 6, + [84594] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2791), 2, + STATE(2784), 2, sym_line_comment, sym_block_comment, - ACTIONS(1894), 3, + ACTIONS(2060), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(1889), 13, + ACTIONS(2055), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -263022,7 +262528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1887), 24, + ACTIONS(2053), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -263047,18 +262553,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85276] = 6, + [84651] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1989), 2, + ACTIONS(2031), 2, anon_sym_LBRACE, anon_sym_COMMA, - STATE(2792), 2, + STATE(2785), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 13, + ACTIONS(2715), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -263072,7 +262578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2674), 25, + ACTIONS(2713), 25, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -263098,7 +262604,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85333] = 28, + [84708] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5320), 1, + sym_identifier, + ACTIONS(5324), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5326), 1, + anon_sym_mut, + ACTIONS(5328), 1, + anon_sym_BANG, + ACTIONS(5330), 1, + anon_sym_LBRACK2, + ACTIONS(5332), 1, + anon_sym_AMP, + ACTIONS(5334), 1, + anon_sym_shared, + ACTIONS(5426), 1, + anon_sym_RPAREN, + STATE(2963), 1, + sym_mutability_modifiers, + STATE(3760), 1, + sym_parameter_declaration, + STATE(3761), 1, + sym_type_parameter_declaration, + STATE(4013), 1, + sym_plain_type, + STATE(4423), 1, + sym_reference_expression, + STATE(2786), 2, + sym_line_comment, + sym_block_comment, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2292), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [84809] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -263115,123 +262694,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - ACTIONS(5430), 1, - anon_sym_RPAREN, - STATE(2298), 1, + ACTIONS(5428), 1, + anon_sym_SEMI, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - STATE(2793), 2, + STATE(2787), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85434] = 28, + [84910] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5300), 1, + ACTIONS(5320), 1, sym_identifier, - ACTIONS(5304), 1, + ACTIONS(5324), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5306), 1, + ACTIONS(5326), 1, anon_sym_mut, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5314), 1, + ACTIONS(5334), 1, anon_sym_shared, - ACTIONS(5432), 1, + ACTIONS(5430), 1, anon_sym_RPAREN, - STATE(2993), 1, + STATE(2963), 1, sym_mutability_modifiers, - STATE(3864), 1, - sym_parameter_declaration, - STATE(3865), 1, + STATE(3949), 1, sym_type_parameter_declaration, - STATE(4254), 1, + STATE(3950), 1, + sym_parameter_declaration, + STATE(4013), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2794), 2, + STATE(2788), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -263244,7 +262823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [85535] = 28, + [85011] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -263261,69 +262840,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5314), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - ACTIONS(5434), 1, + ACTIONS(5432), 1, anon_sym_RPAREN, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5308), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2795), 2, + STATE(2789), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85636] = 28, + [85112] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1771), 1, - anon_sym_RPAREN, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, @@ -263336,67 +262913,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5314), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, + ACTIONS(5434), 1, + anon_sym_RPAREN, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5308), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2796), 2, + STATE(2790), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85737] = 28, + [85213] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1793), 1, - anon_sym_RPAREN, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, @@ -263409,65 +262986,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, + ACTIONS(5236), 1, + anon_sym_LBRACE, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, - STATE(2797), 2, + STATE(2791), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5192), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [85314] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2031), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2792), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1809), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(1807), 25, + anon_sym_as, + anon_sym_LPAREN, 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, - [85838] = 28, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [85371] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(1763), 1, + anon_sym_RPAREN, ACTIONS(4938), 1, anon_sym_LPAREN, ACTIONS(4940), 1, @@ -263480,114 +263112,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5314), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - ACTIONS(5436), 1, - anon_sym_RPAREN, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5308), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2798), 2, + STATE(2793), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85939] = 6, + [85472] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1989), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2799), 2, + ACTIONS(1777), 1, + anon_sym_RPAREN, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5312), 1, + anon_sym_CARET, + ACTIONS(5314), 1, + anon_sym_AMP_AMP, + ACTIONS(5316), 1, + anon_sym_PIPE_PIPE, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5308), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5318), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2794), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 13, - anon_sym_DOT, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5306), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1807), 25, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + ACTIONS(5304), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [85573] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5128), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5130), 1, anon_sym_AMP_AMP, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5436), 1, + anon_sym_SEMI, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5124), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - [85996] = 28, + STATE(2795), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5118), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5122), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5126), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5120), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [85674] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -263604,123 +263329,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5314), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, ACTIONS(5438), 1, anon_sym_RPAREN, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5308), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2800), 2, + STATE(2796), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [86097] = 28, + [85775] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5300), 1, + ACTIONS(5320), 1, sym_identifier, - ACTIONS(5304), 1, + ACTIONS(5324), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5306), 1, + ACTIONS(5326), 1, anon_sym_mut, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5314), 1, + ACTIONS(5334), 1, anon_sym_shared, ACTIONS(5440), 1, anon_sym_RPAREN, - STATE(2993), 1, + STATE(2963), 1, sym_mutability_modifiers, - STATE(3800), 1, + STATE(3806), 1, sym_type_parameter_declaration, - STATE(3803), 1, + STATE(3821), 1, sym_parameter_declaration, - STATE(4254), 1, + STATE(4013), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2801), 2, + STATE(2797), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2292), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [85876] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5320), 1, + sym_identifier, + ACTIONS(5324), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5326), 1, + anon_sym_mut, + ACTIONS(5328), 1, + anon_sym_BANG, + ACTIONS(5330), 1, + anon_sym_LBRACK2, + ACTIONS(5332), 1, + anon_sym_AMP, + ACTIONS(5334), 1, + anon_sym_shared, + ACTIONS(5442), 1, + anon_sym_RPAREN, + STATE(2963), 1, + sym_mutability_modifiers, + STATE(3847), 1, + sym_parameter_declaration, + STATE(3849), 1, + sym_type_parameter_declaration, + STATE(4013), 1, + sym_plain_type, + STATE(4423), 1, + sym_reference_expression, + STATE(2798), 2, + sym_line_comment, + sym_block_comment, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -263733,7 +263531,110 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [86198] = 28, + [85977] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2060), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2157), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2799), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2055), 12, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2053), 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_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, + [86036] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2057), 1, + anon_sym_DOT, + STATE(2800), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2159), 12, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2157), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_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, + [86093] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -263750,173 +263651,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - ACTIONS(5442), 1, - anon_sym_RPAREN, - STATE(2298), 1, + ACTIONS(5444), 1, + anon_sym_RBRACK, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - STATE(2802), 2, + STATE(2801), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [86299] = 5, + [86194] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2803), 2, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5312), 1, + anon_sym_CARET, + ACTIONS(5314), 1, + anon_sym_AMP_AMP, + ACTIONS(5316), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5446), 1, + anon_sym_RPAREN, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5308), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5318), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2802), 2, sym_line_comment, sym_block_comment, - ACTIONS(1813), 11, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5306), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1811), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5310), 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(5304), 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, - [86354] = 28, + [86295] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5300), 1, + ACTIONS(5320), 1, sym_identifier, - ACTIONS(5304), 1, + ACTIONS(5324), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5306), 1, + ACTIONS(5326), 1, anon_sym_mut, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5314), 1, + ACTIONS(5334), 1, anon_sym_shared, - ACTIONS(5358), 1, + ACTIONS(5350), 1, anon_sym_RPAREN, - STATE(2993), 1, + STATE(2963), 1, sym_mutability_modifiers, - STATE(3810), 1, - sym_plain_type, - STATE(3814), 1, - sym_parameter_declaration, - STATE(3819), 1, + STATE(3808), 1, sym_type_parameter_declaration, - STATE(4498), 1, + STATE(3809), 1, + sym_parameter_declaration, + STATE(4013), 1, + sym_plain_type, + STATE(4423), 1, sym_reference_expression, - STATE(2804), 2, + STATE(2803), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -263929,6 +263853,58 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, + [86396] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3039), 1, + anon_sym_DOT, + STATE(2804), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3913), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + ACTIONS(2887), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2885), 25, + 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, + anon_sym_DOT_DOT, [86455] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -263946,57 +263922,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5204), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5206), 1, anon_sym_PIPE_PIPE, - ACTIONS(5444), 1, - anon_sym_RPAREN, - STATE(2298), 1, + ACTIONS(5448), 1, + anon_sym_LBRACE, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5196), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5208), 2, anon_sym_in, anon_sym_BANGin, STATE(2805), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5190), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5194), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5198), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5192), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, @@ -264007,12 +263983,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5446), 1, + ACTIONS(5450), 1, anon_sym_DOLLARelse, STATE(2806), 2, sym_line_comment, sym_block_comment, - ACTIONS(1843), 11, + ACTIONS(2041), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264024,7 +264000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1841), 27, + ACTIONS(2039), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -264069,55 +264045,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5078), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5448), 2, + ACTIONS(5452), 2, anon_sym_is, anon_sym_BANGis, STATE(2807), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, @@ -264140,203 +264116,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5078), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5450), 2, + ACTIONS(5454), 2, anon_sym_is, anon_sym_BANGis, STATE(2808), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [86808] = 27, + [86808] = 26, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(4944), 1, - anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(619), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5076), 1, - anon_sym_CARET, - ACTIONS(5082), 1, - anon_sym_AMP_AMP, - ACTIONS(5114), 1, - anon_sym_PIPE_PIPE, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(2055), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5452), 2, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5328), 1, + anon_sym_BANG, + ACTIONS(5332), 1, + anon_sym_AMP, + ACTIONS(5456), 1, + anon_sym_DOT_DOT_DOT, + STATE(4115), 1, + sym_plain_type, + STATE(4119), 1, + sym__plain_type_without_special, + STATE(4423), 1, + sym_reference_expression, STATE(2809), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5074), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5080), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5072), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [86906] = 27, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(2157), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + STATE(2290), 3, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2292), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [86904] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, + ACTIONS(4675), 1, + anon_sym_as, + ACTIONS(4681), 1, anon_sym_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4691), 1, anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(4693), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4695), 1, + anon_sym_DASH_DASH, + ACTIONS(4697), 1, anon_sym_QMARK, - ACTIONS(4944), 1, + ACTIONS(4699), 1, anon_sym_BANG, - ACTIONS(4946), 1, + ACTIONS(4701), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5076), 1, - anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(4703), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(4705), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, + ACTIONS(4707), 1, + anon_sym_or, + ACTIONS(4709), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5460), 1, + anon_sym_CARET, + STATE(1977), 1, sym_or_block, - STATE(4251), 1, + STATE(1984), 1, + sym_argument_list, + STATE(4284), 1, sym_type_parameters, - ACTIONS(4948), 2, + ACTIONS(4673), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5078), 2, + ACTIONS(4687), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5246), 2, + ACTIONS(4711), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(4713), 2, + anon_sym_in, + anon_sym_BANGin, STATE(2810), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(4683), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(4685), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(4689), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5458), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [87004] = 27, + [87002] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -264353,144 +264328,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, - anon_sym_as, - ACTIONS(5012), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, - anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5076), 1, - anon_sym_CARET, - ACTIONS(5082), 1, - anon_sym_AMP_AMP, - ACTIONS(5114), 1, - anon_sym_PIPE_PIPE, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5454), 2, - anon_sym_is, - anon_sym_BANGis, - STATE(2811), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5070), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5074), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5080), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5072), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [87102] = 27, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4661), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(4667), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(4681), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_AMP_AMP, - ACTIONS(4691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4693), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(4695), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5458), 1, + ACTIONS(5128), 1, anon_sym_CARET, - STATE(1972), 1, - sym_or_block, - STATE(1977), 1, + ACTIONS(5130), 1, + anon_sym_AMP_AMP, + ACTIONS(5132), 1, + anon_sym_PIPE_PIPE, + STATE(2351), 1, sym_argument_list, - STATE(4147), 1, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, sym_type_parameters, - ACTIONS(4659), 2, + ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4673), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4697), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(4699), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - STATE(2812), 2, + ACTIONS(5462), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2811), 2, sym_line_comment, sym_block_comment, - ACTIONS(4669), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4671), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4675), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5456), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [87200] = 6, + [87100] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3913), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - STATE(2813), 2, + ACTIONS(2060), 1, + anon_sym_LBRACK, + ACTIONS(2157), 1, + anon_sym_LBRACE, + ACTIONS(5464), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + STATE(2812), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 12, - anon_sym_DOT, + ACTIONS(2055), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264502,7 +264409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2804), 25, + ACTIONS(2053), 24, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -264511,7 +264419,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -264527,8 +264434,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [87256] = 5, + [87160] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5128), 1, + anon_sym_CARET, + ACTIONS(5130), 1, + anon_sym_AMP_AMP, + ACTIONS(5132), 1, + anon_sym_PIPE_PIPE, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5030), 2, + anon_sym_is, + anon_sym_BANGis, + ACTIONS(5124), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5134), 2, + anon_sym_in, + anon_sym_BANGin, + STATE(2813), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5118), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5122), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5126), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5120), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [87258] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -264536,7 +264513,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2814), 2, sym_line_comment, sym_block_comment, - ACTIONS(2219), 11, + ACTIONS(2139), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264548,7 +264525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2222), 28, + ACTIONS(2142), 28, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -264577,22 +264554,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87310] = 8, + [87312] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1894), 1, - anon_sym_LBRACK, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(5460), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, + ACTIONS(3920), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(2815), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 11, + ACTIONS(2863), 12, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264604,8 +264578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1887), 24, - anon_sym_DOT, + ACTIONS(2861), 25, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -264614,6 +264587,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, @@ -264629,64 +264603,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87370] = 26, + anon_sym_DOT_DOT, + [87368] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_QMARK, + ACTIONS(4944), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, + anon_sym_DASH_DASH, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5128), 1, + anon_sym_CARET, + ACTIONS(5130), 1, + anon_sym_AMP_AMP, + ACTIONS(5132), 1, + anon_sym_PIPE_PIPE, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5124), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5134), 2, + anon_sym_in, + anon_sym_BANGin, + ACTIONS(5466), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2816), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5118), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5122), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5126), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5120), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [87466] = 25, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_LBRACK2, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(1889), 1, + ACTIONS(2055), 1, anon_sym_DOT, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5462), 1, + ACTIONS(5456), 1, anon_sym_DOT_DOT_DOT, - STATE(4033), 1, + STATE(4115), 1, sym_plain_type, - STATE(4037), 1, - sym__plain_type_without_special, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2816), 2, + STATE(2817), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(2473), 3, + ACTIONS(2157), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2360), 3, + STATE(2290), 4, + sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -264699,7 +264744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [87466] = 27, + [87560] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -264716,61 +264761,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5078), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5464), 2, + ACTIONS(5468), 2, anon_sym_is, anon_sym_BANGis, - STATE(2817), 2, + STATE(2818), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [87564] = 27, + [87658] = 26, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(619), 1, + anon_sym_LBRACK2, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(2055), 1, + anon_sym_DOT, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5328), 1, + anon_sym_BANG, + ACTIONS(5332), 1, + anon_sym_AMP, + ACTIONS(5470), 1, + anon_sym_DOT_DOT_DOT, + STATE(4189), 1, + sym_plain_type, + STATE(4190), 1, + sym__plain_type_without_special, + STATE(4423), 1, + sym_reference_expression, + STATE(2819), 2, + sym_line_comment, + sym_block_comment, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(2157), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + STATE(2290), 3, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2292), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [87754] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -264787,61 +264902,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5078), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5466), 2, + ACTIONS(5472), 2, anon_sym_is, anon_sym_BANGis, - STATE(2818), 2, + STATE(2820), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [87662] = 27, + [87852] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -264858,61 +264973,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5078), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5468), 2, + ACTIONS(5474), 2, anon_sym_is, anon_sym_BANGis, - STATE(2819), 2, + STATE(2821), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [87760] = 27, + [87950] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -264929,117 +265044,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5078), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5470), 2, + ACTIONS(5476), 2, anon_sym_is, anon_sym_BANGis, - STATE(2820), 2, + STATE(2822), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [87858] = 25, + [88048] = 25, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(619), 1, anon_sym_LBRACK2, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(1889), 1, + ACTIONS(2055), 1, anon_sym_DOT, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5472), 1, + ACTIONS(5470), 1, anon_sym_DOT_DOT_DOT, - STATE(4020), 1, + STATE(4189), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2821), 2, + STATE(2823), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(2473), 3, + ACTIONS(2157), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -265052,57 +265167,78 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [87952] = 6, + [88142] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5474), 1, - anon_sym_DOLLARelse, - STATE(2822), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1913), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4938), 1, + anon_sym_LPAREN, + ACTIONS(4940), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, anon_sym_QMARK, + ACTIONS(4944), 1, anon_sym_BANG, + ACTIONS(4946), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1911), 27, - anon_sym_DOT, + ACTIONS(4950), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5002), 1, anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, + ACTIONS(5020), 1, anon_sym_DASH_DASH, + ACTIONS(5022), 1, anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5024), 1, anon_sym_AMP_AMP, + ACTIONS(5026), 1, anon_sym_PIPE_PIPE, + ACTIONS(5028), 1, anon_sym_or, + STATE(2351), 1, + sym_argument_list, + STATE(2359), 1, + sym_or_block, + STATE(4149), 1, + sym_type_parameters, + ACTIONS(4948), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, + ACTIONS(5032), 2, anon_sym_in, anon_sym_BANGin, - [88008] = 27, + STATE(2824), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5008), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5012), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5016), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5010), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [88240] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -265119,144 +265255,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5078), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5476), 2, + ACTIONS(5478), 2, anon_sym_is, anon_sym_BANGis, - STATE(2823), 2, + STATE(2825), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [88106] = 25, + [88338] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, + ACTIONS(5480), 1, + anon_sym_DOLLARelse, + STATE(2826), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2079), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(579), 1, + anon_sym_BANG, anon_sym_LBRACK2, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(1889), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2077), 27, anon_sym_DOT, - ACTIONS(3564), 1, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3566), 1, anon_sym_STAR, - ACTIONS(5308), 1, - anon_sym_BANG, - ACTIONS(5312), 1, - anon_sym_AMP, - ACTIONS(5462), 1, - anon_sym_DOT_DOT_DOT, - STATE(4033), 1, - sym_plain_type, - STATE(4498), 1, - sym_reference_expression, - STATE(2824), 2, - sym_line_comment, - sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(2473), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - STATE(2360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2362), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [88200] = 8, + 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, + [88394] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(4793), 1, anon_sym_LBRACE, - ACTIONS(5478), 1, + ACTIONS(5482), 1, anon_sym_COMMA, - STATE(3938), 1, + STATE(3866), 1, aux_sym_expression_without_blocks_list_repeat1, - STATE(2825), 2, + STATE(2827), 2, sym_line_comment, sym_block_comment, - ACTIONS(2532), 11, + ACTIONS(2883), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265268,7 +265385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2530), 25, + ACTIONS(2881), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265294,7 +265411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88260] = 27, + [88454] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -265311,61 +265428,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5016), 1, + ACTIONS(5028), 1, + anon_sym_or, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5018), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5020), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - ACTIONS(5022), 1, - anon_sym_or, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5008), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5026), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - STATE(2826), 2, + ACTIONS(5484), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2828), 2, sym_line_comment, sym_block_comment, - ACTIONS(5002), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5006), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5010), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5004), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [88358] = 27, + [88552] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -265382,61 +265499,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5078), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5480), 2, + ACTIONS(5260), 2, anon_sym_is, anon_sym_BANGis, - STATE(2827), 2, + STATE(2829), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [88456] = 27, + [88650] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -265453,61 +265570,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5078), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - ACTIONS(5482), 2, + ACTIONS(5486), 2, anon_sym_is, anon_sym_BANGis, - STATE(2828), 2, + STATE(2830), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [88554] = 27, + [88748] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -265524,61 +265641,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5328), 1, + ACTIONS(5312), 1, anon_sym_CARET, - ACTIONS(5330), 1, + ACTIONS(5314), 1, anon_sym_AMP_AMP, - ACTIONS(5332), 1, + ACTIONS(5316), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, + ACTIONS(5030), 2, anon_sym_is, anon_sym_BANGis, - ACTIONS(5324), 2, + ACTIONS(5308), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5334), 2, + ACTIONS(5318), 2, anon_sym_in, anon_sym_BANGin, - STATE(2829), 2, + STATE(2831), 2, sym_line_comment, sym_block_comment, - ACTIONS(5318), 3, + ACTIONS(5302), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 3, + ACTIONS(5306), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5326), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5320), 5, + ACTIONS(5304), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [88652] = 27, + [88846] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -265595,210 +265712,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4950), 1, anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_as, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, + ACTIONS(5028), 1, anon_sym_or, - ACTIONS(5076), 1, + ACTIONS(5128), 1, anon_sym_CARET, - ACTIONS(5082), 1, + ACTIONS(5130), 1, anon_sym_AMP_AMP, - ACTIONS(5114), 1, + ACTIONS(5132), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, + STATE(2351), 1, sym_argument_list, - STATE(2299), 1, + STATE(2359), 1, sym_or_block, - STATE(4251), 1, + STATE(4149), 1, sym_type_parameters, ACTIONS(4948), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5024), 2, - anon_sym_is, - anon_sym_BANGis, - ACTIONS(5078), 2, + ACTIONS(5124), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5084), 2, + ACTIONS(5134), 2, anon_sym_in, anon_sym_BANGin, - STATE(2830), 2, + ACTIONS(5488), 2, + anon_sym_is, + anon_sym_BANGis, + STATE(2832), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(5118), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, + ACTIONS(5122), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(5126), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 5, + ACTIONS(5120), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [88750] = 26, + [88944] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(579), 1, - anon_sym_LBRACK2, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(1889), 1, - anon_sym_DOT, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5308), 1, - anon_sym_BANG, - ACTIONS(5312), 1, - anon_sym_AMP, - ACTIONS(5472), 1, - anon_sym_DOT_DOT_DOT, - STATE(4017), 1, - sym__plain_type_without_special, - STATE(4020), 1, - sym_plain_type, - STATE(4498), 1, - sym_reference_expression, - STATE(2831), 2, + STATE(2833), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(2473), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2360), 3, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2362), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [88846] = 27, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - ACTIONS(4940), 1, - anon_sym_LBRACK, - ACTIONS(4942), 1, + ACTIONS(2809), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4944), 1, anon_sym_BANG, - ACTIONS(4946), 1, anon_sym_LBRACK2, - ACTIONS(4950), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4996), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2807), 27, + anon_sym_DOT, anon_sym_as, - ACTIONS(5012), 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_COLON, anon_sym_PLUS_PLUS, - ACTIONS(5014), 1, anon_sym_DASH_DASH, - ACTIONS(5022), 1, - anon_sym_or, - ACTIONS(5076), 1, anon_sym_CARET, - ACTIONS(5082), 1, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5114), 1, anon_sym_PIPE_PIPE, - STATE(2298), 1, - sym_argument_list, - STATE(2299), 1, - sym_or_block, - STATE(4251), 1, - sym_type_parameters, - ACTIONS(4948), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 2, - anon_sym_in, - anon_sym_BANGin, - ACTIONS(5484), 2, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - STATE(2832), 2, + anon_sym_in, + anon_sym_BANGin, + [88997] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2834), 2, sym_line_comment, sym_block_comment, - ACTIONS(5070), 3, + ACTIONS(3029), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5074), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5080), 4, + ACTIONS(3027), 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(5072), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [88944] = 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, + [89050] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2833), 2, + STATE(2835), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 11, + ACTIONS(2833), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265810,7 +265882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2844), 27, + ACTIONS(2831), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265838,17 +265910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88997] = 6, + [89103] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1911), 1, - sym_block, - STATE(2834), 2, + STATE(2836), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 11, + ACTIONS(2471), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265860,10 +265930,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2447), 26, + ACTIONS(2469), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265872,9 +265941,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, @@ -265887,60 +265958,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89052] = 23, + [89156] = 23, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3632), 1, + ACTIONS(3636), 1, anon_sym_LPAREN, - ACTIONS(3638), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(5486), 1, + ACTIONS(5490), 1, anon_sym_fn, - ACTIONS(5488), 1, + ACTIONS(5492), 1, anon_sym_STAR, - ACTIONS(5490), 1, + ACTIONS(5494), 1, anon_sym_QMARK, - ACTIONS(5492), 1, + ACTIONS(5496), 1, anon_sym_BANG, - ACTIONS(5494), 1, + ACTIONS(5498), 1, anon_sym_LBRACK2, - ACTIONS(5496), 1, + ACTIONS(5500), 1, anon_sym_AMP, - ACTIONS(5498), 1, + ACTIONS(5502), 1, anon_sym_shared, - ACTIONS(5500), 1, + ACTIONS(5504), 1, anon_sym_map_LBRACK, - ACTIONS(5502), 1, + ACTIONS(5506), 1, anon_sym_chan, - ACTIONS(5504), 1, + ACTIONS(5508), 1, anon_sym_thread, - ACTIONS(5506), 1, + ACTIONS(5510), 1, anon_sym_atomic, - STATE(1634), 1, + STATE(1641), 1, sym_plain_type, - STATE(4351), 1, + STATE(4356), 1, sym_reference_expression, - STATE(2835), 2, + STATE(2837), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, + STATE(3302), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(589), 4, + ACTIONS(597), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - STATE(1647), 4, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -265953,15 +266024,211 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [89141] = 5, + [89245] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2836), 2, + STATE(2806), 1, + sym_block, + STATE(2838), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2123), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2121), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [89300] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(985), 1, + sym_block, + STATE(2839), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2123), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2121), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [89355] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1900), 1, + sym_block, + STATE(2840), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2123), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2121), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [89410] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1909), 1, + sym_block, + STATE(2841), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2123), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2121), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [89465] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2842), 2, sym_line_comment, sym_block_comment, - ACTIONS(2886), 11, + ACTIONS(2771), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265973,7 +266240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2884), 27, + ACTIONS(2769), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266001,15 +266268,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89194] = 5, + [89518] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2837), 2, + STATE(1276), 1, + sym_block, + STATE(2843), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 11, + ACTIONS(2123), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2121), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [89573] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2844), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2115), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2113), 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, + [89626] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2845), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2029), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266021,7 +266385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2189), 27, + ACTIONS(2031), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266049,17 +266413,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89247] = 6, + [89679] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1136), 1, + STATE(2141), 1, sym_block, - STATE(2838), 2, + STATE(2846), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 11, + ACTIONS(2123), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266071,7 +266435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2447), 26, + ACTIONS(2121), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -266098,60 +266462,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89302] = 23, + [89734] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2847), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2851), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2849), 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, + [89787] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(2325), 1, + STATE(2328), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2839), 2, + STATE(2848), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(585), 4, + ACTIONS(599), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -266164,15 +266576,15 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [89391] = 5, + [89876] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2840), 2, + STATE(2849), 2, sym_line_comment, sym_block_comment, - ACTIONS(2125), 11, + ACTIONS(2741), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266184,7 +266596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2123), 27, + ACTIONS(2739), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266212,15 +266624,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89444] = 5, + [89929] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2841), 2, + STATE(2850), 2, sym_line_comment, sym_block_comment, - ACTIONS(1987), 11, + ACTIONS(2089), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266232,7 +266644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1989), 27, + ACTIONS(2087), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266260,17 +266672,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89497] = 6, + [89982] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2131), 1, + STATE(2283), 1, sym_block, - STATE(2842), 2, + STATE(2851), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 11, + ACTIONS(2123), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266282,7 +266694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2447), 26, + ACTIONS(2121), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -266309,15 +266721,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89552] = 5, + [90037] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2843), 2, + STATE(2852), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 11, + ACTIONS(2767), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266329,7 +266741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2117), 27, + ACTIONS(2765), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266357,17 +266769,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89605] = 6, + [90090] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(257), 1, + STATE(1754), 1, sym_block, - STATE(2844), 2, + STATE(2853), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 11, + ACTIONS(2123), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266379,7 +266791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2447), 26, + ACTIONS(2121), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -266406,15 +266818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89660] = 5, + [90145] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2845), 2, + STATE(2854), 2, sym_line_comment, sym_block_comment, - ACTIONS(2862), 11, + ACTIONS(3066), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266426,7 +266838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2860), 27, + ACTIONS(3064), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266454,15 +266866,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89713] = 5, + [90198] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2846), 2, + STATE(2855), 2, sym_line_comment, sym_block_comment, - ACTIONS(3044), 11, + ACTIONS(2241), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266474,7 +266886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3042), 27, + ACTIONS(2239), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266502,208 +266914,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89766] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1894), 1, - anon_sym_LBRACK, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(5508), 2, - anon_sym_COMMA, - anon_sym_in, - STATE(2847), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1889), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1887), 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, - [89825] = 6, - ACTIONS(3), 1, + [90251] = 23, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(1901), 1, - sym_block, - STATE(2848), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2449), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2447), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3430), 1, + sym_identifier, + ACTIONS(3636), 1, anon_sym_LPAREN, + ACTIONS(3642), 1, + anon_sym_struct, + ACTIONS(5490), 1, + anon_sym_fn, + ACTIONS(5492), 1, anon_sym_STAR, - 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, - [89880] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2849), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2858), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5494), 1, anon_sym_QMARK, + ACTIONS(5496), 1, anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_LBRACK2, + ACTIONS(5500), 1, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2856), 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, - [89933] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(5502), 1, + anon_sym_shared, + ACTIONS(5504), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(5506), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(5508), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(5510), 1, anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5308), 1, - anon_sym_BANG, - ACTIONS(5310), 1, - anon_sym_LBRACK2, - ACTIONS(5312), 1, - anon_sym_AMP, - STATE(2416), 1, + STATE(1637), 1, sym_plain_type, - STATE(4498), 1, + STATE(4356), 1, sym_reference_expression, - STATE(2850), 2, + STATE(2856), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3302), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(617), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2360), 4, + ACTIONS(567), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -266716,15 +266980,15 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90022] = 5, + [90340] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2851), 2, + STATE(2857), 2, sym_line_comment, sym_block_comment, - ACTIONS(2854), 11, + ACTIONS(2257), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266736,7 +267000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2852), 27, + ACTIONS(2255), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266764,15 +267028,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90075] = 5, + [90393] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2852), 2, + STATE(2858), 2, sym_line_comment, sym_block_comment, - ACTIONS(2696), 11, + ACTIONS(2457), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266784,7 +267048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2694), 27, + ACTIONS(2455), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266812,15 +267076,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90128] = 5, + [90446] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2853), 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(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5328), 1, + anon_sym_BANG, + ACTIONS(5330), 1, + anon_sym_LBRACK2, + ACTIONS(5332), 1, + anon_sym_AMP, + STATE(2311), 1, + sym_plain_type, + STATE(4423), 1, + sym_reference_expression, + STATE(2859), 2, + sym_line_comment, + sym_block_comment, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(563), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2290), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2292), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [90535] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2860), 2, sym_line_comment, sym_block_comment, - ACTIONS(2505), 11, + ACTIONS(2463), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266832,7 +267162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2503), 27, + ACTIONS(2461), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266860,15 +267190,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90181] = 5, + [90588] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2854), 2, + ACTIONS(2060), 1, + anon_sym_LBRACK, + ACTIONS(2157), 1, + anon_sym_LBRACE, + ACTIONS(5512), 2, + anon_sym_COMMA, + anon_sym_in, + STATE(2861), 2, sym_line_comment, sym_block_comment, - ACTIONS(2467), 11, + ACTIONS(2055), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266880,7 +267217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2465), 27, + ACTIONS(2053), 23, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266890,12 +267227,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, @@ -266906,17 +267240,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - [90234] = 5, + [90647] = 23, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3430), 1, + sym_identifier, + ACTIONS(3636), 1, + anon_sym_LPAREN, + ACTIONS(3642), 1, + anon_sym_struct, + ACTIONS(5490), 1, + anon_sym_fn, + ACTIONS(5492), 1, + anon_sym_STAR, + ACTIONS(5494), 1, + anon_sym_QMARK, + ACTIONS(5496), 1, + anon_sym_BANG, + ACTIONS(5498), 1, + anon_sym_LBRACK2, + ACTIONS(5500), 1, + anon_sym_AMP, + ACTIONS(5502), 1, + anon_sym_shared, + ACTIONS(5504), 1, + anon_sym_map_LBRACK, + ACTIONS(5506), 1, + anon_sym_chan, + ACTIONS(5508), 1, + anon_sym_thread, + ACTIONS(5510), 1, + anon_sym_atomic, + STATE(1654), 1, + sym_plain_type, + STATE(4356), 1, + sym_reference_expression, + STATE(2862), 2, + sym_line_comment, + sym_block_comment, + STATE(3302), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(601), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1658), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1657), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [90736] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2855), 2, + STATE(2863), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 11, + ACTIONS(2817), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266928,7 +267327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2461), 27, + ACTIONS(2815), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266956,15 +267355,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90287] = 5, + [90789] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2856), 2, + STATE(2600), 1, + sym_block, + STATE(2864), 2, sym_line_comment, sym_block_comment, - ACTIONS(3050), 11, + ACTIONS(2123), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266976,9 +267377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3048), 27, + ACTIONS(2121), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266987,11 +267389,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, @@ -267004,15 +267404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90340] = 5, + [90844] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2857), 2, + STATE(2865), 2, sym_line_comment, sym_block_comment, - ACTIONS(2203), 11, + ACTIONS(2883), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267024,7 +267424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2201), 27, + ACTIONS(2881), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267052,15 +267452,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90393] = 5, + [90897] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2858), 2, + ACTIONS(4830), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2866), 2, sym_line_comment, sym_block_comment, - ACTIONS(2910), 11, + ACTIONS(2883), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267072,7 +267475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2908), 27, + ACTIONS(2881), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267083,11 +267486,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, @@ -267100,15 +267501,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90446] = 5, + [90952] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2859), 2, + STATE(2867), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 11, + ACTIONS(2891), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267120,7 +267521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2469), 27, + ACTIONS(2889), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267148,150 +267549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90499] = 23, + [91005] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5308), 1, - anon_sym_BANG, - ACTIONS(5310), 1, - anon_sym_LBRACK2, - ACTIONS(5312), 1, - anon_sym_AMP, - STATE(2345), 1, - sym_plain_type, - STATE(4498), 1, - sym_reference_expression, - STATE(2860), 2, - sym_line_comment, - sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(621), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2362), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [90588] = 26, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5304), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5306), 1, - anon_sym_mut, - ACTIONS(5308), 1, - anon_sym_BANG, - ACTIONS(5310), 1, - anon_sym_LBRACK2, - ACTIONS(5312), 1, - anon_sym_AMP, - ACTIONS(5314), 1, - anon_sym_shared, - STATE(2979), 1, - sym_mutability_modifiers, - STATE(4030), 1, - sym_type_parameter_declaration, - STATE(4254), 1, - sym_plain_type, - STATE(4498), 1, - sym_reference_expression, - STATE(2861), 2, - sym_line_comment, - sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2362), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [90683] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2862), 2, + STATE(2868), 2, sym_line_comment, sym_block_comment, - ACTIONS(2211), 11, + ACTIONS(2475), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267303,7 +267569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2209), 27, + ACTIONS(2473), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267331,15 +267597,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90736] = 5, + [91058] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2863), 2, + STATE(2869), 2, sym_line_comment, sym_block_comment, - ACTIONS(2501), 11, + ACTIONS(2707), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267351,7 +267617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2499), 27, + ACTIONS(2705), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267379,15 +267645,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90789] = 5, + [91111] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2864), 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(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5328), 1, + anon_sym_BANG, + ACTIONS(5330), 1, + anon_sym_LBRACK2, + ACTIONS(5332), 1, + anon_sym_AMP, + STATE(2396), 1, + sym_plain_type, + STATE(4423), 1, + sym_reference_expression, + STATE(2870), 2, sym_line_comment, sym_block_comment, - ACTIONS(2718), 11, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(595), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2290), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2292), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [91200] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(281), 1, + sym_block, + STATE(2871), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2123), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267399,9 +267733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2716), 27, + ACTIONS(2121), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267410,11 +267745,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, @@ -267427,17 +267760,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90842] = 6, + [91255] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1263), 1, - sym_block, - STATE(2865), 2, + STATE(2872), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 11, + ACTIONS(2821), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267449,10 +267780,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2447), 26, + ACTIONS(2819), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267461,9 +267791,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, @@ -267476,15 +267808,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90897] = 5, + [91308] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2866), 2, + STATE(2873), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 11, + ACTIONS(2719), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267496,7 +267828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2780), 27, + ACTIONS(2717), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267524,17 +267856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90950] = 6, + [91361] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2279), 1, - sym_block, - STATE(2867), 2, + STATE(2874), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 11, + ACTIONS(2725), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267546,10 +267876,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2447), 26, + ACTIONS(2723), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267558,9 +267887,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, @@ -267573,17 +267904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91005] = 6, + [91414] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1778), 1, - sym_block, - STATE(2868), 2, + STATE(2875), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 11, + ACTIONS(2745), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267595,10 +267924,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2447), 26, + ACTIONS(2743), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267607,9 +267935,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, @@ -267622,17 +267952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91060] = 6, + [91467] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(989), 1, - sym_block, - STATE(2869), 2, + STATE(2876), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 11, + ACTIONS(2749), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267644,10 +267972,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2447), 26, + ACTIONS(2747), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267656,9 +267983,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, @@ -267671,147 +268000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91115] = 23, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - sym_identifier, - ACTIONS(3632), 1, - anon_sym_LPAREN, - ACTIONS(3638), 1, - anon_sym_struct, - ACTIONS(5486), 1, - anon_sym_fn, - ACTIONS(5488), 1, - anon_sym_STAR, - ACTIONS(5490), 1, - anon_sym_QMARK, - ACTIONS(5492), 1, - anon_sym_BANG, - ACTIONS(5494), 1, - anon_sym_LBRACK2, - ACTIONS(5496), 1, - anon_sym_AMP, - ACTIONS(5498), 1, - anon_sym_shared, - ACTIONS(5500), 1, - anon_sym_map_LBRACK, - ACTIONS(5502), 1, - anon_sym_chan, - ACTIONS(5504), 1, - anon_sym_thread, - ACTIONS(5506), 1, - anon_sym_atomic, - STATE(1640), 1, - sym_plain_type, - STATE(4351), 1, - sym_reference_expression, - STATE(2870), 2, - sym_line_comment, - sym_block_comment, - STATE(3305), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(619), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1647), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1667), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [91204] = 23, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - sym_identifier, - ACTIONS(3632), 1, - anon_sym_LPAREN, - ACTIONS(3638), 1, - anon_sym_struct, - ACTIONS(5486), 1, - anon_sym_fn, - ACTIONS(5488), 1, - anon_sym_STAR, - ACTIONS(5490), 1, - anon_sym_QMARK, - ACTIONS(5492), 1, - anon_sym_BANG, - ACTIONS(5494), 1, - anon_sym_LBRACK2, - ACTIONS(5496), 1, - anon_sym_AMP, - ACTIONS(5498), 1, - anon_sym_shared, - ACTIONS(5500), 1, - anon_sym_map_LBRACK, - ACTIONS(5502), 1, - anon_sym_chan, - ACTIONS(5504), 1, - anon_sym_thread, - ACTIONS(5506), 1, - anon_sym_atomic, - STATE(1633), 1, - sym_plain_type, - STATE(4351), 1, - sym_reference_expression, - STATE(2871), 2, - sym_line_comment, - sym_block_comment, - STATE(3305), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(623), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1647), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1667), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [91293] = 5, + [91520] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2872), 2, + STATE(2877), 2, sym_line_comment, sym_block_comment, - ACTIONS(2732), 11, + ACTIONS(2801), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267823,7 +268020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2730), 27, + ACTIONS(2799), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267851,17 +268048,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91346] = 6, + [91573] = 26, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5324), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5326), 1, + anon_sym_mut, + ACTIONS(5328), 1, + anon_sym_BANG, + ACTIONS(5330), 1, + anon_sym_LBRACK2, + ACTIONS(5332), 1, + anon_sym_AMP, + ACTIONS(5334), 1, + anon_sym_shared, + STATE(2967), 1, + sym_mutability_modifiers, + STATE(4013), 1, + sym_plain_type, + STATE(4186), 1, + sym_type_parameter_declaration, + STATE(4423), 1, + sym_reference_expression, + STATE(2878), 2, + sym_line_comment, + sym_block_comment, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2292), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [91668] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1644), 1, + STATE(1633), 1, sym_block, - STATE(2873), 2, + STATE(2879), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 11, + ACTIONS(2123), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267873,7 +268139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2447), 26, + ACTIONS(2121), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -267900,15 +268166,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91401] = 5, + [91723] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2874), 2, + STATE(2447), 1, + sym_block, + STATE(2880), 2, sym_line_comment, sym_block_comment, - ACTIONS(3068), 11, + ACTIONS(2123), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267920,9 +268188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3066), 27, + ACTIONS(2121), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267931,11 +268200,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, @@ -267948,17 +268215,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91454] = 6, + [91778] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2588), 1, - sym_block, - STATE(2875), 2, + STATE(2881), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 11, + ACTIONS(2813), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267970,10 +268235,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2447), 26, + ACTIONS(2811), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267982,9 +268246,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, @@ -267997,15 +268263,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91509] = 5, + [91831] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2876), 2, + STATE(2882), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 11, + ACTIONS(3025), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268017,7 +268283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2792), 27, + ACTIONS(3023), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268045,15 +268311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91562] = 5, + [91884] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2877), 2, + STATE(1130), 1, + sym_block, + STATE(2883), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 11, + ACTIONS(2123), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268065,9 +268333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2520), 27, + ACTIONS(2121), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -268076,11 +268345,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, @@ -268093,66 +268360,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91615] = 5, + [91939] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2878), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2832), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2830), 27, + ACTIONS(4819), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_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, - [91668] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4838), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - STATE(2879), 2, + ACTIONS(5514), 1, + anon_sym_RPAREN, + STATE(2884), 2, sym_line_comment, sym_block_comment, - ACTIONS(2532), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268164,8 +268384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2530), 25, - anon_sym_DOT, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268190,17 +268409,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91723] = 6, + [91995] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2822), 1, - sym_block, - STATE(2880), 2, + ACTIONS(5516), 1, + anon_sym_RBRACK, + STATE(2885), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268212,10 +268431,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2447), 26, + ACTIONS(2885), 25, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -268239,15 +268457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91778] = 5, + [92049] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2881), 2, + ACTIONS(5518), 1, + anon_sym_RPAREN, + STATE(2886), 2, sym_line_comment, sym_block_comment, - ACTIONS(2874), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268259,7 +268479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2872), 27, + ACTIONS(2885), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268270,11 +268490,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, @@ -268287,65 +268505,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91831] = 5, + [92103] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2882), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2532), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2530), 27, + ACTIONS(4819), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_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, - [91884] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(2423), 1, - sym_block, - STATE(2883), 2, + ACTIONS(5520), 1, + anon_sym_RPAREN, + STATE(2887), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268357,10 +268529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2447), 26, - anon_sym_DOT, + ACTIONS(2885), 24, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -268384,17 +268554,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91939] = 6, + [92159] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5510), 1, + ACTIONS(5522), 1, anon_sym_RBRACK, - STATE(2884), 2, + STATE(2888), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 11, + ACTIONS(2507), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268406,7 +268576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 25, + ACTIONS(2505), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268432,17 +268602,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91993] = 6, + [92213] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5512), 1, - anon_sym_RBRACK, - STATE(2885), 2, + ACTIONS(5520), 1, + anon_sym_RPAREN, + STATE(2889), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268454,7 +268624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, + ACTIONS(2885), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268480,17 +268650,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92047] = 6, + [92267] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5514), 1, + ACTIONS(4819), 1, + anon_sym_DOT, + ACTIONS(5524), 1, anon_sym_RBRACK, - STATE(2886), 2, + STATE(2890), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268502,8 +268674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 25, - anon_sym_DOT, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268528,17 +268699,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92101] = 6, + [92323] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5516), 1, - anon_sym_RBRACK, - STATE(2887), 2, + ACTIONS(5526), 1, + anon_sym_RPAREN, + STATE(2891), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 11, + ACTIONS(2883), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268550,7 +268721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 25, + ACTIONS(2881), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268576,17 +268747,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92155] = 6, + [92377] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5516), 1, + ACTIONS(5528), 1, anon_sym_RBRACK, - STATE(2888), 2, + STATE(2892), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2507), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268598,7 +268769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, + ACTIONS(2505), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268624,66 +268795,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92209] = 7, + [92431] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, + ACTIONS(4819), 1, anon_sym_DOT, - ACTIONS(5518), 1, - anon_sym_RPAREN, - STATE(2889), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2513), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2511), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [92265] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5520), 1, + ACTIONS(5516), 1, anon_sym_RBRACK, - STATE(2890), 2, + STATE(2893), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268695,8 +268819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 25, - anon_sym_DOT, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268721,17 +268844,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92319] = 6, + [92487] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(5522), 1, anon_sym_RBRACK, - STATE(2891), 2, + STATE(2894), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268743,7 +268866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 25, + ACTIONS(2885), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268769,17 +268892,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92373] = 6, + [92541] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5522), 1, + ACTIONS(5516), 1, anon_sym_RBRACK, - STATE(2892), 2, + STATE(2895), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2507), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268791,7 +268914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, + ACTIONS(2505), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268817,68 +268940,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92427] = 7, + [92595] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, + ACTIONS(4819), 1, anon_sym_DOT, - ACTIONS(5524), 1, + ACTIONS(5530), 1, anon_sym_RBRACK, - STATE(2893), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2513), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2511), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [92483] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(5526), 1, - anon_sym_RPAREN, - STATE(2894), 2, + STATE(2896), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268890,7 +268964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268915,17 +268989,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92539] = 6, + [92651] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, + ACTIONS(5532), 1, anon_sym_RBRACK, - STATE(2895), 2, + STATE(2897), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 11, + ACTIONS(2507), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268937,7 +269011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 25, + ACTIONS(2505), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268963,113 +269037,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92593] = 6, + [92705] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5526), 1, + ACTIONS(5534), 1, anon_sym_RPAREN, - STATE(2896), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2513), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2511), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [92647] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5524), 1, - anon_sym_RBRACK, - STATE(2897), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2513), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2511), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [92701] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5510), 1, - anon_sym_RBRACK, STATE(2898), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269081,7 +269059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, + ACTIONS(2885), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269107,17 +269085,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92755] = 6, + [92759] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5530), 1, + ACTIONS(5532), 1, anon_sym_RBRACK, STATE(2899), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269129,7 +269107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, + ACTIONS(2885), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269155,17 +269133,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92809] = 6, + [92813] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5524), 1, + ACTIONS(5536), 1, anon_sym_RBRACK, STATE(2900), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269177,7 +269155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 25, + ACTIONS(2885), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269203,17 +269181,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92863] = 6, + [92867] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5530), 1, + ACTIONS(5524), 1, anon_sym_RBRACK, STATE(2901), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269225,7 +269203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 25, + ACTIONS(2885), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269251,17 +269229,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92917] = 6, + [92921] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5532), 1, + ACTIONS(5538), 1, anon_sym_RPAREN, STATE(2902), 2, sym_line_comment, sym_block_comment, - ACTIONS(2532), 11, + ACTIONS(2883), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269273,7 +269251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2530), 25, + ACTIONS(2881), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269299,19 +269277,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92971] = 7, + [92975] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(5510), 1, + ACTIONS(5536), 1, anon_sym_RBRACK, STATE(2903), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2507), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269323,7 +269299,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2505), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269348,19 +269325,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93027] = 7, + [93029] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, + ACTIONS(4819), 1, anon_sym_DOT, - ACTIONS(5522), 1, + ACTIONS(5540), 1, anon_sym_RBRACK, STATE(2904), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269372,7 +269349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269397,17 +269374,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93083] = 6, + [93085] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5518), 1, - anon_sym_RPAREN, + ACTIONS(4819), 1, + anon_sym_DOT, + ACTIONS(5542), 1, + anon_sym_RBRACK, STATE(2905), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269419,8 +269398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, - anon_sym_DOT, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269445,17 +269423,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93137] = 6, + [93141] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5520), 1, + ACTIONS(4819), 1, + anon_sym_DOT, + ACTIONS(5532), 1, anon_sym_RBRACK, STATE(2906), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269467,8 +269447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, - anon_sym_DOT, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269493,19 +269472,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93191] = 7, + [93197] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(5534), 1, - anon_sym_RBRACK, + ACTIONS(5544), 1, + anon_sym_RPAREN, STATE(2907), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269517,7 +269494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269542,17 +269520,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93247] = 6, + [93251] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5536), 1, - anon_sym_RPAREN, + ACTIONS(5542), 1, + anon_sym_RBRACK, STATE(2908), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269564,7 +269542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, + ACTIONS(2885), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269590,19 +269568,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93301] = 7, + [93305] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, + ACTIONS(4819), 1, anon_sym_DOT, - ACTIONS(5538), 1, + ACTIONS(5544), 1, anon_sym_RPAREN, STATE(2909), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269614,7 +269592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269639,17 +269617,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93357] = 6, + [93361] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5540), 1, - anon_sym_RPAREN, + ACTIONS(5546), 1, + anon_sym_RBRACK, STATE(2910), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2507), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269661,7 +269639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, + ACTIONS(2505), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269687,19 +269665,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93411] = 7, + [93415] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(5540), 1, - anon_sym_RPAREN, + ACTIONS(5542), 1, + anon_sym_RBRACK, STATE(2911), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2507), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269711,7 +269687,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2505), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269736,17 +269713,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93467] = 6, + [93469] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5542), 1, + ACTIONS(5514), 1, anon_sym_RPAREN, STATE(2912), 2, sym_line_comment, sym_block_comment, - ACTIONS(2532), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269758,7 +269735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2530), 25, + ACTIONS(2885), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269784,17 +269761,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93521] = 6, + [93523] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, + ACTIONS(5548), 1, anon_sym_RPAREN, STATE(2913), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269806,7 +269783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, + ACTIONS(2885), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269832,17 +269809,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93575] = 6, + [93577] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5546), 1, + ACTIONS(5550), 1, anon_sym_RPAREN, STATE(2914), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269854,7 +269831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, + ACTIONS(2885), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269880,17 +269857,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93629] = 6, + [93631] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5538), 1, + ACTIONS(4819), 1, + anon_sym_DOT, + ACTIONS(5518), 1, anon_sym_RPAREN, STATE(2915), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269902,8 +269881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, - anon_sym_DOT, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269928,17 +269906,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93683] = 6, + [93687] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5548), 1, - anon_sym_RBRACK, + ACTIONS(4819), 1, + anon_sym_DOT, + ACTIONS(5550), 1, + anon_sym_RPAREN, STATE(2916), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269950,8 +269930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 25, - anon_sym_DOT, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269976,19 +269955,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93737] = 7, + [93743] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, + ACTIONS(4819), 1, anon_sym_DOT, ACTIONS(5546), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, STATE(2917), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270000,7 +269979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270025,17 +270004,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93793] = 6, + [93799] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5550), 1, + ACTIONS(4819), 1, + anon_sym_DOT, + ACTIONS(5552), 1, anon_sym_RPAREN, STATE(2918), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270047,8 +270028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, - anon_sym_DOT, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270073,19 +270053,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93847] = 7, + [93855] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, + ACTIONS(4819), 1, anon_sym_DOT, - ACTIONS(5544), 1, - anon_sym_RPAREN, + ACTIONS(5554), 1, + anon_sym_RBRACK, STATE(2919), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270097,7 +270077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270122,116 +270102,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93903] = 7, + [93911] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, + ACTIONS(4819), 1, anon_sym_DOT, - ACTIONS(5512), 1, - anon_sym_RBRACK, - STATE(2920), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2513), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2511), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [93959] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5552), 1, + ACTIONS(5534), 1, anon_sym_RPAREN, - STATE(2921), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2532), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2530), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [94013] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(5554), 1, - anon_sym_RBRACK, - STATE(2922), 2, + STATE(2920), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270243,7 +270126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270268,19 +270151,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94069] = 7, + [93967] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, + ACTIONS(5552), 1, + anon_sym_RPAREN, + STATE(2921), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2887), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2885), 25, anon_sym_DOT, - ACTIONS(5530), 1, - anon_sym_RBRACK, + 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, + [94021] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4819), 1, + anon_sym_DOT, + ACTIONS(5556), 1, + anon_sym_RPAREN, + STATE(2922), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2887), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2885), 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, + [94077] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5556), 1, + anon_sym_RPAREN, STATE(2923), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270292,7 +270270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270317,17 +270296,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94125] = 6, + [94131] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5554), 1, + ACTIONS(5546), 1, anon_sym_RBRACK, STATE(2924), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270339,7 +270318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, + ACTIONS(2885), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270365,17 +270344,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94179] = 6, + [94185] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5556), 1, - anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_DOT, + ACTIONS(5548), 1, + anon_sym_RPAREN, STATE(2925), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270387,8 +270368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, - anon_sym_DOT, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270413,17 +270393,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94233] = 6, + [94241] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5512), 1, + ACTIONS(5554), 1, anon_sym_RBRACK, STATE(2926), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 11, + ACTIONS(2507), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270435,7 +270415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 25, + ACTIONS(2505), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270461,19 +270441,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94287] = 7, + [94295] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(5558), 1, + ACTIONS(5554), 1, anon_sym_RBRACK, STATE(2927), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270485,7 +270463,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270510,17 +270489,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94343] = 6, + [94349] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5554), 1, - anon_sym_RBRACK, + ACTIONS(5558), 1, + anon_sym_LBRACE, STATE(2928), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270532,7 +270511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 25, + ACTIONS(2885), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270558,17 +270537,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94397] = 6, + [94403] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5514), 1, + ACTIONS(4819), 1, + anon_sym_DOT, + ACTIONS(5528), 1, anon_sym_RBRACK, STATE(2929), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270580,8 +270561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, - anon_sym_DOT, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270606,19 +270586,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94451] = 7, + [94459] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, ACTIONS(5560), 1, anon_sym_RPAREN, STATE(2930), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270630,7 +270608,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270655,17 +270634,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94507] = 6, + [94513] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5548), 1, - anon_sym_RBRACK, + ACTIONS(4819), 1, + anon_sym_DOT, + ACTIONS(5560), 1, + anon_sym_RPAREN, STATE(2931), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270677,8 +270658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, - anon_sym_DOT, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270703,17 +270683,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94561] = 6, + [94569] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5534), 1, + ACTIONS(5524), 1, anon_sym_RBRACK, STATE(2932), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2507), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270725,7 +270705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, + ACTIONS(2505), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270751,19 +270731,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94615] = 7, + [94623] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(5562), 1, - anon_sym_RPAREN, + ACTIONS(5528), 1, + anon_sym_RBRACK, STATE(2933), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270775,7 +270753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270800,17 +270779,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94671] = 6, + [94677] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(5562), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, STATE(2934), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2507), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270822,7 +270801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, + ACTIONS(2505), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270848,19 +270827,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94725] = 7, + [94731] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(5550), 1, - anon_sym_RPAREN, + ACTIONS(5562), 1, + anon_sym_RBRACK, STATE(2935), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270872,7 +270849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270897,17 +270875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94781] = 6, + [94785] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5558), 1, + ACTIONS(4819), 1, + anon_sym_DOT, + ACTIONS(5564), 1, anon_sym_RBRACK, STATE(2936), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270919,8 +270899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, - anon_sym_DOT, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270945,17 +270924,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94835] = 6, + [94841] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5534), 1, + ACTIONS(5564), 1, anon_sym_RBRACK, STATE(2937), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270967,7 +270946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 25, + ACTIONS(2885), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270993,17 +270972,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94889] = 6, + [94895] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5564), 1, + ACTIONS(5566), 1, anon_sym_RBRACK, STATE(2938), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 11, + ACTIONS(2507), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271015,7 +270994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 25, + ACTIONS(2505), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271041,19 +271020,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94943] = 7, + [94949] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, + ACTIONS(4819), 1, anon_sym_DOT, - ACTIONS(5528), 1, + ACTIONS(5522), 1, anon_sym_RBRACK, STATE(2939), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271065,7 +271044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271090,19 +271069,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94999] = 7, + [95005] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(5536), 1, - anon_sym_RPAREN, + ACTIONS(5566), 1, + anon_sym_RBRACK, STATE(2940), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271114,7 +271091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271139,17 +271117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95055] = 6, + [95059] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5566), 1, + ACTIONS(5564), 1, anon_sym_RBRACK, STATE(2941), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 11, + ACTIONS(2507), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271161,7 +271139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 25, + ACTIONS(2505), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271187,19 +271165,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95109] = 7, + [95113] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, + ACTIONS(4819), 1, anon_sym_DOT, - ACTIONS(5514), 1, + ACTIONS(5566), 1, anon_sym_RBRACK, STATE(2942), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271211,7 +271189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271236,19 +271214,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95165] = 7, + [95169] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, ACTIONS(5568), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, STATE(2943), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271260,7 +271236,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271285,17 +271262,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95221] = 6, + [95223] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5558), 1, - anon_sym_RBRACK, + ACTIONS(4819), 1, + anon_sym_DOT, + ACTIONS(5568), 1, + anon_sym_RPAREN, STATE(2944), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271307,8 +271286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 25, - anon_sym_DOT, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271333,17 +271311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95275] = 6, + [95279] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5568), 1, + ACTIONS(5530), 1, anon_sym_RBRACK, STATE(2945), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271355,7 +271333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, + ACTIONS(2885), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271381,17 +271359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95329] = 6, + [95333] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5568), 1, + ACTIONS(4819), 1, + anon_sym_DOT, + ACTIONS(5536), 1, anon_sym_RBRACK, STATE(2946), 2, sym_line_comment, sym_block_comment, - ACTIONS(2880), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271403,8 +271383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 25, - anon_sym_DOT, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271429,17 +271408,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95383] = 6, + [95389] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5566), 1, + ACTIONS(5530), 1, anon_sym_RBRACK, STATE(2947), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2507), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271451,7 +271430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, + ACTIONS(2505), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271477,19 +271456,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95437] = 7, + [95443] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, + ACTIONS(4819), 1, anon_sym_DOT, - ACTIONS(5548), 1, + ACTIONS(5570), 1, anon_sym_RBRACK, STATE(2948), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271501,7 +271480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271526,19 +271505,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95493] = 7, + [95499] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(5566), 1, + ACTIONS(5540), 1, anon_sym_RBRACK, STATE(2949), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271550,7 +271527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271575,17 +271553,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95549] = 6, + [95553] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5528), 1, + ACTIONS(5540), 1, anon_sym_RBRACK, STATE(2950), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2507), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271597,7 +271575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, + ACTIONS(2505), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271623,19 +271601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95603] = 7, + [95607] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(5520), 1, + ACTIONS(5570), 1, anon_sym_RBRACK, STATE(2951), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271647,7 +271623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271672,17 +271649,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95659] = 6, + [95661] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5560), 1, - anon_sym_RPAREN, + ACTIONS(5570), 1, + anon_sym_RBRACK, STATE(2952), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2507), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271694,7 +271671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, + ACTIONS(2505), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -271720,17 +271697,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95713] = 6, + [95715] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5570), 1, + ACTIONS(4819), 1, + anon_sym_DOT, + ACTIONS(5572), 1, anon_sym_RPAREN, STATE(2953), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271742,8 +271721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, - anon_sym_DOT, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271768,19 +271746,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95767] = 7, + [95771] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(5570), 1, + ACTIONS(5572), 1, anon_sym_RPAREN, STATE(2954), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271792,7 +271768,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271817,19 +271794,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95823] = 7, + [95825] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(5516), 1, - anon_sym_RBRACK, + ACTIONS(5574), 1, + anon_sym_RPAREN, STATE(2955), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2883), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271841,7 +271816,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2881), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271866,17 +271842,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95879] = 6, + [95879] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5572), 1, - anon_sym_RPAREN, + ACTIONS(4819), 1, + anon_sym_DOT, + ACTIONS(5562), 1, + anon_sym_RBRACK, STATE(2956), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271888,8 +271866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, - anon_sym_DOT, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271914,19 +271891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95933] = 7, + [95935] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(5572), 1, - anon_sym_RPAREN, + ACTIONS(5576), 1, + anon_sym_RBRACK, STATE(2957), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2507), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271938,7 +271913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2505), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -271968,14 +271944,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, + ACTIONS(4819), 1, anon_sym_DOT, - ACTIONS(5564), 1, + ACTIONS(5576), 1, anon_sym_RBRACK, STATE(2958), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271987,7 +271963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 24, + ACTIONS(2885), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -272017,12 +271993,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5564), 1, + ACTIONS(5576), 1, anon_sym_RBRACK, STATE(2959), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 11, + ACTIONS(2887), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -272034,7 +272010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2511), 25, + ACTIONS(2885), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -272065,54 +272041,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3606), 1, - anon_sym_fn, - ACTIONS(3610), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(3620), 1, + ACTIONS(5490), 1, + anon_sym_fn, + ACTIONS(5502), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(5506), 1, anon_sym_chan, - ACTIONS(3626), 1, + ACTIONS(5508), 1, anon_sym_thread, - ACTIONS(3628), 1, + ACTIONS(5510), 1, anon_sym_atomic, - ACTIONS(5574), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5576), 1, + ACTIONS(5580), 1, anon_sym_EQ, - ACTIONS(5578), 1, + ACTIONS(5582), 1, anon_sym_STAR, - ACTIONS(5580), 1, + ACTIONS(5584), 1, anon_sym_QMARK, - ACTIONS(5582), 1, + ACTIONS(5586), 1, anon_sym_BANG, - ACTIONS(5584), 1, + ACTIONS(5588), 1, anon_sym_LBRACK2, - ACTIONS(5586), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5588), 1, + ACTIONS(5592), 1, anon_sym_map_LBRACK, - STATE(1508), 1, + STATE(3595), 1, sym_plain_type, - STATE(1509), 1, + STATE(3704), 1, sym__global_var_value, - STATE(4496), 1, + STATE(4356), 1, sym_reference_expression, - STATE(1401), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(2960), 2, sym_line_comment, sym_block_comment, - STATE(1444), 4, + STATE(3302), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1445), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272130,54 +272106,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3606), 1, sym_identifier, - ACTIONS(3638), 1, - anon_sym_struct, - ACTIONS(5486), 1, + ACTIONS(3610), 1, anon_sym_fn, - ACTIONS(5498), 1, + ACTIONS(3614), 1, + anon_sym_struct, + ACTIONS(3624), 1, anon_sym_shared, - ACTIONS(5502), 1, + ACTIONS(3628), 1, anon_sym_chan, - ACTIONS(5504), 1, + ACTIONS(3630), 1, anon_sym_thread, - ACTIONS(5506), 1, + ACTIONS(3632), 1, anon_sym_atomic, - ACTIONS(5590), 1, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(5592), 1, + ACTIONS(5596), 1, anon_sym_EQ, - ACTIONS(5594), 1, + ACTIONS(5598), 1, anon_sym_STAR, - ACTIONS(5596), 1, + ACTIONS(5600), 1, anon_sym_QMARK, - ACTIONS(5598), 1, + ACTIONS(5602), 1, anon_sym_BANG, - ACTIONS(5600), 1, + ACTIONS(5604), 1, anon_sym_LBRACK2, - ACTIONS(5602), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5604), 1, + ACTIONS(5608), 1, anon_sym_map_LBRACK, - STATE(3681), 1, + STATE(1506), 1, sym_plain_type, - STATE(3684), 1, + STATE(1507), 1, sym__global_var_value, - STATE(4351), 1, + STATE(4472), 1, sym_reference_expression, + STATE(1404), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(2961), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1647), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(1440), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272197,50 +272173,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5606), 1, + ACTIONS(5610), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2962), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272260,50 +272236,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5612), 1, sym_identifier, - ACTIONS(5610), 1, + ACTIONS(5614), 1, anon_sym_DOT_DOT_DOT, - STATE(4081), 1, + STATE(4122), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2963), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272323,50 +272299,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5612), 1, + ACTIONS(5616), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2964), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272386,50 +272362,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5614), 1, + ACTIONS(5618), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2965), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272442,44 +272418,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96621] = 10, + [96621] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2332), 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(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5328), 1, + anon_sym_BANG, + ACTIONS(5330), 1, + anon_sym_LBRACK2, + ACTIONS(5332), 1, + anon_sym_AMP, + ACTIONS(5620), 1, + anon_sym_RPAREN, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2966), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - ACTIONS(4557), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4559), 8, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272492,57 +272481,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96681] = 23, + [96707] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5616), 1, - anon_sym_RPAREN, - STATE(3991), 1, + ACTIONS(5614), 1, + anon_sym_DOT_DOT_DOT, + STATE(4122), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2967), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272555,57 +272544,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96767] = 23, + [96793] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5618), 1, + ACTIONS(5622), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2968), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272618,57 +272607,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96853] = 23, + [96879] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5620), 1, - anon_sym_RPAREN, - STATE(3991), 1, + ACTIONS(5456), 1, + anon_sym_DOT_DOT_DOT, + STATE(4115), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2969), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272681,57 +272670,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96939] = 23, + [96965] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5622), 1, + ACTIONS(5624), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2970), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272744,57 +272733,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97025] = 23, + [97051] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5624), 1, + ACTIONS(5626), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2971), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272807,57 +272796,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97111] = 23, + [97137] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5626), 1, + ACTIONS(5628), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2972), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272870,57 +272859,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97197] = 23, + [97223] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5628), 1, + ACTIONS(5630), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2973), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272933,57 +272922,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97283] = 23, + [97309] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5630), 1, + ACTIONS(5632), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2974), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272996,57 +272985,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97369] = 23, + [97395] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5632), 1, + ACTIONS(5634), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2975), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273059,57 +273048,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97455] = 23, + [97481] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5634), 1, + ACTIONS(5636), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2976), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273122,57 +273111,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97541] = 23, + [97567] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 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(605), 1, sym_identifier, - ACTIONS(3606), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(3610), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3620), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3624), 1, - anon_sym_chan, - ACTIONS(3626), 1, - anon_sym_thread, - ACTIONS(3628), 1, - anon_sym_atomic, - ACTIONS(5574), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5578), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5580), 1, - anon_sym_QMARK, - ACTIONS(5582), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5584), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5586), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5588), 1, - anon_sym_map_LBRACK, - STATE(1406), 1, + ACTIONS(5638), 1, + anon_sym_RPAREN, + STATE(3900), 1, sym_plain_type, - STATE(1483), 1, - sym__type_union_list, - STATE(4496), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1401), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(2977), 2, sym_line_comment, sym_block_comment, - STATE(1444), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1445), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273185,57 +273174,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97627] = 23, + [97653] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5472), 1, + ACTIONS(5470), 1, anon_sym_DOT_DOT_DOT, - STATE(4020), 1, + STATE(4189), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2978), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273248,57 +273237,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97713] = 23, + [97739] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5610), 1, - anon_sym_DOT_DOT_DOT, - STATE(4081), 1, + ACTIONS(5640), 1, + anon_sym_RPAREN, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2979), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273311,57 +273300,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97799] = 23, + [97825] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5636), 1, + ACTIONS(5642), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2980), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273374,57 +273363,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97885] = 23, + [97911] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3606), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3610), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3614), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3624), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3628), 1, + anon_sym_chan, + ACTIONS(3630), 1, + anon_sym_thread, + ACTIONS(3632), 1, + anon_sym_atomic, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5598), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5600), 1, + anon_sym_QMARK, + ACTIONS(5602), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5604), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5638), 1, - anon_sym_RPAREN, - STATE(3991), 1, + ACTIONS(5608), 1, + anon_sym_map_LBRACK, + STATE(1407), 1, sym_plain_type, - STATE(4498), 1, + STATE(1552), 1, + sym__type_union_list, + STATE(4472), 1, sym_reference_expression, + STATE(1404), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(2981), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1440), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273437,57 +273426,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97971] = 23, + [97997] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5640), 1, + ACTIONS(5644), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2982), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273500,57 +273489,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98057] = 23, + [98083] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5646), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2983), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273563,57 +273552,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98143] = 23, + [98169] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5308), 1, - anon_sym_BANG, - ACTIONS(5310), 1, - anon_sym_LBRACK2, - ACTIONS(5312), 1, - anon_sym_AMP, - ACTIONS(5644), 1, - anon_sym_RPAREN, - STATE(3991), 1, + STATE(2307), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2984), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + ACTIONS(4575), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4577), 8, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_map_LBRACK, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273633,50 +273609,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5646), 1, + ACTIONS(5648), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2985), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273694,52 +273670,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 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(605), 1, sym_identifier, - ACTIONS(3606), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(3610), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3620), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3624), 1, - anon_sym_chan, - ACTIONS(3626), 1, - anon_sym_thread, - ACTIONS(3628), 1, - anon_sym_atomic, - ACTIONS(5574), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5578), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5580), 1, - anon_sym_QMARK, - ACTIONS(5582), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5584), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5586), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5588), 1, - anon_sym_map_LBRACK, - STATE(1406), 1, + ACTIONS(5650), 1, + anon_sym_RPAREN, + STATE(3900), 1, sym_plain_type, - STATE(1560), 1, - sym__type_union_list, - STATE(4496), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1401), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(2986), 2, sym_line_comment, sym_block_comment, - STATE(1444), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1445), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273759,50 +273735,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5648), 1, + ACTIONS(5652), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2987), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273822,50 +273798,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5650), 1, + ACTIONS(5654), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2988), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273885,50 +273861,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5652), 1, + ACTIONS(5656), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2989), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273948,50 +273924,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5654), 1, + ACTIONS(5658), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2990), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274009,52 +273985,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 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(605), 1, sym_identifier, - ACTIONS(3606), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(3610), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3620), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3624), 1, - anon_sym_chan, - ACTIONS(3626), 1, - anon_sym_thread, - ACTIONS(3628), 1, - anon_sym_atomic, - ACTIONS(5574), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5578), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5580), 1, - anon_sym_QMARK, - ACTIONS(5582), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5584), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5586), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5588), 1, - anon_sym_map_LBRACK, - STATE(1406), 1, + ACTIONS(5660), 1, + anon_sym_RPAREN, + STATE(3900), 1, sym_plain_type, - STATE(1533), 1, - sym__type_union_list, - STATE(4496), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1401), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(2991), 2, sym_line_comment, sym_block_comment, - STATE(1444), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1445), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274074,50 +274050,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5462), 1, - anon_sym_DOT_DOT_DOT, - STATE(4033), 1, + ACTIONS(5662), 1, + anon_sym_RPAREN, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2992), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274137,50 +274113,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5614), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5656), 1, + ACTIONS(5664), 1, sym_identifier, - STATE(4081), 1, + STATE(4122), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2993), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274198,52 +274174,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3606), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3610), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3614), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3624), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3628), 1, + anon_sym_chan, + ACTIONS(3630), 1, + anon_sym_thread, + ACTIONS(3632), 1, + anon_sym_atomic, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5598), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5600), 1, + anon_sym_QMARK, + ACTIONS(5602), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5604), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5658), 1, - anon_sym_RPAREN, - STATE(3991), 1, + ACTIONS(5608), 1, + anon_sym_map_LBRACK, + STATE(1407), 1, sym_plain_type, - STATE(4498), 1, + STATE(1511), 1, + sym__type_union_list, + STATE(4472), 1, sym_reference_expression, + STATE(1404), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(2994), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1440), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274263,50 +274239,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5660), 1, + ACTIONS(5666), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2995), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274324,52 +274300,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3606), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3610), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3614), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3624), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3628), 1, + anon_sym_chan, + ACTIONS(3630), 1, + anon_sym_thread, + ACTIONS(3632), 1, + anon_sym_atomic, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5598), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5600), 1, + anon_sym_QMARK, + ACTIONS(5602), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5604), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5662), 1, - anon_sym_RPAREN, - STATE(3991), 1, + ACTIONS(5608), 1, + anon_sym_map_LBRACK, + STATE(1407), 1, sym_plain_type, - STATE(4498), 1, + STATE(1519), 1, + sym__type_union_list, + STATE(4472), 1, sym_reference_expression, + STATE(1404), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(2996), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1440), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274387,52 +274363,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3606), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3610), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3614), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3624), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3628), 1, + anon_sym_chan, + ACTIONS(3630), 1, + anon_sym_thread, + ACTIONS(3632), 1, + anon_sym_atomic, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5598), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5600), 1, + anon_sym_QMARK, + ACTIONS(5602), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5604), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5664), 1, - anon_sym_RPAREN, - STATE(3991), 1, + ACTIONS(5608), 1, + anon_sym_map_LBRACK, + STATE(1407), 1, sym_plain_type, - STATE(4498), 1, + STATE(1534), 1, + sym__type_union_list, + STATE(4472), 1, sym_reference_expression, + STATE(1404), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(2997), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1440), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274450,52 +274426,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 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(605), 1, sym_identifier, - ACTIONS(3606), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(3610), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3620), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3624), 1, - anon_sym_chan, - ACTIONS(3626), 1, - anon_sym_thread, - ACTIONS(3628), 1, - anon_sym_atomic, - ACTIONS(5574), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5578), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5580), 1, - anon_sym_QMARK, - ACTIONS(5582), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5584), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5586), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5588), 1, - anon_sym_map_LBRACK, - STATE(1406), 1, + ACTIONS(5668), 1, + anon_sym_RPAREN, + STATE(3900), 1, sym_plain_type, - STATE(1516), 1, - sym__type_union_list, - STATE(4496), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1401), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(2998), 2, sym_line_comment, sym_block_comment, - STATE(1444), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1445), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274515,50 +274491,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5666), 1, + ACTIONS(5670), 1, anon_sym_RPAREN, - STATE(3991), 1, + STATE(3900), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(2999), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274576,50 +274552,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(587), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3434), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3438), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3448), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3452), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(3454), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(3456), 1, anon_sym_atomic, - ACTIONS(5668), 1, + ACTIONS(5672), 1, anon_sym_LPAREN, - ACTIONS(5670), 1, + ACTIONS(5674), 1, anon_sym_STAR, - ACTIONS(5672), 1, + ACTIONS(5676), 1, anon_sym_QMARK, - ACTIONS(5674), 1, + ACTIONS(5678), 1, anon_sym_BANG, - ACTIONS(5676), 1, + ACTIONS(5680), 1, anon_sym_LBRACK2, - ACTIONS(5678), 1, + ACTIONS(5682), 1, anon_sym_AMP, - ACTIONS(5680), 1, + ACTIONS(5684), 1, anon_sym_map_LBRACK, - STATE(488), 1, + STATE(3342), 1, sym_plain_type, - STATE(4403), 1, + STATE(4356), 1, sym_reference_expression, - STATE(244), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3000), 2, sym_line_comment, sym_block_comment, - STATE(387), 4, + STATE(3302), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(388), 12, + STATE(3354), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274637,50 +274613,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3464), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3468), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3478), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3482), 1, + anon_sym_chan, + ACTIONS(3484), 1, + anon_sym_thread, + ACTIONS(3486), 1, + anon_sym_atomic, + ACTIONS(5686), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5688), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5690), 1, + anon_sym_QMARK, + ACTIONS(5692), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5694), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5696), 1, anon_sym_AMP, - STATE(4498), 1, - sym_reference_expression, - STATE(4621), 1, + ACTIONS(5698), 1, + anon_sym_map_LBRACK, + STATE(1244), 1, sym_plain_type, + STATE(4407), 1, + sym_reference_expression, + STATE(1136), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3001), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1171), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1169), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274698,50 +274674,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3698), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(3702), 1, + ACTIONS(3704), 1, anon_sym_fn, - ACTIONS(3706), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(3716), 1, + ACTIONS(3718), 1, anon_sym_shared, - ACTIONS(3720), 1, - anon_sym_chan, ACTIONS(3722), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(3724), 1, + anon_sym_thread, + ACTIONS(3726), 1, anon_sym_atomic, - ACTIONS(5682), 1, + ACTIONS(5700), 1, anon_sym_LPAREN, - ACTIONS(5684), 1, + ACTIONS(5702), 1, anon_sym_STAR, - ACTIONS(5686), 1, + ACTIONS(5704), 1, anon_sym_QMARK, - ACTIONS(5688), 1, + ACTIONS(5706), 1, anon_sym_BANG, - ACTIONS(5690), 1, + ACTIONS(5708), 1, anon_sym_LBRACK2, - ACTIONS(5692), 1, + ACTIONS(5710), 1, anon_sym_AMP, - ACTIONS(5694), 1, + ACTIONS(5712), 1, anon_sym_map_LBRACK, - STATE(1827), 1, + STATE(1796), 1, sym_plain_type, - STATE(4454), 1, + STATE(4449), 1, sym_reference_expression, - STATE(1751), 2, + STATE(1760), 2, sym_type_reference_expression, sym_qualified_type, STATE(3002), 2, sym_line_comment, sym_block_comment, - STATE(1842), 4, + STATE(1831), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1841), 12, + STATE(1830), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274759,50 +274735,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4114), 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(605), 1, sym_identifier, - ACTIONS(4118), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(4122), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(4132), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(4136), 1, - anon_sym_chan, - ACTIONS(4138), 1, - anon_sym_thread, - ACTIONS(4140), 1, - anon_sym_atomic, - ACTIONS(5696), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5700), 1, - anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5708), 1, - anon_sym_map_LBRACK, - STATE(2523), 1, + STATE(3965), 1, sym_plain_type, - STATE(4391), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2446), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3003), 2, sym_line_comment, sym_block_comment, - STATE(2471), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2472), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274822,48 +274798,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4161), 1, + STATE(4362), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(3004), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274881,50 +274857,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(3638), 1, - anon_sym_struct, - ACTIONS(5486), 1, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3752), 1, anon_sym_fn, - ACTIONS(5498), 1, + ACTIONS(3756), 1, + anon_sym_struct, + ACTIONS(3766), 1, anon_sym_shared, - ACTIONS(5502), 1, + ACTIONS(3768), 1, + anon_sym_map_LBRACK, + ACTIONS(3770), 1, anon_sym_chan, - ACTIONS(5504), 1, + ACTIONS(3772), 1, anon_sym_thread, - ACTIONS(5506), 1, + ACTIONS(3774), 1, anon_sym_atomic, - ACTIONS(5590), 1, - anon_sym_LPAREN, - ACTIONS(5594), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5596), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5598), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5600), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5602), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5604), 1, - anon_sym_map_LBRACK, - STATE(1643), 1, + STATE(2065), 1, sym_plain_type, - STATE(4351), 1, + STATE(4428), 1, sym_reference_expression, + STATE(1899), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3005), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1647), 4, + STATE(1918), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(1996), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274942,50 +274918,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3698), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(3702), 1, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3752), 1, anon_sym_fn, - ACTIONS(3706), 1, + ACTIONS(3756), 1, anon_sym_struct, - ACTIONS(3716), 1, + ACTIONS(3766), 1, anon_sym_shared, - ACTIONS(3720), 1, + ACTIONS(3768), 1, + anon_sym_map_LBRACK, + ACTIONS(3770), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3772), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3774), 1, anon_sym_atomic, - ACTIONS(5682), 1, - anon_sym_LPAREN, - ACTIONS(5684), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5686), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5688), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5690), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5692), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5694), 1, - anon_sym_map_LBRACK, - STATE(1824), 1, + STATE(2107), 1, sym_plain_type, - STATE(4454), 1, + STATE(4428), 1, sym_reference_expression, - STATE(1751), 2, + STATE(1899), 2, sym_type_reference_expression, sym_qualified_type, STATE(3006), 2, sym_line_comment, sym_block_comment, - STATE(1842), 4, + STATE(1918), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1841), 12, + STATE(1996), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275003,50 +274979,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3606), 1, - anon_sym_fn, - ACTIONS(3610), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(3620), 1, + ACTIONS(5490), 1, + anon_sym_fn, + ACTIONS(5502), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(5506), 1, anon_sym_chan, - ACTIONS(3626), 1, + ACTIONS(5508), 1, anon_sym_thread, - ACTIONS(3628), 1, + ACTIONS(5510), 1, anon_sym_atomic, - ACTIONS(5574), 1, - anon_sym_LPAREN, ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5582), 1, anon_sym_STAR, - ACTIONS(5580), 1, + ACTIONS(5584), 1, anon_sym_QMARK, - ACTIONS(5582), 1, + ACTIONS(5586), 1, anon_sym_BANG, - ACTIONS(5584), 1, + ACTIONS(5588), 1, anon_sym_LBRACK2, - ACTIONS(5586), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5588), 1, + ACTIONS(5592), 1, anon_sym_map_LBRACK, - STATE(1431), 1, + STATE(1634), 1, sym_plain_type, - STATE(4496), 1, + STATE(4356), 1, sym_reference_expression, - STATE(1401), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3007), 2, sym_line_comment, sym_block_comment, - STATE(1444), 4, + STATE(3302), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1445), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275064,50 +275040,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3698), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(3702), 1, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3752), 1, anon_sym_fn, - ACTIONS(3706), 1, + ACTIONS(3756), 1, anon_sym_struct, - ACTIONS(3716), 1, + ACTIONS(3766), 1, anon_sym_shared, - ACTIONS(3720), 1, + ACTIONS(3768), 1, + anon_sym_map_LBRACK, + ACTIONS(3770), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3772), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3774), 1, anon_sym_atomic, - ACTIONS(5682), 1, - anon_sym_LPAREN, - ACTIONS(5684), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5686), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5688), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5690), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5692), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5694), 1, - anon_sym_map_LBRACK, - STATE(1825), 1, + STATE(2112), 1, sym_plain_type, - STATE(4454), 1, + STATE(4428), 1, sym_reference_expression, - STATE(1751), 2, + STATE(1899), 2, sym_type_reference_expression, sym_qualified_type, STATE(3008), 2, sym_line_comment, sym_block_comment, - STATE(1842), 4, + STATE(1918), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1841), 12, + STATE(1996), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275125,50 +275101,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3566), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3568), 1, + anon_sym_LPAREN, + ACTIONS(3570), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3572), 1, + anon_sym_STAR, + ACTIONS(3574), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3584), 1, anon_sym_shared, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(3586), 1, + anon_sym_map_LBRACK, + ACTIONS(3588), 1, + anon_sym_chan, + ACTIONS(3590), 1, + anon_sym_thread, + ACTIONS(3592), 1, + anon_sym_atomic, + ACTIONS(5724), 1, + anon_sym_QMARK, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5730), 1, anon_sym_AMP, - STATE(4460), 1, + STATE(1326), 1, sym_plain_type, - STATE(4498), 1, + STATE(4323), 1, sym_reference_expression, + STATE(1277), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3009), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1296), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1299), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275186,50 +275162,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3918), 1, + ACTIONS(3566), 1, sym_identifier, - ACTIONS(3922), 1, + ACTIONS(3568), 1, + anon_sym_LPAREN, + ACTIONS(3570), 1, anon_sym_fn, - ACTIONS(3926), 1, + ACTIONS(3572), 1, + anon_sym_STAR, + ACTIONS(3574), 1, anon_sym_struct, - ACTIONS(3936), 1, + ACTIONS(3584), 1, anon_sym_shared, - ACTIONS(3940), 1, + ACTIONS(3586), 1, + anon_sym_map_LBRACK, + ACTIONS(3588), 1, anon_sym_chan, - ACTIONS(3942), 1, + ACTIONS(3590), 1, anon_sym_thread, - ACTIONS(3944), 1, + ACTIONS(3592), 1, anon_sym_atomic, - ACTIONS(5710), 1, - anon_sym_LPAREN, - ACTIONS(5712), 1, - anon_sym_STAR, - ACTIONS(5714), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5716), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5720), 1, + ACTIONS(5730), 1, anon_sym_AMP, - ACTIONS(5722), 1, - anon_sym_map_LBRACK, - STATE(2173), 1, + STATE(1327), 1, sym_plain_type, - STATE(4471), 1, + STATE(4323), 1, sym_reference_expression, - STATE(2142), 2, + STATE(1277), 2, sym_type_reference_expression, sym_qualified_type, STATE(3010), 2, sym_line_comment, sym_block_comment, - STATE(2183), 4, + STATE(1296), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(1299), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275247,50 +275223,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3953), 1, - sym_identifier, - ACTIONS(3955), 1, - anon_sym_fn, - ACTIONS(3957), 1, - anon_sym_STAR, - ACTIONS(3967), 1, - anon_sym_shared, - ACTIONS(3969), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(3971), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3973), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3975), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5724), 1, - anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(2814), 1, + STATE(2394), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2283), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3011), 2, sym_line_comment, sym_block_comment, - STATE(2360), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275308,50 +275284,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3704), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3718), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3722), 1, + anon_sym_chan, + ACTIONS(3724), 1, + anon_sym_thread, + ACTIONS(3726), 1, + anon_sym_atomic, + ACTIONS(5700), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5702), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5704), 1, + anon_sym_QMARK, + ACTIONS(5706), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5708), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5710), 1, anon_sym_AMP, - STATE(3940), 1, + ACTIONS(5712), 1, + anon_sym_map_LBRACK, + STATE(1817), 1, sym_plain_type, - STATE(4498), 1, + STATE(4449), 1, sym_reference_expression, + STATE(1760), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3012), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1831), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1830), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275369,50 +275345,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4114), 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(605), 1, sym_identifier, - ACTIONS(4118), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(4122), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(4132), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(4136), 1, - anon_sym_chan, - ACTIONS(4138), 1, - anon_sym_thread, - ACTIONS(4140), 1, - anon_sym_atomic, - ACTIONS(5696), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5700), 1, - anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5708), 1, - anon_sym_map_LBRACK, - STATE(2530), 1, + STATE(3931), 1, sym_plain_type, - STATE(4391), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2446), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3013), 2, sym_line_comment, sym_block_comment, - STATE(2471), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2472), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275430,50 +275406,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3698), 1, + ACTIONS(3924), 1, sym_identifier, - ACTIONS(3702), 1, + ACTIONS(3928), 1, anon_sym_fn, - ACTIONS(3706), 1, + ACTIONS(3932), 1, anon_sym_struct, - ACTIONS(3716), 1, + ACTIONS(3942), 1, anon_sym_shared, - ACTIONS(3720), 1, + ACTIONS(3946), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3948), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3950), 1, anon_sym_atomic, - ACTIONS(5682), 1, + ACTIONS(5732), 1, anon_sym_LPAREN, - ACTIONS(5684), 1, + ACTIONS(5734), 1, anon_sym_STAR, - ACTIONS(5686), 1, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5688), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5690), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5692), 1, + ACTIONS(5742), 1, anon_sym_AMP, - ACTIONS(5694), 1, + ACTIONS(5744), 1, anon_sym_map_LBRACK, - STATE(1826), 1, + STATE(2199), 1, sym_plain_type, - STATE(4454), 1, + STATE(4466), 1, sym_reference_expression, - STATE(1751), 2, + STATE(2130), 2, sym_type_reference_expression, sym_qualified_type, STATE(3014), 2, sym_line_comment, sym_block_comment, - STATE(1842), 4, + STATE(2178), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1841), 12, + STATE(2179), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275491,50 +275467,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3698), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(3702), 1, + ACTIONS(3704), 1, anon_sym_fn, - ACTIONS(3706), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(3716), 1, + ACTIONS(3718), 1, anon_sym_shared, - ACTIONS(3720), 1, - anon_sym_chan, ACTIONS(3722), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(3724), 1, + anon_sym_thread, + ACTIONS(3726), 1, anon_sym_atomic, - ACTIONS(5682), 1, + ACTIONS(5700), 1, anon_sym_LPAREN, - ACTIONS(5684), 1, + ACTIONS(5702), 1, anon_sym_STAR, - ACTIONS(5686), 1, + ACTIONS(5704), 1, anon_sym_QMARK, - ACTIONS(5688), 1, + ACTIONS(5706), 1, anon_sym_BANG, - ACTIONS(5690), 1, + ACTIONS(5708), 1, anon_sym_LBRACK2, - ACTIONS(5692), 1, + ACTIONS(5710), 1, anon_sym_AMP, - ACTIONS(5694), 1, + ACTIONS(5712), 1, anon_sym_map_LBRACK, - STATE(1806), 1, + STATE(1816), 1, sym_plain_type, - STATE(4454), 1, + STATE(4449), 1, sym_reference_expression, - STATE(1751), 2, + STATE(1760), 2, sym_type_reference_expression, sym_qualified_type, STATE(3015), 2, sym_line_comment, sym_block_comment, - STATE(1842), 4, + STATE(1831), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1841), 12, + STATE(1830), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275552,50 +275528,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3698), 1, + ACTIONS(3924), 1, sym_identifier, - ACTIONS(3702), 1, + ACTIONS(3928), 1, anon_sym_fn, - ACTIONS(3706), 1, + ACTIONS(3932), 1, anon_sym_struct, - ACTIONS(3716), 1, + ACTIONS(3942), 1, anon_sym_shared, - ACTIONS(3720), 1, + ACTIONS(3946), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3948), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3950), 1, anon_sym_atomic, - ACTIONS(5682), 1, + ACTIONS(5732), 1, anon_sym_LPAREN, - ACTIONS(5684), 1, + ACTIONS(5734), 1, anon_sym_STAR, - ACTIONS(5686), 1, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5688), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5690), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5692), 1, + ACTIONS(5742), 1, anon_sym_AMP, - ACTIONS(5694), 1, + ACTIONS(5744), 1, anon_sym_map_LBRACK, - STATE(1789), 1, + STATE(2235), 1, sym_plain_type, - STATE(4454), 1, + STATE(4466), 1, sym_reference_expression, - STATE(1751), 2, + STATE(2130), 2, sym_type_reference_expression, sym_qualified_type, STATE(3016), 2, sym_line_comment, sym_block_comment, - STATE(1842), 4, + STATE(2178), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1841), 12, + STATE(2179), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275613,50 +275589,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3918), 1, + ACTIONS(3924), 1, sym_identifier, - ACTIONS(3922), 1, + ACTIONS(3928), 1, anon_sym_fn, - ACTIONS(3926), 1, + ACTIONS(3932), 1, anon_sym_struct, - ACTIONS(3936), 1, + ACTIONS(3942), 1, anon_sym_shared, - ACTIONS(3940), 1, + ACTIONS(3946), 1, anon_sym_chan, - ACTIONS(3942), 1, + ACTIONS(3948), 1, anon_sym_thread, - ACTIONS(3944), 1, + ACTIONS(3950), 1, anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(5732), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, + ACTIONS(5734), 1, anon_sym_STAR, - ACTIONS(5714), 1, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5716), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5720), 1, + ACTIONS(5742), 1, anon_sym_AMP, - ACTIONS(5722), 1, + ACTIONS(5744), 1, anon_sym_map_LBRACK, - STATE(2148), 1, + STATE(2201), 1, sym_plain_type, - STATE(4471), 1, + STATE(4466), 1, sym_reference_expression, - STATE(2142), 2, + STATE(2130), 2, sym_type_reference_expression, sym_qualified_type, STATE(3017), 2, sym_line_comment, sym_block_comment, - STATE(2183), 4, + STATE(2178), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(2179), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275674,50 +275650,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3698), 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(605), 1, sym_identifier, - ACTIONS(3702), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(3706), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3716), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5682), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5684), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5686), 1, - anon_sym_QMARK, - ACTIONS(5688), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5690), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5692), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5694), 1, - anon_sym_map_LBRACK, - STATE(1788), 1, + STATE(4400), 1, sym_plain_type, - STATE(4454), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1751), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3018), 2, sym_line_comment, sym_block_comment, - STATE(1842), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1841), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275737,48 +275713,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4498), 1, - sym_reference_expression, - STATE(4503), 1, + STATE(3815), 1, sym_plain_type, + STATE(4423), 1, + sym_reference_expression, STATE(3019), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275796,50 +275772,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3758), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3760), 1, - anon_sym_LPAREN, - ACTIONS(3762), 1, + ACTIONS(4072), 1, anon_sym_fn, - ACTIONS(3766), 1, + ACTIONS(4076), 1, anon_sym_struct, - ACTIONS(3776), 1, + ACTIONS(4086), 1, anon_sym_shared, - ACTIONS(3778), 1, - anon_sym_map_LBRACK, - ACTIONS(3780), 1, + ACTIONS(4090), 1, anon_sym_chan, - ACTIONS(3782), 1, + ACTIONS(4092), 1, anon_sym_thread, - ACTIONS(3784), 1, + ACTIONS(4094), 1, anon_sym_atomic, - ACTIONS(5732), 1, + ACTIONS(5746), 1, + anon_sym_LPAREN, + ACTIONS(5748), 1, anon_sym_STAR, - ACTIONS(5734), 1, + ACTIONS(5750), 1, anon_sym_QMARK, - ACTIONS(5736), 1, + ACTIONS(5752), 1, anon_sym_BANG, - ACTIONS(5738), 1, + ACTIONS(5754), 1, anon_sym_LBRACK2, - ACTIONS(5740), 1, + ACTIONS(5756), 1, anon_sym_AMP, - STATE(2059), 1, + ACTIONS(5758), 1, + anon_sym_map_LBRACK, + STATE(2511), 1, sym_plain_type, - STATE(4433), 1, + STATE(4386), 1, sym_reference_expression, - STATE(1899), 2, + STATE(2419), 2, sym_type_reference_expression, sym_qualified_type, STATE(3020), 2, sym_line_comment, sym_block_comment, - STATE(2006), 4, + STATE(2533), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2005), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275857,50 +275833,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3758), 1, + ACTIONS(3924), 1, sym_identifier, - ACTIONS(3760), 1, - anon_sym_LPAREN, - ACTIONS(3762), 1, + ACTIONS(3928), 1, anon_sym_fn, - ACTIONS(3766), 1, + ACTIONS(3932), 1, anon_sym_struct, - ACTIONS(3776), 1, + ACTIONS(3942), 1, anon_sym_shared, - ACTIONS(3778), 1, - anon_sym_map_LBRACK, - ACTIONS(3780), 1, + ACTIONS(3946), 1, anon_sym_chan, - ACTIONS(3782), 1, + ACTIONS(3948), 1, anon_sym_thread, - ACTIONS(3784), 1, + ACTIONS(3950), 1, anon_sym_atomic, ACTIONS(5732), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(5734), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(5736), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5738), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5740), 1, + anon_sym_LBRACK2, + ACTIONS(5742), 1, anon_sym_AMP, - STATE(2071), 1, + ACTIONS(5744), 1, + anon_sym_map_LBRACK, + STATE(2233), 1, sym_plain_type, - STATE(4433), 1, + STATE(4466), 1, sym_reference_expression, - STATE(1899), 2, + STATE(2130), 2, sym_type_reference_expression, sym_qualified_type, STATE(3021), 2, sym_line_comment, sym_block_comment, - STATE(2006), 4, + STATE(2178), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2005), 12, + STATE(2179), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275918,50 +275894,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3918), 1, + ACTIONS(3924), 1, sym_identifier, - ACTIONS(3922), 1, + ACTIONS(3928), 1, anon_sym_fn, - ACTIONS(3926), 1, + ACTIONS(3932), 1, anon_sym_struct, - ACTIONS(3936), 1, + ACTIONS(3942), 1, anon_sym_shared, - ACTIONS(3940), 1, + ACTIONS(3946), 1, anon_sym_chan, - ACTIONS(3942), 1, + ACTIONS(3948), 1, anon_sym_thread, - ACTIONS(3944), 1, + ACTIONS(3950), 1, anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(5732), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, + ACTIONS(5734), 1, anon_sym_STAR, - ACTIONS(5714), 1, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5716), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5720), 1, + ACTIONS(5742), 1, anon_sym_AMP, - ACTIONS(5722), 1, + ACTIONS(5744), 1, anon_sym_map_LBRACK, - STATE(2238), 1, + STATE(2230), 1, sym_plain_type, - STATE(4471), 1, + STATE(4466), 1, sym_reference_expression, - STATE(2142), 2, + STATE(2130), 2, sym_type_reference_expression, sym_qualified_type, STATE(3022), 2, sym_line_comment, sym_block_comment, - STATE(2183), 4, + STATE(2178), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(2179), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275979,50 +275955,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(1199), 1, + ACTIONS(3704), 1, anon_sym_fn, - ACTIONS(1203), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(1213), 1, + ACTIONS(3718), 1, anon_sym_shared, - ACTIONS(1217), 1, + ACTIONS(3722), 1, anon_sym_chan, - ACTIONS(1219), 1, + ACTIONS(3724), 1, anon_sym_thread, - ACTIONS(1221), 1, + ACTIONS(3726), 1, anon_sym_atomic, - ACTIONS(5742), 1, + ACTIONS(5700), 1, anon_sym_LPAREN, - ACTIONS(5744), 1, + ACTIONS(5702), 1, anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5704), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5706), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5708), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5710), 1, anon_sym_AMP, - ACTIONS(5754), 1, + ACTIONS(5712), 1, anon_sym_map_LBRACK, - STATE(1072), 1, + STATE(1815), 1, sym_plain_type, - STATE(4349), 1, + STATE(4449), 1, sym_reference_expression, - STATE(985), 2, + STATE(1760), 2, sym_type_reference_expression, sym_qualified_type, STATE(3023), 2, sym_line_comment, sym_block_comment, - STATE(1066), 4, + STATE(1831), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1030), 12, + STATE(1830), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276040,50 +276016,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3918), 1, + ACTIONS(3924), 1, sym_identifier, - ACTIONS(3922), 1, + ACTIONS(3928), 1, anon_sym_fn, - ACTIONS(3926), 1, + ACTIONS(3932), 1, anon_sym_struct, - ACTIONS(3936), 1, + ACTIONS(3942), 1, anon_sym_shared, - ACTIONS(3940), 1, + ACTIONS(3946), 1, anon_sym_chan, - ACTIONS(3942), 1, + ACTIONS(3948), 1, anon_sym_thread, - ACTIONS(3944), 1, + ACTIONS(3950), 1, anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(5732), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, + ACTIONS(5734), 1, anon_sym_STAR, - ACTIONS(5714), 1, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5716), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5720), 1, + ACTIONS(5742), 1, anon_sym_AMP, - ACTIONS(5722), 1, + ACTIONS(5744), 1, anon_sym_map_LBRACK, - STATE(2205), 1, + STATE(2204), 1, sym_plain_type, - STATE(4471), 1, + STATE(4466), 1, sym_reference_expression, - STATE(2142), 2, + STATE(2130), 2, sym_type_reference_expression, sym_qualified_type, STATE(3024), 2, sym_line_comment, sym_block_comment, - STATE(2183), 4, + STATE(2178), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(2179), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276101,50 +276077,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(4072), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(4076), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(4086), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(4090), 1, + anon_sym_chan, + ACTIONS(4092), 1, + anon_sym_thread, + ACTIONS(4094), 1, + anon_sym_atomic, + ACTIONS(5746), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5748), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5750), 1, + anon_sym_QMARK, + ACTIONS(5752), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5754), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5756), 1, anon_sym_AMP, - STATE(3805), 1, + ACTIONS(5758), 1, + anon_sym_map_LBRACK, + STATE(2520), 1, sym_plain_type, - STATE(4498), 1, + STATE(4386), 1, sym_reference_expression, + STATE(2419), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3025), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(2533), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276162,50 +276138,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3918), 1, + ACTIONS(3924), 1, sym_identifier, - ACTIONS(3922), 1, + ACTIONS(3928), 1, anon_sym_fn, - ACTIONS(3926), 1, + ACTIONS(3932), 1, anon_sym_struct, - ACTIONS(3936), 1, + ACTIONS(3942), 1, anon_sym_shared, - ACTIONS(3940), 1, + ACTIONS(3946), 1, anon_sym_chan, - ACTIONS(3942), 1, + ACTIONS(3948), 1, anon_sym_thread, - ACTIONS(3944), 1, + ACTIONS(3950), 1, anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(5732), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, + ACTIONS(5734), 1, anon_sym_STAR, - ACTIONS(5714), 1, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5716), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5720), 1, + ACTIONS(5742), 1, anon_sym_AMP, - ACTIONS(5722), 1, + ACTIONS(5744), 1, anon_sym_map_LBRACK, - STATE(2237), 1, + STATE(2203), 1, sym_plain_type, - STATE(4471), 1, + STATE(4466), 1, sym_reference_expression, - STATE(2142), 2, + STATE(2130), 2, sym_type_reference_expression, sym_qualified_type, STATE(3026), 2, sym_line_comment, sym_block_comment, - STATE(2183), 4, + STATE(2178), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(2179), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276223,50 +276199,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3758), 1, + ACTIONS(3566), 1, sym_identifier, - ACTIONS(3760), 1, + ACTIONS(3568), 1, anon_sym_LPAREN, - ACTIONS(3762), 1, + ACTIONS(3570), 1, anon_sym_fn, - ACTIONS(3766), 1, + ACTIONS(3572), 1, + anon_sym_STAR, + ACTIONS(3574), 1, anon_sym_struct, - ACTIONS(3776), 1, + ACTIONS(3584), 1, anon_sym_shared, - ACTIONS(3778), 1, + ACTIONS(3586), 1, anon_sym_map_LBRACK, - ACTIONS(3780), 1, + ACTIONS(3588), 1, anon_sym_chan, - ACTIONS(3782), 1, + ACTIONS(3590), 1, anon_sym_thread, - ACTIONS(3784), 1, + ACTIONS(3592), 1, anon_sym_atomic, - ACTIONS(5732), 1, - anon_sym_STAR, - ACTIONS(5734), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5736), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5738), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5740), 1, + ACTIONS(5730), 1, anon_sym_AMP, - STATE(2087), 1, + STATE(1359), 1, sym_plain_type, - STATE(4433), 1, + STATE(4323), 1, sym_reference_expression, - STATE(1899), 2, + STATE(1277), 2, sym_type_reference_expression, sym_qualified_type, STATE(3027), 2, sym_line_comment, sym_block_comment, - STATE(2006), 4, + STATE(1296), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2005), 12, + STATE(1299), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276284,50 +276260,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3918), 1, + ACTIONS(3924), 1, sym_identifier, - ACTIONS(3922), 1, + ACTIONS(3928), 1, anon_sym_fn, - ACTIONS(3926), 1, + ACTIONS(3932), 1, anon_sym_struct, - ACTIONS(3936), 1, + ACTIONS(3942), 1, anon_sym_shared, - ACTIONS(3940), 1, + ACTIONS(3946), 1, anon_sym_chan, - ACTIONS(3942), 1, + ACTIONS(3948), 1, anon_sym_thread, - ACTIONS(3944), 1, + ACTIONS(3950), 1, anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(5732), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, + ACTIONS(5734), 1, anon_sym_STAR, - ACTIONS(5714), 1, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5716), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5720), 1, + ACTIONS(5742), 1, anon_sym_AMP, - ACTIONS(5722), 1, + ACTIONS(5744), 1, anon_sym_map_LBRACK, - STATE(2234), 1, + STATE(2202), 1, sym_plain_type, - STATE(4471), 1, + STATE(4466), 1, sym_reference_expression, - STATE(2142), 2, + STATE(2130), 2, sym_type_reference_expression, sym_qualified_type, STATE(3028), 2, sym_line_comment, sym_block_comment, - STATE(2183), 4, + STATE(2178), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(2179), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276345,50 +276321,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3918), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(3922), 1, + ACTIONS(3704), 1, anon_sym_fn, - ACTIONS(3926), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(3936), 1, + ACTIONS(3718), 1, anon_sym_shared, - ACTIONS(3940), 1, + ACTIONS(3722), 1, anon_sym_chan, - ACTIONS(3942), 1, + ACTIONS(3724), 1, anon_sym_thread, - ACTIONS(3944), 1, + ACTIONS(3726), 1, anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(5700), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, + ACTIONS(5702), 1, anon_sym_STAR, - ACTIONS(5714), 1, + ACTIONS(5704), 1, anon_sym_QMARK, - ACTIONS(5716), 1, + ACTIONS(5706), 1, anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5708), 1, anon_sym_LBRACK2, - ACTIONS(5720), 1, + ACTIONS(5710), 1, anon_sym_AMP, - ACTIONS(5722), 1, + ACTIONS(5712), 1, anon_sym_map_LBRACK, - STATE(2208), 1, + STATE(1785), 1, sym_plain_type, - STATE(4471), 1, + STATE(4449), 1, sym_reference_expression, - STATE(2142), 2, + STATE(1760), 2, sym_type_reference_expression, sym_qualified_type, STATE(3029), 2, sym_line_comment, sym_block_comment, - STATE(2183), 4, + STATE(1831), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(1830), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276406,50 +276382,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3918), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(3922), 1, + ACTIONS(3704), 1, anon_sym_fn, - ACTIONS(3926), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(3936), 1, + ACTIONS(3718), 1, anon_sym_shared, - ACTIONS(3940), 1, + ACTIONS(3722), 1, anon_sym_chan, - ACTIONS(3942), 1, + ACTIONS(3724), 1, anon_sym_thread, - ACTIONS(3944), 1, + ACTIONS(3726), 1, anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(5700), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, + ACTIONS(5702), 1, anon_sym_STAR, - ACTIONS(5714), 1, + ACTIONS(5704), 1, anon_sym_QMARK, - ACTIONS(5716), 1, + ACTIONS(5706), 1, anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5708), 1, anon_sym_LBRACK2, - ACTIONS(5720), 1, + ACTIONS(5710), 1, anon_sym_AMP, - ACTIONS(5722), 1, + ACTIONS(5712), 1, anon_sym_map_LBRACK, - STATE(2207), 1, + STATE(1790), 1, sym_plain_type, - STATE(4471), 1, + STATE(4449), 1, sym_reference_expression, - STATE(2142), 2, + STATE(1760), 2, sym_type_reference_expression, sym_qualified_type, STATE(3030), 2, sym_line_comment, sym_block_comment, - STATE(2183), 4, + STATE(1831), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(1830), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276467,50 +276443,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, + ACTIONS(3797), 1, sym_identifier, - ACTIONS(4525), 1, + ACTIONS(3799), 1, anon_sym_LPAREN, - ACTIONS(4527), 1, + ACTIONS(3801), 1, anon_sym_fn, - ACTIONS(4529), 1, - anon_sym_STAR, - ACTIONS(4531), 1, + ACTIONS(3805), 1, anon_sym_struct, - ACTIONS(4541), 1, + ACTIONS(3815), 1, anon_sym_shared, - ACTIONS(4543), 1, + ACTIONS(3817), 1, anon_sym_map_LBRACK, - ACTIONS(4545), 1, + ACTIONS(3819), 1, anon_sym_chan, - ACTIONS(4547), 1, + ACTIONS(3821), 1, anon_sym_thread, - ACTIONS(4549), 1, + ACTIONS(3823), 1, anon_sym_atomic, - ACTIONS(5756), 1, + ACTIONS(5760), 1, + anon_sym_STAR, + ACTIONS(5762), 1, anon_sym_QMARK, - ACTIONS(5758), 1, + ACTIONS(5764), 1, anon_sym_BANG, - ACTIONS(5760), 1, + ACTIONS(5766), 1, anon_sym_LBRACK2, - ACTIONS(5762), 1, + ACTIONS(5768), 1, anon_sym_AMP, - STATE(2714), 1, + STATE(2051), 1, sym_plain_type, - STATE(4479), 1, + STATE(4365), 1, sym_reference_expression, - STATE(2597), 2, + STATE(1904), 2, sym_type_reference_expression, sym_qualified_type, STATE(3031), 2, sym_line_comment, sym_block_comment, - STATE(2699), 4, + STATE(1978), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1980), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [102175] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, + anon_sym_chan, + ACTIONS(101), 1, + anon_sym_thread, + ACTIONS(103), 1, + anon_sym_atomic, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5328), 1, + anon_sym_BANG, + ACTIONS(5330), 1, + anon_sym_LBRACK2, + ACTIONS(5332), 1, + anon_sym_AMP, + STATE(4423), 1, + sym_reference_expression, + STATE(4518), 1, + sym_plain_type, + STATE(3032), 2, + sym_line_comment, + sym_block_comment, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2700), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276523,55 +276560,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102175] = 22, + [102258] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, + ACTIONS(3797), 1, sym_identifier, - ACTIONS(4525), 1, + ACTIONS(3799), 1, anon_sym_LPAREN, - ACTIONS(4527), 1, + ACTIONS(3801), 1, anon_sym_fn, - ACTIONS(4529), 1, - anon_sym_STAR, - ACTIONS(4531), 1, + ACTIONS(3805), 1, anon_sym_struct, - ACTIONS(4541), 1, + ACTIONS(3815), 1, anon_sym_shared, - ACTIONS(4543), 1, + ACTIONS(3817), 1, anon_sym_map_LBRACK, - ACTIONS(4545), 1, + ACTIONS(3819), 1, anon_sym_chan, - ACTIONS(4547), 1, + ACTIONS(3821), 1, anon_sym_thread, - ACTIONS(4549), 1, + ACTIONS(3823), 1, anon_sym_atomic, - ACTIONS(5756), 1, + ACTIONS(5760), 1, + anon_sym_STAR, + ACTIONS(5762), 1, anon_sym_QMARK, - ACTIONS(5758), 1, + ACTIONS(5764), 1, anon_sym_BANG, - ACTIONS(5760), 1, + ACTIONS(5766), 1, anon_sym_LBRACK2, - ACTIONS(5762), 1, + ACTIONS(5768), 1, anon_sym_AMP, - STATE(2715), 1, + STATE(2003), 1, sym_plain_type, - STATE(4479), 1, + STATE(4365), 1, sym_reference_expression, - STATE(2597), 2, + STATE(1904), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3032), 2, + STATE(3033), 2, sym_line_comment, sym_block_comment, - STATE(2699), 4, + STATE(1978), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2700), 12, + STATE(1980), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276584,55 +276621,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102258] = 22, + [102341] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, + ACTIONS(3797), 1, sym_identifier, - ACTIONS(4525), 1, + ACTIONS(3799), 1, anon_sym_LPAREN, - ACTIONS(4527), 1, + ACTIONS(3801), 1, anon_sym_fn, - ACTIONS(4529), 1, - anon_sym_STAR, - ACTIONS(4531), 1, + ACTIONS(3805), 1, anon_sym_struct, - ACTIONS(4541), 1, + ACTIONS(3815), 1, anon_sym_shared, - ACTIONS(4543), 1, + ACTIONS(3817), 1, anon_sym_map_LBRACK, - ACTIONS(4545), 1, + ACTIONS(3819), 1, anon_sym_chan, - ACTIONS(4547), 1, + ACTIONS(3821), 1, anon_sym_thread, - ACTIONS(4549), 1, + ACTIONS(3823), 1, anon_sym_atomic, - ACTIONS(5756), 1, + ACTIONS(5760), 1, + anon_sym_STAR, + ACTIONS(5762), 1, anon_sym_QMARK, - ACTIONS(5758), 1, + ACTIONS(5764), 1, anon_sym_BANG, - ACTIONS(5760), 1, + ACTIONS(5766), 1, anon_sym_LBRACK2, - ACTIONS(5762), 1, + ACTIONS(5768), 1, anon_sym_AMP, - STATE(2716), 1, + STATE(2100), 1, sym_plain_type, - STATE(4479), 1, + STATE(4365), 1, sym_reference_expression, - STATE(2597), 2, + STATE(1904), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3033), 2, + STATE(3034), 2, sym_line_comment, sym_block_comment, - STATE(2699), 4, + STATE(1978), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2700), 12, + STATE(1980), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276645,55 +276682,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102341] = 22, + [102424] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(4525), 1, - anon_sym_LPAREN, - ACTIONS(4527), 1, + ACTIONS(3434), 1, anon_sym_fn, - ACTIONS(4529), 1, - anon_sym_STAR, - ACTIONS(4531), 1, + ACTIONS(3438), 1, anon_sym_struct, - ACTIONS(4541), 1, + ACTIONS(3448), 1, anon_sym_shared, - ACTIONS(4543), 1, - anon_sym_map_LBRACK, - ACTIONS(4545), 1, + ACTIONS(3452), 1, anon_sym_chan, - ACTIONS(4547), 1, + ACTIONS(3454), 1, anon_sym_thread, - ACTIONS(4549), 1, + ACTIONS(3456), 1, anon_sym_atomic, - ACTIONS(5756), 1, + ACTIONS(5672), 1, + anon_sym_LPAREN, + ACTIONS(5674), 1, + anon_sym_STAR, + ACTIONS(5676), 1, anon_sym_QMARK, - ACTIONS(5758), 1, + ACTIONS(5678), 1, anon_sym_BANG, - ACTIONS(5760), 1, + ACTIONS(5680), 1, anon_sym_LBRACK2, - ACTIONS(5762), 1, + ACTIONS(5682), 1, anon_sym_AMP, - STATE(2725), 1, + ACTIONS(5684), 1, + anon_sym_map_LBRACK, + STATE(3347), 1, sym_plain_type, - STATE(4479), 1, + STATE(4356), 1, sym_reference_expression, - STATE(2597), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3034), 2, + STATE(3035), 2, sym_line_comment, sym_block_comment, - STATE(2699), 4, + STATE(3302), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2700), 12, + STATE(3354), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276706,55 +276743,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102424] = 22, + [102507] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(4525), 1, - anon_sym_LPAREN, - ACTIONS(4527), 1, + ACTIONS(3434), 1, anon_sym_fn, - ACTIONS(4529), 1, - anon_sym_STAR, - ACTIONS(4531), 1, + ACTIONS(3438), 1, anon_sym_struct, - ACTIONS(4541), 1, + ACTIONS(3448), 1, anon_sym_shared, - ACTIONS(4543), 1, - anon_sym_map_LBRACK, - ACTIONS(4545), 1, + ACTIONS(3452), 1, anon_sym_chan, - ACTIONS(4547), 1, + ACTIONS(3454), 1, anon_sym_thread, - ACTIONS(4549), 1, + ACTIONS(3456), 1, anon_sym_atomic, - ACTIONS(5756), 1, + ACTIONS(5672), 1, + anon_sym_LPAREN, + ACTIONS(5674), 1, + anon_sym_STAR, + ACTIONS(5676), 1, anon_sym_QMARK, - ACTIONS(5758), 1, + ACTIONS(5678), 1, anon_sym_BANG, - ACTIONS(5760), 1, + ACTIONS(5680), 1, anon_sym_LBRACK2, - ACTIONS(5762), 1, + ACTIONS(5682), 1, anon_sym_AMP, - STATE(2728), 1, + ACTIONS(5684), 1, + anon_sym_map_LBRACK, + STATE(3341), 1, sym_plain_type, - STATE(4479), 1, + STATE(4356), 1, sym_reference_expression, - STATE(2597), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3035), 2, + STATE(3036), 2, sym_line_comment, sym_block_comment, - STATE(2699), 4, + STATE(3302), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2700), 12, + STATE(3354), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276767,55 +276804,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102507] = 22, + [102590] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4498), 1, - sym_reference_expression, - STATE(4521), 1, + STATE(2297), 1, sym_plain_type, - STATE(3036), 2, + STATE(4423), 1, + sym_reference_expression, + STATE(3037), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276828,55 +276865,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102590] = 22, + [102673] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3918), 1, + ACTIONS(3797), 1, sym_identifier, - ACTIONS(3922), 1, + ACTIONS(3799), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, anon_sym_fn, - ACTIONS(3926), 1, + ACTIONS(3805), 1, anon_sym_struct, - ACTIONS(3936), 1, + ACTIONS(3815), 1, anon_sym_shared, - ACTIONS(3940), 1, + ACTIONS(3817), 1, + anon_sym_map_LBRACK, + ACTIONS(3819), 1, anon_sym_chan, - ACTIONS(3942), 1, + ACTIONS(3821), 1, anon_sym_thread, - ACTIONS(3944), 1, + ACTIONS(3823), 1, anon_sym_atomic, - ACTIONS(5710), 1, - anon_sym_LPAREN, - ACTIONS(5712), 1, + ACTIONS(5760), 1, anon_sym_STAR, - ACTIONS(5714), 1, + ACTIONS(5762), 1, anon_sym_QMARK, - ACTIONS(5716), 1, + ACTIONS(5764), 1, anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5766), 1, anon_sym_LBRACK2, - ACTIONS(5720), 1, + ACTIONS(5768), 1, anon_sym_AMP, - ACTIONS(5722), 1, - anon_sym_map_LBRACK, - STATE(2206), 1, + STATE(1927), 1, sym_plain_type, - STATE(4471), 1, + STATE(4365), 1, sym_reference_expression, - STATE(2142), 2, + STATE(1904), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3037), 2, + STATE(3038), 2, sym_line_comment, sym_block_comment, - STATE(2183), 4, + STATE(1978), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(1980), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276889,55 +276926,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102673] = 22, + [102756] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, - sym_identifier, - ACTIONS(4525), 1, - anon_sym_LPAREN, - ACTIONS(4527), 1, - anon_sym_fn, - ACTIONS(4529), 1, - anon_sym_STAR, - ACTIONS(4531), 1, - anon_sym_struct, - ACTIONS(4541), 1, - anon_sym_shared, - ACTIONS(4543), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(4545), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(4547), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(4549), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(5758), 1, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5760), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5762), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(2713), 1, + STATE(2294), 1, sym_plain_type, - STATE(4479), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2597), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3038), 2, + STATE(3039), 2, sym_line_comment, sym_block_comment, - STATE(2699), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2700), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276950,55 +276987,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102756] = 22, + [102839] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3793), 1, + ACTIONS(3955), 1, + sym_identifier, + ACTIONS(3957), 1, anon_sym_fn, - ACTIONS(3797), 1, - anon_sym_struct, - ACTIONS(3807), 1, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3969), 1, anon_sym_shared, - ACTIONS(3809), 1, + ACTIONS(3971), 1, anon_sym_map_LBRACK, - ACTIONS(3811), 1, + ACTIONS(3973), 1, anon_sym_chan, - ACTIONS(3813), 1, + ACTIONS(3975), 1, anon_sym_thread, - ACTIONS(3815), 1, + ACTIONS(3977), 1, anon_sym_atomic, - ACTIONS(5764), 1, - anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5770), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5772), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5774), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5776), 1, anon_sym_AMP, - STATE(1929), 1, + STATE(2374), 1, sym_plain_type, - STATE(4370), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1909), 2, + STATE(2284), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3039), 2, + STATE(3040), 2, sym_line_comment, sym_block_comment, - STATE(1945), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1949), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277011,55 +277048,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102839] = 22, + [102922] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3434), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3438), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3448), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3452), 1, + anon_sym_chan, + ACTIONS(3454), 1, + anon_sym_thread, + ACTIONS(3456), 1, + anon_sym_atomic, + ACTIONS(5672), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5674), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5676), 1, + anon_sym_QMARK, + ACTIONS(5678), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5680), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5682), 1, anon_sym_AMP, - STATE(4029), 1, + ACTIONS(5684), 1, + anon_sym_map_LBRACK, + STATE(3358), 1, sym_plain_type, - STATE(4498), 1, + STATE(4356), 1, sym_reference_expression, - STATE(3040), 2, + STATE(3041), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3302), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(3360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(3354), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277072,55 +277109,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102922] = 22, + [103005] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 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(605), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3652), 1, - anon_sym_chan, - ACTIONS(3654), 1, - anon_sym_thread, - ACTIONS(3656), 1, - anon_sym_atomic, - ACTIONS(5590), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5774), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5776), 1, - anon_sym_QMARK, - ACTIONS(5778), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5780), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5782), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5784), 1, - anon_sym_map_LBRACK, - STATE(1668), 1, + STATE(4402), 1, sym_plain_type, - STATE(4378), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1631), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3041), 2, + STATE(3042), 2, sym_line_comment, sym_block_comment, - STATE(1647), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277133,55 +277170,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103005] = 22, + [103088] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, - anon_sym_LPAREN, - ACTIONS(3793), 1, - anon_sym_fn, - ACTIONS(3797), 1, - anon_sym_struct, - ACTIONS(3807), 1, - anon_sym_shared, - ACTIONS(3809), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(3811), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3813), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3815), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5764), 1, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5766), 1, - anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(1987), 1, + STATE(2293), 1, sym_plain_type, - STATE(4370), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1909), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3042), 2, + STATE(3043), 2, sym_line_comment, sym_block_comment, - STATE(1945), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1949), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277194,55 +277231,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103088] = 22, + [103171] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3793), 1, + ACTIONS(3955), 1, + sym_identifier, + ACTIONS(3957), 1, anon_sym_fn, - ACTIONS(3797), 1, - anon_sym_struct, - ACTIONS(3807), 1, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3969), 1, anon_sym_shared, - ACTIONS(3809), 1, + ACTIONS(3971), 1, anon_sym_map_LBRACK, - ACTIONS(3811), 1, + ACTIONS(3973), 1, anon_sym_chan, - ACTIONS(3813), 1, + ACTIONS(3975), 1, anon_sym_thread, - ACTIONS(3815), 1, + ACTIONS(3977), 1, anon_sym_atomic, - ACTIONS(5764), 1, - anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5770), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5772), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5774), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5776), 1, anon_sym_AMP, - STATE(1989), 1, + STATE(2413), 1, sym_plain_type, - STATE(4370), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1909), 2, + STATE(2284), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3043), 2, + STATE(3044), 2, sym_line_comment, sym_block_comment, - STATE(1945), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1949), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277255,55 +277292,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103171] = 22, + [103254] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(4539), 1, + anon_sym_STAR, + ACTIONS(4541), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(4551), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(4553), 1, + anon_sym_map_LBRACK, + ACTIONS(4555), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(4557), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(4559), 1, anon_sym_atomic, - ACTIONS(5590), 1, - anon_sym_LPAREN, - ACTIONS(5774), 1, - anon_sym_STAR, - ACTIONS(5776), 1, - anon_sym_QMARK, ACTIONS(5778), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5780), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5782), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5784), 1, - anon_sym_map_LBRACK, - STATE(1665), 1, + anon_sym_AMP, + STATE(2513), 1, sym_plain_type, - STATE(4378), 1, + STATE(4316), 1, sym_reference_expression, - STATE(1631), 2, + STATE(2611), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3044), 2, + STATE(3045), 2, sym_line_comment, sym_block_comment, - STATE(1647), 4, + STATE(2692), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(2693), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277316,55 +277353,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103254] = 22, + [103337] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(3787), 1, - sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(3045), 2, + STATE(4511), 1, + sym_plain_type, + STATE(3046), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277377,30 +277414,30 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103337] = 22, + [103420] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3953), 1, + ACTIONS(3566), 1, sym_identifier, - ACTIONS(3955), 1, + ACTIONS(3568), 1, + anon_sym_LPAREN, + ACTIONS(3570), 1, anon_sym_fn, - ACTIONS(3957), 1, + ACTIONS(3572), 1, anon_sym_STAR, - ACTIONS(3967), 1, + ACTIONS(3574), 1, + anon_sym_struct, + ACTIONS(3584), 1, anon_sym_shared, - ACTIONS(3969), 1, + ACTIONS(3586), 1, anon_sym_map_LBRACK, - ACTIONS(3971), 1, + ACTIONS(3588), 1, anon_sym_chan, - ACTIONS(3973), 1, + ACTIONS(3590), 1, anon_sym_thread, - ACTIONS(3975), 1, + ACTIONS(3592), 1, anon_sym_atomic, ACTIONS(5724), 1, anon_sym_QMARK, @@ -277410,22 +277447,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5730), 1, anon_sym_AMP, - STATE(2340), 1, + STATE(1360), 1, sym_plain_type, - STATE(4498), 1, + STATE(4323), 1, sym_reference_expression, - STATE(2283), 2, + STATE(1277), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3046), 2, + STATE(3047), 2, sym_line_comment, sym_block_comment, - STATE(2360), 4, + STATE(1296), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1299), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277438,55 +277475,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103420] = 22, + [103503] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3789), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(3791), 1, - anon_sym_LPAREN, - ACTIONS(3793), 1, + ACTIONS(3704), 1, anon_sym_fn, - ACTIONS(3797), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(3807), 1, + ACTIONS(3718), 1, anon_sym_shared, - ACTIONS(3809), 1, - anon_sym_map_LBRACK, - ACTIONS(3811), 1, + ACTIONS(3722), 1, anon_sym_chan, - ACTIONS(3813), 1, + ACTIONS(3724), 1, anon_sym_thread, - ACTIONS(3815), 1, + ACTIONS(3726), 1, anon_sym_atomic, - ACTIONS(5764), 1, + ACTIONS(5700), 1, + anon_sym_LPAREN, + ACTIONS(5702), 1, anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5704), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5706), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5708), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5710), 1, anon_sym_AMP, - STATE(1993), 1, + ACTIONS(5712), 1, + anon_sym_map_LBRACK, + STATE(1801), 1, sym_plain_type, - STATE(4370), 1, + STATE(4449), 1, sym_reference_expression, - STATE(1909), 2, + STATE(1760), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3047), 2, + STATE(3048), 2, sym_line_comment, sym_block_comment, - STATE(1945), 4, + STATE(1831), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1949), 12, + STATE(1830), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277499,55 +277536,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103503] = 22, + [103586] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(5490), 1, + anon_sym_fn, + ACTIONS(5502), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(5506), 1, + anon_sym_chan, + ACTIONS(5508), 1, + anon_sym_thread, + ACTIONS(5510), 1, + anon_sym_atomic, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5582), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5584), 1, + anon_sym_QMARK, + ACTIONS(5586), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5588), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5590), 1, anon_sym_AMP, - STATE(3881), 1, + ACTIONS(5592), 1, + anon_sym_map_LBRACK, + STATE(1628), 1, sym_plain_type, - STATE(4498), 1, + STATE(4356), 1, sym_reference_expression, - STATE(3048), 2, + STATE(3049), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3302), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277560,55 +277597,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103586] = 22, + [103669] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(4525), 1, - anon_sym_LPAREN, - ACTIONS(4527), 1, + ACTIONS(3704), 1, anon_sym_fn, - ACTIONS(4529), 1, - anon_sym_STAR, - ACTIONS(4531), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(4541), 1, + ACTIONS(3718), 1, anon_sym_shared, - ACTIONS(4543), 1, - anon_sym_map_LBRACK, - ACTIONS(4545), 1, + ACTIONS(3722), 1, anon_sym_chan, - ACTIONS(4547), 1, + ACTIONS(3724), 1, anon_sym_thread, - ACTIONS(4549), 1, + ACTIONS(3726), 1, anon_sym_atomic, - ACTIONS(5756), 1, + ACTIONS(5700), 1, + anon_sym_LPAREN, + ACTIONS(5702), 1, + anon_sym_STAR, + ACTIONS(5704), 1, anon_sym_QMARK, - ACTIONS(5758), 1, + ACTIONS(5706), 1, anon_sym_BANG, - ACTIONS(5760), 1, + ACTIONS(5708), 1, anon_sym_LBRACK2, - ACTIONS(5762), 1, + ACTIONS(5710), 1, anon_sym_AMP, - STATE(2730), 1, + ACTIONS(5712), 1, + anon_sym_map_LBRACK, + STATE(1798), 1, sym_plain_type, - STATE(4479), 1, + STATE(4449), 1, sym_reference_expression, - STATE(2597), 2, + STATE(1760), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3049), 2, + STATE(3050), 2, sym_line_comment, sym_block_comment, - STATE(2699), 4, + STATE(1831), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2700), 12, + STATE(1830), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277621,55 +277658,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103669] = 22, + [103752] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3953), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3955), 1, + ACTIONS(3434), 1, anon_sym_fn, - ACTIONS(3957), 1, - anon_sym_STAR, - ACTIONS(3967), 1, + ACTIONS(3438), 1, + anon_sym_struct, + ACTIONS(3448), 1, anon_sym_shared, - ACTIONS(3969), 1, - anon_sym_map_LBRACK, - ACTIONS(3971), 1, + ACTIONS(3452), 1, anon_sym_chan, - ACTIONS(3973), 1, + ACTIONS(3454), 1, anon_sym_thread, - ACTIONS(3975), 1, + ACTIONS(3456), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5672), 1, + anon_sym_LPAREN, + ACTIONS(5674), 1, + anon_sym_STAR, + ACTIONS(5676), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5678), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5680), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5682), 1, anon_sym_AMP, - STATE(2361), 1, + ACTIONS(5684), 1, + anon_sym_map_LBRACK, + STATE(3355), 1, sym_plain_type, - STATE(4498), 1, + STATE(4356), 1, sym_reference_expression, - STATE(2283), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3050), 2, + STATE(3051), 2, sym_line_comment, sym_block_comment, - STATE(2360), 4, + STATE(3302), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(3354), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277682,55 +277719,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103752] = 22, + [103835] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3789), 1, + ACTIONS(3924), 1, sym_identifier, - ACTIONS(3791), 1, - anon_sym_LPAREN, - ACTIONS(3793), 1, + ACTIONS(3928), 1, anon_sym_fn, - ACTIONS(3797), 1, + ACTIONS(3932), 1, anon_sym_struct, - ACTIONS(3807), 1, + ACTIONS(3942), 1, anon_sym_shared, - ACTIONS(3809), 1, - anon_sym_map_LBRACK, - ACTIONS(3811), 1, + ACTIONS(3946), 1, anon_sym_chan, - ACTIONS(3813), 1, + ACTIONS(3948), 1, anon_sym_thread, - ACTIONS(3815), 1, + ACTIONS(3950), 1, anon_sym_atomic, - ACTIONS(5764), 1, + ACTIONS(5732), 1, + anon_sym_LPAREN, + ACTIONS(5734), 1, anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5742), 1, anon_sym_AMP, - STATE(1926), 1, + ACTIONS(5744), 1, + anon_sym_map_LBRACK, + STATE(2248), 1, sym_plain_type, - STATE(4370), 1, + STATE(4466), 1, sym_reference_expression, - STATE(1909), 2, + STATE(2130), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3051), 2, + STATE(3052), 2, sym_line_comment, sym_block_comment, - STATE(1945), 4, + STATE(2178), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1949), 12, + STATE(2179), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277743,55 +277780,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103835] = 22, + [103918] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4381), 1, + STATE(4283), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(3052), 2, + STATE(3053), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277804,24 +277841,24 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103918] = 22, + [104001] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3454), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(593), 1, anon_sym_atomic, ACTIONS(5786), 1, anon_sym_LPAREN, @@ -277837,83 +277874,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(5798), 1, anon_sym_map_LBRACK, - STATE(1160), 1, - sym_plain_type, - STATE(4412), 1, - sym_reference_expression, - STATE(1132), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3053), 2, - sym_line_comment, - sym_block_comment, - STATE(1214), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1225), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [104001] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3630), 1, - sym_identifier, - ACTIONS(3634), 1, - anon_sym_fn, - ACTIONS(3638), 1, - anon_sym_struct, - ACTIONS(3648), 1, - anon_sym_shared, - ACTIONS(3652), 1, - anon_sym_chan, - ACTIONS(3654), 1, - anon_sym_thread, - ACTIONS(3656), 1, - anon_sym_atomic, - ACTIONS(5590), 1, - anon_sym_LPAREN, - ACTIONS(5774), 1, - anon_sym_STAR, - ACTIONS(5776), 1, - anon_sym_QMARK, - ACTIONS(5778), 1, - anon_sym_BANG, - ACTIONS(5780), 1, - anon_sym_LBRACK2, - ACTIONS(5782), 1, - anon_sym_AMP, - ACTIONS(5784), 1, - anon_sym_map_LBRACK, - STATE(1664), 1, + STATE(486), 1, sym_plain_type, - STATE(4378), 1, + STATE(4392), 1, sym_reference_expression, - STATE(1631), 2, + STATE(267), 2, sym_type_reference_expression, sym_qualified_type, STATE(3054), 2, sym_line_comment, sym_block_comment, - STATE(1647), 4, + STATE(359), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(358), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277931,50 +277907,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(3704), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(3718), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(3722), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(3724), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(3726), 1, anon_sym_atomic, - ACTIONS(5590), 1, + ACTIONS(5700), 1, anon_sym_LPAREN, - ACTIONS(5774), 1, + ACTIONS(5702), 1, anon_sym_STAR, - ACTIONS(5776), 1, + ACTIONS(5704), 1, anon_sym_QMARK, - ACTIONS(5778), 1, + ACTIONS(5706), 1, anon_sym_BANG, - ACTIONS(5780), 1, + ACTIONS(5708), 1, anon_sym_LBRACK2, - ACTIONS(5782), 1, + ACTIONS(5710), 1, anon_sym_AMP, - ACTIONS(5784), 1, + ACTIONS(5712), 1, anon_sym_map_LBRACK, - STATE(1652), 1, + STATE(1871), 1, sym_plain_type, - STATE(4378), 1, + STATE(4449), 1, sym_reference_expression, - STATE(1631), 2, + STATE(1760), 2, sym_type_reference_expression, sym_qualified_type, STATE(3055), 2, sym_line_comment, sym_block_comment, - STATE(1647), 4, + STATE(1831), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(1830), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277992,50 +277968,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(3430), 1, + ACTIONS(3704), 1, anon_sym_fn, - ACTIONS(3434), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(3444), 1, + ACTIONS(3718), 1, anon_sym_shared, - ACTIONS(3448), 1, + ACTIONS(3722), 1, anon_sym_chan, - ACTIONS(3450), 1, + ACTIONS(3724), 1, anon_sym_thread, - ACTIONS(3452), 1, + ACTIONS(3726), 1, anon_sym_atomic, - ACTIONS(5800), 1, + ACTIONS(5700), 1, anon_sym_LPAREN, - ACTIONS(5802), 1, + ACTIONS(5702), 1, anon_sym_STAR, - ACTIONS(5804), 1, + ACTIONS(5704), 1, anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5706), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5708), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5710), 1, anon_sym_AMP, - ACTIONS(5812), 1, + ACTIONS(5712), 1, anon_sym_map_LBRACK, - STATE(3361), 1, + STATE(1783), 1, sym_plain_type, - STATE(4351), 1, + STATE(4449), 1, sym_reference_expression, + STATE(1760), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3056), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3362), 4, + STATE(1831), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3340), 12, + STATE(1830), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278053,50 +278029,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - sym_identifier, ACTIONS(3430), 1, - anon_sym_fn, + sym_identifier, ACTIONS(3434), 1, + anon_sym_fn, + ACTIONS(3438), 1, anon_sym_struct, - ACTIONS(3444), 1, - anon_sym_shared, ACTIONS(3448), 1, + anon_sym_shared, + ACTIONS(3452), 1, anon_sym_chan, - ACTIONS(3450), 1, + ACTIONS(3454), 1, anon_sym_thread, - ACTIONS(3452), 1, + ACTIONS(3456), 1, anon_sym_atomic, - ACTIONS(5800), 1, + ACTIONS(5672), 1, anon_sym_LPAREN, - ACTIONS(5802), 1, + ACTIONS(5674), 1, anon_sym_STAR, - ACTIONS(5804), 1, + ACTIONS(5676), 1, anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5678), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5680), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5682), 1, anon_sym_AMP, - ACTIONS(5812), 1, + ACTIONS(5684), 1, anon_sym_map_LBRACK, - STATE(3342), 1, + STATE(3351), 1, sym_plain_type, - STATE(4351), 1, + STATE(4356), 1, sym_reference_expression, STATE(3057), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, + STATE(3302), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3362), 4, + STATE(3360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3340), 12, + STATE(3354), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278114,50 +278090,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(3434), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(3438), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(3448), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(3452), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(3454), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(3456), 1, anon_sym_atomic, - ACTIONS(5590), 1, + ACTIONS(5672), 1, anon_sym_LPAREN, - ACTIONS(5774), 1, + ACTIONS(5674), 1, anon_sym_STAR, - ACTIONS(5776), 1, + ACTIONS(5676), 1, anon_sym_QMARK, - ACTIONS(5778), 1, + ACTIONS(5678), 1, anon_sym_BANG, - ACTIONS(5780), 1, + ACTIONS(5680), 1, anon_sym_LBRACK2, - ACTIONS(5782), 1, + ACTIONS(5682), 1, anon_sym_AMP, - ACTIONS(5784), 1, + ACTIONS(5684), 1, anon_sym_map_LBRACK, - STATE(1635), 1, + STATE(3361), 1, sym_plain_type, - STATE(4378), 1, + STATE(4356), 1, sym_reference_expression, - STATE(1631), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3058), 2, sym_line_comment, sym_block_comment, - STATE(1647), 4, + STATE(3302), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(3354), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278175,50 +278151,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3454), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3458), 1, - anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(5490), 1, + anon_sym_fn, + ACTIONS(5502), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(5506), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(5508), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(5510), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5582), 1, anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5584), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5586), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5588), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5798), 1, + ACTIONS(5592), 1, anon_sym_map_LBRACK, - STATE(1169), 1, + STATE(1635), 1, sym_plain_type, - STATE(4412), 1, + STATE(4356), 1, sym_reference_expression, - STATE(1132), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3059), 2, sym_line_comment, sym_block_comment, - STATE(1214), 4, + STATE(3302), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1225), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278236,50 +278212,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, - sym_identifier, - ACTIONS(4525), 1, - anon_sym_LPAREN, - ACTIONS(4527), 1, - anon_sym_fn, - ACTIONS(4529), 1, - anon_sym_STAR, - ACTIONS(4531), 1, - anon_sym_struct, - ACTIONS(4541), 1, - anon_sym_shared, - ACTIONS(4543), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(4545), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(4547), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(4549), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5756), 1, - anon_sym_QMARK, - ACTIONS(5758), 1, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5760), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5762), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(2741), 1, - sym_plain_type, - STATE(4479), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2597), 2, - sym_type_reference_expression, - sym_qualified_type, + STATE(4513), 1, + sym_plain_type, STATE(3060), 2, sym_line_comment, sym_block_comment, - STATE(2699), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2700), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278297,50 +278273,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3606), 1, + ACTIONS(3434), 1, anon_sym_fn, - ACTIONS(3610), 1, + ACTIONS(3438), 1, anon_sym_struct, - ACTIONS(3620), 1, + ACTIONS(3448), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3452), 1, anon_sym_chan, - ACTIONS(3626), 1, + ACTIONS(3454), 1, anon_sym_thread, - ACTIONS(3628), 1, + ACTIONS(3456), 1, anon_sym_atomic, - ACTIONS(5574), 1, + ACTIONS(5672), 1, anon_sym_LPAREN, - ACTIONS(5578), 1, + ACTIONS(5674), 1, anon_sym_STAR, - ACTIONS(5580), 1, + ACTIONS(5676), 1, anon_sym_QMARK, - ACTIONS(5582), 1, + ACTIONS(5678), 1, anon_sym_BANG, - ACTIONS(5584), 1, + ACTIONS(5680), 1, anon_sym_LBRACK2, - ACTIONS(5586), 1, + ACTIONS(5682), 1, anon_sym_AMP, - ACTIONS(5588), 1, + ACTIONS(5684), 1, anon_sym_map_LBRACK, - STATE(1447), 1, + STATE(3339), 1, sym_plain_type, - STATE(4496), 1, + STATE(4356), 1, sym_reference_expression, - STATE(1401), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3061), 2, sym_line_comment, sym_block_comment, - STATE(1444), 4, + STATE(3302), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1445), 12, + STATE(3354), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278358,50 +278334,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(4525), 1, - anon_sym_LPAREN, - ACTIONS(4527), 1, + ACTIONS(3464), 1, anon_sym_fn, - ACTIONS(4529), 1, - anon_sym_STAR, - ACTIONS(4531), 1, + ACTIONS(3468), 1, anon_sym_struct, - ACTIONS(4541), 1, + ACTIONS(3478), 1, anon_sym_shared, - ACTIONS(4543), 1, - anon_sym_map_LBRACK, - ACTIONS(4545), 1, + ACTIONS(3482), 1, anon_sym_chan, - ACTIONS(4547), 1, + ACTIONS(3484), 1, anon_sym_thread, - ACTIONS(4549), 1, + ACTIONS(3486), 1, anon_sym_atomic, - ACTIONS(5756), 1, + ACTIONS(5686), 1, + anon_sym_LPAREN, + ACTIONS(5688), 1, + anon_sym_STAR, + ACTIONS(5690), 1, anon_sym_QMARK, - ACTIONS(5758), 1, + ACTIONS(5692), 1, anon_sym_BANG, - ACTIONS(5760), 1, + ACTIONS(5694), 1, anon_sym_LBRACK2, - ACTIONS(5762), 1, + ACTIONS(5696), 1, anon_sym_AMP, - STATE(2743), 1, + ACTIONS(5698), 1, + anon_sym_map_LBRACK, + STATE(1254), 1, sym_plain_type, - STATE(4479), 1, + STATE(4407), 1, sym_reference_expression, - STATE(2597), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, STATE(3062), 2, sym_line_comment, sym_block_comment, - STATE(2699), 4, + STATE(1171), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2700), 12, + STATE(1169), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278419,50 +278395,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3570), 1, - sym_identifier, - ACTIONS(3572), 1, - anon_sym_LPAREN, - ACTIONS(3574), 1, - anon_sym_fn, - ACTIONS(3576), 1, - anon_sym_STAR, - ACTIONS(3578), 1, - anon_sym_struct, - ACTIONS(3588), 1, - anon_sym_shared, - ACTIONS(3590), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(3592), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3594), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3596), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5814), 1, - anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(1311), 1, - sym_plain_type, - STATE(4328), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1288), 2, - sym_type_reference_expression, - sym_qualified_type, + STATE(4563), 1, + sym_plain_type, STATE(3063), 2, sym_line_comment, sym_block_comment, - STATE(1293), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1303), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278480,50 +278456,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3570), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3572), 1, - anon_sym_LPAREN, - ACTIONS(3574), 1, + ACTIONS(3434), 1, anon_sym_fn, - ACTIONS(3576), 1, - anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3438), 1, anon_sym_struct, - ACTIONS(3588), 1, + ACTIONS(3448), 1, anon_sym_shared, - ACTIONS(3590), 1, - anon_sym_map_LBRACK, - ACTIONS(3592), 1, + ACTIONS(3452), 1, anon_sym_chan, - ACTIONS(3594), 1, + ACTIONS(3454), 1, anon_sym_thread, - ACTIONS(3596), 1, + ACTIONS(3456), 1, anon_sym_atomic, - ACTIONS(5814), 1, + ACTIONS(5672), 1, + anon_sym_LPAREN, + ACTIONS(5674), 1, + anon_sym_STAR, + ACTIONS(5676), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5678), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5680), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5682), 1, anon_sym_AMP, - STATE(1312), 1, + ACTIONS(5684), 1, + anon_sym_map_LBRACK, + STATE(3356), 1, sym_plain_type, - STATE(4328), 1, + STATE(4356), 1, sym_reference_expression, - STATE(1288), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3064), 2, sym_line_comment, sym_block_comment, - STATE(1293), 4, + STATE(3302), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3360), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1303), 12, + STATE(3354), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278541,50 +278517,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(1199), 1, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3752), 1, anon_sym_fn, - ACTIONS(1203), 1, + ACTIONS(3756), 1, anon_sym_struct, - ACTIONS(1213), 1, + ACTIONS(3766), 1, anon_sym_shared, - ACTIONS(1217), 1, + ACTIONS(3768), 1, + anon_sym_map_LBRACK, + ACTIONS(3770), 1, anon_sym_chan, - ACTIONS(1219), 1, + ACTIONS(3772), 1, anon_sym_thread, - ACTIONS(1221), 1, + ACTIONS(3774), 1, anon_sym_atomic, - ACTIONS(5742), 1, - anon_sym_LPAREN, - ACTIONS(5744), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5754), 1, - anon_sym_map_LBRACK, - STATE(1077), 1, + STATE(2075), 1, sym_plain_type, - STATE(4349), 1, + STATE(4428), 1, sym_reference_expression, - STATE(985), 2, + STATE(1899), 2, sym_type_reference_expression, sym_qualified_type, STATE(3065), 2, sym_line_comment, sym_block_comment, - STATE(1066), 4, + STATE(1918), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1030), 12, + STATE(1996), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278602,50 +278578,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3570), 1, - sym_identifier, - ACTIONS(3572), 1, - anon_sym_LPAREN, - ACTIONS(3574), 1, - anon_sym_fn, - ACTIONS(3576), 1, - anon_sym_STAR, - ACTIONS(3578), 1, - anon_sym_struct, - ACTIONS(3588), 1, - anon_sym_shared, - ACTIONS(3590), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(3592), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3594), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3596), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5814), 1, - anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(1313), 1, + STATE(3861), 1, sym_plain_type, - STATE(4328), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1288), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3066), 2, sym_line_comment, sym_block_comment, - STATE(1293), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1303), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278663,50 +278639,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3606), 1, sym_identifier, - ACTIONS(3430), 1, + ACTIONS(3610), 1, anon_sym_fn, - ACTIONS(3434), 1, + ACTIONS(3614), 1, anon_sym_struct, - ACTIONS(3444), 1, + ACTIONS(3624), 1, anon_sym_shared, - ACTIONS(3448), 1, + ACTIONS(3628), 1, anon_sym_chan, - ACTIONS(3450), 1, + ACTIONS(3630), 1, anon_sym_thread, - ACTIONS(3452), 1, + ACTIONS(3632), 1, anon_sym_atomic, - ACTIONS(5800), 1, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(5802), 1, + ACTIONS(5598), 1, anon_sym_STAR, - ACTIONS(5804), 1, + ACTIONS(5600), 1, anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5602), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5604), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5812), 1, + ACTIONS(5608), 1, anon_sym_map_LBRACK, - STATE(3360), 1, + STATE(1438), 1, sym_plain_type, - STATE(4351), 1, + STATE(4472), 1, sym_reference_expression, + STATE(1404), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3067), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3362), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3340), 12, + STATE(1440), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278724,50 +278700,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3698), 1, + ACTIONS(3606), 1, sym_identifier, - ACTIONS(3702), 1, + ACTIONS(3610), 1, anon_sym_fn, - ACTIONS(3706), 1, + ACTIONS(3614), 1, anon_sym_struct, - ACTIONS(3716), 1, + ACTIONS(3624), 1, anon_sym_shared, - ACTIONS(3720), 1, + ACTIONS(3628), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3630), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3632), 1, anon_sym_atomic, - ACTIONS(5682), 1, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(5684), 1, + ACTIONS(5598), 1, anon_sym_STAR, - ACTIONS(5686), 1, + ACTIONS(5600), 1, anon_sym_QMARK, - ACTIONS(5688), 1, + ACTIONS(5602), 1, anon_sym_BANG, - ACTIONS(5690), 1, + ACTIONS(5604), 1, anon_sym_LBRACK2, - ACTIONS(5692), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5694), 1, + ACTIONS(5608), 1, anon_sym_map_LBRACK, - STATE(1809), 1, + STATE(1420), 1, sym_plain_type, - STATE(4454), 1, + STATE(4472), 1, sym_reference_expression, - STATE(1751), 2, + STATE(1404), 2, sym_type_reference_expression, sym_qualified_type, STATE(3068), 2, sym_line_comment, sym_block_comment, - STATE(1842), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1841), 12, + STATE(1440), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278785,50 +278761,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3758), 1, + ACTIONS(3797), 1, sym_identifier, - ACTIONS(3760), 1, + ACTIONS(3799), 1, anon_sym_LPAREN, - ACTIONS(3762), 1, + ACTIONS(3801), 1, anon_sym_fn, - ACTIONS(3766), 1, + ACTIONS(3805), 1, anon_sym_struct, - ACTIONS(3776), 1, + ACTIONS(3815), 1, anon_sym_shared, - ACTIONS(3778), 1, + ACTIONS(3817), 1, anon_sym_map_LBRACK, - ACTIONS(3780), 1, + ACTIONS(3819), 1, anon_sym_chan, - ACTIONS(3782), 1, + ACTIONS(3821), 1, anon_sym_thread, - ACTIONS(3784), 1, + ACTIONS(3823), 1, anon_sym_atomic, - ACTIONS(5732), 1, + ACTIONS(5760), 1, anon_sym_STAR, - ACTIONS(5734), 1, + ACTIONS(5762), 1, anon_sym_QMARK, - ACTIONS(5736), 1, + ACTIONS(5764), 1, anon_sym_BANG, - ACTIONS(5738), 1, + ACTIONS(5766), 1, anon_sym_LBRACK2, - ACTIONS(5740), 1, + ACTIONS(5768), 1, anon_sym_AMP, - STATE(2026), 1, + STATE(1917), 1, sym_plain_type, - STATE(4433), 1, + STATE(4365), 1, sym_reference_expression, - STATE(1899), 2, + STATE(1904), 2, sym_type_reference_expression, sym_qualified_type, STATE(3069), 2, sym_line_comment, sym_block_comment, - STATE(2006), 4, + STATE(1978), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2005), 12, + STATE(1980), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278846,50 +278822,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, - anon_sym_LPAREN, - ACTIONS(3793), 1, - anon_sym_fn, - ACTIONS(3797), 1, - anon_sym_struct, - ACTIONS(3807), 1, - anon_sym_shared, - ACTIONS(3809), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(3811), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3813), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3815), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5764), 1, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5766), 1, - anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(2043), 1, - sym_plain_type, - STATE(4370), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1909), 2, - sym_type_reference_expression, - sym_qualified_type, + STATE(4574), 1, + sym_plain_type, STATE(3070), 2, sym_line_comment, sym_block_comment, - STATE(1945), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1949), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278907,50 +278883,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5590), 1, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(5774), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5776), 1, + ACTIONS(5790), 1, anon_sym_QMARK, - ACTIONS(5778), 1, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5780), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5782), 1, + ACTIONS(5796), 1, anon_sym_AMP, - ACTIONS(5784), 1, + ACTIONS(5798), 1, anon_sym_map_LBRACK, - STATE(1627), 1, + STATE(366), 1, sym_plain_type, - STATE(4378), 1, + STATE(4392), 1, sym_reference_expression, - STATE(1631), 2, + STATE(267), 2, sym_type_reference_expression, sym_qualified_type, STATE(3071), 2, sym_line_comment, sym_block_comment, - STATE(1647), 4, + STATE(359), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(358), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278968,50 +278944,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(4539), 1, + anon_sym_STAR, + ACTIONS(4541), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(4551), 1, anon_sym_shared, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(4553), 1, + anon_sym_map_LBRACK, + ACTIONS(4555), 1, + anon_sym_chan, + ACTIONS(4557), 1, + anon_sym_thread, + ACTIONS(4559), 1, + anon_sym_atomic, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5782), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5784), 1, anon_sym_AMP, - STATE(4498), 1, - sym_reference_expression, - STATE(4499), 1, + STATE(2707), 1, sym_plain_type, + STATE(4316), 1, + sym_reference_expression, + STATE(2611), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3072), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(2692), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2693), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279029,50 +279005,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3606), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3610), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3620), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3626), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3628), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5574), 1, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(5578), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5580), 1, + ACTIONS(5790), 1, anon_sym_QMARK, - ACTIONS(5582), 1, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5584), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5586), 1, + ACTIONS(5796), 1, anon_sym_AMP, - ACTIONS(5588), 1, + ACTIONS(5798), 1, anon_sym_map_LBRACK, - STATE(1465), 1, + STATE(329), 1, sym_plain_type, - STATE(4496), 1, + STATE(4392), 1, sym_reference_expression, - STATE(1401), 2, + STATE(267), 2, sym_type_reference_expression, sym_qualified_type, STATE(3073), 2, sym_line_comment, sym_block_comment, - STATE(1444), 4, + STATE(359), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1445), 12, + STATE(358), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279090,50 +279066,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 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(605), 1, sym_identifier, - ACTIONS(3606), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(3610), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3620), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3624), 1, - anon_sym_chan, - ACTIONS(3626), 1, - anon_sym_thread, - ACTIONS(3628), 1, - anon_sym_atomic, - ACTIONS(5574), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5578), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5580), 1, - anon_sym_QMARK, - ACTIONS(5582), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5584), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5586), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5588), 1, - anon_sym_map_LBRACK, - STATE(1461), 1, + STATE(3755), 1, sym_plain_type, - STATE(4496), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1401), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3074), 2, sym_line_comment, sym_block_comment, - STATE(1444), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1445), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279151,50 +279127,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 1, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3606), 1, + ACTIONS(3957), 1, anon_sym_fn, - ACTIONS(3610), 1, - anon_sym_struct, - ACTIONS(3620), 1, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3969), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3971), 1, + anon_sym_map_LBRACK, + ACTIONS(3973), 1, anon_sym_chan, - ACTIONS(3626), 1, + ACTIONS(3975), 1, anon_sym_thread, - ACTIONS(3628), 1, + ACTIONS(3977), 1, anon_sym_atomic, - ACTIONS(5574), 1, - anon_sym_LPAREN, - ACTIONS(5578), 1, - anon_sym_STAR, - ACTIONS(5580), 1, + ACTIONS(5770), 1, anon_sym_QMARK, - ACTIONS(5582), 1, + ACTIONS(5772), 1, anon_sym_BANG, - ACTIONS(5584), 1, + ACTIONS(5774), 1, anon_sym_LBRACK2, - ACTIONS(5586), 1, + ACTIONS(5776), 1, anon_sym_AMP, - ACTIONS(5588), 1, - anon_sym_map_LBRACK, - STATE(1453), 1, + STATE(2350), 1, sym_plain_type, - STATE(4496), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1401), 2, + STATE(2284), 2, sym_type_reference_expression, sym_qualified_type, STATE(3075), 2, sym_line_comment, sym_block_comment, - STATE(1444), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1445), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279212,50 +279188,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, + ACTIONS(1191), 1, sym_identifier, - ACTIONS(1199), 1, + ACTIONS(1195), 1, anon_sym_fn, - ACTIONS(1203), 1, + ACTIONS(1199), 1, anon_sym_struct, - ACTIONS(1213), 1, + ACTIONS(1209), 1, anon_sym_shared, - ACTIONS(1217), 1, + ACTIONS(1213), 1, anon_sym_chan, - ACTIONS(1219), 1, + ACTIONS(1215), 1, anon_sym_thread, - ACTIONS(1221), 1, + ACTIONS(1217), 1, anon_sym_atomic, - ACTIONS(5742), 1, + ACTIONS(5800), 1, anon_sym_LPAREN, - ACTIONS(5744), 1, + ACTIONS(5802), 1, anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5804), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5810), 1, anon_sym_AMP, - ACTIONS(5754), 1, + ACTIONS(5812), 1, anon_sym_map_LBRACK, - STATE(1047), 1, + STATE(1057), 1, sym_plain_type, - STATE(4349), 1, + STATE(4344), 1, sym_reference_expression, - STATE(985), 2, + STATE(989), 2, sym_type_reference_expression, sym_qualified_type, STATE(3076), 2, sym_line_comment, sym_block_comment, - STATE(1066), 4, + STATE(1091), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1030), 12, + STATE(1089), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279273,50 +279249,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3634), 1, - anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(5490), 1, + anon_sym_fn, + ACTIONS(5502), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(5506), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(5508), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(5510), 1, anon_sym_atomic, - ACTIONS(5590), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5774), 1, + ACTIONS(5582), 1, anon_sym_STAR, - ACTIONS(5776), 1, + ACTIONS(5584), 1, anon_sym_QMARK, - ACTIONS(5778), 1, + ACTIONS(5586), 1, anon_sym_BANG, - ACTIONS(5780), 1, + ACTIONS(5588), 1, anon_sym_LBRACK2, - ACTIONS(5782), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5784), 1, + ACTIONS(5592), 1, anon_sym_map_LBRACK, - STATE(1637), 1, + STATE(1638), 1, sym_plain_type, - STATE(4378), 1, + STATE(4356), 1, sym_reference_expression, - STATE(1631), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3077), 2, sym_line_comment, sym_block_comment, - STATE(1647), 4, + STATE(3302), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279334,50 +279310,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 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(605), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3652), 1, - anon_sym_chan, - ACTIONS(3654), 1, - anon_sym_thread, - ACTIONS(3656), 1, - anon_sym_atomic, - ACTIONS(5590), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5774), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5776), 1, - anon_sym_QMARK, - ACTIONS(5778), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5780), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5782), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5784), 1, - anon_sym_map_LBRACK, - STATE(1666), 1, + STATE(3783), 1, sym_plain_type, - STATE(4378), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1631), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3078), 2, sym_line_comment, sym_block_comment, - STATE(1647), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279395,50 +279371,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 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(605), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3652), 1, - anon_sym_chan, - ACTIONS(3654), 1, - anon_sym_thread, - ACTIONS(3656), 1, - anon_sym_atomic, - ACTIONS(5590), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5774), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5776), 1, - anon_sym_QMARK, - ACTIONS(5778), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5780), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5782), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5784), 1, - anon_sym_map_LBRACK, - STATE(1643), 1, + STATE(2404), 1, sym_plain_type, - STATE(4378), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1631), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3079), 2, sym_line_comment, sym_block_comment, - STATE(1647), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279456,50 +279432,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3953), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(3955), 1, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_fn, - ACTIONS(3957), 1, + ACTIONS(4539), 1, anon_sym_STAR, - ACTIONS(3967), 1, + ACTIONS(4541), 1, + anon_sym_struct, + ACTIONS(4551), 1, anon_sym_shared, - ACTIONS(3969), 1, + ACTIONS(4553), 1, anon_sym_map_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4555), 1, anon_sym_chan, - ACTIONS(3973), 1, + ACTIONS(4557), 1, anon_sym_thread, - ACTIONS(3975), 1, + ACTIONS(4559), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5778), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5780), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5782), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5784), 1, anon_sym_AMP, - STATE(2336), 1, + STATE(2708), 1, sym_plain_type, - STATE(4498), 1, + STATE(4316), 1, sym_reference_expression, - STATE(2283), 2, + STATE(2611), 2, sym_type_reference_expression, sym_qualified_type, STATE(3080), 2, sym_line_comment, sym_block_comment, - STATE(2360), 4, + STATE(2692), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2693), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279517,50 +279493,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3953), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(3955), 1, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3752), 1, anon_sym_fn, - ACTIONS(3957), 1, - anon_sym_STAR, - ACTIONS(3967), 1, + ACTIONS(3756), 1, + anon_sym_struct, + ACTIONS(3766), 1, anon_sym_shared, - ACTIONS(3969), 1, + ACTIONS(3768), 1, anon_sym_map_LBRACK, - ACTIONS(3971), 1, + ACTIONS(3770), 1, anon_sym_chan, - ACTIONS(3973), 1, + ACTIONS(3772), 1, anon_sym_thread, - ACTIONS(3975), 1, + ACTIONS(3774), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5714), 1, + anon_sym_STAR, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5722), 1, anon_sym_AMP, - STATE(2397), 1, + STATE(2007), 1, sym_plain_type, - STATE(4498), 1, + STATE(4428), 1, sym_reference_expression, - STATE(2283), 2, + STATE(1899), 2, sym_type_reference_expression, sym_qualified_type, STATE(3081), 2, sym_line_comment, sym_block_comment, - STATE(2360), 4, + STATE(1918), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1996), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279578,50 +279554,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(4539), 1, + anon_sym_STAR, + ACTIONS(4541), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(4551), 1, anon_sym_shared, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(4553), 1, + anon_sym_map_LBRACK, + ACTIONS(4555), 1, + anon_sym_chan, + ACTIONS(4557), 1, + anon_sym_thread, + ACTIONS(4559), 1, + anon_sym_atomic, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5782), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5784), 1, anon_sym_AMP, - STATE(3979), 1, + STATE(2709), 1, sym_plain_type, - STATE(4498), 1, + STATE(4316), 1, sym_reference_expression, + STATE(2611), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3082), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(2692), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2693), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279639,50 +279615,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(1199), 1, + ACTIONS(3704), 1, anon_sym_fn, - ACTIONS(1203), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(1213), 1, + ACTIONS(3718), 1, anon_sym_shared, - ACTIONS(1217), 1, + ACTIONS(3722), 1, anon_sym_chan, - ACTIONS(1219), 1, + ACTIONS(3724), 1, anon_sym_thread, - ACTIONS(1221), 1, + ACTIONS(3726), 1, anon_sym_atomic, - ACTIONS(5742), 1, + ACTIONS(5700), 1, anon_sym_LPAREN, - ACTIONS(5744), 1, + ACTIONS(5702), 1, anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5704), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5706), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5708), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5710), 1, anon_sym_AMP, - ACTIONS(5754), 1, + ACTIONS(5712), 1, anon_sym_map_LBRACK, - STATE(1040), 1, + STATE(1818), 1, sym_plain_type, - STATE(4349), 1, + STATE(4449), 1, sym_reference_expression, - STATE(985), 2, + STATE(1760), 2, sym_type_reference_expression, sym_qualified_type, STATE(3083), 2, sym_line_comment, sym_block_comment, - STATE(1066), 4, + STATE(1831), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1030), 12, + STATE(1830), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279700,50 +279676,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3758), 1, + ACTIONS(3566), 1, sym_identifier, - ACTIONS(3760), 1, + ACTIONS(3568), 1, anon_sym_LPAREN, - ACTIONS(3762), 1, + ACTIONS(3570), 1, anon_sym_fn, - ACTIONS(3766), 1, + ACTIONS(3572), 1, + anon_sym_STAR, + ACTIONS(3574), 1, anon_sym_struct, - ACTIONS(3776), 1, + ACTIONS(3584), 1, anon_sym_shared, - ACTIONS(3778), 1, + ACTIONS(3586), 1, anon_sym_map_LBRACK, - ACTIONS(3780), 1, + ACTIONS(3588), 1, anon_sym_chan, - ACTIONS(3782), 1, + ACTIONS(3590), 1, anon_sym_thread, - ACTIONS(3784), 1, + ACTIONS(3592), 1, anon_sym_atomic, - ACTIONS(5732), 1, - anon_sym_STAR, - ACTIONS(5734), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5736), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5738), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5740), 1, + ACTIONS(5730), 1, anon_sym_AMP, - STATE(2021), 1, + STATE(1303), 1, sym_plain_type, - STATE(4433), 1, + STATE(4323), 1, sym_reference_expression, - STATE(1899), 2, + STATE(1277), 2, sym_type_reference_expression, sym_qualified_type, STATE(3084), 2, sym_line_comment, sym_block_comment, - STATE(2006), 4, + STATE(1296), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2005), 12, + STATE(1299), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279761,50 +279737,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 1, - sym_identifier, ACTIONS(3606), 1, - anon_sym_fn, + sym_identifier, ACTIONS(3610), 1, + anon_sym_fn, + ACTIONS(3614), 1, anon_sym_struct, - ACTIONS(3620), 1, - anon_sym_shared, ACTIONS(3624), 1, + anon_sym_shared, + ACTIONS(3628), 1, anon_sym_chan, - ACTIONS(3626), 1, + ACTIONS(3630), 1, anon_sym_thread, - ACTIONS(3628), 1, + ACTIONS(3632), 1, anon_sym_atomic, - ACTIONS(5574), 1, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(5578), 1, + ACTIONS(5598), 1, anon_sym_STAR, - ACTIONS(5580), 1, + ACTIONS(5600), 1, anon_sym_QMARK, - ACTIONS(5582), 1, + ACTIONS(5602), 1, anon_sym_BANG, - ACTIONS(5584), 1, + ACTIONS(5604), 1, anon_sym_LBRACK2, - ACTIONS(5586), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5588), 1, + ACTIONS(5608), 1, anon_sym_map_LBRACK, - STATE(1452), 1, + STATE(1429), 1, sym_plain_type, - STATE(4496), 1, + STATE(4472), 1, sym_reference_expression, - STATE(1401), 2, + STATE(1404), 2, sym_type_reference_expression, sym_qualified_type, STATE(3085), 2, sym_line_comment, sym_block_comment, - STATE(1444), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1445), 12, + STATE(1440), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279822,50 +279798,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3566), 1, sym_identifier, - ACTIONS(3430), 1, + ACTIONS(3568), 1, + anon_sym_LPAREN, + ACTIONS(3570), 1, anon_sym_fn, - ACTIONS(3434), 1, + ACTIONS(3572), 1, + anon_sym_STAR, + ACTIONS(3574), 1, anon_sym_struct, - ACTIONS(3444), 1, + ACTIONS(3584), 1, anon_sym_shared, - ACTIONS(3448), 1, + ACTIONS(3586), 1, + anon_sym_map_LBRACK, + ACTIONS(3588), 1, anon_sym_chan, - ACTIONS(3450), 1, + ACTIONS(3590), 1, anon_sym_thread, - ACTIONS(3452), 1, + ACTIONS(3592), 1, anon_sym_atomic, - ACTIONS(5800), 1, - anon_sym_LPAREN, - ACTIONS(5802), 1, - anon_sym_STAR, - ACTIONS(5804), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5730), 1, anon_sym_AMP, - ACTIONS(5812), 1, - anon_sym_map_LBRACK, - STATE(3339), 1, + STATE(1324), 1, sym_plain_type, - STATE(4351), 1, + STATE(4323), 1, sym_reference_expression, + STATE(1277), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3086), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3362), 4, + STATE(1296), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3340), 12, + STATE(1299), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279883,50 +279859,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3953), 1, - sym_identifier, - ACTIONS(3955), 1, - anon_sym_fn, - ACTIONS(3957), 1, - anon_sym_STAR, - ACTIONS(3967), 1, - anon_sym_shared, - ACTIONS(3969), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(3971), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3973), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3975), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5724), 1, - anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(2342), 1, + STATE(2386), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2283), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3087), 2, sym_line_comment, sym_block_comment, - STATE(2360), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279944,50 +279920,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, + ACTIONS(3566), 1, sym_identifier, - ACTIONS(1199), 1, + ACTIONS(3568), 1, + anon_sym_LPAREN, + ACTIONS(3570), 1, anon_sym_fn, - ACTIONS(1203), 1, + ACTIONS(3572), 1, + anon_sym_STAR, + ACTIONS(3574), 1, anon_sym_struct, - ACTIONS(1213), 1, + ACTIONS(3584), 1, anon_sym_shared, - ACTIONS(1217), 1, + ACTIONS(3586), 1, + anon_sym_map_LBRACK, + ACTIONS(3588), 1, anon_sym_chan, - ACTIONS(1219), 1, + ACTIONS(3590), 1, anon_sym_thread, - ACTIONS(1221), 1, + ACTIONS(3592), 1, anon_sym_atomic, - ACTIONS(5742), 1, - anon_sym_LPAREN, - ACTIONS(5744), 1, - anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5730), 1, anon_sym_AMP, - ACTIONS(5754), 1, - anon_sym_map_LBRACK, - STATE(1000), 1, + STATE(1322), 1, sym_plain_type, - STATE(4349), 1, + STATE(4323), 1, sym_reference_expression, - STATE(985), 2, + STATE(1277), 2, sym_type_reference_expression, sym_qualified_type, STATE(3088), 2, sym_line_comment, sym_block_comment, - STATE(1066), 4, + STATE(1296), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1030), 12, + STATE(1299), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280007,48 +279983,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(3991), 1, - sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, + STATE(4507), 1, + sym_plain_type, STATE(3089), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280066,50 +280042,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 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(605), 1, sym_identifier, - ACTIONS(3430), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(3434), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3444), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3448), 1, - anon_sym_chan, - ACTIONS(3450), 1, - anon_sym_thread, - ACTIONS(3452), 1, - anon_sym_atomic, - ACTIONS(5800), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5802), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5804), 1, - anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5812), 1, - anon_sym_map_LBRACK, - STATE(3359), 1, - sym_plain_type, - STATE(4351), 1, + STATE(4423), 1, sym_reference_expression, + STATE(4621), 1, + sym_plain_type, STATE(3090), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3362), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3340), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280127,37 +280103,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3758), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(3760), 1, + ACTIONS(3750), 1, anon_sym_LPAREN, - ACTIONS(3762), 1, + ACTIONS(3752), 1, anon_sym_fn, - ACTIONS(3766), 1, + ACTIONS(3756), 1, anon_sym_struct, - ACTIONS(3776), 1, + ACTIONS(3766), 1, anon_sym_shared, - ACTIONS(3778), 1, + ACTIONS(3768), 1, anon_sym_map_LBRACK, - ACTIONS(3780), 1, + ACTIONS(3770), 1, anon_sym_chan, - ACTIONS(3782), 1, + ACTIONS(3772), 1, anon_sym_thread, - ACTIONS(3784), 1, + ACTIONS(3774), 1, anon_sym_atomic, - ACTIONS(5732), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5734), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5736), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5738), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5740), 1, + ACTIONS(5722), 1, anon_sym_AMP, - STATE(1963), 1, + STATE(2078), 1, sym_plain_type, - STATE(4433), 1, + STATE(4428), 1, sym_reference_expression, STATE(1899), 2, sym_type_reference_expression, @@ -280165,12 +280141,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(3091), 2, sym_line_comment, sym_block_comment, - STATE(2006), 4, + STATE(1918), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2005), 12, + STATE(1996), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280188,50 +280164,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3570), 1, + ACTIONS(1191), 1, sym_identifier, - ACTIONS(3572), 1, - anon_sym_LPAREN, - ACTIONS(3574), 1, + ACTIONS(1195), 1, anon_sym_fn, - ACTIONS(3576), 1, - anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(1199), 1, anon_sym_struct, - ACTIONS(3588), 1, + ACTIONS(1209), 1, anon_sym_shared, - ACTIONS(3590), 1, - anon_sym_map_LBRACK, - ACTIONS(3592), 1, + ACTIONS(1213), 1, anon_sym_chan, - ACTIONS(3594), 1, + ACTIONS(1215), 1, anon_sym_thread, - ACTIONS(3596), 1, + ACTIONS(1217), 1, anon_sym_atomic, - ACTIONS(5814), 1, + ACTIONS(5800), 1, + anon_sym_LPAREN, + ACTIONS(5802), 1, + anon_sym_STAR, + ACTIONS(5804), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5810), 1, anon_sym_AMP, - STATE(1352), 1, + ACTIONS(5812), 1, + anon_sym_map_LBRACK, + STATE(1077), 1, sym_plain_type, - STATE(4328), 1, + STATE(4344), 1, sym_reference_expression, - STATE(1288), 2, + STATE(989), 2, sym_type_reference_expression, sym_qualified_type, STATE(3092), 2, sym_line_comment, sym_block_comment, - STATE(1293), 4, + STATE(1091), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1303), 12, + STATE(1089), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280249,50 +280225,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3789), 1, + ACTIONS(3634), 1, sym_identifier, - ACTIONS(3791), 1, - anon_sym_LPAREN, - ACTIONS(3793), 1, + ACTIONS(3638), 1, anon_sym_fn, - ACTIONS(3797), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(3807), 1, + ACTIONS(3652), 1, anon_sym_shared, - ACTIONS(3809), 1, - anon_sym_map_LBRACK, - ACTIONS(3811), 1, + ACTIONS(3656), 1, anon_sym_chan, - ACTIONS(3813), 1, + ACTIONS(3658), 1, anon_sym_thread, - ACTIONS(3815), 1, + ACTIONS(3660), 1, anon_sym_atomic, - ACTIONS(5764), 1, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5814), 1, anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5816), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5818), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5820), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5822), 1, anon_sym_AMP, - STATE(2050), 1, + ACTIONS(5824), 1, + anon_sym_map_LBRACK, + STATE(1746), 1, sym_plain_type, - STATE(4370), 1, + STATE(4375), 1, sym_reference_expression, - STATE(1909), 2, + STATE(1659), 2, sym_type_reference_expression, sym_qualified_type, STATE(3093), 2, sym_line_comment, sym_block_comment, - STATE(1945), 4, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1949), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280310,50 +280286,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3953), 1, + ACTIONS(1191), 1, sym_identifier, - ACTIONS(3955), 1, + ACTIONS(1195), 1, anon_sym_fn, - ACTIONS(3957), 1, - anon_sym_STAR, - ACTIONS(3967), 1, + ACTIONS(1199), 1, + anon_sym_struct, + ACTIONS(1209), 1, anon_sym_shared, - ACTIONS(3969), 1, - anon_sym_map_LBRACK, - ACTIONS(3971), 1, + ACTIONS(1213), 1, anon_sym_chan, - ACTIONS(3973), 1, + ACTIONS(1215), 1, anon_sym_thread, - ACTIONS(3975), 1, + ACTIONS(1217), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5800), 1, + anon_sym_LPAREN, + ACTIONS(5802), 1, + anon_sym_STAR, + ACTIONS(5804), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5810), 1, anon_sym_AMP, - STATE(2349), 1, + ACTIONS(5812), 1, + anon_sym_map_LBRACK, + STATE(1071), 1, sym_plain_type, - STATE(4498), 1, + STATE(4344), 1, sym_reference_expression, - STATE(2283), 2, + STATE(989), 2, sym_type_reference_expression, sym_qualified_type, STATE(3094), 2, sym_line_comment, sym_block_comment, - STATE(2360), 4, + STATE(1091), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1089), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280371,50 +280347,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 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(605), 1, sym_identifier, - ACTIONS(3430), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(3434), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3444), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3448), 1, - anon_sym_chan, - ACTIONS(3450), 1, - anon_sym_thread, - ACTIONS(3452), 1, - anon_sym_atomic, - ACTIONS(5800), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5802), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5804), 1, - anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5812), 1, - anon_sym_map_LBRACK, - STATE(3354), 1, - sym_plain_type, - STATE(4351), 1, + STATE(4423), 1, sym_reference_expression, + STATE(4578), 1, + sym_plain_type, STATE(3095), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3362), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3340), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280432,50 +280408,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3789), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3791), 1, - anon_sym_LPAREN, - ACTIONS(3793), 1, + ACTIONS(4072), 1, anon_sym_fn, - ACTIONS(3797), 1, + ACTIONS(4076), 1, anon_sym_struct, - ACTIONS(3807), 1, + ACTIONS(4086), 1, anon_sym_shared, - ACTIONS(3809), 1, - anon_sym_map_LBRACK, - ACTIONS(3811), 1, + ACTIONS(4090), 1, anon_sym_chan, - ACTIONS(3813), 1, + ACTIONS(4092), 1, anon_sym_thread, - ACTIONS(3815), 1, + ACTIONS(4094), 1, anon_sym_atomic, - ACTIONS(5764), 1, + ACTIONS(5746), 1, + anon_sym_LPAREN, + ACTIONS(5748), 1, anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5750), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5752), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5754), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5756), 1, anon_sym_AMP, - STATE(1986), 1, + ACTIONS(5758), 1, + anon_sym_map_LBRACK, + STATE(2563), 1, sym_plain_type, - STATE(4370), 1, + STATE(4386), 1, sym_reference_expression, - STATE(1909), 2, + STATE(2419), 2, sym_type_reference_expression, sym_qualified_type, STATE(3096), 2, sym_line_comment, sym_block_comment, - STATE(1945), 4, + STATE(2533), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1949), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280493,50 +280469,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3953), 1, - sym_identifier, - ACTIONS(3955), 1, - anon_sym_fn, - ACTIONS(3957), 1, - anon_sym_STAR, - ACTIONS(3967), 1, - anon_sym_shared, - ACTIONS(3969), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(3971), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3973), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3975), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5724), 1, - anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(2327), 1, + STATE(3769), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2283), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3097), 2, sym_line_comment, sym_block_comment, - STATE(2360), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280554,50 +280530,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3430), 1, + ACTIONS(3957), 1, anon_sym_fn, - ACTIONS(3434), 1, - anon_sym_struct, - ACTIONS(3444), 1, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3969), 1, anon_sym_shared, - ACTIONS(3448), 1, + ACTIONS(3971), 1, + anon_sym_map_LBRACK, + ACTIONS(3973), 1, anon_sym_chan, - ACTIONS(3450), 1, + ACTIONS(3975), 1, anon_sym_thread, - ACTIONS(3452), 1, + ACTIONS(3977), 1, anon_sym_atomic, - ACTIONS(5800), 1, - anon_sym_LPAREN, - ACTIONS(5802), 1, - anon_sym_STAR, - ACTIONS(5804), 1, + ACTIONS(5770), 1, anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5772), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5774), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5776), 1, anon_sym_AMP, - ACTIONS(5812), 1, - anon_sym_map_LBRACK, - STATE(3350), 1, + STATE(2513), 1, sym_plain_type, - STATE(4351), 1, + STATE(4423), 1, sym_reference_expression, + STATE(2284), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3098), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3362), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3340), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280615,19 +280591,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(1191), 1, sym_identifier, - ACTIONS(3430), 1, + ACTIONS(1195), 1, anon_sym_fn, - ACTIONS(3434), 1, + ACTIONS(1199), 1, anon_sym_struct, - ACTIONS(3444), 1, + ACTIONS(1209), 1, anon_sym_shared, - ACTIONS(3448), 1, + ACTIONS(1213), 1, anon_sym_chan, - ACTIONS(3450), 1, + ACTIONS(1215), 1, anon_sym_thread, - ACTIONS(3452), 1, + ACTIONS(1217), 1, anon_sym_atomic, ACTIONS(5800), 1, anon_sym_LPAREN, @@ -280643,22 +280619,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(5812), 1, anon_sym_map_LBRACK, - STATE(3349), 1, + STATE(1070), 1, sym_plain_type, - STATE(4351), 1, + STATE(4344), 1, sym_reference_expression, + STATE(989), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3099), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3362), 4, + STATE(1091), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3340), 12, + STATE(1089), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280678,48 +280654,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(3989), 1, - sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, + STATE(4552), 1, + sym_plain_type, STATE(3100), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280737,50 +280713,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3953), 1, + ACTIONS(3634), 1, sym_identifier, - ACTIONS(3955), 1, + ACTIONS(3638), 1, anon_sym_fn, - ACTIONS(3957), 1, - anon_sym_STAR, - ACTIONS(3967), 1, + ACTIONS(3642), 1, + anon_sym_struct, + ACTIONS(3652), 1, anon_sym_shared, - ACTIONS(3969), 1, - anon_sym_map_LBRACK, - ACTIONS(3971), 1, + ACTIONS(3656), 1, anon_sym_chan, - ACTIONS(3973), 1, + ACTIONS(3658), 1, anon_sym_thread, - ACTIONS(3975), 1, + ACTIONS(3660), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5814), 1, + anon_sym_STAR, + ACTIONS(5816), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5818), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5820), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5822), 1, anon_sym_AMP, - STATE(2332), 1, + ACTIONS(5824), 1, + anon_sym_map_LBRACK, + STATE(1711), 1, sym_plain_type, - STATE(4498), 1, + STATE(4375), 1, sym_reference_expression, - STATE(2283), 2, + STATE(1659), 2, sym_type_reference_expression, sym_qualified_type, STATE(3101), 2, sym_line_comment, sym_block_comment, - STATE(2360), 4, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280798,50 +280774,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3758), 1, - sym_identifier, - ACTIONS(3760), 1, - anon_sym_LPAREN, - ACTIONS(3762), 1, - anon_sym_fn, - ACTIONS(3766), 1, - anon_sym_struct, - ACTIONS(3776), 1, - anon_sym_shared, - ACTIONS(3778), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(3780), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3782), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3784), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5732), 1, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5734), 1, - anon_sym_QMARK, - ACTIONS(5736), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5738), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5740), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(1978), 1, - sym_plain_type, - STATE(4433), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1899), 2, - sym_type_reference_expression, - sym_qualified_type, + STATE(4531), 1, + sym_plain_type, STATE(3102), 2, sym_line_comment, sym_block_comment, - STATE(2006), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2005), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280861,48 +280837,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(2320), 1, - sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, + STATE(4455), 1, + sym_plain_type, STATE(3103), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280920,50 +280896,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 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(605), 1, sym_identifier, - ACTIONS(3430), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(3434), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3444), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3448), 1, - anon_sym_chan, - ACTIONS(3450), 1, - anon_sym_thread, - ACTIONS(3452), 1, - anon_sym_atomic, - ACTIONS(5800), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5802), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5804), 1, - anon_sym_QMARK, - ACTIONS(5806), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5808), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5810), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5812), 1, - anon_sym_map_LBRACK, - STATE(3348), 1, + STATE(3900), 1, sym_plain_type, - STATE(4351), 1, + STATE(4423), 1, sym_reference_expression, STATE(3104), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3362), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3340), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280981,50 +280957,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3758), 1, + ACTIONS(1191), 1, sym_identifier, - ACTIONS(3760), 1, - anon_sym_LPAREN, - ACTIONS(3762), 1, + ACTIONS(1195), 1, anon_sym_fn, - ACTIONS(3766), 1, + ACTIONS(1199), 1, anon_sym_struct, - ACTIONS(3776), 1, + ACTIONS(1209), 1, anon_sym_shared, - ACTIONS(3778), 1, - anon_sym_map_LBRACK, - ACTIONS(3780), 1, + ACTIONS(1213), 1, anon_sym_chan, - ACTIONS(3782), 1, + ACTIONS(1215), 1, anon_sym_thread, - ACTIONS(3784), 1, + ACTIONS(1217), 1, anon_sym_atomic, - ACTIONS(5732), 1, + ACTIONS(5800), 1, + anon_sym_LPAREN, + ACTIONS(5802), 1, anon_sym_STAR, - ACTIONS(5734), 1, + ACTIONS(5804), 1, anon_sym_QMARK, - ACTIONS(5736), 1, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5738), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5740), 1, + ACTIONS(5810), 1, anon_sym_AMP, - STATE(1916), 1, + ACTIONS(5812), 1, + anon_sym_map_LBRACK, + STATE(1069), 1, sym_plain_type, - STATE(4433), 1, + STATE(4344), 1, sym_reference_expression, - STATE(1899), 2, + STATE(989), 2, sym_type_reference_expression, sym_qualified_type, STATE(3105), 2, sym_line_comment, sym_block_comment, - STATE(2006), 4, + STATE(1091), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2005), 12, + STATE(1089), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281044,48 +281020,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(4114), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(3106), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281103,50 +281079,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3570), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(3572), 1, + ACTIONS(3750), 1, anon_sym_LPAREN, - ACTIONS(3574), 1, + ACTIONS(3752), 1, anon_sym_fn, - ACTIONS(3576), 1, - anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3756), 1, anon_sym_struct, - ACTIONS(3588), 1, + ACTIONS(3766), 1, anon_sym_shared, - ACTIONS(3590), 1, + ACTIONS(3768), 1, anon_sym_map_LBRACK, - ACTIONS(3592), 1, + ACTIONS(3770), 1, anon_sym_chan, - ACTIONS(3594), 1, + ACTIONS(3772), 1, anon_sym_thread, - ACTIONS(3596), 1, + ACTIONS(3774), 1, anon_sym_atomic, - ACTIONS(5814), 1, + ACTIONS(5714), 1, + anon_sym_STAR, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5722), 1, anon_sym_AMP, - STATE(1363), 1, + STATE(1985), 1, sym_plain_type, - STATE(4328), 1, + STATE(4428), 1, sym_reference_expression, - STATE(1288), 2, + STATE(1899), 2, sym_type_reference_expression, sym_qualified_type, STATE(3107), 2, sym_line_comment, sym_block_comment, - STATE(1293), 4, + STATE(1918), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1303), 12, + STATE(1996), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281164,50 +281140,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3797), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3799), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3805), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3815), 1, anon_sym_shared, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3817), 1, + anon_sym_map_LBRACK, + ACTIONS(3819), 1, + anon_sym_chan, + ACTIONS(3821), 1, + anon_sym_thread, + ACTIONS(3823), 1, + anon_sym_atomic, + ACTIONS(5760), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5762), 1, + anon_sym_QMARK, + ACTIONS(5764), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5766), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5768), 1, anon_sym_AMP, - STATE(4321), 1, + STATE(2002), 1, sym_plain_type, - STATE(4498), 1, + STATE(4365), 1, sym_reference_expression, + STATE(1904), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3108), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1978), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1980), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281225,50 +281201,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3570), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(3572), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(3574), 1, + ACTIONS(4537), 1, anon_sym_fn, - ACTIONS(3576), 1, + ACTIONS(4539), 1, anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(4541), 1, anon_sym_struct, - ACTIONS(3588), 1, + ACTIONS(4551), 1, anon_sym_shared, - ACTIONS(3590), 1, + ACTIONS(4553), 1, anon_sym_map_LBRACK, - ACTIONS(3592), 1, + ACTIONS(4555), 1, anon_sym_chan, - ACTIONS(3594), 1, + ACTIONS(4557), 1, anon_sym_thread, - ACTIONS(3596), 1, + ACTIONS(4559), 1, anon_sym_atomic, - ACTIONS(5814), 1, + ACTIONS(5778), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5780), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5782), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5784), 1, anon_sym_AMP, - STATE(1310), 1, + STATE(2718), 1, sym_plain_type, - STATE(4328), 1, + STATE(4316), 1, sym_reference_expression, - STATE(1288), 2, + STATE(2611), 2, sym_type_reference_expression, sym_qualified_type, STATE(3109), 2, sym_line_comment, sym_block_comment, - STATE(1293), 4, + STATE(2692), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1303), 12, + STATE(2693), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281286,50 +281262,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(4539), 1, + anon_sym_STAR, + ACTIONS(4541), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(4551), 1, anon_sym_shared, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(4553), 1, + anon_sym_map_LBRACK, + ACTIONS(4555), 1, + anon_sym_chan, + ACTIONS(4557), 1, + anon_sym_thread, + ACTIONS(4559), 1, + anon_sym_atomic, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5782), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5784), 1, anon_sym_AMP, - STATE(3879), 1, + STATE(2721), 1, sym_plain_type, - STATE(4498), 1, + STATE(4316), 1, sym_reference_expression, + STATE(2611), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3110), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(2692), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2693), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281347,50 +281323,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 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(605), 1, sym_identifier, - ACTIONS(3606), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(3610), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3620), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3624), 1, - anon_sym_chan, - ACTIONS(3626), 1, - anon_sym_thread, - ACTIONS(3628), 1, - anon_sym_atomic, - ACTIONS(5574), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5578), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5580), 1, - anon_sym_QMARK, - ACTIONS(5582), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5584), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5586), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5588), 1, - anon_sym_map_LBRACK, - STATE(1470), 1, + STATE(3996), 1, sym_plain_type, - STATE(4496), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1401), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3111), 2, sym_line_comment, sym_block_comment, - STATE(1444), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1445), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281408,50 +281384,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3758), 1, - sym_identifier, - ACTIONS(3760), 1, - anon_sym_LPAREN, - ACTIONS(3762), 1, - anon_sym_fn, - ACTIONS(3766), 1, - anon_sym_struct, - ACTIONS(3776), 1, - anon_sym_shared, - ACTIONS(3778), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(3780), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3782), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3784), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5732), 1, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5734), 1, - anon_sym_QMARK, - ACTIONS(5736), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5738), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5740), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(2115), 1, + STATE(2353), 1, sym_plain_type, - STATE(4433), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1899), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3112), 2, sym_line_comment, sym_block_comment, - STATE(2006), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2005), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281469,50 +281445,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3758), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(3760), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(3762), 1, + ACTIONS(4537), 1, anon_sym_fn, - ACTIONS(3766), 1, + ACTIONS(4539), 1, + anon_sym_STAR, + ACTIONS(4541), 1, anon_sym_struct, - ACTIONS(3776), 1, + ACTIONS(4551), 1, anon_sym_shared, - ACTIONS(3778), 1, + ACTIONS(4553), 1, anon_sym_map_LBRACK, - ACTIONS(3780), 1, + ACTIONS(4555), 1, anon_sym_chan, - ACTIONS(3782), 1, + ACTIONS(4557), 1, anon_sym_thread, - ACTIONS(3784), 1, + ACTIONS(4559), 1, anon_sym_atomic, - ACTIONS(5732), 1, - anon_sym_STAR, - ACTIONS(5734), 1, + ACTIONS(5778), 1, anon_sym_QMARK, - ACTIONS(5736), 1, + ACTIONS(5780), 1, anon_sym_BANG, - ACTIONS(5738), 1, + ACTIONS(5782), 1, anon_sym_LBRACK2, - ACTIONS(5740), 1, + ACTIONS(5784), 1, anon_sym_AMP, - STATE(1935), 1, + STATE(2706), 1, sym_plain_type, - STATE(4433), 1, + STATE(4316), 1, sym_reference_expression, - STATE(1899), 2, + STATE(2611), 2, sym_type_reference_expression, sym_qualified_type, STATE(3113), 2, sym_line_comment, sym_block_comment, - STATE(2006), 4, + STATE(2692), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2005), 12, + STATE(2693), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281530,50 +281506,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3454), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(4539), 1, + anon_sym_STAR, + ACTIONS(4541), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(4551), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(4553), 1, + anon_sym_map_LBRACK, + ACTIONS(4555), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(4557), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(4559), 1, anon_sym_atomic, - ACTIONS(5786), 1, - anon_sym_LPAREN, - ACTIONS(5788), 1, - anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5778), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5780), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5782), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5784), 1, anon_sym_AMP, - ACTIONS(5798), 1, - anon_sym_map_LBRACK, - STATE(1167), 1, + STATE(2723), 1, sym_plain_type, - STATE(4412), 1, + STATE(4316), 1, sym_reference_expression, - STATE(1132), 2, + STATE(2611), 2, sym_type_reference_expression, sym_qualified_type, STATE(3114), 2, sym_line_comment, sym_block_comment, - STATE(1214), 4, + STATE(2692), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1225), 12, + STATE(2693), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281591,50 +281567,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(4539), 1, + anon_sym_STAR, + ACTIONS(4541), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(4551), 1, anon_sym_shared, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(4553), 1, + anon_sym_map_LBRACK, + ACTIONS(4555), 1, + anon_sym_chan, + ACTIONS(4557), 1, + anon_sym_thread, + ACTIONS(4559), 1, + anon_sym_atomic, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5782), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5784), 1, anon_sym_AMP, - STATE(4498), 1, - sym_reference_expression, - STATE(4505), 1, + STATE(2734), 1, sym_plain_type, + STATE(4316), 1, + sym_reference_expression, + STATE(2611), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3115), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(2692), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2693), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281652,50 +281628,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3454), 1, + ACTIONS(3797), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3799), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(3805), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(3815), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(3817), 1, + anon_sym_map_LBRACK, + ACTIONS(3819), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(3821), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(3823), 1, anon_sym_atomic, - ACTIONS(5786), 1, - anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5760), 1, anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5762), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5764), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5766), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5768), 1, anon_sym_AMP, - ACTIONS(5798), 1, - anon_sym_map_LBRACK, - STATE(1213), 1, + STATE(2045), 1, sym_plain_type, - STATE(4412), 1, + STATE(4365), 1, sym_reference_expression, - STATE(1132), 2, + STATE(1904), 2, sym_type_reference_expression, sym_qualified_type, STATE(3116), 2, sym_line_comment, sym_block_comment, - STATE(1214), 4, + STATE(1978), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1225), 12, + STATE(1980), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281713,50 +281689,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(587), 1, + ACTIONS(1191), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(1195), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(1199), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(1209), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(1213), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(1215), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(1217), 1, anon_sym_atomic, - ACTIONS(5668), 1, + ACTIONS(5800), 1, anon_sym_LPAREN, - ACTIONS(5670), 1, + ACTIONS(5802), 1, anon_sym_STAR, - ACTIONS(5672), 1, + ACTIONS(5804), 1, anon_sym_QMARK, - ACTIONS(5674), 1, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5676), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5678), 1, + ACTIONS(5810), 1, anon_sym_AMP, - ACTIONS(5680), 1, + ACTIONS(5812), 1, anon_sym_map_LBRACK, - STATE(414), 1, + STATE(1052), 1, sym_plain_type, - STATE(4403), 1, + STATE(4344), 1, sym_reference_expression, - STATE(244), 2, + STATE(989), 2, sym_type_reference_expression, sym_qualified_type, STATE(3117), 2, sym_line_comment, sym_block_comment, - STATE(387), 4, + STATE(1091), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(388), 12, + STATE(1089), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281774,50 +281750,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(85), 1, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, + sym_identifier, + ACTIONS(3957), 1, + anon_sym_fn, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3969), 1, + anon_sym_shared, + ACTIONS(3971), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(3973), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(3975), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(3977), 1, anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5770), 1, + anon_sym_QMARK, + ACTIONS(5772), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5774), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5776), 1, anon_sym_AMP, - STATE(2330), 1, + STATE(2386), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, + STATE(2284), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3118), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281835,50 +281811,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3454), 1, + ACTIONS(3797), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3799), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(3805), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(3815), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(3817), 1, + anon_sym_map_LBRACK, + ACTIONS(3819), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(3821), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(3823), 1, anon_sym_atomic, - ACTIONS(5786), 1, - anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5760), 1, anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5762), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5764), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5766), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5768), 1, anon_sym_AMP, - ACTIONS(5798), 1, - anon_sym_map_LBRACK, - STATE(1190), 1, + STATE(2036), 1, sym_plain_type, - STATE(4412), 1, + STATE(4365), 1, sym_reference_expression, - STATE(1132), 2, + STATE(1904), 2, sym_type_reference_expression, sym_qualified_type, STATE(3119), 2, sym_line_comment, sym_block_comment, - STATE(1214), 4, + STATE(1978), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1225), 12, + STATE(1980), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281896,50 +281872,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3638), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(5486), 1, + ACTIONS(5490), 1, anon_sym_fn, - ACTIONS(5498), 1, - anon_sym_shared, ACTIONS(5502), 1, + anon_sym_shared, + ACTIONS(5506), 1, anon_sym_chan, - ACTIONS(5504), 1, + ACTIONS(5508), 1, anon_sym_thread, - ACTIONS(5506), 1, + ACTIONS(5510), 1, anon_sym_atomic, - ACTIONS(5590), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5594), 1, + ACTIONS(5582), 1, anon_sym_STAR, - ACTIONS(5596), 1, + ACTIONS(5584), 1, anon_sym_QMARK, - ACTIONS(5598), 1, + ACTIONS(5586), 1, anon_sym_BANG, - ACTIONS(5600), 1, + ACTIONS(5588), 1, anon_sym_LBRACK2, - ACTIONS(5602), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5604), 1, + ACTIONS(5592), 1, anon_sym_map_LBRACK, - STATE(1666), 1, + STATE(1645), 1, sym_plain_type, - STATE(4351), 1, + STATE(4356), 1, sym_reference_expression, STATE(3120), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, + STATE(3302), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1647), 4, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281957,50 +281933,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3789), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3791), 1, - anon_sym_LPAREN, - ACTIONS(3793), 1, + ACTIONS(4072), 1, anon_sym_fn, - ACTIONS(3797), 1, + ACTIONS(4076), 1, anon_sym_struct, - ACTIONS(3807), 1, + ACTIONS(4086), 1, anon_sym_shared, - ACTIONS(3809), 1, - anon_sym_map_LBRACK, - ACTIONS(3811), 1, + ACTIONS(4090), 1, anon_sym_chan, - ACTIONS(3813), 1, + ACTIONS(4092), 1, anon_sym_thread, - ACTIONS(3815), 1, + ACTIONS(4094), 1, anon_sym_atomic, - ACTIONS(5764), 1, + ACTIONS(5746), 1, + anon_sym_LPAREN, + ACTIONS(5748), 1, anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5750), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5752), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5754), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5756), 1, anon_sym_AMP, - STATE(2010), 1, + ACTIONS(5758), 1, + anon_sym_map_LBRACK, + STATE(2562), 1, sym_plain_type, - STATE(4370), 1, + STATE(4386), 1, sym_reference_expression, - STATE(1909), 2, + STATE(2419), 2, sym_type_reference_expression, sym_qualified_type, STATE(3121), 2, sym_line_comment, sym_block_comment, - STATE(1945), 4, + STATE(2533), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1949), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282018,50 +281994,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(587), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(4072), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(4076), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(4086), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(4090), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(4092), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(4094), 1, anon_sym_atomic, - ACTIONS(5668), 1, + ACTIONS(5746), 1, anon_sym_LPAREN, - ACTIONS(5670), 1, + ACTIONS(5748), 1, anon_sym_STAR, - ACTIONS(5672), 1, + ACTIONS(5750), 1, anon_sym_QMARK, - ACTIONS(5674), 1, + ACTIONS(5752), 1, anon_sym_BANG, - ACTIONS(5676), 1, + ACTIONS(5754), 1, anon_sym_LBRACK2, - ACTIONS(5678), 1, + ACTIONS(5756), 1, anon_sym_AMP, - ACTIONS(5680), 1, + ACTIONS(5758), 1, anon_sym_map_LBRACK, - STATE(415), 1, + STATE(2561), 1, sym_plain_type, - STATE(4403), 1, + STATE(4386), 1, sym_reference_expression, - STATE(244), 2, + STATE(2419), 2, sym_type_reference_expression, sym_qualified_type, STATE(3122), 2, sym_line_comment, sym_block_comment, - STATE(387), 4, + STATE(2533), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(388), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282079,50 +282055,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3698), 1, + ACTIONS(3606), 1, sym_identifier, - ACTIONS(3702), 1, + ACTIONS(3610), 1, anon_sym_fn, - ACTIONS(3706), 1, + ACTIONS(3614), 1, anon_sym_struct, - ACTIONS(3716), 1, + ACTIONS(3624), 1, anon_sym_shared, - ACTIONS(3720), 1, + ACTIONS(3628), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3630), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3632), 1, anon_sym_atomic, - ACTIONS(5682), 1, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(5684), 1, + ACTIONS(5598), 1, anon_sym_STAR, - ACTIONS(5686), 1, + ACTIONS(5600), 1, anon_sym_QMARK, - ACTIONS(5688), 1, + ACTIONS(5602), 1, anon_sym_BANG, - ACTIONS(5690), 1, + ACTIONS(5604), 1, anon_sym_LBRACK2, - ACTIONS(5692), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5694), 1, + ACTIONS(5608), 1, anon_sym_map_LBRACK, - STATE(1836), 1, + STATE(1456), 1, sym_plain_type, - STATE(4454), 1, + STATE(4472), 1, sym_reference_expression, - STATE(1751), 2, + STATE(1404), 2, sym_type_reference_expression, sym_qualified_type, STATE(3123), 2, sym_line_comment, sym_block_comment, - STATE(1842), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1841), 12, + STATE(1440), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282140,50 +282116,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(587), 1, + ACTIONS(3606), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3610), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3614), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3624), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3628), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(3630), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(3632), 1, anon_sym_atomic, - ACTIONS(5668), 1, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(5670), 1, + ACTIONS(5598), 1, anon_sym_STAR, - ACTIONS(5672), 1, + ACTIONS(5600), 1, anon_sym_QMARK, - ACTIONS(5674), 1, + ACTIONS(5602), 1, anon_sym_BANG, - ACTIONS(5676), 1, + ACTIONS(5604), 1, anon_sym_LBRACK2, - ACTIONS(5678), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5680), 1, + ACTIONS(5608), 1, anon_sym_map_LBRACK, - STATE(416), 1, + STATE(1458), 1, sym_plain_type, - STATE(4403), 1, + STATE(4472), 1, sym_reference_expression, - STATE(244), 2, + STATE(1404), 2, sym_type_reference_expression, sym_qualified_type, STATE(3124), 2, sym_line_comment, sym_block_comment, - STATE(387), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(388), 12, + STATE(1440), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282201,50 +282177,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3789), 1, + ACTIONS(3634), 1, sym_identifier, - ACTIONS(3791), 1, - anon_sym_LPAREN, - ACTIONS(3793), 1, + ACTIONS(3638), 1, anon_sym_fn, - ACTIONS(3797), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(3807), 1, + ACTIONS(3652), 1, anon_sym_shared, - ACTIONS(3809), 1, - anon_sym_map_LBRACK, - ACTIONS(3811), 1, + ACTIONS(3656), 1, anon_sym_chan, - ACTIONS(3813), 1, + ACTIONS(3658), 1, anon_sym_thread, - ACTIONS(3815), 1, + ACTIONS(3660), 1, anon_sym_atomic, - ACTIONS(5764), 1, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5814), 1, anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5816), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5818), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5820), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5822), 1, anon_sym_AMP, - STATE(2052), 1, + ACTIONS(5824), 1, + anon_sym_map_LBRACK, + STATE(1740), 1, sym_plain_type, - STATE(4370), 1, + STATE(4375), 1, sym_reference_expression, - STATE(1909), 2, + STATE(1659), 2, sym_type_reference_expression, sym_qualified_type, STATE(3125), 2, sym_line_comment, sym_block_comment, - STATE(1945), 4, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1949), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282262,50 +282238,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3454), 1, + ACTIONS(3606), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3610), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(3614), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(3624), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(3628), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(3630), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(3632), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5598), 1, anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5600), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5602), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5604), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5798), 1, + ACTIONS(5608), 1, anon_sym_map_LBRACK, - STATE(1223), 1, + STATE(1459), 1, sym_plain_type, - STATE(4412), 1, + STATE(4472), 1, sym_reference_expression, - STATE(1132), 2, + STATE(1404), 2, sym_type_reference_expression, sym_qualified_type, STATE(3126), 2, sym_line_comment, sym_block_comment, - STATE(1214), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1225), 12, + STATE(1440), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282323,50 +282299,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, - anon_sym_LPAREN, - ACTIONS(3793), 1, - anon_sym_fn, - ACTIONS(3797), 1, - anon_sym_struct, - ACTIONS(3807), 1, - anon_sym_shared, - ACTIONS(3809), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(3811), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3813), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3815), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5764), 1, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5766), 1, - anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(2018), 1, + STATE(3826), 1, sym_plain_type, - STATE(4370), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1909), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3127), 2, sym_line_comment, sym_block_comment, - STATE(1945), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1949), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282384,50 +282360,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3606), 1, - anon_sym_fn, - ACTIONS(3610), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(3620), 1, + ACTIONS(5490), 1, + anon_sym_fn, + ACTIONS(5502), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(5506), 1, anon_sym_chan, - ACTIONS(3626), 1, + ACTIONS(5508), 1, anon_sym_thread, - ACTIONS(3628), 1, + ACTIONS(5510), 1, anon_sym_atomic, - ACTIONS(5574), 1, - anon_sym_LPAREN, ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5582), 1, anon_sym_STAR, - ACTIONS(5580), 1, + ACTIONS(5584), 1, anon_sym_QMARK, - ACTIONS(5582), 1, + ACTIONS(5586), 1, anon_sym_BANG, - ACTIONS(5584), 1, + ACTIONS(5588), 1, anon_sym_LBRACK2, - ACTIONS(5586), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5588), 1, + ACTIONS(5592), 1, anon_sym_map_LBRACK, - STATE(1439), 1, + STATE(1646), 1, sym_plain_type, - STATE(4496), 1, + STATE(4356), 1, sym_reference_expression, - STATE(1401), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3128), 2, sym_line_comment, sym_block_comment, - STATE(1444), 4, + STATE(3302), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1445), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282445,50 +282421,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3634), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3638), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3652), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3656), 1, + anon_sym_chan, + ACTIONS(3658), 1, + anon_sym_thread, + ACTIONS(3660), 1, + anon_sym_atomic, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5814), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5816), 1, + anon_sym_QMARK, + ACTIONS(5818), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5820), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5822), 1, anon_sym_AMP, - STATE(2344), 1, + ACTIONS(5824), 1, + anon_sym_map_LBRACK, + STATE(1725), 1, sym_plain_type, - STATE(4498), 1, + STATE(4375), 1, sym_reference_expression, + STATE(1659), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3129), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282506,50 +282482,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(587), 1, + ACTIONS(3606), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3610), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3614), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3624), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3628), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(3630), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(3632), 1, anon_sym_atomic, - ACTIONS(5668), 1, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(5670), 1, + ACTIONS(5598), 1, anon_sym_STAR, - ACTIONS(5672), 1, + ACTIONS(5600), 1, anon_sym_QMARK, - ACTIONS(5674), 1, + ACTIONS(5602), 1, anon_sym_BANG, - ACTIONS(5676), 1, + ACTIONS(5604), 1, anon_sym_LBRACK2, - ACTIONS(5678), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5680), 1, + ACTIONS(5608), 1, anon_sym_map_LBRACK, - STATE(425), 1, + STATE(1464), 1, sym_plain_type, - STATE(4403), 1, + STATE(4472), 1, sym_reference_expression, - STATE(244), 2, + STATE(1404), 2, sym_type_reference_expression, sym_qualified_type, STATE(3130), 2, sym_line_comment, sym_block_comment, - STATE(387), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(388), 12, + STATE(1440), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282567,50 +282543,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(587), 1, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3464), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3468), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3478), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3482), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(3484), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(3486), 1, anon_sym_atomic, - ACTIONS(5668), 1, + ACTIONS(5686), 1, anon_sym_LPAREN, - ACTIONS(5670), 1, + ACTIONS(5688), 1, anon_sym_STAR, - ACTIONS(5672), 1, + ACTIONS(5690), 1, anon_sym_QMARK, - ACTIONS(5674), 1, + ACTIONS(5692), 1, anon_sym_BANG, - ACTIONS(5676), 1, + ACTIONS(5694), 1, anon_sym_LBRACK2, - ACTIONS(5678), 1, + ACTIONS(5696), 1, anon_sym_AMP, - ACTIONS(5680), 1, + ACTIONS(5698), 1, anon_sym_map_LBRACK, - STATE(484), 1, + STATE(1212), 1, sym_plain_type, - STATE(4403), 1, + STATE(4407), 1, sym_reference_expression, - STATE(244), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, STATE(3131), 2, sym_line_comment, sym_block_comment, - STATE(387), 4, + STATE(1171), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(388), 12, + STATE(1169), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282628,50 +282604,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, + ACTIONS(3566), 1, sym_identifier, - ACTIONS(4525), 1, + ACTIONS(3568), 1, anon_sym_LPAREN, - ACTIONS(4527), 1, + ACTIONS(3570), 1, anon_sym_fn, - ACTIONS(4529), 1, + ACTIONS(3572), 1, anon_sym_STAR, - ACTIONS(4531), 1, + ACTIONS(3574), 1, anon_sym_struct, - ACTIONS(4541), 1, + ACTIONS(3584), 1, anon_sym_shared, - ACTIONS(4543), 1, + ACTIONS(3586), 1, anon_sym_map_LBRACK, - ACTIONS(4545), 1, + ACTIONS(3588), 1, anon_sym_chan, - ACTIONS(4547), 1, + ACTIONS(3590), 1, anon_sym_thread, - ACTIONS(4549), 1, + ACTIONS(3592), 1, anon_sym_atomic, - ACTIONS(5756), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5758), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5760), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5762), 1, + ACTIONS(5730), 1, anon_sym_AMP, - STATE(2548), 1, + STATE(1306), 1, sym_plain_type, - STATE(4479), 1, + STATE(4323), 1, sym_reference_expression, - STATE(2597), 2, + STATE(1277), 2, sym_type_reference_expression, sym_qualified_type, STATE(3132), 2, sym_line_comment, sym_block_comment, - STATE(2699), 4, + STATE(1296), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2700), 12, + STATE(1299), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282689,50 +282665,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(5490), 1, + anon_sym_fn, + ACTIONS(5502), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(5506), 1, + anon_sym_chan, + ACTIONS(5508), 1, + anon_sym_thread, + ACTIONS(5510), 1, + anon_sym_atomic, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5582), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5584), 1, + anon_sym_QMARK, + ACTIONS(5586), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5588), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5590), 1, anon_sym_AMP, - STATE(3996), 1, + ACTIONS(5592), 1, + anon_sym_map_LBRACK, + STATE(1647), 1, sym_plain_type, - STATE(4498), 1, + STATE(4356), 1, sym_reference_expression, STATE(3133), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3302), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282750,50 +282726,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(587), 1, + ACTIONS(3797), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3799), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3805), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3815), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3817), 1, + anon_sym_map_LBRACK, + ACTIONS(3819), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(3821), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(3823), 1, anon_sym_atomic, - ACTIONS(5668), 1, - anon_sym_LPAREN, - ACTIONS(5670), 1, + ACTIONS(5760), 1, anon_sym_STAR, - ACTIONS(5672), 1, + ACTIONS(5762), 1, anon_sym_QMARK, - ACTIONS(5674), 1, + ACTIONS(5764), 1, anon_sym_BANG, - ACTIONS(5676), 1, + ACTIONS(5766), 1, anon_sym_LBRACK2, - ACTIONS(5678), 1, + ACTIONS(5768), 1, anon_sym_AMP, - ACTIONS(5680), 1, - anon_sym_map_LBRACK, - STATE(433), 1, + STATE(2006), 1, sym_plain_type, - STATE(4403), 1, + STATE(4365), 1, sym_reference_expression, - STATE(244), 2, + STATE(1904), 2, sym_type_reference_expression, sym_qualified_type, STATE(3134), 2, sym_line_comment, sym_block_comment, - STATE(387), 4, + STATE(1978), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(388), 12, + STATE(1980), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282811,50 +282787,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(587), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(4072), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(4076), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(4086), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(4090), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(4092), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(4094), 1, anon_sym_atomic, - ACTIONS(5668), 1, + ACTIONS(5746), 1, anon_sym_LPAREN, - ACTIONS(5670), 1, + ACTIONS(5748), 1, anon_sym_STAR, - ACTIONS(5672), 1, + ACTIONS(5750), 1, anon_sym_QMARK, - ACTIONS(5674), 1, + ACTIONS(5752), 1, anon_sym_BANG, - ACTIONS(5676), 1, + ACTIONS(5754), 1, anon_sym_LBRACK2, - ACTIONS(5678), 1, + ACTIONS(5756), 1, anon_sym_AMP, - ACTIONS(5680), 1, + ACTIONS(5758), 1, anon_sym_map_LBRACK, - STATE(413), 1, + STATE(2542), 1, sym_plain_type, - STATE(4403), 1, + STATE(4386), 1, sym_reference_expression, - STATE(244), 2, + STATE(2419), 2, sym_type_reference_expression, sym_qualified_type, STATE(3135), 2, sym_line_comment, sym_block_comment, - STATE(387), 4, + STATE(2533), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(388), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282872,50 +282848,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3918), 1, + ACTIONS(3797), 1, sym_identifier, - ACTIONS(3922), 1, + ACTIONS(3799), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, anon_sym_fn, - ACTIONS(3926), 1, + ACTIONS(3805), 1, anon_sym_struct, - ACTIONS(3936), 1, + ACTIONS(3815), 1, anon_sym_shared, - ACTIONS(3940), 1, + ACTIONS(3817), 1, + anon_sym_map_LBRACK, + ACTIONS(3819), 1, anon_sym_chan, - ACTIONS(3942), 1, + ACTIONS(3821), 1, anon_sym_thread, - ACTIONS(3944), 1, + ACTIONS(3823), 1, anon_sym_atomic, - ACTIONS(5710), 1, - anon_sym_LPAREN, - ACTIONS(5712), 1, + ACTIONS(5760), 1, anon_sym_STAR, - ACTIONS(5714), 1, + ACTIONS(5762), 1, anon_sym_QMARK, - ACTIONS(5716), 1, + ACTIONS(5764), 1, anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5766), 1, anon_sym_LBRACK2, - ACTIONS(5720), 1, + ACTIONS(5768), 1, anon_sym_AMP, - ACTIONS(5722), 1, - anon_sym_map_LBRACK, - STATE(2224), 1, + STATE(2005), 1, sym_plain_type, - STATE(4471), 1, + STATE(4365), 1, sym_reference_expression, - STATE(2142), 2, + STATE(1904), 2, sym_type_reference_expression, sym_qualified_type, STATE(3136), 2, sym_line_comment, sym_block_comment, - STATE(2183), 4, + STATE(1978), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(1980), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282933,50 +282909,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3698), 1, + ACTIONS(3797), 1, sym_identifier, - ACTIONS(3702), 1, + ACTIONS(3799), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, anon_sym_fn, - ACTIONS(3706), 1, + ACTIONS(3805), 1, anon_sym_struct, - ACTIONS(3716), 1, + ACTIONS(3815), 1, anon_sym_shared, - ACTIONS(3720), 1, + ACTIONS(3817), 1, + anon_sym_map_LBRACK, + ACTIONS(3819), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3821), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3823), 1, anon_sym_atomic, - ACTIONS(5682), 1, - anon_sym_LPAREN, - ACTIONS(5684), 1, + ACTIONS(5760), 1, anon_sym_STAR, - ACTIONS(5686), 1, + ACTIONS(5762), 1, anon_sym_QMARK, - ACTIONS(5688), 1, + ACTIONS(5764), 1, anon_sym_BANG, - ACTIONS(5690), 1, + ACTIONS(5766), 1, anon_sym_LBRACK2, - ACTIONS(5692), 1, + ACTIONS(5768), 1, anon_sym_AMP, - ACTIONS(5694), 1, - anon_sym_map_LBRACK, - STATE(1796), 1, + STATE(2004), 1, sym_plain_type, - STATE(4454), 1, + STATE(4365), 1, sym_reference_expression, - STATE(1751), 2, + STATE(1904), 2, sym_type_reference_expression, sym_qualified_type, STATE(3137), 2, sym_line_comment, sym_block_comment, - STATE(1842), 4, + STATE(1978), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1841), 12, + STATE(1980), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282994,50 +282970,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3570), 1, + ACTIONS(3566), 1, sym_identifier, - ACTIONS(3572), 1, + ACTIONS(3568), 1, anon_sym_LPAREN, - ACTIONS(3574), 1, + ACTIONS(3570), 1, anon_sym_fn, - ACTIONS(3576), 1, + ACTIONS(3572), 1, anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3574), 1, anon_sym_struct, - ACTIONS(3588), 1, + ACTIONS(3584), 1, anon_sym_shared, - ACTIONS(3590), 1, + ACTIONS(3586), 1, anon_sym_map_LBRACK, - ACTIONS(3592), 1, + ACTIONS(3588), 1, anon_sym_chan, - ACTIONS(3594), 1, + ACTIONS(3590), 1, anon_sym_thread, - ACTIONS(3596), 1, + ACTIONS(3592), 1, anon_sym_atomic, - ACTIONS(5814), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5730), 1, anon_sym_AMP, - STATE(1364), 1, + STATE(1305), 1, sym_plain_type, - STATE(4328), 1, + STATE(4323), 1, sym_reference_expression, - STATE(1288), 2, + STATE(1277), 2, sym_type_reference_expression, sym_qualified_type, STATE(3138), 2, sym_line_comment, sym_block_comment, - STATE(1293), 4, + STATE(1296), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1303), 12, + STATE(1299), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283055,50 +283031,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(4072), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(4076), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(4086), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(4090), 1, + anon_sym_chan, + ACTIONS(4092), 1, + anon_sym_thread, + ACTIONS(4094), 1, + anon_sym_atomic, + ACTIONS(5746), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5748), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5750), 1, + anon_sym_QMARK, + ACTIONS(5752), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5754), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5756), 1, anon_sym_AMP, - STATE(2321), 1, + ACTIONS(5758), 1, + anon_sym_map_LBRACK, + STATE(2538), 1, sym_plain_type, - STATE(4498), 1, + STATE(4386), 1, sym_reference_expression, + STATE(2419), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3139), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(2533), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283116,50 +283092,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(1191), 1, sym_identifier, - ACTIONS(3638), 1, - anon_sym_struct, - ACTIONS(5486), 1, + ACTIONS(1195), 1, anon_sym_fn, - ACTIONS(5498), 1, + ACTIONS(1199), 1, + anon_sym_struct, + ACTIONS(1209), 1, anon_sym_shared, - ACTIONS(5502), 1, + ACTIONS(1213), 1, anon_sym_chan, - ACTIONS(5504), 1, + ACTIONS(1215), 1, anon_sym_thread, - ACTIONS(5506), 1, + ACTIONS(1217), 1, anon_sym_atomic, - ACTIONS(5590), 1, + ACTIONS(5800), 1, anon_sym_LPAREN, - ACTIONS(5594), 1, + ACTIONS(5802), 1, anon_sym_STAR, - ACTIONS(5596), 1, + ACTIONS(5804), 1, anon_sym_QMARK, - ACTIONS(5598), 1, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5600), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5602), 1, + ACTIONS(5810), 1, anon_sym_AMP, - ACTIONS(5604), 1, + ACTIONS(5812), 1, anon_sym_map_LBRACK, - STATE(1635), 1, + STATE(1043), 1, sym_plain_type, - STATE(4351), 1, + STATE(4344), 1, sym_reference_expression, + STATE(989), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3140), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1647), 4, + STATE(1091), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(1089), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283177,50 +283153,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3454), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(4072), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(4076), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(4086), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(4090), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(4092), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(4094), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5746), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5748), 1, anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5750), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5752), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5754), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5756), 1, anon_sym_AMP, - ACTIONS(5798), 1, + ACTIONS(5758), 1, anon_sym_map_LBRACK, - STATE(1255), 1, + STATE(2564), 1, sym_plain_type, - STATE(4412), 1, + STATE(4386), 1, sym_reference_expression, - STATE(1132), 2, + STATE(2419), 2, sym_type_reference_expression, sym_qualified_type, STATE(3141), 2, sym_line_comment, sym_block_comment, - STATE(1214), 4, + STATE(2533), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1225), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283238,50 +283214,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3566), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3568), 1, + anon_sym_LPAREN, + ACTIONS(3570), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3572), 1, + anon_sym_STAR, + ACTIONS(3574), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3584), 1, anon_sym_shared, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(3586), 1, + anon_sym_map_LBRACK, + ACTIONS(3588), 1, + anon_sym_chan, + ACTIONS(3590), 1, + anon_sym_thread, + ACTIONS(3592), 1, + anon_sym_atomic, + ACTIONS(5724), 1, + anon_sym_QMARK, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5730), 1, anon_sym_AMP, - STATE(2342), 1, + STATE(1304), 1, sym_plain_type, - STATE(4498), 1, + STATE(4323), 1, sym_reference_expression, + STATE(1277), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3142), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1296), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1299), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283299,50 +283275,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(4539), 1, + anon_sym_STAR, + ACTIONS(4541), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(4551), 1, anon_sym_shared, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(4553), 1, + anon_sym_map_LBRACK, + ACTIONS(4555), 1, + anon_sym_chan, + ACTIONS(4557), 1, + anon_sym_thread, + ACTIONS(4559), 1, + anon_sym_atomic, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5782), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5784), 1, anon_sym_AMP, - STATE(3959), 1, + STATE(2736), 1, sym_plain_type, - STATE(4498), 1, + STATE(4316), 1, sym_reference_expression, + STATE(2611), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3143), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(2692), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2693), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283360,50 +283336,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(587), 1, + ACTIONS(3924), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3928), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3932), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3942), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3946), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(3948), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(3950), 1, anon_sym_atomic, - ACTIONS(5668), 1, + ACTIONS(5732), 1, anon_sym_LPAREN, - ACTIONS(5670), 1, + ACTIONS(5734), 1, anon_sym_STAR, - ACTIONS(5672), 1, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5674), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5676), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5678), 1, + ACTIONS(5742), 1, anon_sym_AMP, - ACTIONS(5680), 1, + ACTIONS(5744), 1, anon_sym_map_LBRACK, - STATE(461), 1, + STATE(2187), 1, sym_plain_type, - STATE(4403), 1, + STATE(4466), 1, sym_reference_expression, - STATE(244), 2, + STATE(2130), 2, sym_type_reference_expression, sym_qualified_type, STATE(3144), 2, sym_line_comment, sym_block_comment, - STATE(387), 4, + STATE(2178), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(388), 12, + STATE(2179), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283421,50 +283397,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(587), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3704), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3718), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3722), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(3724), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(3726), 1, anon_sym_atomic, - ACTIONS(5668), 1, + ACTIONS(5700), 1, anon_sym_LPAREN, - ACTIONS(5670), 1, + ACTIONS(5702), 1, anon_sym_STAR, - ACTIONS(5672), 1, + ACTIONS(5704), 1, anon_sym_QMARK, - ACTIONS(5674), 1, + ACTIONS(5706), 1, anon_sym_BANG, - ACTIONS(5676), 1, + ACTIONS(5708), 1, anon_sym_LBRACK2, - ACTIONS(5678), 1, + ACTIONS(5710), 1, anon_sym_AMP, - ACTIONS(5680), 1, + ACTIONS(5712), 1, anon_sym_map_LBRACK, - STATE(378), 1, + STATE(1858), 1, sym_plain_type, - STATE(4403), 1, + STATE(4449), 1, sym_reference_expression, - STATE(244), 2, + STATE(1760), 2, sym_type_reference_expression, sym_qualified_type, STATE(3145), 2, sym_line_comment, sym_block_comment, - STATE(387), 4, + STATE(1831), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(388), 12, + STATE(1830), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283482,50 +283458,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3758), 1, + ACTIONS(3700), 1, sym_identifier, - ACTIONS(3760), 1, - anon_sym_LPAREN, - ACTIONS(3762), 1, + ACTIONS(3704), 1, anon_sym_fn, - ACTIONS(3766), 1, + ACTIONS(3708), 1, anon_sym_struct, - ACTIONS(3776), 1, + ACTIONS(3718), 1, anon_sym_shared, - ACTIONS(3778), 1, - anon_sym_map_LBRACK, - ACTIONS(3780), 1, + ACTIONS(3722), 1, anon_sym_chan, - ACTIONS(3782), 1, + ACTIONS(3724), 1, anon_sym_thread, - ACTIONS(3784), 1, + ACTIONS(3726), 1, anon_sym_atomic, - ACTIONS(5732), 1, + ACTIONS(5700), 1, + anon_sym_LPAREN, + ACTIONS(5702), 1, anon_sym_STAR, - ACTIONS(5734), 1, + ACTIONS(5704), 1, anon_sym_QMARK, - ACTIONS(5736), 1, + ACTIONS(5706), 1, anon_sym_BANG, - ACTIONS(5738), 1, + ACTIONS(5708), 1, anon_sym_LBRACK2, - ACTIONS(5740), 1, + ACTIONS(5710), 1, anon_sym_AMP, - STATE(2009), 1, + ACTIONS(5712), 1, + anon_sym_map_LBRACK, + STATE(1862), 1, sym_plain_type, - STATE(4433), 1, + STATE(4449), 1, sym_reference_expression, - STATE(1899), 2, + STATE(1760), 2, sym_type_reference_expression, sym_qualified_type, STATE(3146), 2, sym_line_comment, sym_block_comment, - STATE(2006), 4, + STATE(1831), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2005), 12, + STATE(1830), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283543,50 +283519,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3570), 1, - sym_identifier, - ACTIONS(3572), 1, - anon_sym_LPAREN, - ACTIONS(3574), 1, - anon_sym_fn, - ACTIONS(3576), 1, - anon_sym_STAR, - ACTIONS(3578), 1, - anon_sym_struct, - ACTIONS(3588), 1, - anon_sym_shared, - ACTIONS(3590), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(3592), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3594), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3596), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5814), 1, - anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(1331), 1, + STATE(3962), 1, sym_plain_type, - STATE(4328), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1288), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3147), 2, sym_line_comment, sym_block_comment, - STATE(1293), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1303), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283604,50 +283580,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3454), 1, + ACTIONS(3566), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3568), 1, + anon_sym_LPAREN, + ACTIONS(3570), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(3572), 1, + anon_sym_STAR, + ACTIONS(3574), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(3584), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(3586), 1, + anon_sym_map_LBRACK, + ACTIONS(3588), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(3590), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(3592), 1, anon_sym_atomic, - ACTIONS(5786), 1, - anon_sym_LPAREN, - ACTIONS(5788), 1, - anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5730), 1, anon_sym_AMP, - ACTIONS(5798), 1, - anon_sym_map_LBRACK, - STATE(1161), 1, + STATE(1381), 1, sym_plain_type, - STATE(4412), 1, + STATE(4323), 1, sym_reference_expression, - STATE(1132), 2, + STATE(1277), 2, sym_type_reference_expression, sym_qualified_type, STATE(3148), 2, sym_line_comment, sym_block_comment, - STATE(1214), 4, + STATE(1296), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1225), 12, + STATE(1299), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283665,50 +283641,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3953), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(3955), 1, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_fn, - ACTIONS(3957), 1, + ACTIONS(4539), 1, anon_sym_STAR, - ACTIONS(3967), 1, + ACTIONS(4541), 1, + anon_sym_struct, + ACTIONS(4551), 1, anon_sym_shared, - ACTIONS(3969), 1, + ACTIONS(4553), 1, anon_sym_map_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4555), 1, anon_sym_chan, - ACTIONS(3973), 1, + ACTIONS(4557), 1, anon_sym_thread, - ACTIONS(3975), 1, + ACTIONS(4559), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5778), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5780), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5782), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5784), 1, anon_sym_AMP, - STATE(2320), 1, + STATE(2665), 1, sym_plain_type, - STATE(4498), 1, + STATE(4316), 1, sym_reference_expression, - STATE(2283), 2, + STATE(2611), 2, sym_type_reference_expression, sym_qualified_type, STATE(3149), 2, sym_line_comment, sym_block_comment, - STATE(2360), 4, + STATE(2692), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2693), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283726,19 +283702,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3454), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(593), 1, anon_sym_atomic, ACTIONS(5786), 1, anon_sym_LPAREN, @@ -283754,22 +283730,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(5798), 1, anon_sym_map_LBRACK, - STATE(1219), 1, + STATE(335), 1, sym_plain_type, - STATE(4412), 1, + STATE(4392), 1, sym_reference_expression, - STATE(1132), 2, + STATE(267), 2, sym_type_reference_expression, sym_qualified_type, STATE(3150), 2, sym_line_comment, sym_block_comment, - STATE(1214), 4, + STATE(359), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1225), 12, + STATE(358), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283787,50 +283763,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3566), 1, sym_identifier, - ACTIONS(3638), 1, - anon_sym_struct, - ACTIONS(5486), 1, + ACTIONS(3568), 1, + anon_sym_LPAREN, + ACTIONS(3570), 1, anon_sym_fn, - ACTIONS(5498), 1, + ACTIONS(3572), 1, + anon_sym_STAR, + ACTIONS(3574), 1, + anon_sym_struct, + ACTIONS(3584), 1, anon_sym_shared, - ACTIONS(5502), 1, + ACTIONS(3586), 1, + anon_sym_map_LBRACK, + ACTIONS(3588), 1, anon_sym_chan, - ACTIONS(5504), 1, + ACTIONS(3590), 1, anon_sym_thread, - ACTIONS(5506), 1, + ACTIONS(3592), 1, anon_sym_atomic, - ACTIONS(5590), 1, - anon_sym_LPAREN, - ACTIONS(5594), 1, - anon_sym_STAR, - ACTIONS(5596), 1, + ACTIONS(5724), 1, anon_sym_QMARK, - ACTIONS(5598), 1, + ACTIONS(5726), 1, anon_sym_BANG, - ACTIONS(5600), 1, + ACTIONS(5728), 1, anon_sym_LBRACK2, - ACTIONS(5602), 1, + ACTIONS(5730), 1, anon_sym_AMP, - ACTIONS(5604), 1, - anon_sym_map_LBRACK, - STATE(1652), 1, + STATE(1380), 1, sym_plain_type, - STATE(4351), 1, + STATE(4323), 1, sym_reference_expression, + STATE(1277), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3151), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1647), 4, + STATE(1296), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(1299), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283848,50 +283824,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3570), 1, - sym_identifier, - ACTIONS(3572), 1, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3574), 1, + ACTIONS(3955), 1, + sym_identifier, + ACTIONS(3957), 1, anon_sym_fn, - ACTIONS(3576), 1, + ACTIONS(3959), 1, anon_sym_STAR, - ACTIONS(3578), 1, - anon_sym_struct, - ACTIONS(3588), 1, + ACTIONS(3969), 1, anon_sym_shared, - ACTIONS(3590), 1, + ACTIONS(3971), 1, anon_sym_map_LBRACK, - ACTIONS(3592), 1, + ACTIONS(3973), 1, anon_sym_chan, - ACTIONS(3594), 1, + ACTIONS(3975), 1, anon_sym_thread, - ACTIONS(3596), 1, + ACTIONS(3977), 1, anon_sym_atomic, - ACTIONS(5814), 1, + ACTIONS(5770), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5772), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5774), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5776), 1, anon_sym_AMP, - STATE(1317), 1, + STATE(2353), 1, sym_plain_type, - STATE(4328), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1288), 2, + STATE(2284), 2, sym_type_reference_expression, sym_qualified_type, STATE(3152), 2, sym_line_comment, sym_block_comment, - STATE(1293), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1303), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283909,50 +283885,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3953), 1, - sym_identifier, - ACTIONS(3955), 1, - anon_sym_fn, - ACTIONS(3957), 1, - anon_sym_STAR, - ACTIONS(3967), 1, - anon_sym_shared, - ACTIONS(3969), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(3971), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3973), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3975), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5724), 1, - anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(2548), 1, - sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2283), 2, - sym_type_reference_expression, - sym_qualified_type, + STATE(4581), 1, + sym_plain_type, STATE(3153), 2, sym_line_comment, sym_block_comment, - STATE(2360), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283970,50 +283946,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3570), 1, + ACTIONS(3924), 1, sym_identifier, - ACTIONS(3572), 1, - anon_sym_LPAREN, - ACTIONS(3574), 1, + ACTIONS(3928), 1, anon_sym_fn, - ACTIONS(3576), 1, - anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3932), 1, anon_sym_struct, - ACTIONS(3588), 1, + ACTIONS(3942), 1, anon_sym_shared, - ACTIONS(3590), 1, - anon_sym_map_LBRACK, - ACTIONS(3592), 1, + ACTIONS(3946), 1, anon_sym_chan, - ACTIONS(3594), 1, + ACTIONS(3948), 1, anon_sym_thread, - ACTIONS(3596), 1, + ACTIONS(3950), 1, anon_sym_atomic, - ACTIONS(5814), 1, + ACTIONS(5732), 1, + anon_sym_LPAREN, + ACTIONS(5734), 1, + anon_sym_STAR, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5742), 1, anon_sym_AMP, - STATE(1350), 1, + ACTIONS(5744), 1, + anon_sym_map_LBRACK, + STATE(2191), 1, sym_plain_type, - STATE(4328), 1, + STATE(4466), 1, sym_reference_expression, - STATE(1288), 2, + STATE(2130), 2, sym_type_reference_expression, sym_qualified_type, STATE(3154), 2, sym_line_comment, sym_block_comment, - STATE(1293), 4, + STATE(2178), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1303), 12, + STATE(2179), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284031,50 +284007,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3570), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3572), 1, - anon_sym_LPAREN, - ACTIONS(3574), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3576), 1, - anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3588), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3590), 1, - anon_sym_map_LBRACK, - ACTIONS(3592), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3594), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3596), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5814), 1, + ACTIONS(5786), 1, + anon_sym_LPAREN, + ACTIONS(5788), 1, + anon_sym_STAR, + ACTIONS(5790), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5796), 1, anon_sym_AMP, - STATE(1330), 1, + ACTIONS(5798), 1, + anon_sym_map_LBRACK, + STATE(458), 1, sym_plain_type, - STATE(4328), 1, + STATE(4392), 1, sym_reference_expression, - STATE(1288), 2, + STATE(267), 2, sym_type_reference_expression, sym_qualified_type, STATE(3155), 2, sym_line_comment, sym_block_comment, - STATE(1293), 4, + STATE(359), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1303), 12, + STATE(358), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284092,50 +284068,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(587), 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(605), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(611), 1, - anon_sym_chan, - ACTIONS(613), 1, - anon_sym_thread, - ACTIONS(615), 1, - anon_sym_atomic, - ACTIONS(5668), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5670), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5672), 1, - anon_sym_QMARK, - ACTIONS(5674), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5676), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5678), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5680), 1, - anon_sym_map_LBRACK, - STATE(342), 1, + STATE(3879), 1, sym_plain_type, - STATE(4403), 1, + STATE(4423), 1, sym_reference_expression, - STATE(244), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3156), 2, sym_line_comment, sym_block_comment, - STATE(387), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(388), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284153,50 +284129,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3570), 1, - sym_identifier, - ACTIONS(3572), 1, - anon_sym_LPAREN, - ACTIONS(3574), 1, - anon_sym_fn, - ACTIONS(3576), 1, - anon_sym_STAR, - ACTIONS(3578), 1, - anon_sym_struct, - ACTIONS(3588), 1, - anon_sym_shared, - ACTIONS(3590), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(3592), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3594), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3596), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5814), 1, - anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_STAR, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(1335), 1, + STATE(2385), 1, sym_plain_type, - STATE(4328), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1288), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3157), 2, sym_line_comment, sym_block_comment, - STATE(1293), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1303), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284214,50 +284190,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3698), 1, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3702), 1, + ACTIONS(3957), 1, anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_struct, - ACTIONS(3716), 1, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3969), 1, anon_sym_shared, - ACTIONS(3720), 1, + ACTIONS(3971), 1, + anon_sym_map_LBRACK, + ACTIONS(3973), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3975), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3977), 1, anon_sym_atomic, - ACTIONS(5682), 1, - anon_sym_LPAREN, - ACTIONS(5684), 1, - anon_sym_STAR, - ACTIONS(5686), 1, + ACTIONS(5770), 1, anon_sym_QMARK, - ACTIONS(5688), 1, + ACTIONS(5772), 1, anon_sym_BANG, - ACTIONS(5690), 1, + ACTIONS(5774), 1, anon_sym_LBRACK2, - ACTIONS(5692), 1, + ACTIONS(5776), 1, anon_sym_AMP, - ACTIONS(5694), 1, - anon_sym_map_LBRACK, - STATE(1873), 1, + STATE(2394), 1, sym_plain_type, - STATE(4454), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1751), 2, + STATE(2284), 2, sym_type_reference_expression, sym_qualified_type, STATE(3158), 2, sym_line_comment, sym_block_comment, - STATE(1842), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1841), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284275,50 +284251,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3454), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3458), 1, - anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(5490), 1, + anon_sym_fn, + ACTIONS(5502), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(5506), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(5508), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(5510), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5582), 1, anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5584), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5586), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5588), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5798), 1, + ACTIONS(5592), 1, anon_sym_map_LBRACK, - STATE(1230), 1, + STATE(1630), 1, sym_plain_type, - STATE(4412), 1, + STATE(4356), 1, sym_reference_expression, - STATE(1132), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3159), 2, sym_line_comment, sym_block_comment, - STATE(1214), 4, + STATE(3302), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1225), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284336,50 +284312,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - sym_identifier, - ACTIONS(3638), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(5486), 1, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, + sym_identifier, + ACTIONS(3957), 1, anon_sym_fn, - ACTIONS(5498), 1, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3969), 1, anon_sym_shared, - ACTIONS(5502), 1, + ACTIONS(3971), 1, + anon_sym_map_LBRACK, + ACTIONS(3973), 1, anon_sym_chan, - ACTIONS(5504), 1, + ACTIONS(3975), 1, anon_sym_thread, - ACTIONS(5506), 1, + ACTIONS(3977), 1, anon_sym_atomic, - ACTIONS(5590), 1, - anon_sym_LPAREN, - ACTIONS(5594), 1, - anon_sym_STAR, - ACTIONS(5596), 1, + ACTIONS(5770), 1, anon_sym_QMARK, - ACTIONS(5598), 1, + ACTIONS(5772), 1, anon_sym_BANG, - ACTIONS(5600), 1, + ACTIONS(5774), 1, anon_sym_LBRACK2, - ACTIONS(5602), 1, + ACTIONS(5776), 1, anon_sym_AMP, - ACTIONS(5604), 1, - anon_sym_map_LBRACK, - STATE(1637), 1, + STATE(2814), 1, sym_plain_type, - STATE(4351), 1, + STATE(4423), 1, sym_reference_expression, + STATE(2284), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3160), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1647), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284397,50 +284373,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3953), 1, + ACTIONS(3606), 1, sym_identifier, - ACTIONS(3955), 1, + ACTIONS(3610), 1, anon_sym_fn, - ACTIONS(3957), 1, - anon_sym_STAR, - ACTIONS(3967), 1, + ACTIONS(3614), 1, + anon_sym_struct, + ACTIONS(3624), 1, anon_sym_shared, - ACTIONS(3969), 1, - anon_sym_map_LBRACK, - ACTIONS(3971), 1, + ACTIONS(3628), 1, anon_sym_chan, - ACTIONS(3973), 1, + ACTIONS(3630), 1, anon_sym_thread, - ACTIONS(3975), 1, + ACTIONS(3632), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5594), 1, + anon_sym_LPAREN, + ACTIONS(5598), 1, + anon_sym_STAR, + ACTIONS(5600), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5602), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5604), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5606), 1, anon_sym_AMP, - STATE(2321), 1, + ACTIONS(5608), 1, + anon_sym_map_LBRACK, + STATE(1470), 1, sym_plain_type, - STATE(4498), 1, + STATE(4472), 1, sym_reference_expression, - STATE(2283), 2, + STATE(1404), 2, sym_type_reference_expression, sym_qualified_type, STATE(3161), 2, sym_line_comment, sym_block_comment, - STATE(2360), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1440), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284458,50 +284434,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3698), 1, + ACTIONS(1191), 1, sym_identifier, - ACTIONS(3702), 1, + ACTIONS(1195), 1, anon_sym_fn, - ACTIONS(3706), 1, + ACTIONS(1199), 1, anon_sym_struct, - ACTIONS(3716), 1, + ACTIONS(1209), 1, anon_sym_shared, - ACTIONS(3720), 1, + ACTIONS(1213), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(1215), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(1217), 1, anon_sym_atomic, - ACTIONS(5682), 1, + ACTIONS(5800), 1, anon_sym_LPAREN, - ACTIONS(5684), 1, + ACTIONS(5802), 1, anon_sym_STAR, - ACTIONS(5686), 1, + ACTIONS(5804), 1, anon_sym_QMARK, - ACTIONS(5688), 1, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5690), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5692), 1, + ACTIONS(5810), 1, anon_sym_AMP, - ACTIONS(5694), 1, + ACTIONS(5812), 1, anon_sym_map_LBRACK, - STATE(1879), 1, + STATE(1013), 1, sym_plain_type, - STATE(4454), 1, + STATE(4344), 1, sym_reference_expression, - STATE(1751), 2, + STATE(989), 2, sym_type_reference_expression, sym_qualified_type, STATE(3162), 2, sym_line_comment, sym_block_comment, - STATE(1842), 4, + STATE(1091), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1841), 12, + STATE(1089), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284519,50 +284495,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3797), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3799), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3805), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3815), 1, anon_sym_shared, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3817), 1, + anon_sym_map_LBRACK, + ACTIONS(3819), 1, + anon_sym_chan, + ACTIONS(3821), 1, + anon_sym_thread, + ACTIONS(3823), 1, + anon_sym_atomic, + ACTIONS(5760), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5762), 1, + anon_sym_QMARK, + ACTIONS(5764), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5766), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5768), 1, anon_sym_AMP, - STATE(4368), 1, + STATE(2102), 1, sym_plain_type, - STATE(4498), 1, + STATE(4365), 1, sym_reference_expression, + STATE(1904), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3163), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1978), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1980), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284580,50 +284556,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3454), 1, + ACTIONS(3606), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3610), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(3614), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(3624), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(3628), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(3630), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(3632), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5598), 1, anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5600), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5602), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5604), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5798), 1, + ACTIONS(5608), 1, anon_sym_map_LBRACK, - STATE(1179), 1, + STATE(1466), 1, sym_plain_type, - STATE(4412), 1, + STATE(4472), 1, sym_reference_expression, - STATE(1132), 2, + STATE(1404), 2, sym_type_reference_expression, sym_qualified_type, STATE(3164), 2, sym_line_comment, sym_block_comment, - STATE(1214), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1225), 12, + STATE(1440), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284641,50 +284617,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3606), 1, sym_identifier, - ACTIONS(3638), 1, - anon_sym_struct, - ACTIONS(5486), 1, + ACTIONS(3610), 1, anon_sym_fn, - ACTIONS(5498), 1, + ACTIONS(3614), 1, + anon_sym_struct, + ACTIONS(3624), 1, anon_sym_shared, - ACTIONS(5502), 1, + ACTIONS(3628), 1, anon_sym_chan, - ACTIONS(5504), 1, + ACTIONS(3630), 1, anon_sym_thread, - ACTIONS(5506), 1, + ACTIONS(3632), 1, anon_sym_atomic, - ACTIONS(5590), 1, - anon_sym_LPAREN, ACTIONS(5594), 1, + anon_sym_LPAREN, + ACTIONS(5598), 1, anon_sym_STAR, - ACTIONS(5596), 1, + ACTIONS(5600), 1, anon_sym_QMARK, - ACTIONS(5598), 1, + ACTIONS(5602), 1, anon_sym_BANG, - ACTIONS(5600), 1, + ACTIONS(5604), 1, anon_sym_LBRACK2, - ACTIONS(5602), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5604), 1, + ACTIONS(5608), 1, anon_sym_map_LBRACK, - STATE(1627), 1, + STATE(1455), 1, sym_plain_type, - STATE(4351), 1, + STATE(4472), 1, sym_reference_expression, + STATE(1404), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3165), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1647), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(1440), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284702,50 +284678,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(1191), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(1195), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(1199), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(1209), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(1213), 1, + anon_sym_chan, + ACTIONS(1215), 1, + anon_sym_thread, + ACTIONS(1217), 1, + anon_sym_atomic, + ACTIONS(5800), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5802), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5804), 1, + anon_sym_QMARK, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5810), 1, anon_sym_AMP, - STATE(2336), 1, + ACTIONS(5812), 1, + anon_sym_map_LBRACK, + STATE(1009), 1, sym_plain_type, - STATE(4498), 1, + STATE(4344), 1, sym_reference_expression, + STATE(989), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3166), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1091), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1089), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284765,48 +284741,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(3969), 1, + STATE(3912), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(3167), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284824,50 +284800,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3758), 1, - sym_identifier, - ACTIONS(3760), 1, - anon_sym_LPAREN, - ACTIONS(3762), 1, - anon_sym_fn, - ACTIONS(3766), 1, - anon_sym_struct, - ACTIONS(3776), 1, - anon_sym_shared, - ACTIONS(3778), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(3780), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3782), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3784), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5732), 1, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5734), 1, - anon_sym_QMARK, - ACTIONS(5736), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5738), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5740), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(1914), 1, - sym_plain_type, - STATE(4433), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1899), 2, - sym_type_reference_expression, - sym_qualified_type, + STATE(4501), 1, + sym_plain_type, STATE(3168), 2, sym_line_comment, sym_block_comment, - STATE(2006), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2005), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284885,50 +284861,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1199), 1, + ACTIONS(4072), 1, anon_sym_fn, - ACTIONS(1203), 1, + ACTIONS(4076), 1, anon_sym_struct, - ACTIONS(1213), 1, + ACTIONS(4086), 1, anon_sym_shared, - ACTIONS(1217), 1, + ACTIONS(4090), 1, anon_sym_chan, - ACTIONS(1219), 1, + ACTIONS(4092), 1, anon_sym_thread, - ACTIONS(1221), 1, + ACTIONS(4094), 1, anon_sym_atomic, - ACTIONS(5742), 1, + ACTIONS(5746), 1, anon_sym_LPAREN, - ACTIONS(5744), 1, + ACTIONS(5748), 1, anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5750), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5752), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5754), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5756), 1, anon_sym_AMP, - ACTIONS(5754), 1, + ACTIONS(5758), 1, anon_sym_map_LBRACK, - STATE(1015), 1, + STATE(2596), 1, sym_plain_type, - STATE(4349), 1, + STATE(4386), 1, sym_reference_expression, - STATE(985), 2, + STATE(2419), 2, sym_type_reference_expression, sym_qualified_type, STATE(3169), 2, sym_line_comment, sym_block_comment, - STATE(1066), 4, + STATE(2533), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1030), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284946,50 +284922,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 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(605), 1, sym_identifier, - ACTIONS(1199), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(1203), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(1213), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(1217), 1, - anon_sym_chan, - ACTIONS(1219), 1, - anon_sym_thread, - ACTIONS(1221), 1, - anon_sym_atomic, - ACTIONS(5742), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5744), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5754), 1, - anon_sym_map_LBRACK, - STATE(1020), 1, + STATE(3829), 1, sym_plain_type, - STATE(4349), 1, + STATE(4423), 1, sym_reference_expression, - STATE(985), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3170), 2, sym_line_comment, sym_block_comment, - STATE(1066), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1030), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285007,50 +284983,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(4533), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(4539), 1, + anon_sym_STAR, + ACTIONS(4541), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(4551), 1, anon_sym_shared, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(4553), 1, + anon_sym_map_LBRACK, + ACTIONS(4555), 1, + anon_sym_chan, + ACTIONS(4557), 1, + anon_sym_thread, + ACTIONS(4559), 1, + anon_sym_atomic, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5782), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5784), 1, anon_sym_AMP, - STATE(4380), 1, + STATE(2657), 1, sym_plain_type, - STATE(4498), 1, + STATE(4316), 1, sym_reference_expression, + STATE(2611), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3171), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(2692), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2693), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285068,50 +285044,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3789), 1, + ACTIONS(3634), 1, sym_identifier, - ACTIONS(3791), 1, - anon_sym_LPAREN, - ACTIONS(3793), 1, + ACTIONS(3638), 1, anon_sym_fn, - ACTIONS(3797), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(3807), 1, + ACTIONS(3652), 1, anon_sym_shared, - ACTIONS(3809), 1, - anon_sym_map_LBRACK, - ACTIONS(3811), 1, + ACTIONS(3656), 1, anon_sym_chan, - ACTIONS(3813), 1, + ACTIONS(3658), 1, anon_sym_thread, - ACTIONS(3815), 1, + ACTIONS(3660), 1, anon_sym_atomic, - ACTIONS(5764), 1, + ACTIONS(5578), 1, + anon_sym_LPAREN, + ACTIONS(5814), 1, anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5816), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5818), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5820), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5822), 1, anon_sym_AMP, - STATE(2095), 1, + ACTIONS(5824), 1, + anon_sym_map_LBRACK, + STATE(1647), 1, sym_plain_type, - STATE(4370), 1, + STATE(4375), 1, sym_reference_expression, - STATE(1909), 2, + STATE(1659), 2, sym_type_reference_expression, sym_qualified_type, STATE(3172), 2, sym_line_comment, sym_block_comment, - STATE(1945), 4, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1949), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285129,50 +285105,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3454), 1, + ACTIONS(3634), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3638), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(3652), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(3656), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(3658), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(3660), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5814), 1, anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5816), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5818), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5820), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5822), 1, anon_sym_AMP, - ACTIONS(5798), 1, + ACTIONS(5824), 1, anon_sym_map_LBRACK, - STATE(1177), 1, + STATE(1646), 1, sym_plain_type, - STATE(4412), 1, + STATE(4375), 1, sym_reference_expression, - STATE(1132), 2, + STATE(1659), 2, sym_type_reference_expression, sym_qualified_type, STATE(3173), 2, sym_line_comment, sym_block_comment, - STATE(1214), 4, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1225), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285190,50 +285166,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3698), 1, + ACTIONS(3634), 1, sym_identifier, - ACTIONS(3702), 1, + ACTIONS(3638), 1, anon_sym_fn, - ACTIONS(3706), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(3716), 1, + ACTIONS(3652), 1, anon_sym_shared, - ACTIONS(3720), 1, + ACTIONS(3656), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3658), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3660), 1, anon_sym_atomic, - ACTIONS(5682), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5684), 1, + ACTIONS(5814), 1, anon_sym_STAR, - ACTIONS(5686), 1, + ACTIONS(5816), 1, anon_sym_QMARK, - ACTIONS(5688), 1, + ACTIONS(5818), 1, anon_sym_BANG, - ACTIONS(5690), 1, + ACTIONS(5820), 1, anon_sym_LBRACK2, - ACTIONS(5692), 1, + ACTIONS(5822), 1, anon_sym_AMP, - ACTIONS(5694), 1, + ACTIONS(5824), 1, anon_sym_map_LBRACK, - STATE(1812), 1, + STATE(1645), 1, sym_plain_type, - STATE(4454), 1, + STATE(4375), 1, sym_reference_expression, - STATE(1751), 2, + STATE(1659), 2, sym_type_reference_expression, sym_qualified_type, STATE(3174), 2, sym_line_comment, sym_block_comment, - STATE(1842), 4, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1841), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285251,50 +285227,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4114), 1, + ACTIONS(3634), 1, sym_identifier, - ACTIONS(4118), 1, + ACTIONS(3638), 1, anon_sym_fn, - ACTIONS(4122), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(4132), 1, + ACTIONS(3652), 1, anon_sym_shared, - ACTIONS(4136), 1, + ACTIONS(3656), 1, anon_sym_chan, - ACTIONS(4138), 1, + ACTIONS(3658), 1, anon_sym_thread, - ACTIONS(4140), 1, + ACTIONS(3660), 1, anon_sym_atomic, - ACTIONS(5696), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(5814), 1, anon_sym_STAR, - ACTIONS(5700), 1, + ACTIONS(5816), 1, anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5818), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5820), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5822), 1, anon_sym_AMP, - ACTIONS(5708), 1, + ACTIONS(5824), 1, anon_sym_map_LBRACK, - STATE(2601), 1, + STATE(1638), 1, sym_plain_type, - STATE(4391), 1, + STATE(4375), 1, sym_reference_expression, - STATE(2446), 2, + STATE(1659), 2, sym_type_reference_expression, sym_qualified_type, STATE(3175), 2, sym_line_comment, sym_block_comment, - STATE(2471), 4, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2472), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285312,50 +285288,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4114), 1, + ACTIONS(3634), 1, sym_identifier, - ACTIONS(4118), 1, + ACTIONS(3638), 1, anon_sym_fn, - ACTIONS(4122), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(4132), 1, + ACTIONS(3652), 1, anon_sym_shared, - ACTIONS(4136), 1, + ACTIONS(3656), 1, anon_sym_chan, - ACTIONS(4138), 1, + ACTIONS(3658), 1, anon_sym_thread, - ACTIONS(4140), 1, + ACTIONS(3660), 1, anon_sym_atomic, - ACTIONS(5696), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(5814), 1, anon_sym_STAR, - ACTIONS(5700), 1, + ACTIONS(5816), 1, anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5818), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5820), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5822), 1, anon_sym_AMP, - ACTIONS(5708), 1, + ACTIONS(5824), 1, anon_sym_map_LBRACK, - STATE(2498), 1, + STATE(1635), 1, sym_plain_type, - STATE(4391), 1, + STATE(4375), 1, sym_reference_expression, - STATE(2446), 2, + STATE(1659), 2, sym_type_reference_expression, sym_qualified_type, STATE(3176), 2, sym_line_comment, sym_block_comment, - STATE(2471), 4, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2472), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285373,50 +285349,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 1, + ACTIONS(3606), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(3610), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(3614), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(3624), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(3628), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(3630), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(3632), 1, anon_sym_atomic, - ACTIONS(5590), 1, + ACTIONS(5594), 1, anon_sym_LPAREN, - ACTIONS(5774), 1, + ACTIONS(5598), 1, anon_sym_STAR, - ACTIONS(5776), 1, + ACTIONS(5600), 1, anon_sym_QMARK, - ACTIONS(5778), 1, + ACTIONS(5602), 1, anon_sym_BANG, - ACTIONS(5780), 1, + ACTIONS(5604), 1, anon_sym_LBRACK2, - ACTIONS(5782), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5784), 1, + ACTIONS(5608), 1, anon_sym_map_LBRACK, - STATE(1673), 1, + STATE(1465), 1, sym_plain_type, - STATE(4378), 1, + STATE(4472), 1, sym_reference_expression, - STATE(1631), 2, + STATE(1404), 2, sym_type_reference_expression, sym_qualified_type, STATE(3177), 2, sym_line_comment, sym_block_comment, - STATE(1647), 4, + STATE(1437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(1440), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285434,50 +285410,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4114), 1, + ACTIONS(3634), 1, sym_identifier, - ACTIONS(4118), 1, + ACTIONS(3638), 1, anon_sym_fn, - ACTIONS(4122), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(4132), 1, + ACTIONS(3652), 1, anon_sym_shared, - ACTIONS(4136), 1, + ACTIONS(3656), 1, anon_sym_chan, - ACTIONS(4138), 1, + ACTIONS(3658), 1, anon_sym_thread, - ACTIONS(4140), 1, + ACTIONS(3660), 1, anon_sym_atomic, - ACTIONS(5696), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(5814), 1, anon_sym_STAR, - ACTIONS(5700), 1, + ACTIONS(5816), 1, anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5818), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5820), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5822), 1, anon_sym_AMP, - ACTIONS(5708), 1, + ACTIONS(5824), 1, anon_sym_map_LBRACK, - STATE(2509), 1, + STATE(1628), 1, sym_plain_type, - STATE(4391), 1, + STATE(4375), 1, sym_reference_expression, - STATE(2446), 2, + STATE(1659), 2, sym_type_reference_expression, sym_qualified_type, STATE(3178), 2, sym_line_comment, sym_block_comment, - STATE(2471), 4, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2472), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285495,50 +285471,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4114), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(4118), 1, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3752), 1, anon_sym_fn, - ACTIONS(4122), 1, + ACTIONS(3756), 1, anon_sym_struct, - ACTIONS(4132), 1, + ACTIONS(3766), 1, anon_sym_shared, - ACTIONS(4136), 1, + ACTIONS(3768), 1, + anon_sym_map_LBRACK, + ACTIONS(3770), 1, anon_sym_chan, - ACTIONS(4138), 1, + ACTIONS(3772), 1, anon_sym_thread, - ACTIONS(4140), 1, + ACTIONS(3774), 1, anon_sym_atomic, - ACTIONS(5696), 1, - anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5700), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5708), 1, - anon_sym_map_LBRACK, - STATE(2546), 1, + STATE(2015), 1, sym_plain_type, - STATE(4391), 1, + STATE(4428), 1, sym_reference_expression, - STATE(2446), 2, + STATE(1899), 2, sym_type_reference_expression, sym_qualified_type, STATE(3179), 2, sym_line_comment, sym_block_comment, - STATE(2471), 4, + STATE(1918), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2472), 12, + STATE(1996), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285556,50 +285532,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, - anon_sym_LPAREN, - ACTIONS(3793), 1, - anon_sym_fn, - ACTIONS(3797), 1, - anon_sym_struct, - ACTIONS(3807), 1, - anon_sym_shared, - ACTIONS(3809), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(3811), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(3813), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(3815), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5764), 1, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5766), 1, - anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(2032), 1, + STATE(2307), 1, sym_plain_type, - STATE(4370), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1909), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3180), 2, sym_line_comment, sym_block_comment, - STATE(1945), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1949), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285617,50 +285593,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(4072), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(4076), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(4086), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(4090), 1, + anon_sym_chan, + ACTIONS(4092), 1, + anon_sym_thread, + ACTIONS(4094), 1, + anon_sym_atomic, + ACTIONS(5746), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5748), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5750), 1, + anon_sym_QMARK, + ACTIONS(5752), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5754), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5756), 1, anon_sym_AMP, - STATE(4498), 1, - sym_reference_expression, - STATE(4510), 1, + ACTIONS(5758), 1, + anon_sym_map_LBRACK, + STATE(2534), 1, sym_plain_type, + STATE(4386), 1, + sym_reference_expression, + STATE(2419), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3181), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(2533), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285678,50 +285654,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, ACTIONS(565), 1, sym_identifier, ACTIONS(571), 1, anon_sym_fn, ACTIONS(575), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(589), 1, + anon_sym_chan, + ACTIONS(591), 1, + anon_sym_thread, + ACTIONS(593), 1, + anon_sym_atomic, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5790), 1, + anon_sym_QMARK, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5796), 1, anon_sym_AMP, - STATE(4453), 1, + ACTIONS(5798), 1, + anon_sym_map_LBRACK, + STATE(319), 1, sym_plain_type, - STATE(4498), 1, + STATE(4392), 1, sym_reference_expression, + STATE(267), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3182), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(359), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(358), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285739,50 +285715,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3953), 1, + ACTIONS(1191), 1, sym_identifier, - ACTIONS(3955), 1, + ACTIONS(1195), 1, anon_sym_fn, - ACTIONS(3957), 1, - anon_sym_STAR, - ACTIONS(3967), 1, + ACTIONS(1199), 1, + anon_sym_struct, + ACTIONS(1209), 1, anon_sym_shared, - ACTIONS(3969), 1, - anon_sym_map_LBRACK, - ACTIONS(3971), 1, + ACTIONS(1213), 1, anon_sym_chan, - ACTIONS(3973), 1, + ACTIONS(1215), 1, anon_sym_thread, - ACTIONS(3975), 1, + ACTIONS(1217), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5800), 1, + anon_sym_LPAREN, + ACTIONS(5802), 1, + anon_sym_STAR, + ACTIONS(5804), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5810), 1, anon_sym_AMP, - STATE(2330), 1, + ACTIONS(5812), 1, + anon_sym_map_LBRACK, + STATE(1072), 1, sym_plain_type, - STATE(4498), 1, + STATE(4344), 1, sym_reference_expression, - STATE(2283), 2, + STATE(989), 2, sym_type_reference_expression, sym_qualified_type, STATE(3183), 2, sym_line_comment, sym_block_comment, - STATE(2360), 4, + STATE(1091), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1089), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285800,50 +285776,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3953), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3955), 1, + ACTIONS(4072), 1, anon_sym_fn, - ACTIONS(3957), 1, - anon_sym_STAR, - ACTIONS(3967), 1, + ACTIONS(4076), 1, + anon_sym_struct, + ACTIONS(4086), 1, anon_sym_shared, - ACTIONS(3969), 1, - anon_sym_map_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4090), 1, anon_sym_chan, - ACTIONS(3973), 1, + ACTIONS(4092), 1, anon_sym_thread, - ACTIONS(3975), 1, + ACTIONS(4094), 1, anon_sym_atomic, - ACTIONS(5724), 1, + ACTIONS(5746), 1, + anon_sym_LPAREN, + ACTIONS(5748), 1, + anon_sym_STAR, + ACTIONS(5750), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5752), 1, anon_sym_BANG, - ACTIONS(5728), 1, + ACTIONS(5754), 1, anon_sym_LBRACK2, - ACTIONS(5730), 1, + ACTIONS(5756), 1, anon_sym_AMP, - STATE(2344), 1, + ACTIONS(5758), 1, + anon_sym_map_LBRACK, + STATE(2495), 1, sym_plain_type, - STATE(4498), 1, + STATE(4386), 1, sym_reference_expression, - STATE(2283), 2, + STATE(2419), 2, sym_type_reference_expression, sym_qualified_type, STATE(3184), 2, sym_line_comment, sym_block_comment, - STATE(2360), 4, + STATE(2533), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285861,50 +285837,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(3606), 1, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3752), 1, anon_sym_fn, - ACTIONS(3610), 1, + ACTIONS(3756), 1, anon_sym_struct, - ACTIONS(3620), 1, + ACTIONS(3766), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3768), 1, + anon_sym_map_LBRACK, + ACTIONS(3770), 1, anon_sym_chan, - ACTIONS(3626), 1, + ACTIONS(3772), 1, anon_sym_thread, - ACTIONS(3628), 1, + ACTIONS(3774), 1, anon_sym_atomic, - ACTIONS(5574), 1, - anon_sym_LPAREN, - ACTIONS(5578), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5580), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5582), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5584), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5586), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5588), 1, - anon_sym_map_LBRACK, - STATE(1473), 1, + STATE(1967), 1, sym_plain_type, - STATE(4496), 1, + STATE(4428), 1, sym_reference_expression, - STATE(1401), 2, + STATE(1899), 2, sym_type_reference_expression, sym_qualified_type, STATE(3185), 2, sym_line_comment, sym_block_comment, - STATE(1444), 4, + STATE(1918), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1445), 12, + STATE(1996), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285922,50 +285898,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1199), 1, + ACTIONS(4072), 1, anon_sym_fn, - ACTIONS(1203), 1, + ACTIONS(4076), 1, anon_sym_struct, - ACTIONS(1213), 1, + ACTIONS(4086), 1, anon_sym_shared, - ACTIONS(1217), 1, + ACTIONS(4090), 1, anon_sym_chan, - ACTIONS(1219), 1, + ACTIONS(4092), 1, anon_sym_thread, - ACTIONS(1221), 1, + ACTIONS(4094), 1, anon_sym_atomic, - ACTIONS(5742), 1, + ACTIONS(5746), 1, anon_sym_LPAREN, - ACTIONS(5744), 1, + ACTIONS(5748), 1, anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5750), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5752), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5754), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5756), 1, anon_sym_AMP, - ACTIONS(5754), 1, + ACTIONS(5758), 1, anon_sym_map_LBRACK, - STATE(1052), 1, + STATE(2482), 1, sym_plain_type, - STATE(4349), 1, + STATE(4386), 1, sym_reference_expression, - STATE(985), 2, + STATE(2419), 2, sym_type_reference_expression, sym_qualified_type, STATE(3186), 2, sym_line_comment, sym_block_comment, - STATE(1066), 4, + STATE(2533), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1030), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285985,48 +285961,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(3759), 1, + STATE(4376), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(3187), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286044,50 +286020,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(587), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3752), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3756), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3766), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3768), 1, + anon_sym_map_LBRACK, + ACTIONS(3770), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(3772), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(3774), 1, anon_sym_atomic, - ACTIONS(5668), 1, - anon_sym_LPAREN, - ACTIONS(5670), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5672), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5674), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5676), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5678), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5680), 1, - anon_sym_map_LBRACK, - STATE(430), 1, + STATE(1968), 1, sym_plain_type, - STATE(4403), 1, + STATE(4428), 1, sym_reference_expression, - STATE(244), 2, + STATE(1899), 2, sym_type_reference_expression, sym_qualified_type, STATE(3188), 2, sym_line_comment, sym_block_comment, - STATE(387), 4, + STATE(1918), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(388), 12, + STATE(1996), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286105,50 +286081,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 1, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(3606), 1, + ACTIONS(3464), 1, anon_sym_fn, - ACTIONS(3610), 1, + ACTIONS(3468), 1, anon_sym_struct, - ACTIONS(3620), 1, + ACTIONS(3478), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3482), 1, anon_sym_chan, - ACTIONS(3626), 1, + ACTIONS(3484), 1, anon_sym_thread, - ACTIONS(3628), 1, + ACTIONS(3486), 1, anon_sym_atomic, - ACTIONS(5574), 1, + ACTIONS(5686), 1, anon_sym_LPAREN, - ACTIONS(5578), 1, + ACTIONS(5688), 1, anon_sym_STAR, - ACTIONS(5580), 1, + ACTIONS(5690), 1, anon_sym_QMARK, - ACTIONS(5582), 1, + ACTIONS(5692), 1, anon_sym_BANG, - ACTIONS(5584), 1, + ACTIONS(5694), 1, anon_sym_LBRACK2, - ACTIONS(5586), 1, + ACTIONS(5696), 1, anon_sym_AMP, - ACTIONS(5588), 1, + ACTIONS(5698), 1, anon_sym_map_LBRACK, - STATE(1471), 1, + STATE(1147), 1, sym_plain_type, - STATE(4496), 1, + STATE(4407), 1, sym_reference_expression, - STATE(1401), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, STATE(3189), 2, sym_line_comment, sym_block_comment, - STATE(1444), 4, + STATE(1171), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1445), 12, + STATE(1169), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286166,50 +286142,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3602), 1, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(3606), 1, + ACTIONS(3464), 1, anon_sym_fn, - ACTIONS(3610), 1, + ACTIONS(3468), 1, anon_sym_struct, - ACTIONS(3620), 1, + ACTIONS(3478), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3482), 1, anon_sym_chan, - ACTIONS(3626), 1, + ACTIONS(3484), 1, anon_sym_thread, - ACTIONS(3628), 1, + ACTIONS(3486), 1, anon_sym_atomic, - ACTIONS(5574), 1, + ACTIONS(5686), 1, anon_sym_LPAREN, - ACTIONS(5578), 1, + ACTIONS(5688), 1, anon_sym_STAR, - ACTIONS(5580), 1, + ACTIONS(5690), 1, anon_sym_QMARK, - ACTIONS(5582), 1, + ACTIONS(5692), 1, anon_sym_BANG, - ACTIONS(5584), 1, + ACTIONS(5694), 1, anon_sym_LBRACK2, - ACTIONS(5586), 1, + ACTIONS(5696), 1, anon_sym_AMP, - ACTIONS(5588), 1, + ACTIONS(5698), 1, anon_sym_map_LBRACK, - STATE(1466), 1, + STATE(1142), 1, sym_plain_type, - STATE(4496), 1, + STATE(4407), 1, sym_reference_expression, - STATE(1401), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, STATE(3190), 2, sym_line_comment, sym_block_comment, - STATE(1444), 4, + STATE(1171), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1445), 12, + STATE(1169), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286227,50 +286203,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, + ACTIONS(3634), 1, sym_identifier, - ACTIONS(1199), 1, + ACTIONS(3638), 1, anon_sym_fn, - ACTIONS(1203), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(1213), 1, + ACTIONS(3652), 1, anon_sym_shared, - ACTIONS(1217), 1, + ACTIONS(3656), 1, anon_sym_chan, - ACTIONS(1219), 1, + ACTIONS(3658), 1, anon_sym_thread, - ACTIONS(1221), 1, + ACTIONS(3660), 1, anon_sym_atomic, - ACTIONS(5742), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5744), 1, + ACTIONS(5814), 1, anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5816), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5818), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5820), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5822), 1, anon_sym_AMP, - ACTIONS(5754), 1, + ACTIONS(5824), 1, anon_sym_map_LBRACK, - STATE(1055), 1, + STATE(1634), 1, sym_plain_type, - STATE(4349), 1, + STATE(4375), 1, sym_reference_expression, - STATE(985), 2, + STATE(1659), 2, sym_type_reference_expression, sym_qualified_type, STATE(3191), 2, sym_line_comment, sym_block_comment, - STATE(1066), 4, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1030), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286288,50 +286264,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(1191), 1, sym_identifier, - ACTIONS(3638), 1, - anon_sym_struct, - ACTIONS(5486), 1, + ACTIONS(1195), 1, anon_sym_fn, - ACTIONS(5498), 1, + ACTIONS(1199), 1, + anon_sym_struct, + ACTIONS(1209), 1, anon_sym_shared, - ACTIONS(5502), 1, + ACTIONS(1213), 1, anon_sym_chan, - ACTIONS(5504), 1, + ACTIONS(1215), 1, anon_sym_thread, - ACTIONS(5506), 1, + ACTIONS(1217), 1, anon_sym_atomic, - ACTIONS(5590), 1, + ACTIONS(5800), 1, anon_sym_LPAREN, - ACTIONS(5594), 1, + ACTIONS(5802), 1, anon_sym_STAR, - ACTIONS(5596), 1, + ACTIONS(5804), 1, anon_sym_QMARK, - ACTIONS(5598), 1, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5600), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5602), 1, + ACTIONS(5810), 1, anon_sym_AMP, - ACTIONS(5604), 1, + ACTIONS(5812), 1, anon_sym_map_LBRACK, - STATE(1664), 1, + STATE(1048), 1, sym_plain_type, - STATE(4351), 1, + STATE(4344), 1, sym_reference_expression, + STATE(989), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3192), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1647), 4, + STATE(1091), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(1089), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286349,50 +286325,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 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(605), 1, sym_identifier, - ACTIONS(1199), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(1203), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(1213), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(1217), 1, - anon_sym_chan, - ACTIONS(1219), 1, - anon_sym_thread, - ACTIONS(1221), 1, - anon_sym_atomic, - ACTIONS(5742), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5744), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5754), 1, - anon_sym_map_LBRACK, - STATE(1063), 1, + STATE(3958), 1, sym_plain_type, - STATE(4349), 1, + STATE(4423), 1, sym_reference_expression, - STATE(985), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3193), 2, sym_line_comment, sym_block_comment, - STATE(1066), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1030), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286410,50 +286386,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3789), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(3791), 1, + ACTIONS(3750), 1, anon_sym_LPAREN, - ACTIONS(3793), 1, + ACTIONS(3752), 1, anon_sym_fn, - ACTIONS(3797), 1, + ACTIONS(3756), 1, anon_sym_struct, - ACTIONS(3807), 1, + ACTIONS(3766), 1, anon_sym_shared, - ACTIONS(3809), 1, + ACTIONS(3768), 1, anon_sym_map_LBRACK, - ACTIONS(3811), 1, + ACTIONS(3770), 1, anon_sym_chan, - ACTIONS(3813), 1, + ACTIONS(3772), 1, anon_sym_thread, - ACTIONS(3815), 1, + ACTIONS(3774), 1, anon_sym_atomic, - ACTIONS(5764), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5766), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5768), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5770), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5772), 1, + ACTIONS(5722), 1, anon_sym_AMP, - STATE(1995), 1, + STATE(1971), 1, sym_plain_type, - STATE(4370), 1, + STATE(4428), 1, sym_reference_expression, - STATE(1909), 2, + STATE(1899), 2, sym_type_reference_expression, sym_qualified_type, STATE(3194), 2, sym_line_comment, sym_block_comment, - STATE(1945), 4, + STATE(1918), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1949), 12, + STATE(1996), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286471,50 +286447,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(587), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(593), 1, - anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(5490), 1, + anon_sym_fn, + ACTIONS(5502), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(5506), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(5508), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(5510), 1, anon_sym_atomic, - ACTIONS(5668), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5670), 1, + ACTIONS(5582), 1, anon_sym_STAR, - ACTIONS(5672), 1, + ACTIONS(5584), 1, anon_sym_QMARK, - ACTIONS(5674), 1, + ACTIONS(5586), 1, anon_sym_BANG, - ACTIONS(5676), 1, + ACTIONS(5588), 1, anon_sym_LBRACK2, - ACTIONS(5678), 1, + ACTIONS(5590), 1, anon_sym_AMP, - ACTIONS(5680), 1, + ACTIONS(5592), 1, anon_sym_map_LBRACK, - STATE(500), 1, + STATE(1632), 1, sym_plain_type, - STATE(4403), 1, + STATE(4356), 1, sym_reference_expression, - STATE(244), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3195), 2, sym_line_comment, sym_block_comment, - STATE(387), 4, + STATE(3302), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(388), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286534,48 +286510,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4498), 1, - sym_reference_expression, - STATE(4581), 1, + STATE(3940), 1, sym_plain_type, + STATE(4423), 1, + sym_reference_expression, STATE(3196), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286593,50 +286569,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4114), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(4118), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(4122), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(4132), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(4136), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(4138), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(4140), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5696), 1, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5700), 1, + ACTIONS(5790), 1, anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5796), 1, anon_sym_AMP, - ACTIONS(5708), 1, + ACTIONS(5798), 1, anon_sym_map_LBRACK, - STATE(2456), 1, + STATE(347), 1, sym_plain_type, - STATE(4391), 1, + STATE(4392), 1, sym_reference_expression, - STATE(2446), 2, + STATE(267), 2, sym_type_reference_expression, sym_qualified_type, STATE(3197), 2, sym_line_comment, sym_block_comment, - STATE(2471), 4, + STATE(359), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2472), 12, + STATE(358), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286654,50 +286630,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3464), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3468), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3478), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3482), 1, + anon_sym_chan, + ACTIONS(3484), 1, + anon_sym_thread, + ACTIONS(3486), 1, + anon_sym_atomic, + ACTIONS(5686), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5688), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5690), 1, + anon_sym_QMARK, + ACTIONS(5692), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5694), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5696), 1, anon_sym_AMP, - STATE(3812), 1, + ACTIONS(5698), 1, + anon_sym_map_LBRACK, + STATE(1245), 1, sym_plain_type, - STATE(4498), 1, + STATE(4407), 1, sym_reference_expression, + STATE(1136), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3198), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1171), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1169), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286715,50 +286691,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3464), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3468), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3478), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3482), 1, + anon_sym_chan, + ACTIONS(3484), 1, + anon_sym_thread, + ACTIONS(3486), 1, + anon_sym_atomic, + ACTIONS(5686), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5688), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5690), 1, + anon_sym_QMARK, + ACTIONS(5692), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5694), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5696), 1, anon_sym_AMP, - STATE(4061), 1, + ACTIONS(5698), 1, + anon_sym_map_LBRACK, + STATE(1246), 1, sym_plain_type, - STATE(4498), 1, + STATE(4407), 1, sym_reference_expression, + STATE(1136), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3199), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1171), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1169), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286776,50 +286752,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, + ACTIONS(3634), 1, sym_identifier, ACTIONS(3638), 1, - anon_sym_struct, - ACTIONS(5486), 1, anon_sym_fn, - ACTIONS(5498), 1, + ACTIONS(3642), 1, + anon_sym_struct, + ACTIONS(3652), 1, anon_sym_shared, - ACTIONS(5502), 1, + ACTIONS(3656), 1, anon_sym_chan, - ACTIONS(5504), 1, + ACTIONS(3658), 1, anon_sym_thread, - ACTIONS(5506), 1, + ACTIONS(3660), 1, anon_sym_atomic, - ACTIONS(5590), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5594), 1, + ACTIONS(5814), 1, anon_sym_STAR, - ACTIONS(5596), 1, + ACTIONS(5816), 1, anon_sym_QMARK, - ACTIONS(5598), 1, + ACTIONS(5818), 1, anon_sym_BANG, - ACTIONS(5600), 1, + ACTIONS(5820), 1, anon_sym_LBRACK2, - ACTIONS(5602), 1, + ACTIONS(5822), 1, anon_sym_AMP, - ACTIONS(5604), 1, + ACTIONS(5824), 1, anon_sym_map_LBRACK, - STATE(1665), 1, + STATE(1630), 1, sym_plain_type, - STATE(4351), 1, + STATE(4375), 1, sym_reference_expression, + STATE(1659), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3200), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1647), 4, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286837,50 +286813,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3454), 1, + ACTIONS(3634), 1, sym_identifier, - ACTIONS(3458), 1, + ACTIONS(3638), 1, anon_sym_fn, - ACTIONS(3462), 1, + ACTIONS(3642), 1, anon_sym_struct, - ACTIONS(3472), 1, + ACTIONS(3652), 1, anon_sym_shared, - ACTIONS(3476), 1, + ACTIONS(3656), 1, anon_sym_chan, - ACTIONS(3478), 1, + ACTIONS(3658), 1, anon_sym_thread, - ACTIONS(3480), 1, + ACTIONS(3660), 1, anon_sym_atomic, - ACTIONS(5786), 1, + ACTIONS(5578), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(5814), 1, anon_sym_STAR, - ACTIONS(5790), 1, + ACTIONS(5816), 1, anon_sym_QMARK, - ACTIONS(5792), 1, + ACTIONS(5818), 1, anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(5820), 1, anon_sym_LBRACK2, - ACTIONS(5796), 1, + ACTIONS(5822), 1, anon_sym_AMP, - ACTIONS(5798), 1, + ACTIONS(5824), 1, anon_sym_map_LBRACK, - STATE(1192), 1, + STATE(1632), 1, sym_plain_type, - STATE(4412), 1, + STATE(4375), 1, sym_reference_expression, - STATE(1132), 2, + STATE(1659), 2, sym_type_reference_expression, sym_qualified_type, STATE(3201), 2, sym_line_comment, sym_block_comment, - STATE(1214), 4, + STATE(1658), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1225), 12, + STATE(1657), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286898,50 +286874,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3464), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3468), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3478), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3482), 1, + anon_sym_chan, + ACTIONS(3484), 1, + anon_sym_thread, + ACTIONS(3486), 1, + anon_sym_atomic, + ACTIONS(5686), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5688), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5690), 1, + anon_sym_QMARK, + ACTIONS(5692), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5694), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5696), 1, anon_sym_AMP, - STATE(4498), 1, - sym_reference_expression, - STATE(4580), 1, + ACTIONS(5698), 1, + anon_sym_map_LBRACK, + STATE(1247), 1, sym_plain_type, + STATE(4407), 1, + sym_reference_expression, + STATE(1136), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3202), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1171), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1169), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286959,50 +286935,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - sym_identifier, - ACTIONS(3638), 1, - anon_sym_struct, - ACTIONS(5486), 1, - anon_sym_fn, - ACTIONS(5498), 1, - anon_sym_shared, - ACTIONS(5502), 1, + ACTIONS(47), 1, + anon_sym_QMARK, + ACTIONS(97), 1, + anon_sym_map_LBRACK, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(5504), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(5506), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(5590), 1, + ACTIONS(605), 1, + sym_identifier, + ACTIONS(611), 1, + anon_sym_fn, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(623), 1, + anon_sym_shared, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5594), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5596), 1, - anon_sym_QMARK, - ACTIONS(5598), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5600), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5602), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5604), 1, - anon_sym_map_LBRACK, - STATE(1668), 1, + STATE(4188), 1, sym_plain_type, - STATE(4351), 1, + STATE(4423), 1, sym_reference_expression, STATE(3203), 2, sym_line_comment, sym_block_comment, - STATE(3305), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1647), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287020,50 +286996,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4114), 1, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(4118), 1, + ACTIONS(3957), 1, anon_sym_fn, - ACTIONS(4122), 1, - anon_sym_struct, - ACTIONS(4132), 1, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3969), 1, anon_sym_shared, - ACTIONS(4136), 1, + ACTIONS(3971), 1, + anon_sym_map_LBRACK, + ACTIONS(3973), 1, anon_sym_chan, - ACTIONS(4138), 1, + ACTIONS(3975), 1, anon_sym_thread, - ACTIONS(4140), 1, + ACTIONS(3977), 1, anon_sym_atomic, - ACTIONS(5696), 1, - anon_sym_LPAREN, - ACTIONS(5698), 1, - anon_sym_STAR, - ACTIONS(5700), 1, + ACTIONS(5770), 1, anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5772), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5774), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5776), 1, anon_sym_AMP, - ACTIONS(5708), 1, - anon_sym_map_LBRACK, - STATE(2539), 1, + STATE(2297), 1, sym_plain_type, - STATE(4391), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2446), 2, + STATE(2284), 2, sym_type_reference_expression, sym_qualified_type, STATE(3204), 2, sym_line_comment, sym_block_comment, - STATE(2471), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2472), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287081,50 +287057,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 1, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(3957), 1, anon_sym_fn, - ACTIONS(3638), 1, - anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3969), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(3971), 1, + anon_sym_map_LBRACK, + ACTIONS(3973), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(3975), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(3977), 1, anon_sym_atomic, - ACTIONS(5590), 1, - anon_sym_LPAREN, - ACTIONS(5774), 1, - anon_sym_STAR, - ACTIONS(5776), 1, + ACTIONS(5770), 1, anon_sym_QMARK, - ACTIONS(5778), 1, + ACTIONS(5772), 1, anon_sym_BANG, - ACTIONS(5780), 1, + ACTIONS(5774), 1, anon_sym_LBRACK2, - ACTIONS(5782), 1, + ACTIONS(5776), 1, anon_sym_AMP, - ACTIONS(5784), 1, - anon_sym_map_LBRACK, - STATE(1678), 1, + STATE(2294), 1, sym_plain_type, - STATE(4378), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1631), 2, + STATE(2284), 2, sym_type_reference_expression, sym_qualified_type, STATE(3205), 2, sym_line_comment, sym_block_comment, - STATE(1647), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287142,50 +287118,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5590), 1, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(5774), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5776), 1, + ACTIONS(5790), 1, anon_sym_QMARK, - ACTIONS(5778), 1, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5780), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5782), 1, + ACTIONS(5796), 1, anon_sym_AMP, - ACTIONS(5784), 1, + ACTIONS(5798), 1, anon_sym_map_LBRACK, - STATE(1742), 1, + STATE(349), 1, sym_plain_type, - STATE(4378), 1, + STATE(4392), 1, sym_reference_expression, - STATE(1631), 2, + STATE(267), 2, sym_type_reference_expression, sym_qualified_type, STATE(3206), 2, sym_line_comment, sym_block_comment, - STATE(1647), 4, + STATE(359), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(358), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287203,50 +287179,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, ACTIONS(565), 1, sym_identifier, ACTIONS(571), 1, anon_sym_fn, ACTIONS(575), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(589), 1, + anon_sym_chan, + ACTIONS(591), 1, + anon_sym_thread, + ACTIONS(593), 1, + anon_sym_atomic, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5790), 1, + anon_sym_QMARK, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5796), 1, anon_sym_AMP, - STATE(4498), 1, - sym_reference_expression, - STATE(4573), 1, + ACTIONS(5798), 1, + anon_sym_map_LBRACK, + STATE(330), 1, sym_plain_type, + STATE(4392), 1, + sym_reference_expression, + STATE(267), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3207), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(359), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(358), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287264,50 +287240,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(85), 1, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, + sym_identifier, + ACTIONS(3957), 1, + anon_sym_fn, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3969), 1, + anon_sym_shared, + ACTIONS(3971), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(3973), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(3975), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(3977), 1, anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5770), 1, + anon_sym_QMARK, + ACTIONS(5772), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5774), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5776), 1, anon_sym_AMP, - STATE(4498), 1, - sym_reference_expression, - STATE(4537), 1, + STATE(2293), 1, sym_plain_type, + STATE(4423), 1, + sym_reference_expression, + STATE(2284), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3208), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287325,50 +287301,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, - sym_identifier, - ACTIONS(4525), 1, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(4527), 1, + ACTIONS(3955), 1, + sym_identifier, + ACTIONS(3957), 1, anon_sym_fn, - ACTIONS(4529), 1, + ACTIONS(3959), 1, anon_sym_STAR, - ACTIONS(4531), 1, - anon_sym_struct, - ACTIONS(4541), 1, + ACTIONS(3969), 1, anon_sym_shared, - ACTIONS(4543), 1, + ACTIONS(3971), 1, anon_sym_map_LBRACK, - ACTIONS(4545), 1, + ACTIONS(3973), 1, anon_sym_chan, - ACTIONS(4547), 1, + ACTIONS(3975), 1, anon_sym_thread, - ACTIONS(4549), 1, + ACTIONS(3977), 1, anon_sym_atomic, - ACTIONS(5756), 1, + ACTIONS(5770), 1, anon_sym_QMARK, - ACTIONS(5758), 1, + ACTIONS(5772), 1, anon_sym_BANG, - ACTIONS(5760), 1, + ACTIONS(5774), 1, anon_sym_LBRACK2, - ACTIONS(5762), 1, + ACTIONS(5776), 1, anon_sym_AMP, - STATE(2659), 1, + STATE(2307), 1, sym_plain_type, - STATE(4479), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2597), 2, + STATE(2284), 2, sym_type_reference_expression, sym_qualified_type, STATE(3209), 2, sym_line_comment, sym_block_comment, - STATE(2699), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2700), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287386,50 +287362,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3918), 1, + ACTIONS(1191), 1, sym_identifier, - ACTIONS(3922), 1, + ACTIONS(1195), 1, anon_sym_fn, - ACTIONS(3926), 1, + ACTIONS(1199), 1, anon_sym_struct, - ACTIONS(3936), 1, + ACTIONS(1209), 1, anon_sym_shared, - ACTIONS(3940), 1, + ACTIONS(1213), 1, anon_sym_chan, - ACTIONS(3942), 1, + ACTIONS(1215), 1, anon_sym_thread, - ACTIONS(3944), 1, + ACTIONS(1217), 1, anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(5800), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, + ACTIONS(5802), 1, anon_sym_STAR, - ACTIONS(5714), 1, + ACTIONS(5804), 1, anon_sym_QMARK, - ACTIONS(5716), 1, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5720), 1, + ACTIONS(5810), 1, anon_sym_AMP, - ACTIONS(5722), 1, + ACTIONS(5812), 1, anon_sym_map_LBRACK, - STATE(2221), 1, + STATE(999), 1, sym_plain_type, - STATE(4471), 1, + STATE(4344), 1, sym_reference_expression, - STATE(2142), 2, + STATE(989), 2, sym_type_reference_expression, sym_qualified_type, STATE(3210), 2, sym_line_comment, sym_block_comment, - STATE(2183), 4, + STATE(1091), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(1089), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287449,48 +287425,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(47), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4498), 1, - sym_reference_expression, - STATE(4525), 1, + STATE(4183), 1, sym_plain_type, + STATE(4423), 1, + sym_reference_expression, STATE(3211), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287508,50 +287484,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(1199), 1, + ACTIONS(3464), 1, anon_sym_fn, - ACTIONS(1203), 1, + ACTIONS(3468), 1, anon_sym_struct, - ACTIONS(1213), 1, + ACTIONS(3478), 1, anon_sym_shared, - ACTIONS(1217), 1, + ACTIONS(3482), 1, anon_sym_chan, - ACTIONS(1219), 1, + ACTIONS(3484), 1, anon_sym_thread, - ACTIONS(1221), 1, + ACTIONS(3486), 1, anon_sym_atomic, - ACTIONS(5742), 1, + ACTIONS(5686), 1, anon_sym_LPAREN, - ACTIONS(5744), 1, + ACTIONS(5688), 1, anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5690), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5692), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5694), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5696), 1, anon_sym_AMP, - ACTIONS(5754), 1, + ACTIONS(5698), 1, anon_sym_map_LBRACK, - STATE(998), 1, + STATE(1207), 1, sym_plain_type, - STATE(4349), 1, + STATE(4407), 1, sym_reference_expression, - STATE(985), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, STATE(3212), 2, sym_line_comment, sym_block_comment, - STATE(1066), 4, + STATE(1171), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1030), 12, + STATE(1169), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287569,50 +287545,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3918), 1, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(3922), 1, + ACTIONS(3464), 1, anon_sym_fn, - ACTIONS(3926), 1, + ACTIONS(3468), 1, anon_sym_struct, - ACTIONS(3936), 1, + ACTIONS(3478), 1, anon_sym_shared, - ACTIONS(3940), 1, + ACTIONS(3482), 1, anon_sym_chan, - ACTIONS(3942), 1, + ACTIONS(3484), 1, anon_sym_thread, - ACTIONS(3944), 1, + ACTIONS(3486), 1, anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(5686), 1, anon_sym_LPAREN, - ACTIONS(5712), 1, + ACTIONS(5688), 1, anon_sym_STAR, - ACTIONS(5714), 1, + ACTIONS(5690), 1, anon_sym_QMARK, - ACTIONS(5716), 1, + ACTIONS(5692), 1, anon_sym_BANG, - ACTIONS(5718), 1, + ACTIONS(5694), 1, anon_sym_LBRACK2, - ACTIONS(5720), 1, + ACTIONS(5696), 1, anon_sym_AMP, - ACTIONS(5722), 1, + ACTIONS(5698), 1, anon_sym_map_LBRACK, - STATE(2226), 1, + STATE(1204), 1, sym_plain_type, - STATE(4471), 1, + STATE(4407), 1, sym_reference_expression, - STATE(2142), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, STATE(3213), 2, sym_line_comment, sym_block_comment, - STATE(2183), 4, + STATE(1171), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2184), 12, + STATE(1169), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287630,50 +287606,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, + ACTIONS(3924), 1, sym_identifier, - ACTIONS(4525), 1, - anon_sym_LPAREN, - ACTIONS(4527), 1, + ACTIONS(3928), 1, anon_sym_fn, - ACTIONS(4529), 1, - anon_sym_STAR, - ACTIONS(4531), 1, + ACTIONS(3932), 1, anon_sym_struct, - ACTIONS(4541), 1, + ACTIONS(3942), 1, anon_sym_shared, - ACTIONS(4543), 1, - anon_sym_map_LBRACK, - ACTIONS(4545), 1, + ACTIONS(3946), 1, anon_sym_chan, - ACTIONS(4547), 1, + ACTIONS(3948), 1, anon_sym_thread, - ACTIONS(4549), 1, + ACTIONS(3950), 1, anon_sym_atomic, - ACTIONS(5756), 1, + ACTIONS(5732), 1, + anon_sym_LPAREN, + ACTIONS(5734), 1, + anon_sym_STAR, + ACTIONS(5736), 1, anon_sym_QMARK, - ACTIONS(5758), 1, + ACTIONS(5738), 1, anon_sym_BANG, - ACTIONS(5760), 1, + ACTIONS(5740), 1, anon_sym_LBRACK2, - ACTIONS(5762), 1, + ACTIONS(5742), 1, anon_sym_AMP, - STATE(2663), 1, + ACTIONS(5744), 1, + anon_sym_map_LBRACK, + STATE(2172), 1, sym_plain_type, - STATE(4479), 1, + STATE(4466), 1, sym_reference_expression, - STATE(2597), 2, + STATE(2130), 2, sym_type_reference_expression, sym_qualified_type, STATE(3214), 2, sym_line_comment, sym_block_comment, - STATE(2699), 4, + STATE(2178), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2700), 12, + STATE(2179), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287691,50 +287667,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3752), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3756), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3766), 1, anon_sym_shared, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3768), 1, + anon_sym_map_LBRACK, + ACTIONS(3770), 1, + anon_sym_chan, + ACTIONS(3772), 1, + anon_sym_thread, + ACTIONS(3774), 1, + anon_sym_atomic, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5716), 1, + anon_sym_QMARK, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5722), 1, anon_sym_AMP, - STATE(2332), 1, + STATE(1972), 1, sym_plain_type, - STATE(4498), 1, + STATE(4428), 1, sym_reference_expression, + STATE(1899), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3215), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1918), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1996), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287752,50 +287728,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4114), 1, + ACTIONS(3797), 1, sym_identifier, - ACTIONS(4118), 1, + ACTIONS(3799), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, anon_sym_fn, - ACTIONS(4122), 1, + ACTIONS(3805), 1, anon_sym_struct, - ACTIONS(4132), 1, + ACTIONS(3815), 1, anon_sym_shared, - ACTIONS(4136), 1, + ACTIONS(3817), 1, + anon_sym_map_LBRACK, + ACTIONS(3819), 1, anon_sym_chan, - ACTIONS(4138), 1, + ACTIONS(3821), 1, anon_sym_thread, - ACTIONS(4140), 1, + ACTIONS(3823), 1, anon_sym_atomic, - ACTIONS(5696), 1, - anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(5760), 1, anon_sym_STAR, - ACTIONS(5700), 1, + ACTIONS(5762), 1, anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5764), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5766), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5768), 1, anon_sym_AMP, - ACTIONS(5708), 1, - anon_sym_map_LBRACK, - STATE(2551), 1, + STATE(2038), 1, sym_plain_type, - STATE(4391), 1, + STATE(4365), 1, sym_reference_expression, - STATE(2446), 2, + STATE(1904), 2, sym_type_reference_expression, sym_qualified_type, STATE(3216), 2, sym_line_comment, sym_block_comment, - STATE(2471), 4, + STATE(1978), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2472), 12, + STATE(1980), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287813,50 +287789,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, ACTIONS(565), 1, sym_identifier, ACTIONS(571), 1, anon_sym_fn, ACTIONS(575), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(589), 1, + anon_sym_chan, + ACTIONS(591), 1, + anon_sym_thread, + ACTIONS(593), 1, + anon_sym_atomic, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5790), 1, + anon_sym_QMARK, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5796), 1, anon_sym_AMP, - STATE(2327), 1, + ACTIONS(5798), 1, + anon_sym_map_LBRACK, + STATE(351), 1, sym_plain_type, - STATE(4498), 1, + STATE(4392), 1, sym_reference_expression, + STATE(267), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3217), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(359), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(358), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287874,50 +287850,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3797), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3799), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3805), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3815), 1, anon_sym_shared, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(3817), 1, + anon_sym_map_LBRACK, + ACTIONS(3819), 1, + anon_sym_chan, + ACTIONS(3821), 1, + anon_sym_thread, + ACTIONS(3823), 1, + anon_sym_atomic, + ACTIONS(5760), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5762), 1, + anon_sym_QMARK, + ACTIONS(5764), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5766), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5768), 1, anon_sym_AMP, - STATE(2349), 1, + STATE(2042), 1, sym_plain_type, - STATE(4498), 1, + STATE(4365), 1, sym_reference_expression, + STATE(1904), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3218), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1978), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1980), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287935,50 +287911,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, ACTIONS(565), 1, sym_identifier, ACTIONS(571), 1, anon_sym_fn, ACTIONS(575), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(589), 1, + anon_sym_chan, + ACTIONS(591), 1, + anon_sym_thread, + ACTIONS(593), 1, + anon_sym_atomic, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5790), 1, + anon_sym_QMARK, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5796), 1, anon_sym_AMP, - STATE(3857), 1, + ACTIONS(5798), 1, + anon_sym_map_LBRACK, + STATE(336), 1, sym_plain_type, - STATE(4498), 1, + STATE(4392), 1, sym_reference_expression, + STATE(267), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3219), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(359), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(358), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287996,50 +287972,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4114), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(4118), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(4122), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(4132), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(4136), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(4138), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(4140), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5696), 1, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5700), 1, + ACTIONS(5790), 1, anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5796), 1, anon_sym_AMP, - ACTIONS(5708), 1, + ACTIONS(5798), 1, anon_sym_map_LBRACK, - STATE(2553), 1, + STATE(481), 1, sym_plain_type, - STATE(4391), 1, + STATE(4392), 1, sym_reference_expression, - STATE(2446), 2, + STATE(267), 2, sym_type_reference_expression, sym_qualified_type, STATE(3220), 2, sym_line_comment, sym_block_comment, - STATE(2471), 4, + STATE(359), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2472), 12, + STATE(358), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288057,50 +288033,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, ACTIONS(565), 1, sym_identifier, ACTIONS(571), 1, anon_sym_fn, ACTIONS(575), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(589), 1, + anon_sym_chan, + ACTIONS(591), 1, + anon_sym_thread, + ACTIONS(593), 1, + anon_sym_atomic, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5790), 1, + anon_sym_QMARK, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5796), 1, anon_sym_AMP, - STATE(3978), 1, + ACTIONS(5798), 1, + anon_sym_map_LBRACK, + STATE(338), 1, sym_plain_type, - STATE(4498), 1, + STATE(4392), 1, sym_reference_expression, + STATE(267), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3221), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(359), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(358), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288118,50 +288094,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3464), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3468), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3478), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3482), 1, + anon_sym_chan, + ACTIONS(3484), 1, + anon_sym_thread, + ACTIONS(3486), 1, + anon_sym_atomic, + ACTIONS(5686), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5688), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5690), 1, + anon_sym_QMARK, + ACTIONS(5692), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5694), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5696), 1, anon_sym_AMP, - STATE(3796), 1, + ACTIONS(5698), 1, + anon_sym_map_LBRACK, + STATE(1139), 1, sym_plain_type, - STATE(4498), 1, + STATE(4407), 1, sym_reference_expression, + STATE(1136), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3222), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1171), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1169), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288179,50 +288155,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(587), 1, + ACTIONS(1191), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(1195), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(1199), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(1209), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(1213), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(1215), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(1217), 1, anon_sym_atomic, - ACTIONS(5668), 1, + ACTIONS(5800), 1, anon_sym_LPAREN, - ACTIONS(5670), 1, + ACTIONS(5802), 1, anon_sym_STAR, - ACTIONS(5672), 1, + ACTIONS(5804), 1, anon_sym_QMARK, - ACTIONS(5674), 1, + ACTIONS(5806), 1, anon_sym_BANG, - ACTIONS(5676), 1, + ACTIONS(5808), 1, anon_sym_LBRACK2, - ACTIONS(5678), 1, + ACTIONS(5810), 1, anon_sym_AMP, - ACTIONS(5680), 1, + ACTIONS(5812), 1, anon_sym_map_LBRACK, - STATE(435), 1, + STATE(1008), 1, sym_plain_type, - STATE(4403), 1, + STATE(4344), 1, sym_reference_expression, - STATE(244), 2, + STATE(989), 2, sym_type_reference_expression, sym_qualified_type, STATE(3223), 2, sym_line_comment, sym_block_comment, - STATE(387), 4, + STATE(1091), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(388), 12, + STATE(1089), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288240,50 +288216,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(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3464), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3468), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3478), 1, anon_sym_shared, - ACTIONS(3564), 1, + ACTIONS(3482), 1, + anon_sym_chan, + ACTIONS(3484), 1, + anon_sym_thread, + ACTIONS(3486), 1, + anon_sym_atomic, + ACTIONS(5686), 1, anon_sym_LPAREN, - ACTIONS(3566), 1, + ACTIONS(5688), 1, anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5690), 1, + anon_sym_QMARK, + ACTIONS(5692), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5694), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5696), 1, anon_sym_AMP, - STATE(4023), 1, + ACTIONS(5698), 1, + anon_sym_map_LBRACK, + STATE(1180), 1, sym_plain_type, - STATE(4498), 1, + STATE(4407), 1, sym_reference_expression, + STATE(1136), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3224), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(1171), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(1169), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288301,50 +288277,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4114), 1, + ACTIONS(565), 1, sym_identifier, - ACTIONS(4118), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(4122), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(4132), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(4136), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(4138), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(4140), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5696), 1, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(5788), 1, anon_sym_STAR, - ACTIONS(5700), 1, + ACTIONS(5790), 1, anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5792), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5794), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5796), 1, anon_sym_AMP, - ACTIONS(5708), 1, + ACTIONS(5798), 1, anon_sym_map_LBRACK, - STATE(2564), 1, + STATE(346), 1, sym_plain_type, - STATE(4391), 1, + STATE(4392), 1, sym_reference_expression, - STATE(2446), 2, + STATE(267), 2, sym_type_reference_expression, sym_qualified_type, STATE(3225), 2, sym_line_comment, sym_block_comment, - STATE(2471), 4, + STATE(359), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2472), 12, + STATE(358), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288362,50 +288338,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1199), 1, + ACTIONS(4072), 1, anon_sym_fn, - ACTIONS(1203), 1, + ACTIONS(4076), 1, anon_sym_struct, - ACTIONS(1213), 1, + ACTIONS(4086), 1, anon_sym_shared, - ACTIONS(1217), 1, + ACTIONS(4090), 1, anon_sym_chan, - ACTIONS(1219), 1, + ACTIONS(4092), 1, anon_sym_thread, - ACTIONS(1221), 1, + ACTIONS(4094), 1, anon_sym_atomic, - ACTIONS(5742), 1, + ACTIONS(5746), 1, anon_sym_LPAREN, - ACTIONS(5744), 1, + ACTIONS(5748), 1, anon_sym_STAR, - ACTIONS(5746), 1, + ACTIONS(5750), 1, anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5752), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5754), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5756), 1, anon_sym_AMP, - ACTIONS(5754), 1, + ACTIONS(5758), 1, anon_sym_map_LBRACK, - STATE(1018), 1, + STATE(2461), 1, sym_plain_type, - STATE(4349), 1, + STATE(4386), 1, sym_reference_expression, - STATE(985), 2, + STATE(2419), 2, sym_type_reference_expression, sym_qualified_type, STATE(3226), 2, sym_line_comment, sym_block_comment, - STATE(1066), 4, + STATE(2533), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1030), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288423,50 +288399,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(85), 1, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, + sym_identifier, + ACTIONS(3957), 1, + anon_sym_fn, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3969), 1, + anon_sym_shared, + ACTIONS(3971), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(3973), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(3975), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(3977), 1, anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(3564), 1, - anon_sym_LPAREN, - ACTIONS(3566), 1, - anon_sym_STAR, - ACTIONS(5308), 1, + ACTIONS(5770), 1, + anon_sym_QMARK, + ACTIONS(5772), 1, anon_sym_BANG, - ACTIONS(5310), 1, + ACTIONS(5774), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5776), 1, anon_sym_AMP, - STATE(3793), 1, + STATE(2404), 1, sym_plain_type, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, + STATE(2284), 2, + sym_type_reference_expression, + sym_qualified_type, STATE(3227), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2360), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288484,50 +288460,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4114), 1, + ACTIONS(3460), 1, sym_identifier, - ACTIONS(4118), 1, + ACTIONS(3464), 1, anon_sym_fn, - ACTIONS(4122), 1, + ACTIONS(3468), 1, anon_sym_struct, - ACTIONS(4132), 1, + ACTIONS(3478), 1, anon_sym_shared, - ACTIONS(4136), 1, + ACTIONS(3482), 1, anon_sym_chan, - ACTIONS(4138), 1, + ACTIONS(3484), 1, anon_sym_thread, - ACTIONS(4140), 1, + ACTIONS(3486), 1, anon_sym_atomic, - ACTIONS(5696), 1, + ACTIONS(5686), 1, anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(5688), 1, anon_sym_STAR, - ACTIONS(5700), 1, + ACTIONS(5690), 1, anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5692), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5694), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5696), 1, anon_sym_AMP, - ACTIONS(5708), 1, + ACTIONS(5698), 1, anon_sym_map_LBRACK, - STATE(2545), 1, + STATE(1243), 1, sym_plain_type, - STATE(4391), 1, + STATE(4407), 1, sym_reference_expression, - STATE(2446), 2, + STATE(1136), 2, sym_type_reference_expression, sym_qualified_type, STATE(3228), 2, sym_line_comment, sym_block_comment, - STATE(2471), 4, + STATE(1171), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2472), 12, + STATE(1169), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288545,50 +288521,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4114), 1, + ACTIONS(615), 1, + anon_sym_struct, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(4118), 1, + ACTIONS(3957), 1, anon_sym_fn, - ACTIONS(4122), 1, - anon_sym_struct, - ACTIONS(4132), 1, + ACTIONS(3959), 1, + anon_sym_STAR, + ACTIONS(3969), 1, anon_sym_shared, - ACTIONS(4136), 1, + ACTIONS(3971), 1, + anon_sym_map_LBRACK, + ACTIONS(3973), 1, anon_sym_chan, - ACTIONS(4138), 1, + ACTIONS(3975), 1, anon_sym_thread, - ACTIONS(4140), 1, + ACTIONS(3977), 1, anon_sym_atomic, - ACTIONS(5696), 1, - anon_sym_LPAREN, - ACTIONS(5698), 1, - anon_sym_STAR, - ACTIONS(5700), 1, + ACTIONS(5770), 1, anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5772), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5774), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5776), 1, anon_sym_AMP, - ACTIONS(5708), 1, - anon_sym_map_LBRACK, - STATE(2549), 1, + STATE(2385), 1, sym_plain_type, - STATE(4391), 1, + STATE(4423), 1, sym_reference_expression, - STATE(2446), 2, + STATE(2284), 2, sym_type_reference_expression, sym_qualified_type, STATE(3229), 2, sym_line_comment, sym_block_comment, - STATE(2471), 4, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2472), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288606,50 +288582,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3630), 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(605), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3652), 1, - anon_sym_chan, - ACTIONS(3654), 1, - anon_sym_thread, - ACTIONS(3656), 1, - anon_sym_atomic, - ACTIONS(5590), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5774), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5776), 1, - anon_sym_QMARK, - ACTIONS(5778), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5780), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5782), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5784), 1, - anon_sym_map_LBRACK, - STATE(1691), 1, + STATE(3820), 1, sym_plain_type, - STATE(4378), 1, + STATE(4423), 1, sym_reference_expression, - STATE(1631), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3230), 2, sym_line_comment, sym_block_comment, - STATE(1647), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1667), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288667,50 +288643,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 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(605), 1, sym_identifier, - ACTIONS(1199), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(1203), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(1213), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(1217), 1, - anon_sym_chan, - ACTIONS(1219), 1, - anon_sym_thread, - ACTIONS(1221), 1, - anon_sym_atomic, - ACTIONS(5742), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(5744), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5746), 1, - anon_sym_QMARK, - ACTIONS(5748), 1, + ACTIONS(5328), 1, anon_sym_BANG, - ACTIONS(5750), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5752), 1, + ACTIONS(5332), 1, anon_sym_AMP, - ACTIONS(5754), 1, - anon_sym_map_LBRACK, - STATE(1065), 1, + STATE(3827), 1, sym_plain_type, - STATE(4349), 1, + STATE(4423), 1, sym_reference_expression, - STATE(985), 2, - sym_type_reference_expression, - sym_qualified_type, STATE(3231), 2, sym_line_comment, sym_block_comment, - STATE(1066), 4, + STATE(3543), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2290), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1030), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288728,39 +288704,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4085), 1, + STATE(4342), 1, sym__plain_type_without_special, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(3232), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288778,39 +288754,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4049), 1, + STATE(4165), 1, sym__plain_type_without_special, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(3233), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288828,39 +288804,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4039), 1, + STATE(4218), 1, sym__plain_type_without_special, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(3234), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288878,39 +288854,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4248), 1, + STATE(4046), 1, sym__plain_type_without_special, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(3235), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288928,39 +288904,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4115), 1, + STATE(4134), 1, sym__plain_type_without_special, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(3236), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288978,39 +288954,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4226), 1, + STATE(4044), 1, sym__plain_type_without_special, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(3237), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289028,39 +289004,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4092), 1, + STATE(4308), 1, sym__plain_type_without_special, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, STATE(3238), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289073,150 +289049,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119251] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1480), 1, - sym___double_quote, - ACTIONS(1482), 1, - sym___single_quote, - ACTIONS(1484), 1, - sym___c_double_quote, - ACTIONS(1486), 1, - sym___c_single_quote, - ACTIONS(1488), 1, - sym___r_double_quote, - ACTIONS(1490), 1, - sym___r_single_quote, - ACTIONS(5822), 1, - sym_identifier, - ACTIONS(5824), 1, - anon_sym_if, - ACTIONS(5826), 1, - anon_sym_unsafe, - STATE(3861), 1, - sym_attribute_expression, - STATE(3862), 1, - sym_value_attribute, - STATE(3982), 1, - sym_reference_expression, - STATE(4240), 1, - sym_literal, - ACTIONS(1474), 2, - sym_float_literal, - sym_rune_literal, - STATE(3239), 2, - sym_line_comment, - sym_block_comment, - STATE(4192), 2, - sym_if_attribute, - sym__plain_attribute, - STATE(4193), 2, - sym_literal_attribute, - sym_key_value_attribute, - STATE(2401), 3, - sym_c_string_literal, - sym_raw_string_literal, - sym_interpreted_string_literal, - ACTIONS(1458), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, - [119325] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1480), 1, - sym___double_quote, - ACTIONS(1482), 1, - sym___single_quote, - ACTIONS(1484), 1, - sym___c_double_quote, - ACTIONS(1486), 1, - sym___c_single_quote, - ACTIONS(1488), 1, - sym___r_double_quote, - ACTIONS(1490), 1, - sym___r_single_quote, - ACTIONS(5822), 1, - sym_identifier, - ACTIONS(5824), 1, - anon_sym_if, - ACTIONS(5826), 1, - anon_sym_unsafe, - STATE(3862), 1, - sym_value_attribute, - STATE(3982), 1, - sym_reference_expression, - STATE(4196), 1, - sym_attribute_expression, - STATE(4240), 1, - sym_literal, - ACTIONS(1474), 2, - sym_float_literal, - sym_rune_literal, - STATE(3240), 2, - sym_line_comment, - sym_block_comment, - STATE(4192), 2, - sym_if_attribute, - sym__plain_attribute, - STATE(4193), 2, - sym_literal_attribute, - sym_key_value_attribute, - STATE(2401), 3, - sym_c_string_literal, - sym_raw_string_literal, - sym_interpreted_string_literal, - ACTIONS(1458), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, - [119399] = 18, + [119251] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4245), 1, + STATE(4053), 1, sym__plain_type_without_special, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(3241), 2, + STATE(3239), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289229,44 +289099,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119467] = 18, + [119319] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4498), 1, - sym_reference_expression, - STATE(4586), 1, + STATE(4043), 1, sym__plain_type_without_special, - STATE(3242), 2, + STATE(4423), 1, + sym_reference_expression, + STATE(3240), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289279,44 +289149,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119535] = 18, + [119387] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4177), 1, + STATE(4116), 1, sym__plain_type_without_special, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(3243), 2, + STATE(3241), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289329,44 +289199,97 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119603] = 18, + [119455] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1267), 1, + anon_sym_SQUOTE, + ACTIONS(1269), 1, + anon_sym_DQUOTE, + ACTIONS(1271), 1, + anon_sym_c_SQUOTE, + ACTIONS(1273), 1, + anon_sym_c_DQUOTE, + ACTIONS(1275), 1, + anon_sym_r_SQUOTE, + ACTIONS(1277), 1, + anon_sym_r_DQUOTE, + ACTIONS(5826), 1, + sym_identifier, + ACTIONS(5828), 1, + anon_sym_if, + ACTIONS(5830), 1, + anon_sym_unsafe, + STATE(3822), 1, + sym_value_attribute, + STATE(3850), 1, + sym_reference_expression, + STATE(3894), 1, + sym_attribute_expression, + STATE(4216), 1, + sym_literal, + ACTIONS(1265), 2, + sym_float_literal, + sym_rune_literal, + STATE(3242), 2, + sym_line_comment, + sym_block_comment, + STATE(4129), 2, + sym_if_attribute, + sym__plain_attribute, + STATE(4133), 2, + sym_literal_attribute, + sym_key_value_attribute, + STATE(2398), 3, + sym_interpreted_string_literal, + sym_c_string_literal, + sym_raw_string_literal, + ACTIONS(1249), 5, + sym_none, + sym_true, + sym_false, + sym_nil, + sym_int_literal, + [119529] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4309), 1, + STATE(4380), 1, sym__plain_type_without_special, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(3244), 2, + STATE(3243), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289379,44 +289302,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119671] = 18, + [119597] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4222), 1, + STATE(4199), 1, sym__plain_type_without_special, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(3245), 2, + STATE(3244), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289429,44 +289352,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119739] = 18, + [119665] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4369), 1, + STATE(4135), 1, sym__plain_type_without_special, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(3246), 2, + STATE(3245), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289479,44 +289402,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119807] = 18, + [119733] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(85), 1, + ACTIONS(97), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(99), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(101), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(103), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(605), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(611), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(615), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(623), 1, anon_sym_shared, - ACTIONS(3566), 1, + ACTIONS(3600), 1, anon_sym_STAR, - ACTIONS(5310), 1, + ACTIONS(5330), 1, anon_sym_LBRACK2, - ACTIONS(5312), 1, + ACTIONS(5332), 1, anon_sym_AMP, - STATE(4214), 1, + STATE(4297), 1, sym__plain_type_without_special, - STATE(4498), 1, + STATE(4423), 1, sym_reference_expression, - STATE(3247), 2, + STATE(3246), 2, sym_line_comment, sym_block_comment, - STATE(3460), 2, + STATE(3543), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2362), 12, + STATE(2292), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289529,48 +289452,101 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, + [119801] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1267), 1, + anon_sym_SQUOTE, + ACTIONS(1269), 1, + anon_sym_DQUOTE, + ACTIONS(1271), 1, + anon_sym_c_SQUOTE, + ACTIONS(1273), 1, + anon_sym_c_DQUOTE, + ACTIONS(1275), 1, + anon_sym_r_SQUOTE, + ACTIONS(1277), 1, + anon_sym_r_DQUOTE, + ACTIONS(5826), 1, + sym_identifier, + ACTIONS(5828), 1, + anon_sym_if, + ACTIONS(5830), 1, + anon_sym_unsafe, + STATE(3822), 1, + sym_value_attribute, + STATE(3850), 1, + sym_reference_expression, + STATE(4137), 1, + sym_attribute_expression, + STATE(4216), 1, + sym_literal, + ACTIONS(1265), 2, + sym_float_literal, + sym_rune_literal, + STATE(3247), 2, + sym_line_comment, + sym_block_comment, + STATE(4129), 2, + sym_if_attribute, + sym__plain_attribute, + STATE(4133), 2, + sym_literal_attribute, + sym_key_value_attribute, + STATE(2398), 3, + sym_interpreted_string_literal, + sym_c_string_literal, + sym_raw_string_literal, + ACTIONS(1249), 5, + sym_none, + sym_true, + sym_false, + sym_nil, + sym_int_literal, [119875] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4918), 1, + ACTIONS(4922), 1, anon_sym_LBRACK, - ACTIONS(5828), 1, + ACTIONS(5832), 1, sym_identifier, - ACTIONS(5830), 1, + ACTIONS(5834), 1, anon_sym_LPAREN, - ACTIONS(5836), 1, + ACTIONS(5840), 1, anon_sym_LT2, - ACTIONS(5838), 1, + ACTIONS(5842), 1, anon_sym_LBRACK2, - STATE(3294), 1, + STATE(3324), 1, sym_receiver, - STATE(3403), 1, + STATE(3444), 1, sym__function_name, - STATE(3430), 1, + STATE(3448), 1, sym_capture_list, - STATE(3630), 1, + STATE(3644), 1, sym_generic_parameters, - STATE(3789), 1, + STATE(3768), 1, sym_overridable_operator, - STATE(4124), 1, + STATE(4220), 1, sym_signature, - STATE(4515), 1, - sym_reference_expression, - STATE(4523), 1, + STATE(4360), 1, sym_static_receiver, - STATE(2850), 2, + STATE(4463), 1, + sym_reference_expression, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, STATE(3248), 2, sym_line_comment, sym_block_comment, - ACTIONS(5834), 3, + ACTIONS(5838), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5832), 8, + ACTIONS(5836), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289587,7 +289563,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2870), 24, + ACTIONS(2171), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289620,7 +289596,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2918), 24, + ACTIONS(2237), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289653,7 +289629,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2812), 24, + ACTIONS(2167), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289686,7 +289662,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2914), 24, + ACTIONS(2193), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289719,7 +289695,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3253), 2, sym_line_comment, sym_block_comment, - ACTIONS(2704), 24, + ACTIONS(2197), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289749,17 +289725,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3468), 1, + STATE(3546), 1, aux_sym_strictly_expression_list_repeat1, STATE(3254), 2, sym_line_comment, sym_block_comment, - ACTIONS(1643), 4, + ACTIONS(1757), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(1649), 15, + ACTIONS(1759), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -289775,15 +289751,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120166] = 5, + [120166] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(5832), 1, + sym_identifier, + ACTIONS(5844), 1, + anon_sym_LPAREN, + STATE(3285), 1, + sym_receiver, + STATE(3434), 1, + sym__function_name, + STATE(3768), 1, + sym_overridable_operator, + STATE(4456), 1, + sym_static_receiver, + STATE(4463), 1, + sym_reference_expression, STATE(3255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2812), 7, + ACTIONS(5838), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5836), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [120213] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5832), 1, + sym_identifier, + ACTIONS(5844), 1, + anon_sym_LPAREN, + STATE(3296), 1, + sym_receiver, + STATE(3420), 1, + sym__function_name, + STATE(3768), 1, + sym_overridable_operator, + STATE(4463), 1, + sym_reference_expression, + STATE(4551), 1, + sym_static_receiver, + STATE(3256), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5838), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5836), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [120260] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1267), 1, + anon_sym_SQUOTE, + ACTIONS(1269), 1, + anon_sym_DQUOTE, + ACTIONS(1271), 1, + anon_sym_c_SQUOTE, + ACTIONS(1273), 1, + anon_sym_c_DQUOTE, + ACTIONS(1275), 1, + anon_sym_r_SQUOTE, + ACTIONS(1277), 1, + anon_sym_r_DQUOTE, + ACTIONS(5846), 1, + sym_identifier, + STATE(4174), 1, + sym_literal, + ACTIONS(1265), 2, + sym_float_literal, + sym_rune_literal, + STATE(3257), 2, + sym_line_comment, + sym_block_comment, + STATE(2398), 3, + sym_interpreted_string_literal, + sym_c_string_literal, + sym_raw_string_literal, + ACTIONS(1249), 5, + sym_none, + sym_true, + sym_false, + sym_nil, + sym_int_literal, + [120311] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3258), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2193), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -289791,7 +289874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2810), 11, + ACTIONS(2191), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -289803,15 +289886,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [120199] = 5, + [120344] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3256), 2, + STATE(3259), 2, sym_line_comment, sym_block_comment, - ACTIONS(2914), 7, + ACTIONS(2197), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -289819,7 +289902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2912), 11, + ACTIONS(2195), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -289831,15 +289914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [120232] = 5, + [120377] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3257), 2, + STATE(3260), 2, sym_line_comment, sym_block_comment, - ACTIONS(2704), 7, + ACTIONS(2171), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -289847,7 +289930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2702), 11, + ACTIONS(2169), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -289859,85 +289942,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [120265] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5828), 1, - sym_identifier, - ACTIONS(5840), 1, - anon_sym_LPAREN, - STATE(3301), 1, - sym_receiver, - STATE(3410), 1, - sym__function_name, - STATE(3789), 1, - sym_overridable_operator, - STATE(4515), 1, - sym_reference_expression, - STATE(4553), 1, - sym_static_receiver, - STATE(3258), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5834), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5832), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [120312] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5828), 1, - sym_identifier, - ACTIONS(5840), 1, - anon_sym_LPAREN, - STATE(3307), 1, - sym_receiver, - STATE(3433), 1, - sym__function_name, - STATE(3789), 1, - sym_overridable_operator, - STATE(4515), 1, - sym_reference_expression, - STATE(4534), 1, - sym_static_receiver, - STATE(3259), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5834), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5832), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [120359] = 5, + [120410] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3260), 2, + STATE(3261), 2, sym_line_comment, sym_block_comment, - ACTIONS(2870), 7, + ACTIONS(2167), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -289945,7 +289958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2868), 11, + ACTIONS(2165), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -289957,43 +289970,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [120392] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1480), 1, - sym___double_quote, - ACTIONS(1482), 1, - sym___single_quote, - ACTIONS(1484), 1, - sym___c_double_quote, - ACTIONS(1486), 1, - sym___c_single_quote, - ACTIONS(1488), 1, - sym___r_double_quote, - ACTIONS(1490), 1, - sym___r_single_quote, - ACTIONS(5842), 1, - sym_identifier, - STATE(4239), 1, - sym_literal, - ACTIONS(1474), 2, - sym_float_literal, - sym_rune_literal, - STATE(3261), 2, - sym_line_comment, - sym_block_comment, - STATE(2401), 3, - sym_c_string_literal, - sym_raw_string_literal, - sym_interpreted_string_literal, - ACTIONS(1458), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, [120443] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -290002,7 +289978,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3262), 2, sym_line_comment, sym_block_comment, - ACTIONS(2918), 7, + ACTIONS(2237), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -290010,7 +289986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2916), 11, + ACTIONS(2235), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -290027,28 +290003,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5828), 1, + ACTIONS(5832), 1, sym_identifier, - ACTIONS(5840), 1, + ACTIONS(5844), 1, anon_sym_LPAREN, - STATE(3293), 1, + STATE(3291), 1, sym_receiver, - STATE(3407), 1, + STATE(3479), 1, sym__function_name, - STATE(3789), 1, + STATE(3768), 1, sym_overridable_operator, - STATE(4515), 1, + STATE(4463), 1, sym_reference_expression, - STATE(4577), 1, + STATE(4559), 1, sym_static_receiver, STATE(3263), 2, sym_line_comment, sym_block_comment, - ACTIONS(5834), 3, + ACTIONS(5838), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5832), 8, + ACTIONS(5836), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -290057,43 +290033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120523] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1641), 1, - anon_sym_LBRACE, - STATE(3891), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3264), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3522), 15, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [120557] = 4, + [120523] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3265), 2, + STATE(3264), 2, sym_line_comment, sym_block_comment, - ACTIONS(5844), 17, + ACTIONS(5848), 17, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290111,19 +290059,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, + [120553] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1755), 1, + anon_sym_LBRACE, + STATE(3862), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3265), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3534), 15, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, [120587] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5846), 1, + ACTIONS(5850), 1, anon_sym_static, - ACTIONS(5848), 1, + ACTIONS(5852), 1, anon_sym_volatile, STATE(3266), 2, sym_line_comment, sym_block_comment, - ACTIONS(4557), 7, + ACTIONS(4575), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -290131,7 +290107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(4559), 8, + ACTIONS(4577), 8, anon_sym_LPAREN, anon_sym_STAR, anon_sym_DOT_DOT_DOT, @@ -290140,45 +290116,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [120623] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - STATE(3267), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5850), 17, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_module, - anon_sym_RBRACE, - anon_sym_const, - anon_sym___global, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_pub, - anon_sym_mut, - anon_sym_enum, - anon_sym_interface, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [120653] = 6, + [120623] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1641), 1, + ACTIONS(1755), 1, anon_sym_SEMI, - STATE(3905), 1, + STATE(3825), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3268), 2, + STATE(3267), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 15, + ACTIONS(3534), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -290194,15 +290144,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120687] = 4, + [120657] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3269), 2, + STATE(3268), 2, sym_line_comment, sym_block_comment, - ACTIONS(3522), 17, + ACTIONS(3534), 17, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -290220,19 +290170,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, + [120687] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3269), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5854), 17, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_module, + anon_sym_RBRACE, + anon_sym_const, + anon_sym___global, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_pub, + anon_sym_mut, + anon_sym_enum, + anon_sym_interface, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, [120717] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5852), 1, - anon_sym_COMMA, - STATE(3272), 1, - aux_sym_strictly_expression_list_repeat1, + ACTIONS(5856), 1, + anon_sym_volatile, STATE(3270), 2, sym_line_comment, sym_block_comment, - ACTIONS(3999), 14, + ACTIONS(4910), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4912), 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, + [120750] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5858), 1, + anon_sym_COMMA, + STATE(3271), 3, + sym_line_comment, + sym_block_comment, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(3534), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290247,19 +290249,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120750] = 6, + [120781] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5854), 1, + ACTIONS(4751), 1, anon_sym_COMMA, - STATE(3270), 1, + STATE(3275), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3271), 2, + STATE(3272), 2, sym_line_comment, sym_block_comment, - ACTIONS(3484), 14, + ACTIONS(3488), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290274,18 +290276,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120783] = 5, + [120814] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5856), 1, + ACTIONS(4795), 1, anon_sym_COMMA, - STATE(3272), 3, + STATE(3278), 1, + aux_sym_expression_without_blocks_list_repeat1, + STATE(3273), 2, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3522), 14, + ACTIONS(5861), 14, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290299,20 +290303,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, - [120814] = 5, + [120847] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5859), 1, + ACTIONS(5863), 1, anon_sym_COMMA, - STATE(3273), 3, + STATE(3275), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3274), 2, sym_line_comment, sym_block_comment, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(4838), 14, - anon_sym_LBRACE, + ACTIONS(3488), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290326,20 +290329,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [120845] = 6, + anon_sym_COLON_EQ, + [120880] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4795), 1, + ACTIONS(5865), 1, anon_sym_COMMA, - STATE(3273), 1, - aux_sym_expression_without_blocks_list_repeat1, - STATE(3274), 2, + STATE(3271), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3275), 2, sym_line_comment, sym_block_comment, - ACTIONS(5862), 14, - anon_sym_LBRACE, + ACTIONS(4007), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290353,19 +290356,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [120878] = 6, + anon_sym_COLON_EQ, + [120913] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4665), 1, + ACTIONS(4679), 1, anon_sym_COMMA, - STATE(3270), 1, + STATE(3275), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3275), 2, + STATE(3276), 2, sym_line_comment, sym_block_comment, - ACTIONS(3484), 14, + ACTIONS(3488), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290380,19 +290384,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120911] = 6, + [120946] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4757), 1, + ACTIONS(5867), 1, anon_sym_COMMA, - STATE(3270), 1, + STATE(3275), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3276), 2, + STATE(3277), 2, sym_line_comment, sym_block_comment, - ACTIONS(3484), 14, + ACTIONS(3488), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290407,46 +290411,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [120944] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5864), 1, - anon_sym_volatile, - STATE(3277), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4900), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4902), 8, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [120977] = 6, + [120979] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, + ACTIONS(5869), 1, anon_sym_COMMA, - STATE(3270), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3278), 2, + STATE(3278), 3, sym_line_comment, sym_block_comment, - ACTIONS(3484), 14, + aux_sym_expression_without_blocks_list_repeat1, + ACTIONS(4830), 14, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290460,20 +290437,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, [121010] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5868), 1, + ACTIONS(5872), 1, anon_sym_LBRACE, - STATE(4393), 1, + STATE(4494), 1, sym__select_arm_assignment_statement, STATE(3279), 2, sym_line_comment, sym_block_comment, - ACTIONS(5870), 13, + ACTIONS(5874), 13, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290494,19 +290470,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5872), 1, + ACTIONS(5876), 1, sym_identifier, - ACTIONS(5874), 1, + ACTIONS(5878), 1, anon_sym_RBRACE, - STATE(3282), 1, + STATE(3281), 1, aux_sym__interface_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, @@ -290514,80 +290490,56 @@ static const uint16_t ts_small_parse_table[] = { STATE(3280), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3389), 3, + STATE(3395), 3, sym_struct_field_scope, sym_struct_field_declaration, sym_interface_method_definition, - [121090] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(3281), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4920), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4922), 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, - [121120] = 13, + [121090] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(651), 1, + anon_sym_pub, ACTIONS(5876), 1, sym_identifier, - ACTIONS(5879), 1, + ACTIONS(5880), 1, anon_sym_RBRACE, - ACTIONS(5884), 1, - anon_sym_pub, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3284), 1, + aux_sym__interface_body_repeat1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, - ACTIONS(5881), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3365), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3282), 3, + STATE(3281), 2, sym_line_comment, sym_block_comment, - aux_sym__interface_body_repeat1, - STATE(3389), 3, + STATE(3364), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3395), 3, sym_struct_field_scope, sym_struct_field_declaration, sym_interface_method_definition, - [121166] = 5, + [121138] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3283), 2, + STATE(3282), 2, sym_line_comment, sym_block_comment, - ACTIONS(4900), 7, + ACTIONS(4910), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -290595,7 +290547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(4902), 8, + ACTIONS(4912), 8, anon_sym_LPAREN, anon_sym_STAR, anon_sym_DOT_DOT_DOT, @@ -290604,323 +290556,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [121196] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5872), 1, - sym_identifier, - ACTIONS(5887), 1, - anon_sym_RBRACE, - STATE(3280), 1, - aux_sym__interface_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, - sym_embedded_definition, - STATE(3401), 1, - sym_generic_type, - STATE(4351), 1, - sym_reference_expression, - ACTIONS(639), 2, - anon_sym___global, - anon_sym_mut, - STATE(3284), 2, - sym_line_comment, - sym_block_comment, - STATE(3365), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3389), 3, - sym_struct_field_scope, - sym_struct_field_declaration, - sym_interface_method_definition, - [121244] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5889), 1, - sym_identifier, - ACTIONS(5891), 1, - anon_sym_RBRACE, - STATE(3296), 1, - aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, - sym_embedded_definition, - STATE(3401), 1, - sym_generic_type, - STATE(4351), 1, - sym_reference_expression, - ACTIONS(639), 2, - anon_sym___global, - anon_sym_mut, - STATE(3285), 2, - sym_line_comment, - sym_block_comment, - STATE(3365), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3390), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [121291] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5889), 1, - sym_identifier, - ACTIONS(5893), 1, - anon_sym_RBRACE, - STATE(3313), 1, - aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, - sym_embedded_definition, - STATE(3401), 1, - sym_generic_type, - STATE(4351), 1, - sym_reference_expression, - ACTIONS(639), 2, - anon_sym___global, - anon_sym_mut, - STATE(3286), 2, - sym_line_comment, - sym_block_comment, - STATE(3365), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3390), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [121338] = 14, + [121168] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5889), 1, - sym_identifier, - ACTIONS(5895), 1, - anon_sym_RBRACE, - STATE(3300), 1, - aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, - sym_embedded_definition, - STATE(3401), 1, - sym_generic_type, - STATE(4351), 1, - sym_reference_expression, - ACTIONS(639), 2, - anon_sym___global, - anon_sym_mut, - STATE(3287), 2, + STATE(3283), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3390), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [121385] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(4952), 7, + anon_sym_fn, + anon_sym_struct, sym_identifier, - ACTIONS(5897), 1, - anon_sym_RBRACE, - STATE(3317), 1, - aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, - sym_embedded_definition, - STATE(3401), 1, - sym_generic_type, - STATE(4351), 1, - sym_reference_expression, - ACTIONS(639), 2, - anon_sym___global, - anon_sym_mut, - STATE(3288), 2, - sym_line_comment, - sym_block_comment, - STATE(3365), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3390), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [121432] = 14, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4954), 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, + [121198] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5882), 1, sym_identifier, - ACTIONS(5899), 1, + ACTIONS(5885), 1, anon_sym_RBRACE, - STATE(3291), 1, - aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, - sym_embedded_definition, - STATE(3401), 1, - sym_generic_type, - STATE(4351), 1, - sym_reference_expression, - ACTIONS(639), 2, - anon_sym___global, - anon_sym_mut, - STATE(3289), 2, - sym_line_comment, - sym_block_comment, - STATE(3365), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3390), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [121479] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(651), 1, + ACTIONS(5890), 1, anon_sym_pub, - ACTIONS(5889), 1, - sym_identifier, - ACTIONS(5901), 1, - anon_sym_RBRACE, - STATE(3310), 1, - aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, - sym_reference_expression, - ACTIONS(639), 2, - anon_sym___global, - anon_sym_mut, - STATE(3290), 2, - sym_line_comment, - sym_block_comment, - STATE(3365), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3390), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [121526] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5889), 1, - sym_identifier, - ACTIONS(5903), 1, - anon_sym_RBRACE, - STATE(3310), 1, - aux_sym__struct_body_repeat1, STATE(3391), 1, sym__struct_field_definition, - STATE(3392), 1, - sym_embedded_definition, - STATE(3401), 1, - sym_generic_type, - STATE(4351), 1, + STATE(4356), 1, sym_reference_expression, - ACTIONS(639), 2, + ACTIONS(5887), 2, anon_sym___global, anon_sym_mut, - STATE(3291), 2, - sym_line_comment, - sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [121573] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5889), 1, - sym_identifier, - ACTIONS(5905), 1, - anon_sym_RBRACE, - STATE(3297), 1, - aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, - sym_embedded_definition, - STATE(3401), 1, - sym_generic_type, - STATE(4351), 1, - sym_reference_expression, - ACTIONS(639), 2, - anon_sym___global, - anon_sym_mut, - STATE(3292), 2, + STATE(3284), 3, sym_line_comment, sym_block_comment, - STATE(3365), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3390), 2, + aux_sym__interface_body_repeat1, + STATE(3395), 3, sym_struct_field_scope, sym_struct_field_declaration, - [121620] = 8, + sym_interface_method_definition, + [121244] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5907), 1, + ACTIONS(5893), 1, sym_identifier, - STATE(3432), 1, + STATE(3493), 1, sym__function_name, - STATE(3789), 1, + STATE(3768), 1, sym_overridable_operator, - STATE(3293), 2, + STATE(3285), 2, sym_line_comment, sym_block_comment, - ACTIONS(5834), 3, + ACTIONS(5838), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5832), 8, + ACTIONS(5836), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -290929,151 +290641,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121655] = 8, + [121279] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5907), 1, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5895), 1, sym_identifier, - STATE(3414), 1, - sym__function_name, - STATE(3789), 1, - sym_overridable_operator, - STATE(3294), 2, + ACTIONS(5897), 1, + anon_sym_RBRACE, + STATE(3303), 1, + aux_sym__struct_body_repeat1, + STATE(3386), 1, + sym_embedded_definition, + STATE(3390), 1, + sym_generic_type, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3286), 2, sym_line_comment, - sym_block_comment, - ACTIONS(5834), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5832), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [121690] = 14, + sym_block_comment, + STATE(3364), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3389), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [121326] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(635), 1, + anon_sym_RBRACE, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5909), 1, - anon_sym_RBRACE, - STATE(3322), 1, + STATE(3326), 1, aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3295), 2, + STATE(3287), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121737] = 14, + [121373] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2055), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK, + STATE(3288), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2159), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [121404] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5911), 1, + ACTIONS(5899), 1, anon_sym_RBRACE, - STATE(3310), 1, + STATE(3320), 1, aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3296), 2, + STATE(3289), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121784] = 14, + [121451] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5913), 1, + ACTIONS(5901), 1, anon_sym_RBRACE, - STATE(3310), 1, + STATE(3303), 1, aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3297), 2, + STATE(3290), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121831] = 8, + [121498] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5907), 1, + ACTIONS(5893), 1, sym_identifier, - STATE(3420), 1, + STATE(3478), 1, sym__function_name, - STATE(3789), 1, + STATE(3768), 1, sym_overridable_operator, - STATE(3298), 2, + STATE(3291), 2, sym_line_comment, sym_block_comment, - ACTIONS(5834), 3, + ACTIONS(5838), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5832), 8, + ACTIONS(5836), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -291082,91 +290825,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121866] = 14, + [121533] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3292), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5903), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + ACTIONS(5905), 11, + anon_sym_module, + anon_sym_const, + anon_sym___global, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_pub, + anon_sym_enum, + anon_sym_interface, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + [121562] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5915), 1, + ACTIONS(5907), 1, anon_sym_RBRACE, - STATE(3302), 1, + STATE(3303), 1, aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3299), 2, + STATE(3293), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [121913] = 14, + [121609] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(5889), 1, - sym_identifier, - ACTIONS(5917), 1, + ACTIONS(5911), 1, + anon_sym_COLON_EQ, + STATE(3294), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5909), 13, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [121638] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2157), 1, + anon_sym_LBRACK, + STATE(3295), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2159), 13, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(3310), 1, - aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, - sym_embedded_definition, - STATE(3401), 1, - sym_generic_type, - STATE(4351), 1, - sym_reference_expression, - ACTIONS(639), 2, + anon_sym_EQ, anon_sym___global, + anon_sym_pub, anon_sym_mut, - STATE(3300), 2, - sym_line_comment, - sym_block_comment, - STATE(3365), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3390), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [121960] = 8, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [121667] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5907), 1, + ACTIONS(5893), 1, sym_identifier, - STATE(3427), 1, + STATE(3433), 1, sym__function_name, - STATE(3789), 1, + STATE(3768), 1, sym_overridable_operator, - STATE(3301), 2, + STATE(3296), 2, sym_line_comment, sym_block_comment, - ACTIONS(5834), 3, + ACTIONS(5838), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5832), 8, + ACTIONS(5836), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -291175,118 +290957,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121995] = 14, + [121702] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5919), 1, + ACTIONS(5913), 1, anon_sym_RBRACE, - STATE(3310), 1, + STATE(3311), 1, aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3302), 2, + STATE(3297), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122042] = 14, + [121749] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5921), 1, + ACTIONS(5915), 1, anon_sym_RBRACE, - STATE(3310), 1, + STATE(3303), 1, aux_sym__struct_body_repeat1, + STATE(3386), 1, + sym_embedded_definition, + STATE(3390), 1, + sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3392), 1, + STATE(4356), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3298), 2, + sym_line_comment, + sym_block_comment, + STATE(3364), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3389), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [121796] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2153), 1, + anon_sym_LBRACK, + STATE(3299), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2155), 13, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [121825] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5895), 1, + sym_identifier, + ACTIONS(5917), 1, + anon_sym_RBRACE, + STATE(3323), 1, + aux_sym__struct_body_repeat1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3303), 2, + STATE(3300), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122089] = 14, + [121872] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5923), 1, + ACTIONS(5919), 1, anon_sym_RBRACE, STATE(3303), 1, aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3304), 2, + STATE(3301), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122136] = 6, + [121919] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5925), 1, + ACTIONS(5921), 1, anon_sym_LBRACK, STATE(3334), 1, sym_type_parameters, - STATE(3305), 2, + STATE(3302), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 12, + ACTIONS(1899), 12, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291299,95 +291138,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [122167] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5929), 1, - anon_sym_COLON_EQ, - STATE(3306), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5927), 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, - [122196] = 8, + [121950] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5907), 1, + ACTIONS(5923), 1, sym_identifier, - STATE(3402), 1, - sym__function_name, - STATE(3789), 1, - sym_overridable_operator, - STATE(3307), 2, + ACTIONS(5926), 1, + anon_sym_RBRACE, + ACTIONS(5931), 1, + anon_sym_pub, + STATE(3386), 1, + sym_embedded_definition, + STATE(3390), 1, + sym_generic_type, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, + sym_reference_expression, + ACTIONS(5928), 2, + anon_sym___global, + anon_sym_mut, + STATE(3364), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3389), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + STATE(3303), 3, sym_line_comment, sym_block_comment, - ACTIONS(5834), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5832), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [122231] = 8, + aux_sym__struct_body_repeat1, + [121995] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5907), 1, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5895), 1, sym_identifier, - STATE(3406), 1, - sym__function_name, - STATE(3789), 1, - sym_overridable_operator, - STATE(3308), 2, + ACTIONS(5934), 1, + anon_sym_RBRACE, + STATE(3316), 1, + aux_sym__struct_body_repeat1, + STATE(3386), 1, + sym_embedded_definition, + STATE(3390), 1, + sym_generic_type, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3304), 2, sym_line_comment, sym_block_comment, - ACTIONS(5834), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5832), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [122266] = 5, + STATE(3364), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3389), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [122042] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5933), 1, + ACTIONS(5938), 1, anon_sym_COLON_EQ, - STATE(3309), 2, + STATE(3305), 2, sym_line_comment, sym_block_comment, - ACTIONS(5931), 13, + ACTIONS(5936), 13, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -291401,90 +291227,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [122295] = 13, + [122071] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5935), 1, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5938), 1, + ACTIONS(5940), 1, anon_sym_RBRACE, - ACTIONS(5943), 1, - anon_sym_pub, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3303), 1, + aux_sym__struct_body_repeat1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, - ACTIONS(5940), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3365), 2, + STATE(3306), 2, + sym_line_comment, + sym_block_comment, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - STATE(3310), 3, + [122118] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5895), 1, + sym_identifier, + ACTIONS(5942), 1, + anon_sym_RBRACE, + STATE(3303), 1, + aux_sym__struct_body_repeat1, + STATE(3386), 1, + sym_embedded_definition, + STATE(3390), 1, + sym_generic_type, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3307), 2, sym_line_comment, sym_block_comment, - aux_sym__struct_body_repeat1, - [122340] = 14, + STATE(3364), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3389), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [122165] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(635), 1, - anon_sym_RBRACE, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - STATE(3324), 1, + ACTIONS(5944), 1, + anon_sym_RBRACE, + STATE(3301), 1, aux_sym__struct_body_repeat1, + STATE(3386), 1, + sym_embedded_definition, + STATE(3390), 1, + sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3392), 1, + STATE(4356), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3308), 2, + sym_line_comment, + sym_block_comment, + STATE(3364), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3389), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [122212] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5895), 1, + sym_identifier, + ACTIONS(5946), 1, + anon_sym_RBRACE, + STATE(3329), 1, + aux_sym__struct_body_repeat1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3311), 2, + STATE(3309), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122387] = 8, + [122259] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5907), 1, + ACTIONS(5893), 1, sym_identifier, - STATE(3409), 1, + STATE(3474), 1, sym__function_name, - STATE(3789), 1, + STATE(3768), 1, sym_overridable_operator, - STATE(3312), 2, + STATE(3310), 2, sym_line_comment, sym_block_comment, - ACTIONS(5834), 3, + ACTIONS(5838), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5832), 8, + ACTIONS(5836), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -291493,91 +291386,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122422] = 14, + [122294] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5946), 1, + ACTIONS(5948), 1, anon_sym_RBRACE, - STATE(3310), 1, + STATE(3303), 1, aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3313), 2, + STATE(3311), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122469] = 14, + [122341] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5948), 1, + ACTIONS(5950), 1, anon_sym_RBRACE, - STATE(3318), 1, + STATE(3298), 1, aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3314), 2, + STATE(3312), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122516] = 8, + [122388] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5907), 1, + ACTIONS(5954), 1, + anon_sym_COLON_EQ, + STATE(3313), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5952), 13, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [122417] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5893), 1, sym_identifier, - STATE(3404), 1, + STATE(3507), 1, sym__function_name, - STATE(3789), 1, + STATE(3768), 1, sym_overridable_operator, - STATE(3315), 2, + STATE(3314), 2, sym_line_comment, sym_block_comment, - ACTIONS(5834), 3, + ACTIONS(5838), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5832), 8, + ACTIONS(5836), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -291586,26 +291503,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122551] = 14, + [122452] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5950), 1, + ACTIONS(5956), 1, anon_sym_RBRACE, - STATE(3310), 1, + STATE(3286), 1, aux_sym__struct_body_repeat1, + STATE(3386), 1, + sym_embedded_definition, + STATE(3390), 1, + sym_generic_type, STATE(3391), 1, sym__struct_field_definition, - STATE(3392), 1, + STATE(4356), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3315), 2, + sym_line_comment, + sym_block_comment, + STATE(3364), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3389), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [122499] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5895), 1, + sym_identifier, + ACTIONS(5958), 1, + anon_sym_RBRACE, + STATE(3303), 1, + aux_sym__struct_body_repeat1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, @@ -291613,32 +291563,32 @@ static const uint16_t ts_small_parse_table[] = { STATE(3316), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122598] = 14, + [122546] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5952), 1, + ACTIONS(5960), 1, anon_sym_RBRACE, - STATE(3310), 1, + STATE(3293), 1, aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, @@ -291646,32 +291596,32 @@ static const uint16_t ts_small_parse_table[] = { STATE(3317), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122645] = 14, + [122593] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5954), 1, + ACTIONS(5962), 1, anon_sym_RBRACE, - STATE(3310), 1, + STATE(3303), 1, aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, @@ -291679,56 +291629,56 @@ static const uint16_t ts_small_parse_table[] = { STATE(3318), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122692] = 5, - ACTIONS(497), 1, + [122640] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(5966), 1, + anon_sym_COLON_EQ, STATE(3319), 2, sym_line_comment, sym_block_comment, - ACTIONS(5956), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - ACTIONS(5958), 11, - anon_sym_module, - anon_sym_const, - anon_sym___global, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_pub, - anon_sym_enum, - anon_sym_interface, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - [122721] = 14, + ACTIONS(5964), 13, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [122669] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5960), 1, + ACTIONS(5968), 1, anon_sym_RBRACE, - STATE(3290), 1, + STATE(3303), 1, aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, @@ -291736,171 +291686,185 @@ static const uint16_t ts_small_parse_table[] = { STATE(3320), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122768] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1889), 1, - anon_sym_DOT, - ACTIONS(2473), 1, - anon_sym_LBRACK, - STATE(3321), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2475), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [122799] = 14, + [122716] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5962), 1, + ACTIONS(5970), 1, anon_sym_RBRACE, - STATE(3310), 1, + STATE(3318), 1, aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3322), 2, + STATE(3321), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122846] = 5, + [122763] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5966), 1, - anon_sym_COLON_EQ, - STATE(3323), 2, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5895), 1, + sym_identifier, + ACTIONS(5972), 1, + anon_sym_RBRACE, + STATE(3290), 1, + aux_sym__struct_body_repeat1, + STATE(3386), 1, + sym_embedded_definition, + STATE(3390), 1, + sym_generic_type, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3322), 2, sym_line_comment, sym_block_comment, - ACTIONS(5964), 13, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [122875] = 14, + STATE(3364), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3389), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [122810] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5968), 1, + ACTIONS(5974), 1, anon_sym_RBRACE, - STATE(3310), 1, + STATE(3303), 1, aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3324), 2, + STATE(3323), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122922] = 5, - ACTIONS(497), 1, + [122857] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2473), 1, - anon_sym_LBRACK, - STATE(3325), 2, + ACTIONS(5893), 1, + sym_identifier, + STATE(3498), 1, + sym__function_name, + STATE(3768), 1, + sym_overridable_operator, + STATE(3324), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, + ACTIONS(5838), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5836), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [122892] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5893), 1, sym_identifier, - anon_sym_AT_LBRACK, - [122951] = 14, + STATE(3483), 1, + sym__function_name, + STATE(3768), 1, + sym_overridable_operator, + STATE(3325), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5838), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5836), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [122927] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5970), 1, + ACTIONS(5976), 1, anon_sym_RBRACE, - STATE(3328), 1, + STATE(3303), 1, aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, @@ -291908,56 +291872,65 @@ static const uint16_t ts_small_parse_table[] = { STATE(3326), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [122998] = 5, - ACTIONS(497), 1, + [122974] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2770), 1, - anon_sym_LBRACK, - STATE(3327), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2772), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(5895), 1, + sym_identifier, + ACTIONS(5978), 1, anon_sym_RBRACE, - anon_sym_EQ, + STATE(3306), 1, + aux_sym__struct_body_repeat1, + STATE(3386), 1, + sym_embedded_definition, + STATE(3390), 1, + sym_generic_type, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, + sym_reference_expression, + ACTIONS(639), 2, anon_sym___global, - anon_sym_pub, anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [123027] = 14, + STATE(3327), 2, + sym_line_comment, + sym_block_comment, + STATE(3364), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3389), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [123021] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5972), 1, + ACTIONS(5980), 1, anon_sym_RBRACE, - STATE(3310), 1, + STATE(3307), 1, aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, @@ -291965,32 +291938,32 @@ static const uint16_t ts_small_parse_table[] = { STATE(3328), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [123074] = 14, + [123068] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5889), 1, + ACTIONS(5895), 1, sym_identifier, - ACTIONS(5974), 1, + ACTIONS(5982), 1, anon_sym_RBRACE, - STATE(3316), 1, + STATE(3303), 1, aux_sym__struct_body_repeat1, - STATE(3391), 1, - sym__struct_field_definition, - STATE(3392), 1, + STATE(3386), 1, sym_embedded_definition, - STATE(3401), 1, + STATE(3390), 1, sym_generic_type, - STATE(4351), 1, + STATE(3391), 1, + sym__struct_field_definition, + STATE(4356), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, @@ -291998,52 +291971,77 @@ static const uint16_t ts_small_parse_table[] = { STATE(3329), 2, sym_line_comment, sym_block_comment, - STATE(3365), 2, + STATE(3364), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3390), 2, + STATE(3389), 2, sym_struct_field_scope, sym_struct_field_declaration, - [123121] = 5, + [123115] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5978), 1, - anon_sym_COLON_EQ, + ACTIONS(5893), 1, + sym_identifier, + STATE(3486), 1, + sym__function_name, + STATE(3768), 1, + sym_overridable_operator, STATE(3330), 2, sym_line_comment, sym_block_comment, - ACTIONS(5976), 13, + ACTIONS(5838), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5836), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [123150] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3331), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2133), 13, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [123150] = 7, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [123176] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3319), 1, + STATE(3292), 1, sym_attribute, STATE(3335), 1, aux_sym_attributes_repeat1, - ACTIONS(113), 2, + ACTIONS(125), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - STATE(3331), 2, + STATE(3332), 2, sym_line_comment, sym_block_comment, - ACTIONS(5980), 9, + ACTIONS(5984), 9, anon_sym_module, anon_sym_const, anon_sym___global, @@ -292053,28 +292051,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_enum, anon_sym_interface, - [123182] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - STATE(3332), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2768), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, [123208] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, @@ -292083,7 +292059,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3333), 2, sym_line_comment, sym_block_comment, - ACTIONS(2728), 13, + ACTIONS(2151), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292105,7 +292081,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3334), 2, sym_line_comment, sym_block_comment, - ACTIONS(2840), 13, + ACTIONS(2163), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292124,16 +292100,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3319), 1, + STATE(3292), 1, sym_attribute, - ACTIONS(5984), 2, + ACTIONS(5988), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, STATE(3335), 3, sym_line_comment, sym_block_comment, aux_sym_attributes_repeat1, - ACTIONS(5982), 9, + ACTIONS(5986), 9, anon_sym_module, anon_sym_const, anon_sym___global, @@ -292151,11 +292127,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(3336), 2, sym_line_comment, sym_block_comment, - ACTIONS(5989), 3, + ACTIONS(5993), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5987), 9, + ACTIONS(5991), 9, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -292170,17 +292146,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5993), 1, + ACTIONS(5997), 1, anon_sym_EQ, - STATE(3399), 1, + STATE(3393), 1, sym_attribute, - ACTIONS(4878), 2, + ACTIONS(4888), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, STATE(3337), 2, sym_line_comment, sym_block_comment, - ACTIONS(5991), 8, + ACTIONS(5995), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292197,11 +292173,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(3338), 2, sym_line_comment, sym_block_comment, - ACTIONS(5997), 3, + ACTIONS(6001), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5995), 9, + ACTIONS(5999), 9, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -292219,7 +292195,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3339), 2, sym_line_comment, sym_block_comment, - ACTIONS(2680), 11, + ACTIONS(2253), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292239,7 +292215,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3340), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 11, + ACTIONS(2221), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292259,7 +292235,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3341), 2, sym_line_comment, sym_block_comment, - ACTIONS(2668), 11, + ACTIONS(2185), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292279,7 +292255,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3342), 2, sym_line_comment, sym_block_comment, - ACTIONS(2906), 11, + ACTIONS(2209), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292291,49 +292267,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123471] = 6, + [123471] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3386), 1, - sym_attribute, - ACTIONS(4878), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, STATE(3343), 2, sym_line_comment, sym_block_comment, - ACTIONS(5999), 8, + ACTIONS(2273), 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, - [123499] = 4, - ACTIONS(3), 1, + anon_sym_AT_LBRACK, + [123495] = 7, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(5921), 1, + anon_sym_LBRACK, + STATE(3334), 1, + sym_type_parameters, STATE(3344), 2, sym_line_comment, sym_block_comment, - ACTIONS(5982), 11, - anon_sym_module, - anon_sym_const, + ACTIONS(6003), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, anon_sym___global, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, anon_sym_pub, - anon_sym_enum, - anon_sym_interface, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - [123523] = 4, + anon_sym_mut, + sym_identifier, + [123525] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -292341,7 +292318,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3345), 2, sym_line_comment, sym_block_comment, - ACTIONS(3062), 11, + ACTIONS(2175), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292353,30 +292330,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123547] = 7, + [123549] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1881), 1, - anon_sym_LBRACE, - ACTIONS(5925), 1, - anon_sym_LBRACK, - STATE(3334), 1, - sym_type_parameters, STATE(3346), 2, sym_line_comment, sym_block_comment, - ACTIONS(6001), 8, + ACTIONS(2213), 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, - [123577] = 4, + anon_sym_AT_LBRACK, + [123573] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -292384,7 +292358,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 11, + ACTIONS(2181), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292396,46 +292370,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123601] = 4, - ACTIONS(497), 1, + [123597] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, STATE(3348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2684), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(5986), 11, + anon_sym_module, + anon_sym_const, anon_sym___global, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, anon_sym_pub, - anon_sym_mut, + anon_sym_enum, + anon_sym_interface, anon_sym_LBRACK2, - sym_identifier, anon_sym_AT_LBRACK, - [123625] = 4, + [123621] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, + STATE(3394), 1, + sym_attribute, + ACTIONS(4888), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, STATE(3349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2688), 11, + ACTIONS(6005), 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, [123649] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, @@ -292444,7 +292420,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2692), 11, + ACTIONS(2423), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292464,7 +292440,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2700), 11, + ACTIONS(2217), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292484,7 +292460,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3352), 2, sym_line_comment, sym_block_comment, - ACTIONS(2902), 11, + ACTIONS(2189), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292504,7 +292480,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3353), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 11, + ACTIONS(2245), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292524,7 +292500,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3354), 2, sym_line_comment, sym_block_comment, - ACTIONS(2724), 11, + ACTIONS(1899), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292544,7 +292520,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3355), 2, sym_line_comment, sym_block_comment, - ACTIONS(2137), 11, + ACTIONS(2269), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292556,29 +292532,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123793] = 6, + [123793] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3394), 1, - sym_attribute, - ACTIONS(4878), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, STATE(3356), 2, sym_line_comment, sym_block_comment, - ACTIONS(6003), 8, + ACTIONS(2261), 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, - [123821] = 4, + anon_sym_AT_LBRACK, + [123817] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -292586,7 +292560,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3357), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 11, + ACTIONS(2225), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292598,7 +292572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123845] = 4, + [123841] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -292606,7 +292580,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3358), 2, sym_line_comment, sym_block_comment, - ACTIONS(2744), 11, + ACTIONS(2205), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292618,26 +292592,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123869] = 4, + [123865] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, + STATE(3385), 1, + sym_attribute, + ACTIONS(4888), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, STATE(3359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2750), 11, + ACTIONS(6007), 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, [123893] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, @@ -292646,7 +292622,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3360), 2, sym_line_comment, sym_block_comment, - ACTIONS(2756), 11, + ACTIONS(2427), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292666,7 +292642,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3361), 2, sym_line_comment, sym_block_comment, - ACTIONS(3058), 11, + ACTIONS(2249), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292686,7 +292662,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3362), 2, sym_line_comment, sym_block_comment, - ACTIONS(2509), 11, + ACTIONS(2201), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292706,7 +292682,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3363), 2, sym_line_comment, sym_block_comment, - ACTIONS(2714), 11, + ACTIONS(2229), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292718,41 +292694,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [123989] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6005), 1, - sym_identifier, - ACTIONS(6009), 1, - anon_sym_LPAREN, - STATE(1565), 1, - sym_global_var_definition, - STATE(3364), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6007), 7, - anon_sym_const, - anon_sym_type, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_interface, - [124018] = 6, + [123989] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5925), 1, + ACTIONS(5921), 1, anon_sym_LBRACK, STATE(3334), 1, sym_type_parameters, - STATE(3365), 2, + STATE(3364), 2, sym_line_comment, sym_block_comment, - ACTIONS(6001), 8, + ACTIONS(6003), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -292761,416 +292715,438 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [124045] = 12, + [124016] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6011), 1, + ACTIONS(6009), 1, anon_sym_module, - ACTIONS(6013), 1, + ACTIONS(6011), 1, anon_sym_const, - ACTIONS(6015), 1, + ACTIONS(6013), 1, anon_sym___global, - ACTIONS(6017), 1, + ACTIONS(6015), 1, anon_sym_fn, - ACTIONS(6021), 1, + ACTIONS(6019), 1, anon_sym_pub, - ACTIONS(6023), 1, + ACTIONS(6021), 1, anon_sym_enum, - ACTIONS(6025), 1, + ACTIONS(6023), 1, anon_sym_interface, - STATE(3547), 1, + STATE(3537), 1, sym_visibility_modifiers, - ACTIONS(6019), 2, + ACTIONS(6017), 2, anon_sym_struct, anon_sym_union, + STATE(3365), 2, + sym_line_comment, + sym_block_comment, + [124055] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6025), 1, + sym_identifier, + ACTIONS(6029), 1, + anon_sym_LPAREN, + STATE(1553), 1, + sym_global_var_definition, STATE(3366), 2, sym_line_comment, sym_block_comment, + ACTIONS(6027), 7, + anon_sym_const, + anon_sym_type, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_interface, [124084] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5838), 1, + ACTIONS(5842), 1, anon_sym_LBRACK2, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(3415), 1, + STATE(3481), 1, sym_capture_list, - STATE(3556), 1, - sym_signature, - STATE(3754), 1, + STATE(3731), 1, sym_generic_parameters, - ACTIONS(4918), 2, + STATE(4109), 1, + sym_signature, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, STATE(3367), 2, sym_line_comment, sym_block_comment, - [124118] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - STATE(3368), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1889), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - sym_identifier, - [124140] = 10, + [124118] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5838), 1, + ACTIONS(5842), 1, anon_sym_LBRACK2, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(3416), 1, + STATE(3529), 1, sym_capture_list, - STATE(3743), 1, - sym_generic_parameters, - STATE(4156), 1, + STATE(3556), 1, sym_signature, - ACTIONS(4918), 2, + STATE(3666), 1, + sym_generic_parameters, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3369), 2, + STATE(3368), 2, sym_line_comment, sym_block_comment, - [124174] = 6, + [124152] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3754), 1, + ACTIONS(3786), 1, anon_sym_COLON, - STATE(3370), 2, + STATE(3369), 2, sym_line_comment, sym_block_comment, - ACTIONS(3752), 3, + ACTIONS(3784), 3, anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, sym_identifier, - ACTIONS(6029), 5, + ACTIONS(6033), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [124200] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(1881), 1, - anon_sym_LBRACE, - STATE(3371), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6001), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [124224] = 7, + [124178] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6005), 1, - sym_identifier, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(1484), 1, - sym_global_var_definition, - STATE(3372), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6007), 6, - anon_sym_const, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_interface, - [124252] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5838), 1, + ACTIONS(5842), 1, anon_sym_LBRACK2, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(3430), 1, + STATE(3446), 1, sym_capture_list, - STATE(3630), 1, + STATE(3698), 1, sym_generic_parameters, - STATE(4124), 1, + STATE(4273), 1, sym_signature, - ACTIONS(4918), 2, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3373), 2, - sym_line_comment, - sym_block_comment, - [124286] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6013), 1, - anon_sym_const, - ACTIONS(6015), 1, - anon_sym___global, - ACTIONS(6017), 1, - anon_sym_fn, - ACTIONS(6021), 1, - anon_sym_pub, - ACTIONS(6023), 1, - anon_sym_enum, - ACTIONS(6025), 1, - anon_sym_interface, - STATE(3547), 1, - sym_visibility_modifiers, - ACTIONS(6019), 2, - anon_sym_struct, - anon_sym_union, - STATE(3374), 2, - sym_line_comment, - sym_block_comment, - [124322] = 7, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6035), 1, - anon_sym_EQ, - STATE(3578), 1, - sym_attribute, - ACTIONS(4878), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - STATE(3375), 2, + STATE(3370), 2, sym_line_comment, sym_block_comment, - ACTIONS(6033), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [124350] = 10, + [124212] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5838), 1, + ACTIONS(5842), 1, anon_sym_LBRACK2, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(3426), 1, + STATE(3524), 1, sym_capture_list, - STATE(3582), 1, + STATE(3672), 1, sym_generic_parameters, - STATE(3928), 1, + STATE(4089), 1, sym_signature, - ACTIONS(4918), 2, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3376), 2, + STATE(3371), 2, sym_line_comment, sym_block_comment, - [124384] = 10, + [124246] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5838), 1, + ACTIONS(5842), 1, anon_sym_LBRACK2, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(3423), 1, + STATE(3412), 1, sym_capture_list, - STATE(3633), 1, + STATE(3694), 1, sym_generic_parameters, - STATE(4270), 1, + STATE(4033), 1, sym_signature, - ACTIONS(4918), 2, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3377), 2, + STATE(3372), 2, sym_line_comment, sym_block_comment, - [124418] = 10, + [124280] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5838), 1, + ACTIONS(5842), 1, anon_sym_LBRACK2, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(3412), 1, + STATE(3448), 1, sym_capture_list, - STATE(3580), 1, + STATE(3644), 1, sym_generic_parameters, - STATE(4111), 1, + STATE(4220), 1, sym_signature, - ACTIONS(4918), 2, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3378), 2, + STATE(3373), 2, sym_line_comment, sym_block_comment, - [124452] = 10, + [124314] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5838), 1, + ACTIONS(5842), 1, anon_sym_LBRACK2, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(3424), 1, + STATE(3514), 1, sym_capture_list, - STATE(3605), 1, + STATE(3725), 1, sym_generic_parameters, - STATE(4295), 1, + STATE(4234), 1, sym_signature, - ACTIONS(4918), 2, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3379), 2, + STATE(3374), 2, sym_line_comment, sym_block_comment, - [124486] = 10, + [124348] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5838), 1, + ACTIONS(5842), 1, anon_sym_LBRACK2, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(3425), 1, + STATE(3462), 1, sym_capture_list, - STATE(3589), 1, + STATE(3649), 1, sym_generic_parameters, - STATE(4169), 1, + STATE(4245), 1, sym_signature, - ACTIONS(4918), 2, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3380), 2, + STATE(3375), 2, sym_line_comment, sym_block_comment, - [124520] = 10, + [124382] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5838), 1, + ACTIONS(5842), 1, anon_sym_LBRACK2, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(3417), 1, + STATE(3435), 1, sym_capture_list, - STATE(3714), 1, + STATE(3688), 1, sym_generic_parameters, - STATE(4110), 1, + STATE(3922), 1, sym_signature, - ACTIONS(4918), 2, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3381), 2, + STATE(3376), 2, + sym_line_comment, + sym_block_comment, + [124416] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3377), 2, sym_line_comment, sym_block_comment, - [124554] = 10, + ACTIONS(2055), 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, + [124438] = 7, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6037), 1, + anon_sym_EQ, + STATE(3570), 1, + sym_attribute, + ACTIONS(4888), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + STATE(3378), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6035), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + sym_identifier, + [124466] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5838), 1, + ACTIONS(5842), 1, anon_sym_LBRACK2, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(3418), 1, + STATE(3503), 1, sym_capture_list, - STATE(3685), 1, + STATE(3749), 1, sym_generic_parameters, - STATE(4252), 1, + STATE(4208), 1, sym_signature, - ACTIONS(4918), 2, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, + STATE(3379), 2, + sym_line_comment, + sym_block_comment, + [124500] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6025), 1, + sym_identifier, + ACTIONS(6039), 1, + anon_sym_LPAREN, + STATE(1558), 1, + sym_global_var_definition, + STATE(3380), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6027), 6, + anon_sym_const, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_interface, + [124528] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6011), 1, + anon_sym_const, + ACTIONS(6013), 1, + anon_sym___global, + ACTIONS(6015), 1, + anon_sym_fn, + ACTIONS(6019), 1, + anon_sym_pub, + ACTIONS(6021), 1, + anon_sym_enum, + ACTIONS(6023), 1, + anon_sym_interface, + STATE(3537), 1, + sym_visibility_modifiers, + ACTIONS(6017), 2, + anon_sym_struct, + anon_sym_union, + STATE(3381), 2, + sym_line_comment, + sym_block_comment, + [124564] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(1899), 1, + anon_sym_LBRACE, STATE(3382), 2, sym_line_comment, sym_block_comment, + ACTIONS(6003), 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, [124588] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5838), 1, + ACTIONS(5842), 1, anon_sym_LBRACK2, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(3421), 1, + STATE(3496), 1, sym_capture_list, - STATE(3651), 1, + STATE(3746), 1, sym_generic_parameters, - STATE(4141), 1, + STATE(4068), 1, sym_signature, - ACTIONS(4918), 2, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, STATE(3383), 2, @@ -293181,20 +293157,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5838), 1, + ACTIONS(5842), 1, anon_sym_LBRACK2, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(3419), 1, + STATE(3475), 1, sym_capture_list, - STATE(3673), 1, + STATE(3721), 1, sym_generic_parameters, - STATE(4054), 1, + STATE(4233), 1, sym_signature, - ACTIONS(4918), 2, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, STATE(3384), 2, @@ -293208,7 +293184,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3385), 2, sym_line_comment, sym_block_comment, - ACTIONS(6037), 8, + ACTIONS(6041), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -293225,7 +293201,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3386), 2, sym_line_comment, sym_block_comment, - ACTIONS(6039), 8, + ACTIONS(6043), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -293242,36 +293218,34 @@ static const uint16_t ts_small_parse_table[] = { STATE(3387), 2, sym_line_comment, sym_block_comment, - ACTIONS(3752), 3, + ACTIONS(3784), 3, anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, sym_identifier, - ACTIONS(6029), 5, + ACTIONS(6033), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [124721] = 6, + [124721] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6043), 1, - anon_sym_DOT, - STATE(3395), 1, - aux_sym_import_path_repeat1, STATE(3388), 2, sym_line_comment, sym_block_comment, - ACTIONS(6041), 6, + ACTIONS(6045), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [124746] = 5, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [124742] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -293279,17 +293253,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(3389), 2, sym_line_comment, sym_block_comment, - ACTIONS(6047), 3, + ACTIONS(6049), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - ACTIONS(6045), 5, + ACTIONS(6047), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [124769] = 5, + [124765] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -293297,17 +293271,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(3390), 2, sym_line_comment, sym_block_comment, - ACTIONS(6051), 3, + ACTIONS(6003), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - ACTIONS(6049), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [124792] = 4, + [124786] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -293315,7 +293288,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3391), 2, sym_line_comment, sym_block_comment, - ACTIONS(6053), 8, + ACTIONS(6051), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -293324,45 +293297,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [124813] = 4, + [124807] = 8, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(6055), 1, + anon_sym_as, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(3547), 1, + sym_import_alias, + STATE(3590), 1, + sym_selective_import_list, STATE(3392), 2, sym_line_comment, sym_block_comment, - ACTIONS(6055), 8, + ACTIONS(6053), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [124834] = 8, + anon_sym_SEMI, + [124836] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6059), 1, - anon_sym_as, - ACTIONS(6061), 1, - anon_sym_LBRACE, - STATE(3543), 1, - sym_import_alias, - STATE(3697), 1, - sym_selective_import_list, STATE(3393), 2, sym_line_comment, sym_block_comment, - ACTIONS(6057), 4, + ACTIONS(6059), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [124863] = 4, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [124857] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -293370,7 +293343,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3394), 2, sym_line_comment, sym_block_comment, - ACTIONS(6063), 8, + ACTIONS(6061), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -293379,25 +293352,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [124884] = 5, + [124878] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6067), 1, - anon_sym_DOT, - STATE(3395), 3, + STATE(3395), 2, sym_line_comment, sym_block_comment, - aux_sym_import_path_repeat1, - ACTIONS(6065), 6, + ACTIONS(6065), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [124907] = 4, + ACTIONS(6063), 5, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [124901] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -293405,7 +293378,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3396), 2, sym_line_comment, sym_block_comment, - ACTIONS(6070), 8, + ACTIONS(6067), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -293414,92 +293387,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [124928] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5822), 1, - sym_identifier, - ACTIONS(6072), 1, - anon_sym_COMMA, - ACTIONS(6074), 1, - anon_sym_RBRACK, - ACTIONS(6076), 1, - anon_sym_mut, - ACTIONS(6078), 1, - anon_sym_shared, - STATE(3776), 1, - sym_capture, - STATE(4241), 1, - sym_mutability_modifiers, - STATE(4242), 1, - sym_reference_expression, - STATE(3397), 2, - sym_line_comment, - sym_block_comment, - [124963] = 6, + [124922] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6043), 1, + ACTIONS(6071), 1, anon_sym_DOT, - STATE(3388), 1, + STATE(3399), 1, aux_sym_import_path_repeat1, - STATE(3398), 2, + STATE(3397), 2, sym_line_comment, sym_block_comment, - ACTIONS(6080), 6, + ACTIONS(6069), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, - [124988] = 4, + [124947] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3399), 2, + ACTIONS(6071), 1, + anon_sym_DOT, + STATE(3397), 1, + aux_sym_import_path_repeat1, + STATE(3398), 2, sym_line_comment, sym_block_comment, - ACTIONS(6082), 8, + ACTIONS(6073), 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, - [125009] = 4, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + [124972] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3400), 2, + ACTIONS(6077), 1, + anon_sym_DOT, + STATE(3399), 3, sym_line_comment, sym_block_comment, - ACTIONS(6084), 8, + aux_sym_import_path_repeat1, + ACTIONS(6075), 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, - [125030] = 4, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + [124995] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3401), 2, + STATE(3400), 2, sym_line_comment, sym_block_comment, - ACTIONS(6001), 8, + ACTIONS(6080), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -293508,3183 +293460,3296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [125051] = 8, + [125016] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6082), 1, + anon_sym_const, + ACTIONS(6084), 1, + anon_sym_type, + ACTIONS(6086), 1, + anon_sym_fn, + ACTIONS(6090), 1, + anon_sym_enum, + ACTIONS(6092), 1, + anon_sym_interface, + ACTIONS(6088), 2, + anon_sym_struct, + anon_sym_union, + STATE(3401), 2, + sym_line_comment, + sym_block_comment, + [125046] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_LPAREN, - STATE(1438), 1, - sym_signature, - STATE(3710), 1, - sym_generic_parameters, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1099), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6096), 1, + anon_sym_SQUOTE, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3402), 2, sym_line_comment, sym_block_comment, - [125079] = 8, + [125076] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_LPAREN, - STATE(1426), 1, - sym_signature, - STATE(3581), 1, - sym_generic_parameters, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1099), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3403), 2, + ACTIONS(6102), 1, + sym_identifier, + ACTIONS(6105), 1, + anon_sym_RBRACE, + ACTIONS(6107), 1, + anon_sym_DOT_DOT_DOT, + STATE(3369), 1, + sym_reference_expression, + STATE(3387), 2, + sym_keyed_element, + sym_spread_expression, + STATE(3403), 3, sym_line_comment, sym_block_comment, - [125107] = 8, - ACTIONS(3), 1, + aux_sym_element_list_repeat1, + [125104] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_LPAREN, - STATE(1433), 1, - sym_signature, - STATE(3737), 1, - sym_generic_parameters, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1099), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6112), 1, + anon_sym_DQUOTE, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, + sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3404), 2, sym_line_comment, sym_block_comment, - [125135] = 4, + [125134] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6112), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3405), 2, sym_line_comment, sym_block_comment, - ACTIONS(6065), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - [125155] = 8, - ACTIONS(3), 1, + [125164] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_LPAREN, - STATE(1435), 1, - sym_signature, - STATE(3712), 1, - sym_generic_parameters, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1099), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6118), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, + sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3406), 2, sym_line_comment, sym_block_comment, - [125183] = 8, - ACTIONS(3), 1, + [125194] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_LPAREN, - STATE(1422), 1, - sym_signature, - STATE(3724), 1, - sym_generic_parameters, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1099), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6120), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, + sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3407), 2, sym_line_comment, sym_block_comment, - [125211] = 10, - ACTIONS(3), 1, + [125224] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5822), 1, - sym_identifier, - ACTIONS(6076), 1, - anon_sym_mut, - ACTIONS(6078), 1, - anon_sym_shared, - ACTIONS(6088), 1, - anon_sym_RBRACK, - STATE(4089), 1, - sym_capture, - STATE(4241), 1, - sym_mutability_modifiers, - STATE(4242), 1, - sym_reference_expression, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6120), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3408), 2, sym_line_comment, sym_block_comment, - [125243] = 8, - ACTIONS(3), 1, + [125254] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_LPAREN, - STATE(1424), 1, - sym_signature, - STATE(3585), 1, - sym_generic_parameters, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1099), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6118), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3409), 2, sym_line_comment, sym_block_comment, - [125271] = 8, - ACTIONS(3), 1, + [125284] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_LPAREN, - STATE(1421), 1, - sym_signature, - STATE(3615), 1, - sym_generic_parameters, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1099), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6122), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, + sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3410), 2, sym_line_comment, sym_block_comment, - [125299] = 8, - ACTIONS(3), 1, + [125314] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6090), 1, - sym_identifier, - ACTIONS(6093), 1, - anon_sym_RBRACE, - ACTIONS(6095), 1, - anon_sym_DOT_DOT_DOT, - STATE(3370), 1, - sym_reference_expression, - STATE(3387), 2, - sym_keyed_element, - sym_spread_expression, - STATE(3411), 3, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6122), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3411), 2, sym_line_comment, sym_block_comment, - aux_sym_element_list_repeat1, - [125327] = 8, + [125344] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(3719), 1, + STATE(3714), 1, sym_generic_parameters, - STATE(4223), 1, + STATE(4106), 1, sym_signature, - ACTIONS(4918), 2, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, STATE(3412), 2, sym_line_comment, sym_block_comment, - [125355] = 9, - ACTIONS(3), 1, + [125372] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(647), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(6098), 1, - sym_identifier, + aux_sym_interpreted_string_literal_token1, ACTIONS(6100), 1, - anon_sym_RBRACE, - STATE(3370), 1, - sym_reference_expression, - STATE(3411), 1, - aux_sym_element_list_repeat1, - STATE(3387), 2, - sym_keyed_element, - sym_spread_expression, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6124), 1, + anon_sym_SQUOTE, + STATE(3527), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3413), 2, sym_line_comment, sym_block_comment, - [125385] = 8, - ACTIONS(3), 1, + [125402] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_LPAREN, - STATE(1420), 1, - sym_signature, - STATE(3646), 1, - sym_generic_parameters, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1099), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6126), 1, + anon_sym_SQUOTE, + STATE(3495), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3414), 2, sym_line_comment, sym_block_comment, - [125413] = 8, - ACTIONS(3), 1, + [125432] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(3752), 1, - sym_generic_parameters, - STATE(4227), 1, - sym_signature, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6128), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3415), 2, sym_line_comment, sym_block_comment, - [125441] = 8, - ACTIONS(3), 1, + [125462] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(3734), 1, - sym_generic_parameters, - STATE(4067), 1, - sym_signature, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6130), 1, + anon_sym_DQUOTE, + STATE(3407), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, + sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3416), 2, sym_line_comment, sym_block_comment, - [125469] = 8, - ACTIONS(3), 1, + [125492] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(3698), 1, - sym_generic_parameters, - STATE(4220), 1, - sym_signature, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6130), 1, + anon_sym_SQUOTE, + STATE(3408), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3417), 2, sym_line_comment, sym_block_comment, - [125497] = 8, - ACTIONS(3), 1, + [125522] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(3679), 1, - sym_generic_parameters, - STATE(4102), 1, - sym_signature, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6132), 1, + anon_sym_DQUOTE, + STATE(3410), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, + sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3418), 2, sym_line_comment, sym_block_comment, - [125525] = 8, - ACTIONS(3), 1, + [125552] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(3670), 1, - sym_generic_parameters, - STATE(4080), 1, - sym_signature, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6132), 1, + anon_sym_SQUOTE, + STATE(3411), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3419), 2, sym_line_comment, sym_block_comment, - [125553] = 8, + [125582] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, + ACTIONS(6134), 1, anon_sym_LPAREN, - STATE(1442), 1, + STATE(1434), 1, sym_signature, - STATE(3676), 1, + STATE(3677), 1, sym_generic_parameters, - ACTIONS(4918), 2, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1099), 2, + STATE(1100), 2, sym_parameter_list, sym_type_parameter_list, STATE(3420), 2, sym_line_comment, sym_block_comment, - [125581] = 8, - ACTIONS(3), 1, + [125610] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(3641), 1, - sym_generic_parameters, - STATE(4208), 1, - sym_signature, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6136), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3421), 2, sym_line_comment, sym_block_comment, - [125609] = 10, - ACTIONS(3), 1, + [125640] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5822), 1, - sym_identifier, - ACTIONS(6076), 1, - anon_sym_mut, - ACTIONS(6078), 1, - anon_sym_shared, - ACTIONS(6102), 1, - anon_sym_RBRACK, - STATE(4089), 1, - sym_capture, - STATE(4241), 1, - sym_mutability_modifiers, - STATE(4242), 1, - sym_reference_expression, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6138), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3422), 2, sym_line_comment, sym_block_comment, - [125641] = 8, - ACTIONS(3), 1, + [125670] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(3618), 1, - sym_generic_parameters, - STATE(4305), 1, - sym_signature, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6140), 1, + anon_sym_SQUOTE, + STATE(3449), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3423), 2, sym_line_comment, sym_block_comment, - [125669] = 8, - ACTIONS(3), 1, + [125700] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(3598), 1, - sym_generic_parameters, - STATE(4262), 1, - sym_signature, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6140), 1, + anon_sym_DQUOTE, + STATE(3450), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, + sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3424), 2, sym_line_comment, sym_block_comment, - [125697] = 8, - ACTIONS(3), 1, + [125730] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(3584), 1, - sym_generic_parameters, - STATE(4125), 1, - sym_signature, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6142), 1, + anon_sym_SQUOTE, + STATE(3451), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3425), 2, sym_line_comment, sym_block_comment, - [125725] = 8, - ACTIONS(3), 1, + [125760] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(3624), 1, - sym_generic_parameters, - STATE(4046), 1, - sym_signature, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6142), 1, + anon_sym_DQUOTE, + STATE(3452), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, + sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3426), 2, sym_line_comment, sym_block_comment, - [125753] = 8, - ACTIONS(3), 1, + [125790] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_LPAREN, - STATE(1428), 1, - sym_signature, - STATE(3600), 1, - sym_generic_parameters, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1099), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6144), 1, + anon_sym_DQUOTE, + STATE(3404), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, + sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3427), 2, sym_line_comment, sym_block_comment, - [125781] = 6, + [125820] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6104), 1, - sym_identifier, - STATE(3567), 1, - sym_reference_expression, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6144), 1, + anon_sym_SQUOTE, + STATE(3405), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3428), 2, sym_line_comment, sym_block_comment, - ACTIONS(6106), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [125805] = 4, - ACTIONS(3), 1, + [125850] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6126), 1, + anon_sym_DQUOTE, + STATE(3491), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, + sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3429), 2, sym_line_comment, sym_block_comment, - ACTIONS(6108), 7, - anon_sym_const, - anon_sym_type, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_interface, - [125825] = 8, - ACTIONS(3), 1, + [125880] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(3740), 1, - sym_generic_parameters, - STATE(4235), 1, - sym_signature, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6146), 1, + anon_sym_DQUOTE, + STATE(3406), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, + sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3430), 2, sym_line_comment, sym_block_comment, - [125853] = 9, - ACTIONS(3), 1, + [125910] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6110), 1, - anon_sym_const, - ACTIONS(6112), 1, - anon_sym_type, - ACTIONS(6114), 1, - anon_sym_fn, - ACTIONS(6118), 1, - anon_sym_enum, - ACTIONS(6120), 1, - anon_sym_interface, - ACTIONS(6116), 2, - anon_sym_struct, - anon_sym_union, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6146), 1, + anon_sym_SQUOTE, + STATE(3409), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3431), 2, sym_line_comment, sym_block_comment, - [125883] = 8, + [125940] = 9, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6138), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, + sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3432), 2, + sym_line_comment, + sym_block_comment, + [125970] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, + ACTIONS(6134), 1, anon_sym_LPAREN, - STATE(1429), 1, + STATE(1448), 1, sym_signature, - STATE(3609), 1, + STATE(3727), 1, sym_generic_parameters, - ACTIONS(4918), 2, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1099), 2, + STATE(1100), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3432), 2, + STATE(3433), 2, sym_line_comment, sym_block_comment, - [125911] = 8, + [125998] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, + ACTIONS(6134), 1, anon_sym_LPAREN, - STATE(1430), 1, + STATE(1417), 1, sym_signature, - STATE(3652), 1, + STATE(3737), 1, sym_generic_parameters, - ACTIONS(4918), 2, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1099), 2, + STATE(1100), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3433), 2, - sym_line_comment, - sym_block_comment, - [125939] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, STATE(3434), 2, sym_line_comment, sym_block_comment, - ACTIONS(6122), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - [125959] = 9, - ACTIONS(497), 1, + [126026] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6130), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(3678), 1, + sym_generic_parameters, + STATE(4069), 1, + sym_signature, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3435), 2, sym_line_comment, sym_block_comment, - [125988] = 9, + [126054] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6132), 1, - sym___double_quote, - STATE(3487), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, + ACTIONS(6148), 1, + sym_identifier, + STATE(3567), 1, + sym_reference_expression, STATE(3436), 2, sym_line_comment, sym_block_comment, - [126017] = 6, + ACTIONS(6150), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + [126078] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4972), 1, - anon_sym_COMMA, - STATE(3483), 1, - aux_sym_strictly_expression_list_repeat1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6152), 1, + anon_sym_DQUOTE, + STATE(3457), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, + sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3437), 2, sym_line_comment, sym_block_comment, - ACTIONS(4001), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [126040] = 6, + [126108] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4972), 1, - anon_sym_COMMA, - STATE(3437), 1, - aux_sym_strictly_expression_list_repeat1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6154), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3438), 2, sym_line_comment, sym_block_comment, - ACTIONS(1757), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [126063] = 9, + [126138] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6134), 1, - sym___double_quote, - STATE(3462), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6136), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3439), 2, sym_line_comment, sym_block_comment, - [126092] = 9, + [126168] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6134), 1, - sym___single_quote, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - STATE(3463), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6156), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3440), 2, sym_line_comment, sym_block_comment, - [126121] = 9, - ACTIONS(497), 1, + [126198] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6142), 1, - sym___double_quote, - STATE(3464), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, + ACTIONS(647), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6158), 1, + sym_identifier, + ACTIONS(6160), 1, + anon_sym_RBRACE, + STATE(3369), 1, + sym_reference_expression, + STATE(3403), 1, + aux_sym_element_list_repeat1, + STATE(3387), 2, + sym_keyed_element, + sym_spread_expression, STATE(3441), 2, sym_line_comment, sym_block_comment, - [126150] = 9, + [126228] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6142), 1, - sym___single_quote, - STATE(3465), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6154), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3442), 2, sym_line_comment, sym_block_comment, - [126179] = 9, + [126258] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6144), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6162), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3443), 2, sym_line_comment, sym_block_comment, - [126208] = 9, - ACTIONS(497), 1, + [126288] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6146), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, + ACTIONS(6134), 1, + anon_sym_LPAREN, + STATE(1439), 1, + sym_signature, + STATE(3744), 1, + sym_generic_parameters, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1100), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3444), 2, sym_line_comment, sym_block_comment, - [126237] = 6, + [126316] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6150), 1, - anon_sym_RBRACE, - STATE(3485), 1, - aux_sym_selective_import_list_repeat1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6156), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, + sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3445), 2, sym_line_comment, sym_block_comment, - ACTIONS(6148), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - [126260] = 9, - ACTIONS(497), 1, + [126346] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6152), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(3693), 1, + sym_generic_parameters, + STATE(4207), 1, + sym_signature, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3446), 2, sym_line_comment, sym_block_comment, - [126289] = 9, + [126374] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6152), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6164), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3447), 2, sym_line_comment, sym_block_comment, - [126318] = 9, - ACTIONS(497), 1, + [126404] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6146), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, - sym_string_interpolation, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(3741), 1, + sym_generic_parameters, + STATE(4030), 1, + sym_signature, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3448), 2, sym_line_comment, sym_block_comment, - [126347] = 5, - ACTIONS(3), 1, + [126432] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(1887), 1, - anon_sym_DOT, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6166), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3449), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [126368] = 9, + [126462] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6154), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6166), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3450), 2, sym_line_comment, sym_block_comment, - [126397] = 9, + [126492] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6154), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6168), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3451), 2, sym_line_comment, sym_block_comment, - [126426] = 9, + [126522] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6156), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6168), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3452), 2, sym_line_comment, sym_block_comment, - [126455] = 9, + [126552] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6158), 1, - sym___double_quote, - STATE(3508), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6164), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3453), 2, sym_line_comment, sym_block_comment, - [126484] = 9, + [126582] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6156), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6170), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3454), 2, sym_line_comment, sym_block_comment, - [126513] = 9, + [126612] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6158), 1, - sym___single_quote, - STATE(3443), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6170), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3455), 2, sym_line_comment, sym_block_comment, - [126542] = 9, + [126642] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6160), 1, - sym___double_quote, - STATE(3444), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6172), 1, + anon_sym_DQUOTE, + STATE(3505), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3456), 2, sym_line_comment, sym_block_comment, - [126571] = 9, + [126672] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6160), 1, - sym___single_quote, - STATE(3448), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6174), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3457), 2, sym_line_comment, sym_block_comment, - [126600] = 9, + [126702] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6162), 1, - sym___double_quote, - STATE(3504), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3458), 2, sym_line_comment, sym_block_comment, - [126629] = 9, + [126732] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6164), 1, - sym___double_quote, - STATE(3490), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6174), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3459), 2, sym_line_comment, sym_block_comment, - [126658] = 6, - ACTIONS(3), 1, + [126762] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6166), 1, - anon_sym_LBRACK, - STATE(2366), 1, - sym_type_parameters, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6176), 1, + anon_sym_DQUOTE, + STATE(3519), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, + sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3460), 2, sym_line_comment, sym_block_comment, - ACTIONS(1879), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [126681] = 9, + [126792] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6164), 1, - sym___single_quote, - STATE(3493), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, - sym_string_interpolation, STATE(3461), 2, sym_line_comment, sym_block_comment, - [126710] = 9, - ACTIONS(497), 1, + ACTIONS(6178), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + [126812] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6168), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(3658), 1, + sym_generic_parameters, + STATE(4221), 1, + sym_signature, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3462), 2, sym_line_comment, sym_block_comment, - [126739] = 9, + [126840] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6168), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6172), 1, + anon_sym_SQUOTE, + STATE(3525), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3463), 2, sym_line_comment, sym_block_comment, - [126768] = 9, + [126870] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6170), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + anon_sym_DQUOTE, + STATE(3443), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3464), 2, sym_line_comment, sym_block_comment, - [126797] = 9, + [126900] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6170), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6180), 1, + anon_sym_DQUOTE, + STATE(3447), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3465), 2, sym_line_comment, sym_block_comment, - [126826] = 9, + [126930] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6172), 1, - sym___double_quote, - STATE(3497), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6180), 1, + anon_sym_SQUOTE, + STATE(3453), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3466), 2, sym_line_comment, sym_block_comment, - [126855] = 9, + [126960] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6172), 1, - sym___single_quote, - STATE(3502), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6182), 1, + anon_sym_DQUOTE, + STATE(3454), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3467), 2, sym_line_comment, sym_block_comment, - [126884] = 6, + [126990] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4972), 1, - anon_sym_COMMA, - STATE(3483), 1, - aux_sym_strictly_expression_list_repeat1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6184), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, + sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3468), 2, sym_line_comment, sym_block_comment, - ACTIONS(4012), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [126907] = 9, + [127020] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6174), 1, - sym___single_quote, - STATE(3450), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6176), 1, + anon_sym_SQUOTE, + STATE(3528), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3469), 2, sym_line_comment, sym_block_comment, - [126936] = 9, + [127050] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6162), 1, - sym___single_quote, - STATE(3509), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6186), 1, + anon_sym_DQUOTE, + STATE(3458), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3470), 2, sym_line_comment, sym_block_comment, - [126965] = 9, + [127080] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6174), 1, - sym___double_quote, - STATE(3451), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6184), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3471), 2, sym_line_comment, sym_block_comment, - [126994] = 9, + [127110] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6176), 1, - sym___single_quote, - STATE(3452), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6182), 1, + anon_sym_SQUOTE, + STATE(3455), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3472), 2, sym_line_comment, sym_block_comment, - [127023] = 9, + [127140] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6176), 1, - sym___double_quote, - STATE(3454), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6096), 1, + anon_sym_DQUOTE, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3473), 2, sym_line_comment, sym_block_comment, - [127052] = 9, - ACTIONS(497), 1, + [127170] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6178), 1, - sym___double_quote, - STATE(3514), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, + ACTIONS(6134), 1, + anon_sym_LPAREN, + STATE(1476), 1, + sym_signature, + STATE(3707), 1, + sym_generic_parameters, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1100), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3474), 2, sym_line_comment, sym_block_comment, - [127081] = 9, - ACTIONS(497), 1, + [127198] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6178), 1, - sym___single_quote, - STATE(3516), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, - sym_string_interpolation, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(3709), 1, + sym_generic_parameters, + STATE(4307), 1, + sym_signature, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3475), 2, sym_line_comment, sym_block_comment, - [127110] = 9, + [127226] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6180), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6188), 1, + anon_sym_DQUOTE, + STATE(3522), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3476), 2, sym_line_comment, sym_block_comment, - [127139] = 9, - ACTIONS(3), 1, + [127256] = 9, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6182), 1, - anon_sym_DOT, - ACTIONS(6184), 1, - anon_sym_RBRACE, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(6186), 1, - sym_int_literal, - ACTIONS(6188), 1, - aux_sym_format_specifier_token1, - ACTIONS(6190), 1, - aux_sym_format_specifier_token2, - ACTIONS(6192), 1, - anon_sym_0, + anon_sym_SQUOTE, + STATE(3415), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3477), 2, sym_line_comment, sym_block_comment, - [127168] = 9, - ACTIONS(497), 1, + [127286] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6180), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, + ACTIONS(6134), 1, + anon_sym_LPAREN, + STATE(1454), 1, + sym_signature, + STATE(3734), 1, + sym_generic_parameters, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1100), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3478), 2, sym_line_comment, sym_block_comment, - [127197] = 9, - ACTIONS(497), 1, + [127314] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6194), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, - sym_string_interpolation, + ACTIONS(6134), 1, + anon_sym_LPAREN, + STATE(1461), 1, + sym_signature, + STATE(3674), 1, + sym_generic_parameters, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1100), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3479), 2, sym_line_comment, sym_block_comment, - [127226] = 9, + [127342] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6194), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, STATE(3480), 2, sym_line_comment, sym_block_comment, - [127255] = 8, - ACTIONS(497), 1, + ACTIONS(6075), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + [127362] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6196), 1, - sym_escape_sequence, - ACTIONS(6199), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6202), 1, - sym___dolcbr, - ACTIONS(6205), 1, - sym___single_quote, - STATE(3611), 1, - sym_string_interpolation, - STATE(3481), 3, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(3726), 1, + sym_generic_parameters, + STATE(4157), 1, + sym_signature, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3481), 2, sym_line_comment, sym_block_comment, - aux_sym_c_string_literal_repeat1, - [127282] = 8, + [127390] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6207), 1, - sym_escape_sequence, - ACTIONS(6210), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6213), 1, - sym___dolcbr, - ACTIONS(6216), 1, - sym___double_quote, - STATE(3601), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6152), 1, + anon_sym_SQUOTE, + STATE(3459), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, - STATE(3482), 3, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3482), 2, sym_line_comment, sym_block_comment, - aux_sym_c_string_literal_repeat2, - [127309] = 5, - ACTIONS(497), 1, + [127420] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6218), 1, - anon_sym_COMMA, - STATE(3483), 3, + ACTIONS(6134), 1, + anon_sym_LPAREN, + STATE(1422), 1, + sym_signature, + STATE(3748), 1, + sym_generic_parameters, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1100), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3483), 2, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(1649), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [127330] = 9, - ACTIONS(497), 1, + [127448] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6130), 1, - sym___single_quote, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, - sym_string_interpolation, + ACTIONS(5826), 1, + sym_identifier, + ACTIONS(6190), 1, + anon_sym_RBRACK, + ACTIONS(6192), 1, + anon_sym_mut, + ACTIONS(6194), 1, + anon_sym_shared, + STATE(4021), 1, + sym_reference_expression, + STATE(4026), 1, + sym_mutability_modifiers, + STATE(4203), 1, + sym_capture, STATE(3484), 2, sym_line_comment, sym_block_comment, - [127359] = 6, + [127480] = 8, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6221), 1, - anon_sym_RBRACE, - STATE(3489), 1, - aux_sym_selective_import_list_repeat1, - STATE(3485), 2, + ACTIONS(6199), 1, + anon_sym_SQUOTE, + ACTIONS(6201), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6204), 1, + anon_sym_DOLLAR_LBRACE, + STATE(3558), 1, + sym_string_interpolation, + ACTIONS(6196), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3485), 3, sym_line_comment, sym_block_comment, - ACTIONS(6148), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - [127382] = 9, - ACTIONS(497), 1, + aux_sym_interpreted_string_literal_repeat1, + [127508] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6223), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, - sym_string_interpolation, + ACTIONS(6134), 1, + anon_sym_LPAREN, + STATE(1425), 1, + sym_signature, + STATE(3747), 1, + sym_generic_parameters, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1100), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3486), 2, sym_line_comment, sym_block_comment, - [127411] = 9, + [127536] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6223), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6207), 1, + anon_sym_DQUOTE, + STATE(3468), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3487), 2, sym_line_comment, sym_block_comment, - [127440] = 9, + [127566] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6225), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6207), 1, + anon_sym_SQUOTE, + STATE(3471), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3488), 2, sym_line_comment, sym_block_comment, - [127469] = 5, + [127596] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6230), 1, - anon_sym_RBRACE, - STATE(3489), 3, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6209), 1, + anon_sym_DQUOTE, + STATE(3473), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, + sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3489), 2, sym_line_comment, sym_block_comment, - aux_sym_selective_import_list_repeat1, - ACTIONS(6227), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - [127490] = 9, + [127626] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6232), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6209), 1, + anon_sym_SQUOTE, + STATE(3402), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3490), 2, sym_line_comment, sym_block_comment, - [127519] = 9, + [127656] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6234), 1, - sym___single_quote, - STATE(3476), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6211), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3491), 2, sym_line_comment, sym_block_comment, - [127548] = 9, - ACTIONS(497), 1, + [127686] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6225), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, - sym_string_interpolation, + ACTIONS(5826), 1, + sym_identifier, + ACTIONS(6192), 1, + anon_sym_mut, + ACTIONS(6194), 1, + anon_sym_shared, + ACTIONS(6213), 1, + anon_sym_RBRACK, + STATE(4021), 1, + sym_reference_expression, + STATE(4026), 1, + sym_mutability_modifiers, + STATE(4203), 1, + sym_capture, STATE(3492), 2, sym_line_comment, sym_block_comment, - [127577] = 9, - ACTIONS(497), 1, + [127718] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6232), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, - sym_string_interpolation, + ACTIONS(6134), 1, + anon_sym_LPAREN, + STATE(1428), 1, + sym_signature, + STATE(3745), 1, + sym_generic_parameters, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1100), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3493), 2, sym_line_comment, sym_block_comment, - [127606] = 9, + [127746] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6236), 1, - sym___double_quote, - STATE(3545), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6188), 1, + anon_sym_SQUOTE, + STATE(3523), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3494), 2, sym_line_comment, sym_block_comment, - [127635] = 9, + [127776] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6236), 1, - sym___single_quote, - STATE(3546), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6211), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3495), 2, sym_line_comment, sym_block_comment, - [127664] = 9, - ACTIONS(497), 1, + [127806] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6234), 1, - sym___double_quote, - STATE(3478), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(3740), 1, + sym_generic_parameters, + STATE(4017), 1, + sym_signature, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3496), 2, sym_line_comment, sym_block_comment, - [127693] = 9, + [127834] = 8, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6238), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6218), 1, + anon_sym_DQUOTE, + ACTIONS(6220), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6223), 1, + anon_sym_DOLLAR_LBRACE, + STATE(3551), 1, sym_string_interpolation, - STATE(3497), 2, + ACTIONS(6215), 2, + sym_escape_sequence, + anon_sym_DOLLAR, + STATE(3497), 3, sym_line_comment, sym_block_comment, - [127722] = 9, - ACTIONS(497), 1, + aux_sym_interpreted_string_literal_repeat2, + [127862] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6240), 1, - sym___double_quote, - STATE(3540), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, + ACTIONS(6134), 1, + anon_sym_LPAREN, + STATE(1452), 1, + sym_signature, + STATE(3655), 1, + sym_generic_parameters, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1100), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3498), 2, sym_line_comment, sym_block_comment, - [127751] = 9, + [127890] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6242), 1, - sym___single_quote, - STATE(3479), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6226), 1, + anon_sym_SQUOTE, + STATE(3521), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3499), 2, sym_line_comment, sym_block_comment, - [127780] = 9, + [127920] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6242), 1, - sym___double_quote, - STATE(3480), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6226), 1, + anon_sym_DQUOTE, + STATE(3520), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3500), 2, sym_line_comment, sym_block_comment, - [127809] = 9, + [127950] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6240), 1, - sym___single_quote, - STATE(3521), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6228), 1, + anon_sym_SQUOTE, + STATE(3421), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3501), 2, sym_line_comment, sym_block_comment, - [127838] = 9, + [127980] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6238), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6230), 1, + anon_sym_SQUOTE, + STATE(3422), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3502), 2, sym_line_comment, sym_block_comment, - [127867] = 9, - ACTIONS(497), 1, + [128010] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6244), 1, - sym___single_quote, - STATE(3492), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, - sym_string_interpolation, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(3752), 1, + sym_generic_parameters, + STATE(4139), 1, + sym_signature, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3503), 2, sym_line_comment, sym_block_comment, - [127896] = 9, + [128038] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6246), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6228), 1, + anon_sym_DQUOTE, + STATE(3439), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3504), 2, sym_line_comment, sym_block_comment, - [127925] = 9, + [128068] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6248), 1, - sym___single_quote, - STATE(3484), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6232), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3505), 2, sym_line_comment, sym_block_comment, - [127954] = 9, + [128098] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6248), 1, - sym___double_quote, - STATE(3435), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6230), 1, + anon_sym_DQUOTE, + STATE(3432), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3506), 2, sym_line_comment, sym_block_comment, - [127983] = 9, - ACTIONS(497), 1, + [128128] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6132), 1, - sym___single_quote, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - STATE(3486), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, - sym_string_interpolation, + ACTIONS(6134), 1, + anon_sym_LPAREN, + STATE(1433), 1, + sym_signature, + STATE(3736), 1, + sym_generic_parameters, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1100), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3507), 2, sym_line_comment, sym_block_comment, - [128012] = 9, + [128156] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6144), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6234), 1, + anon_sym_SQUOTE, + STATE(3440), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3508), 2, sym_line_comment, sym_block_comment, - [128041] = 9, + [128186] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6246), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6234), 1, + anon_sym_DQUOTE, + STATE(3445), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3509), 2, sym_line_comment, sym_block_comment, - [128070] = 9, + [128216] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6250), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6236), 1, + anon_sym_SQUOTE, + STATE(3438), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3510), 2, sym_line_comment, sym_block_comment, - [128099] = 6, + [128246] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6252), 1, - sym_identifier, - STATE(3653), 1, - sym_label_reference, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6238), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, + sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3511), 2, sym_line_comment, sym_block_comment, - ACTIONS(4150), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [128122] = 9, + [128276] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6250), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6236), 1, + anon_sym_DQUOTE, + STATE(3442), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3512), 2, sym_line_comment, sym_block_comment, - [128151] = 9, - ACTIONS(497), 1, + [128306] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6254), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, - sym_string_interpolation, STATE(3513), 2, sym_line_comment, sym_block_comment, - [128180] = 9, - ACTIONS(497), 1, + ACTIONS(6240), 7, + anon_sym_const, + anon_sym_type, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_interface, + [128326] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6256), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(3739), 1, + sym_generic_parameters, + STATE(4294), 1, + sym_signature, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3514), 2, sym_line_comment, sym_block_comment, - [128209] = 9, + [128354] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6258), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6242), 1, + anon_sym_SQUOTE, + STATE(3530), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3515), 2, sym_line_comment, sym_block_comment, - [128238] = 9, + [128384] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6256), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6242), 1, + anon_sym_DQUOTE, + STATE(3531), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3516), 2, sym_line_comment, sym_block_comment, - [128267] = 9, + [128414] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6258), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6244), 1, + anon_sym_SQUOTE, + STATE(3526), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3517), 2, sym_line_comment, sym_block_comment, - [128296] = 9, + [128444] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6260), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6244), 1, + anon_sym_DQUOTE, + STATE(3511), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3518), 2, sym_line_comment, sym_block_comment, - [128325] = 9, + [128474] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6260), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6246), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3519), 2, sym_line_comment, sym_block_comment, - [128354] = 9, + [128504] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6254), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6248), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3520), 2, sym_line_comment, sym_block_comment, - [128383] = 9, + [128534] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6262), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6248), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3521), 2, sym_line_comment, sym_block_comment, - [128412] = 9, + [128564] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6244), 1, - sym___double_quote, - STATE(3488), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6250), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3522), 2, sym_line_comment, sym_block_comment, - [128441] = 9, + [128594] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6264), 1, - sym___single_quote, - STATE(3447), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6250), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3523), 2, sym_line_comment, sym_block_comment, - [128470] = 6, - ACTIONS(497), 1, + [128624] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6252), 1, - sym_identifier, - STATE(3626), 1, - sym_label_reference, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(3683), 1, + sym_generic_parameters, + STATE(4057), 1, + sym_signature, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3524), 2, sym_line_comment, sym_block_comment, - ACTIONS(4146), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [128493] = 9, + [128652] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6266), 1, - sym___double_quote, - STATE(3535), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6232), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3525), 2, sym_line_comment, sym_block_comment, - [128522] = 9, + [128682] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6266), 1, - sym___single_quote, - STATE(3531), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6238), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3526), 2, sym_line_comment, sym_block_comment, - [128551] = 9, + [128712] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6268), 1, - sym___double_quote, - STATE(3530), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6162), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3527), 2, sym_line_comment, sym_block_comment, - [128580] = 9, + [128742] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6268), 1, - sym___single_quote, - STATE(3529), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6246), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3528), 2, sym_line_comment, sym_block_comment, - [128609] = 9, - ACTIONS(497), 1, + [128772] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6270), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, - sym_string_interpolation, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(3667), 1, + sym_generic_parameters, + STATE(4140), 1, + sym_signature, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3529), 2, sym_line_comment, sym_block_comment, - [128638] = 9, + [128800] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6270), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, + ACTIONS(6098), 1, + aux_sym_interpreted_string_literal_token1, + ACTIONS(6100), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6252), 1, + anon_sym_SQUOTE, + STATE(3485), 1, + aux_sym_interpreted_string_literal_repeat1, + STATE(3558), 1, sym_string_interpolation, + ACTIONS(6094), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3530), 2, sym_line_comment, sym_block_comment, - [128667] = 9, + [128830] = 9, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6272), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, + ACTIONS(6114), 1, + aux_sym_interpreted_string_literal_token2, + ACTIONS(6116), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6252), 1, + anon_sym_DQUOTE, + STATE(3497), 1, + aux_sym_interpreted_string_literal_repeat2, + STATE(3551), 1, sym_string_interpolation, + ACTIONS(6110), 2, + sym_escape_sequence, + anon_sym_DOLLAR, STATE(3531), 2, sym_line_comment, sym_block_comment, - [128696] = 9, + [128860] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6274), 1, - sym___single_quote, - STATE(3515), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, - sym_string_interpolation, + ACTIONS(4978), 1, + anon_sym_COMMA, + STATE(3544), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3532), 2, sym_line_comment, sym_block_comment, - [128725] = 9, + ACTIONS(4009), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [128883] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6274), 1, - sym___double_quote, - STATE(3517), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, + ACTIONS(6254), 1, + sym_identifier, + STATE(3720), 1, + sym_label_reference, STATE(3533), 2, sym_line_comment, sym_block_comment, - [128754] = 9, + ACTIONS(4154), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [128906] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6276), 1, - sym___single_quote, - STATE(3518), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, - sym_string_interpolation, + ACTIONS(6258), 1, + anon_sym_RBRACE, + STATE(3540), 1, + aux_sym_selective_import_list_repeat1, STATE(3534), 2, sym_line_comment, sym_block_comment, - [128783] = 9, - ACTIONS(497), 1, + ACTIONS(6256), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + [128929] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6272), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, + ACTIONS(5826), 1, + sym_identifier, + ACTIONS(6192), 1, + anon_sym_mut, + ACTIONS(6194), 1, + anon_sym_shared, + STATE(4021), 1, + sym_reference_expression, + STATE(4026), 1, + sym_mutability_modifiers, + STATE(4203), 1, + sym_capture, STATE(3535), 2, sym_line_comment, sym_block_comment, - [128812] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6276), 1, - sym___double_quote, - STATE(3519), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, - STATE(3536), 2, - sym_line_comment, - sym_block_comment, - [128841] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6278), 1, - sym___double_quote, - STATE(3520), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, - STATE(3537), 2, - sym_line_comment, - sym_block_comment, - [128870] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6264), 1, - sym___double_quote, - STATE(3446), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, - STATE(3538), 2, - sym_line_comment, - sym_block_comment, - [128899] = 9, + [128958] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5822), 1, + ACTIONS(5826), 1, sym_identifier, - ACTIONS(6076), 1, + ACTIONS(6192), 1, anon_sym_mut, - ACTIONS(6078), 1, + ACTIONS(6194), 1, anon_sym_shared, - STATE(4089), 1, + STATE(3814), 1, sym_capture, - STATE(4241), 1, - sym_mutability_modifiers, - STATE(4242), 1, + STATE(4021), 1, sym_reference_expression, - STATE(3539), 2, + STATE(4026), 1, + sym_mutability_modifiers, + STATE(3536), 2, sym_line_comment, sym_block_comment, - [128928] = 9, - ACTIONS(497), 1, + [128987] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, + ACTIONS(6260), 1, + anon_sym_const, ACTIONS(6262), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, - STATE(3540), 2, + anon_sym_fn, + ACTIONS(6266), 1, + anon_sym_enum, + ACTIONS(6268), 1, + anon_sym_interface, + ACTIONS(6264), 2, + anon_sym_struct, + anon_sym_union, + STATE(3537), 2, sym_line_comment, sym_block_comment, - [128957] = 9, + [129014] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6280), 1, - sym___single_quote, - STATE(3510), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, - sym_string_interpolation, - STATE(3541), 2, + ACTIONS(4978), 1, + anon_sym_COMMA, + STATE(3532), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3538), 2, sym_line_comment, sym_block_comment, - [128986] = 9, + ACTIONS(1721), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [129037] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6280), 1, - sym___double_quote, - STATE(3512), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, - STATE(3542), 2, + ACTIONS(6273), 1, + anon_sym_RBRACE, + STATE(3539), 3, sym_line_comment, sym_block_comment, - [129015] = 6, + aux_sym_selective_import_list_repeat1, + ACTIONS(6270), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + [129058] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6061), 1, - anon_sym_LBRACE, - STATE(3599), 1, - sym_selective_import_list, - STATE(3543), 2, + ACTIONS(6275), 1, + anon_sym_RBRACE, + STATE(3539), 1, + aux_sym_selective_import_list_repeat1, + STATE(3540), 2, sym_line_comment, sym_block_comment, - ACTIONS(6282), 4, + ACTIONS(6256), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [129038] = 9, - ACTIONS(497), 1, + anon_sym_COMMA, + [129081] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6278), 1, - sym___single_quote, - STATE(3513), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, - sym_string_interpolation, - STATE(3544), 2, + ACTIONS(2053), 1, + anon_sym_DOT, + STATE(3541), 2, sym_line_comment, sym_block_comment, - [129067] = 9, + ACTIONS(2157), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [129102] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6124), 1, - sym_escape_sequence, - ACTIONS(6126), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6128), 1, - sym___dolcbr, - ACTIONS(6284), 1, - sym___double_quote, - STATE(3482), 1, - aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_string_interpolation, - STATE(3545), 2, + ACTIONS(6254), 1, + sym_identifier, + STATE(3719), 1, + sym_label_reference, + STATE(3542), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4150), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [129125] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6277), 1, + anon_sym_LBRACK, + STATE(2409), 1, + sym_type_parameters, + STATE(3543), 2, sym_line_comment, sym_block_comment, - [129096] = 9, + ACTIONS(1897), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [129148] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - sym_escape_sequence, - ACTIONS(6138), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6140), 1, - sym___dolcbr, - ACTIONS(6284), 1, - sym___single_quote, - STATE(3481), 1, - aux_sym_c_string_literal_repeat1, - STATE(3611), 1, - sym_string_interpolation, - STATE(3546), 2, + ACTIONS(6279), 1, + anon_sym_COMMA, + STATE(3544), 3, sym_line_comment, sym_block_comment, - [129125] = 8, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(1759), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [129169] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6282), 1, + anon_sym_DOT, + ACTIONS(6284), 1, + anon_sym_RBRACE, ACTIONS(6286), 1, - anon_sym_const, + sym_int_literal, ACTIONS(6288), 1, - anon_sym_fn, + aux_sym_format_specifier_token1, + ACTIONS(6290), 1, + aux_sym_format_specifier_token2, ACTIONS(6292), 1, - anon_sym_enum, - ACTIONS(6294), 1, - anon_sym_interface, - ACTIONS(6290), 2, - anon_sym_struct, - anon_sym_union, - STATE(3547), 2, + anon_sym_0, + STATE(3545), 2, sym_line_comment, sym_block_comment, - [129152] = 6, - ACTIONS(3), 1, + [129198] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, - anon_sym_LBRACE, - STATE(1342), 1, - sym_block, - STATE(3548), 2, + ACTIONS(4978), 1, + anon_sym_COMMA, + STATE(3544), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3546), 2, sym_line_comment, sym_block_comment, - ACTIONS(6296), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [129174] = 4, + ACTIONS(4016), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [129221] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3549), 2, + ACTIONS(6057), 1, + anon_sym_LBRACE, + STATE(3631), 1, + sym_selective_import_list, + STATE(3547), 2, sym_line_comment, sym_block_comment, - ACTIONS(6298), 5, + ACTIONS(6294), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [129192] = 5, + anon_sym_SEMI, + [129244] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, - anon_sym_RBRACE, - STATE(3550), 2, + ACTIONS(6296), 1, + anon_sym_LBRACE, + ACTIONS(6298), 1, + anon_sym_COMMA, + ACTIONS(6300), 1, + anon_sym_RBRACK, + STATE(2302), 1, + sym_type_initializer_body, + STATE(3816), 1, + aux_sym_type_parameters_repeat1, + STATE(3548), 2, sym_line_comment, sym_block_comment, - ACTIONS(6300), 4, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [129212] = 8, + [129270] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6076), 1, + ACTIONS(6192), 1, anon_sym_mut, - ACTIONS(6078), 1, + ACTIONS(6194), 1, anon_sym_shared, ACTIONS(6302), 1, sym_identifier, - STATE(4207), 1, + STATE(4224), 1, sym_mutable_identifier, - STATE(4405), 1, + STATE(4401), 1, sym_mutability_modifiers, - STATE(3551), 2, + STATE(3549), 2, sym_line_comment, sym_block_comment, - [129238] = 7, + [129296] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(6304), 1, - anon_sym_LBRACE, - STATE(1499), 1, - sym__interface_body, - STATE(4203), 1, - sym_generic_parameters, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(3552), 2, - sym_line_comment, - sym_block_comment, - [129262] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, + sym_identifier, ACTIONS(6306), 1, - anon_sym_LBRACE, - STATE(1501), 1, - sym__struct_body, - STATE(4218), 1, - sym_generic_parameters, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(3553), 2, - sym_line_comment, - sym_block_comment, - [129286] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5068), 1, - anon_sym_LBRACE, - STATE(2331), 1, - sym_block, - STATE(3554), 2, + anon_sym_mut, + STATE(3917), 1, + sym_var_definition, + STATE(4128), 1, + sym_range_clause, + STATE(4542), 1, + sym_var_definition_list, + STATE(3550), 2, sym_line_comment, sym_block_comment, - ACTIONS(6296), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [129308] = 6, + [129322] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, ACTIONS(6310), 1, - anon_sym_RBRACE, - STATE(3577), 1, - aux_sym__statement_list_repeat1, - STATE(3555), 2, + aux_sym_interpreted_string_literal_token2, + STATE(3551), 2, sym_line_comment, sym_block_comment, - ACTIONS(6308), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - [129330] = 6, + ACTIONS(6308), 4, + sym_escape_sequence, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_DOLLAR_LBRACE, + [129342] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, - anon_sym_LBRACE, STATE(2302), 1, - sym_block, - STATE(3556), 2, + sym_type_initializer_body, + STATE(3552), 2, sym_line_comment, sym_block_comment, - ACTIONS(2135), 3, + ACTIONS(2207), 4, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [129352] = 5, + [129362] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2351), 1, + ACTIONS(6296), 1, + anon_sym_LBRACE, + STATE(2302), 1, sym_type_initializer_body, - STATE(3557), 2, + STATE(3553), 2, sym_line_comment, sym_block_comment, - ACTIONS(2722), 4, - anon_sym_LBRACE, + ACTIONS(2211), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [129372] = 6, + [129384] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6312), 1, - anon_sym_LBRACE, - STATE(2351), 1, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6306), 1, + anon_sym_mut, + STATE(3917), 1, + sym_var_definition, + STATE(4232), 1, + sym_range_clause, + STATE(4542), 1, + sym_var_definition_list, + STATE(3554), 2, + sym_line_comment, + sym_block_comment, + [129410] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2302), 1, sym_type_initializer_body, - STATE(3558), 2, + STATE(3555), 2, sym_line_comment, sym_block_comment, - ACTIONS(2742), 3, + ACTIONS(2215), 4, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [129394] = 5, + [129430] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2351), 1, - sym_type_initializer_body, - STATE(3559), 2, + ACTIONS(5054), 1, + anon_sym_LBRACE, + STATE(2393), 1, + sym_block, + STATE(3556), 2, sym_line_comment, sym_block_comment, - ACTIONS(2748), 4, - anon_sym_LBRACE, + ACTIONS(2219), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [129414] = 4, + [129452] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3560), 2, + ACTIONS(6314), 1, + anon_sym_RBRACE, + STATE(3584), 1, + aux_sym__statement_list_repeat1, + STATE(3557), 2, sym_line_comment, sym_block_comment, - ACTIONS(1649), 5, + ACTIONS(6312), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [129432] = 7, + [129474] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6318), 1, + aux_sym_interpreted_string_literal_token1, + STATE(3558), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6316), 4, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACE, + [129494] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6306), 1, + ACTIONS(5054), 1, anon_sym_LBRACE, - STATE(1546), 1, - sym__struct_body, - STATE(4107), 1, - sym_generic_parameters, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(3561), 2, + STATE(2329), 1, + sym_block, + STATE(3559), 2, sym_line_comment, sym_block_comment, - [129456] = 7, + ACTIONS(6320), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [129516] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6304), 1, + STATE(3560), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2053), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [129534] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6296), 1, anon_sym_LBRACE, - STATE(1548), 1, - sym__interface_body, - STATE(4138), 1, - sym_generic_parameters, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(3562), 2, + ACTIONS(6322), 1, + anon_sym_COMMA, + ACTIONS(6324), 1, + anon_sym_RPAREN, + STATE(2302), 1, + sym_type_initializer_body, + STATE(3898), 1, + aux_sym_type_parameters_repeat1, + STATE(3561), 2, sym_line_comment, sym_block_comment, - [129480] = 5, + [129560] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6314), 2, - anon_sym_RBRACE, - sym_identifier, - STATE(3563), 2, + STATE(3562), 2, sym_line_comment, sym_block_comment, - ACTIONS(6316), 3, + ACTIONS(1759), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [129500] = 8, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + [129578] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6312), 1, - anon_sym_LBRACE, - ACTIONS(6318), 1, - anon_sym_COMMA, - ACTIONS(6320), 1, - anon_sym_RPAREN, - STATE(2351), 1, - sym_type_initializer_body, - STATE(3780), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6328), 1, + aux_sym_interpreted_string_literal_token2, + STATE(3563), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6326), 4, + sym_escape_sequence, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_DOLLAR_LBRACE, + [129598] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6332), 1, + aux_sym_interpreted_string_literal_token2, STATE(3564), 2, sym_line_comment, sym_block_comment, - [129526] = 8, - ACTIONS(3), 1, + ACTIONS(6330), 4, + sym_escape_sequence, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_DOLLAR_LBRACE, + [129618] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6322), 1, - sym_identifier, - ACTIONS(6324), 1, - anon_sym_mut, - STATE(3997), 1, - sym_var_definition, - STATE(4164), 1, - sym_range_clause, - STATE(4443), 1, - sym_var_definition_list, + ACTIONS(6336), 1, + aux_sym_interpreted_string_literal_token2, STATE(3565), 2, sym_line_comment, sym_block_comment, - [129552] = 6, + ACTIONS(6334), 4, + sym_escape_sequence, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_DOLLAR_LBRACE, + [129638] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6328), 1, - anon_sym_RBRACE, - STATE(3555), 1, - aux_sym__statement_list_repeat1, STATE(3566), 2, sym_line_comment, sym_block_comment, - ACTIONS(6326), 3, + ACTIONS(6338), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [129574] = 4, + anon_sym_RBRACE, + sym_identifier, + [129656] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -296692,1129 +296757,1144 @@ static const uint16_t ts_small_parse_table[] = { STATE(3567), 2, sym_line_comment, sym_block_comment, - ACTIONS(6230), 5, + ACTIONS(6273), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_COMMA, anon_sym_RBRACE, - [129592] = 5, + [129674] = 5, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6328), 1, + aux_sym_interpreted_string_literal_token1, + STATE(3568), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6326), 4, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACE, + [129694] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5938), 1, + ACTIONS(5885), 1, anon_sym_RBRACE, - STATE(3568), 2, + STATE(3569), 2, sym_line_comment, sym_block_comment, - ACTIONS(6330), 4, + ACTIONS(6340), 4, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [129612] = 8, + [129714] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3570), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6342), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + sym_identifier, + [129732] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6312), 1, + ACTIONS(6344), 1, anon_sym_LBRACE, - ACTIONS(6332), 1, - anon_sym_COMMA, - ACTIONS(6334), 1, - anon_sym_RBRACK, - STATE(2351), 1, - sym_type_initializer_body, - STATE(3967), 1, - aux_sym_type_parameters_repeat1, - STATE(3569), 2, + STATE(1560), 1, + sym__interface_body, + STATE(4281), 1, + sym_generic_parameters, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(3571), 2, sym_line_comment, sym_block_comment, - [129638] = 7, + [129756] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6306), 1, + ACTIONS(6346), 1, anon_sym_LBRACE, - STATE(1503), 1, + STATE(1562), 1, sym__struct_body, - STATE(4197), 1, + STATE(4277), 1, sym_generic_parameters, - ACTIONS(4918), 2, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(3570), 2, + STATE(3572), 2, sym_line_comment, sym_block_comment, - [129662] = 7, + [129780] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6304), 1, + ACTIONS(6344), 1, anon_sym_LBRACE, - STATE(1505), 1, + STATE(1509), 1, sym__interface_body, - STATE(4184), 1, + STATE(4177), 1, sym_generic_parameters, - ACTIONS(4918), 2, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(3571), 2, + STATE(3573), 2, sym_line_comment, sym_block_comment, - [129686] = 4, + [129804] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3572), 2, + ACTIONS(5926), 1, + anon_sym_RBRACE, + STATE(3574), 2, sym_line_comment, sym_block_comment, - ACTIONS(1887), 5, + ACTIONS(6348), 4, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [129824] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5066), 1, + anon_sym_LBRACE, + STATE(1335), 1, + sym_block, + STATE(3575), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6320), 3, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_QMARK, - [129704] = 7, + anon_sym_COLON, + [129846] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6304), 1, + ACTIONS(6344), 1, anon_sym_LBRACE, - STATE(1512), 1, + STATE(1568), 1, sym__interface_body, - STATE(4113), 1, + STATE(4172), 1, sym_generic_parameters, - ACTIONS(4918), 2, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(3573), 2, + STATE(3576), 2, sym_line_comment, sym_block_comment, - [129728] = 8, + [129870] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6322), 1, - sym_identifier, - ACTIONS(6324), 1, - anon_sym_mut, - STATE(3997), 1, - sym_var_definition, - STATE(4229), 1, - sym_range_clause, - STATE(4443), 1, - sym_var_definition_list, - STATE(3574), 2, + ACTIONS(6346), 1, + anon_sym_LBRACE, + STATE(1492), 1, + sym__struct_body, + STATE(4036), 1, + sym_generic_parameters, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(3577), 2, sym_line_comment, sym_block_comment, - [129754] = 8, + [129894] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6076), 1, + ACTIONS(6192), 1, anon_sym_mut, - ACTIONS(6078), 1, + ACTIONS(6194), 1, anon_sym_shared, - ACTIONS(6336), 1, + ACTIONS(6350), 1, sym_identifier, - STATE(4048), 1, + STATE(4184), 1, sym_parameter_declaration, - STATE(4593), 1, + STATE(4439), 1, sym_mutability_modifiers, - STATE(3575), 2, + STATE(3578), 2, sym_line_comment, sym_block_comment, - [129780] = 4, + [129920] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3576), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6338), 5, + ACTIONS(6355), 1, + anon_sym_RBRACE, + ACTIONS(6352), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, - [129798] = 5, + STATE(3579), 3, + sym_line_comment, + sym_block_comment, + aux_sym__statement_list_repeat1, + [129940] = 5, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6343), 1, - anon_sym_RBRACE, - ACTIONS(6340), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - STATE(3577), 3, + ACTIONS(6336), 1, + aux_sym_interpreted_string_literal_token1, + STATE(3580), 2, sym_line_comment, sym_block_comment, - aux_sym__statement_list_repeat1, - [129818] = 4, + ACTIONS(6334), 4, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACE, + [129960] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3578), 2, + STATE(3581), 2, sym_line_comment, sym_block_comment, - ACTIONS(6345), 5, + ACTIONS(6357), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [129836] = 7, + anon_sym_SEMI, + anon_sym_LBRACE, + [129978] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6306), 1, + ACTIONS(6344), 1, anon_sym_LBRACE, - STATE(1510), 1, - sym__struct_body, - STATE(4122), 1, + STATE(1502), 1, + sym__interface_body, + STATE(4042), 1, sym_generic_parameters, - ACTIONS(4918), 2, + ACTIONS(4922), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(3579), 2, - sym_line_comment, - sym_block_comment, - [129860] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(4221), 1, - sym_signature, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3580), 2, - sym_line_comment, - sym_block_comment, - [129881] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_LPAREN, - STATE(1419), 1, - sym_signature, - STATE(1099), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3581), 2, - sym_line_comment, - sym_block_comment, - [129902] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(4050), 1, - sym_signature, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, STATE(3582), 2, sym_line_comment, sym_block_comment, - [129923] = 6, - ACTIONS(3), 1, + [130002] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6347), 1, + ACTIONS(6359), 2, + anon_sym_RBRACE, sym_identifier, - ACTIONS(6350), 1, - anon_sym_RPAREN, - STATE(3729), 1, - sym_const_definition, - STATE(3583), 3, + STATE(3583), 2, sym_line_comment, sym_block_comment, - aux_sym_const_declaration_repeat1, - [129944] = 6, - ACTIONS(3), 1, + ACTIONS(6361), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + [130022] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(4098), 1, - sym_signature, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6365), 1, + anon_sym_RBRACE, + STATE(3579), 1, + aux_sym__statement_list_repeat1, STATE(3584), 2, sym_line_comment, sym_block_comment, - [129965] = 6, - ACTIONS(3), 1, + ACTIONS(6363), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + [130044] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_LPAREN, - STATE(1432), 1, - sym_signature, - STATE(1099), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6332), 1, + aux_sym_interpreted_string_literal_token1, STATE(3585), 2, sym_line_comment, sym_block_comment, - [129986] = 6, + ACTIONS(6330), 4, + sym_escape_sequence, + anon_sym_SQUOTE, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACE, + [130064] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4998), 1, + ACTIONS(6346), 1, anon_sym_LBRACE, - ACTIONS(6352), 1, - anon_sym_DOLLARif, - STATE(2692), 2, - sym_compile_time_if_expression, - sym_block, + STATE(1536), 1, + sym__struct_body, + STATE(4169), 1, + sym_generic_parameters, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, STATE(3586), 2, sym_line_comment, sym_block_comment, - [130007] = 7, + [130088] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, + ACTIONS(6346), 1, anon_sym_LBRACE, - ACTIONS(6354), 1, - anon_sym_if, - STATE(1323), 1, - sym_block, - STATE(1324), 1, - sym_if_expression, + STATE(1527), 1, + sym__struct_body, + STATE(4175), 1, + sym_generic_parameters, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, STATE(3587), 2, sym_line_comment, sym_block_comment, - [130030] = 6, + [130112] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, + ACTIONS(5064), 1, anon_sym_LBRACE, - ACTIONS(6356), 1, + ACTIONS(6367), 1, anon_sym_DOLLARif, - STATE(1322), 2, + STATE(2153), 2, sym_compile_time_if_expression, sym_block, STATE(3588), 2, sym_line_comment, sym_block_comment, - [130051] = 6, + [130133] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(4126), 1, - sym_signature, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(5064), 1, + anon_sym_LBRACE, + ACTIONS(6367), 1, + anon_sym_DOLLARif, + STATE(2207), 2, + sym_compile_time_if_expression, + sym_block, STATE(3589), 2, sym_line_comment, sym_block_comment, - [130072] = 6, - ACTIONS(3), 1, + [130154] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4998), 1, - anon_sym_LBRACE, - ACTIONS(6352), 1, - anon_sym_DOLLARif, - STATE(2687), 2, - sym_compile_time_if_expression, - sym_block, STATE(3590), 2, sym_line_comment, sym_block_comment, - [130093] = 7, + ACTIONS(6294), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [130171] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4998), 1, - anon_sym_LBRACE, - ACTIONS(6358), 1, - anon_sym_if, - STATE(2685), 1, - sym_if_expression, - STATE(2686), 1, - sym_block, + ACTIONS(6369), 1, + anon_sym_LPAREN, + STATE(1639), 1, + sym_signature, + STATE(1104), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3591), 2, sym_line_comment, sym_block_comment, - [130116] = 6, + [130192] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6360), 1, - sym_identifier, - ACTIONS(6363), 1, - anon_sym_RBRACE, - STATE(3563), 1, - sym_enum_field_definition, - STATE(3592), 3, + ACTIONS(6371), 1, + anon_sym_EQ, + STATE(4629), 1, + sym_generic_parameters, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(3592), 2, sym_line_comment, sym_block_comment, - aux_sym__enum_body_repeat1, - [130137] = 5, - ACTIONS(3), 1, + [130213] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6365), 1, - anon_sym_COMMA, - ACTIONS(6368), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(6376), 1, + anon_sym_STAR_SLASH, + ACTIONS(6373), 2, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, STATE(3593), 3, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [130156] = 4, + aux_sym_block_comment_repeat1, + [130232] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(6380), 1, + anon_sym_STAR_SLASH, + STATE(3593), 1, + aux_sym_block_comment_repeat1, + ACTIONS(6378), 2, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, STATE(3594), 2, sym_line_comment, sym_block_comment, - ACTIONS(6343), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [130173] = 6, - ACTIONS(3), 1, + [130253] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6370), 1, - anon_sym_LPAREN, - STATE(2016), 1, - sym_signature, - STATE(1196), 2, - sym_parameter_list, - sym_type_parameter_list, STATE(3595), 2, sym_line_comment, sym_block_comment, - [130194] = 7, + ACTIONS(4259), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [130270] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5028), 1, + ACTIONS(5050), 1, anon_sym_LBRACE, - ACTIONS(6372), 1, - anon_sym_if, - STATE(1231), 1, - sym_if_expression, - STATE(1232), 1, + ACTIONS(6382), 1, + anon_sym_DOLLARif, + STATE(2685), 2, + sym_compile_time_if_expression, sym_block, STATE(3596), 2, sym_line_comment, sym_block_comment, - [130217] = 6, + [130291] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5028), 1, + ACTIONS(5066), 1, anon_sym_LBRACE, - ACTIONS(6374), 1, + ACTIONS(6384), 1, anon_sym_DOLLARif, - STATE(1234), 2, + STATE(1338), 2, sym_compile_time_if_expression, sym_block, STATE(3597), 2, sym_line_comment, sym_block_comment, - [130238] = 6, + [130312] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, + ACTIONS(6386), 1, anon_sym_LPAREN, - STATE(4206), 1, + STATE(2014), 1, sym_signature, - STATE(2850), 2, + STATE(1167), 2, sym_parameter_list, sym_type_parameter_list, STATE(3598), 2, sym_line_comment, sym_block_comment, - [130259] = 4, - ACTIONS(497), 1, + [130333] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(5066), 1, + anon_sym_LBRACE, + ACTIONS(6384), 1, + anon_sym_DOLLARif, + STATE(1297), 2, + sym_compile_time_if_expression, + sym_block, STATE(3599), 2, sym_line_comment, sym_block_comment, - ACTIONS(6376), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [130276] = 6, + [130354] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_LPAREN, - STATE(1434), 1, - sym_signature, - STATE(1099), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(5050), 1, + anon_sym_LBRACE, + ACTIONS(6382), 1, + anon_sym_DOLLARif, + STATE(2680), 2, + sym_compile_time_if_expression, + sym_block, STATE(3600), 2, sym_line_comment, sym_block_comment, - [130297] = 5, - ACTIONS(497), 1, + [130375] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6380), 1, - aux_sym_c_string_literal_token2, + ACTIONS(5050), 1, + anon_sym_LBRACE, + ACTIONS(6388), 1, + anon_sym_if, + STATE(2678), 1, + sym_if_expression, + STATE(2679), 1, + sym_block, STATE(3601), 2, sym_line_comment, sym_block_comment, - ACTIONS(6378), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [130316] = 6, + [130398] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, + ACTIONS(5066), 1, anon_sym_LBRACE, - ACTIONS(6356), 1, - anon_sym_DOLLARif, - STATE(1366), 2, - sym_compile_time_if_expression, + ACTIONS(6390), 1, + anon_sym_if, + STATE(1293), 1, + sym_if_expression, + STATE(1300), 1, sym_block, STATE(3602), 2, sym_line_comment, sym_block_comment, - [130337] = 7, + [130421] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6382), 1, - sym_identifier, - STATE(3393), 1, - sym_import_path, - STATE(3398), 1, - sym_import_name, - STATE(3677), 1, - sym_import_spec, + ACTIONS(5004), 1, + anon_sym_LBRACE, + ACTIONS(6392), 1, + anon_sym_if, + STATE(1220), 1, + sym_block, + STATE(1221), 1, + sym_if_expression, STATE(3603), 2, sym_line_comment, sym_block_comment, - [130360] = 6, + [130444] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5028), 1, + ACTIONS(5004), 1, anon_sym_LBRACE, - ACTIONS(6374), 1, + ACTIONS(6394), 1, anon_sym_DOLLARif, - STATE(1243), 2, + STATE(1216), 2, sym_compile_time_if_expression, sym_block, STATE(3604), 2, sym_line_comment, sym_block_comment, - [130381] = 6, + [130465] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, + ACTIONS(6396), 1, anon_sym_LPAREN, - STATE(4263), 1, + STATE(2299), 1, sym_signature, - STATE(2850), 2, + STATE(1401), 2, sym_parameter_list, sym_type_parameter_list, STATE(3605), 2, sym_line_comment, sym_block_comment, - [130402] = 6, - ACTIONS(3), 1, + [130486] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6384), 1, - sym_identifier, - STATE(3872), 1, - sym_generic_parameter, - ACTIONS(6386), 2, - anon_sym_GT, - anon_sym_RBRACK, STATE(3606), 2, sym_line_comment, sym_block_comment, - [130423] = 6, + ACTIONS(6398), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [130503] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6388), 1, - anon_sym_LPAREN, - STATE(1639), 1, - sym_signature, - STATE(2870), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(5036), 1, + anon_sym_LBRACE, + ACTIONS(6400), 1, + anon_sym_if, + STATE(2031), 1, + sym_block, + STATE(2040), 1, + sym_if_expression, STATE(3607), 2, sym_line_comment, sym_block_comment, - [130444] = 6, + [130526] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6390), 1, + ACTIONS(6402), 1, sym_identifier, - ACTIONS(6392), 1, - anon_sym_DOLLAR, - STATE(1871), 2, - sym_reference_expression, - sym_compile_time_selector_expression, + ACTIONS(6404), 1, + anon_sym_RPAREN, + STATE(3673), 1, + aux_sym_const_declaration_repeat1, + STATE(3700), 1, + sym_const_definition, STATE(3608), 2, sym_line_comment, sym_block_comment, - [130465] = 6, + [130549] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_LPAREN, - STATE(1436), 1, - sym_signature, - STATE(1099), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6406), 1, + anon_sym_EQ, + STATE(4478), 1, + sym_generic_parameters, + ACTIONS(4922), 2, + anon_sym_LBRACK, + anon_sym_LT2, STATE(3609), 2, sym_line_comment, sym_block_comment, - [130486] = 6, + [130570] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6394), 1, + ACTIONS(6192), 1, + anon_sym_mut, + ACTIONS(6194), 1, + anon_sym_shared, + ACTIONS(6408), 1, sym_identifier, - ACTIONS(6396), 1, - anon_sym_DOLLAR, - STATE(1925), 2, - sym_reference_expression, - sym_compile_time_selector_expression, + STATE(4477), 1, + sym_mutability_modifiers, STATE(3610), 2, sym_line_comment, sym_block_comment, - [130507] = 5, - ACTIONS(497), 1, + [130593] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6400), 1, - aux_sym_c_string_literal_token1, + ACTIONS(5036), 1, + anon_sym_LBRACE, + ACTIONS(6410), 1, + anon_sym_DOLLARif, + STATE(2030), 2, + sym_compile_time_if_expression, + sym_block, STATE(3611), 2, sym_line_comment, sym_block_comment, - ACTIONS(6398), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [130526] = 7, + [130614] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6402), 1, - sym_identifier, - ACTIONS(6404), 1, - anon_sym_RPAREN, - STATE(3583), 1, - aux_sym_const_declaration_repeat1, - STATE(3729), 1, - sym_const_definition, + ACTIONS(5004), 1, + anon_sym_LBRACE, + ACTIONS(6394), 1, + anon_sym_DOLLARif, + STATE(1195), 2, + sym_compile_time_if_expression, + sym_block, STATE(3612), 2, sym_line_comment, sym_block_comment, - [130549] = 7, + [130635] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6402), 1, - sym_identifier, - ACTIONS(6406), 1, - anon_sym_RPAREN, - STATE(3583), 1, - aux_sym_const_declaration_repeat1, - STATE(3729), 1, - sym_const_definition, + ACTIONS(6412), 1, + anon_sym_as, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(1573), 1, + sym__enum_body, + STATE(4171), 1, + sym_enum_backed_type, STATE(3613), 2, sym_line_comment, sym_block_comment, - [130572] = 7, + [130658] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, - anon_sym_LBRACE, - ACTIONS(6408), 1, - anon_sym_if, - STATE(2056), 1, - sym_block, - STATE(2057), 1, - sym_if_expression, + ACTIONS(6416), 1, + sym_identifier, + ACTIONS(6418), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1857), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3614), 2, sym_line_comment, sym_block_comment, - [130595] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_LPAREN, - STATE(1427), 1, - sym_signature, - STATE(1099), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3615), 2, - sym_line_comment, - sym_block_comment, - [130616] = 6, + [130679] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, + ACTIONS(5036), 1, anon_sym_LBRACE, ACTIONS(6410), 1, anon_sym_DOLLARif, - STATE(2051), 2, + STATE(2013), 2, sym_compile_time_if_expression, sym_block, - STATE(3616), 2, + STATE(3615), 2, sym_line_comment, sym_block_comment, - [130637] = 4, - ACTIONS(497), 1, + [130700] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3617), 2, + ACTIONS(6402), 1, + sym_identifier, + ACTIONS(6420), 1, + anon_sym_RPAREN, + STATE(3700), 1, + sym_const_definition, + STATE(3733), 1, + aux_sym_const_declaration_repeat1, + STATE(3616), 2, sym_line_comment, sym_block_comment, - ACTIONS(4353), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [130654] = 6, + [130723] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, + ACTIONS(6422), 1, anon_sym_LPAREN, - STATE(4317), 1, + STATE(1802), 1, sym_signature, - STATE(2850), 2, + STATE(1123), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3618), 2, + STATE(3617), 2, sym_line_comment, sym_block_comment, - [130675] = 6, + [130744] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, - anon_sym_LBRACE, - ACTIONS(6410), 1, - anon_sym_DOLLARif, - STATE(2025), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3619), 2, + ACTIONS(6424), 1, + sym_identifier, + ACTIONS(6426), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2106), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3618), 2, sym_line_comment, sym_block_comment, - [130696] = 5, - ACTIONS(497), 1, + [130765] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6414), 1, - aux_sym_c_string_literal_token2, - STATE(3620), 2, + ACTIONS(6428), 1, + sym_identifier, + ACTIONS(6430), 1, + anon_sym_RPAREN, + STATE(3642), 1, + sym_global_var_definition, + STATE(3676), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3619), 2, sym_line_comment, sym_block_comment, - ACTIONS(6412), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [130715] = 5, - ACTIONS(497), 1, + [130788] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6418), 1, - aux_sym_c_string_literal_token1, - STATE(3621), 2, + ACTIONS(5052), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + anon_sym_DOLLARif, + STATE(2463), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3620), 2, sym_line_comment, sym_block_comment, - ACTIONS(6416), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [130734] = 6, + [130809] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6388), 1, + ACTIONS(6434), 1, anon_sym_LPAREN, - STATE(3355), 1, + STATE(2229), 1, sym_signature, - STATE(2429), 2, + STATE(1397), 2, sym_parameter_list, sym_type_parameter_list, + STATE(3621), 2, + sym_line_comment, + sym_block_comment, + [130830] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6436), 1, + sym_identifier, + ACTIONS(6438), 1, + anon_sym_DOLLAR_LPAREN, + STATE(992), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3622), 2, sym_line_comment, sym_block_comment, - [130755] = 4, - ACTIONS(497), 1, + [130851] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6412), 1, + anon_sym_as, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(1524), 1, + sym__enum_body, + STATE(4176), 1, + sym_enum_backed_type, STATE(3623), 2, sym_line_comment, sym_block_comment, - ACTIONS(4349), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [130772] = 6, + [130874] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(4002), 1, - sym_signature, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(5054), 1, + anon_sym_LBRACE, + ACTIONS(6440), 1, + anon_sym_DOLLARif, + STATE(2325), 2, + sym_compile_time_if_expression, + sym_block, STATE(3624), 2, sym_line_comment, sym_block_comment, - [130793] = 4, - ACTIONS(497), 1, + [130895] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6442), 1, + anon_sym_LPAREN, + STATE(1210), 1, + sym_signature, + STATE(951), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3625), 2, sym_line_comment, sym_block_comment, - ACTIONS(4345), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [130810] = 4, - ACTIONS(497), 1, + [130916] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(5052), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + anon_sym_DOLLARif, + STATE(2470), 2, + sym_compile_time_if_expression, + sym_block, STATE(3626), 2, sym_line_comment, sym_block_comment, - ACTIONS(4341), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [130827] = 7, + [130937] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6420), 1, - anon_sym_as, - ACTIONS(6422), 1, + ACTIONS(5052), 1, anon_sym_LBRACE, - STATE(1511), 1, - sym__enum_body, - STATE(4118), 1, - sym_enum_backed_type, + ACTIONS(6444), 1, + anon_sym_if, + STATE(2471), 1, + sym_block, + STATE(2472), 1, + sym_if_expression, STATE(3627), 2, sym_line_comment, sym_block_comment, - [130850] = 6, + [130960] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6424), 1, + ACTIONS(6446), 1, anon_sym_LPAREN, - STATE(1813), 1, + STATE(2717), 1, sym_signature, - STATE(1122), 2, + STATE(1579), 2, sym_parameter_list, sym_type_parameter_list, STATE(3628), 2, sym_line_comment, sym_block_comment, - [130871] = 6, + [130981] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, + ACTIONS(5054), 1, anon_sym_LBRACE, - ACTIONS(6426), 1, + ACTIONS(6440), 1, anon_sym_DOLLARif, - STATE(1699), 2, + STATE(2339), 2, sym_compile_time_if_expression, sym_block, STATE(3629), 2, sym_line_comment, sym_block_comment, - [130892] = 6, + [131002] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(4236), 1, - sym_signature, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(5054), 1, + anon_sym_LBRACE, + ACTIONS(6448), 1, + anon_sym_if, + STATE(2340), 1, + sym_block, + STATE(2341), 1, + sym_if_expression, STATE(3630), 2, sym_line_comment, sym_block_comment, - [130913] = 6, - ACTIONS(3), 1, + [131025] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6428), 1, - sym_identifier, - ACTIONS(6430), 1, - anon_sym_DOLLAR, - STATE(1158), 2, - sym_reference_expression, - sym_compile_time_selector_expression, STATE(3631), 2, sym_line_comment, sym_block_comment, - [130934] = 7, + ACTIONS(6450), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [131042] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6432), 1, - sym_identifier, - ACTIONS(6434), 1, - anon_sym_RPAREN, - STATE(3713), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3744), 1, - sym_global_var_definition, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(6452), 1, + anon_sym_if, + STATE(1021), 1, + sym_block, + STATE(1026), 1, + sym_if_expression, STATE(3632), 2, sym_line_comment, sym_block_comment, - [130957] = 6, + [131065] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3633), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6355), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [131082] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(4304), 1, + STATE(2299), 1, sym_signature, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3633), 2, + STATE(3634), 2, sym_line_comment, sym_block_comment, - [130978] = 6, + [131103] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6436), 1, - sym_identifier, - ACTIONS(6438), 1, - anon_sym_DOLLAR, - STATE(2339), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3634), 2, + ACTIONS(6454), 1, + sym_identifier, + ACTIONS(6457), 1, + anon_sym_RPAREN, + STATE(3700), 1, + sym_const_definition, + STATE(3635), 3, sym_line_comment, sym_block_comment, - [130999] = 6, + aux_sym_const_declaration_repeat1, + [131124] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6440), 1, - sym_identifier, - ACTIONS(6442), 1, - anon_sym_DOLLAR, - STATE(460), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3635), 2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(6459), 1, + anon_sym_DOLLARif, + STATE(1016), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3636), 2, sym_line_comment, sym_block_comment, - [131020] = 7, + [131145] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6402), 1, - sym_identifier, - ACTIONS(6444), 1, + ACTIONS(6461), 1, + anon_sym_COMMA, + ACTIONS(6464), 2, anon_sym_RPAREN, - STATE(3699), 1, - aux_sym_const_declaration_repeat1, - STATE(3729), 1, - sym_const_definition, - STATE(3636), 2, + anon_sym_RBRACK, + STATE(3637), 3, sym_line_comment, sym_block_comment, - [131043] = 6, + aux_sym_type_parameters_repeat1, + [131164] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6446), 1, - anon_sym_LPAREN, - STATE(1172), 1, - sym_signature, - STATE(948), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3637), 2, + ACTIONS(6402), 1, + sym_identifier, + ACTIONS(6404), 1, + anon_sym_RPAREN, + STATE(3635), 1, + aux_sym_const_declaration_repeat1, + STATE(3700), 1, + sym_const_definition, + STATE(3638), 2, sym_line_comment, sym_block_comment, - [131064] = 6, + [131187] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6448), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(999), 1, + STATE(1014), 1, sym_signature, - STATE(181), 2, + STATE(183), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3638), 2, - sym_line_comment, - sym_block_comment, - [131085] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6414), 1, - aux_sym_c_string_literal_token1, STATE(3639), 2, sym_line_comment, sym_block_comment, - ACTIONS(6412), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [131104] = 6, + [131208] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, - anon_sym_LBRACE, - ACTIONS(6426), 1, - anon_sym_DOLLARif, - STATE(1717), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3640), 2, + ACTIONS(6468), 1, + sym_identifier, + ACTIONS(6471), 1, + anon_sym_RPAREN, + STATE(3642), 1, + sym_global_var_definition, + STATE(3640), 3, sym_line_comment, sym_block_comment, - [131125] = 6, + aux_sym_global_var_declaration_repeat1, + [131229] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, + ACTIONS(6473), 1, anon_sym_LPAREN, - STATE(4232), 1, + STATE(339), 1, sym_signature, - STATE(2850), 2, + STATE(68), 2, sym_parameter_list, sym_type_parameter_list, STATE(3641), 2, sym_line_comment, sym_block_comment, - [131146] = 4, + [131250] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, @@ -297822,8856 +297902,8840 @@ static const uint16_t ts_small_parse_table[] = { STATE(3642), 2, sym_line_comment, sym_block_comment, - ACTIONS(4186), 4, + ACTIONS(6475), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [131163] = 6, + anon_sym_SEMI, + [131267] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6384), 1, + ACTIONS(6477), 1, sym_identifier, - STATE(3872), 1, + STATE(3794), 1, sym_generic_parameter, - ACTIONS(6450), 2, + ACTIONS(6479), 2, anon_sym_GT, anon_sym_RBRACK, STATE(3643), 2, sym_line_comment, sym_block_comment, - [131184] = 6, + [131288] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6452), 1, - anon_sym_COMMA, - STATE(3661), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6450), 2, - anon_sym_GT, - anon_sym_RBRACK, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(4029), 1, + sym_signature, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3644), 2, sym_line_comment, sym_block_comment, - [131205] = 6, + [131309] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6454), 1, - sym_identifier, - ACTIONS(6456), 1, - anon_sym_DOLLAR, - STATE(1353), 2, - sym_reference_expression, - sym_compile_time_selector_expression, + ACTIONS(6481), 1, + anon_sym_COMMA, + STATE(3703), 1, + aux_sym_generic_parameters_repeat1, + ACTIONS(6479), 2, + anon_sym_GT, + anon_sym_RBRACK, STATE(3645), 2, sym_line_comment, sym_block_comment, - [131226] = 6, + [131330] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_LPAREN, - STATE(1425), 1, - sym_signature, - STATE(1099), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6428), 1, + sym_identifier, + ACTIONS(6483), 1, + anon_sym_RPAREN, + STATE(3640), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3642), 1, + sym_global_var_definition, STATE(3646), 2, sym_line_comment, sym_block_comment, - [131247] = 5, - ACTIONS(497), 1, + [131353] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6418), 1, - aux_sym_c_string_literal_token2, + ACTIONS(5046), 1, + anon_sym_LBRACE, + ACTIONS(6459), 1, + anon_sym_DOLLARif, + STATE(1010), 2, + sym_compile_time_if_expression, + sym_block, STATE(3647), 2, sym_line_comment, sym_block_comment, - ACTIONS(6416), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [131266] = 4, - ACTIONS(497), 1, + [131374] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6412), 1, + anon_sym_as, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(1495), 1, + sym__enum_body, + STATE(4040), 1, + sym_enum_backed_type, STATE(3648), 2, sym_line_comment, sym_block_comment, - ACTIONS(4357), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [131283] = 4, - ACTIONS(497), 1, + [131397] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(4222), 1, + sym_signature, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3649), 2, sym_line_comment, sym_block_comment, - ACTIONS(1753), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [131300] = 6, + [131418] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5032), 1, - anon_sym_LBRACE, - ACTIONS(6458), 1, - anon_sym_DOLLARif, - STATE(1998), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6485), 1, + sym_identifier, + ACTIONS(6487), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2043), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3650), 2, sym_line_comment, sym_block_comment, - [131321] = 6, + [131439] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(4204), 1, - sym_signature, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6489), 1, + sym_identifier, + ACTIONS(6491), 1, + anon_sym_RBRACE, + STATE(3583), 1, + sym_enum_field_definition, + STATE(3711), 1, + aux_sym__enum_body_repeat1, STATE(3651), 2, sym_line_comment, sym_block_comment, - [131342] = 6, + [131462] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_LPAREN, - STATE(1437), 1, - sym_signature, - STATE(1099), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(5064), 1, + anon_sym_LBRACE, + ACTIONS(6493), 1, + anon_sym_if, + STATE(2154), 1, + sym_block, + STATE(2155), 1, + sym_if_expression, STATE(3652), 2, sym_line_comment, sym_block_comment, - [131363] = 4, - ACTIONS(497), 1, + [131485] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6495), 1, + sym_identifier, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2521), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3653), 2, sym_line_comment, sym_block_comment, - ACTIONS(4337), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [131380] = 6, + [131506] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, - anon_sym_LBRACE, - ACTIONS(6460), 1, - anon_sym_DOLLARif, - STATE(2149), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6499), 1, + sym_identifier, + ACTIONS(6501), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1384), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3654), 2, sym_line_comment, sym_block_comment, - [131401] = 4, - ACTIONS(497), 1, + [131527] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6134), 1, + anon_sym_LPAREN, + STATE(1445), 1, + sym_signature, + STATE(1100), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3655), 2, sym_line_comment, sym_block_comment, - ACTIONS(4190), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [131418] = 7, + [131548] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6420), 1, - anon_sym_as, - ACTIONS(6422), 1, + ACTIONS(5056), 1, anon_sym_LBRACE, - STATE(1504), 1, - sym__enum_body, - STATE(4186), 1, - sym_enum_backed_type, + ACTIONS(6503), 1, + anon_sym_if, + STATE(444), 1, + sym_block, + STATE(445), 1, + sym_if_expression, STATE(3656), 2, sym_line_comment, sym_block_comment, - [131441] = 6, + [131571] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(5056), 1, anon_sym_LBRACE, - ACTIONS(6460), 1, + ACTIONS(6505), 1, anon_sym_DOLLARif, - STATE(2163), 2, + STATE(443), 2, sym_compile_time_if_expression, sym_block, STATE(3657), 2, sym_line_comment, sym_block_comment, - [131462] = 7, + [131592] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, - anon_sym_LBRACE, - ACTIONS(6462), 1, - anon_sym_if, - STATE(2177), 1, - sym_block, - STATE(2181), 1, - sym_if_expression, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(4201), 1, + sym_signature, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3658), 2, sym_line_comment, sym_block_comment, - [131485] = 7, + [131613] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6464), 1, - anon_sym_DOT, - ACTIONS(6466), 1, - anon_sym_RBRACE, - ACTIONS(6468), 1, - sym_int_literal, - ACTIONS(6470), 1, - aux_sym_format_specifier_token1, + ACTIONS(6402), 1, + sym_identifier, + ACTIONS(6507), 1, + anon_sym_RPAREN, + STATE(3638), 1, + aux_sym_const_declaration_repeat1, + STATE(3700), 1, + sym_const_definition, STATE(3659), 2, sym_line_comment, sym_block_comment, - [131508] = 7, + [131636] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, + ACTIONS(4715), 1, anon_sym_LBRACE, - ACTIONS(6472), 1, - anon_sym_if, - STATE(1686), 1, - sym_if_expression, - STATE(1695), 1, + ACTIONS(6509), 1, + anon_sym_DOLLARif, + STATE(1727), 2, + sym_compile_time_if_expression, sym_block, STATE(3660), 2, sym_line_comment, sym_block_comment, - [131531] = 5, + [131657] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6474), 1, - anon_sym_COMMA, - ACTIONS(6477), 2, - anon_sym_GT, - anon_sym_RBRACK, - STATE(3661), 3, + ACTIONS(4715), 1, + anon_sym_LBRACE, + ACTIONS(6509), 1, + anon_sym_DOLLARif, + STATE(1734), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3661), 2, sym_line_comment, sym_block_comment, - aux_sym_generic_parameters_repeat1, - [131550] = 7, + [131678] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6076), 1, - anon_sym_mut, - ACTIONS(6078), 1, - anon_sym_shared, - ACTIONS(6479), 1, - sym_identifier, - STATE(4452), 1, - sym_mutability_modifiers, + ACTIONS(4715), 1, + anon_sym_LBRACE, + ACTIONS(6511), 1, + anon_sym_if, + STATE(1735), 1, + sym_block, + STATE(1737), 1, + sym_if_expression, STATE(3662), 2, sym_line_comment, sym_block_comment, - [131573] = 6, + [131701] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6481), 1, - anon_sym_LPAREN, - STATE(2233), 1, - sym_signature, - STATE(1398), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6513), 1, + sym_identifier, + ACTIONS(6515), 1, + anon_sym_DOLLAR_LPAREN, + STATE(457), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3663), 2, sym_line_comment, sym_block_comment, - [131594] = 6, + [131722] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6483), 1, - anon_sym_EQ, - STATE(4413), 1, - sym_generic_parameters, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, + ACTIONS(6517), 1, + anon_sym_LPAREN, + STATE(1639), 1, + sym_signature, + STATE(2837), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3664), 2, sym_line_comment, sym_block_comment, - [131615] = 7, + [131743] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6402), 1, - sym_identifier, - ACTIONS(6485), 1, - anon_sym_RPAREN, - STATE(3612), 1, - aux_sym_const_declaration_repeat1, - STATE(3729), 1, - sym_const_definition, + ACTIONS(6134), 1, + anon_sym_LPAREN, + STATE(1471), 1, + sym_signature, + STATE(1100), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3665), 2, sym_line_comment, sym_block_comment, - [131638] = 6, - ACTIONS(497), 1, + [131764] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - anon_sym_STAR_SLASH, - STATE(3690), 1, - aux_sym_block_comment_repeat1, - ACTIONS(6487), 2, - aux_sym_block_comment_token1, - aux_sym_block_comment_token2, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(4141), 1, + sym_signature, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3666), 2, sym_line_comment, sym_block_comment, - [131659] = 5, - ACTIONS(497), 1, + [131785] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 1, - aux_sym_c_string_literal_token1, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(4117), 1, + sym_signature, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3667), 2, sym_line_comment, sym_block_comment, - ACTIONS(6491), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [131678] = 4, - ACTIONS(497), 1, + [131806] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6519), 1, + anon_sym_COMMA, + STATE(3645), 1, + aux_sym_generic_parameters_repeat1, + ACTIONS(6521), 2, + anon_sym_GT, + anon_sym_RBRACK, STATE(3668), 2, sym_line_comment, sym_block_comment, - ACTIONS(4220), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [131695] = 6, + [131827] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6495), 1, + ACTIONS(6434), 1, anon_sym_LPAREN, - STATE(2356), 1, + STATE(2543), 1, sym_signature, - STATE(1403), 2, + STATE(1463), 2, sym_parameter_list, sym_type_parameter_list, STATE(3669), 2, sym_line_comment, sym_block_comment, - [131716] = 6, + [131848] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(4104), 1, - sym_signature, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6428), 1, + sym_identifier, + ACTIONS(6523), 1, + anon_sym_RPAREN, + STATE(3642), 1, + sym_global_var_definition, + STATE(3646), 1, + aux_sym_global_var_declaration_repeat1, STATE(3670), 2, sym_line_comment, sym_block_comment, - [131737] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - STATE(3671), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4214), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [131754] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - STATE(3672), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4230), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [131771] = 6, + [131871] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, + ACTIONS(6525), 1, anon_sym_LPAREN, - STATE(4077), 1, + STATE(1316), 1, sym_signature, - STATE(2850), 2, + STATE(982), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3673), 2, + STATE(3671), 2, sym_line_comment, sym_block_comment, - [131792] = 6, + [131892] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6388), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(3356), 1, + STATE(4058), 1, sym_signature, - STATE(2429), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3674), 2, + STATE(3672), 2, sym_line_comment, sym_block_comment, - [131813] = 6, + [131913] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6497), 1, - anon_sym_LPAREN, - STATE(2724), 1, - sym_signature, - STATE(1575), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3675), 2, + ACTIONS(6402), 1, + sym_identifier, + ACTIONS(6527), 1, + anon_sym_RPAREN, + STATE(3635), 1, + aux_sym_const_declaration_repeat1, + STATE(3700), 1, + sym_const_definition, + STATE(3673), 2, sym_line_comment, sym_block_comment, - [131834] = 6, + [131936] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, + ACTIONS(6134), 1, anon_sym_LPAREN, - STATE(1469), 1, + STATE(1460), 1, sym_signature, - STATE(1099), 2, + STATE(1100), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3676), 2, + STATE(3674), 2, sym_line_comment, sym_block_comment, - [131855] = 4, + [131957] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3677), 2, + ACTIONS(6529), 1, + anon_sym_STAR_SLASH, + STATE(3594), 1, + aux_sym_block_comment_repeat1, + ACTIONS(6378), 2, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, + STATE(3675), 2, sym_line_comment, sym_block_comment, - ACTIONS(6499), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [131872] = 6, + [131978] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - ACTIONS(6501), 1, - anon_sym_DOLLARif, - STATE(495), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3678), 2, + ACTIONS(6428), 1, + sym_identifier, + ACTIONS(6531), 1, + anon_sym_RPAREN, + STATE(3640), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3642), 1, + sym_global_var_definition, + STATE(3676), 2, sym_line_comment, sym_block_comment, - [131893] = 6, + [132001] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, + ACTIONS(6134), 1, anon_sym_LPAREN, - STATE(4003), 1, + STATE(1418), 1, sym_signature, - STATE(2850), 2, + STATE(1100), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3679), 2, + STATE(3677), 2, sym_line_comment, sym_block_comment, - [131914] = 5, - ACTIONS(497), 1, + [132022] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 1, - aux_sym_c_string_literal_token2, - STATE(3680), 2, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(4024), 1, + sym_signature, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3678), 2, sym_line_comment, sym_block_comment, - ACTIONS(6491), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [131933] = 4, - ACTIONS(497), 1, + [132043] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3681), 2, + ACTIONS(6402), 1, + sym_identifier, + ACTIONS(6533), 1, + anon_sym_RPAREN, + STATE(3700), 1, + sym_const_definition, + STATE(3735), 1, + aux_sym_const_declaration_repeat1, + STATE(3679), 2, sym_line_comment, sym_block_comment, - ACTIONS(4270), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [131950] = 5, + [132066] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6505), 1, - aux_sym_c_string_literal_token2, - STATE(3682), 2, + STATE(3680), 2, sym_line_comment, sym_block_comment, - ACTIONS(6503), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [131969] = 7, + ACTIONS(4190), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [132083] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, - anon_sym_LBRACE, - ACTIONS(6507), 1, - anon_sym_if, - STATE(2402), 1, - sym_if_expression, - STATE(2403), 1, - sym_block, - STATE(3683), 2, + ACTIONS(6535), 1, + sym_identifier, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2313), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3681), 2, sym_line_comment, sym_block_comment, - [131992] = 4, - ACTIONS(497), 1, + [132104] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3684), 2, + ACTIONS(6412), 1, + anon_sym_as, + ACTIONS(6414), 1, + anon_sym_LBRACE, + STATE(1561), 1, + sym__enum_body, + STATE(4278), 1, + sym_enum_backed_type, + STATE(3682), 2, sym_line_comment, sym_block_comment, - ACTIONS(4274), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [132009] = 6, + [132127] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(4082), 1, + STATE(4023), 1, sym_signature, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3685), 2, - sym_line_comment, - sym_block_comment, - [132030] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6509), 1, - sym_identifier, - ACTIONS(6512), 1, - anon_sym_RPAREN, - STATE(3744), 1, - sym_global_var_definition, - STATE(3686), 3, + STATE(3683), 2, sym_line_comment, sym_block_comment, - aux_sym_global_var_declaration_repeat1, - [132051] = 4, + [132148] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3687), 2, + STATE(3684), 2, sym_line_comment, sym_block_comment, - ACTIONS(6514), 4, + ACTIONS(6539), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [132068] = 4, + [132165] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3688), 2, + STATE(3685), 2, sym_line_comment, sym_block_comment, - ACTIONS(4309), 4, + ACTIONS(4186), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [132085] = 4, + [132182] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3689), 2, + STATE(3686), 2, sym_line_comment, sym_block_comment, - ACTIONS(6516), 4, + ACTIONS(4198), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [132102] = 5, + anon_sym_RBRACE, + [132199] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - anon_sym_STAR_SLASH, - ACTIONS(6518), 2, - aux_sym_block_comment_token1, - aux_sym_block_comment_token2, - STATE(3690), 3, - sym_line_comment, - sym_block_comment, - aux_sym_block_comment_repeat1, - [132121] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6523), 1, - sym_identifier, - ACTIONS(6525), 1, - anon_sym_DOLLAR, - STATE(2531), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3691), 2, + STATE(3687), 2, sym_line_comment, sym_block_comment, - [132142] = 6, + ACTIONS(4267), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [132216] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6527), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(1639), 1, + STATE(4070), 1, sym_signature, - STATE(1104), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3692), 2, + STATE(3688), 2, sym_line_comment, sym_block_comment, - [132163] = 7, + [132237] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6402), 1, - sym_identifier, - ACTIONS(6529), 1, - anon_sym_RPAREN, - STATE(3729), 1, - sym_const_definition, - STATE(3730), 1, - aux_sym_const_declaration_repeat1, - STATE(3693), 2, - sym_line_comment, - sym_block_comment, - [132186] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - STATE(3694), 2, + ACTIONS(5070), 1, + anon_sym_LBRACE, + ACTIONS(6541), 1, + anon_sym_if, + STATE(2863), 1, + sym_if_expression, + STATE(2881), 1, + sym_block, + STATE(3689), 2, sym_line_comment, sym_block_comment, - ACTIONS(4333), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [132203] = 7, + [132260] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, + ACTIONS(5070), 1, anon_sym_LBRACE, - ACTIONS(6531), 1, - anon_sym_if, - STATE(2854), 1, + ACTIONS(6543), 1, + anon_sym_DOLLARif, + STATE(2833), 2, + sym_compile_time_if_expression, sym_block, - STATE(2855), 1, - sym_if_expression, - STATE(3695), 2, + STATE(3690), 2, sym_line_comment, sym_block_comment, - [132226] = 6, + [132281] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, - anon_sym_LBRACE, - ACTIONS(6533), 1, - anon_sym_DOLLARif, - STATE(2853), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3696), 2, + ACTIONS(6545), 1, + sym_identifier, + STATE(3392), 1, + sym_import_path, + STATE(3398), 1, + sym_import_name, + STATE(3606), 1, + sym_import_spec, + STATE(3691), 2, sym_line_comment, sym_block_comment, - [132247] = 4, + [132304] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3697), 2, + STATE(3692), 2, sym_line_comment, sym_block_comment, - ACTIONS(6282), 4, + ACTIONS(4293), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [132264] = 6, + anon_sym_RBRACE, + [132321] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(4291), 1, + STATE(4178), 1, sym_signature, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3698), 2, - sym_line_comment, - sym_block_comment, - [132285] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6402), 1, - sym_identifier, - ACTIONS(6535), 1, - anon_sym_RPAREN, - STATE(3583), 1, - aux_sym_const_declaration_repeat1, - STATE(3729), 1, - sym_const_definition, - STATE(3699), 2, + STATE(3693), 2, sym_line_comment, sym_block_comment, - [132308] = 7, + [132342] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - ACTIONS(6537), 1, - anon_sym_if, - STATE(380), 1, - sym_if_expression, - STATE(381), 1, - sym_block, - STATE(3700), 2, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(4104), 1, + sym_signature, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3694), 2, sym_line_comment, sym_block_comment, - [132331] = 6, + [132363] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6481), 1, - anon_sym_LPAREN, - STATE(2554), 1, - sym_signature, - STATE(1455), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3701), 2, + ACTIONS(6547), 1, + sym_identifier, + ACTIONS(6549), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2669), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3695), 2, sym_line_comment, sym_block_comment, - [132352] = 4, + [132384] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3702), 2, + STATE(3696), 2, sym_line_comment, sym_block_comment, - ACTIONS(4329), 4, + ACTIONS(4182), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [132369] = 6, + [132401] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - ACTIONS(6533), 1, + ACTIONS(6551), 1, anon_sym_DOLLARif, - STATE(2846), 2, + STATE(1832), 2, sym_compile_time_if_expression, sym_block, - STATE(3703), 2, + STATE(3697), 2, sym_line_comment, sym_block_comment, - [132390] = 7, + [132422] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, - anon_sym_LBRACE, - ACTIONS(6539), 1, - anon_sym_if, - STATE(2484), 1, - sym_block, - STATE(2485), 1, - sym_if_expression, - STATE(3704), 2, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(4209), 1, + sym_signature, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3698), 2, sym_line_comment, sym_block_comment, - [132413] = 6, + [132443] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5034), 1, + ACTIONS(5070), 1, anon_sym_LBRACE, - ACTIONS(6541), 1, + ACTIONS(6543), 1, anon_sym_DOLLARif, - STATE(1082), 2, + STATE(2874), 2, sym_compile_time_if_expression, sym_block, - STATE(3705), 2, + STATE(3699), 2, sym_line_comment, sym_block_comment, - [132434] = 6, - ACTIONS(3), 1, + [132464] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, - anon_sym_LBRACE, - ACTIONS(6543), 1, - anon_sym_DOLLARif, - STATE(2482), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3706), 2, + STATE(3700), 2, sym_line_comment, sym_block_comment, - [132455] = 6, + ACTIONS(6553), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [132481] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6545), 1, + ACTIONS(6555), 1, sym_identifier, - ACTIONS(6547), 1, - anon_sym_DOLLAR, - STATE(2220), 2, + ACTIONS(6557), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2192), 2, sym_reference_expression, sym_compile_time_selector_expression, - STATE(3707), 2, + STATE(3701), 2, sym_line_comment, sym_block_comment, - [132476] = 7, + [132502] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6432), 1, + ACTIONS(6477), 1, sym_identifier, - ACTIONS(6549), 1, - anon_sym_RPAREN, - STATE(3744), 1, - sym_global_var_definition, - STATE(3746), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3708), 2, + STATE(3794), 1, + sym_generic_parameter, + ACTIONS(6559), 2, + anon_sym_GT, + anon_sym_RBRACK, + STATE(3702), 2, sym_line_comment, sym_block_comment, - [132499] = 6, + [132523] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, - anon_sym_LBRACE, - ACTIONS(6543), 1, - anon_sym_DOLLARif, - STATE(2476), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3709), 2, + ACTIONS(6561), 1, + anon_sym_COMMA, + ACTIONS(6564), 2, + anon_sym_GT, + anon_sym_RBRACK, + STATE(3703), 3, sym_line_comment, sym_block_comment, - [132520] = 6, - ACTIONS(3), 1, + aux_sym_generic_parameters_repeat1, + [132542] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_LPAREN, - STATE(1443), 1, - sym_signature, - STATE(1099), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3710), 2, + STATE(3704), 2, sym_line_comment, sym_block_comment, - [132541] = 5, + ACTIONS(4263), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [132559] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6505), 1, - aux_sym_c_string_literal_token1, - STATE(3711), 2, + STATE(3705), 2, sym_line_comment, sym_block_comment, - ACTIONS(6503), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [132560] = 6, + ACTIONS(4236), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [132576] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, - anon_sym_LPAREN, - STATE(1441), 1, - sym_signature, - STATE(1099), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3712), 2, + ACTIONS(6566), 1, + sym_identifier, + ACTIONS(6568), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1739), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3706), 2, sym_line_comment, sym_block_comment, - [132581] = 7, + [132597] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6432), 1, - sym_identifier, - ACTIONS(6551), 1, - anon_sym_RPAREN, - STATE(3686), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3744), 1, - sym_global_var_definition, - STATE(3713), 2, + ACTIONS(6134), 1, + anon_sym_LPAREN, + STATE(1421), 1, + sym_signature, + STATE(1100), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3707), 2, sym_line_comment, sym_block_comment, - [132604] = 6, + [132618] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, + ACTIONS(6517), 1, anon_sym_LPAREN, - STATE(4140), 1, + STATE(3340), 1, sym_signature, - STATE(2850), 2, + STATE(2422), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3714), 2, + STATE(3708), 2, sym_line_comment, sym_block_comment, - [132625] = 6, + [132639] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(2356), 1, + STATE(4312), 1, sym_signature, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3715), 2, + STATE(3709), 2, + sym_line_comment, + sym_block_comment, + [132660] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(6551), 1, + anon_sym_DOLLARif, + STATE(1897), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3710), 2, sym_line_comment, sym_block_comment, - [132646] = 7, + [132681] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6553), 1, + ACTIONS(6570), 1, sym_identifier, - ACTIONS(6555), 1, + ACTIONS(6573), 1, anon_sym_RBRACE, - STATE(3563), 1, + STATE(3583), 1, sym_enum_field_definition, - STATE(3592), 1, - aux_sym__enum_body_repeat1, - STATE(3716), 2, + STATE(3711), 3, sym_line_comment, sym_block_comment, - [132669] = 6, + aux_sym__enum_body_repeat1, + [132702] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - sym_identifier, - ACTIONS(6559), 1, - anon_sym_DOLLAR, - STATE(996), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3717), 2, + ACTIONS(5072), 1, + anon_sym_LBRACE, + ACTIONS(6575), 1, + anon_sym_if, + STATE(1894), 1, + sym_if_expression, + STATE(1896), 1, + sym_block, + STATE(3712), 2, sym_line_comment, sym_block_comment, - [132690] = 6, + [132725] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6561), 1, + ACTIONS(6517), 1, anon_sym_LPAREN, - STATE(1351), 1, + STATE(3359), 1, sym_signature, - STATE(991), 2, + STATE(2422), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3718), 2, + STATE(3713), 2, sym_line_comment, sym_block_comment, - [132711] = 6, + [132746] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(4247), 1, + STATE(4160), 1, sym_signature, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3719), 2, + STATE(3714), 2, sym_line_comment, sym_block_comment, - [132732] = 6, - ACTIONS(3), 1, + [132767] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6563), 1, - sym_identifier, - ACTIONS(6565), 1, - anon_sym_DOLLAR, - STATE(2664), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - STATE(3720), 2, + STATE(3715), 2, sym_line_comment, sym_block_comment, - [132753] = 7, + ACTIONS(4178), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [132784] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6420), 1, - anon_sym_as, - ACTIONS(6422), 1, + ACTIONS(5056), 1, anon_sym_LBRACE, - STATE(1500), 1, - sym__enum_body, - STATE(4205), 1, - sym_enum_backed_type, - STATE(3721), 2, + ACTIONS(6505), 1, + anon_sym_DOLLARif, + STATE(414), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3716), 2, sym_line_comment, sym_block_comment, - [132776] = 4, + [132805] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3722), 2, + STATE(3717), 2, sym_line_comment, sym_block_comment, - ACTIONS(4325), 4, + ACTIONS(4289), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [132793] = 6, - ACTIONS(3), 1, + [132822] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, - anon_sym_LBRACE, - ACTIONS(6567), 1, - anon_sym_DOLLARif, - STATE(1782), 2, - sym_compile_time_if_expression, - sym_block, - STATE(3723), 2, + STATE(3718), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4497), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [132839] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3719), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4457), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [132856] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3720), 2, sym_line_comment, sym_block_comment, - [132814] = 6, + ACTIONS(4393), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [132873] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(1417), 1, + STATE(4306), 1, sym_signature, - STATE(1099), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, + STATE(3721), 2, + sym_line_comment, + sym_block_comment, + [132894] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3722), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4389), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [132911] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3723), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4361), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [132928] = 4, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, STATE(3724), 2, sym_line_comment, sym_block_comment, - [132835] = 6, + ACTIONS(4206), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [132945] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, - anon_sym_LBRACE, - ACTIONS(6569), 1, - anon_sym_DOLLARif, - STATE(2410), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(4292), 1, + sym_signature, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3725), 2, sym_line_comment, sym_block_comment, - [132856] = 6, + [132966] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, - anon_sym_LBRACE, - ACTIONS(6569), 1, - anon_sym_DOLLARif, - STATE(2404), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(4180), 1, + sym_signature, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3726), 2, sym_line_comment, sym_block_comment, - [132877] = 6, + [132987] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, - sym_identifier, - ACTIONS(6573), 1, - anon_sym_DOLLAR, - STATE(2114), 2, - sym_reference_expression, - sym_compile_time_selector_expression, + ACTIONS(6134), 1, + anon_sym_LPAREN, + STATE(1426), 1, + sym_signature, + STATE(1100), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3727), 2, sym_line_comment, sym_block_comment, - [132898] = 6, + [133008] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, - anon_sym_LBRACE, - ACTIONS(6567), 1, - anon_sym_DOLLARif, - STATE(1807), 2, - sym_compile_time_if_expression, - sym_block, + ACTIONS(6577), 1, + anon_sym_DOT, + ACTIONS(6579), 1, + anon_sym_RBRACE, + ACTIONS(6581), 1, + sym_int_literal, + ACTIONS(6583), 1, + aux_sym_format_specifier_token1, STATE(3728), 2, sym_line_comment, sym_block_comment, - [132919] = 4, - ACTIONS(497), 1, + [133031] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6489), 1, + sym_identifier, + ACTIONS(6585), 1, + anon_sym_RBRACE, + STATE(3583), 1, + sym_enum_field_definition, + STATE(3651), 1, + aux_sym__enum_body_repeat1, STATE(3729), 2, sym_line_comment, sym_block_comment, - ACTIONS(6575), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [132936] = 7, + [133054] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6402), 1, - sym_identifier, - ACTIONS(6485), 1, - anon_sym_RPAREN, - STATE(3583), 1, - aux_sym_const_declaration_repeat1, - STATE(3729), 1, - sym_const_definition, + ACTIONS(6587), 1, + anon_sym_LPAREN, + STATE(2034), 1, + sym_signature, + STATE(1252), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3730), 2, sym_line_comment, sym_block_comment, - [132959] = 7, + [133075] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, - anon_sym_LBRACE, - ACTIONS(6577), 1, - anon_sym_if, - STATE(1808), 1, - sym_block, - STATE(1810), 1, - sym_if_expression, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(4156), 1, + sym_signature, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3731), 2, sym_line_comment, sym_block_comment, - [132982] = 6, - ACTIONS(3), 1, + [133096] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5034), 1, - anon_sym_LBRACE, - ACTIONS(6541), 1, - anon_sym_DOLLARif, - STATE(1044), 2, - sym_compile_time_if_expression, - sym_block, STATE(3732), 2, sym_line_comment, sym_block_comment, - [133003] = 6, + ACTIONS(1711), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [133113] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6579), 1, - anon_sym_LPAREN, - STATE(315), 1, - sym_signature, - STATE(69), 2, - sym_parameter_list, - sym_type_parameter_list, + ACTIONS(6402), 1, + sym_identifier, + ACTIONS(6533), 1, + anon_sym_RPAREN, + STATE(3635), 1, + aux_sym_const_declaration_repeat1, + STATE(3700), 1, + sym_const_definition, STATE(3733), 2, sym_line_comment, sym_block_comment, - [133024] = 6, + [133136] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, + ACTIONS(6134), 1, anon_sym_LPAREN, - STATE(4007), 1, + STATE(1424), 1, sym_signature, - STATE(2850), 2, + STATE(1100), 2, sym_parameter_list, sym_type_parameter_list, STATE(3734), 2, sym_line_comment, sym_block_comment, - [133045] = 7, + [133157] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5034), 1, - anon_sym_LBRACE, - ACTIONS(6581), 1, - anon_sym_if, - STATE(1032), 1, - sym_if_expression, - STATE(1039), 1, - sym_block, + ACTIONS(6402), 1, + sym_identifier, + ACTIONS(6589), 1, + anon_sym_RPAREN, + STATE(3635), 1, + aux_sym_const_declaration_repeat1, + STATE(3700), 1, + sym_const_definition, STATE(3735), 2, sym_line_comment, sym_block_comment, - [133068] = 6, + [133180] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, + ACTIONS(6134), 1, anon_sym_LPAREN, - STATE(2040), 1, + STATE(1436), 1, sym_signature, - STATE(1248), 2, + STATE(1100), 2, sym_parameter_list, sym_type_parameter_list, STATE(3736), 2, sym_line_comment, sym_block_comment, - [133089] = 6, + [133201] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, + ACTIONS(6134), 1, anon_sym_LPAREN, - STATE(1440), 1, + STATE(1427), 1, sym_signature, - STATE(1099), 2, + STATE(1100), 2, sym_parameter_list, sym_type_parameter_list, STATE(3737), 2, sym_line_comment, sym_block_comment, - [133110] = 7, + [133222] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6553), 1, + ACTIONS(6591), 1, sym_identifier, - ACTIONS(6585), 1, - anon_sym_RBRACE, - STATE(3563), 1, - sym_enum_field_definition, - STATE(3716), 1, - aux_sym__enum_body_repeat1, + ACTIONS(6593), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1154), 2, + sym_reference_expression, + sym_compile_time_selector_expression, STATE(3738), 2, sym_line_comment, sym_block_comment, - [133133] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6587), 1, - anon_sym_STAR_SLASH, - STATE(3666), 1, - aux_sym_block_comment_repeat1, - ACTIONS(6487), 2, - aux_sym_block_comment_token1, - aux_sym_block_comment_token2, - STATE(3739), 2, - sym_line_comment, - sym_block_comment, - [133154] = 6, + [133243] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(4091), 1, + STATE(4305), 1, sym_signature, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3740), 2, - sym_line_comment, - sym_block_comment, - [133175] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5032), 1, - anon_sym_LBRACE, - ACTIONS(6589), 1, - anon_sym_if, - STATE(1981), 1, - sym_if_expression, - STATE(1985), 1, - sym_block, - STATE(3741), 2, + STATE(3739), 2, sym_line_comment, sym_block_comment, - [133198] = 5, + [133264] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1887), 1, - anon_sym_DOT, - STATE(3742), 2, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(4079), 1, + sym_signature, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3740), 2, sym_line_comment, sym_block_comment, - ACTIONS(6591), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [133217] = 6, + [133285] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(4071), 1, + STATE(4132), 1, sym_signature, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3743), 2, + STATE(3741), 2, sym_line_comment, sym_block_comment, - [133238] = 4, + [133306] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - STATE(3744), 2, + STATE(3742), 2, sym_line_comment, sym_block_comment, - ACTIONS(6593), 4, + ACTIONS(6595), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [133255] = 6, + [133323] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, + ACTIONS(5062), 1, anon_sym_LBRACE, - ACTIONS(6501), 1, + ACTIONS(6597), 1, anon_sym_DOLLARif, - STATE(386), 2, + STATE(1963), 2, sym_compile_time_if_expression, sym_block, + STATE(3743), 2, + sym_line_comment, + sym_block_comment, + [133344] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6134), 1, + anon_sym_LPAREN, + STATE(1446), 1, + sym_signature, + STATE(1100), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3744), 2, + sym_line_comment, + sym_block_comment, + [133365] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6134), 1, + anon_sym_LPAREN, + STATE(1435), 1, + sym_signature, + STATE(1100), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3745), 2, sym_line_comment, sym_block_comment, - [133276] = 7, + [133386] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6432), 1, - sym_identifier, - ACTIONS(6595), 1, - anon_sym_RPAREN, - STATE(3686), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3744), 1, - sym_global_var_definition, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(4016), 1, + sym_signature, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3746), 2, sym_line_comment, sym_block_comment, - [133299] = 7, + [133407] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6402), 1, - sym_identifier, - ACTIONS(6535), 1, - anon_sym_RPAREN, - STATE(3613), 1, - aux_sym_const_declaration_repeat1, - STATE(3729), 1, - sym_const_definition, + ACTIONS(6134), 1, + anon_sym_LPAREN, + STATE(1431), 1, + sym_signature, + STATE(1100), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3747), 2, sym_line_comment, sym_block_comment, - [133322] = 6, + [133428] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6086), 1, + ACTIONS(6134), 1, anon_sym_LPAREN, - STATE(1474), 1, + STATE(1430), 1, sym_signature, - STATE(1099), 2, + STATE(1100), 2, sym_parameter_list, sym_type_parameter_list, STATE(3748), 2, sym_line_comment, sym_block_comment, - [133343] = 6, + [133449] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6597), 1, - sym_identifier, - ACTIONS(6599), 1, - anon_sym_DOLLAR, - STATE(1737), 2, - sym_reference_expression, - sym_compile_time_selector_expression, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(4153), 1, + sym_signature, + STATE(2870), 2, + sym_parameter_list, + sym_type_parameter_list, STATE(3749), 2, sym_line_comment, sym_block_comment, - [133364] = 7, + [133470] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6420), 1, - anon_sym_as, - ACTIONS(6422), 1, + ACTIONS(5062), 1, anon_sym_LBRACE, - STATE(1547), 1, - sym__enum_body, - STATE(4132), 1, - sym_enum_backed_type, + ACTIONS(6599), 1, + anon_sym_if, + STATE(1914), 1, + sym_if_expression, + STATE(1942), 1, + sym_block, STATE(3750), 2, sym_line_comment, sym_block_comment, - [133387] = 6, + [133493] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, - anon_sym_EQ, - STATE(4383), 1, - sym_generic_parameters, - ACTIONS(4918), 2, - anon_sym_LBRACK, - anon_sym_LT2, + ACTIONS(2053), 1, + anon_sym_DOT, STATE(3751), 2, sym_line_comment, sym_block_comment, - [133408] = 6, + ACTIONS(6601), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [133512] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, + ACTIONS(6031), 1, anon_sym_LPAREN, - STATE(4202), 1, + STATE(4105), 1, sym_signature, - STATE(2850), 2, + STATE(2870), 2, sym_parameter_list, sym_type_parameter_list, STATE(3752), 2, sym_line_comment, sym_block_comment, - [133429] = 6, + [133533] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5032), 1, + ACTIONS(5062), 1, anon_sym_LBRACE, - ACTIONS(6458), 1, + ACTIONS(6597), 1, anon_sym_DOLLARif, - STATE(1988), 2, + STATE(1946), 2, sym_compile_time_if_expression, sym_block, STATE(3753), 2, sym_line_comment, sym_block_comment, - [133450] = 6, + [133554] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6027), 1, - anon_sym_LPAREN, - STATE(4228), 1, - sym_signature, - STATE(2850), 2, - sym_parameter_list, - sym_type_parameter_list, STATE(3754), 2, sym_line_comment, sym_block_comment, - [133471] = 6, + ACTIONS(6603), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + [133570] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6603), 1, + ACTIONS(6605), 1, anon_sym_COMMA, - STATE(3644), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6605), 2, - anon_sym_GT, - anon_sym_RBRACK, + ACTIONS(6607), 1, + anon_sym_RPAREN, + STATE(3828), 1, + aux_sym_type_parameters_repeat1, STATE(3755), 2, sym_line_comment, sym_block_comment, - [133492] = 6, + [133590] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5224), 1, - anon_sym_COMMA, - ACTIONS(6607), 1, + ACTIONS(5422), 1, anon_sym_LBRACE, - STATE(3786), 1, - aux_sym_match_expression_list_repeat1, - STATE(3756), 2, + ACTIONS(6609), 1, + anon_sym_COMMA, + STATE(3756), 3, sym_line_comment, sym_block_comment, - [133512] = 6, - ACTIONS(497), 1, + aux_sym_match_expression_list_repeat1, + [133608] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6611), 1, - sym___double_quote, - STATE(3867), 1, - aux_sym_raw_string_literal_repeat2, + STATE(3936), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(6612), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(3757), 2, sym_line_comment, sym_block_comment, - [133532] = 6, + [133626] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_COMMA, - ACTIONS(6615), 1, - anon_sym_RPAREN, - STATE(3965), 1, - aux_sym_parameter_list_repeat1, STATE(3758), 2, sym_line_comment, sym_block_comment, - [133552] = 6, + ACTIONS(6614), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [133642] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6617), 1, - anon_sym_COMMA, - ACTIONS(6619), 1, + ACTIONS(5634), 1, anon_sym_RPAREN, - STATE(3973), 1, + ACTIONS(6616), 1, + anon_sym_COMMA, + STATE(3637), 1, aux_sym_type_parameters_repeat1, STATE(3759), 2, sym_line_comment, sym_block_comment, - [133572] = 6, + [133662] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + ACTIONS(6618), 1, anon_sym_COMMA, - ACTIONS(6621), 1, + ACTIONS(6620), 1, anon_sym_RPAREN, - STATE(3942), 1, + STATE(3784), 1, aux_sym_parameter_list_repeat1, STATE(3760), 2, sym_line_comment, sym_block_comment, - [133592] = 4, + [133682] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6622), 1, + anon_sym_COMMA, + ACTIONS(6624), 1, + anon_sym_RPAREN, + STATE(3785), 1, + aux_sym_type_parameter_list_repeat1, STATE(3761), 2, sym_line_comment, sym_block_comment, - ACTIONS(6623), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [133608] = 6, + [133702] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, + ACTIONS(6626), 1, + anon_sym_DQUOTE, + ACTIONS(6628), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6625), 1, - sym___double_quote, - STATE(3867), 1, + STATE(3988), 1, aux_sym_raw_string_literal_repeat2, STATE(3762), 2, sym_line_comment, sym_block_comment, - [133628] = 6, + [133722] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - sym___single_quote, - ACTIONS(6627), 1, + ACTIONS(6626), 1, + anon_sym_SQUOTE, + ACTIONS(6630), 1, aux_sym_raw_string_literal_token1, - STATE(3868), 1, + STATE(3993), 1, aux_sym_raw_string_literal_repeat1, STATE(3763), 2, sym_line_comment, sym_block_comment, - [133648] = 6, + [133742] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3999), 1, - anon_sym_LBRACE, - ACTIONS(5182), 1, + ACTIONS(6622), 1, anon_sym_COMMA, - STATE(3802), 1, - aux_sym_strictly_expression_list_repeat1, + ACTIONS(6632), 1, + anon_sym_RPAREN, + STATE(3896), 1, + aux_sym_type_parameter_list_repeat1, STATE(3764), 2, sym_line_comment, sym_block_comment, - [133668] = 6, + [133762] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5626), 1, - anon_sym_RPAREN, - ACTIONS(6629), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - STATE(3593), 1, + ACTIONS(6634), 1, + anon_sym_RBRACK, + STATE(3637), 1, aux_sym_type_parameters_repeat1, STATE(3765), 2, sym_line_comment, sym_block_comment, - [133688] = 6, + [133782] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + ACTIONS(6622), 1, anon_sym_COMMA, - ACTIONS(6631), 1, + ACTIONS(6636), 1, anon_sym_RPAREN, - STATE(3790), 1, - aux_sym_parameter_list_repeat1, + STATE(3799), 1, + aux_sym_type_parameter_list_repeat1, STATE(3766), 2, sym_line_comment, sym_block_comment, - [133708] = 6, + [133802] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(6618), 1, anon_sym_COMMA, - ACTIONS(6635), 1, + ACTIONS(6638), 1, anon_sym_RPAREN, - STATE(3791), 1, - aux_sym_type_parameter_list_repeat1, + STATE(3801), 1, + aux_sym_parameter_list_repeat1, STATE(3767), 2, sym_line_comment, sym_block_comment, - [133728] = 6, + [133822] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - anon_sym_COMMA, - ACTIONS(6637), 1, - anon_sym_RPAREN, - STATE(3933), 1, - aux_sym_type_parameter_list_repeat1, STATE(3768), 2, sym_line_comment, sym_block_comment, - [133748] = 6, + ACTIONS(6601), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [133838] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6639), 1, - anon_sym_DOT, - ACTIONS(6641), 1, - anon_sym_RBRACE, - ACTIONS(6643), 1, - aux_sym_format_specifier_token1, + ACTIONS(6640), 1, + anon_sym_COMMA, + ACTIONS(6642), 1, + anon_sym_RPAREN, + STATE(3954), 1, + aux_sym_type_parameters_repeat1, STATE(3769), 2, sym_line_comment, sym_block_comment, - [133768] = 6, + [133858] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5614), 1, - anon_sym_RPAREN, - ACTIONS(6645), 1, + ACTIONS(6644), 1, anon_sym_COMMA, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6646), 1, + anon_sym_PIPE, + STATE(3875), 1, + aux_sym_short_lambda_repeat1, STATE(3770), 2, sym_line_comment, sym_block_comment, - [133788] = 6, - ACTIONS(497), 1, + [133878] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6647), 1, - sym___double_quote, - STATE(3867), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6577), 1, + anon_sym_DOT, + ACTIONS(6579), 1, + anon_sym_RBRACE, + ACTIONS(6583), 1, + aux_sym_format_specifier_token1, STATE(3771), 2, sym_line_comment, sym_block_comment, - [133808] = 4, + [133898] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6648), 1, + sym_identifier, + ACTIONS(6650), 1, + anon_sym_LBRACE, + STATE(2568), 1, + sym__content_block, STATE(3772), 2, sym_line_comment, sym_block_comment, - ACTIONS(6649), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACK, - [133824] = 5, + [133918] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6651), 1, - anon_sym_COMMA, - ACTIONS(6654), 1, - anon_sym_COLON_EQ, - STATE(3773), 3, + STATE(3773), 2, sym_line_comment, sym_block_comment, - aux_sym_identifier_list_repeat1, - [133842] = 6, - ACTIONS(497), 1, + ACTIONS(6652), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [133934] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6647), 1, - sym___single_quote, - STATE(3868), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3774), 2, + ACTIONS(6654), 1, + anon_sym_COMMA, + ACTIONS(6657), 1, + anon_sym_COLON_EQ, + STATE(3774), 3, sym_line_comment, sym_block_comment, - [133862] = 4, + aux_sym_identifier_list_repeat1, + [133952] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(5234), 1, + anon_sym_COMMA, + ACTIONS(6659), 1, + anon_sym_LBRACE, + STATE(3756), 1, + aux_sym_match_expression_list_repeat1, STATE(3775), 2, sym_line_comment, sym_block_comment, - ACTIONS(6656), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [133878] = 6, + [133972] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6658), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - ACTIONS(6660), 1, + ACTIONS(6661), 1, anon_sym_RBRACK, - STATE(3907), 1, - aux_sym_capture_list_repeat1, + STATE(3765), 1, + aux_sym_type_parameters_repeat1, STATE(3776), 2, sym_line_comment, sym_block_comment, - [133898] = 5, - ACTIONS(3), 1, + [133992] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6662), 1, - anon_sym_COMMA, - ACTIONS(6665), 1, - anon_sym_PIPE, - STATE(3777), 3, + ACTIONS(6630), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6663), 1, + anon_sym_SQUOTE, + STATE(3800), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3777), 2, sym_line_comment, sym_block_comment, - aux_sym_short_lambda_repeat1, - [133916] = 6, - ACTIONS(3), 1, + [134012] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3484), 1, - anon_sym_SEMI, - ACTIONS(5154), 1, - anon_sym_COMMA, - STATE(3948), 1, - aux_sym_strictly_expression_list_repeat1, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6665), 1, + anon_sym_DQUOTE, + STATE(3762), 1, + aux_sym_raw_string_literal_repeat2, STATE(3778), 2, sym_line_comment, sym_block_comment, - [133936] = 5, + [134032] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6298), 1, + anon_sym_COMMA, ACTIONS(6667), 1, - anon_sym_SEMI, - ACTIONS(6670), 1, anon_sym_RBRACK, - STATE(3779), 3, + STATE(3795), 1, + aux_sym_type_parameters_repeat1, + STATE(3779), 2, sym_line_comment, sym_block_comment, - aux_sym_attribute_repeat1, - [133954] = 6, - ACTIONS(3), 1, + [134052] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5644), 1, - anon_sym_RPAREN, - ACTIONS(6672), 1, - anon_sym_COMMA, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6630), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6665), 1, + anon_sym_SQUOTE, + STATE(3763), 1, + aux_sym_raw_string_literal_repeat1, STATE(3780), 2, sym_line_comment, sym_block_comment, - [133974] = 6, - ACTIONS(3), 1, + [134072] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5620), 1, - anon_sym_RPAREN, - ACTIONS(6674), 1, - anon_sym_COMMA, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6663), 1, + anon_sym_DQUOTE, + STATE(3873), 1, + aux_sym_raw_string_literal_repeat2, STATE(3781), 2, sym_line_comment, sym_block_comment, - [133994] = 6, + [134092] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + ACTIONS(5234), 1, anon_sym_COMMA, - ACTIONS(6676), 1, - anon_sym_RPAREN, - STATE(3788), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6669), 1, + anon_sym_LBRACE, + STATE(3756), 1, + aux_sym_match_expression_list_repeat1, STATE(3782), 2, sym_line_comment, sym_block_comment, - [134014] = 6, + [134112] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(6322), 1, anon_sym_COMMA, - ACTIONS(6678), 1, + ACTIONS(6324), 1, anon_sym_RPAREN, - STATE(3792), 1, - aux_sym_type_parameter_list_repeat1, + STATE(3898), 1, + aux_sym_type_parameters_repeat1, STATE(3783), 2, sym_line_comment, sym_block_comment, - [134034] = 6, + [134132] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(6618), 1, anon_sym_COMMA, - ACTIONS(6680), 1, + ACTIONS(6671), 1, anon_sym_RPAREN, - STATE(3807), 1, - aux_sym_type_parameter_list_repeat1, + STATE(3801), 1, + aux_sym_parameter_list_repeat1, STATE(3784), 2, sym_line_comment, sym_block_comment, - [134054] = 6, + [134152] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(6622), 1, anon_sym_COMMA, - ACTIONS(6682), 1, - anon_sym_RBRACK, + ACTIONS(6673), 1, + anon_sym_RPAREN, STATE(3799), 1, - aux_sym_type_parameters_repeat1, + aux_sym_type_parameter_list_repeat1, STATE(3785), 2, sym_line_comment, sym_block_comment, - [134074] = 5, + [134172] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5354), 1, + ACTIONS(6675), 1, + sym_identifier, + ACTIONS(6677), 1, anon_sym_LBRACE, - ACTIONS(6684), 1, - anon_sym_COMMA, - STATE(3786), 3, + STATE(1835), 1, + sym__content_block, + STATE(3786), 2, sym_line_comment, sym_block_comment, - aux_sym_match_expression_list_repeat1, - [134092] = 6, + [134192] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(3488), 1, + anon_sym_COLON_EQ, + ACTIONS(5006), 1, anon_sym_COMMA, - ACTIONS(6687), 1, - anon_sym_RBRACK, - STATE(3797), 1, - aux_sym_type_parameters_repeat1, + STATE(3880), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3787), 2, sym_line_comment, sym_block_comment, - [134112] = 6, + [134212] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_COMMA, - ACTIONS(6689), 1, - anon_sym_RPAREN, - STATE(3965), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6679), 1, + anon_sym_SEMI, + ACTIONS(6681), 1, + anon_sym_RBRACK, + STATE(3804), 1, + aux_sym_attribute_repeat1, STATE(3788), 2, sym_line_comment, sym_block_comment, - [134132] = 4, + [134232] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3789), 2, + ACTIONS(6683), 1, + anon_sym_COMMA, + ACTIONS(6686), 1, + anon_sym_RBRACK, + STATE(3789), 3, sym_line_comment, sym_block_comment, - ACTIONS(6591), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [134148] = 6, + aux_sym_capture_list_repeat1, + [134250] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_COMMA, - ACTIONS(6691), 1, - anon_sym_RPAREN, - STATE(3965), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6688), 1, + sym_identifier, + ACTIONS(6690), 1, + anon_sym_LPAREN, + STATE(1482), 1, + sym_const_definition, STATE(3790), 2, sym_line_comment, sym_block_comment, - [134168] = 6, + [134270] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - anon_sym_COMMA, - ACTIONS(6693), 1, - anon_sym_RPAREN, - STATE(3807), 1, - aux_sym_type_parameter_list_repeat1, STATE(3791), 2, sym_line_comment, sym_block_comment, - [134188] = 6, + ACTIONS(6692), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [134286] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(4007), 1, + anon_sym_SEMI, + ACTIONS(5188), 1, anon_sym_COMMA, - ACTIONS(6695), 1, - anon_sym_RPAREN, - STATE(3807), 1, - aux_sym_type_parameter_list_repeat1, + STATE(3929), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3792), 2, sym_line_comment, sym_block_comment, - [134208] = 6, + [134306] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6697), 1, - anon_sym_COMMA, - ACTIONS(6699), 1, - anon_sym_RPAREN, - STATE(3955), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6694), 1, + sym_identifier, + ACTIONS(6696), 1, + anon_sym_LBRACE, + STATE(1994), 1, + sym__content_block, STATE(3793), 2, sym_line_comment, sym_block_comment, - [134228] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6701), 1, - sym___double_quote, - STATE(3884), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3794), 2, - sym_line_comment, - sym_block_comment, - [134248] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6701), 1, - sym___single_quote, - STATE(3886), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3795), 2, - sym_line_comment, - sym_block_comment, - [134268] = 6, + [134326] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6703), 1, - anon_sym_COMMA, - ACTIONS(6705), 1, - anon_sym_RPAREN, - STATE(3960), 1, - aux_sym_type_parameters_repeat1, - STATE(3796), 2, + STATE(3794), 2, sym_line_comment, sym_block_comment, - [134288] = 6, + ACTIONS(6564), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACK, + [134342] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - ACTIONS(6707), 1, + ACTIONS(6698), 1, anon_sym_RBRACK, - STATE(3593), 1, + STATE(3637), 1, aux_sym_type_parameters_repeat1, - STATE(3797), 2, + STATE(3795), 2, sym_line_comment, sym_block_comment, - [134308] = 6, + [134362] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, + ACTIONS(6630), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6709), 1, - sym___single_quote, - STATE(3774), 1, + ACTIONS(6700), 1, + anon_sym_SQUOTE, + STATE(3993), 1, aux_sym_raw_string_literal_repeat1, - STATE(3798), 2, + STATE(3796), 2, sym_line_comment, sym_block_comment, - [134328] = 6, + [134382] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - ACTIONS(6711), 1, + ACTIONS(6702), 1, anon_sym_RBRACK, - STATE(3593), 1, + STATE(3637), 1, aux_sym_type_parameters_repeat1, - STATE(3799), 2, + STATE(3797), 2, + sym_line_comment, + sym_block_comment, + [134402] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(3798), 2, sym_line_comment, sym_block_comment, - [134348] = 6, + ACTIONS(6704), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + [134418] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(6706), 1, anon_sym_COMMA, - ACTIONS(6713), 1, + ACTIONS(6709), 1, anon_sym_RPAREN, - STATE(3784), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3800), 2, + STATE(3799), 3, sym_line_comment, sym_block_comment, - [134368] = 6, + aux_sym_type_parameter_list_repeat1, + [134436] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6709), 1, - sym___double_quote, - STATE(3771), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3801), 2, + ACTIONS(6630), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6711), 1, + anon_sym_SQUOTE, + STATE(3993), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3800), 2, sym_line_comment, sym_block_comment, - [134388] = 5, + [134456] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3522), 1, - anon_sym_LBRACE, - ACTIONS(6715), 1, + ACTIONS(6713), 1, anon_sym_COMMA, - STATE(3802), 3, + ACTIONS(6716), 1, + anon_sym_RPAREN, + STATE(3801), 3, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - [134406] = 6, + aux_sym_parameter_list_repeat1, + [134474] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + ACTIONS(6622), 1, anon_sym_COMMA, ACTIONS(6718), 1, anon_sym_RPAREN, - STATE(3758), 1, - aux_sym_parameter_list_repeat1, - STATE(3803), 2, + STATE(3799), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3802), 2, sym_line_comment, sym_block_comment, - [134426] = 6, + [134494] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_RPAREN, - ACTIONS(6720), 1, + ACTIONS(6618), 1, anon_sym_COMMA, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, - STATE(3804), 2, + ACTIONS(6720), 1, + anon_sym_RPAREN, + STATE(3801), 1, + aux_sym_parameter_list_repeat1, + STATE(3803), 2, sym_line_comment, sym_block_comment, - [134446] = 6, + [134514] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(6722), 1, + anon_sym_SEMI, + ACTIONS(6725), 1, + anon_sym_RBRACK, + STATE(3804), 3, + sym_line_comment, + sym_block_comment, + aux_sym_attribute_repeat1, + [134532] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3488), 1, + anon_sym_SEMI, + ACTIONS(5188), 1, anon_sym_COMMA, - ACTIONS(6724), 1, - anon_sym_RPAREN, - STATE(3781), 1, - aux_sym_type_parameters_repeat1, + STATE(3792), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3805), 2, sym_line_comment, sym_block_comment, - [134466] = 6, + [134552] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6726), 1, - sym_identifier, - ACTIONS(6728), 1, - anon_sym_LBRACE, - STATE(1823), 1, - sym__content_block, + ACTIONS(6622), 1, + anon_sym_COMMA, + ACTIONS(6727), 1, + anon_sym_RPAREN, + STATE(3982), 1, + aux_sym_type_parameter_list_repeat1, STATE(3806), 2, sym_line_comment, sym_block_comment, - [134486] = 5, + [134572] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6730), 1, - anon_sym_COMMA, - ACTIONS(6733), 1, - anon_sym_RPAREN, - STATE(3807), 3, + ACTIONS(4575), 1, + sym_identifier, + ACTIONS(6729), 1, + anon_sym_static, + ACTIONS(6731), 1, + anon_sym_volatile, + STATE(3807), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameter_list_repeat1, - [134504] = 6, + [134592] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6735), 1, + ACTIONS(6622), 1, anon_sym_COMMA, - ACTIONS(6737), 1, + ACTIONS(6733), 1, anon_sym_RPAREN, - STATE(3876), 1, - aux_sym_type_parameters_repeat1, + STATE(3766), 1, + aux_sym_type_parameter_list_repeat1, STATE(3808), 2, sym_line_comment, sym_block_comment, - [134524] = 6, + [134612] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3999), 1, - anon_sym_COLON_EQ, - ACTIONS(5000), 1, + ACTIONS(6618), 1, anon_sym_COMMA, - STATE(3993), 1, - aux_sym_strictly_expression_list_repeat1, + ACTIONS(6735), 1, + anon_sym_RPAREN, + STATE(3767), 1, + aux_sym_parameter_list_repeat1, STATE(3809), 2, sym_line_comment, sym_block_comment, - [134544] = 5, + [134632] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(3804), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(6739), 2, - anon_sym_COMMA, + ACTIONS(5668), 1, anon_sym_RPAREN, + ACTIONS(6737), 1, + anon_sym_COMMA, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, STATE(3810), 2, sym_line_comment, sym_block_comment, - [134562] = 4, - ACTIONS(3), 1, + [134652] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(6630), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6739), 1, + anon_sym_SQUOTE, + STATE(3796), 1, + aux_sym_raw_string_literal_repeat1, STATE(3811), 2, sym_line_comment, sym_block_comment, - ACTIONS(6741), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [134578] = 6, + [134672] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6741), 1, + sym_identifier, ACTIONS(6743), 1, - anon_sym_COMMA, - ACTIONS(6745), 1, - anon_sym_RPAREN, - STATE(3863), 1, - aux_sym_type_parameters_repeat1, + anon_sym_LBRACE, + STATE(2250), 1, + sym__content_block, STATE(3812), 2, sym_line_comment, sym_block_comment, - [134598] = 6, + [134692] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3484), 1, - anon_sym_LBRACE, - ACTIONS(5182), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - STATE(3764), 1, - aux_sym_strictly_expression_list_repeat1, + ACTIONS(6745), 1, + anon_sym_RBRACK, + STATE(3797), 1, + aux_sym_type_parameters_repeat1, STATE(3813), 2, sym_line_comment, sym_block_comment, - [134618] = 6, + [134712] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_COMMA, ACTIONS(6747), 1, - anon_sym_RPAREN, - STATE(3826), 1, - aux_sym_parameter_list_repeat1, + anon_sym_COMMA, + ACTIONS(6749), 1, + anon_sym_RBRACK, + STATE(3889), 1, + aux_sym_capture_list_repeat1, STATE(3814), 2, sym_line_comment, sym_block_comment, - [134638] = 6, + [134732] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(6751), 1, anon_sym_COMMA, - ACTIONS(6749), 1, + ACTIONS(6753), 1, anon_sym_RPAREN, - STATE(3807), 1, - aux_sym_type_parameter_list_repeat1, + STATE(3908), 1, + aux_sym_type_parameters_repeat1, STATE(3815), 2, sym_line_comment, sym_block_comment, - [134658] = 6, + [134752] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5224), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - ACTIONS(6751), 1, - anon_sym_LBRACE, - STATE(3822), 1, - aux_sym_match_expression_list_repeat1, + ACTIONS(6755), 1, + anon_sym_RBRACK, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, STATE(3816), 2, sym_line_comment, sym_block_comment, - [134678] = 4, - ACTIONS(3), 1, + [134772] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(6630), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6757), 1, + anon_sym_SQUOTE, + STATE(3845), 1, + aux_sym_raw_string_literal_repeat1, STATE(3817), 2, sym_line_comment, sym_block_comment, - ACTIONS(6753), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [134694] = 6, - ACTIONS(3), 1, + [134792] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6755), 1, - sym_identifier, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(2203), 1, - sym__content_block, + anon_sym_DQUOTE, + STATE(3846), 1, + aux_sym_raw_string_literal_repeat2, STATE(3818), 2, sym_line_comment, sym_block_comment, - [134714] = 6, + [134812] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(6644), 1, anon_sym_COMMA, ACTIONS(6759), 1, - anon_sym_RPAREN, - STATE(3815), 1, - aux_sym_type_parameter_list_repeat1, + anon_sym_PIPE, + STATE(3770), 1, + aux_sym_short_lambda_repeat1, STATE(3819), 2, sym_line_comment, sym_block_comment, - [134734] = 6, + [134832] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4783), 1, - anon_sym_COMMA, ACTIONS(6761), 1, - anon_sym_COLON_EQ, - STATE(3773), 1, - aux_sym_identifier_list_repeat1, + anon_sym_COMMA, + ACTIONS(6763), 1, + anon_sym_RPAREN, + STATE(3857), 1, + aux_sym_type_parameters_repeat1, STATE(3820), 2, sym_line_comment, sym_block_comment, - [134754] = 6, + [134852] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6763), 1, - sym_identifier, + ACTIONS(6618), 1, + anon_sym_COMMA, ACTIONS(6765), 1, - anon_sym_LPAREN, - STATE(1485), 1, - sym_const_definition, + anon_sym_RPAREN, + STATE(3983), 1, + aux_sym_parameter_list_repeat1, STATE(3821), 2, sym_line_comment, sym_block_comment, - [134774] = 6, + [134872] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5224), 1, - anon_sym_COMMA, - ACTIONS(6767), 1, - anon_sym_LBRACE, - STATE(3786), 1, - aux_sym_match_expression_list_repeat1, + ACTIONS(6769), 1, + anon_sym_COLON, + ACTIONS(6767), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(3822), 2, sym_line_comment, sym_block_comment, - [134794] = 6, - ACTIONS(497), 1, + [134890] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6769), 1, - sym___double_quote, - STATE(3852), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(5654), 1, + anon_sym_RPAREN, + ACTIONS(6771), 1, + anon_sym_COMMA, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, STATE(3823), 2, sym_line_comment, sym_block_comment, - [134814] = 6, + [134910] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, + ACTIONS(6630), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6769), 1, - sym___single_quote, - STATE(3853), 1, + ACTIONS(6773), 1, + anon_sym_SQUOTE, + STATE(3993), 1, aux_sym_raw_string_literal_repeat1, STATE(3824), 2, sym_line_comment, sym_block_comment, - [134834] = 6, + [134930] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(4014), 1, + anon_sym_SEMI, + ACTIONS(5188), 1, anon_sym_COMMA, - ACTIONS(6771), 1, - anon_sym_RBRACK, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + STATE(3929), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3825), 2, sym_line_comment, sym_block_comment, - [134854] = 6, + [134950] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + ACTIONS(6775), 1, anon_sym_COMMA, - ACTIONS(6773), 1, + ACTIONS(6777), 1, anon_sym_RPAREN, - STATE(3965), 1, - aux_sym_parameter_list_repeat1, + STATE(3959), 1, + aux_sym_type_parameters_repeat1, STATE(3826), 2, sym_line_comment, sym_block_comment, - [134874] = 6, + [134970] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6775), 1, - sym_identifier, - ACTIONS(6777), 1, - anon_sym_LBRACE, - STATE(1343), 1, - sym__content_block, + ACTIONS(6779), 1, + anon_sym_COMMA, + ACTIONS(6781), 1, + anon_sym_RPAREN, + STATE(3936), 1, + aux_sym_type_parameters_repeat1, STATE(3827), 2, sym_line_comment, sym_block_comment, - [134894] = 6, - ACTIONS(497), 1, + [134990] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6779), 1, - sym___single_quote, - STATE(3868), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(5648), 1, + anon_sym_RPAREN, + ACTIONS(6783), 1, + anon_sym_COMMA, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, STATE(3828), 2, sym_line_comment, sym_block_comment, - [134914] = 6, - ACTIONS(497), 1, + [135010] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6779), 1, - sym___double_quote, - STATE(3867), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6785), 1, + anon_sym_COMMA, + ACTIONS(6787), 1, + anon_sym_RPAREN, + STATE(3810), 1, + aux_sym_type_parameters_repeat1, STATE(3829), 2, sym_line_comment, sym_block_comment, - [134934] = 6, + [135030] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6781), 1, - sym___single_quote, - STATE(3900), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6773), 1, + anon_sym_DQUOTE, + STATE(3988), 1, + aux_sym_raw_string_literal_repeat2, STATE(3830), 2, sym_line_comment, sym_block_comment, - [134954] = 6, - ACTIONS(497), 1, + [135050] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6781), 1, - sym___double_quote, - STATE(3892), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6789), 1, + sym_identifier, + ACTIONS(6791), 1, + anon_sym_LBRACE, + STATE(2326), 1, + sym__content_block, STATE(3831), 2, sym_line_comment, sym_block_comment, - [134974] = 6, - ACTIONS(497), 1, + [135070] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6783), 1, - sym___single_quote, - STATE(3763), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3832), 2, + ACTIONS(6793), 1, + anon_sym_COMMA, + ACTIONS(6796), 1, + anon_sym_in, + STATE(3832), 3, sym_line_comment, sym_block_comment, - [134994] = 6, + aux_sym_var_definition_list_repeat1, + [135088] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - ACTIONS(6785), 1, - anon_sym_RBRACK, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6798), 1, + anon_sym_COLON_EQ, + STATE(3774), 1, + aux_sym_identifier_list_repeat1, STATE(3833), 2, sym_line_comment, sym_block_comment, - [135014] = 6, - ACTIONS(497), 1, + [135108] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6783), 1, - sym___double_quote, - STATE(3762), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6800), 1, + sym_identifier, + ACTIONS(6802), 1, + anon_sym_LBRACE, + STATE(1698), 1, + sym__content_block, STATE(3834), 2, sym_line_comment, sym_block_comment, - [135034] = 6, + [135128] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(4007), 1, + anon_sym_LBRACE, + ACTIONS(5160), 1, anon_sym_COMMA, - ACTIONS(6787), 1, - anon_sym_RPAREN, - STATE(3807), 1, - aux_sym_type_parameter_list_repeat1, + STATE(3869), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3835), 2, sym_line_comment, sym_block_comment, - [135054] = 6, - ACTIONS(3), 1, + [135148] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_COMMA, - ACTIONS(6789), 1, - anon_sym_RPAREN, - STATE(3965), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6630), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6804), 1, + anon_sym_SQUOTE, + STATE(3841), 1, + aux_sym_raw_string_literal_repeat1, STATE(3836), 2, sym_line_comment, sym_block_comment, - [135074] = 6, - ACTIONS(3), 1, + [135168] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, - anon_sym_COMMA, - ACTIONS(6791), 1, - anon_sym_RBRACK, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6804), 1, + anon_sym_DQUOTE, + STATE(3843), 1, + aux_sym_raw_string_literal_repeat2, STATE(3837), 2, sym_line_comment, sym_block_comment, - [135094] = 6, + [135188] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(6622), 1, anon_sym_COMMA, - ACTIONS(6793), 1, - anon_sym_RBRACK, - STATE(3825), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6806), 1, + anon_sym_RPAREN, + STATE(3802), 1, + aux_sym_type_parameter_list_repeat1, STATE(3838), 2, sym_line_comment, sym_block_comment, - [135114] = 6, - ACTIONS(497), 1, + [135208] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6795), 1, - sym___double_quote, - STATE(3757), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6618), 1, + anon_sym_COMMA, + ACTIONS(6808), 1, + anon_sym_RPAREN, + STATE(3803), 1, + aux_sym_parameter_list_repeat1, STATE(3839), 2, sym_line_comment, sym_block_comment, - [135134] = 6, - ACTIONS(497), 1, + [135228] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6795), 1, - sym___single_quote, - STATE(3878), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6810), 1, + sym_identifier, + ACTIONS(6812), 1, + anon_sym_LBRACE, + STATE(1206), 1, + sym__content_block, STATE(3840), 2, sym_line_comment, sym_block_comment, - [135154] = 6, - ACTIONS(3), 1, + [135248] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6797), 1, - anon_sym_SEMI, - ACTIONS(6799), 1, - anon_sym_RBRACK, - STATE(3779), 1, - aux_sym_attribute_repeat1, + ACTIONS(6630), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6814), 1, + anon_sym_SQUOTE, + STATE(3993), 1, + aux_sym_raw_string_literal_repeat1, STATE(3841), 2, sym_line_comment, sym_block_comment, - [135174] = 6, + [135268] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6801), 1, - sym_identifier, - ACTIONS(6803), 1, - anon_sym_LBRACE, - STATE(1692), 1, - sym__content_block, + ACTIONS(5660), 1, + anon_sym_RPAREN, + ACTIONS(6816), 1, + anon_sym_COMMA, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, STATE(3842), 2, sym_line_comment, sym_block_comment, - [135194] = 6, - ACTIONS(3), 1, + [135288] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - anon_sym_COMMA, - ACTIONS(6805), 1, - anon_sym_RPAREN, - STATE(3807), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6814), 1, + anon_sym_DQUOTE, + STATE(3988), 1, + aux_sym_raw_string_literal_repeat2, STATE(3843), 2, sym_line_comment, sym_block_comment, - [135214] = 6, + [135308] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + ACTIONS(6618), 1, anon_sym_COMMA, - ACTIONS(6807), 1, + ACTIONS(6818), 1, anon_sym_RPAREN, - STATE(3965), 1, + STATE(3901), 1, aux_sym_parameter_list_repeat1, STATE(3844), 2, sym_line_comment, sym_block_comment, - [135234] = 4, - ACTIONS(3), 1, + [135328] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(6630), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6820), 1, + anon_sym_SQUOTE, + STATE(3993), 1, + aux_sym_raw_string_literal_repeat1, STATE(3845), 2, sym_line_comment, sym_block_comment, - ACTIONS(6093), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [135250] = 5, - ACTIONS(3), 1, + [135348] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6809), 1, - anon_sym_COMMA, - ACTIONS(6812), 1, - anon_sym_RBRACK, - STATE(3846), 3, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6820), 1, + anon_sym_DQUOTE, + STATE(3988), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3846), 2, sym_line_comment, sym_block_comment, - aux_sym_capture_list_repeat1, - [135268] = 6, + [135368] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4783), 1, + ACTIONS(6618), 1, anon_sym_COMMA, - ACTIONS(4785), 1, - anon_sym_COLON_EQ, - STATE(3820), 1, - aux_sym_identifier_list_repeat1, + ACTIONS(6822), 1, + anon_sym_RPAREN, + STATE(3876), 1, + aux_sym_parameter_list_repeat1, STATE(3847), 2, sym_line_comment, sym_block_comment, - [135288] = 5, + [135388] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2631), 1, - sym_type_initializer_body, - ACTIONS(6814), 2, - anon_sym_LBRACE, - anon_sym_COMMA, STATE(3848), 2, sym_line_comment, sym_block_comment, - [135306] = 5, + ACTIONS(6824), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACK, + [135404] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3522), 1, - anon_sym_SEMI, - ACTIONS(6816), 1, + ACTIONS(6622), 1, anon_sym_COMMA, - STATE(3849), 3, + ACTIONS(6826), 1, + anon_sym_RPAREN, + STATE(3863), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3849), 2, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - [135324] = 6, + [135424] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, - anon_sym_COMMA, - ACTIONS(6819), 1, - anon_sym_RBRACK, - STATE(3837), 1, - aux_sym_type_parameters_repeat1, STATE(3850), 2, sym_line_comment, sym_block_comment, - [135344] = 6, + ACTIONS(3913), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [135440] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5222), 1, + ACTIONS(6828), 1, + sym_identifier, + ACTIONS(6830), 1, anon_sym_LBRACE, - ACTIONS(5224), 1, - anon_sym_COMMA, - STATE(3756), 1, - aux_sym_match_expression_list_repeat1, + STATE(459), 1, + sym__content_block, STATE(3851), 2, sym_line_comment, sym_block_comment, - [135364] = 6, - ACTIONS(497), 1, + [135460] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6821), 1, - sym___double_quote, - STATE(3867), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6832), 1, + sym_identifier, + ACTIONS(6834), 1, + anon_sym_LBRACE, + STATE(2357), 1, + sym__struct_body, STATE(3852), 2, sym_line_comment, sym_block_comment, - [135384] = 6, - ACTIONS(497), 1, + [135480] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6821), 1, - sym___single_quote, - STATE(3868), 1, - aux_sym_raw_string_literal_repeat1, STATE(3853), 2, sym_line_comment, sym_block_comment, - [135404] = 4, - ACTIONS(3), 1, + ACTIONS(6320), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [135496] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6836), 1, + anon_sym_DQUOTE, + STATE(3830), 1, + aux_sym_raw_string_literal_repeat2, STATE(3854), 2, sym_line_comment, sym_block_comment, - ACTIONS(6823), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [135420] = 6, - ACTIONS(3), 1, + [135516] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6322), 1, - sym_identifier, - ACTIONS(6324), 1, - anon_sym_mut, - STATE(4288), 1, - sym_var_definition, + ACTIONS(6630), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6836), 1, + anon_sym_SQUOTE, + STATE(3824), 1, + aux_sym_raw_string_literal_repeat1, STATE(3855), 2, sym_line_comment, sym_block_comment, - [135440] = 6, + [135536] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6825), 1, - anon_sym_COMMA, - ACTIONS(6827), 1, - anon_sym_in, - STATE(3904), 1, - aux_sym_var_definition_list_repeat1, + ACTIONS(6838), 1, + sym_identifier, + ACTIONS(6840), 1, + anon_sym_LBRACE, + STATE(2077), 1, + sym__content_block, STATE(3856), 2, sym_line_comment, sym_block_comment, - [135460] = 6, + [135556] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6318), 1, - anon_sym_COMMA, - ACTIONS(6320), 1, + ACTIONS(5656), 1, anon_sym_RPAREN, - STATE(3780), 1, + ACTIONS(6842), 1, + anon_sym_COMMA, + STATE(3637), 1, aux_sym_type_parameters_repeat1, STATE(3857), 2, sym_line_comment, sym_block_comment, - [135480] = 5, + [135576] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6829), 1, - anon_sym_QMARK, - ACTIONS(5284), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(6618), 1, + anon_sym_COMMA, + ACTIONS(6844), 1, + anon_sym_RPAREN, + STATE(3882), 1, + aux_sym_parameter_list_repeat1, STATE(3858), 2, sym_line_comment, sym_block_comment, - [135498] = 6, + [135596] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6763), 1, - sym_identifier, - ACTIONS(6831), 1, - anon_sym_LPAREN, - STATE(1479), 1, - sym_const_definition, + ACTIONS(6622), 1, + anon_sym_COMMA, + ACTIONS(6846), 1, + anon_sym_RPAREN, + STATE(3883), 1, + aux_sym_type_parameter_list_repeat1, STATE(3859), 2, sym_line_comment, sym_block_comment, - [135518] = 6, + [135616] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6833), 1, - sym_identifier, - ACTIONS(6835), 1, - anon_sym_LBRACE, - STATE(2329), 1, - sym__content_block, - STATE(3860), 2, + ACTIONS(3534), 1, + anon_sym_COLON_EQ, + ACTIONS(6848), 1, + anon_sym_COMMA, + STATE(3860), 3, sym_line_comment, sym_block_comment, - [135538] = 6, + aux_sym_strictly_expression_list_repeat1, + [135634] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6797), 1, - anon_sym_SEMI, - ACTIONS(6837), 1, + ACTIONS(6298), 1, + anon_sym_COMMA, + ACTIONS(6851), 1, anon_sym_RBRACK, - STATE(3841), 1, - aux_sym_attribute_repeat1, + STATE(3867), 1, + aux_sym_type_parameters_repeat1, STATE(3861), 2, sym_line_comment, sym_block_comment, - [135558] = 5, + [135654] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6841), 1, - anon_sym_COLON, - ACTIONS(6839), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(4014), 1, + anon_sym_LBRACE, + ACTIONS(5160), 1, + anon_sym_COMMA, + STATE(3869), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3862), 2, sym_line_comment, sym_block_comment, - [135576] = 6, + [135674] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5606), 1, - anon_sym_RPAREN, - ACTIONS(6843), 1, + ACTIONS(6622), 1, anon_sym_COMMA, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6853), 1, + anon_sym_RPAREN, + STATE(3799), 1, + aux_sym_type_parameter_list_repeat1, STATE(3863), 2, sym_line_comment, sym_block_comment, - [135596] = 6, + [135694] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + ACTIONS(6622), 1, anon_sym_COMMA, - ACTIONS(6845), 1, + ACTIONS(6855), 1, anon_sym_RPAREN, - STATE(3888), 1, - aux_sym_parameter_list_repeat1, + STATE(3924), 1, + aux_sym_type_parameter_list_repeat1, STATE(3864), 2, sym_line_comment, sym_block_comment, - [135616] = 6, + [135714] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - anon_sym_COMMA, - ACTIONS(6847), 1, - anon_sym_RPAREN, - STATE(3889), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(6688), 1, + sym_identifier, + ACTIONS(6857), 1, + anon_sym_LPAREN, + STATE(1481), 1, + sym_const_definition, STATE(3865), 2, sym_line_comment, sym_block_comment, - [135636] = 6, + [135734] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6849), 1, - sym_identifier, - ACTIONS(6851), 1, + ACTIONS(5482), 1, + anon_sym_COMMA, + ACTIONS(5861), 1, anon_sym_LBRACE, - STATE(481), 1, - sym__content_block, + STATE(3871), 1, + aux_sym_expression_without_blocks_list_repeat1, STATE(3866), 2, sym_line_comment, sym_block_comment, - [135656] = 5, - ACTIONS(497), 1, + [135754] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6853), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6856), 1, - sym___double_quote, - STATE(3867), 3, + ACTIONS(6298), 1, + anon_sym_COMMA, + ACTIONS(6859), 1, + anon_sym_RBRACK, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, + STATE(3867), 2, sym_line_comment, sym_block_comment, - aux_sym_raw_string_literal_repeat2, - [135674] = 5, - ACTIONS(497), 1, + [135774] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6858), 1, - aux_sym_raw_string_literal_token1, + ACTIONS(5234), 1, + anon_sym_COMMA, ACTIONS(6861), 1, - sym___single_quote, - STATE(3868), 3, + anon_sym_LBRACE, + STATE(3775), 1, + aux_sym_match_expression_list_repeat1, + STATE(3868), 2, sym_line_comment, sym_block_comment, - aux_sym_raw_string_literal_repeat1, - [135692] = 6, + [135794] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(3534), 1, + anon_sym_LBRACE, ACTIONS(6863), 1, - sym_identifier, - ACTIONS(6865), 1, - anon_sym_PIPE, - STATE(3954), 1, - sym_reference_expression, - STATE(3869), 2, + anon_sym_COMMA, + STATE(3869), 3, sym_line_comment, sym_block_comment, - [135712] = 6, + aux_sym_strictly_expression_list_repeat1, + [135812] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - anon_sym_COMMA, - ACTIONS(6867), 1, - anon_sym_RPAREN, - STATE(3970), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(6866), 1, + anon_sym_DOT, + ACTIONS(6868), 1, + anon_sym_RBRACE, + ACTIONS(6870), 1, + aux_sym_format_specifier_token1, STATE(3870), 2, sym_line_comment, sym_block_comment, - [135732] = 6, + [135832] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3484), 1, - anon_sym_COLON_EQ, - ACTIONS(5000), 1, + ACTIONS(4830), 1, + anon_sym_LBRACE, + ACTIONS(6872), 1, anon_sym_COMMA, - STATE(3809), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3871), 2, + STATE(3871), 3, sym_line_comment, sym_block_comment, - [135752] = 4, + aux_sym_expression_without_blocks_list_repeat1, + [135850] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(5232), 1, + anon_sym_LBRACE, + ACTIONS(5234), 1, + anon_sym_COMMA, + STATE(3782), 1, + aux_sym_match_expression_list_repeat1, STATE(3872), 2, sym_line_comment, sym_block_comment, - ACTIONS(6477), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACK, - [135768] = 6, - ACTIONS(3), 1, + [135870] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, - anon_sym_COMMA, - ACTIONS(6869), 1, - anon_sym_RBRACK, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6711), 1, + anon_sym_DQUOTE, + STATE(3988), 1, + aux_sym_raw_string_literal_repeat2, STATE(3873), 2, sym_line_comment, sym_block_comment, - [135788] = 6, + [135890] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + STATE(2623), 1, + sym_type_initializer_body, + ACTIONS(6875), 2, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(6871), 1, - anon_sym_RPAREN, - STATE(3843), 1, - aux_sym_type_parameter_list_repeat1, STATE(3874), 2, sym_line_comment, sym_block_comment, - [135808] = 6, + [135908] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + ACTIONS(6877), 1, anon_sym_COMMA, - ACTIONS(6873), 1, - anon_sym_RPAREN, - STATE(3844), 1, - aux_sym_parameter_list_repeat1, - STATE(3875), 2, + ACTIONS(6880), 1, + anon_sym_PIPE, + STATE(3875), 3, sym_line_comment, sym_block_comment, - [135828] = 6, + aux_sym_short_lambda_repeat1, + [135926] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_RPAREN, - ACTIONS(6875), 1, + ACTIONS(6618), 1, anon_sym_COMMA, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6882), 1, + anon_sym_RPAREN, + STATE(3801), 1, + aux_sym_parameter_list_repeat1, STATE(3876), 2, sym_line_comment, sym_block_comment, - [135848] = 6, + [135946] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - ACTIONS(6877), 1, + ACTIONS(6884), 1, anon_sym_RBRACK, - STATE(3833), 1, + STATE(3893), 1, aux_sym_type_parameters_repeat1, STATE(3877), 2, sym_line_comment, sym_block_comment, - [135868] = 6, + [135966] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6611), 1, - sym___single_quote, - ACTIONS(6627), 1, - aux_sym_raw_string_literal_token1, - STATE(3868), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6886), 1, + anon_sym_DQUOTE, + STATE(3988), 1, + aux_sym_raw_string_literal_repeat2, STATE(3878), 2, sym_line_comment, sym_block_comment, - [135888] = 6, + [135986] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(6888), 1, anon_sym_COMMA, - ACTIONS(6334), 1, - anon_sym_RBRACK, - STATE(3967), 1, + ACTIONS(6890), 1, + anon_sym_RPAREN, + STATE(3823), 1, aux_sym_type_parameters_repeat1, STATE(3879), 2, sym_line_comment, sym_block_comment, - [135908] = 6, + [136006] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6464), 1, - anon_sym_DOT, - ACTIONS(6466), 1, - anon_sym_RBRACE, - ACTIONS(6470), 1, - aux_sym_format_specifier_token1, + ACTIONS(4007), 1, + anon_sym_COLON_EQ, + ACTIONS(5006), 1, + anon_sym_COMMA, + STATE(3860), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3880), 2, sym_line_comment, sym_block_comment, - [135928] = 6, + [136026] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6879), 1, - anon_sym_COMMA, - ACTIONS(6881), 1, + ACTIONS(5670), 1, anon_sym_RPAREN, - STATE(3968), 1, + ACTIONS(6892), 1, + anon_sym_COMMA, + STATE(3637), 1, aux_sym_type_parameters_repeat1, STATE(3881), 2, sym_line_comment, sym_block_comment, - [135948] = 6, + [136046] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6883), 1, - sym_identifier, - ACTIONS(6885), 1, - anon_sym_LBRACE, - STATE(2041), 1, - sym__content_block, + ACTIONS(6618), 1, + anon_sym_COMMA, + ACTIONS(6894), 1, + anon_sym_RPAREN, + STATE(3801), 1, + aux_sym_parameter_list_repeat1, STATE(3882), 2, sym_line_comment, sym_block_comment, - [135968] = 6, + [136066] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(6622), 1, anon_sym_COMMA, - ACTIONS(6887), 1, - anon_sym_RBRACK, - STATE(3897), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6896), 1, + anon_sym_RPAREN, + STATE(3799), 1, + aux_sym_type_parameter_list_repeat1, STATE(3883), 2, sym_line_comment, sym_block_comment, - [135988] = 6, + [136086] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6889), 1, - sym___double_quote, - STATE(3867), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6630), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6898), 1, + anon_sym_SQUOTE, + STATE(3906), 1, + aux_sym_raw_string_literal_repeat1, STATE(3884), 2, sym_line_comment, sym_block_comment, - [136008] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(6763), 1, - sym_identifier, - ACTIONS(6891), 1, - anon_sym_LPAREN, - STATE(1514), 1, - sym_const_definition, - STATE(3885), 2, - sym_line_comment, - sym_block_comment, - [136028] = 6, + [136106] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, + ACTIONS(6630), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6889), 1, - sym___single_quote, - STATE(3868), 1, + ACTIONS(6886), 1, + anon_sym_SQUOTE, + STATE(3993), 1, aux_sym_raw_string_literal_repeat1, - STATE(3886), 2, + STATE(3885), 2, sym_line_comment, sym_block_comment, - [136048] = 6, - ACTIONS(497), 1, + [136126] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6893), 1, - sym___single_quote, - STATE(3868), 1, - aux_sym_raw_string_literal_repeat1, - STATE(3887), 2, + STATE(3886), 2, sym_line_comment, sym_block_comment, - [136068] = 6, + ACTIONS(6105), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [136142] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + ACTIONS(3488), 1, + anon_sym_LBRACE, + ACTIONS(5160), 1, anon_sym_COMMA, - ACTIONS(6895), 1, - anon_sym_RPAREN, - STATE(3965), 1, - aux_sym_parameter_list_repeat1, + STATE(3835), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3887), 2, + sym_line_comment, + sym_block_comment, + [136162] = 6, + ACTIONS(497), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6898), 1, + anon_sym_DQUOTE, + STATE(3907), 1, + aux_sym_raw_string_literal_repeat2, STATE(3888), 2, sym_line_comment, sym_block_comment, - [136088] = 6, + [136182] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(6213), 1, + anon_sym_RBRACK, + ACTIONS(6900), 1, anon_sym_COMMA, - ACTIONS(6897), 1, - anon_sym_RPAREN, - STATE(3807), 1, - aux_sym_type_parameter_list_repeat1, + STATE(3789), 1, + aux_sym_capture_list_repeat1, STATE(3889), 2, sym_line_comment, sym_block_comment, - [136108] = 4, - ACTIONS(497), 1, + [136202] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6618), 1, + anon_sym_COMMA, + ACTIONS(6902), 1, + anon_sym_RPAREN, + STATE(3897), 1, + aux_sym_parameter_list_repeat1, STATE(3890), 2, sym_line_comment, sym_block_comment, - ACTIONS(6899), 3, - aux_sym_block_comment_token1, - aux_sym_block_comment_token2, - anon_sym_STAR_SLASH, - [136124] = 6, + [136222] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(5182), 1, - anon_sym_COMMA, - STATE(3802), 1, - aux_sym_strictly_expression_list_repeat1, STATE(3891), 2, sym_line_comment, sym_block_comment, - [136144] = 6, - ACTIONS(497), 1, + ACTIONS(6904), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [136238] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6901), 1, - sym___double_quote, - STATE(3867), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6298), 1, + anon_sym_COMMA, + ACTIONS(6906), 1, + anon_sym_RBRACK, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, STATE(3892), 2, sym_line_comment, sym_block_comment, - [136164] = 6, - ACTIONS(497), 1, + [136258] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6903), 1, - sym___single_quote, - STATE(3868), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6298), 1, + anon_sym_COMMA, + ACTIONS(6908), 1, + anon_sym_RBRACK, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, STATE(3893), 2, sym_line_comment, sym_block_comment, - [136184] = 6, - ACTIONS(497), 1, + [136278] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6903), 1, - sym___double_quote, - STATE(3867), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6679), 1, + anon_sym_SEMI, + ACTIONS(6910), 1, + anon_sym_RBRACK, + STATE(3788), 1, + aux_sym_attribute_repeat1, STATE(3894), 2, sym_line_comment, sym_block_comment, - [136204] = 6, + [136298] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, - anon_sym_COMMA, - ACTIONS(6905), 1, - anon_sym_RBRACK, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, STATE(3895), 2, sym_line_comment, sym_block_comment, - [136224] = 6, + ACTIONS(6912), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + [136314] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(6622), 1, anon_sym_COMMA, - ACTIONS(6907), 1, + ACTIONS(6914), 1, anon_sym_RPAREN, - STATE(3807), 1, + STATE(3799), 1, aux_sym_type_parameter_list_repeat1, STATE(3896), 2, sym_line_comment, sym_block_comment, - [136244] = 6, + [136334] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(6618), 1, anon_sym_COMMA, - ACTIONS(6909), 1, - anon_sym_RBRACK, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6916), 1, + anon_sym_RPAREN, + STATE(3801), 1, + aux_sym_parameter_list_repeat1, STATE(3897), 2, sym_line_comment, sym_block_comment, - [136264] = 6, + [136354] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_COMMA, - ACTIONS(6911), 1, + ACTIONS(5638), 1, anon_sym_RPAREN, - STATE(3965), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6918), 1, + anon_sym_COMMA, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, STATE(3898), 2, sym_line_comment, sym_block_comment, - [136284] = 6, - ACTIONS(497), 1, + [136374] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6893), 1, - sym___double_quote, - STATE(3867), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6298), 1, + anon_sym_COMMA, + ACTIONS(6920), 1, + anon_sym_RBRACK, + STATE(3932), 1, + aux_sym_type_parameters_repeat1, STATE(3899), 2, sym_line_comment, sym_block_comment, - [136304] = 6, - ACTIONS(497), 1, + [136394] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6901), 1, - sym___single_quote, - STATE(3868), 1, - aux_sym_raw_string_literal_repeat1, STATE(3900), 2, sym_line_comment, sym_block_comment, - [136324] = 6, + ACTIONS(6464), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [136410] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6913), 1, - sym_identifier, - ACTIONS(6915), 1, - anon_sym_LBRACE, - STATE(2313), 1, - sym__struct_body, + ACTIONS(6618), 1, + anon_sym_COMMA, + ACTIONS(6922), 1, + anon_sym_RPAREN, + STATE(3801), 1, + aux_sym_parameter_list_repeat1, STATE(3901), 2, sym_line_comment, sym_block_comment, - [136344] = 6, + [136430] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, + ACTIONS(6630), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6917), 1, - sym___single_quote, - STATE(3828), 1, + ACTIONS(6924), 1, + anon_sym_SQUOTE, + STATE(3953), 1, aux_sym_raw_string_literal_repeat1, STATE(3902), 2, sym_line_comment, sym_block_comment, - [136364] = 6, + [136450] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(6622), 1, anon_sym_COMMA, - ACTIONS(6919), 1, - anon_sym_RBRACK, - STATE(3895), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6926), 1, + anon_sym_RPAREN, + STATE(3799), 1, + aux_sym_type_parameter_list_repeat1, STATE(3903), 2, sym_line_comment, sym_block_comment, - [136384] = 5, - ACTIONS(3), 1, + [136470] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6921), 1, - anon_sym_COMMA, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, ACTIONS(6924), 1, - anon_sym_in, - STATE(3904), 3, + anon_sym_DQUOTE, + STATE(3978), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3904), 2, sym_line_comment, sym_block_comment, - aux_sym_var_definition_list_repeat1, - [136402] = 6, + [136490] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4010), 1, - anon_sym_SEMI, - ACTIONS(5154), 1, + ACTIONS(6618), 1, anon_sym_COMMA, - STATE(3849), 1, - aux_sym_strictly_expression_list_repeat1, + ACTIONS(6928), 1, + anon_sym_RPAREN, + STATE(3801), 1, + aux_sym_parameter_list_repeat1, STATE(3905), 2, sym_line_comment, sym_block_comment, - [136422] = 6, - ACTIONS(3), 1, + [136510] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5638), 1, - anon_sym_RPAREN, - ACTIONS(6926), 1, - anon_sym_COMMA, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6630), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6930), 1, + anon_sym_SQUOTE, + STATE(3993), 1, + aux_sym_raw_string_literal_repeat1, STATE(3906), 2, sym_line_comment, sym_block_comment, - [136442] = 6, - ACTIONS(3), 1, + [136530] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6088), 1, - anon_sym_RBRACK, - ACTIONS(6928), 1, - anon_sym_COMMA, - STATE(3846), 1, - aux_sym_capture_list_repeat1, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6930), 1, + anon_sym_DQUOTE, + STATE(3988), 1, + aux_sym_raw_string_literal_repeat2, STATE(3907), 2, sym_line_comment, sym_block_comment, - [136462] = 6, + [136550] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(5618), 1, + anon_sym_RPAREN, + ACTIONS(6932), 1, anon_sym_COMMA, - ACTIONS(6930), 1, - anon_sym_RBRACK, - STATE(3873), 1, + STATE(3637), 1, aux_sym_type_parameters_repeat1, STATE(3908), 2, sym_line_comment, sym_block_comment, - [136482] = 4, + [136570] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6934), 1, + sym_identifier, + ACTIONS(6936), 1, + anon_sym_LBRACE, + STATE(2632), 1, + sym__content_block, STATE(3909), 2, sym_line_comment, sym_block_comment, - ACTIONS(6932), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [136498] = 6, + [136590] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - ACTIONS(6934), 1, - anon_sym_RPAREN, - STATE(3896), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(6938), 1, + anon_sym_RBRACK, + STATE(3892), 1, + aux_sym_type_parameters_repeat1, STATE(3910), 2, sym_line_comment, sym_block_comment, - [136518] = 6, + [136610] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6936), 1, - sym_identifier, - ACTIONS(6938), 1, - anon_sym_LBRACE, - STATE(1157), 1, - sym__content_block, + ACTIONS(6618), 1, + anon_sym_COMMA, + ACTIONS(6940), 1, + anon_sym_RPAREN, + STATE(3918), 1, + aux_sym_parameter_list_repeat1, STATE(3911), 2, sym_line_comment, sym_block_comment, - [136538] = 4, + [136630] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6942), 1, + anon_sym_COMMA, + ACTIONS(6944), 1, + anon_sym_RPAREN, + STATE(3881), 1, + aux_sym_type_parameters_repeat1, STATE(3912), 2, sym_line_comment, sym_block_comment, - ACTIONS(6940), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [136554] = 6, - ACTIONS(497), 1, + [136650] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6942), 1, - sym___double_quote, - STATE(3899), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6622), 1, + anon_sym_COMMA, + ACTIONS(6946), 1, + anon_sym_RPAREN, + STATE(3919), 1, + aux_sym_type_parameter_list_repeat1, STATE(3913), 2, sym_line_comment, sym_block_comment, - [136574] = 6, - ACTIONS(3), 1, + [136670] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_COMMA, - ACTIONS(6944), 1, - anon_sym_RPAREN, - STATE(3898), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6630), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6948), 1, + anon_sym_SQUOTE, + STATE(3942), 1, + aux_sym_raw_string_literal_repeat1, STATE(3914), 2, sym_line_comment, sym_block_comment, - [136594] = 6, - ACTIONS(3), 1, + [136690] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6946), 1, - sym_identifier, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, ACTIONS(6948), 1, - anon_sym_LBRACE, - STATE(2628), 1, - sym__content_block, + anon_sym_DQUOTE, + STATE(3943), 1, + aux_sym_raw_string_literal_repeat2, STATE(3915), 2, sym_line_comment, sym_block_comment, - [136614] = 6, - ACTIONS(3), 1, + [136710] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - anon_sym_COMMA, - ACTIONS(6950), 1, - anon_sym_RPAREN, - STATE(3835), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6700), 1, + anon_sym_DQUOTE, + STATE(3988), 1, + aux_sym_raw_string_literal_repeat2, STATE(3916), 2, sym_line_comment, sym_block_comment, - [136634] = 6, + [136730] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + ACTIONS(6950), 1, anon_sym_COMMA, ACTIONS(6952), 1, - anon_sym_RPAREN, - STATE(3836), 1, - aux_sym_parameter_list_repeat1, + anon_sym_in, + STATE(3984), 1, + aux_sym_var_definition_list_repeat1, STATE(3917), 2, sym_line_comment, sym_block_comment, - [136654] = 6, + [136750] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5652), 1, - anon_sym_RPAREN, - ACTIONS(6954), 1, + ACTIONS(6618), 1, anon_sym_COMMA, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6954), 1, + anon_sym_RPAREN, + STATE(3801), 1, + aux_sym_parameter_list_repeat1, STATE(3918), 2, sym_line_comment, sym_block_comment, - [136674] = 5, + [136770] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4838), 1, - anon_sym_LBRACE, - ACTIONS(6956), 1, + ACTIONS(6622), 1, anon_sym_COMMA, - STATE(3919), 3, + ACTIONS(6956), 1, + anon_sym_RPAREN, + STATE(3799), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3919), 2, sym_line_comment, sym_block_comment, - aux_sym_expression_without_blocks_list_repeat1, - [136692] = 6, + [136790] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, + ACTIONS(6628), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6959), 1, - sym___double_quote, - STATE(3949), 1, + ACTIONS(6958), 1, + anon_sym_DQUOTE, + STATE(3878), 1, aux_sym_raw_string_literal_repeat2, STATE(3920), 2, sym_line_comment, sym_block_comment, - [136712] = 6, + [136810] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, + ACTIONS(6630), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6959), 1, - sym___single_quote, - STATE(3950), 1, + ACTIONS(6958), 1, + anon_sym_SQUOTE, + STATE(3885), 1, aux_sym_raw_string_literal_repeat1, STATE(3921), 2, sym_line_comment, sym_block_comment, - [136732] = 6, + [136830] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5640), 1, - anon_sym_RPAREN, - ACTIONS(6961), 1, + ACTIONS(2219), 1, anon_sym_COMMA, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5050), 1, + anon_sym_LBRACE, + STATE(2700), 1, + sym_block, STATE(3922), 2, sym_line_comment, sym_block_comment, - [136752] = 6, + [136850] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + STATE(2623), 1, + sym_type_initializer_body, + ACTIONS(2215), 2, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(6963), 1, - anon_sym_RPAREN, - STATE(3990), 1, - aux_sym_parameter_list_repeat1, STATE(3923), 2, sym_line_comment, sym_block_comment, - [136772] = 6, + [136868] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(6622), 1, anon_sym_COMMA, - ACTIONS(6965), 1, + ACTIONS(6960), 1, anon_sym_RPAREN, - STATE(3999), 1, + STATE(3799), 1, aux_sym_type_parameter_list_repeat1, STATE(3924), 2, sym_line_comment, sym_block_comment, - [136792] = 6, - ACTIONS(497), 1, + [136888] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6917), 1, - sym___double_quote, - STATE(3829), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6962), 1, + sym_identifier, + ACTIONS(6964), 1, + anon_sym_LBRACE, + STATE(2847), 1, + sym__content_block, STATE(3925), 2, sym_line_comment, sym_block_comment, - [136812] = 6, - ACTIONS(497), 1, + [136908] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6942), 1, - sym___single_quote, - STATE(3887), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6298), 1, + anon_sym_COMMA, + ACTIONS(6966), 1, + anon_sym_RBRACK, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, STATE(3926), 2, sym_line_comment, sym_block_comment, - [136832] = 6, - ACTIONS(497), 1, + [136928] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6967), 1, - sym___single_quote, - STATE(3868), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6688), 1, + sym_identifier, + ACTIONS(6968), 1, + anon_sym_LPAREN, + STATE(1574), 1, + sym_const_definition, STATE(3927), 2, sym_line_comment, sym_block_comment, - [136852] = 6, + [136948] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2135), 1, + ACTIONS(2211), 1, anon_sym_COMMA, - ACTIONS(4998), 1, + ACTIONS(6970), 1, anon_sym_LBRACE, - STATE(2684), 1, - sym_block, + STATE(2623), 1, + sym_type_initializer_body, STATE(3928), 2, sym_line_comment, sym_block_comment, - [136872] = 5, + [136968] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2631), 1, - sym_type_initializer_body, - ACTIONS(2722), 2, - anon_sym_LBRACE, + ACTIONS(3534), 1, + anon_sym_SEMI, + ACTIONS(6972), 1, anon_sym_COMMA, - STATE(3929), 2, + STATE(3929), 3, sym_line_comment, sym_block_comment, - [136890] = 6, - ACTIONS(497), 1, + aux_sym_strictly_expression_list_repeat1, + [136986] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6967), 1, - sym___double_quote, - STATE(3867), 1, - aux_sym_raw_string_literal_repeat2, + STATE(2623), 1, + sym_type_initializer_body, + ACTIONS(2207), 2, + anon_sym_LBRACE, + anon_sym_COMMA, STATE(3930), 2, sym_line_comment, sym_block_comment, - [136910] = 6, - ACTIONS(497), 1, + [137004] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6969), 1, - sym___single_quote, - STATE(3868), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6975), 1, + anon_sym_COMMA, + ACTIONS(6977), 1, + anon_sym_RPAREN, + STATE(3842), 1, + aux_sym_type_parameters_repeat1, STATE(3931), 2, sym_line_comment, sym_block_comment, - [136930] = 6, + [137024] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - ACTIONS(6971), 1, - anon_sym_RPAREN, - STATE(3988), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6979), 1, + anon_sym_RBRACK, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, STATE(3932), 2, sym_line_comment, sym_block_comment, - [136950] = 6, + [137044] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(6622), 1, anon_sym_COMMA, - ACTIONS(6973), 1, + ACTIONS(6981), 1, anon_sym_RPAREN, - STATE(3807), 1, + STATE(3903), 1, aux_sym_type_parameter_list_repeat1, STATE(3933), 2, sym_line_comment, sym_block_comment, - [136970] = 6, + [137064] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2742), 1, + ACTIONS(6618), 1, anon_sym_COMMA, - ACTIONS(6975), 1, - anon_sym_LBRACE, - STATE(2631), 1, - sym_type_initializer_body, + ACTIONS(6983), 1, + anon_sym_RPAREN, + STATE(3905), 1, + aux_sym_parameter_list_repeat1, STATE(3934), 2, sym_line_comment, sym_block_comment, - [136990] = 6, + [137084] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, - anon_sym_COMMA, - ACTIONS(6977), 1, - anon_sym_RBRACK, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6985), 1, + sym_identifier, + ACTIONS(6987), 1, + anon_sym_LBRACE, + STATE(1336), 1, + sym__content_block, STATE(3935), 2, sym_line_comment, sym_block_comment, - [137010] = 5, + [137104] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(2631), 1, - sym_type_initializer_body, - ACTIONS(2748), 2, - anon_sym_LBRACE, + ACTIONS(5642), 1, + anon_sym_RPAREN, + ACTIONS(6989), 1, anon_sym_COMMA, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, STATE(3936), 2, sym_line_comment, sym_block_comment, - [137028] = 6, - ACTIONS(3), 1, + [137124] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6979), 1, - sym_identifier, - ACTIONS(6981), 1, - anon_sym_LBRACE, - STATE(1093), 1, - sym__content_block, + ACTIONS(6630), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6991), 1, + anon_sym_SQUOTE, + STATE(3952), 1, + aux_sym_raw_string_literal_repeat1, STATE(3937), 2, sym_line_comment, sym_block_comment, - [137048] = 6, - ACTIONS(3), 1, + [137144] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5478), 1, - anon_sym_COMMA, - ACTIONS(5862), 1, - anon_sym_LBRACE, - STATE(3919), 1, - aux_sym_expression_without_blocks_list_repeat1, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6991), 1, + anon_sym_DQUOTE, + STATE(3957), 1, + aux_sym_raw_string_literal_repeat2, STATE(3938), 2, sym_line_comment, sym_block_comment, - [137068] = 6, + [137164] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - anon_sym_COMMA, - ACTIONS(6983), 1, - anon_sym_RPAREN, - STATE(3987), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(6993), 1, + sym_identifier, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(1042), 1, + sym__content_block, STATE(3939), 2, sym_line_comment, sym_block_comment, - [137088] = 6, + [137184] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6985), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - ACTIONS(6987), 1, - anon_sym_RPAREN, - STATE(3918), 1, + ACTIONS(6997), 1, + anon_sym_RBRACK, + STATE(3926), 1, aux_sym_type_parameters_repeat1, STATE(3940), 2, sym_line_comment, sym_block_comment, - [137108] = 6, - ACTIONS(497), 1, + [137204] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6989), 1, - sym___single_quote, - STATE(3893), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6298), 1, + anon_sym_COMMA, + ACTIONS(6999), 1, + anon_sym_RBRACK, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, STATE(3941), 2, sym_line_comment, sym_block_comment, - [137128] = 6, - ACTIONS(3), 1, + [137224] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_COMMA, - ACTIONS(6991), 1, - anon_sym_RPAREN, - STATE(3965), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6630), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7001), 1, + anon_sym_SQUOTE, + STATE(3993), 1, + aux_sym_raw_string_literal_repeat1, STATE(3942), 2, sym_line_comment, sym_block_comment, - [137148] = 6, + [137244] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6993), 1, - sym___single_quote, - STATE(3931), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7001), 1, + anon_sym_DQUOTE, + STATE(3988), 1, + aux_sym_raw_string_literal_repeat2, STATE(3943), 2, sym_line_comment, sym_block_comment, - [137168] = 6, + [137264] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6763), 1, - sym_identifier, - ACTIONS(6995), 1, - anon_sym_LPAREN, - STATE(1506), 1, - sym_const_definition, + ACTIONS(6622), 1, + anon_sym_COMMA, + ACTIONS(7003), 1, + anon_sym_RPAREN, + STATE(3799), 1, + aux_sym_type_parameter_list_repeat1, STATE(3944), 2, sym_line_comment, sym_block_comment, - [137188] = 6, + [137284] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, + ACTIONS(6628), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6993), 1, - sym___double_quote, - STATE(3951), 1, + ACTIONS(7005), 1, + anon_sym_DQUOTE, + STATE(3988), 1, aux_sym_raw_string_literal_repeat2, STATE(3945), 2, sym_line_comment, sym_block_comment, - [137208] = 6, + [137304] = 6, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6989), 1, - sym___double_quote, - STATE(3894), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6630), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7005), 1, + anon_sym_SQUOTE, + STATE(3993), 1, + aux_sym_raw_string_literal_repeat1, STATE(3946), 2, sym_line_comment, sym_block_comment, - [137228] = 6, + [137324] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6997), 1, - sym_identifier, - ACTIONS(6999), 1, - anon_sym_LBRACE, - STATE(2836), 1, - sym__content_block, + ACTIONS(6618), 1, + anon_sym_COMMA, + ACTIONS(7007), 1, + anon_sym_RPAREN, + STATE(3801), 1, + aux_sym_parameter_list_repeat1, STATE(3947), 2, sym_line_comment, sym_block_comment, - [137248] = 6, + [137344] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3999), 1, - anon_sym_SEMI, - ACTIONS(5154), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - STATE(3849), 1, - aux_sym_strictly_expression_list_repeat1, + ACTIONS(7009), 1, + anon_sym_RBRACK, + STATE(3941), 1, + aux_sym_type_parameters_repeat1, STATE(3948), 2, sym_line_comment, sym_block_comment, - [137268] = 6, - ACTIONS(497), 1, + [137364] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7001), 1, - sym___double_quote, - STATE(3867), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6622), 1, + anon_sym_COMMA, + ACTIONS(7011), 1, + anon_sym_RPAREN, + STATE(3944), 1, + aux_sym_type_parameter_list_repeat1, STATE(3949), 2, sym_line_comment, sym_block_comment, - [137288] = 6, - ACTIONS(497), 1, + [137384] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7001), 1, - sym___single_quote, - STATE(3868), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6618), 1, + anon_sym_COMMA, + ACTIONS(7013), 1, + anon_sym_RPAREN, + STATE(3947), 1, + aux_sym_parameter_list_repeat1, STATE(3950), 2, sym_line_comment, sym_block_comment, - [137308] = 6, - ACTIONS(497), 1, + [137404] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6969), 1, - sym___double_quote, - STATE(3867), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(5640), 1, + anon_sym_RPAREN, + ACTIONS(7015), 1, + anon_sym_COMMA, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, STATE(3951), 2, sym_line_comment, sym_block_comment, - [137328] = 6, - ACTIONS(3), 1, + [137424] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7003), 1, - anon_sym_COMMA, - ACTIONS(7005), 1, - anon_sym_PIPE, - STATE(3777), 1, - aux_sym_short_lambda_repeat1, + ACTIONS(6630), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7017), 1, + anon_sym_SQUOTE, + STATE(3993), 1, + aux_sym_raw_string_literal_repeat1, STATE(3952), 2, sym_line_comment, sym_block_comment, - [137348] = 6, - ACTIONS(3), 1, + [137444] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, - anon_sym_COMMA, - ACTIONS(7007), 1, - anon_sym_RBRACK, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6630), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7019), 1, + anon_sym_SQUOTE, + STATE(3993), 1, + aux_sym_raw_string_literal_repeat1, STATE(3953), 2, sym_line_comment, sym_block_comment, - [137368] = 6, + [137464] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7003), 1, + ACTIONS(5628), 1, + anon_sym_RPAREN, + ACTIONS(7021), 1, anon_sym_COMMA, - ACTIONS(7009), 1, - anon_sym_PIPE, - STATE(3952), 1, - aux_sym_short_lambda_repeat1, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, STATE(3954), 2, sym_line_comment, sym_block_comment, - [137388] = 6, + [137484] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5622), 1, - anon_sym_RPAREN, - ACTIONS(7011), 1, + ACTIONS(6618), 1, anon_sym_COMMA, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(7023), 1, + anon_sym_RPAREN, + STATE(3979), 1, + aux_sym_parameter_list_repeat1, STATE(3955), 2, sym_line_comment, sym_block_comment, - [137408] = 6, + [137504] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(6622), 1, anon_sym_COMMA, - ACTIONS(7013), 1, + ACTIONS(7025), 1, anon_sym_RPAREN, - STATE(3807), 1, + STATE(3980), 1, aux_sym_type_parameter_list_repeat1, STATE(3956), 2, sym_line_comment, sym_block_comment, - [137428] = 6, - ACTIONS(3), 1, + [137524] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(4557), 1, - sym_identifier, - ACTIONS(7015), 1, - anon_sym_static, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, ACTIONS(7017), 1, - anon_sym_volatile, + anon_sym_DQUOTE, + STATE(3988), 1, + aux_sym_raw_string_literal_repeat2, STATE(3957), 2, sym_line_comment, sym_block_comment, - [137448] = 6, + [137544] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + ACTIONS(7027), 1, anon_sym_COMMA, - ACTIONS(7019), 1, + ACTIONS(7029), 1, anon_sym_RPAREN, - STATE(3965), 1, - aux_sym_parameter_list_repeat1, + STATE(3975), 1, + aux_sym_type_parameters_repeat1, STATE(3958), 2, sym_line_comment, sym_block_comment, - [137468] = 6, + [137564] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7021), 1, - anon_sym_COMMA, - ACTIONS(7023), 1, + ACTIONS(5624), 1, anon_sym_RPAREN, - STATE(3765), 1, + ACTIONS(7031), 1, + anon_sym_COMMA, + STATE(3637), 1, aux_sym_type_parameters_repeat1, STATE(3959), 2, sym_line_comment, sym_block_comment, - [137488] = 6, + [137584] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5648), 1, - anon_sym_RPAREN, - ACTIONS(7025), 1, + ACTIONS(6618), 1, anon_sym_COMMA, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(7033), 1, + anon_sym_RPAREN, + STATE(3976), 1, + aux_sym_parameter_list_repeat1, STATE(3960), 2, sym_line_comment, sym_block_comment, - [137508] = 6, + [137604] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + ACTIONS(6622), 1, anon_sym_COMMA, - ACTIONS(7027), 1, + ACTIONS(7035), 1, anon_sym_RPAREN, - STATE(3985), 1, - aux_sym_parameter_list_repeat1, + STATE(3977), 1, + aux_sym_type_parameter_list_repeat1, STATE(3961), 2, sym_line_comment, sym_block_comment, - [137528] = 6, + [137624] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(7037), 1, anon_sym_COMMA, - ACTIONS(7029), 1, + ACTIONS(7039), 1, anon_sym_RPAREN, - STATE(3986), 1, - aux_sym_type_parameter_list_repeat1, + STATE(3951), 1, + aux_sym_type_parameters_repeat1, STATE(3962), 2, sym_line_comment, sym_block_comment, - [137548] = 6, + [137644] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - ACTIONS(7031), 1, - anon_sym_RPAREN, - STATE(3976), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(7041), 1, + anon_sym_RBRACK, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, STATE(3963), 2, sym_line_comment, sym_block_comment, - [137568] = 6, + [137664] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - ACTIONS(7033), 1, + ACTIONS(7043), 1, anon_sym_RBRACK, - STATE(3953), 1, + STATE(3637), 1, aux_sym_type_parameters_repeat1, STATE(3964), 2, sym_line_comment, sym_block_comment, - [137588] = 5, + [137684] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7035), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - ACTIONS(7038), 1, - anon_sym_RPAREN, - STATE(3965), 3, + ACTIONS(6300), 1, + anon_sym_RBRACK, + STATE(3816), 1, + aux_sym_type_parameters_repeat1, + STATE(3965), 2, sym_line_comment, sym_block_comment, - aux_sym_parameter_list_repeat1, - [137606] = 6, - ACTIONS(497), 1, + [137704] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7040), 1, - sym___single_quote, - STATE(3927), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(6622), 1, + anon_sym_COMMA, + ACTIONS(7045), 1, + anon_sym_RPAREN, + STATE(3799), 1, + aux_sym_type_parameter_list_repeat1, STATE(3966), 2, sym_line_comment, sym_block_comment, - [137626] = 6, + [137724] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, - anon_sym_COMMA, - ACTIONS(7042), 1, - anon_sym_RBRACK, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6688), 1, + sym_identifier, + ACTIONS(7047), 1, + anon_sym_LPAREN, + STATE(1551), 1, + sym_const_definition, STATE(3967), 2, sym_line_comment, sym_block_comment, - [137646] = 6, + [137744] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5630), 1, - anon_sym_RPAREN, - ACTIONS(7044), 1, - anon_sym_COMMA, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(7049), 1, + sym_identifier, + ACTIONS(7051), 1, + anon_sym_PIPE, + STATE(3819), 1, + sym_reference_expression, STATE(3968), 2, sym_line_comment, sym_block_comment, - [137666] = 6, + [137764] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7046), 1, + ACTIONS(6618), 1, anon_sym_COMMA, - ACTIONS(7048), 1, + ACTIONS(7053), 1, anon_sym_RPAREN, - STATE(3922), 1, - aux_sym_type_parameters_repeat1, + STATE(3801), 1, + aux_sym_parameter_list_repeat1, STATE(3969), 2, sym_line_comment, sym_block_comment, - [137686] = 6, + [137784] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - ACTIONS(7050), 1, - anon_sym_RPAREN, - STATE(3807), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(7055), 1, + anon_sym_RBRACK, + STATE(3963), 1, + aux_sym_type_parameters_repeat1, STATE(3970), 2, sym_line_comment, sym_block_comment, - [137706] = 6, + [137804] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - ACTIONS(7052), 1, - anon_sym_RPAREN, - STATE(3956), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(7057), 1, + anon_sym_RBRACK, + STATE(3986), 1, + aux_sym_type_parameters_repeat1, STATE(3971), 2, sym_line_comment, sym_block_comment, - [137726] = 6, + [137824] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + ACTIONS(6622), 1, anon_sym_COMMA, - ACTIONS(7054), 1, + ACTIONS(7059), 1, anon_sym_RPAREN, - STATE(3958), 1, - aux_sym_parameter_list_repeat1, + STATE(3966), 1, + aux_sym_type_parameter_list_repeat1, STATE(3972), 2, sym_line_comment, sym_block_comment, - [137746] = 6, + [137844] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5650), 1, - anon_sym_RPAREN, - ACTIONS(7056), 1, + ACTIONS(6618), 1, anon_sym_COMMA, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(7061), 1, + anon_sym_RPAREN, + STATE(3969), 1, + aux_sym_parameter_list_repeat1, STATE(3973), 2, sym_line_comment, sym_block_comment, - [137766] = 6, + [137864] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - ACTIONS(7058), 1, + ACTIONS(7063), 1, anon_sym_RBRACK, - STATE(3593), 1, + STATE(3990), 1, aux_sym_type_parameters_repeat1, STATE(3974), 2, sym_line_comment, sym_block_comment, - [137786] = 6, + [137884] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(5626), 1, + anon_sym_RPAREN, + ACTIONS(7065), 1, anon_sym_COMMA, - ACTIONS(7060), 1, - anon_sym_RBRACK, - STATE(3593), 1, + STATE(3637), 1, aux_sym_type_parameters_repeat1, STATE(3975), 2, sym_line_comment, sym_block_comment, - [137806] = 6, + [137904] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + ACTIONS(6618), 1, anon_sym_COMMA, - ACTIONS(7062), 1, + ACTIONS(7067), 1, anon_sym_RPAREN, - STATE(3965), 1, + STATE(3801), 1, aux_sym_parameter_list_repeat1, STATE(3976), 2, sym_line_comment, sym_block_comment, - [137826] = 4, + [137924] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6622), 1, + anon_sym_COMMA, + ACTIONS(7069), 1, + anon_sym_RPAREN, + STATE(3799), 1, + aux_sym_type_parameter_list_repeat1, STATE(3977), 2, sym_line_comment, sym_block_comment, - ACTIONS(7064), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [137842] = 6, - ACTIONS(3), 1, + [137944] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7066), 1, - anon_sym_COMMA, - ACTIONS(7068), 1, - anon_sym_RPAREN, - STATE(3804), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7019), 1, + anon_sym_DQUOTE, + STATE(3988), 1, + aux_sym_raw_string_literal_repeat2, STATE(3978), 2, sym_line_comment, sym_block_comment, - [137862] = 6, + [137964] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7070), 1, + ACTIONS(6618), 1, anon_sym_COMMA, - ACTIONS(7072), 1, + ACTIONS(7071), 1, anon_sym_RPAREN, - STATE(3770), 1, - aux_sym_type_parameters_repeat1, + STATE(3801), 1, + aux_sym_parameter_list_repeat1, STATE(3979), 2, sym_line_comment, sym_block_comment, - [137882] = 6, + [137984] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(6622), 1, anon_sym_COMMA, - ACTIONS(7074), 1, - anon_sym_RBRACK, - STATE(3994), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(7073), 1, + anon_sym_RPAREN, + STATE(3799), 1, + aux_sym_type_parameter_list_repeat1, STATE(3980), 2, sym_line_comment, sym_block_comment, - [137902] = 6, + [138004] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, - anon_sym_COMMA, - ACTIONS(7076), 1, + ACTIONS(7075), 1, + anon_sym_QMARK, + ACTIONS(5286), 2, + anon_sym_SEMI, anon_sym_RBRACK, - STATE(3974), 1, - aux_sym_type_parameters_repeat1, STATE(3981), 2, sym_line_comment, sym_block_comment, - [137922] = 4, + [138022] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6622), 1, + anon_sym_COMMA, + ACTIONS(7077), 1, + anon_sym_RPAREN, + STATE(3799), 1, + aux_sym_type_parameter_list_repeat1, STATE(3982), 2, sym_line_comment, sym_block_comment, - ACTIONS(3909), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [137938] = 4, + [138042] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6618), 1, + anon_sym_COMMA, + ACTIONS(7079), 1, + anon_sym_RPAREN, + STATE(3801), 1, + aux_sym_parameter_list_repeat1, STATE(3983), 2, sym_line_comment, sym_block_comment, - ACTIONS(6296), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [137954] = 6, - ACTIONS(497), 1, + [138062] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7040), 1, - sym___double_quote, - STATE(3930), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6950), 1, + anon_sym_COMMA, + ACTIONS(7081), 1, + anon_sym_in, + STATE(3832), 1, + aux_sym_var_definition_list_repeat1, STATE(3984), 2, sym_line_comment, sym_block_comment, - [137974] = 6, + [138082] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_COMMA, - ACTIONS(7078), 1, - anon_sym_RPAREN, - STATE(3965), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6304), 1, + sym_identifier, + ACTIONS(6306), 1, + anon_sym_mut, + STATE(4163), 1, + sym_var_definition, STATE(3985), 2, sym_line_comment, sym_block_comment, - [137994] = 6, + [138102] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - ACTIONS(7080), 1, - anon_sym_RPAREN, - STATE(3807), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(7083), 1, + anon_sym_RBRACK, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, STATE(3986), 2, sym_line_comment, sym_block_comment, - [138014] = 6, - ACTIONS(3), 1, + [138122] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - anon_sym_COMMA, - ACTIONS(7082), 1, - anon_sym_RPAREN, - STATE(3807), 1, - aux_sym_type_parameter_list_repeat1, STATE(3987), 2, sym_line_comment, sym_block_comment, - [138034] = 6, - ACTIONS(3), 1, + ACTIONS(7085), 3, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, + anon_sym_STAR_SLASH, + [138138] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_COMMA, - ACTIONS(7084), 1, - anon_sym_RPAREN, - STATE(3965), 1, - aux_sym_parameter_list_repeat1, - STATE(3988), 2, + ACTIONS(7087), 1, + anon_sym_DQUOTE, + ACTIONS(7089), 1, + aux_sym_raw_string_literal_token2, + STATE(3988), 3, sym_line_comment, sym_block_comment, - [138054] = 6, - ACTIONS(3), 1, + aux_sym_raw_string_literal_repeat2, + [138156] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, - anon_sym_COMMA, - ACTIONS(7086), 1, - anon_sym_RBRACK, - STATE(3935), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + STATE(3945), 1, + aux_sym_raw_string_literal_repeat2, STATE(3989), 2, sym_line_comment, sym_block_comment, - [138074] = 6, + [138176] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + ACTIONS(6298), 1, anon_sym_COMMA, - ACTIONS(7088), 1, - anon_sym_RPAREN, - STATE(3965), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(7094), 1, + anon_sym_RBRACK, + STATE(3637), 1, + aux_sym_type_parameters_repeat1, STATE(3990), 2, sym_line_comment, sym_block_comment, - [138094] = 4, - ACTIONS(3), 1, + [138196] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(6630), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7092), 1, + anon_sym_SQUOTE, + STATE(3946), 1, + aux_sym_raw_string_literal_repeat1, STATE(3991), 2, sym_line_comment, sym_block_comment, - ACTIONS(6368), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [138110] = 6, + [138216] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7090), 1, - sym_identifier, - ACTIONS(7092), 1, - anon_sym_LBRACE, - STATE(2537), 1, - sym__content_block, + ACTIONS(6298), 1, + anon_sym_COMMA, + ACTIONS(7096), 1, + anon_sym_RBRACK, + STATE(3964), 1, + aux_sym_type_parameters_repeat1, STATE(3992), 2, sym_line_comment, sym_block_comment, - [138130] = 5, - ACTIONS(3), 1, + [138236] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(3522), 1, - anon_sym_COLON_EQ, - ACTIONS(7094), 1, - anon_sym_COMMA, + ACTIONS(7098), 1, + anon_sym_SQUOTE, + ACTIONS(7100), 1, + aux_sym_raw_string_literal_token1, STATE(3993), 3, sym_line_comment, sym_block_comment, - aux_sym_strictly_expression_list_repeat1, - [138148] = 6, - ACTIONS(3), 1, + aux_sym_raw_string_literal_repeat1, + [138254] = 6, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, - anon_sym_COMMA, - ACTIONS(7097), 1, - anon_sym_RBRACK, - STATE(3593), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6628), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6739), 1, + anon_sym_DQUOTE, + STATE(3916), 1, + aux_sym_raw_string_literal_repeat2, STATE(3994), 2, sym_line_comment, sym_block_comment, - [138168] = 6, + [138274] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6332), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - ACTIONS(7099), 1, - anon_sym_RBRACK, - STATE(3975), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4789), 1, + anon_sym_COLON_EQ, + STATE(3833), 1, + aux_sym_identifier_list_repeat1, STATE(3995), 2, sym_line_comment, sym_block_comment, - [138188] = 6, + [138294] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7101), 1, - anon_sym_COMMA, ACTIONS(7103), 1, + anon_sym_COMMA, + ACTIONS(7105), 1, anon_sym_RPAREN, - STATE(3906), 1, + STATE(3759), 1, aux_sym_type_parameters_repeat1, STATE(3996), 2, sym_line_comment, sym_block_comment, - [138208] = 6, + [138314] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6825), 1, - anon_sym_COMMA, - ACTIONS(7105), 1, - anon_sym_in, - STATE(3856), 1, - aux_sym_var_definition_list_repeat1, + ACTIONS(7107), 1, + anon_sym_LBRACE, + STATE(2226), 1, + sym_type_initializer_body, STATE(3997), 2, sym_line_comment, sym_block_comment, - [138228] = 6, + [138331] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7107), 1, + ACTIONS(6436), 1, sym_identifier, - ACTIONS(7109), 1, - anon_sym_LBRACE, - STATE(1984), 1, - sym__content_block, + STATE(1067), 1, + sym_reference_expression, STATE(3998), 2, sym_line_comment, sym_block_comment, - [138248] = 6, + [138348] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - anon_sym_COMMA, - ACTIONS(7111), 1, - anon_sym_RPAREN, - STATE(3807), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(5062), 1, + anon_sym_LBRACE, + STATE(2109), 1, + sym_block, STATE(3999), 2, sym_line_comment, sym_block_comment, - [138268] = 5, + [138365] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7113), 1, - sym_identifier, - STATE(2193), 1, - sym_type_reference_expression, + ACTIONS(7109), 1, + anon_sym_LPAREN, + STATE(1051), 1, + sym_special_argument_list, STATE(4000), 2, sym_line_comment, sym_block_comment, - [138285] = 5, + [138382] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6938), 1, + ACTIONS(7111), 1, anon_sym_LBRACE, - STATE(1145), 1, - sym__content_block, + STATE(1986), 1, + sym__struct_body, STATE(4001), 2, sym_line_comment, sym_block_comment, - [138302] = 5, + [138399] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4998), 1, + ACTIONS(7113), 1, anon_sym_LBRACE, - STATE(2645), 1, - sym_block, + STATE(384), 1, + sym_type_initializer_body, STATE(4002), 2, sym_line_comment, sym_block_comment, - [138319] = 5, + [138416] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5032), 1, + ACTIONS(5036), 1, anon_sym_LBRACE, - STATE(1980), 1, + STATE(1993), 1, sym_block, STATE(4003), 2, sym_line_comment, sym_block_comment, - [138336] = 4, + [138433] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4184), 2, - anon_sym_SEMI, + ACTIONS(6936), 1, anon_sym_LBRACE, + STATE(2646), 1, + sym__content_block, STATE(4004), 2, sym_line_comment, sym_block_comment, - [138351] = 4, + [138450] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4188), 2, - anon_sym_SEMI, + ACTIONS(6970), 1, anon_sym_LBRACE, + STATE(2623), 1, + sym_type_initializer_body, STATE(4005), 2, sym_line_comment, sym_block_comment, - [138366] = 5, + [138467] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6440), 1, - sym_identifier, - STATE(317), 1, - sym_reference_expression, + ACTIONS(5004), 1, + anon_sym_LBRACE, + STATE(1141), 1, + sym_block, STATE(4006), 2, sym_line_comment, sym_block_comment, - [138383] = 5, + [138484] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, + ACTIONS(7115), 1, anon_sym_LBRACE, - STATE(1326), 1, - sym_block, + STATE(1226), 1, + sym_type_initializer_body, STATE(4007), 2, sym_line_comment, sym_block_comment, - [138400] = 4, + [138501] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6512), 2, - anon_sym_RPAREN, - sym_identifier, + ACTIONS(7117), 1, + anon_sym_LBRACE, + STATE(997), 1, + sym_type_initializer_body, STATE(4008), 2, sym_line_comment, sym_block_comment, - [138415] = 4, + [138518] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6350), 2, - anon_sym_RPAREN, - sym_identifier, + ACTIONS(7119), 1, + anon_sym_LPAREN, + STATE(1143), 1, + sym_argument_list, STATE(4009), 2, sym_line_comment, sym_block_comment, - [138430] = 5, + [138535] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, - anon_sym_LBRACE, - STATE(1983), 1, - sym_block, + ACTIONS(7121), 1, + sym_identifier, + STATE(2087), 1, + sym_type_reference_expression, STATE(4010), 2, sym_line_comment, sym_block_comment, - [138447] = 5, + [138552] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6975), 1, + ACTIONS(7115), 1, anon_sym_LBRACE, - STATE(2631), 1, + STATE(1226), 1, sym_type_initializer_body, STATE(4011), 2, sym_line_comment, sym_block_comment, - [138464] = 5, + [138569] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7115), 1, + ACTIONS(7123), 1, anon_sym_LBRACE, - STATE(2313), 1, + STATE(2185), 1, sym__struct_body, STATE(4012), 2, sym_line_comment, sym_block_comment, - [138481] = 5, + [138586] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6523), 1, - sym_identifier, - STATE(2473), 1, - sym_reference_expression, + ACTIONS(6612), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4013), 2, sym_line_comment, sym_block_comment, - [138498] = 5, + [138601] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7117), 1, + ACTIONS(2207), 1, anon_sym_LBRACE, - STATE(2031), 1, + STATE(1226), 1, sym_type_initializer_body, STATE(4014), 2, sym_line_comment, sym_block_comment, - [138515] = 5, + [138618] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, + ACTIONS(5036), 1, anon_sym_LBRACE, - STATE(1262), 1, + STATE(1821), 1, sym_block, STATE(4015), 2, sym_line_comment, sym_block_comment, - [138532] = 5, + [138635] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7119), 1, + ACTIONS(5004), 1, anon_sym_LBRACE, - STATE(2313), 1, - sym__struct_body, + STATE(1173), 1, + sym_block, STATE(4016), 2, sym_line_comment, sym_block_comment, - [138549] = 5, + [138652] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2507), 1, - anon_sym_COMMA, - ACTIONS(7121), 1, - anon_sym_RPAREN, + ACTIONS(5004), 1, + anon_sym_LBRACE, + STATE(1174), 1, + sym_block, STATE(4017), 2, sym_line_comment, sym_block_comment, - [138566] = 5, + [138669] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7123), 1, + ACTIONS(5036), 1, anon_sym_LBRACE, - STATE(2189), 1, - sym__struct_body, + STATE(2060), 1, + sym_block, STATE(4018), 2, sym_line_comment, sym_block_comment, - [138583] = 5, + [138686] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7125), 1, anon_sym_LBRACE, - STATE(2313), 1, + STATE(2357), 1, sym__struct_body, STATE(4019), 2, sym_line_comment, sym_block_comment, - [138600] = 4, + [138703] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7127), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6696), 1, + anon_sym_LBRACE, + STATE(2070), 1, + sym__content_block, STATE(4020), 2, sym_line_comment, sym_block_comment, - [138615] = 5, + [138720] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, - anon_sym_LBRACE, - STATE(1831), 1, - sym_block, + ACTIONS(7127), 2, + anon_sym_COMMA, + anon_sym_RBRACK, STATE(4021), 2, sym_line_comment, sym_block_comment, - [138632] = 5, + [138735] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7129), 1, - anon_sym_LBRACE, - STATE(2313), 1, - sym__struct_body, + sym_identifier, + STATE(2245), 1, + sym_type_reference_expression, STATE(4022), 2, sym_line_comment, sym_block_comment, - [138649] = 4, + [138752] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7131), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5066), 1, + anon_sym_LBRACE, + STATE(1307), 1, + sym_block, STATE(4023), 2, sym_line_comment, sym_block_comment, - [138664] = 5, + [138769] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, + ACTIONS(5050), 1, anon_sym_LBRACE, - STATE(2063), 1, + STATE(2631), 1, sym_block, STATE(4024), 2, sym_line_comment, sym_block_comment, - [138681] = 5, + [138786] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7133), 1, - anon_sym_LPAREN, - STATE(2525), 1, - sym_special_argument_list, + ACTIONS(7131), 1, + anon_sym_LBRACE, + STATE(2357), 1, + sym__struct_body, STATE(4025), 2, sym_line_comment, sym_block_comment, - [138698] = 5, + [138803] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7109), 1, - anon_sym_LBRACE, - STATE(2066), 1, - sym__content_block, + ACTIONS(6535), 1, + sym_identifier, + STATE(4130), 1, + sym_reference_expression, STATE(4026), 2, sym_line_comment, sym_block_comment, - [138715] = 5, - ACTIONS(3), 1, + [138820] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, + ACTIONS(7133), 1, + anon_sym_DQUOTE, ACTIONS(7135), 1, - anon_sym_LBRACE, - STATE(2313), 1, - sym__struct_body, + aux_sym_raw_string_literal_token2, STATE(4027), 2, sym_line_comment, sym_block_comment, - [138732] = 5, + [138837] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7137), 1, anon_sym_LBRACE, - STATE(2313), 1, + STATE(2357), 1, sym__struct_body, STATE(4028), 2, sym_line_comment, sym_block_comment, - [138749] = 4, + [138854] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7139), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5056), 1, + anon_sym_LBRACE, + STATE(314), 1, + sym_block, STATE(4029), 2, sym_line_comment, sym_block_comment, - [138764] = 4, + [138871] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6733), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5056), 1, + anon_sym_LBRACE, + STATE(342), 1, + sym_block, STATE(4030), 2, sym_line_comment, sym_block_comment, - [138779] = 5, + [138888] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7141), 1, - anon_sym_LPAREN, - STATE(350), 1, - sym_special_argument_list, + ACTIONS(7139), 1, + anon_sym_LBRACE, + STATE(2357), 1, + sym__struct_body, STATE(4031), 2, sym_line_comment, sym_block_comment, - [138796] = 5, + [138905] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7143), 1, + ACTIONS(7141), 1, anon_sym_LBRACE, - STATE(2313), 1, + STATE(2357), 1, sym__struct_body, STATE(4032), 2, sym_line_comment, sym_block_comment, - [138813] = 4, + [138922] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7145), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5046), 1, + anon_sym_LBRACE, + STATE(1005), 1, + sym_block, STATE(4033), 2, sym_line_comment, sym_block_comment, - [138828] = 5, + [138939] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - STATE(489), 1, - sym_block, + ACTIONS(4846), 1, + anon_sym_COLON, + ACTIONS(7143), 1, + anon_sym_mut, STATE(4034), 2, sym_line_comment, sym_block_comment, - [138845] = 5, + [138956] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, + ACTIONS(7145), 1, anon_sym_LBRACE, - STATE(2535), 1, - sym_block, + STATE(2357), 1, + sym__struct_body, STATE(4035), 2, sym_line_comment, sym_block_comment, - [138862] = 5, + [138973] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7147), 1, + ACTIONS(6346), 1, anon_sym_LBRACE, - STATE(2313), 1, + STATE(1494), 1, sym__struct_body, STATE(4036), 2, sym_line_comment, sym_block_comment, - [138879] = 5, + [138990] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2507), 1, - anon_sym_COMMA, - ACTIONS(7149), 1, - anon_sym_RPAREN, + ACTIONS(7147), 1, + anon_sym_LBRACE, + STATE(2357), 1, + sym__struct_body, STATE(4037), 2, sym_line_comment, sym_block_comment, - [138896] = 5, + [139007] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7151), 1, + ACTIONS(5004), 1, anon_sym_LBRACE, - STATE(2567), 1, - sym_type_initializer_body, + STATE(1118), 1, + sym_block, STATE(4038), 2, sym_line_comment, sym_block_comment, - [138913] = 5, + [139024] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7153), 1, - anon_sym_COMMA, - ACTIONS(7155), 1, - anon_sym_RPAREN, + ACTIONS(2215), 1, + anon_sym_LBRACE, + STATE(997), 1, + sym_type_initializer_body, STATE(4039), 2, sym_line_comment, sym_block_comment, - [138930] = 5, + [139041] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7157), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(2313), 1, - sym__struct_body, + STATE(1479), 1, + sym__enum_body, STATE(4040), 2, sym_line_comment, sym_block_comment, - [138947] = 5, + [139058] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4900), 1, - sym_identifier, - ACTIONS(7159), 1, - anon_sym_volatile, + ACTIONS(7149), 1, + anon_sym_LBRACE, + STATE(2357), 1, + sym__struct_body, STATE(4041), 2, sym_line_comment, sym_block_comment, - [138964] = 5, + [139075] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7161), 1, + ACTIONS(6344), 1, anon_sym_LBRACE, - STATE(2313), 1, - sym__struct_body, + STATE(1529), 1, + sym__interface_body, STATE(4042), 2, sym_line_comment, sym_block_comment, - [138981] = 5, + [139092] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4663), 1, - anon_sym_LBRACE, - STATE(1531), 1, - sym_block, + ACTIONS(7151), 1, + anon_sym_COMMA, + ACTIONS(7153), 1, + anon_sym_RPAREN, STATE(4043), 2, sym_line_comment, sym_block_comment, - [138998] = 5, + [139109] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7163), 1, - sym_identifier, - STATE(1528), 1, - sym_label_reference, + ACTIONS(7155), 1, + anon_sym_COMMA, + ACTIONS(7157), 1, + anon_sym_RPAREN, STATE(4044), 2, sym_line_comment, sym_block_comment, - [139015] = 5, + [139126] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6915), 1, + ACTIONS(7159), 1, anon_sym_LBRACE, - STATE(2313), 1, + STATE(2357), 1, sym__struct_body, STATE(4045), 2, sym_line_comment, sym_block_comment, - [139032] = 5, + [139143] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4998), 1, - anon_sym_LBRACE, - STATE(2656), 1, - sym_block, + ACTIONS(7161), 1, + anon_sym_COMMA, + ACTIONS(7163), 1, + anon_sym_RPAREN, STATE(4046), 2, sym_line_comment, sym_block_comment, - [139049] = 4, + [139160] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1751), 2, - anon_sym_SEMI, + ACTIONS(7165), 1, anon_sym_LBRACE, + STATE(3350), 1, + sym__struct_body, STATE(4047), 2, sym_line_comment, sym_block_comment, - [139064] = 4, + [139177] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7038), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7167), 1, + anon_sym_LBRACE, + STATE(2357), 1, + sym__struct_body, STATE(4048), 2, sym_line_comment, sym_block_comment, - [139079] = 5, + [139194] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7165), 1, - anon_sym_COMMA, - ACTIONS(7167), 1, - anon_sym_RPAREN, + ACTIONS(6545), 1, + sym_identifier, + STATE(3480), 1, + sym_import_name, STATE(4049), 2, sym_line_comment, sym_block_comment, - [139096] = 5, + [139211] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4998), 1, + ACTIONS(5004), 1, anon_sym_LBRACE, - STATE(2657), 1, + STATE(1196), 1, sym_block, STATE(4050), 2, sym_line_comment, sym_block_comment, - [139113] = 5, + [139228] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, + ACTIONS(6566), 1, sym_identifier, - STATE(1012), 1, + STATE(3534), 1, sym_reference_expression, STATE(4051), 2, sym_line_comment, sym_block_comment, - [139130] = 5, + [139245] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7169), 1, - sym_identifier, - STATE(1795), 1, - sym_type_reference_expression, + ACTIONS(7117), 1, + anon_sym_LBRACE, + STATE(997), 1, + sym_type_initializer_body, STATE(4052), 2, sym_line_comment, sym_block_comment, - [139147] = 5, + [139262] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5092), 1, - anon_sym_LPAREN, - STATE(2658), 1, - sym_argument_list, + ACTIONS(7169), 1, + anon_sym_COMMA, + ACTIONS(7171), 1, + anon_sym_RPAREN, STATE(4053), 2, sym_line_comment, sym_block_comment, - [139164] = 5, + [139279] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, + ACTIONS(6834), 1, anon_sym_LBRACE, - STATE(2560), 1, - sym_block, + STATE(2357), 1, + sym__struct_body, STATE(4054), 2, sym_line_comment, sym_block_comment, - [139181] = 5, + [139296] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2722), 1, + ACTIONS(7113), 1, anon_sym_LBRACE, - STATE(2567), 1, + STATE(384), 1, sym_type_initializer_body, STATE(4055), 2, sym_line_comment, sym_block_comment, - [139198] = 5, + [139313] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7171), 1, + ACTIONS(5054), 1, anon_sym_LBRACE, - STATE(1043), 1, - sym__struct_body, + STATE(4497), 1, + sym_block, STATE(4056), 2, sym_line_comment, sym_block_comment, - [139215] = 5, + [139330] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7151), 1, + ACTIONS(5066), 1, anon_sym_LBRACE, - STATE(2567), 1, - sym_type_initializer_body, + STATE(1373), 1, + sym_block, STATE(4057), 2, sym_line_comment, sym_block_comment, - [139232] = 5, + [139347] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2748), 1, + ACTIONS(5066), 1, anon_sym_LBRACE, - STATE(2567), 1, - sym_type_initializer_body, + STATE(1374), 1, + sym_block, STATE(4058), 2, sym_line_comment, sym_block_comment, - [139249] = 5, + [139364] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4998), 1, + ACTIONS(2207), 1, anon_sym_LBRACE, - STATE(2660), 1, - sym_block, + STATE(997), 1, + sym_type_initializer_body, STATE(4059), 2, sym_line_comment, sym_block_comment, - [139266] = 5, + [139381] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - STATE(2358), 1, + STATE(967), 1, sym_block, STATE(4060), 2, sym_line_comment, sym_block_comment, - [139283] = 4, + [139398] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7173), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7173), 1, + anon_sym_LBRACE, + STATE(2136), 1, + sym_block, STATE(4061), 2, sym_line_comment, sym_block_comment, - [139298] = 5, + [139415] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, - anon_sym_LBRACE, - STATE(2538), 1, - sym_block, + ACTIONS(7175), 1, + sym_identifier, + STATE(322), 1, + sym_type_reference_expression, STATE(4062), 2, sym_line_comment, sym_block_comment, - [139315] = 5, + [139432] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6863), 1, - sym_identifier, - STATE(4264), 1, - sym_reference_expression, + ACTIONS(3827), 1, + anon_sym_LPAREN, + STATE(1376), 1, + sym_argument_list, STATE(4063), 2, sym_line_comment, sym_block_comment, - [139332] = 5, + [139449] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7092), 1, - anon_sym_LBRACE, - STATE(2452), 1, - sym__content_block, + ACTIONS(6545), 1, + sym_identifier, + STATE(3581), 1, + sym_import_name, STATE(4064), 2, sym_line_comment, sym_block_comment, - [139349] = 5, + [139466] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6948), 1, + ACTIONS(5066), 1, anon_sym_LBRACE, - STATE(2653), 1, - sym__content_block, + STATE(1382), 1, + sym_block, STATE(4065), 2, sym_line_comment, sym_block_comment, - [139366] = 5, + [139483] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, + ACTIONS(6812), 1, anon_sym_LBRACE, - STATE(2524), 1, - sym_block, + STATE(1190), 1, + sym__content_block, STATE(4066), 2, sym_line_comment, sym_block_comment, - [139383] = 5, + [139500] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, + ACTIONS(7177), 1, anon_sym_LBRACE, - STATE(1297), 1, - sym_block, + STATE(2698), 1, + sym__struct_body, STATE(4067), 2, sym_line_comment, sym_block_comment, - [139400] = 5, + [139517] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4998), 1, + ACTIONS(5004), 1, anon_sym_LBRACE, - STATE(2651), 1, + STATE(1214), 1, sym_block, STATE(4068), 2, sym_line_comment, sym_block_comment, - [139417] = 5, + [139534] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7175), 1, + ACTIONS(5050), 1, anon_sym_LBRACE, - STATE(328), 1, - sym_type_initializer_body, + STATE(2653), 1, + sym_block, STATE(4069), 2, sym_line_comment, sym_block_comment, - [139434] = 5, + [139551] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7177), 1, - anon_sym_LPAREN, - STATE(2521), 1, - sym_argument_list, + ACTIONS(5050), 1, + anon_sym_LBRACE, + STATE(2654), 1, + sym_block, STATE(4070), 2, sym_line_comment, sym_block_comment, - [139451] = 5, + [139568] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, + ACTIONS(2215), 1, anon_sym_LBRACE, - STATE(1299), 1, - sym_block, + STATE(1226), 1, + sym_type_initializer_body, STATE(4071), 2, sym_line_comment, sym_block_comment, - [139468] = 5, + [139585] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1899), 1, - anon_sym_RBRACE, - STATE(3621), 1, - sym___rcbr, + ACTIONS(7179), 1, + sym_identifier, + STATE(2729), 1, + sym_type_reference_expression, STATE(4072), 2, sym_line_comment, sym_block_comment, - [139485] = 5, + [139602] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7179), 1, + ACTIONS(6987), 1, anon_sym_LBRACE, - STATE(2705), 1, - sym__struct_body, + STATE(1385), 1, + sym__content_block, STATE(4073), 2, sym_line_comment, sym_block_comment, - [139502] = 5, + [139619] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5032), 1, + ACTIONS(5066), 1, anon_sym_LBRACE, - STATE(2007), 1, + STATE(1383), 1, sym_block, STATE(4074), 2, sym_line_comment, sym_block_comment, - [139519] = 5, + [139636] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4998), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - STATE(2573), 1, + STATE(1017), 1, sym_block, STATE(4075), 2, sym_line_comment, sym_block_comment, - [139536] = 5, - ACTIONS(3), 1, + [139653] = 5, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, ACTIONS(7181), 1, - sym_identifier, - STATE(1033), 1, - sym_type_reference_expression, + anon_sym_SQUOTE, + ACTIONS(7183), 1, + aux_sym_raw_string_literal_token1, STATE(4076), 2, sym_line_comment, sym_block_comment, - [139553] = 5, + [139670] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, - anon_sym_LBRACE, - STATE(2515), 1, - sym_block, + ACTIONS(7185), 1, + sym_identifier, + STATE(1788), 1, + sym_type_reference_expression, STATE(4077), 2, sym_line_comment, sym_block_comment, - [139570] = 5, + [139687] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7183), 1, - sym_identifier, - STATE(2736), 1, - sym_type_reference_expression, + ACTIONS(5066), 1, + anon_sym_LBRACE, + STATE(1260), 1, + sym_block, STATE(4078), 2, sym_line_comment, sym_block_comment, - [139587] = 5, + [139704] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7185), 1, + ACTIONS(5004), 1, anon_sym_LBRACE, - STATE(1838), 1, - sym__struct_body, + STATE(1222), 1, + sym_block, STATE(4079), 2, sym_line_comment, sym_block_comment, - [139604] = 5, + [139721] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, - anon_sym_LBRACE, - STATE(2514), 1, - sym_block, + ACTIONS(5076), 1, + anon_sym_LPAREN, + STATE(2656), 1, + sym_argument_list, STATE(4080), 2, sym_line_comment, sym_block_comment, - [139621] = 4, + [139738] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7187), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2207), 1, + anon_sym_LBRACE, + STATE(1358), 1, + sym_type_initializer_body, STATE(4081), 2, sym_line_comment, sym_block_comment, - [139636] = 5, + [139755] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5032), 1, + ACTIONS(7187), 1, anon_sym_LBRACE, - STATE(1941), 1, - sym_block, + STATE(1358), 1, + sym_type_initializer_body, STATE(4082), 2, sym_line_comment, sym_block_comment, - [139653] = 5, + [139772] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4998), 1, + ACTIONS(6995), 1, anon_sym_LBRACE, - STATE(2627), 1, - sym_block, + STATE(1018), 1, + sym__content_block, STATE(4083), 2, sym_line_comment, sym_block_comment, - [139670] = 5, + [139789] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7189), 1, - anon_sym_LPAREN, - STATE(2756), 1, - sym_special_argument_list, + ACTIONS(5050), 1, + anon_sym_LBRACE, + STATE(2661), 1, + sym_block, STATE(4084), 2, sym_line_comment, sym_block_comment, - [139687] = 5, + [139806] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7191), 1, - anon_sym_COMMA, - ACTIONS(7193), 1, - anon_sym_RPAREN, + ACTIONS(5004), 1, + anon_sym_LBRACE, + STATE(1202), 1, + sym_block, STATE(4085), 2, sym_line_comment, sym_block_comment, - [139704] = 4, + [139823] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7195), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(7189), 1, + anon_sym_LBRACE, + STATE(1655), 1, + sym__struct_body, STATE(4086), 2, sym_line_comment, sym_block_comment, - [139719] = 5, + [139840] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6563), 1, - sym_identifier, - STATE(2649), 1, - sym_reference_expression, + ACTIONS(7191), 1, + anon_sym_LPAREN, + STATE(1181), 1, + sym_special_argument_list, STATE(4087), 2, sym_line_comment, sym_block_comment, - [139736] = 5, + [139857] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7197), 1, - sym_identifier, - STATE(443), 1, - sym_type_reference_expression, + ACTIONS(2215), 1, + anon_sym_LBRACE, + STATE(1358), 1, + sym_type_initializer_body, STATE(4088), 2, sym_line_comment, sym_block_comment, - [139753] = 4, + [139874] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6812), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(5066), 1, + anon_sym_LBRACE, + STATE(1366), 1, + sym_block, STATE(4089), 2, sym_line_comment, sym_block_comment, - [139768] = 5, + [139891] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7199), 1, - anon_sym_LBRACE, - STATE(1056), 1, - sym_type_initializer_body, + ACTIONS(6591), 1, + sym_identifier, + STATE(1168), 1, + sym_reference_expression, STATE(4090), 2, sym_line_comment, sym_block_comment, - [139785] = 5, + [139908] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, + ACTIONS(6296), 1, anon_sym_LBRACE, - STATE(364), 1, - sym_block, + STATE(2302), 1, + sym_type_initializer_body, STATE(4091), 2, sym_line_comment, sym_block_comment, - [139802] = 5, + [139925] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7201), 1, - anon_sym_COMMA, - ACTIONS(7203), 1, - anon_sym_RPAREN, + ACTIONS(5046), 1, + anon_sym_LBRACE, + STATE(1050), 1, + sym_block, STATE(4092), 2, sym_line_comment, sym_block_comment, - [139819] = 5, + [139942] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3823), 1, - anon_sym_LPAREN, - STATE(1321), 1, - sym_argument_list, + ACTIONS(7193), 1, + sym_identifier, + STATE(1722), 1, + sym_type_reference_expression, STATE(4093), 2, sym_line_comment, sym_block_comment, - [139836] = 5, + [139959] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6597), 1, + ACTIONS(6424), 1, sym_identifier, - STATE(1740), 1, + STATE(2035), 1, sym_reference_expression, STATE(4094), 2, sym_line_comment, sym_block_comment, - [139853] = 5, + [139976] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7205), 1, + ACTIONS(7195), 1, anon_sym_LBRACE, - STATE(2313), 1, + STATE(2357), 1, sym__struct_body, STATE(4095), 2, sym_line_comment, sym_block_comment, - [139870] = 5, + [139993] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7207), 1, - anon_sym_LPAREN, - STATE(1710), 1, - sym_special_argument_list, + ACTIONS(5050), 1, + anon_sym_LBRACE, + STATE(2644), 1, + sym_block, STATE(4096), 2, sym_line_comment, sym_block_comment, - [139887] = 5, + [140010] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - STATE(1337), 1, + STATE(1044), 1, sym_block, STATE(4097), 2, sym_line_comment, sym_block_comment, - [139904] = 5, + [140027] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, - anon_sym_LBRACE, - STATE(2185), 1, - sym_block, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(2048), 1, + sym_special_argument_list, STATE(4098), 2, sym_line_comment, sym_block_comment, - [139921] = 5, + [140044] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, - anon_sym_LBRACE, - STATE(1705), 1, - sym_block, + ACTIONS(7199), 1, + anon_sym_LPAREN, + STATE(1329), 1, + sym_special_argument_list, STATE(4099), 2, sym_line_comment, sym_block_comment, - [139938] = 5, + [140061] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, + ACTIONS(5070), 1, anon_sym_LBRACE, - STATE(3617), 1, + STATE(2842), 1, sym_block, STATE(4100), 2, sym_line_comment, sym_block_comment, - [139955] = 5, + [140078] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7209), 1, - sym_identifier, - STATE(3625), 1, - sym_label_reference, + ACTIONS(4822), 2, + anon_sym_COMMA, + anon_sym_in, STATE(4101), 2, sym_line_comment, sym_block_comment, - [139972] = 5, + [140093] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5032), 1, - anon_sym_LBRACE, - STATE(1946), 1, - sym_block, + ACTIONS(6499), 1, + sym_identifier, + STATE(1320), 1, + sym_reference_expression, STATE(4102), 2, sym_line_comment, sym_block_comment, - [139989] = 5, + [140110] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7211), 1, - anon_sym_LPAREN, - STATE(1049), 1, - sym_special_argument_list, + ACTIONS(5050), 1, + anon_sym_LBRACE, + STATE(2454), 1, + sym_block, STATE(4103), 2, sym_line_comment, sym_block_comment, - [140006] = 5, + [140127] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5050), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - STATE(2486), 1, + STATE(1080), 1, sym_block, STATE(4104), 2, sym_line_comment, sym_block_comment, - [140023] = 5, + [140144] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1849), 1, - anon_sym_RBRACE, - STATE(3647), 1, - sym___rcbr, + ACTIONS(5052), 1, + anon_sym_LBRACE, + STATE(2473), 1, + sym_block, STATE(4105), 2, sym_line_comment, sym_block_comment, - [140040] = 5, + [140161] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2748), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - STATE(1969), 1, - sym_type_initializer_body, + STATE(1082), 1, + sym_block, STATE(4106), 2, sym_line_comment, sym_block_comment, - [140057] = 5, + [140178] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6306), 1, + ACTIONS(7201), 1, anon_sym_LBRACE, - STATE(1570), 1, - sym__struct_body, + STATE(2836), 1, + sym_type_initializer_body, STATE(4107), 2, sym_line_comment, sym_block_comment, - [140074] = 5, + [140195] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6428), 1, + ACTIONS(6457), 2, + anon_sym_RPAREN, sym_identifier, - STATE(1193), 1, - sym_reference_expression, STATE(4108), 2, sym_line_comment, sym_block_comment, - [140091] = 5, + [140210] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7213), 1, - anon_sym_LPAREN, - STATE(1143), 1, - sym_special_argument_list, + ACTIONS(5036), 1, + anon_sym_LBRACE, + STATE(2084), 1, + sym_block, STATE(4109), 2, sym_line_comment, sym_block_comment, - [140108] = 5, + [140227] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5034), 1, + ACTIONS(2215), 1, anon_sym_LBRACE, - STATE(1045), 1, - sym_block, + STATE(2018), 1, + sym_type_initializer_body, STATE(4110), 2, sym_line_comment, sym_block_comment, - [140125] = 5, + [140244] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, + ACTIONS(7203), 1, anon_sym_LBRACE, - STATE(1697), 1, - sym_block, + STATE(1826), 1, + sym__struct_body, STATE(4111), 2, sym_line_comment, sym_block_comment, - [140142] = 5, + [140261] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2722), 1, + ACTIONS(7205), 1, anon_sym_LBRACE, - STATE(1722), 1, - sym_type_initializer_body, + STATE(2576), 1, + sym__struct_body, STATE(4112), 2, sym_line_comment, sym_block_comment, - [140159] = 5, + [140278] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6304), 1, - anon_sym_LBRACE, - STATE(1545), 1, - sym__interface_body, + ACTIONS(6471), 2, + anon_sym_RPAREN, + sym_identifier, STATE(4113), 2, sym_line_comment, sym_block_comment, - [140176] = 5, + [140293] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2722), 1, - anon_sym_LBRACE, - STATE(1056), 1, - sym_type_initializer_body, + ACTIONS(7207), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4114), 2, sym_line_comment, sym_block_comment, - [140193] = 5, + [140308] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7215), 1, + ACTIONS(7209), 2, anon_sym_COMMA, - ACTIONS(7217), 1, anon_sym_RPAREN, STATE(4115), 2, sym_line_comment, sym_block_comment, - [140210] = 5, + [140323] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACE, - STATE(1468), 1, - sym__struct_body, + ACTIONS(7211), 1, + anon_sym_COMMA, + ACTIONS(7213), 1, + anon_sym_RPAREN, STATE(4116), 2, sym_line_comment, sym_block_comment, - [140227] = 5, + [140340] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7219), 1, + ACTIONS(5054), 1, anon_sym_LBRACE, - STATE(3347), 1, - sym__struct_body, + STATE(2342), 1, + sym_block, STATE(4117), 2, sym_line_comment, sym_block_comment, - [140244] = 5, + [140357] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6422), 1, + ACTIONS(7215), 1, anon_sym_LBRACE, - STATE(1544), 1, - sym__enum_body, + STATE(2357), 1, + sym__struct_body, STATE(4118), 2, sym_line_comment, sym_block_comment, - [140261] = 5, + [140374] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7199), 1, - anon_sym_LBRACE, - STATE(1056), 1, - sym_type_initializer_body, + ACTIONS(2425), 1, + anon_sym_COMMA, + ACTIONS(7217), 1, + anon_sym_RPAREN, STATE(4119), 2, sym_line_comment, sym_block_comment, - [140278] = 5, + [140391] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6384), 1, - sym_identifier, - STATE(3755), 1, - sym_generic_parameter, + ACTIONS(7219), 1, + anon_sym_LBRACE, + STATE(2018), 1, + sym_type_initializer_body, STATE(4120), 2, sym_line_comment, sym_block_comment, - [140295] = 5, + [140408] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7221), 1, + ACTIONS(2207), 1, anon_sym_LBRACE, - STATE(1722), 1, + STATE(2018), 1, sym_type_initializer_body, STATE(4121), 2, sym_line_comment, sym_block_comment, - [140312] = 5, + [140425] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACE, - STATE(1543), 1, - sym__struct_body, + ACTIONS(7221), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4122), 2, sym_line_comment, sym_block_comment, - [140329] = 5, + [140440] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7223), 1, + ACTIONS(5054), 1, anon_sym_LBRACE, - STATE(1176), 1, - sym_type_initializer_body, + STATE(2329), 1, + sym_block, STATE(4123), 2, sym_line_comment, sym_block_comment, - [140346] = 5, + [140457] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, + ACTIONS(5070), 1, anon_sym_LBRACE, - STATE(309), 1, + STATE(2705), 1, sym_block, STATE(4124), 2, sym_line_comment, sym_block_comment, - [140363] = 5, + [140474] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, + ACTIONS(5064), 1, anon_sym_LBRACE, - STATE(2236), 1, + STATE(2208), 1, sym_block, STATE(4125), 2, sym_line_comment, sym_block_comment, - [140380] = 5, + [140491] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, + ACTIONS(5070), 1, anon_sym_LBRACE, - STATE(2230), 1, + STATE(2849), 1, sym_block, STATE(4126), 2, sym_line_comment, sym_block_comment, - [140397] = 5, + [140508] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2748), 1, + ACTIONS(6964), 1, anon_sym_LBRACE, - STATE(1722), 1, - sym_type_initializer_body, + STATE(2850), 1, + sym__content_block, STATE(4127), 2, sym_line_comment, sym_block_comment, - [140414] = 5, + [140525] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5028), 1, + ACTIONS(4677), 1, anon_sym_LBRACE, - STATE(1156), 1, + STATE(1485), 1, sym_block, STATE(4128), 2, sym_line_comment, sym_block_comment, - [140431] = 5, + [140542] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2748), 1, - anon_sym_LBRACE, - STATE(1056), 1, - sym_type_initializer_body, + ACTIONS(7223), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(4129), 2, sym_line_comment, sym_block_comment, - [140448] = 5, + [140557] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6777), 1, - anon_sym_LBRACE, - STATE(1376), 1, - sym__content_block, + ACTIONS(7225), 2, + anon_sym_COMMA, + anon_sym_RBRACK, STATE(4130), 2, sym_line_comment, sym_block_comment, - [140465] = 5, + [140572] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7225), 1, - sym_identifier, - STATE(2078), 1, - sym_type_reference_expression, + ACTIONS(5512), 2, + anon_sym_COMMA, + anon_sym_in, STATE(4131), 2, sym_line_comment, sym_block_comment, - [140482] = 5, + [140587] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6422), 1, + ACTIONS(5056), 1, anon_sym_LBRACE, - STATE(1569), 1, - sym__enum_body, + STATE(460), 1, + sym_block, STATE(4132), 2, sym_line_comment, sym_block_comment, - [140499] = 5, + [140604] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7227), 1, - anon_sym_LPAREN, - STATE(2227), 1, - sym_argument_list, + ACTIONS(6767), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(4133), 2, sym_line_comment, sym_block_comment, - [140516] = 5, + [140619] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, - anon_sym_LBRACE, - STATE(1378), 1, - sym_block, + ACTIONS(7227), 1, + anon_sym_COMMA, + ACTIONS(7229), 1, + anon_sym_RPAREN, STATE(4134), 2, sym_line_comment, sym_block_comment, - [140533] = 5, + [140636] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2722), 1, - anon_sym_LBRACE, - STATE(328), 1, - sym_type_initializer_body, + ACTIONS(7231), 1, + anon_sym_COMMA, + ACTIONS(7233), 1, + anon_sym_RPAREN, STATE(4135), 2, sym_line_comment, sym_block_comment, - [140550] = 5, + [140653] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5034), 1, - anon_sym_LBRACE, - STATE(967), 1, - sym_block, + ACTIONS(7235), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(4136), 2, sym_line_comment, sym_block_comment, - [140567] = 5, + [140668] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, - anon_sym_LBRACE, - STATE(2225), 1, - sym_block, + ACTIONS(6725), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(4137), 2, sym_line_comment, sym_block_comment, - [140584] = 5, + [140683] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6304), 1, + ACTIONS(5036), 1, anon_sym_LBRACE, - STATE(1568), 1, - sym__interface_body, + STATE(2111), 1, + sym_block, STATE(4138), 2, sym_line_comment, sym_block_comment, - [140601] = 4, + [140700] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5508), 2, - anon_sym_COMMA, - anon_sym_in, + ACTIONS(5052), 1, + anon_sym_LBRACE, + STATE(2501), 1, + sym_block, STATE(4139), 2, sym_line_comment, sym_block_comment, - [140616] = 5, + [140717] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5034), 1, + ACTIONS(5054), 1, anon_sym_LBRACE, - STATE(1083), 1, + STATE(2372), 1, sym_block, STATE(4140), 2, sym_line_comment, sym_block_comment, - [140633] = 5, + [140734] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5028), 1, + ACTIONS(5054), 1, anon_sym_LBRACE, - STATE(1151), 1, + STATE(2381), 1, sym_block, STATE(4141), 2, sym_line_comment, sym_block_comment, - [140650] = 5, + [140751] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2748), 1, + ACTIONS(7173), 1, anon_sym_LBRACE, - STATE(1365), 1, - sym_type_initializer_body, + STATE(2140), 1, + sym_block, STATE(4142), 2, sym_line_comment, sym_block_comment, - [140667] = 5, + [140768] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, + ACTIONS(7219), 1, anon_sym_LBRACE, - STATE(1625), 1, - sym_block, + STATE(2018), 1, + sym_type_initializer_body, STATE(4143), 2, sym_line_comment, sym_block_comment, - [140684] = 5, + [140785] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, - anon_sym_LBRACE, - STATE(1704), 1, - sym_block, + ACTIONS(7237), 1, + sym_identifier, + STATE(1540), 1, + sym_label_reference, STATE(4144), 2, sym_line_comment, sym_block_comment, - [140701] = 5, + [140802] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5034), 1, + ACTIONS(7173), 1, anon_sym_LBRACE, - STATE(1004), 1, + STATE(2138), 1, sym_block, STATE(4145), 2, sym_line_comment, sym_block_comment, - [140718] = 5, + [140819] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2722), 1, + ACTIONS(4677), 1, anon_sym_LBRACE, - STATE(1176), 1, - sym_type_initializer_body, + STATE(1491), 1, + sym_block, STATE(4146), 2, sym_line_comment, sym_block_comment, - [140735] = 5, + [140836] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, + ACTIONS(4725), 1, anon_sym_LPAREN, - STATE(1932), 1, + STATE(2113), 1, sym_argument_list, STATE(4147), 2, sym_line_comment, sym_block_comment, - [140752] = 5, + [140853] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7229), 1, - anon_sym_LBRACE, - STATE(1971), 1, - sym__struct_body, + ACTIONS(7239), 1, + sym_identifier, + STATE(3299), 1, + sym_type_reference_expression, STATE(4148), 2, sym_line_comment, sym_block_comment, - [140769] = 5, + [140870] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6803), 1, - anon_sym_LBRACE, - STATE(1706), 1, - sym__content_block, + ACTIONS(4938), 1, + anon_sym_LPAREN, + STATE(2401), 1, + sym_argument_list, STATE(4149), 2, sym_line_comment, sym_block_comment, - [140786] = 5, + [140887] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7231), 1, + ACTIONS(5054), 1, anon_sym_LBRACE, - STATE(2143), 1, + STATE(2414), 1, sym_block, STATE(4150), 2, sym_line_comment, sym_block_comment, - [140803] = 5, + [140904] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7233), 1, - anon_sym_LBRACE, - STATE(1365), 1, - sym_type_initializer_body, + ACTIONS(7241), 1, + sym_identifier, + STATE(2507), 1, + sym_type_reference_expression, STATE(4151), 2, sym_line_comment, sym_block_comment, - [140820] = 5, + [140921] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6757), 1, + ACTIONS(5050), 1, anon_sym_LBRACE, - STATE(2214), 1, - sym__content_block, + STATE(2620), 1, + sym_block, STATE(4152), 2, sym_line_comment, sym_block_comment, - [140837] = 5, + [140938] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7235), 1, + ACTIONS(5052), 1, anon_sym_LBRACE, - STATE(1662), 1, - sym__struct_body, + STATE(2503), 1, + sym_block, STATE(4153), 2, sym_line_comment, sym_block_comment, - [140854] = 5, + [140955] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, + ACTIONS(6791), 1, anon_sym_LBRACE, - STATE(2213), 1, - sym_block, + STATE(2392), 1, + sym__content_block, STATE(4154), 2, sym_line_comment, sym_block_comment, - [140871] = 5, + [140972] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2722), 1, + ACTIONS(5054), 1, anon_sym_LBRACE, - STATE(1365), 1, - sym_type_initializer_body, + STATE(2415), 1, + sym_block, STATE(4155), 2, sym_line_comment, sym_block_comment, - [140888] = 5, + [140989] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, + ACTIONS(5036), 1, anon_sym_LBRACE, - STATE(1373), 1, + STATE(2019), 1, sym_block, STATE(4156), 2, sym_line_comment, sym_block_comment, - [140905] = 5, + [141006] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7223), 1, + ACTIONS(5036), 1, anon_sym_LBRACE, - STATE(1176), 1, - sym_type_initializer_body, + STATE(1995), 1, + sym_block, STATE(4157), 2, sym_line_comment, sym_block_comment, - [140922] = 5, + [141023] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, - anon_sym_LBRACE, - STATE(4361), 1, - sym_block, + ACTIONS(7243), 1, + anon_sym_LPAREN, + STATE(2759), 1, + sym_special_argument_list, STATE(4158), 2, sym_line_comment, sym_block_comment, - [140939] = 5, + [141040] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7237), 1, + ACTIONS(5054), 1, anon_sym_LBRACE, - STATE(2313), 1, - sym__struct_body, + STATE(2276), 1, + sym_block, STATE(4159), 2, sym_line_comment, sym_block_comment, - [140956] = 5, + [141057] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6312), 1, + ACTIONS(5046), 1, anon_sym_LBRACE, - STATE(2351), 1, - sym_type_initializer_body, + STATE(1027), 1, + sym_block, STATE(4160), 2, sym_line_comment, sym_block_comment, - [140973] = 4, + [141074] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7239), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7245), 1, + anon_sym_LBRACE, + STATE(2357), 1, + sym__struct_body, STATE(4161), 2, sym_line_comment, sym_block_comment, - [140988] = 5, + [141091] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6981), 1, + ACTIONS(7247), 1, anon_sym_LBRACE, - STATE(994), 1, - sym__content_block, + STATE(357), 1, + sym__struct_body, STATE(4162), 2, sym_line_comment, sym_block_comment, - [141005] = 5, + [141108] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, - anon_sym_LBRACE, - STATE(2126), 1, - sym_block, + ACTIONS(6796), 2, + anon_sym_COMMA, + anon_sym_in, STATE(4163), 2, sym_line_comment, sym_block_comment, - [141022] = 5, + [141123] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, - anon_sym_LBRACE, - STATE(3672), 1, - sym_block, + ACTIONS(6547), 1, + sym_identifier, + STATE(2763), 1, + sym_reference_expression, STATE(4164), 2, sym_line_comment, sym_block_comment, - [141039] = 5, + [141140] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2748), 1, - anon_sym_LBRACE, - STATE(2167), 1, - sym_type_initializer_body, + ACTIONS(7249), 1, + anon_sym_COMMA, + ACTIONS(7251), 1, + anon_sym_RPAREN, STATE(4165), 2, sym_line_comment, sym_block_comment, - [141056] = 5, + [141157] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7241), 1, - anon_sym_LBRACE, - STATE(2167), 1, - sym_type_initializer_body, + ACTIONS(7253), 1, + sym_identifier, + STATE(1006), 1, + sym_type_reference_expression, STATE(4166), 2, sym_line_comment, sym_block_comment, - [141073] = 5, + [141174] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7243), 1, - anon_sym_LBRACE, - STATE(1979), 1, - sym__struct_body, + ACTIONS(7255), 1, + anon_sym_LPAREN, + STATE(2509), 1, + sym_argument_list, STATE(4167), 2, sym_line_comment, sym_block_comment, - [141090] = 5, + [141191] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2722), 1, + ACTIONS(2215), 1, anon_sym_LBRACE, - STATE(2167), 1, + STATE(384), 1, sym_type_initializer_body, STATE(4168), 2, sym_line_comment, sym_block_comment, - [141107] = 5, + [141208] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, + ACTIONS(6346), 1, anon_sym_LBRACE, - STATE(2197), 1, - sym_block, + STATE(1559), 1, + sym__struct_body, STATE(4169), 2, sym_line_comment, sym_block_comment, - [141124] = 5, + [141225] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2748), 1, + ACTIONS(4677), 1, anon_sym_LBRACE, - STATE(1176), 1, - sym_type_initializer_body, + STATE(1515), 1, + sym_block, STATE(4170), 2, sym_line_comment, sym_block_comment, - [141141] = 5, + [141242] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(3668), 1, - sym_block, + STATE(1542), 1, + sym__enum_body, STATE(4171), 2, sym_line_comment, sym_block_comment, - [141158] = 5, + [141259] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5034), 1, + ACTIONS(6344), 1, anon_sym_LBRACE, - STATE(1094), 1, - sym_block, + STATE(1572), 1, + sym__interface_body, STATE(4172), 2, sym_line_comment, sym_block_comment, - [141175] = 5, + [141276] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7241), 1, + ACTIONS(7187), 1, anon_sym_LBRACE, - STATE(2167), 1, + STATE(1358), 1, sym_type_initializer_body, STATE(4173), 2, sym_line_comment, sym_block_comment, - [141192] = 5, + [141293] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6803), 1, - anon_sym_LBRACE, - STATE(3671), 1, - sym__content_block, + ACTIONS(7257), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(4174), 2, sym_line_comment, sym_block_comment, - [141209] = 5, + [141308] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5056), 1, + ACTIONS(6346), 1, anon_sym_LBRACE, - STATE(2201), 1, - sym_block, + STATE(1566), 1, + sym__struct_body, STATE(4175), 2, sym_line_comment, sym_block_comment, - [141226] = 5, + [141325] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5032), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(1928), 1, - sym_block, + STATE(1565), 1, + sym__enum_body, STATE(4176), 2, sym_line_comment, sym_block_comment, - [141243] = 5, + [141342] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7245), 1, - anon_sym_COMMA, - ACTIONS(7247), 1, - anon_sym_RPAREN, + ACTIONS(6344), 1, + anon_sym_LBRACE, + STATE(1564), 1, + sym__interface_body, STATE(4177), 2, sym_line_comment, sym_block_comment, - [141260] = 5, + [141359] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5028), 1, + ACTIONS(5064), 1, anon_sym_LBRACE, - STATE(1127), 1, + STATE(2156), 1, sym_block, STATE(4178), 2, sym_line_comment, sym_block_comment, - [141277] = 5, + [141376] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6384), 1, - sym_identifier, - STATE(3872), 1, - sym_generic_parameter, + ACTIONS(5052), 1, + anon_sym_LBRACE, + STATE(2512), 1, + sym_block, STATE(4179), 2, sym_line_comment, sym_block_comment, - [141294] = 5, + [141393] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7249), 1, - anon_sym_LPAREN, - STATE(1336), 1, - sym_special_argument_list, + ACTIONS(5036), 1, + anon_sym_LBRACE, + STATE(2098), 1, + sym_block, STATE(4180), 2, sym_line_comment, sym_block_comment, - [141311] = 5, + [141410] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7175), 1, - anon_sym_LBRACE, - STATE(328), 1, - sym_type_initializer_body, + ACTIONS(7259), 1, + anon_sym_LPAREN, + STATE(2348), 1, + sym_special_argument_list, STATE(4181), 2, sym_line_comment, sym_block_comment, - [141328] = 5, + [141427] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7251), 1, - anon_sym_LPAREN, - STATE(2152), 1, - sym_special_argument_list, + ACTIONS(6535), 1, + sym_identifier, + STATE(2371), 1, + sym_reference_expression, STATE(4182), 2, sym_line_comment, sym_block_comment, - [141345] = 5, + [141444] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7253), 1, - anon_sym_LBRACE, - STATE(2313), 1, - sym__struct_body, + ACTIONS(7261), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4183), 2, sym_line_comment, sym_block_comment, - [141362] = 5, + [141459] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6304), 1, - anon_sym_LBRACE, - STATE(1539), 1, - sym__interface_body, + ACTIONS(6716), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4184), 2, sym_line_comment, sym_block_comment, - [141379] = 5, + [141474] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5028), 1, + ACTIONS(6650), 1, anon_sym_LBRACE, - STATE(1144), 1, - sym_block, + STATE(2526), 1, + sym__content_block, STATE(4185), 2, sym_line_comment, sym_block_comment, - [141396] = 5, + [141491] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6422), 1, - anon_sym_LBRACE, - STATE(1538), 1, - sym__enum_body, + ACTIONS(6709), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4186), 2, sym_line_comment, sym_block_comment, - [141413] = 5, + [141506] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5034), 1, + ACTIONS(2207), 1, anon_sym_LBRACE, - STATE(1054), 1, - sym_block, + STATE(384), 1, + sym_type_initializer_body, STATE(4187), 2, sym_line_comment, sym_block_comment, - [141430] = 5, + [141523] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6454), 1, - sym_identifier, - STATE(1325), 1, - sym_reference_expression, + ACTIONS(7263), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4188), 2, sym_line_comment, sym_block_comment, - [141447] = 5, + [141538] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7255), 1, - anon_sym_LPAREN, - STATE(1061), 1, - sym_argument_list, + ACTIONS(7265), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4189), 2, sym_line_comment, sym_block_comment, - [141464] = 5, + [141553] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7257), 1, - sym_identifier, - STATE(1672), 1, - sym_type_reference_expression, + ACTIONS(2425), 1, + anon_sym_COMMA, + ACTIONS(7267), 1, + anon_sym_RPAREN, STATE(4190), 2, sym_line_comment, sym_block_comment, - [141481] = 4, + [141570] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7259), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(6513), 1, + sym_identifier, + STATE(455), 1, + sym_reference_expression, STATE(4191), 2, sym_line_comment, sym_block_comment, - [141496] = 4, + [141587] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7261), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(5052), 1, + anon_sym_LBRACE, + STATE(2527), 1, + sym_block, STATE(4192), 2, sym_line_comment, sym_block_comment, - [141511] = 4, + [141604] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6839), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(6416), 1, + sym_identifier, + STATE(1824), 1, + sym_reference_expression, STATE(4193), 2, sym_line_comment, sym_block_comment, - [141526] = 5, + [141621] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6545), 1, + ACTIONS(7049), 1, sym_identifier, - STATE(2158), 1, + STATE(3981), 1, sym_reference_expression, STATE(4194), 2, sym_line_comment, sym_block_comment, - [141543] = 5, + [141638] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2748), 1, + ACTIONS(5052), 1, anon_sym_LBRACE, - STATE(328), 1, - sym_type_initializer_body, + STATE(2318), 1, + sym_block, STATE(4195), 2, sym_line_comment, sym_block_comment, - [141560] = 4, + [141655] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6670), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(2207), 1, + anon_sym_LBRACE, + STATE(2551), 1, + sym_type_initializer_body, STATE(4196), 2, sym_line_comment, sym_block_comment, - [141575] = 5, + [141672] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACE, - STATE(1537), 1, - sym__struct_body, + ACTIONS(7269), 1, + anon_sym_LPAREN, + STATE(1053), 1, + sym_argument_list, STATE(4197), 2, sym_line_comment, sym_block_comment, - [141592] = 5, + [141689] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5028), 1, + ACTIONS(7271), 1, anon_sym_LBRACE, - STATE(1165), 1, - sym_block, + STATE(2551), 1, + sym_type_initializer_body, STATE(4198), 2, sym_line_comment, sym_block_comment, - [141609] = 5, + [141706] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7263), 1, - anon_sym_LPAREN, - STATE(1170), 1, - sym_argument_list, + ACTIONS(7273), 1, + anon_sym_COMMA, + ACTIONS(7275), 1, + anon_sym_RPAREN, STATE(4199), 2, sym_line_comment, sym_block_comment, - [141626] = 5, + [141723] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - STATE(230), 1, - sym_block, + ACTIONS(7277), 1, + anon_sym_LPAREN, + STATE(2063), 1, + sym_special_argument_list, STATE(4200), 2, sym_line_comment, sym_block_comment, - [141643] = 5, + [141740] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7265), 1, - sym_identifier, - STATE(2097), 1, - sym_type_reference_expression, + ACTIONS(4715), 1, + anon_sym_LBRACE, + STATE(1743), 1, + sym_block, STATE(4201), 2, sym_line_comment, sym_block_comment, - [141660] = 5, + [141757] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, + ACTIONS(5066), 1, anon_sym_LBRACE, - STATE(2400), 1, + STATE(1335), 1, sym_block, STATE(4202), 2, sym_line_comment, sym_block_comment, - [141677] = 5, + [141774] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6304), 1, - anon_sym_LBRACE, - STATE(1492), 1, - sym__interface_body, + ACTIONS(6686), 2, + anon_sym_COMMA, + anon_sym_RBRACK, STATE(4203), 2, sym_line_comment, sym_block_comment, - [141694] = 5, + [141789] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5028), 1, + ACTIONS(7279), 1, anon_sym_LBRACE, - STATE(1183), 1, - sym_block, + STATE(1078), 1, + sym__struct_body, STATE(4204), 2, sym_line_comment, sym_block_comment, - [141711] = 5, + [141806] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6422), 1, - anon_sym_LBRACE, - STATE(1490), 1, - sym__enum_body, + ACTIONS(7281), 1, + anon_sym_LPAREN, + STATE(1827), 1, + sym_special_argument_list, STATE(4205), 2, sym_line_comment, sym_block_comment, - [141728] = 5, + [141823] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(2215), 1, anon_sym_LBRACE, - STATE(1819), 1, - sym_block, + STATE(2551), 1, + sym_type_initializer_body, STATE(4206), 2, sym_line_comment, sym_block_comment, - [141745] = 4, + [141840] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6654), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, + ACTIONS(5064), 1, + anon_sym_LBRACE, + STATE(2175), 1, + sym_block, STATE(4207), 2, sym_line_comment, sym_block_comment, - [141760] = 5, + [141857] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5028), 1, + ACTIONS(5052), 1, anon_sym_LBRACE, - STATE(1184), 1, + STATE(2545), 1, sym_block, STATE(4208), 2, sym_line_comment, sym_block_comment, - [141777] = 5, + [141874] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, + ACTIONS(5064), 1, anon_sym_LBRACE, - STATE(1750), 1, + STATE(2176), 1, sym_block, STATE(4209), 2, sym_line_comment, sym_block_comment, - [141794] = 5, + [141891] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7267), 1, - anon_sym_LPAREN, - STATE(1680), 1, - sym_argument_list, + ACTIONS(6573), 2, + anon_sym_RBRACE, + sym_identifier, STATE(4210), 2, sym_line_comment, sym_block_comment, - [141811] = 5, + [141906] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7269), 1, - sym_identifier, - STATE(1415), 1, - sym_type_reference_expression, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(1834), 1, + sym_block, STATE(4211), 2, sym_line_comment, sym_block_comment, - [141828] = 4, + [141923] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5354), 2, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(7283), 1, + sym_identifier, + STATE(2085), 1, + sym_type_reference_expression, STATE(4212), 2, sym_line_comment, sym_block_comment, - [141843] = 5, + [141940] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - STATE(427), 1, - sym_block, + ACTIONS(7285), 1, + anon_sym_LPAREN, + STATE(2183), 1, + sym_argument_list, STATE(4213), 2, sym_line_comment, sym_block_comment, - [141860] = 5, + [141957] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7271), 1, - anon_sym_COMMA, - ACTIONS(7273), 1, - anon_sym_RPAREN, + ACTIONS(5056), 1, + anon_sym_LBRACE, + STATE(434), 1, + sym_block, STATE(4214), 2, sym_line_comment, sym_block_comment, - [141877] = 4, + [141974] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7275), 2, + ACTIONS(7287), 1, anon_sym_LBRACE, - anon_sym_COMMA, + STATE(1970), 1, + sym_type_initializer_body, STATE(4215), 2, sym_line_comment, sym_block_comment, - [141892] = 5, + [141991] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6851), 1, - anon_sym_LBRACE, - STATE(310), 1, - sym__content_block, + ACTIONS(3920), 2, + anon_sym_SEMI, + anon_sym_RBRACK, STATE(4216), 2, sym_line_comment, sym_block_comment, - [141909] = 5, + [142006] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6885), 1, + ACTIONS(7271), 1, anon_sym_LBRACE, - STATE(1921), 1, - sym__content_block, + STATE(2551), 1, + sym_type_initializer_body, STATE(4217), 2, sym_line_comment, sym_block_comment, - [141926] = 5, + [142023] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6306), 1, - anon_sym_LBRACE, - STATE(1488), 1, - sym__struct_body, + ACTIONS(7289), 1, + anon_sym_COMMA, + ACTIONS(7291), 1, + anon_sym_RPAREN, STATE(4218), 2, sym_line_comment, sym_block_comment, - [141943] = 4, + [142040] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5460), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, + ACTIONS(7293), 1, + anon_sym_LBRACE, + STATE(1845), 1, + sym_type_initializer_body, STATE(4219), 2, sym_line_comment, sym_block_comment, - [141958] = 5, + [142057] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5034), 1, + ACTIONS(5056), 1, anon_sym_LBRACE, - STATE(995), 1, + STATE(350), 1, sym_block, STATE(4220), 2, sym_line_comment, sym_block_comment, - [141975] = 5, + [142074] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, + ACTIONS(4715), 1, anon_sym_LBRACE, - STATE(1743), 1, + STATE(1705), 1, sym_block, STATE(4221), 2, sym_line_comment, sym_block_comment, - [141992] = 5, + [142091] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7277), 1, - anon_sym_COMMA, - ACTIONS(7279), 1, - anon_sym_RPAREN, + ACTIONS(4715), 1, + anon_sym_LBRACE, + STATE(1710), 1, + sym_block, STATE(4222), 2, sym_line_comment, sym_block_comment, - [142009] = 5, + [142108] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, + ACTIONS(5064), 1, anon_sym_LBRACE, - STATE(1698), 1, + STATE(2188), 1, sym_block, STATE(4223), 2, sym_line_comment, sym_block_comment, - [142026] = 4, + [142125] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4824), 2, + ACTIONS(6657), 2, anon_sym_COMMA, - anon_sym_in, + anon_sym_COLON_EQ, STATE(4224), 2, sym_line_comment, sym_block_comment, - [142041] = 5, + [142140] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5032), 1, - anon_sym_LBRACE, - STATE(1920), 1, - sym_block, + ACTIONS(7295), 1, + sym_identifier, + STATE(3722), 1, + sym_label_reference, STATE(4225), 2, sym_line_comment, sym_block_comment, - [142058] = 5, + [142157] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7281), 1, - anon_sym_COMMA, - ACTIONS(7283), 1, - anon_sym_RPAREN, + ACTIONS(7297), 1, + sym_identifier, + STATE(1412), 1, + sym_type_reference_expression, STATE(4226), 2, sym_line_comment, sym_block_comment, - [142075] = 5, + [142174] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, - anon_sym_LBRACE, - STATE(2373), 1, - sym_block, + ACTIONS(7299), 1, + anon_sym_LPAREN, + STATE(1741), 1, + sym_argument_list, STATE(4227), 2, sym_line_comment, sym_block_comment, - [142092] = 5, + [142191] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, + ACTIONS(4715), 1, anon_sym_LBRACE, - STATE(2372), 1, + STATE(1677), 1, sym_block, STATE(4228), 2, sym_line_comment, sym_block_comment, - [142109] = 5, + [142208] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4663), 1, + ACTIONS(5052), 1, anon_sym_LBRACE, - STATE(1498), 1, + STATE(2569), 1, sym_block, STATE(4229), 2, sym_line_comment, sym_block_comment, - [142126] = 5, + [142225] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5032), 1, + ACTIONS(6802), 1, anon_sym_LBRACE, - STATE(1863), 1, - sym_block, + STATE(3687), 1, + sym__content_block, STATE(4230), 2, sym_line_comment, sym_block_comment, - [142143] = 5, + [142242] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4844), 1, - anon_sym_COLON, - ACTIONS(7285), 1, - anon_sym_mut, + ACTIONS(4715), 1, + anon_sym_LBRACE, + STATE(3692), 1, + sym_block, STATE(4231), 2, sym_line_comment, sym_block_comment, - [142160] = 5, + [142259] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5028), 1, + ACTIONS(4715), 1, anon_sym_LBRACE, - STATE(1228), 1, + STATE(3696), 1, sym_block, STATE(4232), 2, sym_line_comment, sym_block_comment, - [142177] = 5, + [142276] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4663), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(1495), 1, + STATE(1850), 1, sym_block, STATE(4233), 2, sym_line_comment, sym_block_comment, - [142194] = 5, + [142293] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7287), 1, + ACTIONS(5062), 1, anon_sym_LBRACE, - STATE(1493), 1, - sym__content_block, + STATE(1973), 1, + sym_block, STATE(4234), 2, sym_line_comment, sym_block_comment, - [142211] = 5, + [142310] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, + ACTIONS(2215), 1, anon_sym_LBRACE, - STATE(334), 1, - sym_block, + STATE(1970), 1, + sym_type_initializer_body, STATE(4235), 2, sym_line_comment, sym_block_comment, - [142228] = 5, + [142327] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, + ACTIONS(6802), 1, anon_sym_LBRACE, - STATE(344), 1, - sym_block, + STATE(1688), 1, + sym__content_block, STATE(4236), 2, sym_line_comment, sym_block_comment, - [142245] = 5, + [142344] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6641), 1, - anon_sym_RBRACE, - ACTIONS(6643), 1, - aux_sym_format_specifier_token1, + ACTIONS(4715), 1, + anon_sym_LBRACE, + STATE(1690), 1, + sym_block, STATE(4237), 2, sym_line_comment, sym_block_comment, - [142262] = 5, + [142361] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6863), 1, - sym_identifier, - STATE(3858), 1, - sym_reference_expression, + ACTIONS(4715), 1, + anon_sym_LBRACE, + STATE(1623), 1, + sym_block, STATE(4238), 2, sym_line_comment, sym_block_comment, - [142279] = 4, + [142378] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7289), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(2207), 1, + anon_sym_LBRACE, + STATE(1720), 1, + sym_type_initializer_body, STATE(4239), 2, sym_line_comment, sym_block_comment, - [142294] = 4, + [142395] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3913), 2, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(7301), 1, + anon_sym_LBRACE, + STATE(1301), 1, + sym__struct_body, STATE(4240), 2, sym_line_comment, sym_block_comment, - [142309] = 5, + [142412] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6436), 1, - sym_identifier, - STATE(4086), 1, - sym_reference_expression, + ACTIONS(7303), 1, + anon_sym_LBRACE, + STATE(1720), 1, + sym_type_initializer_body, STATE(4241), 2, sym_line_comment, sym_block_comment, - [142326] = 4, + [142429] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7291), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6346), 1, + anon_sym_LBRACE, + STATE(1443), 1, + sym__struct_body, STATE(4242), 2, sym_line_comment, sym_block_comment, - [142341] = 5, + [142446] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7293), 1, + ACTIONS(6743), 1, anon_sym_LBRACE, - STATE(1969), 1, - sym_type_initializer_body, + STATE(2205), 1, + sym__content_block, STATE(4243), 2, sym_line_comment, sym_block_comment, - [142358] = 5, + [142463] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7295), 1, + ACTIONS(2215), 1, anon_sym_LBRACE, - STATE(1307), 1, - sym__struct_body, + STATE(1720), 1, + sym_type_initializer_body, STATE(4244), 2, sym_line_comment, sym_block_comment, - [142375] = 5, + [142480] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7297), 1, - anon_sym_COMMA, - ACTIONS(7299), 1, - anon_sym_RPAREN, + ACTIONS(4715), 1, + anon_sym_LBRACE, + STATE(1749), 1, + sym_block, STATE(4245), 2, sym_line_comment, sym_block_comment, - [142392] = 5, + [142497] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, - sym_identifier, - STATE(2042), 1, - sym_reference_expression, + ACTIONS(2215), 1, + anon_sym_LBRACE, + STATE(1845), 1, + sym_type_initializer_body, STATE(4246), 2, sym_line_comment, sym_block_comment, - [142409] = 5, + [142514] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, + ACTIONS(7287), 1, anon_sym_LBRACE, - STATE(1685), 1, - sym_block, + STATE(1970), 1, + sym_type_initializer_body, STATE(4247), 2, sym_line_comment, sym_block_comment, - [142426] = 5, + [142531] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7301), 1, - anon_sym_COMMA, ACTIONS(7303), 1, - anon_sym_RPAREN, + anon_sym_LBRACE, + STATE(1720), 1, + sym_type_initializer_body, STATE(4248), 2, sym_line_comment, sym_block_comment, - [142443] = 5, + [142548] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2722), 1, + ACTIONS(5056), 1, anon_sym_LBRACE, - STATE(1969), 1, - sym_type_initializer_body, + STATE(230), 1, + sym_block, STATE(4249), 2, sym_line_comment, sym_block_comment, - [142460] = 5, + [142565] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7305), 1, - sym_identifier, - STATE(3327), 1, - sym_type_reference_expression, + anon_sym_LBRACE, + STATE(1162), 1, + sym__struct_body, STATE(4250), 2, sym_line_comment, sym_block_comment, - [142477] = 5, + [142582] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_LPAREN, - STATE(2367), 1, - sym_argument_list, + ACTIONS(6566), 1, + sym_identifier, + STATE(1686), 1, + sym_reference_expression, STATE(4251), 2, sym_line_comment, sym_block_comment, - [142494] = 5, + [142599] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5032), 1, + ACTIONS(4715), 1, anon_sym_LBRACE, - STATE(1936), 1, + STATE(3724), 1, sym_block, STATE(4252), 2, sym_line_comment, sym_block_comment, - [142511] = 4, + [142616] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6363), 2, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(7307), 1, + anon_sym_LPAREN, + STATE(2572), 1, + sym_special_argument_list, STATE(4253), 2, sym_line_comment, sym_block_comment, - [142526] = 4, + [142633] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6739), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7049), 1, + sym_identifier, + STATE(4304), 1, + sym_reference_expression, STATE(4254), 2, sym_line_comment, sym_block_comment, - [142541] = 5, + [142650] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7307), 1, - anon_sym_LPAREN, - STATE(2055), 1, - sym_special_argument_list, + ACTIONS(7293), 1, + anon_sym_LBRACE, + STATE(1845), 1, + sym_type_initializer_body, STATE(4255), 2, sym_line_comment, sym_block_comment, - [142558] = 5, + [142667] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, + ACTIONS(5064), 1, anon_sym_LBRACE, - STATE(2355), 1, + STATE(2251), 1, sym_block, STATE(4256), 2, sym_line_comment, sym_block_comment, - [142575] = 5, - ACTIONS(497), 1, + [142684] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7309), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7311), 1, - sym___double_quote, + ACTIONS(2207), 1, + anon_sym_LBRACE, + STATE(1970), 1, + sym_type_initializer_body, STATE(4257), 2, sym_line_comment, sym_block_comment, - [142592] = 5, + [142701] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, + ACTIONS(5062), 1, anon_sym_LBRACE, - STATE(2858), 1, + STATE(1792), 1, sym_block, STATE(4258), 2, sym_line_comment, sym_block_comment, - [142609] = 5, + [142718] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7221), 1, + ACTIONS(5064), 1, anon_sym_LBRACE, - STATE(1722), 1, - sym_type_initializer_body, + STATE(2126), 1, + sym_block, STATE(4259), 2, sym_line_comment, sym_block_comment, - [142626] = 5, + [142735] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7313), 1, - sym_identifier, - STATE(1382), 1, - sym_type_reference_expression, + ACTIONS(4715), 1, + anon_sym_LBRACE, + STATE(1697), 1, + sym_block, STATE(4260), 2, sym_line_comment, sym_block_comment, - [142643] = 5, + [142752] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5052), 1, - anon_sym_LBRACE, - STATE(483), 1, - sym_block, + ACTIONS(7309), 1, + anon_sym_LPAREN, + STATE(1694), 1, + sym_special_argument_list, STATE(4261), 2, sym_line_comment, sym_block_comment, - [142660] = 5, + [142769] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(6830), 1, anon_sym_LBRACE, - STATE(1887), 1, - sym_block, + STATE(306), 1, + sym__content_block, STATE(4262), 2, sym_line_comment, sym_block_comment, - [142677] = 5, + [142786] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(7311), 1, anon_sym_LBRACE, - STATE(1885), 1, - sym_block, + STATE(1508), 1, + sym__content_block, STATE(4263), 2, sym_line_comment, sym_block_comment, - [142694] = 4, + [142803] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6665), 2, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(2207), 1, + anon_sym_LBRACE, + STATE(2226), 1, + sym_type_initializer_body, STATE(4264), 2, sym_line_comment, sym_block_comment, - [142709] = 5, - ACTIONS(497), 1, + [142820] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7315), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7317), 1, - sym___single_quote, + ACTIONS(5062), 1, + anon_sym_LBRACE, + STATE(2064), 1, + sym_block, STATE(4265), 2, sym_line_comment, sym_block_comment, - [142726] = 5, + [142837] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(1969), 1, - sym_type_initializer_body, + ACTIONS(7313), 1, + anon_sym_LPAREN, + STATE(310), 1, + sym_special_argument_list, STATE(4266), 2, sym_line_comment, sym_block_comment, - [142743] = 5, + [142854] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4719), 1, - anon_sym_LPAREN, - STATE(1931), 1, - sym_argument_list, + ACTIONS(7107), 1, + anon_sym_LBRACE, + STATE(2226), 1, + sym_type_initializer_body, STATE(4267), 2, sym_line_comment, sym_block_comment, - [142760] = 5, + [142871] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7319), 1, - sym_identifier, - STATE(1178), 1, - sym_type_reference_expression, + ACTIONS(2207), 1, + anon_sym_LBRACE, + STATE(1845), 1, + sym_type_initializer_body, STATE(4268), 2, sym_line_comment, sym_block_comment, - [142777] = 5, + [142888] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7321), 1, - anon_sym_LPAREN, - STATE(1880), 1, - sym_argument_list, + ACTIONS(7315), 1, + anon_sym_LBRACE, + STATE(1989), 1, + sym__struct_body, STATE(4269), 2, sym_line_comment, sym_block_comment, - [142794] = 5, + [142905] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, + ACTIONS(6840), 1, anon_sym_LBRACE, - STATE(2091), 1, - sym_block, + STATE(2052), 1, + sym__content_block, STATE(4270), 2, sym_line_comment, sym_block_comment, - [142811] = 5, + [142922] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(1878), 1, + STATE(1703), 1, sym_block, STATE(4271), 2, sym_line_comment, sym_block_comment, - [142828] = 5, + [142939] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2722), 1, + ACTIONS(2215), 1, anon_sym_LBRACE, - STATE(2031), 1, + STATE(2226), 1, sym_type_initializer_body, STATE(4272), 2, sym_line_comment, sym_block_comment, - [142845] = 5, + [142956] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7323), 1, + ACTIONS(5064), 1, anon_sym_LBRACE, - STATE(2483), 1, - sym__struct_body, + STATE(2215), 1, + sym_block, STATE(4273), 2, sym_line_comment, sym_block_comment, - [142862] = 5, + [142973] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7117), 1, + ACTIONS(4184), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(2031), 1, - sym_type_initializer_body, STATE(4274), 2, sym_line_comment, sym_block_comment, - [142879] = 5, + [142988] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7325), 1, - anon_sym_LPAREN, - STATE(486), 1, - sym_argument_list, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(1852), 1, + sym_block, STATE(4275), 2, sym_line_comment, sym_block_comment, - [142896] = 5, + [143005] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6728), 1, + ACTIONS(4188), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1866), 1, - sym__content_block, STATE(4276), 2, sym_line_comment, sym_block_comment, - [142913] = 5, + [143020] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6835), 1, + ACTIONS(6346), 1, anon_sym_LBRACE, - STATE(2319), 1, - sym__content_block, + STATE(1539), 1, + sym__struct_body, STATE(4277), 2, sym_line_comment, sym_block_comment, - [142930] = 5, + [143037] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, + ACTIONS(6414), 1, anon_sym_LBRACE, - STATE(2317), 1, - sym_block, + STATE(1538), 1, + sym__enum_body, STATE(4278), 2, sym_line_comment, sym_block_comment, - [142947] = 5, + [143054] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(5062), 1, anon_sym_LBRACE, - STATE(1865), 1, + STATE(2039), 1, sym_block, STATE(4279), 2, sym_line_comment, sym_block_comment, - [142964] = 5, + [143071] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7231), 1, + ACTIONS(5056), 1, anon_sym_LBRACE, - STATE(2138), 1, + STATE(480), 1, sym_block, STATE(4280), 2, sym_line_comment, sym_block_comment, - [142981] = 5, + [143088] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2748), 1, + ACTIONS(6344), 1, anon_sym_LBRACE, - STATE(2031), 1, - sym_type_initializer_body, + STATE(1537), 1, + sym__interface_body, STATE(4281), 2, sym_line_comment, sym_block_comment, - [142998] = 5, + [143105] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(6677), 1, anon_sym_LBRACE, - STATE(1724), 1, - sym_block, + STATE(1853), 1, + sym__content_block, STATE(4282), 2, sym_line_comment, sym_block_comment, - [143015] = 5, + [143122] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, - anon_sym_LBRACE, - STATE(2761), 1, - sym_block, + ACTIONS(7317), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(4283), 2, sym_line_comment, sym_block_comment, - [143032] = 5, + [143137] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, - anon_sym_LBRACE, - STATE(2278), 1, - sym_block, + ACTIONS(4681), 1, + anon_sym_LPAREN, + STATE(2021), 1, + sym_argument_list, STATE(4284), 2, sym_line_comment, sym_block_comment, - [143049] = 5, + [143154] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2748), 1, - anon_sym_LBRACE, - STATE(1852), 1, - sym_type_initializer_body, + ACTIONS(6477), 1, + sym_identifier, + STATE(3794), 1, + sym_generic_parameter, STATE(4285), 2, sym_line_comment, sym_block_comment, - [143066] = 5, + [143171] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7327), 1, + ACTIONS(4910), 1, sym_identifier, - STATE(2294), 1, - sym_type_reference_expression, + ACTIONS(7319), 1, + anon_sym_volatile, STATE(4286), 2, sym_line_comment, sym_block_comment, - [143083] = 5, + [143188] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5040), 1, - anon_sym_LBRACE, - STATE(2872), 1, - sym_block, + ACTIONS(7321), 1, + anon_sym_LPAREN, + STATE(483), 1, + sym_argument_list, STATE(4287), 2, sym_line_comment, sym_block_comment, - [143100] = 4, + [143205] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6924), 2, - anon_sym_COMMA, - anon_sym_in, + ACTIONS(7323), 1, + sym_identifier, + STATE(1352), 1, + sym_type_reference_expression, STATE(4288), 2, sym_line_comment, sym_block_comment, - [143115] = 5, + [143222] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6999), 1, + ACTIONS(1709), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(2843), 1, - sym__content_block, STATE(4289), 2, sym_line_comment, sym_block_comment, - [143132] = 5, + [143237] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7329), 1, - anon_sym_LBRACE, - STATE(1852), 1, - sym_type_initializer_body, + ACTIONS(6495), 1, + sym_identifier, + STATE(2578), 1, + sym_reference_expression, STATE(4290), 2, sym_line_comment, sym_block_comment, - [143149] = 5, + [143254] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5034), 1, - anon_sym_LBRACE, - STATE(1031), 1, - sym_block, + ACTIONS(7325), 1, + anon_sym_LPAREN, + STATE(2254), 1, + sym_special_argument_list, STATE(4291), 2, sym_line_comment, sym_block_comment, - [143166] = 5, + [143271] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7331), 1, + ACTIONS(5062), 1, anon_sym_LBRACE, - STATE(403), 1, - sym__struct_body, + STATE(2009), 1, + sym_block, STATE(4292), 2, sym_line_comment, sym_block_comment, - [143183] = 5, + [143288] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7333), 1, + ACTIONS(5422), 2, anon_sym_LBRACE, - STATE(1164), 1, - sym__struct_body, + anon_sym_COMMA, STATE(4293), 2, sym_line_comment, sym_block_comment, - [143200] = 5, + [143303] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2722), 1, + ACTIONS(5062), 1, anon_sym_LBRACE, - STATE(1852), 1, - sym_type_initializer_body, + STATE(2008), 1, + sym_block, STATE(4294), 2, sym_line_comment, sym_block_comment, - [143217] = 5, + [143320] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, + ACTIONS(7327), 2, anon_sym_LBRACE, - STATE(1861), 1, - sym_block, + anon_sym_COMMA, STATE(4295), 2, sym_line_comment, sym_block_comment, - [143234] = 5, + [143335] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(1976), 1, + STATE(1861), 1, sym_block, STATE(4296), 2, sym_line_comment, sym_block_comment, - [143251] = 5, + [143352] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7335), 1, - anon_sym_LBRACE, - STATE(2837), 1, - sym_type_initializer_body, + ACTIONS(7329), 1, + anon_sym_COMMA, + ACTIONS(7331), 1, + anon_sym_RPAREN, STATE(4297), 2, sym_line_comment, sym_block_comment, - [143268] = 5, + [143369] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7337), 1, - sym_identifier, - STATE(2519), 1, - sym_type_reference_expression, + ACTIONS(5056), 1, + anon_sym_LBRACE, + STATE(425), 1, + sym_block, STATE(4298), 2, sym_line_comment, sym_block_comment, - [143285] = 5, + [143386] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7231), 1, - anon_sym_LBRACE, - STATE(2139), 1, - sym_block, + ACTIONS(6555), 1, + sym_identifier, + STATE(2214), 1, + sym_reference_expression, STATE(4299), 2, sym_line_comment, sym_block_comment, - [143302] = 5, + [143403] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7329), 1, - anon_sym_LBRACE, - STATE(1852), 1, - sym_type_initializer_body, + ACTIONS(5464), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, STATE(4300), 2, sym_line_comment, sym_block_comment, - [143319] = 5, + [143418] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5062), 1, - anon_sym_LBRACE, - STATE(1822), 1, - sym_block, + ACTIONS(6868), 1, + anon_sym_RBRACE, + ACTIONS(6870), 1, + aux_sym_format_specifier_token1, STATE(4301), 2, sym_line_comment, sym_block_comment, - [143336] = 5, + [143435] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5042), 1, - anon_sym_LBRACE, - STATE(1342), 1, - sym_block, + ACTIONS(7333), 1, + anon_sym_LPAREN, + STATE(1863), 1, + sym_argument_list, STATE(4302), 2, sym_line_comment, sym_block_comment, - [143353] = 5, + [143452] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7339), 1, - anon_sym_LPAREN, - STATE(1817), 1, - sym_special_argument_list, + ACTIONS(7335), 1, + sym_identifier, + STATE(1155), 1, + sym_type_reference_expression, STATE(4303), 2, sym_line_comment, sym_block_comment, - [143370] = 5, + [143469] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, - anon_sym_LBRACE, - STATE(2084), 1, - sym_block, + ACTIONS(6880), 2, + anon_sym_COMMA, + anon_sym_PIPE, STATE(4304), 2, sym_line_comment, sym_block_comment, - [143387] = 5, + [143484] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, + ACTIONS(5062), 1, anon_sym_LBRACE, - STATE(1912), 1, + STATE(1915), 1, sym_block, STATE(4305), 2, sym_line_comment, sym_block_comment, - [143404] = 5, + [143501] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7341), 1, - anon_sym_RBRACE, - ACTIONS(7343), 1, - aux_sym_format_specifier_token1, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(1867), 1, + sym_block, STATE(4306), 2, sym_line_comment, sym_block_comment, - [143421] = 5, + [143518] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7233), 1, + ACTIONS(5072), 1, anon_sym_LBRACE, - STATE(1365), 1, - sym_type_initializer_body, + STATE(1869), 1, + sym_block, STATE(4307), 2, sym_line_comment, sym_block_comment, - [143438] = 5, + [143535] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6436), 1, - sym_identifier, - STATE(2376), 1, - sym_reference_expression, + ACTIONS(7337), 1, + anon_sym_COMMA, + ACTIONS(7339), 1, + anon_sym_RPAREN, STATE(4308), 2, sym_line_comment, sym_block_comment, - [143455] = 5, + [143552] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7345), 1, - anon_sym_COMMA, - ACTIONS(7347), 1, - anon_sym_RPAREN, + ACTIONS(7341), 1, + anon_sym_RBRACE, + ACTIONS(7343), 1, + aux_sym_format_specifier_token1, STATE(4309), 2, sym_line_comment, sym_block_comment, - [143472] = 5, + [143569] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7349), 1, - anon_sym_LPAREN, - STATE(2083), 1, - sym_special_argument_list, + ACTIONS(6485), 1, + sym_identifier, + STATE(2090), 1, + sym_reference_expression, STATE(4310), 2, sym_line_comment, sym_block_comment, - [143489] = 5, + [143586] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7351), 1, + ACTIONS(7345), 1, anon_sym_RBRACE, - ACTIONS(7353), 1, + ACTIONS(7347), 1, aux_sym_format_specifier_token1, STATE(4311), 2, sym_line_comment, sym_block_comment, - [143506] = 5, + [143603] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6390), 1, - sym_identifier, - STATE(1803), 1, - sym_reference_expression, + ACTIONS(5072), 1, + anon_sym_LBRACE, + STATE(1893), 1, + sym_block, STATE(4312), 2, sym_line_comment, sym_block_comment, - [143523] = 5, + [143620] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6382), 1, + ACTIONS(7349), 1, sym_identifier, - STATE(3405), 1, - sym_import_name, + STATE(2346), 1, + sym_type_reference_expression, STATE(4313), 2, sym_line_comment, sym_block_comment, - [143540] = 5, + [143637] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7355), 1, - anon_sym_LPAREN, - STATE(2350), 1, - sym_special_argument_list, + ACTIONS(6477), 1, + sym_identifier, + STATE(3668), 1, + sym_generic_parameter, STATE(4314), 2, sym_line_comment, sym_block_comment, - [143557] = 5, + [143654] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5068), 1, + ACTIONS(5404), 1, anon_sym_LBRACE, - STATE(2331), 1, - sym_block, STATE(4315), 2, sym_line_comment, sym_block_comment, - [143574] = 5, + [143668] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6394), 1, - sym_identifier, - STATE(1992), 1, - sym_reference_expression, + ACTIONS(7351), 1, + anon_sym_DOT, STATE(4316), 2, sym_line_comment, sym_block_comment, - [143591] = 5, + [143682] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5058), 1, - anon_sym_LBRACE, - STATE(2105), 1, - sym_block, + ACTIONS(7353), 1, + anon_sym_RBRACK, STATE(4317), 2, sym_line_comment, sym_block_comment, - [143608] = 5, + [143696] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6382), 1, - sym_identifier, - STATE(3576), 1, - sym_import_name, + ACTIONS(7355), 1, + anon_sym_RBRACK, STATE(4318), 2, sym_line_comment, sym_block_comment, - [143625] = 5, + [143710] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6597), 1, - sym_identifier, - STATE(3445), 1, - sym_reference_expression, + ACTIONS(1635), 1, + anon_sym_RPAREN, STATE(4319), 2, sym_line_comment, sym_block_comment, - [143642] = 4, + [143724] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -306681,37 +306745,37 @@ static const uint16_t ts_small_parse_table[] = { STATE(4320), 2, sym_line_comment, sym_block_comment, - [143656] = 4, - ACTIONS(3), 1, + [143738] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, ACTIONS(7359), 1, - anon_sym_RBRACK, + aux_sym__content_block_token1, STATE(4321), 2, sym_line_comment, sym_block_comment, - [143670] = 4, + [143752] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1639), 1, - anon_sym_RPAREN, + ACTIONS(909), 1, + anon_sym_RBRACE, STATE(4322), 2, sym_line_comment, sym_block_comment, - [143684] = 4, + [143766] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7361), 1, - anon_sym_RBRACE, + anon_sym_DOT, STATE(4323), 2, sym_line_comment, sym_block_comment, - [143698] = 4, + [143780] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -306721,957 +306785,957 @@ static const uint16_t ts_small_parse_table[] = { STATE(4324), 2, sym_line_comment, sym_block_comment, - [143712] = 4, + [143794] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7365), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, STATE(4325), 2, sym_line_comment, sym_block_comment, - [143726] = 4, + [143808] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(911), 1, - anon_sym_RBRACE, + ACTIONS(5448), 1, + anon_sym_LBRACE, STATE(4326), 2, sym_line_comment, sym_block_comment, - [143740] = 4, + [143822] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1637), 1, - anon_sym_RPAREN, + ACTIONS(7367), 1, + anon_sym_LBRACE, STATE(4327), 2, sym_line_comment, sym_block_comment, - [143754] = 4, - ACTIONS(3), 1, + [143836] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7367), 1, - anon_sym_DOT, + ACTIONS(7369), 1, + aux_sym__content_block_token1, STATE(4328), 2, sym_line_comment, sym_block_comment, - [143768] = 4, + [143850] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7369), 1, - anon_sym_RBRACE, + ACTIONS(1627), 1, + anon_sym_RPAREN, STATE(4329), 2, sym_line_comment, sym_block_comment, - [143782] = 4, + [143864] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7371), 1, + ACTIONS(7345), 1, anon_sym_RBRACE, STATE(4330), 2, sym_line_comment, sym_block_comment, - [143796] = 4, + [143878] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5296), 1, - anon_sym_LBRACE, + ACTIONS(7371), 1, + anon_sym_RBRACE, STATE(4331), 2, sym_line_comment, sym_block_comment, - [143810] = 4, + [143892] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7373), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, STATE(4332), 2, sym_line_comment, sym_block_comment, - [143824] = 4, - ACTIONS(497), 1, + [143906] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7375), 1, - aux_sym__content_block_token1, + sym_int_literal, STATE(4333), 2, sym_line_comment, sym_block_comment, - [143838] = 4, + [143920] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7351), 1, + ACTIONS(7377), 1, anon_sym_RBRACE, STATE(4334), 2, sym_line_comment, sym_block_comment, - [143852] = 4, + [143934] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7377), 1, + ACTIONS(7341), 1, anon_sym_RBRACE, STATE(4335), 2, sym_line_comment, sym_block_comment, - [143866] = 4, + [143948] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7379), 1, - anon_sym_RBRACE, + ACTIONS(6832), 1, + sym_identifier, STATE(4336), 2, sym_line_comment, sym_block_comment, - [143880] = 4, + [143962] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(893), 1, + ACTIONS(903), 1, anon_sym_RBRACE, STATE(4337), 2, sym_line_comment, sym_block_comment, - [143894] = 4, + [143976] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7381), 1, - sym_identifier, + ACTIONS(7379), 1, + anon_sym_RBRACE, STATE(4338), 2, sym_line_comment, sym_block_comment, - [143908] = 4, + [143990] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7383), 1, - sym_identifier, + ACTIONS(7381), 1, + anon_sym_RBRACE, STATE(4339), 2, sym_line_comment, sym_block_comment, - [143922] = 4, + [144004] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7385), 1, - sym_identifier, + ACTIONS(7383), 1, + anon_sym_RBRACE, STATE(4340), 2, sym_line_comment, sym_block_comment, - [143936] = 4, - ACTIONS(497), 1, + [144018] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7387), 1, - aux_sym__content_block_token1, + ACTIONS(7385), 1, + anon_sym_LBRACE, STATE(4341), 2, sym_line_comment, sym_block_comment, - [143950] = 4, + [144032] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7389), 1, - sym_int_literal, + ACTIONS(7267), 1, + anon_sym_RPAREN, STATE(4342), 2, sym_line_comment, sym_block_comment, - [143964] = 4, - ACTIONS(3), 1, + [144046] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(909), 1, - anon_sym_RBRACE, + ACTIONS(7387), 1, + aux_sym_shebang_token1, STATE(4343), 2, sym_line_comment, sym_block_comment, - [143978] = 4, + [144060] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7391), 1, - anon_sym_LBRACE, + ACTIONS(7389), 1, + anon_sym_DOT, STATE(4344), 2, sym_line_comment, sym_block_comment, - [143992] = 4, - ACTIONS(3), 1, + [144074] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7341), 1, - anon_sym_RBRACE, + ACTIONS(7391), 1, + aux_sym__content_block_token1, STATE(4345), 2, sym_line_comment, sym_block_comment, - [144006] = 4, + [144088] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5298), 1, + ACTIONS(7393), 1, anon_sym_LBRACE, STATE(4346), 2, sym_line_comment, sym_block_comment, - [144020] = 4, + [144102] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7393), 1, - anon_sym_RBRACE, + ACTIONS(5424), 1, + anon_sym_LBRACE, STATE(4347), 2, sym_line_comment, sym_block_comment, - [144034] = 4, + [144116] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7395), 1, - sym_identifier, + anon_sym_LBRACE, STATE(4348), 2, sym_line_comment, sym_block_comment, - [144048] = 4, - ACTIONS(3), 1, + [144130] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, ACTIONS(7397), 1, - anon_sym_DOT, + aux_sym__content_block_token1, STATE(4349), 2, sym_line_comment, sym_block_comment, - [144062] = 4, + [144144] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(907), 1, - anon_sym_RBRACE, + ACTIONS(7399), 1, + anon_sym_LBRACE, STATE(4350), 2, sym_line_comment, sym_block_comment, - [144076] = 4, + [144158] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7399), 1, - anon_sym_DOT, + ACTIONS(5402), 1, + anon_sym_LBRACE, STATE(4351), 2, sym_line_comment, sym_block_comment, - [144090] = 4, + [144172] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5336), 1, - anon_sym_LBRACE, + ACTIONS(6868), 1, + anon_sym_RBRACE, STATE(4352), 2, sym_line_comment, sym_block_comment, - [144104] = 4, + [144186] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7401), 1, - anon_sym_LBRACE, + ACTIONS(939), 1, + anon_sym_RBRACE, STATE(4353), 2, sym_line_comment, sym_block_comment, - [144118] = 4, - ACTIONS(497), 1, + [144200] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7403), 1, - aux_sym__content_block_token1, + ACTIONS(7401), 1, + sym_int_literal, STATE(4354), 2, sym_line_comment, sym_block_comment, - [144132] = 4, + [144214] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7405), 1, + ACTIONS(7403), 1, anon_sym_RBRACE, STATE(4355), 2, sym_line_comment, sym_block_comment, - [144146] = 4, + [144228] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7407), 1, - sym_identifier, + ACTIONS(7405), 1, + anon_sym_DOT, STATE(4356), 2, sym_line_comment, sym_block_comment, - [144160] = 4, + [144242] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7409), 1, - anon_sym_RBRACE, + ACTIONS(7407), 1, + sym_identifier, STATE(4357), 2, sym_line_comment, sym_block_comment, - [144174] = 4, + [144256] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7411), 1, + ACTIONS(7409), 1, anon_sym_RBRACE, STATE(4358), 2, sym_line_comment, sym_block_comment, - [144188] = 4, + [144270] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7413), 1, - sym_identifier, + ACTIONS(7411), 1, + anon_sym_RBRACE, STATE(4359), 2, sym_line_comment, sym_block_comment, - [144202] = 4, + [144284] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7415), 1, - sym_identifier, + ACTIONS(7413), 1, + anon_sym_DOT, STATE(4360), 2, sym_line_comment, sym_block_comment, - [144216] = 4, + [144298] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7417), 1, + ACTIONS(7415), 1, anon_sym_RBRACE, STATE(4361), 2, sym_line_comment, sym_block_comment, - [144230] = 4, + [144312] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7419), 1, - sym_identifier, + ACTIONS(7417), 1, + anon_sym_RBRACK, STATE(4362), 2, sym_line_comment, sym_block_comment, - [144244] = 4, + [144326] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7421), 1, - anon_sym_RBRACE, + ACTIONS(7419), 1, + sym_identifier, STATE(4363), 2, sym_line_comment, sym_block_comment, - [144258] = 4, + [144340] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7423), 1, + ACTIONS(7421), 1, anon_sym_RBRACE, STATE(4364), 2, sym_line_comment, sym_block_comment, - [144272] = 4, + [144354] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7425), 1, - anon_sym_RBRACE, + ACTIONS(7423), 1, + anon_sym_DOT, STATE(4365), 2, sym_line_comment, sym_block_comment, - [144286] = 4, + [144368] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7427), 1, - anon_sym_RBRACE, + ACTIONS(4912), 1, + sym_identifier, STATE(4366), 2, sym_line_comment, sym_block_comment, - [144300] = 4, + [144382] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7429), 1, - anon_sym_LBRACE, + ACTIONS(911), 1, + anon_sym_RBRACE, STATE(4367), 2, sym_line_comment, sym_block_comment, - [144314] = 4, + [144396] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7431), 1, - anon_sym_RBRACK, + ACTIONS(5392), 1, + anon_sym_LBRACE, STATE(4368), 2, sym_line_comment, sym_block_comment, - [144328] = 4, + [144410] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7121), 1, - anon_sym_RPAREN, + ACTIONS(7425), 1, + anon_sym_LBRACE, STATE(4369), 2, sym_line_comment, sym_block_comment, - [144342] = 4, - ACTIONS(3), 1, + [144424] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7433), 1, - anon_sym_DOT, + ACTIONS(7427), 1, + aux_sym__content_block_token1, STATE(4370), 2, sym_line_comment, sym_block_comment, - [144356] = 4, + [144438] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7435), 1, + ACTIONS(7429), 1, aux_sym__content_block_token1, STATE(4371), 2, sym_line_comment, sym_block_comment, - [144370] = 4, + [144452] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7437), 1, + ACTIONS(7431), 1, anon_sym_LBRACE, STATE(4372), 2, sym_line_comment, sym_block_comment, - [144384] = 4, + [144466] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5366), 1, + ACTIONS(5420), 1, anon_sym_LBRACE, STATE(4373), 2, sym_line_comment, sym_block_comment, - [144398] = 4, + [144480] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7439), 1, - anon_sym_LBRACE, + ACTIONS(7433), 1, + anon_sym_RBRACE, STATE(4374), 2, sym_line_comment, sym_block_comment, - [144412] = 4, - ACTIONS(497), 1, + [144494] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7441), 1, - aux_sym__content_block_token1, + ACTIONS(7435), 1, + anon_sym_DOT, STATE(4375), 2, sym_line_comment, sym_block_comment, - [144426] = 4, + [144508] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5342), 1, - anon_sym_LBRACE, + ACTIONS(7437), 1, + anon_sym_RBRACK, STATE(4376), 2, sym_line_comment, sym_block_comment, - [144440] = 4, + [144522] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7443), 1, + ACTIONS(7439), 1, anon_sym_RBRACE, STATE(4377), 2, sym_line_comment, sym_block_comment, - [144454] = 4, + [144536] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7445), 1, - anon_sym_DOT, + ACTIONS(4954), 1, + sym_identifier, STATE(4378), 2, sym_line_comment, sym_block_comment, - [144468] = 4, + [144550] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7447), 1, - anon_sym_RBRACE, + ACTIONS(7441), 1, + anon_sym_RBRACK, STATE(4379), 2, sym_line_comment, sym_block_comment, - [144482] = 4, + [144564] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7449), 1, - anon_sym_RBRACK, + ACTIONS(7217), 1, + anon_sym_RPAREN, STATE(4380), 2, sym_line_comment, sym_block_comment, - [144496] = 4, - ACTIONS(3), 1, + [144578] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7451), 1, - anon_sym_RBRACK, + ACTIONS(7443), 1, + aux_sym_hash_statement_token1, STATE(4381), 2, sym_line_comment, sym_block_comment, - [144510] = 4, - ACTIONS(3), 1, + [144592] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7453), 1, - anon_sym_LBRACE, + ACTIONS(7445), 1, + aux_sym__content_block_token1, STATE(4382), 2, sym_line_comment, sym_block_comment, - [144524] = 4, + [144606] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7455), 1, - anon_sym_EQ, + ACTIONS(7447), 1, + anon_sym_LBRACE, STATE(4383), 2, sym_line_comment, sym_block_comment, - [144538] = 4, + [144620] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7457), 1, - anon_sym_RBRACE, + ACTIONS(7449), 1, + anon_sym_LBRACE, STATE(4384), 2, sym_line_comment, sym_block_comment, - [144552] = 4, + [144634] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(881), 1, - anon_sym_RBRACE, + ACTIONS(7451), 1, + sym_identifier, STATE(4385), 2, sym_line_comment, sym_block_comment, - [144566] = 4, + [144648] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7459), 1, - anon_sym_RBRACE, + ACTIONS(7453), 1, + anon_sym_DOT, STATE(4386), 2, sym_line_comment, sym_block_comment, - [144580] = 4, + [144662] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7461), 1, - anon_sym_RBRACK, + ACTIONS(7455), 1, + anon_sym_LBRACE, STATE(4387), 2, sym_line_comment, sym_block_comment, - [144594] = 4, + [144676] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1631), 1, - anon_sym_RPAREN, + ACTIONS(5406), 1, + anon_sym_LBRACE, STATE(4388), 2, sym_line_comment, sym_block_comment, - [144608] = 4, + [144690] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7463), 1, - anon_sym_RBRACE, + ACTIONS(5348), 1, + anon_sym_LBRACE, STATE(4389), 2, sym_line_comment, sym_block_comment, - [144622] = 4, + [144704] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7465), 1, - anon_sym_RBRACE, + ACTIONS(7457), 1, + anon_sym_LBRACE, STATE(4390), 2, sym_line_comment, sym_block_comment, - [144636] = 4, - ACTIONS(3), 1, + [144718] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7467), 1, - anon_sym_DOT, + ACTIONS(7459), 1, + aux_sym__content_block_token1, STATE(4391), 2, sym_line_comment, sym_block_comment, - [144650] = 4, + [144732] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7469), 1, - anon_sym_RBRACE, + ACTIONS(7461), 1, + anon_sym_DOT, STATE(4392), 2, sym_line_comment, sym_block_comment, - [144664] = 4, + [144746] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7471), 1, - anon_sym_LBRACE, + ACTIONS(6579), 1, + anon_sym_RBRACE, STATE(4393), 2, sym_line_comment, sym_block_comment, - [144678] = 4, - ACTIONS(3), 1, + [144760] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(5378), 1, - anon_sym_LBRACE, + ACTIONS(7463), 1, + aux_sym_hash_statement_token1, STATE(4394), 2, sym_line_comment, sym_block_comment, - [144692] = 4, + [144774] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7473), 1, - anon_sym_LBRACE, + ACTIONS(7465), 1, + anon_sym_RBRACE, STATE(4395), 2, sym_line_comment, sym_block_comment, - [144706] = 4, - ACTIONS(497), 1, + [144788] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7475), 1, - aux_sym__content_block_token1, + ACTIONS(7467), 1, + sym_int_literal, STATE(4396), 2, sym_line_comment, sym_block_comment, - [144720] = 4, + [144802] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7477), 1, + ACTIONS(7469), 1, anon_sym_RBRACE, STATE(4397), 2, sym_line_comment, sym_block_comment, - [144734] = 4, - ACTIONS(497), 1, + [144816] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7479), 1, - aux_sym__content_block_token1, + ACTIONS(7471), 1, + anon_sym_LBRACE, STATE(4398), 2, sym_line_comment, sym_block_comment, - [144748] = 4, + [144830] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7481), 1, + ACTIONS(7473), 1, anon_sym_LBRACE, STATE(4399), 2, sym_line_comment, sym_block_comment, - [144762] = 4, + [144844] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5346), 1, - anon_sym_LBRACE, + ACTIONS(7475), 1, + anon_sym_RBRACK, STATE(4400), 2, sym_line_comment, sym_block_comment, - [144776] = 4, + [144858] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7483), 1, - anon_sym_RBRACE, + ACTIONS(7477), 1, + sym_identifier, STATE(4401), 2, sym_line_comment, sym_block_comment, - [144790] = 4, + [144872] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7485), 1, - anon_sym_RBRACE, + ACTIONS(7479), 1, + anon_sym_RBRACK, STATE(4402), 2, sym_line_comment, sym_block_comment, - [144804] = 4, + [144886] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7487), 1, - anon_sym_DOT, + ACTIONS(7481), 1, + anon_sym_RBRACE, STATE(4403), 2, sym_line_comment, sym_block_comment, - [144818] = 4, + [144900] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7489), 1, + ACTIONS(7483), 1, anon_sym_RBRACE, STATE(4404), 2, sym_line_comment, sym_block_comment, - [144832] = 4, + [144914] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7491), 1, - sym_identifier, + ACTIONS(7485), 1, + anon_sym_RBRACE, STATE(4405), 2, sym_line_comment, sym_block_comment, - [144846] = 4, + [144928] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6641), 1, + ACTIONS(7487), 1, anon_sym_RBRACE, STATE(4406), 2, sym_line_comment, sym_block_comment, - [144860] = 4, + [144942] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(917), 1, - anon_sym_RBRACE, + ACTIONS(7489), 1, + anon_sym_DOT, STATE(4407), 2, sym_line_comment, sym_block_comment, - [144874] = 4, + [144956] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6660), 1, - anon_sym_RBRACK, + ACTIONS(7491), 1, + anon_sym_RBRACE, STATE(4408), 2, sym_line_comment, sym_block_comment, - [144888] = 4, + [144970] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4559), 1, - sym_identifier, + ACTIONS(5938), 1, + anon_sym_COLON_EQ, STATE(4409), 2, sym_line_comment, sym_block_comment, - [144902] = 4, + [144984] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7493), 1, - anon_sym_RBRACE, + ACTIONS(5352), 1, + anon_sym_LBRACE, STATE(4410), 2, sym_line_comment, sym_block_comment, - [144916] = 4, + [144998] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, - anon_sym_RBRACE, + ACTIONS(7493), 1, + anon_sym_LBRACE, STATE(4411), 2, sym_line_comment, sym_block_comment, - [144930] = 4, - ACTIONS(3), 1, + [145012] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, ACTIONS(7495), 1, - anon_sym_DOT, + aux_sym__content_block_token1, STATE(4412), 2, sym_line_comment, sym_block_comment, - [144944] = 4, + [145026] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7497), 1, - anon_sym_EQ, + ACTIONS(941), 1, + anon_sym_RBRACE, STATE(4413), 2, sym_line_comment, sym_block_comment, - [144958] = 4, + [145040] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7499), 1, + ACTIONS(7497), 1, anon_sym_RBRACE, STATE(4414), 2, sym_line_comment, sym_block_comment, - [144972] = 4, + [145054] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5382), 1, - anon_sym_LBRACE, + ACTIONS(1621), 1, + anon_sym_RPAREN, STATE(4415), 2, sym_line_comment, sym_block_comment, - [144986] = 4, + [145068] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7501), 1, - anon_sym_LBRACE, + ACTIONS(7499), 1, + anon_sym_RBRACK, STATE(4416), 2, sym_line_comment, sym_block_comment, - [145000] = 4, - ACTIONS(497), 1, + [145082] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7503), 1, - aux_sym__content_block_token1, + ACTIONS(7501), 1, + anon_sym_RBRACE, STATE(4417), 2, sym_line_comment, sym_block_comment, - [145014] = 4, + [145096] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7505), 1, - sym_int_literal, + ACTIONS(7503), 1, + anon_sym_RBRACE, STATE(4418), 2, sym_line_comment, sym_block_comment, - [145028] = 4, + [145110] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(889), 1, + ACTIONS(7505), 1, anon_sym_RBRACE, STATE(4419), 2, sym_line_comment, sym_block_comment, - [145042] = 4, + [145124] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -307681,7 +307745,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4420), 2, sym_line_comment, sym_block_comment, - [145056] = 4, + [145138] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -307691,7 +307755,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4421), 2, sym_line_comment, sym_block_comment, - [145070] = 4, + [145152] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -307701,27 +307765,27 @@ static const uint16_t ts_small_parse_table[] = { STATE(4422), 2, sym_line_comment, sym_block_comment, - [145084] = 4, + [145166] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7513), 1, - anon_sym_RBRACE, + anon_sym_DOT, STATE(4423), 2, sym_line_comment, sym_block_comment, - [145098] = 4, + [145180] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1498), 1, - anon_sym_RPAREN, + ACTIONS(913), 1, + anon_sym_RBRACE, STATE(4424), 2, sym_line_comment, sym_block_comment, - [145112] = 4, + [145194] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -307731,47 +307795,47 @@ static const uint16_t ts_small_parse_table[] = { STATE(4425), 2, sym_line_comment, sym_block_comment, - [145126] = 4, + [145208] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7517), 1, - anon_sym_SEMI, + anon_sym_RBRACE, STATE(4426), 2, sym_line_comment, sym_block_comment, - [145140] = 4, + [145222] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4844), 1, - anon_sym_COLON, + ACTIONS(7519), 1, + anon_sym_EQ, STATE(4427), 2, sym_line_comment, sym_block_comment, - [145154] = 4, + [145236] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7519), 1, - anon_sym_RBRACE, + ACTIONS(7521), 1, + anon_sym_DOT, STATE(4428), 2, sym_line_comment, sym_block_comment, - [145168] = 4, + [145250] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7521), 1, - anon_sym_RBRACK, + ACTIONS(885), 1, + anon_sym_RBRACE, STATE(4429), 2, sym_line_comment, sym_block_comment, - [145182] = 4, + [145264] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -307781,37 +307845,37 @@ static const uint16_t ts_small_parse_table[] = { STATE(4430), 2, sym_line_comment, sym_block_comment, - [145196] = 4, + [145278] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7525), 1, - anon_sym_RBRACE, + ACTIONS(5382), 1, + anon_sym_LBRACE, STATE(4431), 2, sym_line_comment, sym_block_comment, - [145210] = 4, + [145292] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1623), 1, - anon_sym_RPAREN, + ACTIONS(7525), 1, + anon_sym_LBRACE, STATE(4432), 2, sym_line_comment, sym_block_comment, - [145224] = 4, - ACTIONS(3), 1, + [145306] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, ACTIONS(7527), 1, - anon_sym_DOT, + aux_sym__content_block_token1, STATE(4433), 2, sym_line_comment, sym_block_comment, - [145238] = 4, + [145320] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -307821,67 +307885,67 @@ static const uint16_t ts_small_parse_table[] = { STATE(4434), 2, sym_line_comment, sym_block_comment, - [145252] = 4, + [145334] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(897), 1, + ACTIONS(7531), 1, anon_sym_RBRACE, STATE(4435), 2, sym_line_comment, sym_block_comment, - [145266] = 4, + [145348] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5396), 1, - anon_sym_LBRACE, + ACTIONS(1633), 1, + anon_sym_RPAREN, STATE(4436), 2, sym_line_comment, sym_block_comment, - [145280] = 4, + [145362] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7531), 1, - anon_sym_LBRACE, + ACTIONS(7533), 1, + anon_sym_RBRACK, STATE(4437), 2, sym_line_comment, sym_block_comment, - [145294] = 4, - ACTIONS(497), 1, + [145376] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7533), 1, - aux_sym__content_block_token1, + ACTIONS(925), 1, + anon_sym_RBRACE, STATE(4438), 2, sym_line_comment, sym_block_comment, - [145308] = 4, + [145390] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7535), 1, - anon_sym_RBRACK, + sym_identifier, STATE(4439), 2, sym_line_comment, sym_block_comment, - [145322] = 4, + [145404] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7537), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, STATE(4440), 2, sym_line_comment, sym_block_comment, - [145336] = 4, + [145418] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -307891,7 +307955,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4441), 2, sym_line_comment, sym_block_comment, - [145350] = 4, + [145432] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -307901,37 +307965,37 @@ static const uint16_t ts_small_parse_table[] = { STATE(4442), 2, sym_line_comment, sym_block_comment, - [145364] = 4, + [145446] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7543), 1, - anon_sym_in, + anon_sym_PIPE, STATE(4443), 2, sym_line_comment, sym_block_comment, - [145378] = 4, + [145460] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7545), 1, - anon_sym_RBRACE, + sym_identifier, STATE(4444), 2, sym_line_comment, sym_block_comment, - [145392] = 4, + [145474] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7547), 1, - sym_identifier, + anon_sym_RBRACE, STATE(4445), 2, sym_line_comment, sym_block_comment, - [145406] = 4, + [145488] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -307941,7 +308005,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4446), 2, sym_line_comment, sym_block_comment, - [145420] = 4, + [145502] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -307951,767 +308015,767 @@ static const uint16_t ts_small_parse_table[] = { STATE(4447), 2, sym_line_comment, sym_block_comment, - [145434] = 4, + [145516] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7553), 1, - anon_sym_RBRACE, + sym_identifier, STATE(4448), 2, sym_line_comment, sym_block_comment, - [145448] = 4, + [145530] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7555), 1, - anon_sym_LBRACE, + anon_sym_DOT, STATE(4449), 2, sym_line_comment, sym_block_comment, - [145462] = 4, + [145544] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1502), 1, - anon_sym_RPAREN, + ACTIONS(7557), 1, + anon_sym_RBRACE, STATE(4450), 2, sym_line_comment, sym_block_comment, - [145476] = 4, + [145558] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7557), 1, + ACTIONS(7559), 1, anon_sym_RBRACE, STATE(4451), 2, sym_line_comment, sym_block_comment, - [145490] = 4, + [145572] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7559), 1, - sym_identifier, + ACTIONS(5396), 1, + anon_sym_LBRACE, STATE(4452), 2, sym_line_comment, sym_block_comment, - [145504] = 4, + [145586] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7561), 1, - anon_sym_RBRACK, + anon_sym_LBRACE, STATE(4453), 2, sym_line_comment, sym_block_comment, - [145518] = 4, - ACTIONS(3), 1, + [145600] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, ACTIONS(7563), 1, - anon_sym_DOT, + aux_sym__content_block_token1, STATE(4454), 2, sym_line_comment, sym_block_comment, - [145532] = 4, + [145614] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(929), 1, - anon_sym_RBRACE, + ACTIONS(7565), 1, + anon_sym_RBRACK, STATE(4455), 2, sym_line_comment, sym_block_comment, - [145546] = 4, + [145628] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(887), 1, - anon_sym_RBRACE, + ACTIONS(7567), 1, + anon_sym_DOT, STATE(4456), 2, sym_line_comment, sym_block_comment, - [145560] = 4, + [145642] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5406), 1, - anon_sym_LBRACE, + ACTIONS(7569), 1, + anon_sym_RBRACE, STATE(4457), 2, sym_line_comment, sym_block_comment, - [145574] = 4, - ACTIONS(3), 1, + [145656] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7565), 1, - anon_sym_LBRACE, + ACTIONS(7571), 1, + aux_sym__content_block_token1, STATE(4458), 2, sym_line_comment, sym_block_comment, - [145588] = 4, - ACTIONS(497), 1, + [145670] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7567), 1, - aux_sym__content_block_token1, + ACTIONS(7573), 1, + anon_sym_LBRACE, STATE(4459), 2, sym_line_comment, sym_block_comment, - [145602] = 4, + [145684] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7569), 1, - anon_sym_RBRACK, + ACTIONS(5340), 1, + anon_sym_LBRACE, STATE(4460), 2, sym_line_comment, sym_block_comment, - [145616] = 4, - ACTIONS(3), 1, + [145698] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7571), 1, - anon_sym_RBRACE, + ACTIONS(7575), 1, + aux_sym_shebang_token1, STATE(4461), 2, sym_line_comment, sym_block_comment, - [145630] = 4, + [145712] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7573), 1, + ACTIONS(7577), 1, anon_sym_RBRACE, STATE(4462), 2, sym_line_comment, sym_block_comment, - [145644] = 4, + [145726] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7575), 1, - anon_sym_RBRACE, + ACTIONS(7579), 1, + anon_sym_DOT, STATE(4463), 2, sym_line_comment, sym_block_comment, - [145658] = 4, - ACTIONS(497), 1, + [145740] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7577), 1, - aux_sym__content_block_token1, + ACTIONS(1623), 1, + anon_sym_RPAREN, STATE(4464), 2, sym_line_comment, sym_block_comment, - [145672] = 4, + [145754] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1500), 1, - anon_sym_RPAREN, + ACTIONS(7581), 1, + anon_sym_RBRACE, STATE(4465), 2, sym_line_comment, sym_block_comment, - [145686] = 4, + [145768] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7579), 1, - anon_sym_LBRACE, + ACTIONS(7583), 1, + anon_sym_DOT, STATE(4466), 2, sym_line_comment, sym_block_comment, - [145700] = 4, + [145782] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7581), 1, + ACTIONS(7585), 1, anon_sym_RBRACE, STATE(4467), 2, sym_line_comment, sym_block_comment, - [145714] = 4, + [145796] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 1, + ACTIONS(5418), 1, anon_sym_LBRACE, STATE(4468), 2, sym_line_comment, sym_block_comment, - [145728] = 4, + [145810] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7583), 1, - anon_sym_RBRACK, + ACTIONS(7587), 1, + anon_sym_LBRACE, STATE(4469), 2, sym_line_comment, sym_block_comment, - [145742] = 4, - ACTIONS(3), 1, + [145824] = 4, + ACTIONS(497), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7585), 1, - anon_sym_RBRACE, + ACTIONS(7589), 1, + aux_sym__content_block_token1, STATE(4470), 2, sym_line_comment, sym_block_comment, - [145756] = 4, + [145838] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7587), 1, - anon_sym_DOT, + ACTIONS(879), 1, + anon_sym_RBRACE, STATE(4471), 2, sym_line_comment, sym_block_comment, - [145770] = 4, + [145852] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7589), 1, - anon_sym_RBRACE, + ACTIONS(7591), 1, + anon_sym_DOT, STATE(4472), 2, sym_line_comment, sym_block_comment, - [145784] = 4, + [145866] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5412), 1, - anon_sym_LBRACE, + ACTIONS(7593), 1, + anon_sym_RBRACE, STATE(4473), 2, sym_line_comment, sym_block_comment, - [145798] = 4, + [145880] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7591), 1, - anon_sym_LBRACE, + ACTIONS(7595), 1, + anon_sym_RBRACE, STATE(4474), 2, sym_line_comment, sym_block_comment, - [145812] = 4, + [145894] = 4, ACTIONS(497), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, anon_sym_SLASH_STAR, - ACTIONS(7593), 1, + ACTIONS(7597), 1, aux_sym__content_block_token1, STATE(4475), 2, sym_line_comment, sym_block_comment, - [145826] = 4, + [145908] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7595), 1, + ACTIONS(7599), 1, anon_sym_RBRACE, STATE(4476), 2, sym_line_comment, sym_block_comment, - [145840] = 4, + [145922] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7597), 1, - anon_sym_RBRACE, + ACTIONS(7601), 1, + sym_identifier, STATE(4477), 2, sym_line_comment, sym_block_comment, - [145854] = 4, + [145936] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7599), 1, - anon_sym_RBRACE, + ACTIONS(7603), 1, + anon_sym_EQ, STATE(4478), 2, sym_line_comment, sym_block_comment, - [145868] = 4, + [145950] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7601), 1, - anon_sym_DOT, + ACTIONS(933), 1, + anon_sym_RBRACE, STATE(4479), 2, sym_line_comment, sym_block_comment, - [145882] = 4, - ACTIONS(497), 1, + [145964] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7603), 1, - aux_sym__content_block_token1, + ACTIONS(7605), 1, + anon_sym_EQ, STATE(4480), 2, sym_line_comment, sym_block_comment, - [145896] = 4, + [145978] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(925), 1, + ACTIONS(947), 1, anon_sym_RBRACE, STATE(4481), 2, sym_line_comment, sym_block_comment, - [145910] = 4, + [145992] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7605), 1, - anon_sym_RBRACE, + ACTIONS(7607), 1, + sym_identifier, STATE(4482), 2, sym_line_comment, sym_block_comment, - [145924] = 4, + [146006] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5929), 1, - anon_sym_COLON_EQ, + ACTIONS(7609), 1, + sym_identifier, STATE(4483), 2, sym_line_comment, sym_block_comment, - [145938] = 4, + [146020] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7607), 1, - anon_sym_RBRACE, + ACTIONS(7611), 1, + sym_identifier, STATE(4484), 2, sym_line_comment, sym_block_comment, - [145952] = 4, + [146034] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7609), 1, - anon_sym_RBRACE, + ACTIONS(7613), 1, + anon_sym_LBRACE, STATE(4485), 2, sym_line_comment, sym_block_comment, - [145966] = 4, + [146048] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7611), 1, + ACTIONS(7615), 1, anon_sym_RBRACE, STATE(4486), 2, sym_line_comment, sym_block_comment, - [145980] = 4, + [146062] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7613), 1, - anon_sym_RBRACE, + ACTIONS(7617), 1, + sym_identifier, STATE(4487), 2, sym_line_comment, sym_block_comment, - [145994] = 4, + [146076] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7615), 1, - anon_sym_RBRACE, + ACTIONS(7619), 1, + anon_sym_LBRACE, STATE(4488), 2, sym_line_comment, sym_block_comment, - [146008] = 4, + [146090] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7617), 1, - anon_sym_LBRACE, + ACTIONS(7621), 1, + anon_sym_RBRACE, STATE(4489), 2, sym_line_comment, sym_block_comment, - [146022] = 4, + [146104] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7619), 1, + ACTIONS(7623), 1, anon_sym_RBRACE, STATE(4490), 2, sym_line_comment, sym_block_comment, - [146036] = 4, - ACTIONS(497), 1, + [146118] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7621), 1, - aux_sym__content_block_token1, + ACTIONS(7625), 1, + anon_sym_RBRACE, STATE(4491), 2, sym_line_comment, sym_block_comment, - [146050] = 4, + [146132] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7623), 1, - anon_sym_LBRACE, + ACTIONS(931), 1, + anon_sym_RBRACE, STATE(4492), 2, sym_line_comment, sym_block_comment, - [146064] = 4, + [146146] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7625), 1, - sym_int_literal, + ACTIONS(7627), 1, + anon_sym_RBRACE, STATE(4493), 2, sym_line_comment, sym_block_comment, - [146078] = 4, + [146160] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5364), 1, + ACTIONS(7629), 1, anon_sym_LBRACE, STATE(4494), 2, sym_line_comment, sym_block_comment, - [146092] = 4, + [146174] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7627), 1, - anon_sym_LBRACE, + ACTIONS(7631), 1, + anon_sym_RBRACE, STATE(4495), 2, sym_line_comment, sym_block_comment, - [146106] = 4, + [146188] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7629), 1, - anon_sym_DOT, + ACTIONS(7633), 1, + anon_sym_RBRACE, STATE(4496), 2, sym_line_comment, sym_block_comment, - [146120] = 4, + [146202] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7631), 1, - anon_sym_LPAREN, + ACTIONS(7635), 1, + anon_sym_RBRACE, STATE(4497), 2, sym_line_comment, sym_block_comment, - [146134] = 4, + [146216] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7633), 1, - anon_sym_DOT, + ACTIONS(7637), 1, + anon_sym_RBRACE, STATE(4498), 2, sym_line_comment, sym_block_comment, - [146148] = 4, + [146230] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7635), 1, - anon_sym_LBRACE, + ACTIONS(7639), 1, + anon_sym_SEMI, STATE(4499), 2, sym_line_comment, sym_block_comment, - [146162] = 4, + [146244] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7637), 1, - anon_sym_EQ, + ACTIONS(7641), 1, + anon_sym_RBRACE, STATE(4500), 2, sym_line_comment, sym_block_comment, - [146176] = 4, + [146258] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7639), 1, - sym_identifier, + ACTIONS(7643), 1, + anon_sym_RBRACK, STATE(4501), 2, sym_line_comment, sym_block_comment, - [146190] = 4, + [146272] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7641), 1, - anon_sym_RBRACE, + ACTIONS(7645), 1, + anon_sym_RBRACK, STATE(4502), 2, sym_line_comment, sym_block_comment, - [146204] = 4, + [146286] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7643), 1, - anon_sym_RBRACK, + ACTIONS(7647), 1, + anon_sym_RBRACE, STATE(4503), 2, sym_line_comment, sym_block_comment, - [146218] = 4, + [146300] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7645), 1, - anon_sym_RBRACE, + ACTIONS(1498), 1, + anon_sym_RPAREN, STATE(4504), 2, sym_line_comment, sym_block_comment, - [146232] = 4, + [146314] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7647), 1, - anon_sym_RBRACK, + ACTIONS(7649), 1, + anon_sym_RBRACE, STATE(4505), 2, sym_line_comment, sym_block_comment, - [146246] = 4, + [146328] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7649), 1, + ACTIONS(7651), 1, anon_sym_RBRACE, STATE(4506), 2, sym_line_comment, sym_block_comment, - [146260] = 4, + [146342] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5868), 1, - anon_sym_LBRACE, + ACTIONS(7653), 1, + anon_sym_RBRACK, STATE(4507), 2, sym_line_comment, sym_block_comment, - [146274] = 4, + [146356] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7651), 1, + ACTIONS(7655), 1, anon_sym_RBRACE, STATE(4508), 2, sym_line_comment, sym_block_comment, - [146288] = 4, + [146370] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(877), 1, + ACTIONS(7657), 1, anon_sym_RBRACE, STATE(4509), 2, sym_line_comment, sym_block_comment, - [146302] = 4, + [146384] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7653), 1, - anon_sym_RBRACK, + ACTIONS(7659), 1, + anon_sym_RBRACE, STATE(4510), 2, sym_line_comment, sym_block_comment, - [146316] = 4, + [146398] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7655), 1, - anon_sym_COLON_EQ, + ACTIONS(7661), 1, + anon_sym_RBRACK, STATE(4511), 2, sym_line_comment, sym_block_comment, - [146330] = 4, + [146412] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7657), 1, + ACTIONS(7663), 1, anon_sym_RBRACE, STATE(4512), 2, sym_line_comment, sym_block_comment, - [146344] = 4, + [146426] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7659), 1, - anon_sym_RBRACE, + ACTIONS(7665), 1, + anon_sym_LBRACE, STATE(4513), 2, sym_line_comment, sym_block_comment, - [146358] = 4, + [146440] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7661), 1, + ACTIONS(7667), 1, anon_sym_RBRACE, STATE(4514), 2, sym_line_comment, sym_block_comment, - [146372] = 4, + [146454] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7663), 1, - anon_sym_DOT, + ACTIONS(889), 1, + anon_sym_RBRACE, STATE(4515), 2, sym_line_comment, sym_block_comment, - [146386] = 4, + [146468] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7665), 1, - anon_sym_LBRACE, + ACTIONS(7669), 1, + anon_sym_COLON, STATE(4516), 2, sym_line_comment, sym_block_comment, - [146400] = 4, + [146482] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7667), 1, - anon_sym_RBRACE, + ACTIONS(7671), 1, + sym_identifier, STATE(4517), 2, sym_line_comment, sym_block_comment, - [146414] = 4, + [146496] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7669), 1, - anon_sym_RBRACE, + ACTIONS(7673), 1, + anon_sym_RBRACK, STATE(4518), 2, sym_line_comment, sym_block_comment, - [146428] = 4, + [146510] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7671), 1, + ACTIONS(919), 1, anon_sym_RBRACE, STATE(4519), 2, sym_line_comment, sym_block_comment, - [146442] = 4, + [146524] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7673), 1, - anon_sym_RBRACE, + ACTIONS(7675), 1, + ts_builtin_sym_end, STATE(4520), 2, sym_line_comment, sym_block_comment, - [146456] = 4, + [146538] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7675), 1, - anon_sym_RBRACK, + ACTIONS(7677), 1, + anon_sym_RBRACE, STATE(4521), 2, sym_line_comment, sym_block_comment, - [146470] = 4, - ACTIONS(497), 1, + [146552] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7677), 1, - aux_sym_shebang_token1, + ACTIONS(7679), 1, + anon_sym_RBRACE, STATE(4522), 2, sym_line_comment, sym_block_comment, - [146484] = 4, + [146566] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7679), 1, - anon_sym_DOT, + ACTIONS(1625), 1, + anon_sym_RPAREN, STATE(4523), 2, sym_line_comment, sym_block_comment, - [146498] = 4, + [146580] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -308721,7 +308785,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4524), 2, sym_line_comment, sym_block_comment, - [146512] = 4, + [146594] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -308731,27 +308795,27 @@ static const uint16_t ts_small_parse_table[] = { STATE(4525), 2, sym_line_comment, sym_block_comment, - [146526] = 4, + [146608] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7685), 1, - anon_sym_LPAREN, + anon_sym_RBRACE, STATE(4526), 2, sym_line_comment, sym_block_comment, - [146540] = 4, + [146622] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1625), 1, + ACTIONS(1639), 1, anon_sym_RPAREN, STATE(4527), 2, sym_line_comment, sym_block_comment, - [146554] = 4, + [146636] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -308761,27 +308825,27 @@ static const uint16_t ts_small_parse_table[] = { STATE(4528), 2, sym_line_comment, sym_block_comment, - [146568] = 4, + [146650] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(905), 1, + ACTIONS(7689), 1, anon_sym_RBRACE, STATE(4529), 2, sym_line_comment, sym_block_comment, - [146582] = 4, + [146664] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7689), 1, - anon_sym_COLON, + ACTIONS(943), 1, + anon_sym_RBRACE, STATE(4530), 2, sym_line_comment, sym_block_comment, - [146596] = 4, + [146678] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -308791,17 +308855,17 @@ static const uint16_t ts_small_parse_table[] = { STATE(4531), 2, sym_line_comment, sym_block_comment, - [146610] = 4, + [146692] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7693), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, STATE(4532), 2, sym_line_comment, sym_block_comment, - [146624] = 4, + [146706] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -308811,627 +308875,627 @@ static const uint16_t ts_small_parse_table[] = { STATE(4533), 2, sym_line_comment, sym_block_comment, - [146638] = 4, + [146720] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7697), 1, - anon_sym_DOT, + anon_sym_RBRACE, STATE(4534), 2, sym_line_comment, sym_block_comment, - [146652] = 4, + [146734] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1635), 1, - anon_sym_RPAREN, + ACTIONS(7699), 1, + anon_sym_RBRACE, STATE(4535), 2, sym_line_comment, sym_block_comment, - [146666] = 4, + [146748] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7699), 1, + ACTIONS(7701), 1, anon_sym_RBRACE, STATE(4536), 2, sym_line_comment, sym_block_comment, - [146680] = 4, + [146762] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7701), 1, - anon_sym_RBRACK, + ACTIONS(881), 1, + anon_sym_RBRACE, STATE(4537), 2, sym_line_comment, sym_block_comment, - [146694] = 4, + [146776] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6466), 1, + ACTIONS(7703), 1, anon_sym_RBRACE, STATE(4538), 2, sym_line_comment, sym_block_comment, - [146708] = 4, + [146790] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(891), 1, + ACTIONS(479), 1, anon_sym_RBRACE, STATE(4539), 2, sym_line_comment, sym_block_comment, - [146722] = 4, + [146804] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7703), 1, + ACTIONS(7705), 1, anon_sym_RBRACE, STATE(4540), 2, sym_line_comment, sym_block_comment, - [146736] = 4, + [146818] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7705), 1, + ACTIONS(7707), 1, anon_sym_RBRACE, STATE(4541), 2, sym_line_comment, sym_block_comment, - [146750] = 4, + [146832] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7707), 1, - anon_sym_RBRACK, + ACTIONS(7709), 1, + anon_sym_in, STATE(4542), 2, sym_line_comment, sym_block_comment, - [146764] = 4, + [146846] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7709), 1, - anon_sym_RBRACE, + ACTIONS(7711), 1, + sym_identifier, STATE(4543), 2, sym_line_comment, sym_block_comment, - [146778] = 4, - ACTIONS(497), 1, + [146860] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7711), 1, - aux_sym_hash_statement_token1, + ACTIONS(7713), 1, + sym_identifier, STATE(4544), 2, sym_line_comment, sym_block_comment, - [146792] = 4, + [146874] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7713), 1, - anon_sym_EQ, + ACTIONS(7715), 1, + sym_identifier, STATE(4545), 2, sym_line_comment, sym_block_comment, - [146806] = 4, + [146888] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7715), 1, + ACTIONS(7717), 1, anon_sym_RBRACE, STATE(4546), 2, sym_line_comment, sym_block_comment, - [146820] = 4, + [146902] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7717), 1, + ACTIONS(7719), 1, anon_sym_RBRACE, STATE(4547), 2, sym_line_comment, sym_block_comment, - [146834] = 4, + [146916] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7719), 1, + ACTIONS(7721), 1, anon_sym_RBRACE, STATE(4548), 2, sym_line_comment, sym_block_comment, - [146848] = 4, + [146930] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7721), 1, + ACTIONS(7723), 1, anon_sym_RBRACE, STATE(4549), 2, sym_line_comment, sym_block_comment, - [146862] = 4, + [146944] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7723), 1, + ACTIONS(7725), 1, anon_sym_RBRACE, STATE(4550), 2, sym_line_comment, sym_block_comment, - [146876] = 4, + [146958] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7725), 1, - anon_sym_RBRACE, + ACTIONS(7727), 1, + anon_sym_DOT, STATE(4551), 2, sym_line_comment, sym_block_comment, - [146890] = 4, + [146972] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7727), 1, - anon_sym_RBRACE, + ACTIONS(7729), 1, + anon_sym_RBRACK, STATE(4552), 2, sym_line_comment, sym_block_comment, - [146904] = 4, + [146986] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7729), 1, - anon_sym_DOT, + ACTIONS(7731), 1, + anon_sym_RBRACE, STATE(4553), 2, sym_line_comment, sym_block_comment, - [146918] = 4, + [147000] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7731), 1, + ACTIONS(7733), 1, anon_sym_RBRACE, STATE(4554), 2, sym_line_comment, sym_block_comment, - [146932] = 4, + [147014] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7733), 1, - anon_sym_RBRACK, + ACTIONS(7735), 1, + anon_sym_RBRACE, STATE(4555), 2, sym_line_comment, sym_block_comment, - [146946] = 4, + [147028] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7735), 1, - anon_sym_RBRACE, + ACTIONS(7737), 1, + sym_identifier, STATE(4556), 2, sym_line_comment, sym_block_comment, - [146960] = 4, + [147042] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7737), 1, + ACTIONS(7739), 1, anon_sym_RBRACE, STATE(4557), 2, sym_line_comment, sym_block_comment, - [146974] = 4, + [147056] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1633), 1, - anon_sym_RPAREN, + ACTIONS(7741), 1, + anon_sym_RBRACE, STATE(4558), 2, sym_line_comment, sym_block_comment, - [146988] = 4, + [147070] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7739), 1, - anon_sym_RBRACE, + ACTIONS(7743), 1, + anon_sym_DOT, STATE(4559), 2, sym_line_comment, sym_block_comment, - [147002] = 4, + [147084] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(7745), 1, anon_sym_RBRACE, STATE(4560), 2, sym_line_comment, sym_block_comment, - [147016] = 4, + [147098] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7741), 1, + ACTIONS(7747), 1, anon_sym_RBRACE, STATE(4561), 2, sym_line_comment, sym_block_comment, - [147030] = 4, + [147112] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(901), 1, + ACTIONS(893), 1, anon_sym_RBRACE, STATE(4562), 2, sym_line_comment, sym_block_comment, - [147044] = 4, + [147126] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7743), 1, - anon_sym_RBRACE, + ACTIONS(7749), 1, + anon_sym_RBRACK, STATE(4563), 2, sym_line_comment, sym_block_comment, - [147058] = 4, + [147140] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7745), 1, - anon_sym_RBRACE, + ACTIONS(7751), 1, + sym_identifier, STATE(4564), 2, sym_line_comment, sym_block_comment, - [147072] = 4, + [147154] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7747), 1, + ACTIONS(951), 1, anon_sym_RBRACE, STATE(4565), 2, sym_line_comment, sym_block_comment, - [147086] = 4, + [147168] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(883), 1, - anon_sym_RBRACE, + ACTIONS(7753), 1, + anon_sym_RBRACK, STATE(4566), 2, sym_line_comment, sym_block_comment, - [147100] = 4, + [147182] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7749), 1, - anon_sym_LBRACE, + ACTIONS(7755), 1, + sym_identifier, STATE(4567), 2, sym_line_comment, sym_block_comment, - [147114] = 4, + [147196] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7751), 1, - anon_sym_RBRACE, + ACTIONS(7757), 1, + sym_identifier, STATE(4568), 2, sym_line_comment, sym_block_comment, - [147128] = 4, + [147210] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7753), 1, - anon_sym_RBRACK, + ACTIONS(7759), 1, + sym_identifier, STATE(4569), 2, sym_line_comment, sym_block_comment, - [147142] = 4, + [147224] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7755), 1, - anon_sym_RBRACE, + ACTIONS(1629), 1, + anon_sym_RPAREN, STATE(4570), 2, sym_line_comment, sym_block_comment, - [147156] = 4, + [147238] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7757), 1, + ACTIONS(7761), 1, anon_sym_RBRACE, STATE(4571), 2, sym_line_comment, sym_block_comment, - [147170] = 4, + [147252] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7759), 1, + ACTIONS(7763), 1, anon_sym_RBRACE, STATE(4572), 2, sym_line_comment, sym_block_comment, - [147184] = 4, + [147266] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7761), 1, - anon_sym_RBRACK, + ACTIONS(7765), 1, + anon_sym_RBRACE, STATE(4573), 2, sym_line_comment, sym_block_comment, - [147198] = 4, + [147280] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7763), 1, - anon_sym_RBRACE, + ACTIONS(7767), 1, + anon_sym_RBRACK, STATE(4574), 2, sym_line_comment, sym_block_comment, - [147212] = 4, + [147294] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7765), 1, + ACTIONS(7769), 1, anon_sym_RBRACE, STATE(4575), 2, sym_line_comment, sym_block_comment, - [147226] = 4, + [147308] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7767), 1, + ACTIONS(7771), 1, anon_sym_RBRACE, STATE(4576), 2, sym_line_comment, sym_block_comment, - [147240] = 4, + [147322] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7769), 1, - anon_sym_DOT, + ACTIONS(7773), 1, + anon_sym_RBRACE, STATE(4577), 2, sym_line_comment, sym_block_comment, - [147254] = 4, + [147336] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7771), 1, - anon_sym_RBRACE, + ACTIONS(7775), 1, + anon_sym_RBRACK, STATE(4578), 2, sym_line_comment, sym_block_comment, - [147268] = 4, + [147350] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7773), 1, - anon_sym_PIPE, + ACTIONS(7777), 1, + anon_sym_RBRACK, STATE(4579), 2, sym_line_comment, sym_block_comment, - [147282] = 4, + [147364] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7775), 1, - anon_sym_RBRACK, + ACTIONS(7779), 1, + anon_sym_RBRACE, STATE(4580), 2, sym_line_comment, sym_block_comment, - [147296] = 4, + [147378] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7777), 1, + ACTIONS(7781), 1, anon_sym_RBRACK, STATE(4581), 2, sym_line_comment, sym_block_comment, - [147310] = 4, + [147392] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7779), 1, - ts_builtin_sym_end, + ACTIONS(7783), 1, + anon_sym_RBRACE, STATE(4582), 2, sym_line_comment, sym_block_comment, - [147324] = 4, + [147406] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7781), 1, - anon_sym_RBRACE, + ACTIONS(7785), 1, + anon_sym_COLON_EQ, STATE(4583), 2, sym_line_comment, sym_block_comment, - [147338] = 4, + [147420] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7783), 1, - sym_identifier, + ACTIONS(1500), 1, + anon_sym_RPAREN, STATE(4584), 2, sym_line_comment, sym_block_comment, - [147352] = 4, + [147434] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(939), 1, + ACTIONS(7787), 1, anon_sym_RBRACE, STATE(4585), 2, sym_line_comment, sym_block_comment, - [147366] = 4, + [147448] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7149), 1, - anon_sym_RPAREN, + ACTIONS(895), 1, + anon_sym_RBRACE, STATE(4586), 2, sym_line_comment, sym_block_comment, - [147380] = 4, + [147462] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7785), 1, - sym_identifier, + ACTIONS(5872), 1, + anon_sym_LBRACE, STATE(4587), 2, sym_line_comment, sym_block_comment, - [147394] = 4, + [147476] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(927), 1, + ACTIONS(7789), 1, anon_sym_RBRACE, STATE(4588), 2, sym_line_comment, sym_block_comment, - [147408] = 4, + [147490] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7787), 1, + ACTIONS(7791), 1, anon_sym_RBRACE, STATE(4589), 2, sym_line_comment, sym_block_comment, - [147422] = 4, + [147504] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7789), 1, + ACTIONS(7793), 1, anon_sym_RBRACE, STATE(4590), 2, sym_line_comment, sym_block_comment, - [147436] = 4, + [147518] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7791), 1, + ACTIONS(7795), 1, anon_sym_RBRACE, STATE(4591), 2, sym_line_comment, sym_block_comment, - [147450] = 4, + [147532] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7793), 1, + ACTIONS(7797), 1, anon_sym_RBRACE, STATE(4592), 2, sym_line_comment, sym_block_comment, - [147464] = 4, + [147546] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7795), 1, - sym_identifier, + ACTIONS(927), 1, + anon_sym_RBRACE, STATE(4593), 2, sym_line_comment, sym_block_comment, - [147478] = 4, + [147560] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7797), 1, - sym_identifier, + ACTIONS(7799), 1, + anon_sym_RBRACE, STATE(4594), 2, sym_line_comment, sym_block_comment, - [147492] = 4, - ACTIONS(497), 1, + [147574] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7799), 1, - aux_sym_hash_statement_token1, + ACTIONS(875), 1, + anon_sym_RBRACE, STATE(4595), 2, sym_line_comment, sym_block_comment, - [147506] = 4, + [147588] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -309441,197 +309505,197 @@ static const uint16_t ts_small_parse_table[] = { STATE(4596), 2, sym_line_comment, sym_block_comment, - [147520] = 4, + [147602] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7803), 1, + ACTIONS(921), 1, anon_sym_RBRACE, STATE(4597), 2, sym_line_comment, sym_block_comment, - [147534] = 4, + [147616] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7805), 1, - anon_sym_LPAREN, + ACTIONS(7803), 1, + anon_sym_RBRACE, STATE(4598), 2, sym_line_comment, sym_block_comment, - [147548] = 4, + [147630] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7807), 1, - anon_sym_RBRACE, + ACTIONS(1637), 1, + anon_sym_RPAREN, STATE(4599), 2, sym_line_comment, sym_block_comment, - [147562] = 4, + [147644] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7809), 1, - sym_identifier, + ACTIONS(7805), 1, + anon_sym_RBRACE, STATE(4600), 2, sym_line_comment, sym_block_comment, - [147576] = 4, + [147658] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7811), 1, + ACTIONS(7807), 1, anon_sym_RBRACE, STATE(4601), 2, sym_line_comment, sym_block_comment, - [147590] = 4, + [147672] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(937), 1, + ACTIONS(901), 1, anon_sym_RBRACE, STATE(4602), 2, sym_line_comment, sym_block_comment, - [147604] = 4, + [147686] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7813), 1, - anon_sym_LPAREN, + ACTIONS(7809), 1, + anon_sym_RBRACE, STATE(4603), 2, sym_line_comment, sym_block_comment, - [147618] = 4, + [147700] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - sym_identifier, + ACTIONS(7811), 1, + anon_sym_RBRACE, STATE(4604), 2, sym_line_comment, sym_block_comment, - [147632] = 4, + [147714] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7815), 1, + ACTIONS(7813), 1, anon_sym_RBRACE, STATE(4605), 2, sym_line_comment, sym_block_comment, - [147646] = 4, + [147728] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(945), 1, - anon_sym_RBRACE, + ACTIONS(1631), 1, + anon_sym_RPAREN, STATE(4606), 2, sym_line_comment, sym_block_comment, - [147660] = 4, + [147742] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7817), 1, - anon_sym_LPAREN, + ACTIONS(7815), 1, + anon_sym_RBRACE, STATE(4607), 2, sym_line_comment, sym_block_comment, - [147674] = 4, + [147756] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4922), 1, - sym_identifier, + ACTIONS(949), 1, + anon_sym_RBRACE, STATE(4608), 2, sym_line_comment, sym_block_comment, - [147688] = 4, + [147770] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7819), 1, - anon_sym_RBRACE, + ACTIONS(7817), 1, + anon_sym_RBRACK, STATE(4609), 2, sym_line_comment, sym_block_comment, - [147702] = 4, + [147784] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7821), 1, - anon_sym_RBRACE, + ACTIONS(4846), 1, + anon_sym_COLON, STATE(4610), 2, sym_line_comment, sym_block_comment, - [147716] = 4, + [147798] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7823), 1, - anon_sym_LPAREN, + ACTIONS(7819), 1, + anon_sym_RBRACE, STATE(4611), 2, sym_line_comment, sym_block_comment, - [147730] = 4, + [147812] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(949), 1, + ACTIONS(7821), 1, anon_sym_RBRACE, STATE(4612), 2, sym_line_comment, sym_block_comment, - [147744] = 4, + [147826] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7825), 1, + ACTIONS(7823), 1, anon_sym_RBRACE, STATE(4613), 2, sym_line_comment, sym_block_comment, - [147758] = 4, + [147840] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1629), 1, - anon_sym_RPAREN, + ACTIONS(7825), 1, + anon_sym_RBRACE, STATE(4614), 2, sym_line_comment, sym_block_comment, - [147772] = 4, + [147854] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7827), 1, - anon_sym_LPAREN, + anon_sym_RBRACE, STATE(4615), 2, sym_line_comment, sym_block_comment, - [147786] = 4, + [147868] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -309641,137 +309705,137 @@ static const uint16_t ts_small_parse_table[] = { STATE(4616), 2, sym_line_comment, sym_block_comment, - [147800] = 4, + [147882] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(931), 1, - anon_sym_RBRACE, + ACTIONS(7831), 1, + anon_sym_RBRACK, STATE(4617), 2, sym_line_comment, sym_block_comment, - [147814] = 4, + [147896] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7831), 1, - sym_identifier, + ACTIONS(7833), 1, + anon_sym_RBRACE, STATE(4618), 2, sym_line_comment, sym_block_comment, - [147828] = 4, + [147910] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7833), 1, - anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_RBRACE, STATE(4619), 2, sym_line_comment, sym_block_comment, - [147842] = 4, + [147924] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7835), 1, - sym_identifier, + ACTIONS(7837), 1, + anon_sym_RBRACE, STATE(4620), 2, sym_line_comment, sym_block_comment, - [147856] = 4, + [147938] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7837), 1, + ACTIONS(7839), 1, anon_sym_RBRACK, STATE(4621), 2, sym_line_comment, sym_block_comment, - [147870] = 4, + [147952] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7839), 1, - anon_sym_RBRACK, + ACTIONS(4577), 1, + sym_identifier, STATE(4622), 2, sym_line_comment, sym_block_comment, - [147884] = 4, + [147966] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7841), 1, - anon_sym_LPAREN, + anon_sym_RBRACE, STATE(4623), 2, sym_line_comment, sym_block_comment, - [147898] = 4, + [147980] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1627), 1, - anon_sym_RPAREN, + ACTIONS(7843), 1, + anon_sym_RBRACE, STATE(4624), 2, sym_line_comment, sym_block_comment, - [147912] = 4, + [147994] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7843), 1, + ACTIONS(7845), 1, anon_sym_RBRACE, STATE(4625), 2, sym_line_comment, sym_block_comment, - [147926] = 4, + [148008] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6913), 1, - sym_identifier, + ACTIONS(7847), 1, + anon_sym_RBRACE, STATE(4626), 2, sym_line_comment, sym_block_comment, - [147940] = 4, + [148022] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7845), 1, - anon_sym_LPAREN, + ACTIONS(877), 1, + anon_sym_RBRACE, STATE(4627), 2, sym_line_comment, sym_block_comment, - [147954] = 4, + [148036] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7847), 1, - anon_sym_RBRACK, + ACTIONS(887), 1, + anon_sym_RBRACE, STATE(4628), 2, sym_line_comment, sym_block_comment, - [147968] = 4, + [148050] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7849), 1, - anon_sym_RBRACE, + anon_sym_EQ, STATE(4629), 2, sym_line_comment, sym_block_comment, - [147982] = 4, + [148064] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -309781,303 +309845,143 @@ static const uint16_t ts_small_parse_table[] = { STATE(4630), 2, sym_line_comment, sym_block_comment, - [147996] = 4, + [148078] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7853), 1, - anon_sym_LPAREN, + anon_sym_RBRACE, STATE(4631), 2, sym_line_comment, sym_block_comment, - [148010] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, + [148092] = 1, ACTIONS(7855), 1, - sym_identifier, - STATE(4632), 2, - sym_line_comment, - sym_block_comment, - [148024] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7857), 1, - anon_sym_RBRACE, - STATE(4633), 2, - sym_line_comment, - sym_block_comment, - [148038] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7859), 1, - anon_sym_RBRACE, - STATE(4634), 2, - sym_line_comment, - sym_block_comment, - [148052] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7861), 1, - anon_sym_LPAREN, - STATE(4635), 2, - sym_line_comment, - sym_block_comment, - [148066] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7863), 1, - anon_sym_RBRACE, - STATE(4636), 2, - sym_line_comment, - sym_block_comment, - [148080] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(479), 1, - anon_sym_RBRACE, - STATE(4637), 2, - sym_line_comment, - sym_block_comment, - [148094] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7865), 1, - anon_sym_RBRACE, - STATE(4638), 2, - sym_line_comment, - sym_block_comment, - [148108] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(913), 1, - anon_sym_RBRACE, - STATE(4639), 2, - sym_line_comment, - sym_block_comment, - [148122] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(943), 1, - anon_sym_RBRACE, - STATE(4640), 2, - sym_line_comment, - sym_block_comment, - [148136] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7867), 1, - anon_sym_RBRACE, - STATE(4641), 2, - sym_line_comment, - sym_block_comment, - [148150] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7869), 1, - sym_identifier, - STATE(4642), 2, - sym_line_comment, - sym_block_comment, - [148164] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - anon_sym_SLASH_STAR, - ACTIONS(7871), 1, - aux_sym_shebang_token1, - STATE(4643), 2, - sym_line_comment, - sym_block_comment, - [148178] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7873), 1, - anon_sym_RBRACE, - STATE(4644), 2, - sym_line_comment, - sym_block_comment, - [148192] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7875), 1, - anon_sym_RBRACE, - STATE(4645), 2, - sym_line_comment, - sym_block_comment, - [148206] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7877), 1, - anon_sym_RBRACE, - STATE(4646), 2, - sym_line_comment, - sym_block_comment, - [148220] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7879), 1, - anon_sym_RBRACE, - STATE(4647), 2, - sym_line_comment, - sym_block_comment, - [148234] = 1, - ACTIONS(7881), 1, ts_builtin_sym_end, - [148238] = 1, - ACTIONS(7883), 1, + [148096] = 1, + ACTIONS(7857), 1, ts_builtin_sym_end, - [148242] = 1, - ACTIONS(7885), 1, + [148100] = 1, + ACTIONS(7859), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1610)] = 0, - [SMALL_STATE(1611)] = 113, - [SMALL_STATE(1612)] = 212, - [SMALL_STATE(1613)] = 335, - [SMALL_STATE(1614)] = 448, - [SMALL_STATE(1615)] = 541, - [SMALL_STATE(1616)] = 632, - [SMALL_STATE(1617)] = 723, - [SMALL_STATE(1618)] = 824, - [SMALL_STATE(1619)] = 919, - [SMALL_STATE(1620)] = 1014, - [SMALL_STATE(1621)] = 1105, + [SMALL_STATE(1611)] = 93, + [SMALL_STATE(1612)] = 184, + [SMALL_STATE(1613)] = 279, + [SMALL_STATE(1614)] = 372, + [SMALL_STATE(1615)] = 471, + [SMALL_STATE(1616)] = 572, + [SMALL_STATE(1617)] = 663, + [SMALL_STATE(1618)] = 776, + [SMALL_STATE(1619)] = 867, + [SMALL_STATE(1620)] = 980, + [SMALL_STATE(1621)] = 1075, [SMALL_STATE(1622)] = 1198, - [SMALL_STATE(1623)] = 1272, - [SMALL_STATE(1624)] = 1346, - [SMALL_STATE(1625)] = 1424, - [SMALL_STATE(1626)] = 1502, + [SMALL_STATE(1623)] = 1314, + [SMALL_STATE(1624)] = 1392, + [SMALL_STATE(1625)] = 1466, + [SMALL_STATE(1626)] = 1544, [SMALL_STATE(1627)] = 1618, [SMALL_STATE(1628)] = 1691, - [SMALL_STATE(1629)] = 1788, - [SMALL_STATE(1630)] = 1863, - [SMALL_STATE(1631)] = 1990, - [SMALL_STATE(1632)] = 2065, - [SMALL_STATE(1633)] = 2176, - [SMALL_STATE(1634)] = 2249, - [SMALL_STATE(1635)] = 2322, - [SMALL_STATE(1636)] = 2395, - [SMALL_STATE(1637)] = 2522, - [SMALL_STATE(1638)] = 2595, - [SMALL_STATE(1639)] = 2668, - [SMALL_STATE(1640)] = 2741, - [SMALL_STATE(1641)] = 2814, - [SMALL_STATE(1642)] = 2887, - [SMALL_STATE(1643)] = 2960, - [SMALL_STATE(1644)] = 3033, - [SMALL_STATE(1645)] = 3108, - [SMALL_STATE(1646)] = 3201, - [SMALL_STATE(1647)] = 3300, - [SMALL_STATE(1648)] = 3373, - [SMALL_STATE(1649)] = 3448, - [SMALL_STATE(1650)] = 3541, - [SMALL_STATE(1651)] = 3632, - [SMALL_STATE(1652)] = 3709, - [SMALL_STATE(1653)] = 3782, - [SMALL_STATE(1654)] = 3857, - [SMALL_STATE(1655)] = 3946, - [SMALL_STATE(1656)] = 4019, - [SMALL_STATE(1657)] = 4108, - [SMALL_STATE(1658)] = 4219, - [SMALL_STATE(1659)] = 4330, - [SMALL_STATE(1660)] = 4419, - [SMALL_STATE(1661)] = 4494, - [SMALL_STATE(1662)] = 4569, - [SMALL_STATE(1663)] = 4642, - [SMALL_STATE(1664)] = 4715, - [SMALL_STATE(1665)] = 4788, - [SMALL_STATE(1666)] = 4861, - [SMALL_STATE(1667)] = 4934, - [SMALL_STATE(1668)] = 5007, - [SMALL_STATE(1669)] = 5080, + [SMALL_STATE(1629)] = 1764, + [SMALL_STATE(1630)] = 1839, + [SMALL_STATE(1631)] = 1912, + [SMALL_STATE(1632)] = 2023, + [SMALL_STATE(1633)] = 2096, + [SMALL_STATE(1634)] = 2171, + [SMALL_STATE(1635)] = 2244, + [SMALL_STATE(1636)] = 2317, + [SMALL_STATE(1637)] = 2428, + [SMALL_STATE(1638)] = 2501, + [SMALL_STATE(1639)] = 2574, + [SMALL_STATE(1640)] = 2647, + [SMALL_STATE(1641)] = 2720, + [SMALL_STATE(1642)] = 2793, + [SMALL_STATE(1643)] = 2866, + [SMALL_STATE(1644)] = 2959, + [SMALL_STATE(1645)] = 3058, + [SMALL_STATE(1646)] = 3131, + [SMALL_STATE(1647)] = 3204, + [SMALL_STATE(1648)] = 3277, + [SMALL_STATE(1649)] = 3350, + [SMALL_STATE(1650)] = 3447, + [SMALL_STATE(1651)] = 3540, + [SMALL_STATE(1652)] = 3617, + [SMALL_STATE(1653)] = 3708, + [SMALL_STATE(1654)] = 3781, + [SMALL_STATE(1655)] = 3854, + [SMALL_STATE(1656)] = 3927, + [SMALL_STATE(1657)] = 4002, + [SMALL_STATE(1658)] = 4075, + [SMALL_STATE(1659)] = 4148, + [SMALL_STATE(1660)] = 4223, + [SMALL_STATE(1661)] = 4312, + [SMALL_STATE(1662)] = 4401, + [SMALL_STATE(1663)] = 4474, + [SMALL_STATE(1664)] = 4549, + [SMALL_STATE(1665)] = 4624, + [SMALL_STATE(1666)] = 4751, + [SMALL_STATE(1667)] = 4878, + [SMALL_STATE(1668)] = 4953, + [SMALL_STATE(1669)] = 5042, [SMALL_STATE(1670)] = 5153, [SMALL_STATE(1671)] = 5225, - [SMALL_STATE(1672)] = 5301, - [SMALL_STATE(1673)] = 5373, - [SMALL_STATE(1674)] = 5447, - [SMALL_STATE(1675)] = 5521, - [SMALL_STATE(1676)] = 5593, - [SMALL_STATE(1677)] = 5665, - [SMALL_STATE(1678)] = 5737, - [SMALL_STATE(1679)] = 5809, - [SMALL_STATE(1680)] = 5881, - [SMALL_STATE(1681)] = 5953, - [SMALL_STATE(1682)] = 6025, - [SMALL_STATE(1683)] = 6097, - [SMALL_STATE(1684)] = 6169, - [SMALL_STATE(1685)] = 6241, - [SMALL_STATE(1686)] = 6313, - [SMALL_STATE(1687)] = 6385, - [SMALL_STATE(1688)] = 6457, - [SMALL_STATE(1689)] = 6529, - [SMALL_STATE(1690)] = 6601, - [SMALL_STATE(1691)] = 6673, - [SMALL_STATE(1692)] = 6747, - [SMALL_STATE(1693)] = 6819, - [SMALL_STATE(1694)] = 6891, - [SMALL_STATE(1695)] = 6965, - [SMALL_STATE(1696)] = 7037, - [SMALL_STATE(1697)] = 7109, - [SMALL_STATE(1698)] = 7181, - [SMALL_STATE(1699)] = 7253, - [SMALL_STATE(1700)] = 7325, - [SMALL_STATE(1701)] = 7397, - [SMALL_STATE(1702)] = 7469, - [SMALL_STATE(1703)] = 7541, - [SMALL_STATE(1704)] = 7613, - [SMALL_STATE(1705)] = 7685, - [SMALL_STATE(1706)] = 7757, - [SMALL_STATE(1707)] = 7829, - [SMALL_STATE(1708)] = 7903, - [SMALL_STATE(1709)] = 7975, - [SMALL_STATE(1710)] = 8047, - [SMALL_STATE(1711)] = 8119, - [SMALL_STATE(1712)] = 8191, - [SMALL_STATE(1713)] = 8263, - [SMALL_STATE(1714)] = 8335, - [SMALL_STATE(1715)] = 8407, - [SMALL_STATE(1716)] = 8479, - [SMALL_STATE(1717)] = 8551, - [SMALL_STATE(1718)] = 8623, - [SMALL_STATE(1719)] = 8695, - [SMALL_STATE(1720)] = 8767, - [SMALL_STATE(1721)] = 8839, - [SMALL_STATE(1722)] = 8911, - [SMALL_STATE(1723)] = 8983, - [SMALL_STATE(1724)] = 9057, + [SMALL_STATE(1672)] = 5297, + [SMALL_STATE(1673)] = 5369, + [SMALL_STATE(1674)] = 5441, + [SMALL_STATE(1675)] = 5513, + [SMALL_STATE(1676)] = 5585, + [SMALL_STATE(1677)] = 5657, + [SMALL_STATE(1678)] = 5729, + [SMALL_STATE(1679)] = 5801, + [SMALL_STATE(1680)] = 5873, + [SMALL_STATE(1681)] = 5945, + [SMALL_STATE(1682)] = 6017, + [SMALL_STATE(1683)] = 6089, + [SMALL_STATE(1684)] = 6161, + [SMALL_STATE(1685)] = 6235, + [SMALL_STATE(1686)] = 6307, + [SMALL_STATE(1687)] = 6379, + [SMALL_STATE(1688)] = 6451, + [SMALL_STATE(1689)] = 6523, + [SMALL_STATE(1690)] = 6595, + [SMALL_STATE(1691)] = 6667, + [SMALL_STATE(1692)] = 6739, + [SMALL_STATE(1693)] = 6813, + [SMALL_STATE(1694)] = 6887, + [SMALL_STATE(1695)] = 6959, + [SMALL_STATE(1696)] = 7031, + [SMALL_STATE(1697)] = 7103, + [SMALL_STATE(1698)] = 7175, + [SMALL_STATE(1699)] = 7247, + [SMALL_STATE(1700)] = 7319, + [SMALL_STATE(1701)] = 7391, + [SMALL_STATE(1702)] = 7463, + [SMALL_STATE(1703)] = 7539, + [SMALL_STATE(1704)] = 7615, + [SMALL_STATE(1705)] = 7687, + [SMALL_STATE(1706)] = 7759, + [SMALL_STATE(1707)] = 7831, + [SMALL_STATE(1708)] = 7905, + [SMALL_STATE(1709)] = 7977, + [SMALL_STATE(1710)] = 8049, + [SMALL_STATE(1711)] = 8121, + [SMALL_STATE(1712)] = 8195, + [SMALL_STATE(1713)] = 8269, + [SMALL_STATE(1714)] = 8341, + [SMALL_STATE(1715)] = 8413, + [SMALL_STATE(1716)] = 8485, + [SMALL_STATE(1717)] = 8557, + [SMALL_STATE(1718)] = 8629, + [SMALL_STATE(1719)] = 8701, + [SMALL_STATE(1720)] = 8773, + [SMALL_STATE(1721)] = 8845, + [SMALL_STATE(1722)] = 8917, + [SMALL_STATE(1723)] = 8989, + [SMALL_STATE(1724)] = 9061, [SMALL_STATE(1725)] = 9133, [SMALL_STATE(1726)] = 9205, [SMALL_STATE(1727)] = 9277, @@ -310099,229 +310003,229 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1743)] = 10429, [SMALL_STATE(1744)] = 10501, [SMALL_STATE(1745)] = 10573, - [SMALL_STATE(1746)] = 10647, + [SMALL_STATE(1746)] = 10645, [SMALL_STATE(1747)] = 10719, [SMALL_STATE(1748)] = 10791, [SMALL_STATE(1749)] = 10863, [SMALL_STATE(1750)] = 10935, [SMALL_STATE(1751)] = 11007, - [SMALL_STATE(1752)] = 11080, + [SMALL_STATE(1752)] = 11098, [SMALL_STATE(1753)] = 11171, - [SMALL_STATE(1754)] = 11286, - [SMALL_STATE(1755)] = 11401, - [SMALL_STATE(1756)] = 11492, - [SMALL_STATE(1757)] = 11565, - [SMALL_STATE(1758)] = 11638, - [SMALL_STATE(1759)] = 11731, - [SMALL_STATE(1760)] = 11826, - [SMALL_STATE(1761)] = 11927, - [SMALL_STATE(1762)] = 12030, - [SMALL_STATE(1763)] = 12151, - [SMALL_STATE(1764)] = 12246, - [SMALL_STATE(1765)] = 12337, - [SMALL_STATE(1766)] = 12456, - [SMALL_STATE(1767)] = 12575, - [SMALL_STATE(1768)] = 12690, - [SMALL_STATE(1769)] = 12781, - [SMALL_STATE(1770)] = 12896, - [SMALL_STATE(1771)] = 12991, - [SMALL_STATE(1772)] = 13094, - [SMALL_STATE(1773)] = 13195, - [SMALL_STATE(1774)] = 13290, - [SMALL_STATE(1775)] = 13381, - [SMALL_STATE(1776)] = 13474, - [SMALL_STATE(1777)] = 13547, - [SMALL_STATE(1778)] = 13638, - [SMALL_STATE(1779)] = 13711, + [SMALL_STATE(1754)] = 11244, + [SMALL_STATE(1755)] = 11317, + [SMALL_STATE(1756)] = 11412, + [SMALL_STATE(1757)] = 11485, + [SMALL_STATE(1758)] = 11588, + [SMALL_STATE(1759)] = 11689, + [SMALL_STATE(1760)] = 11784, + [SMALL_STATE(1761)] = 11857, + [SMALL_STATE(1762)] = 11950, + [SMALL_STATE(1763)] = 12023, + [SMALL_STATE(1764)] = 12118, + [SMALL_STATE(1765)] = 12221, + [SMALL_STATE(1766)] = 12322, + [SMALL_STATE(1767)] = 12437, + [SMALL_STATE(1768)] = 12532, + [SMALL_STATE(1769)] = 12623, + [SMALL_STATE(1770)] = 12716, + [SMALL_STATE(1771)] = 12807, + [SMALL_STATE(1772)] = 12928, + [SMALL_STATE(1773)] = 13043, + [SMALL_STATE(1774)] = 13158, + [SMALL_STATE(1775)] = 13249, + [SMALL_STATE(1776)] = 13364, + [SMALL_STATE(1777)] = 13483, + [SMALL_STATE(1778)] = 13574, + [SMALL_STATE(1779)] = 13693, [SMALL_STATE(1780)] = 13784, [SMALL_STATE(1781)] = 13854, [SMALL_STATE(1782)] = 13924, [SMALL_STATE(1783)] = 13994, [SMALL_STATE(1784)] = 14064, - [SMALL_STATE(1785)] = 14134, - [SMALL_STATE(1786)] = 14204, - [SMALL_STATE(1787)] = 14274, - [SMALL_STATE(1788)] = 14344, - [SMALL_STATE(1789)] = 14414, - [SMALL_STATE(1790)] = 14484, - [SMALL_STATE(1791)] = 14554, - [SMALL_STATE(1792)] = 14624, - [SMALL_STATE(1793)] = 14694, - [SMALL_STATE(1794)] = 14766, - [SMALL_STATE(1795)] = 14836, - [SMALL_STATE(1796)] = 14906, - [SMALL_STATE(1797)] = 14976, - [SMALL_STATE(1798)] = 15046, - [SMALL_STATE(1799)] = 15116, - [SMALL_STATE(1800)] = 15186, - [SMALL_STATE(1801)] = 15256, - [SMALL_STATE(1802)] = 15326, - [SMALL_STATE(1803)] = 15396, - [SMALL_STATE(1804)] = 15466, - [SMALL_STATE(1805)] = 15536, - [SMALL_STATE(1806)] = 15606, - [SMALL_STATE(1807)] = 15676, - [SMALL_STATE(1808)] = 15746, - [SMALL_STATE(1809)] = 15816, - [SMALL_STATE(1810)] = 15886, - [SMALL_STATE(1811)] = 15956, - [SMALL_STATE(1812)] = 16026, - [SMALL_STATE(1813)] = 16096, - [SMALL_STATE(1814)] = 16166, - [SMALL_STATE(1815)] = 16236, - [SMALL_STATE(1816)] = 16306, - [SMALL_STATE(1817)] = 16376, - [SMALL_STATE(1818)] = 16446, - [SMALL_STATE(1819)] = 16516, - [SMALL_STATE(1820)] = 16586, - [SMALL_STATE(1821)] = 16656, - [SMALL_STATE(1822)] = 16726, - [SMALL_STATE(1823)] = 16796, - [SMALL_STATE(1824)] = 16866, - [SMALL_STATE(1825)] = 16936, - [SMALL_STATE(1826)] = 17006, - [SMALL_STATE(1827)] = 17076, - [SMALL_STATE(1828)] = 17146, - [SMALL_STATE(1829)] = 17216, - [SMALL_STATE(1830)] = 17286, - [SMALL_STATE(1831)] = 17356, - [SMALL_STATE(1832)] = 17430, - [SMALL_STATE(1833)] = 17504, - [SMALL_STATE(1834)] = 17574, - [SMALL_STATE(1835)] = 17644, - [SMALL_STATE(1836)] = 17714, - [SMALL_STATE(1837)] = 17786, - [SMALL_STATE(1838)] = 17856, - [SMALL_STATE(1839)] = 17926, - [SMALL_STATE(1840)] = 17996, - [SMALL_STATE(1841)] = 18066, - [SMALL_STATE(1842)] = 18136, - [SMALL_STATE(1843)] = 18206, - [SMALL_STATE(1844)] = 18276, - [SMALL_STATE(1845)] = 18348, - [SMALL_STATE(1846)] = 18418, - [SMALL_STATE(1847)] = 18488, - [SMALL_STATE(1848)] = 18580, - [SMALL_STATE(1849)] = 18674, - [SMALL_STATE(1850)] = 18744, - [SMALL_STATE(1851)] = 18844, - [SMALL_STATE(1852)] = 18946, - [SMALL_STATE(1853)] = 19016, - [SMALL_STATE(1854)] = 19110, - [SMALL_STATE(1855)] = 19180, - [SMALL_STATE(1856)] = 19254, - [SMALL_STATE(1857)] = 19324, - [SMALL_STATE(1858)] = 19438, - [SMALL_STATE(1859)] = 19508, - [SMALL_STATE(1860)] = 19578, - [SMALL_STATE(1861)] = 19648, - [SMALL_STATE(1862)] = 19718, - [SMALL_STATE(1863)] = 19790, - [SMALL_STATE(1864)] = 19864, - [SMALL_STATE(1865)] = 19978, - [SMALL_STATE(1866)] = 20048, - [SMALL_STATE(1867)] = 20118, - [SMALL_STATE(1868)] = 20188, - [SMALL_STATE(1869)] = 20258, - [SMALL_STATE(1870)] = 20328, - [SMALL_STATE(1871)] = 20398, - [SMALL_STATE(1872)] = 20468, - [SMALL_STATE(1873)] = 20546, - [SMALL_STATE(1874)] = 20616, - [SMALL_STATE(1875)] = 20686, - [SMALL_STATE(1876)] = 20800, - [SMALL_STATE(1877)] = 20870, - [SMALL_STATE(1878)] = 20984, - [SMALL_STATE(1879)] = 21054, - [SMALL_STATE(1880)] = 21124, - [SMALL_STATE(1881)] = 21194, - [SMALL_STATE(1882)] = 21264, - [SMALL_STATE(1883)] = 21334, - [SMALL_STATE(1884)] = 21404, - [SMALL_STATE(1885)] = 21474, - [SMALL_STATE(1886)] = 21544, - [SMALL_STATE(1887)] = 21614, - [SMALL_STATE(1888)] = 21684, - [SMALL_STATE(1889)] = 21754, - [SMALL_STATE(1890)] = 21824, - [SMALL_STATE(1891)] = 21894, - [SMALL_STATE(1892)] = 21964, - [SMALL_STATE(1893)] = 22034, - [SMALL_STATE(1894)] = 22104, - [SMALL_STATE(1895)] = 22174, + [SMALL_STATE(1785)] = 14178, + [SMALL_STATE(1786)] = 14248, + [SMALL_STATE(1787)] = 14318, + [SMALL_STATE(1788)] = 14388, + [SMALL_STATE(1789)] = 14458, + [SMALL_STATE(1790)] = 14528, + [SMALL_STATE(1791)] = 14600, + [SMALL_STATE(1792)] = 14674, + [SMALL_STATE(1793)] = 14748, + [SMALL_STATE(1794)] = 14818, + [SMALL_STATE(1795)] = 14932, + [SMALL_STATE(1796)] = 15002, + [SMALL_STATE(1797)] = 15072, + [SMALL_STATE(1798)] = 15164, + [SMALL_STATE(1799)] = 15234, + [SMALL_STATE(1800)] = 15328, + [SMALL_STATE(1801)] = 15398, + [SMALL_STATE(1802)] = 15468, + [SMALL_STATE(1803)] = 15538, + [SMALL_STATE(1804)] = 15608, + [SMALL_STATE(1805)] = 15678, + [SMALL_STATE(1806)] = 15748, + [SMALL_STATE(1807)] = 15848, + [SMALL_STATE(1808)] = 15950, + [SMALL_STATE(1809)] = 16044, + [SMALL_STATE(1810)] = 16158, + [SMALL_STATE(1811)] = 16228, + [SMALL_STATE(1812)] = 16298, + [SMALL_STATE(1813)] = 16368, + [SMALL_STATE(1814)] = 16440, + [SMALL_STATE(1815)] = 16510, + [SMALL_STATE(1816)] = 16580, + [SMALL_STATE(1817)] = 16650, + [SMALL_STATE(1818)] = 16720, + [SMALL_STATE(1819)] = 16790, + [SMALL_STATE(1820)] = 16860, + [SMALL_STATE(1821)] = 16930, + [SMALL_STATE(1822)] = 17004, + [SMALL_STATE(1823)] = 17078, + [SMALL_STATE(1824)] = 17148, + [SMALL_STATE(1825)] = 17218, + [SMALL_STATE(1826)] = 17288, + [SMALL_STATE(1827)] = 17358, + [SMALL_STATE(1828)] = 17428, + [SMALL_STATE(1829)] = 17498, + [SMALL_STATE(1830)] = 17568, + [SMALL_STATE(1831)] = 17638, + [SMALL_STATE(1832)] = 17708, + [SMALL_STATE(1833)] = 17778, + [SMALL_STATE(1834)] = 17850, + [SMALL_STATE(1835)] = 17920, + [SMALL_STATE(1836)] = 17990, + [SMALL_STATE(1837)] = 18060, + [SMALL_STATE(1838)] = 18130, + [SMALL_STATE(1839)] = 18200, + [SMALL_STATE(1840)] = 18270, + [SMALL_STATE(1841)] = 18340, + [SMALL_STATE(1842)] = 18410, + [SMALL_STATE(1843)] = 18480, + [SMALL_STATE(1844)] = 18550, + [SMALL_STATE(1845)] = 18620, + [SMALL_STATE(1846)] = 18690, + [SMALL_STATE(1847)] = 18760, + [SMALL_STATE(1848)] = 18830, + [SMALL_STATE(1849)] = 18900, + [SMALL_STATE(1850)] = 18970, + [SMALL_STATE(1851)] = 19040, + [SMALL_STATE(1852)] = 19112, + [SMALL_STATE(1853)] = 19182, + [SMALL_STATE(1854)] = 19252, + [SMALL_STATE(1855)] = 19322, + [SMALL_STATE(1856)] = 19392, + [SMALL_STATE(1857)] = 19462, + [SMALL_STATE(1858)] = 19532, + [SMALL_STATE(1859)] = 19602, + [SMALL_STATE(1860)] = 19672, + [SMALL_STATE(1861)] = 19742, + [SMALL_STATE(1862)] = 19812, + [SMALL_STATE(1863)] = 19882, + [SMALL_STATE(1864)] = 19952, + [SMALL_STATE(1865)] = 20022, + [SMALL_STATE(1866)] = 20092, + [SMALL_STATE(1867)] = 20162, + [SMALL_STATE(1868)] = 20232, + [SMALL_STATE(1869)] = 20302, + [SMALL_STATE(1870)] = 20372, + [SMALL_STATE(1871)] = 20442, + [SMALL_STATE(1872)] = 20512, + [SMALL_STATE(1873)] = 20582, + [SMALL_STATE(1874)] = 20652, + [SMALL_STATE(1875)] = 20722, + [SMALL_STATE(1876)] = 20792, + [SMALL_STATE(1877)] = 20862, + [SMALL_STATE(1878)] = 20932, + [SMALL_STATE(1879)] = 21002, + [SMALL_STATE(1880)] = 21072, + [SMALL_STATE(1881)] = 21142, + [SMALL_STATE(1882)] = 21256, + [SMALL_STATE(1883)] = 21326, + [SMALL_STATE(1884)] = 21396, + [SMALL_STATE(1885)] = 21466, + [SMALL_STATE(1886)] = 21536, + [SMALL_STATE(1887)] = 21606, + [SMALL_STATE(1888)] = 21676, + [SMALL_STATE(1889)] = 21746, + [SMALL_STATE(1890)] = 21816, + [SMALL_STATE(1891)] = 21886, + [SMALL_STATE(1892)] = 21956, + [SMALL_STATE(1893)] = 22026, + [SMALL_STATE(1894)] = 22096, + [SMALL_STATE(1895)] = 22166, [SMALL_STATE(1896)] = 22244, [SMALL_STATE(1897)] = 22314, [SMALL_STATE(1898)] = 22384, [SMALL_STATE(1899)] = 22454, [SMALL_STATE(1900)] = 22525, - [SMALL_STATE(1901)] = 22638, - [SMALL_STATE(1902)] = 22709, - [SMALL_STATE(1903)] = 22822, - [SMALL_STATE(1904)] = 22899, - [SMALL_STATE(1905)] = 22966, + [SMALL_STATE(1901)] = 22596, + [SMALL_STATE(1902)] = 22663, + [SMALL_STATE(1903)] = 22740, + [SMALL_STATE(1904)] = 22853, + [SMALL_STATE(1905)] = 22924, [SMALL_STATE(1906)] = 23037, [SMALL_STATE(1907)] = 23150, - [SMALL_STATE(1908)] = 23219, - [SMALL_STATE(1909)] = 23332, - [SMALL_STATE(1910)] = 23403, - [SMALL_STATE(1911)] = 23474, + [SMALL_STATE(1908)] = 23221, + [SMALL_STATE(1909)] = 23292, + [SMALL_STATE(1910)] = 23363, + [SMALL_STATE(1911)] = 23476, [SMALL_STATE(1912)] = 23545, - [SMALL_STATE(1913)] = 23613, + [SMALL_STATE(1913)] = 23617, [SMALL_STATE(1914)] = 23685, [SMALL_STATE(1915)] = 23753, [SMALL_STATE(1916)] = 23821, [SMALL_STATE(1917)] = 23889, - [SMALL_STATE(1918)] = 23959, - [SMALL_STATE(1919)] = 24027, - [SMALL_STATE(1920)] = 24095, + [SMALL_STATE(1918)] = 23957, + [SMALL_STATE(1919)] = 24025, + [SMALL_STATE(1920)] = 24093, [SMALL_STATE(1921)] = 24163, - [SMALL_STATE(1922)] = 24231, - [SMALL_STATE(1923)] = 24299, - [SMALL_STATE(1924)] = 24367, - [SMALL_STATE(1925)] = 24435, - [SMALL_STATE(1926)] = 24503, - [SMALL_STATE(1927)] = 24571, - [SMALL_STATE(1928)] = 24639, - [SMALL_STATE(1929)] = 24707, - [SMALL_STATE(1930)] = 24775, - [SMALL_STATE(1931)] = 24843, - [SMALL_STATE(1932)] = 24911, - [SMALL_STATE(1933)] = 24979, - [SMALL_STATE(1934)] = 25047, - [SMALL_STATE(1935)] = 25115, - [SMALL_STATE(1936)] = 25183, - [SMALL_STATE(1937)] = 25251, - [SMALL_STATE(1938)] = 25319, - [SMALL_STATE(1939)] = 25387, - [SMALL_STATE(1940)] = 25455, - [SMALL_STATE(1941)] = 25523, - [SMALL_STATE(1942)] = 25591, - [SMALL_STATE(1943)] = 25659, - [SMALL_STATE(1944)] = 25727, - [SMALL_STATE(1945)] = 25797, - [SMALL_STATE(1946)] = 25865, - [SMALL_STATE(1947)] = 25933, - [SMALL_STATE(1948)] = 26001, - [SMALL_STATE(1949)] = 26069, - [SMALL_STATE(1950)] = 26137, - [SMALL_STATE(1951)] = 26205, - [SMALL_STATE(1952)] = 26273, - [SMALL_STATE(1953)] = 26341, - [SMALL_STATE(1954)] = 26409, - [SMALL_STATE(1955)] = 26477, - [SMALL_STATE(1956)] = 26545, - [SMALL_STATE(1957)] = 26615, - [SMALL_STATE(1958)] = 26683, - [SMALL_STATE(1959)] = 26751, - [SMALL_STATE(1960)] = 26819, - [SMALL_STATE(1961)] = 26887, - [SMALL_STATE(1962)] = 26955, - [SMALL_STATE(1963)] = 27023, - [SMALL_STATE(1964)] = 27091, - [SMALL_STATE(1965)] = 27159, - [SMALL_STATE(1966)] = 27227, - [SMALL_STATE(1967)] = 27297, - [SMALL_STATE(1968)] = 27365, + [SMALL_STATE(1922)] = 24233, + [SMALL_STATE(1923)] = 24301, + [SMALL_STATE(1924)] = 24369, + [SMALL_STATE(1925)] = 24439, + [SMALL_STATE(1926)] = 24507, + [SMALL_STATE(1927)] = 24575, + [SMALL_STATE(1928)] = 24643, + [SMALL_STATE(1929)] = 24711, + [SMALL_STATE(1930)] = 24779, + [SMALL_STATE(1931)] = 24847, + [SMALL_STATE(1932)] = 24915, + [SMALL_STATE(1933)] = 24983, + [SMALL_STATE(1934)] = 25051, + [SMALL_STATE(1935)] = 25119, + [SMALL_STATE(1936)] = 25187, + [SMALL_STATE(1937)] = 25255, + [SMALL_STATE(1938)] = 25323, + [SMALL_STATE(1939)] = 25391, + [SMALL_STATE(1940)] = 25459, + [SMALL_STATE(1941)] = 25527, + [SMALL_STATE(1942)] = 25595, + [SMALL_STATE(1943)] = 25663, + [SMALL_STATE(1944)] = 25731, + [SMALL_STATE(1945)] = 25799, + [SMALL_STATE(1946)] = 25867, + [SMALL_STATE(1947)] = 25935, + [SMALL_STATE(1948)] = 26003, + [SMALL_STATE(1949)] = 26071, + [SMALL_STATE(1950)] = 26139, + [SMALL_STATE(1951)] = 26207, + [SMALL_STATE(1952)] = 26275, + [SMALL_STATE(1953)] = 26343, + [SMALL_STATE(1954)] = 26411, + [SMALL_STATE(1955)] = 26481, + [SMALL_STATE(1956)] = 26549, + [SMALL_STATE(1957)] = 26617, + [SMALL_STATE(1958)] = 26685, + [SMALL_STATE(1959)] = 26753, + [SMALL_STATE(1960)] = 26821, + [SMALL_STATE(1961)] = 26891, + [SMALL_STATE(1962)] = 26959, + [SMALL_STATE(1963)] = 27027, + [SMALL_STATE(1964)] = 27095, + [SMALL_STATE(1965)] = 27163, + [SMALL_STATE(1966)] = 27231, + [SMALL_STATE(1967)] = 27299, + [SMALL_STATE(1968)] = 27367, [SMALL_STATE(1969)] = 27435, [SMALL_STATE(1970)] = 27503, [SMALL_STATE(1971)] = 27571, @@ -310335,135 +310239,135 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1979)] = 28115, [SMALL_STATE(1980)] = 28183, [SMALL_STATE(1981)] = 28251, - [SMALL_STATE(1982)] = 28319, - [SMALL_STATE(1983)] = 28387, - [SMALL_STATE(1984)] = 28455, - [SMALL_STATE(1985)] = 28523, - [SMALL_STATE(1986)] = 28591, - [SMALL_STATE(1987)] = 28659, - [SMALL_STATE(1988)] = 28727, - [SMALL_STATE(1989)] = 28795, - [SMALL_STATE(1990)] = 28863, - [SMALL_STATE(1991)] = 28931, - [SMALL_STATE(1992)] = 28999, - [SMALL_STATE(1993)] = 29067, - [SMALL_STATE(1994)] = 29135, - [SMALL_STATE(1995)] = 29203, - [SMALL_STATE(1996)] = 29271, - [SMALL_STATE(1997)] = 29339, - [SMALL_STATE(1998)] = 29407, - [SMALL_STATE(1999)] = 29475, - [SMALL_STATE(2000)] = 29543, - [SMALL_STATE(2001)] = 29611, - [SMALL_STATE(2002)] = 29679, - [SMALL_STATE(2003)] = 29747, - [SMALL_STATE(2004)] = 29815, - [SMALL_STATE(2005)] = 29883, - [SMALL_STATE(2006)] = 29951, - [SMALL_STATE(2007)] = 30019, - [SMALL_STATE(2008)] = 30087, - [SMALL_STATE(2009)] = 30155, - [SMALL_STATE(2010)] = 30227, - [SMALL_STATE(2011)] = 30297, - [SMALL_STATE(2012)] = 30365, - [SMALL_STATE(2013)] = 30433, - [SMALL_STATE(2014)] = 30501, - [SMALL_STATE(2015)] = 30569, - [SMALL_STATE(2016)] = 30637, - [SMALL_STATE(2017)] = 30705, - [SMALL_STATE(2018)] = 30773, - [SMALL_STATE(2019)] = 30841, - [SMALL_STATE(2020)] = 30911, - [SMALL_STATE(2021)] = 30979, - [SMALL_STATE(2022)] = 31047, - [SMALL_STATE(2023)] = 31115, - [SMALL_STATE(2024)] = 31183, - [SMALL_STATE(2025)] = 31251, - [SMALL_STATE(2026)] = 31319, - [SMALL_STATE(2027)] = 31387, - [SMALL_STATE(2028)] = 31455, - [SMALL_STATE(2029)] = 31523, - [SMALL_STATE(2030)] = 31591, - [SMALL_STATE(2031)] = 31659, - [SMALL_STATE(2032)] = 31727, - [SMALL_STATE(2033)] = 31795, - [SMALL_STATE(2034)] = 31863, - [SMALL_STATE(2035)] = 31931, - [SMALL_STATE(2036)] = 31999, - [SMALL_STATE(2037)] = 32067, - [SMALL_STATE(2038)] = 32135, - [SMALL_STATE(2039)] = 32203, - [SMALL_STATE(2040)] = 32271, - [SMALL_STATE(2041)] = 32339, - [SMALL_STATE(2042)] = 32407, - [SMALL_STATE(2043)] = 32475, - [SMALL_STATE(2044)] = 32543, - [SMALL_STATE(2045)] = 32611, - [SMALL_STATE(2046)] = 32679, - [SMALL_STATE(2047)] = 32747, - [SMALL_STATE(2048)] = 32815, - [SMALL_STATE(2049)] = 32883, - [SMALL_STATE(2050)] = 32951, - [SMALL_STATE(2051)] = 33019, - [SMALL_STATE(2052)] = 33087, - [SMALL_STATE(2053)] = 33155, - [SMALL_STATE(2054)] = 33223, - [SMALL_STATE(2055)] = 33291, - [SMALL_STATE(2056)] = 33359, - [SMALL_STATE(2057)] = 33427, - [SMALL_STATE(2058)] = 33495, - [SMALL_STATE(2059)] = 33563, - [SMALL_STATE(2060)] = 33631, - [SMALL_STATE(2061)] = 33699, - [SMALL_STATE(2062)] = 33767, - [SMALL_STATE(2063)] = 33837, - [SMALL_STATE(2064)] = 33905, - [SMALL_STATE(2065)] = 33973, - [SMALL_STATE(2066)] = 34041, - [SMALL_STATE(2067)] = 34109, - [SMALL_STATE(2068)] = 34177, - [SMALL_STATE(2069)] = 34245, - [SMALL_STATE(2070)] = 34313, - [SMALL_STATE(2071)] = 34381, - [SMALL_STATE(2072)] = 34449, - [SMALL_STATE(2073)] = 34517, - [SMALL_STATE(2074)] = 34585, - [SMALL_STATE(2075)] = 34653, - [SMALL_STATE(2076)] = 34721, - [SMALL_STATE(2077)] = 34789, - [SMALL_STATE(2078)] = 34857, - [SMALL_STATE(2079)] = 34925, - [SMALL_STATE(2080)] = 34993, - [SMALL_STATE(2081)] = 35061, - [SMALL_STATE(2082)] = 35129, - [SMALL_STATE(2083)] = 35197, - [SMALL_STATE(2084)] = 35265, - [SMALL_STATE(2085)] = 35333, - [SMALL_STATE(2086)] = 35401, - [SMALL_STATE(2087)] = 35469, - [SMALL_STATE(2088)] = 35537, - [SMALL_STATE(2089)] = 35605, - [SMALL_STATE(2090)] = 35673, - [SMALL_STATE(2091)] = 35741, - [SMALL_STATE(2092)] = 35809, - [SMALL_STATE(2093)] = 35877, - [SMALL_STATE(2094)] = 35945, - [SMALL_STATE(2095)] = 36013, - [SMALL_STATE(2096)] = 36085, - [SMALL_STATE(2097)] = 36153, - [SMALL_STATE(2098)] = 36221, - [SMALL_STATE(2099)] = 36289, - [SMALL_STATE(2100)] = 36359, - [SMALL_STATE(2101)] = 36427, - [SMALL_STATE(2102)] = 36495, - [SMALL_STATE(2103)] = 36565, - [SMALL_STATE(2104)] = 36637, - [SMALL_STATE(2105)] = 36705, - [SMALL_STATE(2106)] = 36773, + [SMALL_STATE(1982)] = 28321, + [SMALL_STATE(1983)] = 28389, + [SMALL_STATE(1984)] = 28459, + [SMALL_STATE(1985)] = 28527, + [SMALL_STATE(1986)] = 28595, + [SMALL_STATE(1987)] = 28663, + [SMALL_STATE(1988)] = 28731, + [SMALL_STATE(1989)] = 28799, + [SMALL_STATE(1990)] = 28867, + [SMALL_STATE(1991)] = 28935, + [SMALL_STATE(1992)] = 29003, + [SMALL_STATE(1993)] = 29071, + [SMALL_STATE(1994)] = 29139, + [SMALL_STATE(1995)] = 29207, + [SMALL_STATE(1996)] = 29275, + [SMALL_STATE(1997)] = 29343, + [SMALL_STATE(1998)] = 29411, + [SMALL_STATE(1999)] = 29479, + [SMALL_STATE(2000)] = 29547, + [SMALL_STATE(2001)] = 29615, + [SMALL_STATE(2002)] = 29683, + [SMALL_STATE(2003)] = 29751, + [SMALL_STATE(2004)] = 29821, + [SMALL_STATE(2005)] = 29889, + [SMALL_STATE(2006)] = 29957, + [SMALL_STATE(2007)] = 30025, + [SMALL_STATE(2008)] = 30097, + [SMALL_STATE(2009)] = 30165, + [SMALL_STATE(2010)] = 30233, + [SMALL_STATE(2011)] = 30301, + [SMALL_STATE(2012)] = 30369, + [SMALL_STATE(2013)] = 30437, + [SMALL_STATE(2014)] = 30505, + [SMALL_STATE(2015)] = 30573, + [SMALL_STATE(2016)] = 30641, + [SMALL_STATE(2017)] = 30709, + [SMALL_STATE(2018)] = 30777, + [SMALL_STATE(2019)] = 30845, + [SMALL_STATE(2020)] = 30913, + [SMALL_STATE(2021)] = 30981, + [SMALL_STATE(2022)] = 31049, + [SMALL_STATE(2023)] = 31117, + [SMALL_STATE(2024)] = 31185, + [SMALL_STATE(2025)] = 31253, + [SMALL_STATE(2026)] = 31321, + [SMALL_STATE(2027)] = 31389, + [SMALL_STATE(2028)] = 31457, + [SMALL_STATE(2029)] = 31525, + [SMALL_STATE(2030)] = 31593, + [SMALL_STATE(2031)] = 31661, + [SMALL_STATE(2032)] = 31729, + [SMALL_STATE(2033)] = 31797, + [SMALL_STATE(2034)] = 31865, + [SMALL_STATE(2035)] = 31933, + [SMALL_STATE(2036)] = 32001, + [SMALL_STATE(2037)] = 32069, + [SMALL_STATE(2038)] = 32137, + [SMALL_STATE(2039)] = 32205, + [SMALL_STATE(2040)] = 32273, + [SMALL_STATE(2041)] = 32341, + [SMALL_STATE(2042)] = 32409, + [SMALL_STATE(2043)] = 32477, + [SMALL_STATE(2044)] = 32545, + [SMALL_STATE(2045)] = 32613, + [SMALL_STATE(2046)] = 32681, + [SMALL_STATE(2047)] = 32749, + [SMALL_STATE(2048)] = 32817, + [SMALL_STATE(2049)] = 32885, + [SMALL_STATE(2050)] = 32953, + [SMALL_STATE(2051)] = 33021, + [SMALL_STATE(2052)] = 33089, + [SMALL_STATE(2053)] = 33157, + [SMALL_STATE(2054)] = 33229, + [SMALL_STATE(2055)] = 33299, + [SMALL_STATE(2056)] = 33367, + [SMALL_STATE(2057)] = 33435, + [SMALL_STATE(2058)] = 33503, + [SMALL_STATE(2059)] = 33571, + [SMALL_STATE(2060)] = 33639, + [SMALL_STATE(2061)] = 33707, + [SMALL_STATE(2062)] = 33775, + [SMALL_STATE(2063)] = 33843, + [SMALL_STATE(2064)] = 33911, + [SMALL_STATE(2065)] = 33979, + [SMALL_STATE(2066)] = 34047, + [SMALL_STATE(2067)] = 34115, + [SMALL_STATE(2068)] = 34183, + [SMALL_STATE(2069)] = 34251, + [SMALL_STATE(2070)] = 34319, + [SMALL_STATE(2071)] = 34387, + [SMALL_STATE(2072)] = 34455, + [SMALL_STATE(2073)] = 34523, + [SMALL_STATE(2074)] = 34591, + [SMALL_STATE(2075)] = 34659, + [SMALL_STATE(2076)] = 34727, + [SMALL_STATE(2077)] = 34795, + [SMALL_STATE(2078)] = 34863, + [SMALL_STATE(2079)] = 34931, + [SMALL_STATE(2080)] = 34999, + [SMALL_STATE(2081)] = 35067, + [SMALL_STATE(2082)] = 35135, + [SMALL_STATE(2083)] = 35203, + [SMALL_STATE(2084)] = 35271, + [SMALL_STATE(2085)] = 35339, + [SMALL_STATE(2086)] = 35407, + [SMALL_STATE(2087)] = 35475, + [SMALL_STATE(2088)] = 35543, + [SMALL_STATE(2089)] = 35611, + [SMALL_STATE(2090)] = 35679, + [SMALL_STATE(2091)] = 35747, + [SMALL_STATE(2092)] = 35815, + [SMALL_STATE(2093)] = 35883, + [SMALL_STATE(2094)] = 35951, + [SMALL_STATE(2095)] = 36019, + [SMALL_STATE(2096)] = 36089, + [SMALL_STATE(2097)] = 36157, + [SMALL_STATE(2098)] = 36225, + [SMALL_STATE(2099)] = 36293, + [SMALL_STATE(2100)] = 36363, + [SMALL_STATE(2101)] = 36431, + [SMALL_STATE(2102)] = 36499, + [SMALL_STATE(2103)] = 36571, + [SMALL_STATE(2104)] = 36639, + [SMALL_STATE(2105)] = 36707, + [SMALL_STATE(2106)] = 36775, [SMALL_STATE(2107)] = 36843, [SMALL_STATE(2108)] = 36911, - [SMALL_STATE(2109)] = 36981, - [SMALL_STATE(2110)] = 37049, + [SMALL_STATE(2109)] = 36979, + [SMALL_STATE(2110)] = 37047, [SMALL_STATE(2111)] = 37117, [SMALL_STATE(2112)] = 37185, [SMALL_STATE(2113)] = 37253, @@ -310475,842 +310379,842 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2119)] = 37658, [SMALL_STATE(2120)] = 37725, [SMALL_STATE(2121)] = 37792, - [SMALL_STATE(2122)] = 37874, - [SMALL_STATE(2123)] = 37956, + [SMALL_STATE(2122)] = 37862, + [SMALL_STATE(2123)] = 37944, [SMALL_STATE(2124)] = 38026, [SMALL_STATE(2125)] = 38108, - [SMALL_STATE(2126)] = 38177, - [SMALL_STATE(2127)] = 38246, + [SMALL_STATE(2126)] = 38179, + [SMALL_STATE(2127)] = 38248, [SMALL_STATE(2128)] = 38317, [SMALL_STATE(2129)] = 38383, [SMALL_STATE(2130)] = 38447, - [SMALL_STATE(2131)] = 38511, - [SMALL_STATE(2132)] = 38577, - [SMALL_STATE(2133)] = 38643, - [SMALL_STATE(2134)] = 38707, - [SMALL_STATE(2135)] = 38771, - [SMALL_STATE(2136)] = 38835, - [SMALL_STATE(2137)] = 38903, - [SMALL_STATE(2138)] = 39011, - [SMALL_STATE(2139)] = 39075, - [SMALL_STATE(2140)] = 39139, - [SMALL_STATE(2141)] = 39203, + [SMALL_STATE(2131)] = 38513, + [SMALL_STATE(2132)] = 38581, + [SMALL_STATE(2133)] = 38645, + [SMALL_STATE(2134)] = 38709, + [SMALL_STATE(2135)] = 38773, + [SMALL_STATE(2136)] = 38837, + [SMALL_STATE(2137)] = 38901, + [SMALL_STATE(2138)] = 39009, + [SMALL_STATE(2139)] = 39073, + [SMALL_STATE(2140)] = 39137, + [SMALL_STATE(2141)] = 39201, [SMALL_STATE(2142)] = 39267, - [SMALL_STATE(2143)] = 39333, - [SMALL_STATE(2144)] = 39397, + [SMALL_STATE(2143)] = 39331, + [SMALL_STATE(2144)] = 39395, [SMALL_STATE(2145)] = 39461, [SMALL_STATE(2146)] = 39525, - [SMALL_STATE(2147)] = 39608, - [SMALL_STATE(2148)] = 39671, - [SMALL_STATE(2149)] = 39734, - [SMALL_STATE(2150)] = 39797, - [SMALL_STATE(2151)] = 39860, - [SMALL_STATE(2152)] = 39923, - [SMALL_STATE(2153)] = 39986, - [SMALL_STATE(2154)] = 40049, - [SMALL_STATE(2155)] = 40112, - [SMALL_STATE(2156)] = 40175, - [SMALL_STATE(2157)] = 40240, - [SMALL_STATE(2158)] = 40303, - [SMALL_STATE(2159)] = 40366, - [SMALL_STATE(2160)] = 40431, - [SMALL_STATE(2161)] = 40494, - [SMALL_STATE(2162)] = 40557, - [SMALL_STATE(2163)] = 40620, - [SMALL_STATE(2164)] = 40683, - [SMALL_STATE(2165)] = 40746, - [SMALL_STATE(2166)] = 40811, - [SMALL_STATE(2167)] = 40874, - [SMALL_STATE(2168)] = 40937, - [SMALL_STATE(2169)] = 41038, - [SMALL_STATE(2170)] = 41101, - [SMALL_STATE(2171)] = 41164, - [SMALL_STATE(2172)] = 41227, - [SMALL_STATE(2173)] = 41290, - [SMALL_STATE(2174)] = 41353, - [SMALL_STATE(2175)] = 41416, - [SMALL_STATE(2176)] = 41479, - [SMALL_STATE(2177)] = 41542, - [SMALL_STATE(2178)] = 41605, - [SMALL_STATE(2179)] = 41668, - [SMALL_STATE(2180)] = 41731, - [SMALL_STATE(2181)] = 41794, - [SMALL_STATE(2182)] = 41857, - [SMALL_STATE(2183)] = 41920, - [SMALL_STATE(2184)] = 41983, - [SMALL_STATE(2185)] = 42046, - [SMALL_STATE(2186)] = 42109, - [SMALL_STATE(2187)] = 42172, - [SMALL_STATE(2188)] = 42235, - [SMALL_STATE(2189)] = 42298, - [SMALL_STATE(2190)] = 42361, - [SMALL_STATE(2191)] = 42424, - [SMALL_STATE(2192)] = 42487, - [SMALL_STATE(2193)] = 42568, - [SMALL_STATE(2194)] = 42631, - [SMALL_STATE(2195)] = 42694, - [SMALL_STATE(2196)] = 42781, - [SMALL_STATE(2197)] = 42844, - [SMALL_STATE(2198)] = 42907, - [SMALL_STATE(2199)] = 42970, - [SMALL_STATE(2200)] = 43059, - [SMALL_STATE(2201)] = 43122, - [SMALL_STATE(2202)] = 43185, - [SMALL_STATE(2203)] = 43248, - [SMALL_STATE(2204)] = 43311, - [SMALL_STATE(2205)] = 43374, - [SMALL_STATE(2206)] = 43437, - [SMALL_STATE(2207)] = 43500, - [SMALL_STATE(2208)] = 43563, - [SMALL_STATE(2209)] = 43626, - [SMALL_STATE(2210)] = 43691, - [SMALL_STATE(2211)] = 43754, - [SMALL_STATE(2212)] = 43837, - [SMALL_STATE(2213)] = 43900, - [SMALL_STATE(2214)] = 43963, - [SMALL_STATE(2215)] = 44026, - [SMALL_STATE(2216)] = 44089, - [SMALL_STATE(2217)] = 44152, - [SMALL_STATE(2218)] = 44215, - [SMALL_STATE(2219)] = 44278, - [SMALL_STATE(2220)] = 44341, - [SMALL_STATE(2221)] = 44404, - [SMALL_STATE(2222)] = 44467, - [SMALL_STATE(2223)] = 44530, - [SMALL_STATE(2224)] = 44593, - [SMALL_STATE(2225)] = 44658, - [SMALL_STATE(2226)] = 44721, - [SMALL_STATE(2227)] = 44784, - [SMALL_STATE(2228)] = 44847, - [SMALL_STATE(2229)] = 44910, - [SMALL_STATE(2230)] = 44973, - [SMALL_STATE(2231)] = 45036, - [SMALL_STATE(2232)] = 45099, - [SMALL_STATE(2233)] = 45162, - [SMALL_STATE(2234)] = 45225, - [SMALL_STATE(2235)] = 45288, - [SMALL_STATE(2236)] = 45351, - [SMALL_STATE(2237)] = 45414, - [SMALL_STATE(2238)] = 45477, - [SMALL_STATE(2239)] = 45540, - [SMALL_STATE(2240)] = 45603, - [SMALL_STATE(2241)] = 45666, - [SMALL_STATE(2242)] = 45729, - [SMALL_STATE(2243)] = 45792, - [SMALL_STATE(2244)] = 45855, - [SMALL_STATE(2245)] = 45956, - [SMALL_STATE(2246)] = 46019, - [SMALL_STATE(2247)] = 46082, - [SMALL_STATE(2248)] = 46145, - [SMALL_STATE(2249)] = 46208, - [SMALL_STATE(2250)] = 46271, - [SMALL_STATE(2251)] = 46334, - [SMALL_STATE(2252)] = 46397, - [SMALL_STATE(2253)] = 46460, - [SMALL_STATE(2254)] = 46523, - [SMALL_STATE(2255)] = 46634, - [SMALL_STATE(2256)] = 46697, - [SMALL_STATE(2257)] = 46760, + [SMALL_STATE(2147)] = 39588, + [SMALL_STATE(2148)] = 39651, + [SMALL_STATE(2149)] = 39714, + [SMALL_STATE(2150)] = 39777, + [SMALL_STATE(2151)] = 39840, + [SMALL_STATE(2152)] = 39903, + [SMALL_STATE(2153)] = 39966, + [SMALL_STATE(2154)] = 40029, + [SMALL_STATE(2155)] = 40092, + [SMALL_STATE(2156)] = 40155, + [SMALL_STATE(2157)] = 40218, + [SMALL_STATE(2158)] = 40281, + [SMALL_STATE(2159)] = 40344, + [SMALL_STATE(2160)] = 40407, + [SMALL_STATE(2161)] = 40470, + [SMALL_STATE(2162)] = 40533, + [SMALL_STATE(2163)] = 40596, + [SMALL_STATE(2164)] = 40659, + [SMALL_STATE(2165)] = 40722, + [SMALL_STATE(2166)] = 40785, + [SMALL_STATE(2167)] = 40848, + [SMALL_STATE(2168)] = 40911, + [SMALL_STATE(2169)] = 40974, + [SMALL_STATE(2170)] = 41061, + [SMALL_STATE(2171)] = 41124, + [SMALL_STATE(2172)] = 41187, + [SMALL_STATE(2173)] = 41250, + [SMALL_STATE(2174)] = 41333, + [SMALL_STATE(2175)] = 41396, + [SMALL_STATE(2176)] = 41459, + [SMALL_STATE(2177)] = 41522, + [SMALL_STATE(2178)] = 41585, + [SMALL_STATE(2179)] = 41648, + [SMALL_STATE(2180)] = 41711, + [SMALL_STATE(2181)] = 41774, + [SMALL_STATE(2182)] = 41837, + [SMALL_STATE(2183)] = 41900, + [SMALL_STATE(2184)] = 41963, + [SMALL_STATE(2185)] = 42026, + [SMALL_STATE(2186)] = 42089, + [SMALL_STATE(2187)] = 42170, + [SMALL_STATE(2188)] = 42233, + [SMALL_STATE(2189)] = 42296, + [SMALL_STATE(2190)] = 42359, + [SMALL_STATE(2191)] = 42422, + [SMALL_STATE(2192)] = 42485, + [SMALL_STATE(2193)] = 42548, + [SMALL_STATE(2194)] = 42611, + [SMALL_STATE(2195)] = 42674, + [SMALL_STATE(2196)] = 42737, + [SMALL_STATE(2197)] = 42800, + [SMALL_STATE(2198)] = 42863, + [SMALL_STATE(2199)] = 42926, + [SMALL_STATE(2200)] = 42989, + [SMALL_STATE(2201)] = 43052, + [SMALL_STATE(2202)] = 43115, + [SMALL_STATE(2203)] = 43178, + [SMALL_STATE(2204)] = 43241, + [SMALL_STATE(2205)] = 43304, + [SMALL_STATE(2206)] = 43367, + [SMALL_STATE(2207)] = 43468, + [SMALL_STATE(2208)] = 43531, + [SMALL_STATE(2209)] = 43594, + [SMALL_STATE(2210)] = 43657, + [SMALL_STATE(2211)] = 43720, + [SMALL_STATE(2212)] = 43785, + [SMALL_STATE(2213)] = 43848, + [SMALL_STATE(2214)] = 43911, + [SMALL_STATE(2215)] = 43974, + [SMALL_STATE(2216)] = 44037, + [SMALL_STATE(2217)] = 44100, + [SMALL_STATE(2218)] = 44163, + [SMALL_STATE(2219)] = 44228, + [SMALL_STATE(2220)] = 44293, + [SMALL_STATE(2221)] = 44356, + [SMALL_STATE(2222)] = 44419, + [SMALL_STATE(2223)] = 44482, + [SMALL_STATE(2224)] = 44545, + [SMALL_STATE(2225)] = 44608, + [SMALL_STATE(2226)] = 44709, + [SMALL_STATE(2227)] = 44772, + [SMALL_STATE(2228)] = 44835, + [SMALL_STATE(2229)] = 44898, + [SMALL_STATE(2230)] = 44961, + [SMALL_STATE(2231)] = 45024, + [SMALL_STATE(2232)] = 45087, + [SMALL_STATE(2233)] = 45170, + [SMALL_STATE(2234)] = 45233, + [SMALL_STATE(2235)] = 45296, + [SMALL_STATE(2236)] = 45359, + [SMALL_STATE(2237)] = 45422, + [SMALL_STATE(2238)] = 45485, + [SMALL_STATE(2239)] = 45548, + [SMALL_STATE(2240)] = 45611, + [SMALL_STATE(2241)] = 45674, + [SMALL_STATE(2242)] = 45737, + [SMALL_STATE(2243)] = 45800, + [SMALL_STATE(2244)] = 45863, + [SMALL_STATE(2245)] = 45926, + [SMALL_STATE(2246)] = 45989, + [SMALL_STATE(2247)] = 46052, + [SMALL_STATE(2248)] = 46115, + [SMALL_STATE(2249)] = 46180, + [SMALL_STATE(2250)] = 46243, + [SMALL_STATE(2251)] = 46306, + [SMALL_STATE(2252)] = 46369, + [SMALL_STATE(2253)] = 46432, + [SMALL_STATE(2254)] = 46497, + [SMALL_STATE(2255)] = 46560, + [SMALL_STATE(2256)] = 46623, + [SMALL_STATE(2257)] = 46712, [SMALL_STATE(2258)] = 46823, [SMALL_STATE(2259)] = 46885, - [SMALL_STATE(2260)] = 46967, - [SMALL_STATE(2261)] = 47067, - [SMALL_STATE(2262)] = 47151, - [SMALL_STATE(2263)] = 47213, - [SMALL_STATE(2264)] = 47277, - [SMALL_STATE(2265)] = 47339, - [SMALL_STATE(2266)] = 47423, - [SMALL_STATE(2267)] = 47503, - [SMALL_STATE(2268)] = 47587, - [SMALL_STATE(2269)] = 47669, - [SMALL_STATE(2270)] = 47733, - [SMALL_STATE(2271)] = 47819, - [SMALL_STATE(2272)] = 47907, - [SMALL_STATE(2273)] = 48007, - [SMALL_STATE(2274)] = 48069, - [SMALL_STATE(2275)] = 48169, + [SMALL_STATE(2260)] = 46949, + [SMALL_STATE(2261)] = 47049, + [SMALL_STATE(2262)] = 47149, + [SMALL_STATE(2263)] = 47211, + [SMALL_STATE(2264)] = 47295, + [SMALL_STATE(2265)] = 47383, + [SMALL_STATE(2266)] = 47465, + [SMALL_STATE(2267)] = 47527, + [SMALL_STATE(2268)] = 47627, + [SMALL_STATE(2269)] = 47711, + [SMALL_STATE(2270)] = 47793, + [SMALL_STATE(2271)] = 47877, + [SMALL_STATE(2272)] = 47977, + [SMALL_STATE(2273)] = 48039, + [SMALL_STATE(2274)] = 48119, + [SMALL_STATE(2275)] = 48205, [SMALL_STATE(2276)] = 48269, - [SMALL_STATE(2277)] = 48374, - [SMALL_STATE(2278)] = 48439, + [SMALL_STATE(2277)] = 48334, + [SMALL_STATE(2278)] = 48399, [SMALL_STATE(2279)] = 48504, [SMALL_STATE(2280)] = 48566, - [SMALL_STATE(2281)] = 48628, + [SMALL_STATE(2281)] = 48642, [SMALL_STATE(2282)] = 48704, - [SMALL_STATE(2283)] = 48806, - [SMALL_STATE(2284)] = 48868, - [SMALL_STATE(2285)] = 48930, - [SMALL_STATE(2286)] = 49006, - [SMALL_STATE(2287)] = 49082, + [SMALL_STATE(2283)] = 48780, + [SMALL_STATE(2284)] = 48842, + [SMALL_STATE(2285)] = 48904, + [SMALL_STATE(2286)] = 48980, + [SMALL_STATE(2287)] = 49042, [SMALL_STATE(2288)] = 49144, - [SMALL_STATE(2289)] = 49257, - [SMALL_STATE(2290)] = 49316, - [SMALL_STATE(2291)] = 49375, - [SMALL_STATE(2292)] = 49434, - [SMALL_STATE(2293)] = 49547, - [SMALL_STATE(2294)] = 49606, - [SMALL_STATE(2295)] = 49665, - [SMALL_STATE(2296)] = 49726, - [SMALL_STATE(2297)] = 49785, - [SMALL_STATE(2298)] = 49898, - [SMALL_STATE(2299)] = 49957, - [SMALL_STATE(2300)] = 50016, - [SMALL_STATE(2301)] = 50075, - [SMALL_STATE(2302)] = 50134, - [SMALL_STATE(2303)] = 50193, - [SMALL_STATE(2304)] = 50306, - [SMALL_STATE(2305)] = 50385, - [SMALL_STATE(2306)] = 50444, - [SMALL_STATE(2307)] = 50557, - [SMALL_STATE(2308)] = 50670, - [SMALL_STATE(2309)] = 50755, - [SMALL_STATE(2310)] = 50838, - [SMALL_STATE(2311)] = 50917, - [SMALL_STATE(2312)] = 50994, - [SMALL_STATE(2313)] = 51053, - [SMALL_STATE(2314)] = 51112, - [SMALL_STATE(2315)] = 51225, - [SMALL_STATE(2316)] = 51322, - [SMALL_STATE(2317)] = 51381, - [SMALL_STATE(2318)] = 51440, - [SMALL_STATE(2319)] = 51537, - [SMALL_STATE(2320)] = 51596, - [SMALL_STATE(2321)] = 51655, - [SMALL_STATE(2322)] = 51714, - [SMALL_STATE(2323)] = 51827, - [SMALL_STATE(2324)] = 51886, - [SMALL_STATE(2325)] = 51945, - [SMALL_STATE(2326)] = 52004, - [SMALL_STATE(2327)] = 52117, - [SMALL_STATE(2328)] = 52176, - [SMALL_STATE(2329)] = 52235, - [SMALL_STATE(2330)] = 52294, - [SMALL_STATE(2331)] = 52353, - [SMALL_STATE(2332)] = 52412, - [SMALL_STATE(2333)] = 52471, - [SMALL_STATE(2334)] = 52530, - [SMALL_STATE(2335)] = 52629, - [SMALL_STATE(2336)] = 52688, - [SMALL_STATE(2337)] = 52747, - [SMALL_STATE(2338)] = 52806, - [SMALL_STATE(2339)] = 52865, - [SMALL_STATE(2340)] = 52924, - [SMALL_STATE(2341)] = 52983, - [SMALL_STATE(2342)] = 53044, - [SMALL_STATE(2343)] = 53103, - [SMALL_STATE(2344)] = 53162, - [SMALL_STATE(2345)] = 53221, - [SMALL_STATE(2346)] = 53280, - [SMALL_STATE(2347)] = 53339, - [SMALL_STATE(2348)] = 53398, - [SMALL_STATE(2349)] = 53457, - [SMALL_STATE(2350)] = 53516, - [SMALL_STATE(2351)] = 53575, - [SMALL_STATE(2352)] = 53634, - [SMALL_STATE(2353)] = 53747, - [SMALL_STATE(2354)] = 53806, - [SMALL_STATE(2355)] = 53919, - [SMALL_STATE(2356)] = 53978, - [SMALL_STATE(2357)] = 54037, - [SMALL_STATE(2358)] = 54100, - [SMALL_STATE(2359)] = 54163, - [SMALL_STATE(2360)] = 54260, - [SMALL_STATE(2361)] = 54319, - [SMALL_STATE(2362)] = 54378, - [SMALL_STATE(2363)] = 54437, - [SMALL_STATE(2364)] = 54550, - [SMALL_STATE(2365)] = 54609, - [SMALL_STATE(2366)] = 54668, - [SMALL_STATE(2367)] = 54727, - [SMALL_STATE(2368)] = 54786, - [SMALL_STATE(2369)] = 54863, - [SMALL_STATE(2370)] = 54922, - [SMALL_STATE(2371)] = 54981, - [SMALL_STATE(2372)] = 55040, - [SMALL_STATE(2373)] = 55099, - [SMALL_STATE(2374)] = 55158, - [SMALL_STATE(2375)] = 55255, - [SMALL_STATE(2376)] = 55314, - [SMALL_STATE(2377)] = 55373, - [SMALL_STATE(2378)] = 55434, - [SMALL_STATE(2379)] = 55493, - [SMALL_STATE(2380)] = 55552, - [SMALL_STATE(2381)] = 55631, - [SMALL_STATE(2382)] = 55690, - [SMALL_STATE(2383)] = 55749, - [SMALL_STATE(2384)] = 55808, - [SMALL_STATE(2385)] = 55905, - [SMALL_STATE(2386)] = 55964, - [SMALL_STATE(2387)] = 56023, - [SMALL_STATE(2388)] = 56082, - [SMALL_STATE(2389)] = 56141, - [SMALL_STATE(2390)] = 56200, - [SMALL_STATE(2391)] = 56297, - [SMALL_STATE(2392)] = 56356, - [SMALL_STATE(2393)] = 56415, - [SMALL_STATE(2394)] = 56498, - [SMALL_STATE(2395)] = 56557, - [SMALL_STATE(2396)] = 56616, - [SMALL_STATE(2397)] = 56675, - [SMALL_STATE(2398)] = 56738, - [SMALL_STATE(2399)] = 56797, - [SMALL_STATE(2400)] = 56856, - [SMALL_STATE(2401)] = 56915, - [SMALL_STATE(2402)] = 56974, - [SMALL_STATE(2403)] = 57033, - [SMALL_STATE(2404)] = 57092, - [SMALL_STATE(2405)] = 57151, - [SMALL_STATE(2406)] = 57210, - [SMALL_STATE(2407)] = 57269, - [SMALL_STATE(2408)] = 57328, - [SMALL_STATE(2409)] = 57441, - [SMALL_STATE(2410)] = 57500, - [SMALL_STATE(2411)] = 57559, - [SMALL_STATE(2412)] = 57618, - [SMALL_STATE(2413)] = 57677, - [SMALL_STATE(2414)] = 57762, - [SMALL_STATE(2415)] = 57841, - [SMALL_STATE(2416)] = 57900, + [SMALL_STATE(2289)] = 49221, + [SMALL_STATE(2290)] = 49280, + [SMALL_STATE(2291)] = 49339, + [SMALL_STATE(2292)] = 49398, + [SMALL_STATE(2293)] = 49457, + [SMALL_STATE(2294)] = 49516, + [SMALL_STATE(2295)] = 49575, + [SMALL_STATE(2296)] = 49688, + [SMALL_STATE(2297)] = 49747, + [SMALL_STATE(2298)] = 49806, + [SMALL_STATE(2299)] = 49865, + [SMALL_STATE(2300)] = 49924, + [SMALL_STATE(2301)] = 49983, + [SMALL_STATE(2302)] = 50080, + [SMALL_STATE(2303)] = 50139, + [SMALL_STATE(2304)] = 50252, + [SMALL_STATE(2305)] = 50311, + [SMALL_STATE(2306)] = 50408, + [SMALL_STATE(2307)] = 50487, + [SMALL_STATE(2308)] = 50546, + [SMALL_STATE(2309)] = 50629, + [SMALL_STATE(2310)] = 50714, + [SMALL_STATE(2311)] = 50793, + [SMALL_STATE(2312)] = 50852, + [SMALL_STATE(2313)] = 50911, + [SMALL_STATE(2314)] = 50970, + [SMALL_STATE(2315)] = 51083, + [SMALL_STATE(2316)] = 51146, + [SMALL_STATE(2317)] = 51205, + [SMALL_STATE(2318)] = 51264, + [SMALL_STATE(2319)] = 51327, + [SMALL_STATE(2320)] = 51440, + [SMALL_STATE(2321)] = 51499, + [SMALL_STATE(2322)] = 51558, + [SMALL_STATE(2323)] = 51617, + [SMALL_STATE(2324)] = 51730, + [SMALL_STATE(2325)] = 51789, + [SMALL_STATE(2326)] = 51848, + [SMALL_STATE(2327)] = 51907, + [SMALL_STATE(2328)] = 51984, + [SMALL_STATE(2329)] = 52043, + [SMALL_STATE(2330)] = 52102, + [SMALL_STATE(2331)] = 52161, + [SMALL_STATE(2332)] = 52220, + [SMALL_STATE(2333)] = 52279, + [SMALL_STATE(2334)] = 52338, + [SMALL_STATE(2335)] = 52397, + [SMALL_STATE(2336)] = 52510, + [SMALL_STATE(2337)] = 52589, + [SMALL_STATE(2338)] = 52648, + [SMALL_STATE(2339)] = 52707, + [SMALL_STATE(2340)] = 52766, + [SMALL_STATE(2341)] = 52825, + [SMALL_STATE(2342)] = 52884, + [SMALL_STATE(2343)] = 52943, + [SMALL_STATE(2344)] = 53002, + [SMALL_STATE(2345)] = 53085, + [SMALL_STATE(2346)] = 53144, + [SMALL_STATE(2347)] = 53203, + [SMALL_STATE(2348)] = 53288, + [SMALL_STATE(2349)] = 53347, + [SMALL_STATE(2350)] = 53406, + [SMALL_STATE(2351)] = 53469, + [SMALL_STATE(2352)] = 53528, + [SMALL_STATE(2353)] = 53587, + [SMALL_STATE(2354)] = 53646, + [SMALL_STATE(2355)] = 53725, + [SMALL_STATE(2356)] = 53838, + [SMALL_STATE(2357)] = 53897, + [SMALL_STATE(2358)] = 53956, + [SMALL_STATE(2359)] = 54055, + [SMALL_STATE(2360)] = 54114, + [SMALL_STATE(2361)] = 54173, + [SMALL_STATE(2362)] = 54232, + [SMALL_STATE(2363)] = 54291, + [SMALL_STATE(2364)] = 54350, + [SMALL_STATE(2365)] = 54409, + [SMALL_STATE(2366)] = 54468, + [SMALL_STATE(2367)] = 54527, + [SMALL_STATE(2368)] = 54586, + [SMALL_STATE(2369)] = 54645, + [SMALL_STATE(2370)] = 54704, + [SMALL_STATE(2371)] = 54763, + [SMALL_STATE(2372)] = 54822, + [SMALL_STATE(2373)] = 54881, + [SMALL_STATE(2374)] = 54942, + [SMALL_STATE(2375)] = 55001, + [SMALL_STATE(2376)] = 55060, + [SMALL_STATE(2377)] = 55119, + [SMALL_STATE(2378)] = 55216, + [SMALL_STATE(2379)] = 55329, + [SMALL_STATE(2380)] = 55388, + [SMALL_STATE(2381)] = 55501, + [SMALL_STATE(2382)] = 55560, + [SMALL_STATE(2383)] = 55619, + [SMALL_STATE(2384)] = 55678, + [SMALL_STATE(2385)] = 55737, + [SMALL_STATE(2386)] = 55796, + [SMALL_STATE(2387)] = 55855, + [SMALL_STATE(2388)] = 55914, + [SMALL_STATE(2389)] = 56027, + [SMALL_STATE(2390)] = 56086, + [SMALL_STATE(2391)] = 56145, + [SMALL_STATE(2392)] = 56258, + [SMALL_STATE(2393)] = 56317, + [SMALL_STATE(2394)] = 56376, + [SMALL_STATE(2395)] = 56435, + [SMALL_STATE(2396)] = 56532, + [SMALL_STATE(2397)] = 56591, + [SMALL_STATE(2398)] = 56650, + [SMALL_STATE(2399)] = 56709, + [SMALL_STATE(2400)] = 56768, + [SMALL_STATE(2401)] = 56827, + [SMALL_STATE(2402)] = 56886, + [SMALL_STATE(2403)] = 56947, + [SMALL_STATE(2404)] = 57008, + [SMALL_STATE(2405)] = 57067, + [SMALL_STATE(2406)] = 57180, + [SMALL_STATE(2407)] = 57239, + [SMALL_STATE(2408)] = 57298, + [SMALL_STATE(2409)] = 57411, + [SMALL_STATE(2410)] = 57470, + [SMALL_STATE(2411)] = 57529, + [SMALL_STATE(2412)] = 57626, + [SMALL_STATE(2413)] = 57685, + [SMALL_STATE(2414)] = 57744, + [SMALL_STATE(2415)] = 57803, + [SMALL_STATE(2416)] = 57862, [SMALL_STATE(2417)] = 57959, - [SMALL_STATE(2418)] = 58047, - [SMALL_STATE(2419)] = 58141, - [SMALL_STATE(2420)] = 58233, - [SMALL_STATE(2421)] = 58321, - [SMALL_STATE(2422)] = 58405, - [SMALL_STATE(2423)] = 58465, - [SMALL_STATE(2424)] = 58525, - [SMALL_STATE(2425)] = 58621, - [SMALL_STATE(2426)] = 58681, - [SMALL_STATE(2427)] = 58741, - [SMALL_STATE(2428)] = 58835, - [SMALL_STATE(2429)] = 58929, - [SMALL_STATE(2430)] = 59023, - [SMALL_STATE(2431)] = 59083, - [SMALL_STATE(2432)] = 59163, - [SMALL_STATE(2433)] = 59251, - [SMALL_STATE(2434)] = 59331, - [SMALL_STATE(2435)] = 59437, - [SMALL_STATE(2436)] = 59497, - [SMALL_STATE(2437)] = 59557, - [SMALL_STATE(2438)] = 59663, - [SMALL_STATE(2439)] = 59761, - [SMALL_STATE(2440)] = 59857, - [SMALL_STATE(2441)] = 59951, - [SMALL_STATE(2442)] = 60039, - [SMALL_STATE(2443)] = 60123, - [SMALL_STATE(2444)] = 60219, - [SMALL_STATE(2445)] = 60327, + [SMALL_STATE(2418)] = 58019, + [SMALL_STATE(2419)] = 58115, + [SMALL_STATE(2420)] = 58175, + [SMALL_STATE(2421)] = 58273, + [SMALL_STATE(2422)] = 58367, + [SMALL_STATE(2423)] = 58461, + [SMALL_STATE(2424)] = 58569, + [SMALL_STATE(2425)] = 58665, + [SMALL_STATE(2426)] = 58761, + [SMALL_STATE(2427)] = 58845, + [SMALL_STATE(2428)] = 58941, + [SMALL_STATE(2429)] = 59035, + [SMALL_STATE(2430)] = 59095, + [SMALL_STATE(2431)] = 59183, + [SMALL_STATE(2432)] = 59243, + [SMALL_STATE(2433)] = 59337, + [SMALL_STATE(2434)] = 59397, + [SMALL_STATE(2435)] = 59505, + [SMALL_STATE(2436)] = 59593, + [SMALL_STATE(2437)] = 59653, + [SMALL_STATE(2438)] = 59749, + [SMALL_STATE(2439)] = 59811, + [SMALL_STATE(2440)] = 59917, + [SMALL_STATE(2441)] = 60023, + [SMALL_STATE(2442)] = 60083, + [SMALL_STATE(2443)] = 60143, + [SMALL_STATE(2444)] = 60223, + [SMALL_STATE(2445)] = 60303, [SMALL_STATE(2446)] = 60387, - [SMALL_STATE(2447)] = 60447, - [SMALL_STATE(2448)] = 60509, - [SMALL_STATE(2449)] = 60617, - [SMALL_STATE(2450)] = 60713, - [SMALL_STATE(2451)] = 60809, + [SMALL_STATE(2447)] = 60475, + [SMALL_STATE(2448)] = 60535, + [SMALL_STATE(2449)] = 60627, + [SMALL_STATE(2450)] = 60721, + [SMALL_STATE(2451)] = 60801, [SMALL_STATE(2452)] = 60889, [SMALL_STATE(2453)] = 60946, [SMALL_STATE(2454)] = 61003, - [SMALL_STATE(2455)] = 61106, - [SMALL_STATE(2456)] = 61163, - [SMALL_STATE(2457)] = 61222, - [SMALL_STATE(2458)] = 61281, - [SMALL_STATE(2459)] = 61388, - [SMALL_STATE(2460)] = 61495, - [SMALL_STATE(2461)] = 61588, - [SMALL_STATE(2462)] = 61645, - [SMALL_STATE(2463)] = 61732, - [SMALL_STATE(2464)] = 61815, - [SMALL_STATE(2465)] = 61872, - [SMALL_STATE(2466)] = 61929, - [SMALL_STATE(2467)] = 61988, - [SMALL_STATE(2468)] = 62073, - [SMALL_STATE(2469)] = 62130, - [SMALL_STATE(2470)] = 62187, - [SMALL_STATE(2471)] = 62244, - [SMALL_STATE(2472)] = 62301, - [SMALL_STATE(2473)] = 62358, - [SMALL_STATE(2474)] = 62415, - [SMALL_STATE(2475)] = 62472, - [SMALL_STATE(2476)] = 62529, - [SMALL_STATE(2477)] = 62586, - [SMALL_STATE(2478)] = 62643, - [SMALL_STATE(2479)] = 62700, - [SMALL_STATE(2480)] = 62757, - [SMALL_STATE(2481)] = 62814, - [SMALL_STATE(2482)] = 62871, - [SMALL_STATE(2483)] = 62928, - [SMALL_STATE(2484)] = 62985, - [SMALL_STATE(2485)] = 63042, - [SMALL_STATE(2486)] = 63099, - [SMALL_STATE(2487)] = 63156, - [SMALL_STATE(2488)] = 63215, - [SMALL_STATE(2489)] = 63318, - [SMALL_STATE(2490)] = 63375, - [SMALL_STATE(2491)] = 63432, - [SMALL_STATE(2492)] = 63489, - [SMALL_STATE(2493)] = 63546, - [SMALL_STATE(2494)] = 63603, - [SMALL_STATE(2495)] = 63660, - [SMALL_STATE(2496)] = 63745, - [SMALL_STATE(2497)] = 63826, - [SMALL_STATE(2498)] = 63883, - [SMALL_STATE(2499)] = 63940, - [SMALL_STATE(2500)] = 64025, - [SMALL_STATE(2501)] = 64120, - [SMALL_STATE(2502)] = 64177, - [SMALL_STATE(2503)] = 64266, - [SMALL_STATE(2504)] = 64323, - [SMALL_STATE(2505)] = 64380, - [SMALL_STATE(2506)] = 64471, - [SMALL_STATE(2507)] = 64528, - [SMALL_STATE(2508)] = 64585, - [SMALL_STATE(2509)] = 64642, - [SMALL_STATE(2510)] = 64699, - [SMALL_STATE(2511)] = 64756, - [SMALL_STATE(2512)] = 64813, - [SMALL_STATE(2513)] = 64870, - [SMALL_STATE(2514)] = 64927, - [SMALL_STATE(2515)] = 64984, - [SMALL_STATE(2516)] = 65041, - [SMALL_STATE(2517)] = 65098, - [SMALL_STATE(2518)] = 65155, - [SMALL_STATE(2519)] = 65212, - [SMALL_STATE(2520)] = 65269, - [SMALL_STATE(2521)] = 65326, - [SMALL_STATE(2522)] = 65383, - [SMALL_STATE(2523)] = 65486, - [SMALL_STATE(2524)] = 65543, - [SMALL_STATE(2525)] = 65600, - [SMALL_STATE(2526)] = 65657, - [SMALL_STATE(2527)] = 65766, - [SMALL_STATE(2528)] = 65823, - [SMALL_STATE(2529)] = 65880, - [SMALL_STATE(2530)] = 65937, - [SMALL_STATE(2531)] = 65994, - [SMALL_STATE(2532)] = 66051, - [SMALL_STATE(2533)] = 66108, - [SMALL_STATE(2534)] = 66165, - [SMALL_STATE(2535)] = 66222, - [SMALL_STATE(2536)] = 66279, - [SMALL_STATE(2537)] = 66382, - [SMALL_STATE(2538)] = 66439, - [SMALL_STATE(2539)] = 66496, - [SMALL_STATE(2540)] = 66553, - [SMALL_STATE(2541)] = 66610, - [SMALL_STATE(2542)] = 66701, - [SMALL_STATE(2543)] = 66790, - [SMALL_STATE(2544)] = 66875, - [SMALL_STATE(2545)] = 66934, - [SMALL_STATE(2546)] = 66991, - [SMALL_STATE(2547)] = 67048, - [SMALL_STATE(2548)] = 67129, - [SMALL_STATE(2549)] = 67190, - [SMALL_STATE(2550)] = 67247, - [SMALL_STATE(2551)] = 67350, - [SMALL_STATE(2552)] = 67407, - [SMALL_STATE(2553)] = 67464, - [SMALL_STATE(2554)] = 67521, - [SMALL_STATE(2555)] = 67578, - [SMALL_STATE(2556)] = 67685, - [SMALL_STATE(2557)] = 67742, - [SMALL_STATE(2558)] = 67801, - [SMALL_STATE(2559)] = 67908, - [SMALL_STATE(2560)] = 67965, - [SMALL_STATE(2561)] = 68022, - [SMALL_STATE(2562)] = 68079, - [SMALL_STATE(2563)] = 68136, - [SMALL_STATE(2564)] = 68193, - [SMALL_STATE(2565)] = 68250, - [SMALL_STATE(2566)] = 68307, - [SMALL_STATE(2567)] = 68364, - [SMALL_STATE(2568)] = 68421, - [SMALL_STATE(2569)] = 68478, - [SMALL_STATE(2570)] = 68535, - [SMALL_STATE(2571)] = 68592, - [SMALL_STATE(2572)] = 68679, - [SMALL_STATE(2573)] = 68736, - [SMALL_STATE(2574)] = 68797, - [SMALL_STATE(2575)] = 68858, - [SMALL_STATE(2576)] = 68915, - [SMALL_STATE(2577)] = 68972, + [SMALL_STATE(2455)] = 61064, + [SMALL_STATE(2456)] = 61125, + [SMALL_STATE(2457)] = 61210, + [SMALL_STATE(2458)] = 61299, + [SMALL_STATE(2459)] = 61358, + [SMALL_STATE(2460)] = 61465, + [SMALL_STATE(2461)] = 61546, + [SMALL_STATE(2462)] = 61605, + [SMALL_STATE(2463)] = 61662, + [SMALL_STATE(2464)] = 61719, + [SMALL_STATE(2465)] = 61776, + [SMALL_STATE(2466)] = 61833, + [SMALL_STATE(2467)] = 61890, + [SMALL_STATE(2468)] = 61947, + [SMALL_STATE(2469)] = 62004, + [SMALL_STATE(2470)] = 62061, + [SMALL_STATE(2471)] = 62118, + [SMALL_STATE(2472)] = 62175, + [SMALL_STATE(2473)] = 62232, + [SMALL_STATE(2474)] = 62289, + [SMALL_STATE(2475)] = 62396, + [SMALL_STATE(2476)] = 62453, + [SMALL_STATE(2477)] = 62510, + [SMALL_STATE(2478)] = 62567, + [SMALL_STATE(2479)] = 62624, + [SMALL_STATE(2480)] = 62681, + [SMALL_STATE(2481)] = 62738, + [SMALL_STATE(2482)] = 62795, + [SMALL_STATE(2483)] = 62852, + [SMALL_STATE(2484)] = 62909, + [SMALL_STATE(2485)] = 62966, + [SMALL_STATE(2486)] = 63023, + [SMALL_STATE(2487)] = 63080, + [SMALL_STATE(2488)] = 63137, + [SMALL_STATE(2489)] = 63240, + [SMALL_STATE(2490)] = 63297, + [SMALL_STATE(2491)] = 63354, + [SMALL_STATE(2492)] = 63457, + [SMALL_STATE(2493)] = 63514, + [SMALL_STATE(2494)] = 63621, + [SMALL_STATE(2495)] = 63706, + [SMALL_STATE(2496)] = 63763, + [SMALL_STATE(2497)] = 63820, + [SMALL_STATE(2498)] = 63877, + [SMALL_STATE(2499)] = 63934, + [SMALL_STATE(2500)] = 64015, + [SMALL_STATE(2501)] = 64072, + [SMALL_STATE(2502)] = 64129, + [SMALL_STATE(2503)] = 64186, + [SMALL_STATE(2504)] = 64243, + [SMALL_STATE(2505)] = 64300, + [SMALL_STATE(2506)] = 64357, + [SMALL_STATE(2507)] = 64414, + [SMALL_STATE(2508)] = 64471, + [SMALL_STATE(2509)] = 64528, + [SMALL_STATE(2510)] = 64585, + [SMALL_STATE(2511)] = 64670, + [SMALL_STATE(2512)] = 64727, + [SMALL_STATE(2513)] = 64784, + [SMALL_STATE(2514)] = 64845, + [SMALL_STATE(2515)] = 64904, + [SMALL_STATE(2516)] = 64995, + [SMALL_STATE(2517)] = 65082, + [SMALL_STATE(2518)] = 65139, + [SMALL_STATE(2519)] = 65196, + [SMALL_STATE(2520)] = 65291, + [SMALL_STATE(2521)] = 65348, + [SMALL_STATE(2522)] = 65405, + [SMALL_STATE(2523)] = 65498, + [SMALL_STATE(2524)] = 65555, + [SMALL_STATE(2525)] = 65612, + [SMALL_STATE(2526)] = 65669, + [SMALL_STATE(2527)] = 65726, + [SMALL_STATE(2528)] = 65783, + [SMALL_STATE(2529)] = 65870, + [SMALL_STATE(2530)] = 65953, + [SMALL_STATE(2531)] = 66010, + [SMALL_STATE(2532)] = 66069, + [SMALL_STATE(2533)] = 66158, + [SMALL_STATE(2534)] = 66215, + [SMALL_STATE(2535)] = 66272, + [SMALL_STATE(2536)] = 66329, + [SMALL_STATE(2537)] = 66386, + [SMALL_STATE(2538)] = 66477, + [SMALL_STATE(2539)] = 66534, + [SMALL_STATE(2540)] = 66591, + [SMALL_STATE(2541)] = 66650, + [SMALL_STATE(2542)] = 66707, + [SMALL_STATE(2543)] = 66764, + [SMALL_STATE(2544)] = 66821, + [SMALL_STATE(2545)] = 66878, + [SMALL_STATE(2546)] = 66935, + [SMALL_STATE(2547)] = 67038, + [SMALL_STATE(2548)] = 67095, + [SMALL_STATE(2549)] = 67152, + [SMALL_STATE(2550)] = 67209, + [SMALL_STATE(2551)] = 67266, + [SMALL_STATE(2552)] = 67323, + [SMALL_STATE(2553)] = 67380, + [SMALL_STATE(2554)] = 67437, + [SMALL_STATE(2555)] = 67494, + [SMALL_STATE(2556)] = 67551, + [SMALL_STATE(2557)] = 67654, + [SMALL_STATE(2558)] = 67711, + [SMALL_STATE(2559)] = 67814, + [SMALL_STATE(2560)] = 67871, + [SMALL_STATE(2561)] = 67928, + [SMALL_STATE(2562)] = 67985, + [SMALL_STATE(2563)] = 68042, + [SMALL_STATE(2564)] = 68099, + [SMALL_STATE(2565)] = 68156, + [SMALL_STATE(2566)] = 68213, + [SMALL_STATE(2567)] = 68270, + [SMALL_STATE(2568)] = 68327, + [SMALL_STATE(2569)] = 68384, + [SMALL_STATE(2570)] = 68441, + [SMALL_STATE(2571)] = 68498, + [SMALL_STATE(2572)] = 68607, + [SMALL_STATE(2573)] = 68664, + [SMALL_STATE(2574)] = 68721, + [SMALL_STATE(2575)] = 68780, + [SMALL_STATE(2576)] = 68887, + [SMALL_STATE(2577)] = 68944, [SMALL_STATE(2578)] = 69029, [SMALL_STATE(2579)] = 69086, [SMALL_STATE(2580)] = 69190, - [SMALL_STATE(2581)] = 69294, - [SMALL_STATE(2582)] = 69398, - [SMALL_STATE(2583)] = 69456, - [SMALL_STATE(2584)] = 69562, - [SMALL_STATE(2585)] = 69624, - [SMALL_STATE(2586)] = 69730, - [SMALL_STATE(2587)] = 69834, - [SMALL_STATE(2588)] = 69938, - [SMALL_STATE(2589)] = 69996, - [SMALL_STATE(2590)] = 70098, - [SMALL_STATE(2591)] = 70202, - [SMALL_STATE(2592)] = 70304, - [SMALL_STATE(2593)] = 70406, - [SMALL_STATE(2594)] = 70510, - [SMALL_STATE(2595)] = 70616, - [SMALL_STATE(2596)] = 70720, - [SMALL_STATE(2597)] = 70826, - [SMALL_STATE(2598)] = 70884, - [SMALL_STATE(2599)] = 70990, - [SMALL_STATE(2600)] = 71096, - [SMALL_STATE(2601)] = 71152, - [SMALL_STATE(2602)] = 71208, - [SMALL_STATE(2603)] = 71314, - [SMALL_STATE(2604)] = 71418, - [SMALL_STATE(2605)] = 71524, - [SMALL_STATE(2606)] = 71630, - [SMALL_STATE(2607)] = 71690, - [SMALL_STATE(2608)] = 71794, - [SMALL_STATE(2609)] = 71850, - [SMALL_STATE(2610)] = 71956, - [SMALL_STATE(2611)] = 72062, - [SMALL_STATE(2612)] = 72166, - [SMALL_STATE(2613)] = 72270, - [SMALL_STATE(2614)] = 72374, - [SMALL_STATE(2615)] = 72436, - [SMALL_STATE(2616)] = 72542, - [SMALL_STATE(2617)] = 72646, - [SMALL_STATE(2618)] = 72752, - [SMALL_STATE(2619)] = 72854, + [SMALL_STATE(2581)] = 69296, + [SMALL_STATE(2582)] = 69400, + [SMALL_STATE(2583)] = 69504, + [SMALL_STATE(2584)] = 69610, + [SMALL_STATE(2585)] = 69716, + [SMALL_STATE(2586)] = 69776, + [SMALL_STATE(2587)] = 69880, + [SMALL_STATE(2588)] = 69986, + [SMALL_STATE(2589)] = 70092, + [SMALL_STATE(2590)] = 70198, + [SMALL_STATE(2591)] = 70260, + [SMALL_STATE(2592)] = 70362, + [SMALL_STATE(2593)] = 70466, + [SMALL_STATE(2594)] = 70570, + [SMALL_STATE(2595)] = 70676, + [SMALL_STATE(2596)] = 70782, + [SMALL_STATE(2597)] = 70838, + [SMALL_STATE(2598)] = 70944, + [SMALL_STATE(2599)] = 71048, + [SMALL_STATE(2600)] = 71152, + [SMALL_STATE(2601)] = 71210, + [SMALL_STATE(2602)] = 71314, + [SMALL_STATE(2603)] = 71416, + [SMALL_STATE(2604)] = 71522, + [SMALL_STATE(2605)] = 71628, + [SMALL_STATE(2606)] = 71684, + [SMALL_STATE(2607)] = 71788, + [SMALL_STATE(2608)] = 71894, + [SMALL_STATE(2609)] = 71998, + [SMALL_STATE(2610)] = 72100, + [SMALL_STATE(2611)] = 72202, + [SMALL_STATE(2612)] = 72260, + [SMALL_STATE(2613)] = 72362, + [SMALL_STATE(2614)] = 72466, + [SMALL_STATE(2615)] = 72528, + [SMALL_STATE(2616)] = 72632, + [SMALL_STATE(2617)] = 72736, + [SMALL_STATE(2618)] = 72792, + [SMALL_STATE(2619)] = 72898, [SMALL_STATE(2620)] = 72956, [SMALL_STATE(2621)] = 73011, - [SMALL_STATE(2622)] = 73070, - [SMALL_STATE(2623)] = 73127, - [SMALL_STATE(2624)] = 73186, - [SMALL_STATE(2625)] = 73287, - [SMALL_STATE(2626)] = 73388, - [SMALL_STATE(2627)] = 73443, - [SMALL_STATE(2628)] = 73498, - [SMALL_STATE(2629)] = 73553, - [SMALL_STATE(2630)] = 73654, - [SMALL_STATE(2631)] = 73737, - [SMALL_STATE(2632)] = 73792, - [SMALL_STATE(2633)] = 73893, - [SMALL_STATE(2634)] = 73948, - [SMALL_STATE(2635)] = 74003, - [SMALL_STATE(2636)] = 74058, - [SMALL_STATE(2637)] = 74159, - [SMALL_STATE(2638)] = 74214, - [SMALL_STATE(2639)] = 74269, - [SMALL_STATE(2640)] = 74370, - [SMALL_STATE(2641)] = 74471, - [SMALL_STATE(2642)] = 74550, - [SMALL_STATE(2643)] = 74651, - [SMALL_STATE(2644)] = 74706, - [SMALL_STATE(2645)] = 74761, - [SMALL_STATE(2646)] = 74816, - [SMALL_STATE(2647)] = 74917, - [SMALL_STATE(2648)] = 74972, - [SMALL_STATE(2649)] = 75027, - [SMALL_STATE(2650)] = 75082, - [SMALL_STATE(2651)] = 75139, - [SMALL_STATE(2652)] = 75194, - [SMALL_STATE(2653)] = 75249, - [SMALL_STATE(2654)] = 75304, - [SMALL_STATE(2655)] = 75405, - [SMALL_STATE(2656)] = 75460, - [SMALL_STATE(2657)] = 75515, - [SMALL_STATE(2658)] = 75570, - [SMALL_STATE(2659)] = 75625, - [SMALL_STATE(2660)] = 75680, - [SMALL_STATE(2661)] = 75735, - [SMALL_STATE(2662)] = 75790, - [SMALL_STATE(2663)] = 75845, - [SMALL_STATE(2664)] = 75900, - [SMALL_STATE(2665)] = 75955, - [SMALL_STATE(2666)] = 76012, - [SMALL_STATE(2667)] = 76067, - [SMALL_STATE(2668)] = 76122, - [SMALL_STATE(2669)] = 76177, - [SMALL_STATE(2670)] = 76232, - [SMALL_STATE(2671)] = 76287, - [SMALL_STATE(2672)] = 76342, - [SMALL_STATE(2673)] = 76443, - [SMALL_STATE(2674)] = 76498, - [SMALL_STATE(2675)] = 76553, - [SMALL_STATE(2676)] = 76608, - [SMALL_STATE(2677)] = 76709, - [SMALL_STATE(2678)] = 76764, - [SMALL_STATE(2679)] = 76821, - [SMALL_STATE(2680)] = 76878, - [SMALL_STATE(2681)] = 76933, - [SMALL_STATE(2682)] = 76988, - [SMALL_STATE(2683)] = 77089, - [SMALL_STATE(2684)] = 77190, - [SMALL_STATE(2685)] = 77245, - [SMALL_STATE(2686)] = 77300, - [SMALL_STATE(2687)] = 77355, - [SMALL_STATE(2688)] = 77410, - [SMALL_STATE(2689)] = 77465, - [SMALL_STATE(2690)] = 77520, - [SMALL_STATE(2691)] = 77575, - [SMALL_STATE(2692)] = 77630, - [SMALL_STATE(2693)] = 77685, - [SMALL_STATE(2694)] = 77740, - [SMALL_STATE(2695)] = 77823, - [SMALL_STATE(2696)] = 77924, - [SMALL_STATE(2697)] = 77981, - [SMALL_STATE(2698)] = 78082, - [SMALL_STATE(2699)] = 78137, - [SMALL_STATE(2700)] = 78192, - [SMALL_STATE(2701)] = 78247, - [SMALL_STATE(2702)] = 78302, - [SMALL_STATE(2703)] = 78357, - [SMALL_STATE(2704)] = 78446, - [SMALL_STATE(2705)] = 78533, - [SMALL_STATE(2706)] = 78588, - [SMALL_STATE(2707)] = 78689, - [SMALL_STATE(2708)] = 78772, - [SMALL_STATE(2709)] = 78873, - [SMALL_STATE(2710)] = 78962, - [SMALL_STATE(2711)] = 79017, - [SMALL_STATE(2712)] = 79104, - [SMALL_STATE(2713)] = 79205, - [SMALL_STATE(2714)] = 79260, - [SMALL_STATE(2715)] = 79315, - [SMALL_STATE(2716)] = 79370, - [SMALL_STATE(2717)] = 79425, - [SMALL_STATE(2718)] = 79480, - [SMALL_STATE(2719)] = 79563, - [SMALL_STATE(2720)] = 79618, - [SMALL_STATE(2721)] = 79673, - [SMALL_STATE(2722)] = 79728, - [SMALL_STATE(2723)] = 79783, - [SMALL_STATE(2724)] = 79838, - [SMALL_STATE(2725)] = 79893, - [SMALL_STATE(2726)] = 79948, - [SMALL_STATE(2727)] = 80003, - [SMALL_STATE(2728)] = 80104, - [SMALL_STATE(2729)] = 80159, - [SMALL_STATE(2730)] = 80214, - [SMALL_STATE(2731)] = 80269, - [SMALL_STATE(2732)] = 80370, - [SMALL_STATE(2733)] = 80449, - [SMALL_STATE(2734)] = 80550, - [SMALL_STATE(2735)] = 80651, - [SMALL_STATE(2736)] = 80706, - [SMALL_STATE(2737)] = 80761, - [SMALL_STATE(2738)] = 80816, - [SMALL_STATE(2739)] = 80871, - [SMALL_STATE(2740)] = 80972, - [SMALL_STATE(2741)] = 81027, - [SMALL_STATE(2742)] = 81082, - [SMALL_STATE(2743)] = 81137, - [SMALL_STATE(2744)] = 81192, - [SMALL_STATE(2745)] = 81247, - [SMALL_STATE(2746)] = 81302, - [SMALL_STATE(2747)] = 81357, - [SMALL_STATE(2748)] = 81412, - [SMALL_STATE(2749)] = 81467, - [SMALL_STATE(2750)] = 81522, - [SMALL_STATE(2751)] = 81623, - [SMALL_STATE(2752)] = 81680, - [SMALL_STATE(2753)] = 81781, - [SMALL_STATE(2754)] = 81882, - [SMALL_STATE(2755)] = 81983, - [SMALL_STATE(2756)] = 82084, - [SMALL_STATE(2757)] = 82139, - [SMALL_STATE(2758)] = 82240, - [SMALL_STATE(2759)] = 82299, - [SMALL_STATE(2760)] = 82400, - [SMALL_STATE(2761)] = 82457, - [SMALL_STATE(2762)] = 82516, - [SMALL_STATE(2763)] = 82571, - [SMALL_STATE(2764)] = 82672, - [SMALL_STATE(2765)] = 82729, - [SMALL_STATE(2766)] = 82784, - [SMALL_STATE(2767)] = 82885, - [SMALL_STATE(2768)] = 82986, - [SMALL_STATE(2769)] = 83087, - [SMALL_STATE(2770)] = 83188, - [SMALL_STATE(2771)] = 83289, - [SMALL_STATE(2772)] = 83344, - [SMALL_STATE(2773)] = 83445, - [SMALL_STATE(2774)] = 83546, - [SMALL_STATE(2775)] = 83647, - [SMALL_STATE(2776)] = 83748, - [SMALL_STATE(2777)] = 83849, - [SMALL_STATE(2778)] = 83950, - [SMALL_STATE(2779)] = 84051, - [SMALL_STATE(2780)] = 84108, - [SMALL_STATE(2781)] = 84209, - [SMALL_STATE(2782)] = 84310, - [SMALL_STATE(2783)] = 84411, - [SMALL_STATE(2784)] = 84512, - [SMALL_STATE(2785)] = 84613, - [SMALL_STATE(2786)] = 84714, - [SMALL_STATE(2787)] = 84815, - [SMALL_STATE(2788)] = 84916, - [SMALL_STATE(2789)] = 85017, - [SMALL_STATE(2790)] = 85118, - [SMALL_STATE(2791)] = 85219, - [SMALL_STATE(2792)] = 85276, - [SMALL_STATE(2793)] = 85333, - [SMALL_STATE(2794)] = 85434, - [SMALL_STATE(2795)] = 85535, - [SMALL_STATE(2796)] = 85636, - [SMALL_STATE(2797)] = 85737, - [SMALL_STATE(2798)] = 85838, - [SMALL_STATE(2799)] = 85939, - [SMALL_STATE(2800)] = 85996, - [SMALL_STATE(2801)] = 86097, - [SMALL_STATE(2802)] = 86198, - [SMALL_STATE(2803)] = 86299, - [SMALL_STATE(2804)] = 86354, + [SMALL_STATE(2622)] = 73112, + [SMALL_STATE(2623)] = 73167, + [SMALL_STATE(2624)] = 73222, + [SMALL_STATE(2625)] = 73323, + [SMALL_STATE(2626)] = 73424, + [SMALL_STATE(2627)] = 73479, + [SMALL_STATE(2628)] = 73534, + [SMALL_STATE(2629)] = 73635, + [SMALL_STATE(2630)] = 73718, + [SMALL_STATE(2631)] = 73773, + [SMALL_STATE(2632)] = 73828, + [SMALL_STATE(2633)] = 73883, + [SMALL_STATE(2634)] = 73938, + [SMALL_STATE(2635)] = 73993, + [SMALL_STATE(2636)] = 74080, + [SMALL_STATE(2637)] = 74163, + [SMALL_STATE(2638)] = 74242, + [SMALL_STATE(2639)] = 74343, + [SMALL_STATE(2640)] = 74444, + [SMALL_STATE(2641)] = 74499, + [SMALL_STATE(2642)] = 74600, + [SMALL_STATE(2643)] = 74655, + [SMALL_STATE(2644)] = 74712, + [SMALL_STATE(2645)] = 74767, + [SMALL_STATE(2646)] = 74868, + [SMALL_STATE(2647)] = 74923, + [SMALL_STATE(2648)] = 75024, + [SMALL_STATE(2649)] = 75079, + [SMALL_STATE(2650)] = 75134, + [SMALL_STATE(2651)] = 75189, + [SMALL_STATE(2652)] = 75244, + [SMALL_STATE(2653)] = 75299, + [SMALL_STATE(2654)] = 75354, + [SMALL_STATE(2655)] = 75409, + [SMALL_STATE(2656)] = 75464, + [SMALL_STATE(2657)] = 75519, + [SMALL_STATE(2658)] = 75574, + [SMALL_STATE(2659)] = 75675, + [SMALL_STATE(2660)] = 75730, + [SMALL_STATE(2661)] = 75785, + [SMALL_STATE(2662)] = 75840, + [SMALL_STATE(2663)] = 75895, + [SMALL_STATE(2664)] = 75950, + [SMALL_STATE(2665)] = 76005, + [SMALL_STATE(2666)] = 76060, + [SMALL_STATE(2667)] = 76115, + [SMALL_STATE(2668)] = 76170, + [SMALL_STATE(2669)] = 76225, + [SMALL_STATE(2670)] = 76280, + [SMALL_STATE(2671)] = 76381, + [SMALL_STATE(2672)] = 76436, + [SMALL_STATE(2673)] = 76537, + [SMALL_STATE(2674)] = 76592, + [SMALL_STATE(2675)] = 76647, + [SMALL_STATE(2676)] = 76702, + [SMALL_STATE(2677)] = 76789, + [SMALL_STATE(2678)] = 76844, + [SMALL_STATE(2679)] = 76899, + [SMALL_STATE(2680)] = 76954, + [SMALL_STATE(2681)] = 77009, + [SMALL_STATE(2682)] = 77064, + [SMALL_STATE(2683)] = 77119, + [SMALL_STATE(2684)] = 77174, + [SMALL_STATE(2685)] = 77229, + [SMALL_STATE(2686)] = 77284, + [SMALL_STATE(2687)] = 77339, + [SMALL_STATE(2688)] = 77396, + [SMALL_STATE(2689)] = 77485, + [SMALL_STATE(2690)] = 77586, + [SMALL_STATE(2691)] = 77687, + [SMALL_STATE(2692)] = 77744, + [SMALL_STATE(2693)] = 77799, + [SMALL_STATE(2694)] = 77854, + [SMALL_STATE(2695)] = 77909, + [SMALL_STATE(2696)] = 78010, + [SMALL_STATE(2697)] = 78089, + [SMALL_STATE(2698)] = 78148, + [SMALL_STATE(2699)] = 78203, + [SMALL_STATE(2700)] = 78292, + [SMALL_STATE(2701)] = 78347, + [SMALL_STATE(2702)] = 78448, + [SMALL_STATE(2703)] = 78549, + [SMALL_STATE(2704)] = 78604, + [SMALL_STATE(2705)] = 78705, + [SMALL_STATE(2706)] = 78764, + [SMALL_STATE(2707)] = 78819, + [SMALL_STATE(2708)] = 78874, + [SMALL_STATE(2709)] = 78929, + [SMALL_STATE(2710)] = 78984, + [SMALL_STATE(2711)] = 79039, + [SMALL_STATE(2712)] = 79140, + [SMALL_STATE(2713)] = 79195, + [SMALL_STATE(2714)] = 79250, + [SMALL_STATE(2715)] = 79351, + [SMALL_STATE(2716)] = 79406, + [SMALL_STATE(2717)] = 79461, + [SMALL_STATE(2718)] = 79516, + [SMALL_STATE(2719)] = 79571, + [SMALL_STATE(2720)] = 79626, + [SMALL_STATE(2721)] = 79709, + [SMALL_STATE(2722)] = 79764, + [SMALL_STATE(2723)] = 79865, + [SMALL_STATE(2724)] = 79920, + [SMALL_STATE(2725)] = 80021, + [SMALL_STATE(2726)] = 80076, + [SMALL_STATE(2727)] = 80177, + [SMALL_STATE(2728)] = 80278, + [SMALL_STATE(2729)] = 80333, + [SMALL_STATE(2730)] = 80388, + [SMALL_STATE(2731)] = 80443, + [SMALL_STATE(2732)] = 80498, + [SMALL_STATE(2733)] = 80553, + [SMALL_STATE(2734)] = 80608, + [SMALL_STATE(2735)] = 80663, + [SMALL_STATE(2736)] = 80718, + [SMALL_STATE(2737)] = 80773, + [SMALL_STATE(2738)] = 80828, + [SMALL_STATE(2739)] = 80883, + [SMALL_STATE(2740)] = 80938, + [SMALL_STATE(2741)] = 80993, + [SMALL_STATE(2742)] = 81048, + [SMALL_STATE(2743)] = 81103, + [SMALL_STATE(2744)] = 81204, + [SMALL_STATE(2745)] = 81261, + [SMALL_STATE(2746)] = 81362, + [SMALL_STATE(2747)] = 81463, + [SMALL_STATE(2748)] = 81518, + [SMALL_STATE(2749)] = 81575, + [SMALL_STATE(2750)] = 81676, + [SMALL_STATE(2751)] = 81777, + [SMALL_STATE(2752)] = 81832, + [SMALL_STATE(2753)] = 81933, + [SMALL_STATE(2754)] = 81990, + [SMALL_STATE(2755)] = 82045, + [SMALL_STATE(2756)] = 82100, + [SMALL_STATE(2757)] = 82201, + [SMALL_STATE(2758)] = 82302, + [SMALL_STATE(2759)] = 82359, + [SMALL_STATE(2760)] = 82414, + [SMALL_STATE(2761)] = 82515, + [SMALL_STATE(2762)] = 82616, + [SMALL_STATE(2763)] = 82717, + [SMALL_STATE(2764)] = 82772, + [SMALL_STATE(2765)] = 82829, + [SMALL_STATE(2766)] = 82930, + [SMALL_STATE(2767)] = 83031, + [SMALL_STATE(2768)] = 83086, + [SMALL_STATE(2769)] = 83187, + [SMALL_STATE(2770)] = 83288, + [SMALL_STATE(2771)] = 83389, + [SMALL_STATE(2772)] = 83444, + [SMALL_STATE(2773)] = 83545, + [SMALL_STATE(2774)] = 83646, + [SMALL_STATE(2775)] = 83747, + [SMALL_STATE(2776)] = 83848, + [SMALL_STATE(2777)] = 83949, + [SMALL_STATE(2778)] = 84032, + [SMALL_STATE(2779)] = 84133, + [SMALL_STATE(2780)] = 84234, + [SMALL_STATE(2781)] = 84291, + [SMALL_STATE(2782)] = 84392, + [SMALL_STATE(2783)] = 84493, + [SMALL_STATE(2784)] = 84594, + [SMALL_STATE(2785)] = 84651, + [SMALL_STATE(2786)] = 84708, + [SMALL_STATE(2787)] = 84809, + [SMALL_STATE(2788)] = 84910, + [SMALL_STATE(2789)] = 85011, + [SMALL_STATE(2790)] = 85112, + [SMALL_STATE(2791)] = 85213, + [SMALL_STATE(2792)] = 85314, + [SMALL_STATE(2793)] = 85371, + [SMALL_STATE(2794)] = 85472, + [SMALL_STATE(2795)] = 85573, + [SMALL_STATE(2796)] = 85674, + [SMALL_STATE(2797)] = 85775, + [SMALL_STATE(2798)] = 85876, + [SMALL_STATE(2799)] = 85977, + [SMALL_STATE(2800)] = 86036, + [SMALL_STATE(2801)] = 86093, + [SMALL_STATE(2802)] = 86194, + [SMALL_STATE(2803)] = 86295, + [SMALL_STATE(2804)] = 86396, [SMALL_STATE(2805)] = 86455, [SMALL_STATE(2806)] = 86556, [SMALL_STATE(2807)] = 86612, [SMALL_STATE(2808)] = 86710, [SMALL_STATE(2809)] = 86808, - [SMALL_STATE(2810)] = 86906, - [SMALL_STATE(2811)] = 87004, - [SMALL_STATE(2812)] = 87102, - [SMALL_STATE(2813)] = 87200, - [SMALL_STATE(2814)] = 87256, - [SMALL_STATE(2815)] = 87310, - [SMALL_STATE(2816)] = 87370, + [SMALL_STATE(2810)] = 86904, + [SMALL_STATE(2811)] = 87002, + [SMALL_STATE(2812)] = 87100, + [SMALL_STATE(2813)] = 87160, + [SMALL_STATE(2814)] = 87258, + [SMALL_STATE(2815)] = 87312, + [SMALL_STATE(2816)] = 87368, [SMALL_STATE(2817)] = 87466, - [SMALL_STATE(2818)] = 87564, - [SMALL_STATE(2819)] = 87662, - [SMALL_STATE(2820)] = 87760, - [SMALL_STATE(2821)] = 87858, - [SMALL_STATE(2822)] = 87952, - [SMALL_STATE(2823)] = 88008, - [SMALL_STATE(2824)] = 88106, - [SMALL_STATE(2825)] = 88200, - [SMALL_STATE(2826)] = 88260, - [SMALL_STATE(2827)] = 88358, - [SMALL_STATE(2828)] = 88456, - [SMALL_STATE(2829)] = 88554, - [SMALL_STATE(2830)] = 88652, - [SMALL_STATE(2831)] = 88750, + [SMALL_STATE(2818)] = 87560, + [SMALL_STATE(2819)] = 87658, + [SMALL_STATE(2820)] = 87754, + [SMALL_STATE(2821)] = 87852, + [SMALL_STATE(2822)] = 87950, + [SMALL_STATE(2823)] = 88048, + [SMALL_STATE(2824)] = 88142, + [SMALL_STATE(2825)] = 88240, + [SMALL_STATE(2826)] = 88338, + [SMALL_STATE(2827)] = 88394, + [SMALL_STATE(2828)] = 88454, + [SMALL_STATE(2829)] = 88552, + [SMALL_STATE(2830)] = 88650, + [SMALL_STATE(2831)] = 88748, [SMALL_STATE(2832)] = 88846, [SMALL_STATE(2833)] = 88944, [SMALL_STATE(2834)] = 88997, - [SMALL_STATE(2835)] = 89052, - [SMALL_STATE(2836)] = 89141, - [SMALL_STATE(2837)] = 89194, - [SMALL_STATE(2838)] = 89247, - [SMALL_STATE(2839)] = 89302, - [SMALL_STATE(2840)] = 89391, - [SMALL_STATE(2841)] = 89444, - [SMALL_STATE(2842)] = 89497, - [SMALL_STATE(2843)] = 89552, - [SMALL_STATE(2844)] = 89605, - [SMALL_STATE(2845)] = 89660, - [SMALL_STATE(2846)] = 89713, - [SMALL_STATE(2847)] = 89766, - [SMALL_STATE(2848)] = 89825, - [SMALL_STATE(2849)] = 89880, - [SMALL_STATE(2850)] = 89933, - [SMALL_STATE(2851)] = 90022, - [SMALL_STATE(2852)] = 90075, - [SMALL_STATE(2853)] = 90128, - [SMALL_STATE(2854)] = 90181, - [SMALL_STATE(2855)] = 90234, - [SMALL_STATE(2856)] = 90287, + [SMALL_STATE(2835)] = 89050, + [SMALL_STATE(2836)] = 89103, + [SMALL_STATE(2837)] = 89156, + [SMALL_STATE(2838)] = 89245, + [SMALL_STATE(2839)] = 89300, + [SMALL_STATE(2840)] = 89355, + [SMALL_STATE(2841)] = 89410, + [SMALL_STATE(2842)] = 89465, + [SMALL_STATE(2843)] = 89518, + [SMALL_STATE(2844)] = 89573, + [SMALL_STATE(2845)] = 89626, + [SMALL_STATE(2846)] = 89679, + [SMALL_STATE(2847)] = 89734, + [SMALL_STATE(2848)] = 89787, + [SMALL_STATE(2849)] = 89876, + [SMALL_STATE(2850)] = 89929, + [SMALL_STATE(2851)] = 89982, + [SMALL_STATE(2852)] = 90037, + [SMALL_STATE(2853)] = 90090, + [SMALL_STATE(2854)] = 90145, + [SMALL_STATE(2855)] = 90198, + [SMALL_STATE(2856)] = 90251, [SMALL_STATE(2857)] = 90340, [SMALL_STATE(2858)] = 90393, [SMALL_STATE(2859)] = 90446, - [SMALL_STATE(2860)] = 90499, + [SMALL_STATE(2860)] = 90535, [SMALL_STATE(2861)] = 90588, - [SMALL_STATE(2862)] = 90683, + [SMALL_STATE(2862)] = 90647, [SMALL_STATE(2863)] = 90736, [SMALL_STATE(2864)] = 90789, - [SMALL_STATE(2865)] = 90842, + [SMALL_STATE(2865)] = 90844, [SMALL_STATE(2866)] = 90897, - [SMALL_STATE(2867)] = 90950, + [SMALL_STATE(2867)] = 90952, [SMALL_STATE(2868)] = 91005, - [SMALL_STATE(2869)] = 91060, - [SMALL_STATE(2870)] = 91115, - [SMALL_STATE(2871)] = 91204, - [SMALL_STATE(2872)] = 91293, - [SMALL_STATE(2873)] = 91346, - [SMALL_STATE(2874)] = 91401, - [SMALL_STATE(2875)] = 91454, - [SMALL_STATE(2876)] = 91509, - [SMALL_STATE(2877)] = 91562, - [SMALL_STATE(2878)] = 91615, + [SMALL_STATE(2869)] = 91058, + [SMALL_STATE(2870)] = 91111, + [SMALL_STATE(2871)] = 91200, + [SMALL_STATE(2872)] = 91255, + [SMALL_STATE(2873)] = 91308, + [SMALL_STATE(2874)] = 91361, + [SMALL_STATE(2875)] = 91414, + [SMALL_STATE(2876)] = 91467, + [SMALL_STATE(2877)] = 91520, + [SMALL_STATE(2878)] = 91573, [SMALL_STATE(2879)] = 91668, [SMALL_STATE(2880)] = 91723, [SMALL_STATE(2881)] = 91778, [SMALL_STATE(2882)] = 91831, [SMALL_STATE(2883)] = 91884, [SMALL_STATE(2884)] = 91939, - [SMALL_STATE(2885)] = 91993, - [SMALL_STATE(2886)] = 92047, - [SMALL_STATE(2887)] = 92101, - [SMALL_STATE(2888)] = 92155, - [SMALL_STATE(2889)] = 92209, - [SMALL_STATE(2890)] = 92265, - [SMALL_STATE(2891)] = 92319, - [SMALL_STATE(2892)] = 92373, - [SMALL_STATE(2893)] = 92427, - [SMALL_STATE(2894)] = 92483, - [SMALL_STATE(2895)] = 92539, - [SMALL_STATE(2896)] = 92593, - [SMALL_STATE(2897)] = 92647, - [SMALL_STATE(2898)] = 92701, - [SMALL_STATE(2899)] = 92755, - [SMALL_STATE(2900)] = 92809, - [SMALL_STATE(2901)] = 92863, - [SMALL_STATE(2902)] = 92917, - [SMALL_STATE(2903)] = 92971, - [SMALL_STATE(2904)] = 93027, - [SMALL_STATE(2905)] = 93083, - [SMALL_STATE(2906)] = 93137, - [SMALL_STATE(2907)] = 93191, - [SMALL_STATE(2908)] = 93247, - [SMALL_STATE(2909)] = 93301, - [SMALL_STATE(2910)] = 93357, - [SMALL_STATE(2911)] = 93411, - [SMALL_STATE(2912)] = 93467, - [SMALL_STATE(2913)] = 93521, - [SMALL_STATE(2914)] = 93575, - [SMALL_STATE(2915)] = 93629, - [SMALL_STATE(2916)] = 93683, - [SMALL_STATE(2917)] = 93737, - [SMALL_STATE(2918)] = 93793, - [SMALL_STATE(2919)] = 93847, - [SMALL_STATE(2920)] = 93903, - [SMALL_STATE(2921)] = 93959, - [SMALL_STATE(2922)] = 94013, - [SMALL_STATE(2923)] = 94069, - [SMALL_STATE(2924)] = 94125, - [SMALL_STATE(2925)] = 94179, - [SMALL_STATE(2926)] = 94233, - [SMALL_STATE(2927)] = 94287, - [SMALL_STATE(2928)] = 94343, - [SMALL_STATE(2929)] = 94397, - [SMALL_STATE(2930)] = 94451, - [SMALL_STATE(2931)] = 94507, - [SMALL_STATE(2932)] = 94561, - [SMALL_STATE(2933)] = 94615, - [SMALL_STATE(2934)] = 94671, - [SMALL_STATE(2935)] = 94725, - [SMALL_STATE(2936)] = 94781, - [SMALL_STATE(2937)] = 94835, - [SMALL_STATE(2938)] = 94889, - [SMALL_STATE(2939)] = 94943, - [SMALL_STATE(2940)] = 94999, - [SMALL_STATE(2941)] = 95055, - [SMALL_STATE(2942)] = 95109, - [SMALL_STATE(2943)] = 95165, - [SMALL_STATE(2944)] = 95221, - [SMALL_STATE(2945)] = 95275, - [SMALL_STATE(2946)] = 95329, - [SMALL_STATE(2947)] = 95383, - [SMALL_STATE(2948)] = 95437, - [SMALL_STATE(2949)] = 95493, - [SMALL_STATE(2950)] = 95549, - [SMALL_STATE(2951)] = 95603, - [SMALL_STATE(2952)] = 95659, - [SMALL_STATE(2953)] = 95713, - [SMALL_STATE(2954)] = 95767, - [SMALL_STATE(2955)] = 95823, + [SMALL_STATE(2885)] = 91995, + [SMALL_STATE(2886)] = 92049, + [SMALL_STATE(2887)] = 92103, + [SMALL_STATE(2888)] = 92159, + [SMALL_STATE(2889)] = 92213, + [SMALL_STATE(2890)] = 92267, + [SMALL_STATE(2891)] = 92323, + [SMALL_STATE(2892)] = 92377, + [SMALL_STATE(2893)] = 92431, + [SMALL_STATE(2894)] = 92487, + [SMALL_STATE(2895)] = 92541, + [SMALL_STATE(2896)] = 92595, + [SMALL_STATE(2897)] = 92651, + [SMALL_STATE(2898)] = 92705, + [SMALL_STATE(2899)] = 92759, + [SMALL_STATE(2900)] = 92813, + [SMALL_STATE(2901)] = 92867, + [SMALL_STATE(2902)] = 92921, + [SMALL_STATE(2903)] = 92975, + [SMALL_STATE(2904)] = 93029, + [SMALL_STATE(2905)] = 93085, + [SMALL_STATE(2906)] = 93141, + [SMALL_STATE(2907)] = 93197, + [SMALL_STATE(2908)] = 93251, + [SMALL_STATE(2909)] = 93305, + [SMALL_STATE(2910)] = 93361, + [SMALL_STATE(2911)] = 93415, + [SMALL_STATE(2912)] = 93469, + [SMALL_STATE(2913)] = 93523, + [SMALL_STATE(2914)] = 93577, + [SMALL_STATE(2915)] = 93631, + [SMALL_STATE(2916)] = 93687, + [SMALL_STATE(2917)] = 93743, + [SMALL_STATE(2918)] = 93799, + [SMALL_STATE(2919)] = 93855, + [SMALL_STATE(2920)] = 93911, + [SMALL_STATE(2921)] = 93967, + [SMALL_STATE(2922)] = 94021, + [SMALL_STATE(2923)] = 94077, + [SMALL_STATE(2924)] = 94131, + [SMALL_STATE(2925)] = 94185, + [SMALL_STATE(2926)] = 94241, + [SMALL_STATE(2927)] = 94295, + [SMALL_STATE(2928)] = 94349, + [SMALL_STATE(2929)] = 94403, + [SMALL_STATE(2930)] = 94459, + [SMALL_STATE(2931)] = 94513, + [SMALL_STATE(2932)] = 94569, + [SMALL_STATE(2933)] = 94623, + [SMALL_STATE(2934)] = 94677, + [SMALL_STATE(2935)] = 94731, + [SMALL_STATE(2936)] = 94785, + [SMALL_STATE(2937)] = 94841, + [SMALL_STATE(2938)] = 94895, + [SMALL_STATE(2939)] = 94949, + [SMALL_STATE(2940)] = 95005, + [SMALL_STATE(2941)] = 95059, + [SMALL_STATE(2942)] = 95113, + [SMALL_STATE(2943)] = 95169, + [SMALL_STATE(2944)] = 95223, + [SMALL_STATE(2945)] = 95279, + [SMALL_STATE(2946)] = 95333, + [SMALL_STATE(2947)] = 95389, + [SMALL_STATE(2948)] = 95443, + [SMALL_STATE(2949)] = 95499, + [SMALL_STATE(2950)] = 95553, + [SMALL_STATE(2951)] = 95607, + [SMALL_STATE(2952)] = 95661, + [SMALL_STATE(2953)] = 95715, + [SMALL_STATE(2954)] = 95771, + [SMALL_STATE(2955)] = 95825, [SMALL_STATE(2956)] = 95879, - [SMALL_STATE(2957)] = 95933, + [SMALL_STATE(2957)] = 95935, [SMALL_STATE(2958)] = 95989, [SMALL_STATE(2959)] = 96045, [SMALL_STATE(2960)] = 96099, @@ -311320,24 +311224,24 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2964)] = 96449, [SMALL_STATE(2965)] = 96535, [SMALL_STATE(2966)] = 96621, - [SMALL_STATE(2967)] = 96681, - [SMALL_STATE(2968)] = 96767, - [SMALL_STATE(2969)] = 96853, - [SMALL_STATE(2970)] = 96939, - [SMALL_STATE(2971)] = 97025, - [SMALL_STATE(2972)] = 97111, - [SMALL_STATE(2973)] = 97197, - [SMALL_STATE(2974)] = 97283, - [SMALL_STATE(2975)] = 97369, - [SMALL_STATE(2976)] = 97455, - [SMALL_STATE(2977)] = 97541, - [SMALL_STATE(2978)] = 97627, - [SMALL_STATE(2979)] = 97713, - [SMALL_STATE(2980)] = 97799, - [SMALL_STATE(2981)] = 97885, - [SMALL_STATE(2982)] = 97971, - [SMALL_STATE(2983)] = 98057, - [SMALL_STATE(2984)] = 98143, + [SMALL_STATE(2967)] = 96707, + [SMALL_STATE(2968)] = 96793, + [SMALL_STATE(2969)] = 96879, + [SMALL_STATE(2970)] = 96965, + [SMALL_STATE(2971)] = 97051, + [SMALL_STATE(2972)] = 97137, + [SMALL_STATE(2973)] = 97223, + [SMALL_STATE(2974)] = 97309, + [SMALL_STATE(2975)] = 97395, + [SMALL_STATE(2976)] = 97481, + [SMALL_STATE(2977)] = 97567, + [SMALL_STATE(2978)] = 97653, + [SMALL_STATE(2979)] = 97739, + [SMALL_STATE(2980)] = 97825, + [SMALL_STATE(2981)] = 97911, + [SMALL_STATE(2982)] = 97997, + [SMALL_STATE(2983)] = 98083, + [SMALL_STATE(2984)] = 98169, [SMALL_STATE(2985)] = 98229, [SMALL_STATE(2986)] = 98315, [SMALL_STATE(2987)] = 98401, @@ -311593,14 +311497,14 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3237)] = 119115, [SMALL_STATE(3238)] = 119183, [SMALL_STATE(3239)] = 119251, - [SMALL_STATE(3240)] = 119325, - [SMALL_STATE(3241)] = 119399, - [SMALL_STATE(3242)] = 119467, - [SMALL_STATE(3243)] = 119535, - [SMALL_STATE(3244)] = 119603, - [SMALL_STATE(3245)] = 119671, - [SMALL_STATE(3246)] = 119739, - [SMALL_STATE(3247)] = 119807, + [SMALL_STATE(3240)] = 119319, + [SMALL_STATE(3241)] = 119387, + [SMALL_STATE(3242)] = 119455, + [SMALL_STATE(3243)] = 119529, + [SMALL_STATE(3244)] = 119597, + [SMALL_STATE(3245)] = 119665, + [SMALL_STATE(3246)] = 119733, + [SMALL_STATE(3247)] = 119801, [SMALL_STATE(3248)] = 119875, [SMALL_STATE(3249)] = 119944, [SMALL_STATE(3250)] = 119981, @@ -311609,83 +311513,83 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3253)] = 120092, [SMALL_STATE(3254)] = 120129, [SMALL_STATE(3255)] = 120166, - [SMALL_STATE(3256)] = 120199, - [SMALL_STATE(3257)] = 120232, - [SMALL_STATE(3258)] = 120265, - [SMALL_STATE(3259)] = 120312, - [SMALL_STATE(3260)] = 120359, - [SMALL_STATE(3261)] = 120392, + [SMALL_STATE(3256)] = 120213, + [SMALL_STATE(3257)] = 120260, + [SMALL_STATE(3258)] = 120311, + [SMALL_STATE(3259)] = 120344, + [SMALL_STATE(3260)] = 120377, + [SMALL_STATE(3261)] = 120410, [SMALL_STATE(3262)] = 120443, [SMALL_STATE(3263)] = 120476, [SMALL_STATE(3264)] = 120523, - [SMALL_STATE(3265)] = 120557, + [SMALL_STATE(3265)] = 120553, [SMALL_STATE(3266)] = 120587, [SMALL_STATE(3267)] = 120623, - [SMALL_STATE(3268)] = 120653, + [SMALL_STATE(3268)] = 120657, [SMALL_STATE(3269)] = 120687, [SMALL_STATE(3270)] = 120717, [SMALL_STATE(3271)] = 120750, - [SMALL_STATE(3272)] = 120783, + [SMALL_STATE(3272)] = 120781, [SMALL_STATE(3273)] = 120814, - [SMALL_STATE(3274)] = 120845, - [SMALL_STATE(3275)] = 120878, - [SMALL_STATE(3276)] = 120911, - [SMALL_STATE(3277)] = 120944, - [SMALL_STATE(3278)] = 120977, + [SMALL_STATE(3274)] = 120847, + [SMALL_STATE(3275)] = 120880, + [SMALL_STATE(3276)] = 120913, + [SMALL_STATE(3277)] = 120946, + [SMALL_STATE(3278)] = 120979, [SMALL_STATE(3279)] = 121010, [SMALL_STATE(3280)] = 121042, [SMALL_STATE(3281)] = 121090, - [SMALL_STATE(3282)] = 121120, - [SMALL_STATE(3283)] = 121166, - [SMALL_STATE(3284)] = 121196, + [SMALL_STATE(3282)] = 121138, + [SMALL_STATE(3283)] = 121168, + [SMALL_STATE(3284)] = 121198, [SMALL_STATE(3285)] = 121244, - [SMALL_STATE(3286)] = 121291, - [SMALL_STATE(3287)] = 121338, - [SMALL_STATE(3288)] = 121385, - [SMALL_STATE(3289)] = 121432, - [SMALL_STATE(3290)] = 121479, - [SMALL_STATE(3291)] = 121526, - [SMALL_STATE(3292)] = 121573, - [SMALL_STATE(3293)] = 121620, - [SMALL_STATE(3294)] = 121655, - [SMALL_STATE(3295)] = 121690, - [SMALL_STATE(3296)] = 121737, - [SMALL_STATE(3297)] = 121784, - [SMALL_STATE(3298)] = 121831, - [SMALL_STATE(3299)] = 121866, - [SMALL_STATE(3300)] = 121913, - [SMALL_STATE(3301)] = 121960, - [SMALL_STATE(3302)] = 121995, - [SMALL_STATE(3303)] = 122042, - [SMALL_STATE(3304)] = 122089, - [SMALL_STATE(3305)] = 122136, - [SMALL_STATE(3306)] = 122167, - [SMALL_STATE(3307)] = 122196, - [SMALL_STATE(3308)] = 122231, - [SMALL_STATE(3309)] = 122266, - [SMALL_STATE(3310)] = 122295, - [SMALL_STATE(3311)] = 122340, - [SMALL_STATE(3312)] = 122387, - [SMALL_STATE(3313)] = 122422, - [SMALL_STATE(3314)] = 122469, - [SMALL_STATE(3315)] = 122516, - [SMALL_STATE(3316)] = 122551, - [SMALL_STATE(3317)] = 122598, - [SMALL_STATE(3318)] = 122645, - [SMALL_STATE(3319)] = 122692, - [SMALL_STATE(3320)] = 122721, - [SMALL_STATE(3321)] = 122768, - [SMALL_STATE(3322)] = 122799, - [SMALL_STATE(3323)] = 122846, - [SMALL_STATE(3324)] = 122875, - [SMALL_STATE(3325)] = 122922, - [SMALL_STATE(3326)] = 122951, - [SMALL_STATE(3327)] = 122998, - [SMALL_STATE(3328)] = 123027, - [SMALL_STATE(3329)] = 123074, - [SMALL_STATE(3330)] = 123121, + [SMALL_STATE(3286)] = 121279, + [SMALL_STATE(3287)] = 121326, + [SMALL_STATE(3288)] = 121373, + [SMALL_STATE(3289)] = 121404, + [SMALL_STATE(3290)] = 121451, + [SMALL_STATE(3291)] = 121498, + [SMALL_STATE(3292)] = 121533, + [SMALL_STATE(3293)] = 121562, + [SMALL_STATE(3294)] = 121609, + [SMALL_STATE(3295)] = 121638, + [SMALL_STATE(3296)] = 121667, + [SMALL_STATE(3297)] = 121702, + [SMALL_STATE(3298)] = 121749, + [SMALL_STATE(3299)] = 121796, + [SMALL_STATE(3300)] = 121825, + [SMALL_STATE(3301)] = 121872, + [SMALL_STATE(3302)] = 121919, + [SMALL_STATE(3303)] = 121950, + [SMALL_STATE(3304)] = 121995, + [SMALL_STATE(3305)] = 122042, + [SMALL_STATE(3306)] = 122071, + [SMALL_STATE(3307)] = 122118, + [SMALL_STATE(3308)] = 122165, + [SMALL_STATE(3309)] = 122212, + [SMALL_STATE(3310)] = 122259, + [SMALL_STATE(3311)] = 122294, + [SMALL_STATE(3312)] = 122341, + [SMALL_STATE(3313)] = 122388, + [SMALL_STATE(3314)] = 122417, + [SMALL_STATE(3315)] = 122452, + [SMALL_STATE(3316)] = 122499, + [SMALL_STATE(3317)] = 122546, + [SMALL_STATE(3318)] = 122593, + [SMALL_STATE(3319)] = 122640, + [SMALL_STATE(3320)] = 122669, + [SMALL_STATE(3321)] = 122716, + [SMALL_STATE(3322)] = 122763, + [SMALL_STATE(3323)] = 122810, + [SMALL_STATE(3324)] = 122857, + [SMALL_STATE(3325)] = 122892, + [SMALL_STATE(3326)] = 122927, + [SMALL_STATE(3327)] = 122974, + [SMALL_STATE(3328)] = 123021, + [SMALL_STATE(3329)] = 123068, + [SMALL_STATE(3330)] = 123115, [SMALL_STATE(3331)] = 123150, - [SMALL_STATE(3332)] = 123182, + [SMALL_STATE(3332)] = 123176, [SMALL_STATE(3333)] = 123208, [SMALL_STATE(3334)] = 123234, [SMALL_STATE(3335)] = 123260, @@ -311697,12 +311601,12 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3341)] = 123423, [SMALL_STATE(3342)] = 123447, [SMALL_STATE(3343)] = 123471, - [SMALL_STATE(3344)] = 123499, - [SMALL_STATE(3345)] = 123523, - [SMALL_STATE(3346)] = 123547, - [SMALL_STATE(3347)] = 123577, - [SMALL_STATE(3348)] = 123601, - [SMALL_STATE(3349)] = 123625, + [SMALL_STATE(3344)] = 123495, + [SMALL_STATE(3345)] = 123525, + [SMALL_STATE(3346)] = 123549, + [SMALL_STATE(3347)] = 123573, + [SMALL_STATE(3348)] = 123597, + [SMALL_STATE(3349)] = 123621, [SMALL_STATE(3350)] = 123649, [SMALL_STATE(3351)] = 123673, [SMALL_STATE(3352)] = 123697, @@ -311710,5056 +311614,5027 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3354)] = 123745, [SMALL_STATE(3355)] = 123769, [SMALL_STATE(3356)] = 123793, - [SMALL_STATE(3357)] = 123821, - [SMALL_STATE(3358)] = 123845, - [SMALL_STATE(3359)] = 123869, + [SMALL_STATE(3357)] = 123817, + [SMALL_STATE(3358)] = 123841, + [SMALL_STATE(3359)] = 123865, [SMALL_STATE(3360)] = 123893, [SMALL_STATE(3361)] = 123917, [SMALL_STATE(3362)] = 123941, [SMALL_STATE(3363)] = 123965, [SMALL_STATE(3364)] = 123989, - [SMALL_STATE(3365)] = 124018, - [SMALL_STATE(3366)] = 124045, + [SMALL_STATE(3365)] = 124016, + [SMALL_STATE(3366)] = 124055, [SMALL_STATE(3367)] = 124084, [SMALL_STATE(3368)] = 124118, - [SMALL_STATE(3369)] = 124140, - [SMALL_STATE(3370)] = 124174, - [SMALL_STATE(3371)] = 124200, - [SMALL_STATE(3372)] = 124224, - [SMALL_STATE(3373)] = 124252, - [SMALL_STATE(3374)] = 124286, - [SMALL_STATE(3375)] = 124322, - [SMALL_STATE(3376)] = 124350, - [SMALL_STATE(3377)] = 124384, - [SMALL_STATE(3378)] = 124418, - [SMALL_STATE(3379)] = 124452, - [SMALL_STATE(3380)] = 124486, - [SMALL_STATE(3381)] = 124520, - [SMALL_STATE(3382)] = 124554, + [SMALL_STATE(3369)] = 124152, + [SMALL_STATE(3370)] = 124178, + [SMALL_STATE(3371)] = 124212, + [SMALL_STATE(3372)] = 124246, + [SMALL_STATE(3373)] = 124280, + [SMALL_STATE(3374)] = 124314, + [SMALL_STATE(3375)] = 124348, + [SMALL_STATE(3376)] = 124382, + [SMALL_STATE(3377)] = 124416, + [SMALL_STATE(3378)] = 124438, + [SMALL_STATE(3379)] = 124466, + [SMALL_STATE(3380)] = 124500, + [SMALL_STATE(3381)] = 124528, + [SMALL_STATE(3382)] = 124564, [SMALL_STATE(3383)] = 124588, [SMALL_STATE(3384)] = 124622, [SMALL_STATE(3385)] = 124656, [SMALL_STATE(3386)] = 124677, [SMALL_STATE(3387)] = 124698, [SMALL_STATE(3388)] = 124721, - [SMALL_STATE(3389)] = 124746, - [SMALL_STATE(3390)] = 124769, - [SMALL_STATE(3391)] = 124792, - [SMALL_STATE(3392)] = 124813, - [SMALL_STATE(3393)] = 124834, - [SMALL_STATE(3394)] = 124863, - [SMALL_STATE(3395)] = 124884, - [SMALL_STATE(3396)] = 124907, - [SMALL_STATE(3397)] = 124928, - [SMALL_STATE(3398)] = 124963, - [SMALL_STATE(3399)] = 124988, - [SMALL_STATE(3400)] = 125009, - [SMALL_STATE(3401)] = 125030, - [SMALL_STATE(3402)] = 125051, - [SMALL_STATE(3403)] = 125079, - [SMALL_STATE(3404)] = 125107, - [SMALL_STATE(3405)] = 125135, - [SMALL_STATE(3406)] = 125155, - [SMALL_STATE(3407)] = 125183, - [SMALL_STATE(3408)] = 125211, - [SMALL_STATE(3409)] = 125243, - [SMALL_STATE(3410)] = 125271, - [SMALL_STATE(3411)] = 125299, - [SMALL_STATE(3412)] = 125327, - [SMALL_STATE(3413)] = 125355, - [SMALL_STATE(3414)] = 125385, - [SMALL_STATE(3415)] = 125413, - [SMALL_STATE(3416)] = 125441, - [SMALL_STATE(3417)] = 125469, - [SMALL_STATE(3418)] = 125497, - [SMALL_STATE(3419)] = 125525, - [SMALL_STATE(3420)] = 125553, - [SMALL_STATE(3421)] = 125581, - [SMALL_STATE(3422)] = 125609, - [SMALL_STATE(3423)] = 125641, - [SMALL_STATE(3424)] = 125669, - [SMALL_STATE(3425)] = 125697, - [SMALL_STATE(3426)] = 125725, - [SMALL_STATE(3427)] = 125753, - [SMALL_STATE(3428)] = 125781, - [SMALL_STATE(3429)] = 125805, - [SMALL_STATE(3430)] = 125825, - [SMALL_STATE(3431)] = 125853, - [SMALL_STATE(3432)] = 125883, - [SMALL_STATE(3433)] = 125911, - [SMALL_STATE(3434)] = 125939, - [SMALL_STATE(3435)] = 125959, - [SMALL_STATE(3436)] = 125988, - [SMALL_STATE(3437)] = 126017, - [SMALL_STATE(3438)] = 126040, - [SMALL_STATE(3439)] = 126063, - [SMALL_STATE(3440)] = 126092, - [SMALL_STATE(3441)] = 126121, - [SMALL_STATE(3442)] = 126150, - [SMALL_STATE(3443)] = 126179, - [SMALL_STATE(3444)] = 126208, - [SMALL_STATE(3445)] = 126237, - [SMALL_STATE(3446)] = 126260, - [SMALL_STATE(3447)] = 126289, - [SMALL_STATE(3448)] = 126318, - [SMALL_STATE(3449)] = 126347, - [SMALL_STATE(3450)] = 126368, - [SMALL_STATE(3451)] = 126397, - [SMALL_STATE(3452)] = 126426, - [SMALL_STATE(3453)] = 126455, - [SMALL_STATE(3454)] = 126484, - [SMALL_STATE(3455)] = 126513, - [SMALL_STATE(3456)] = 126542, - [SMALL_STATE(3457)] = 126571, - [SMALL_STATE(3458)] = 126600, - [SMALL_STATE(3459)] = 126629, - [SMALL_STATE(3460)] = 126658, - [SMALL_STATE(3461)] = 126681, - [SMALL_STATE(3462)] = 126710, - [SMALL_STATE(3463)] = 126739, - [SMALL_STATE(3464)] = 126768, - [SMALL_STATE(3465)] = 126797, - [SMALL_STATE(3466)] = 126826, - [SMALL_STATE(3467)] = 126855, - [SMALL_STATE(3468)] = 126884, - [SMALL_STATE(3469)] = 126907, - [SMALL_STATE(3470)] = 126936, - [SMALL_STATE(3471)] = 126965, - [SMALL_STATE(3472)] = 126994, - [SMALL_STATE(3473)] = 127023, - [SMALL_STATE(3474)] = 127052, - [SMALL_STATE(3475)] = 127081, - [SMALL_STATE(3476)] = 127110, - [SMALL_STATE(3477)] = 127139, - [SMALL_STATE(3478)] = 127168, - [SMALL_STATE(3479)] = 127197, - [SMALL_STATE(3480)] = 127226, - [SMALL_STATE(3481)] = 127255, - [SMALL_STATE(3482)] = 127282, - [SMALL_STATE(3483)] = 127309, - [SMALL_STATE(3484)] = 127330, - [SMALL_STATE(3485)] = 127359, - [SMALL_STATE(3486)] = 127382, - [SMALL_STATE(3487)] = 127411, - [SMALL_STATE(3488)] = 127440, - [SMALL_STATE(3489)] = 127469, - [SMALL_STATE(3490)] = 127490, - [SMALL_STATE(3491)] = 127519, - [SMALL_STATE(3492)] = 127548, - [SMALL_STATE(3493)] = 127577, - [SMALL_STATE(3494)] = 127606, - [SMALL_STATE(3495)] = 127635, - [SMALL_STATE(3496)] = 127664, - [SMALL_STATE(3497)] = 127693, - [SMALL_STATE(3498)] = 127722, - [SMALL_STATE(3499)] = 127751, - [SMALL_STATE(3500)] = 127780, - [SMALL_STATE(3501)] = 127809, - [SMALL_STATE(3502)] = 127838, - [SMALL_STATE(3503)] = 127867, - [SMALL_STATE(3504)] = 127896, - [SMALL_STATE(3505)] = 127925, - [SMALL_STATE(3506)] = 127954, - [SMALL_STATE(3507)] = 127983, - [SMALL_STATE(3508)] = 128012, - [SMALL_STATE(3509)] = 128041, - [SMALL_STATE(3510)] = 128070, - [SMALL_STATE(3511)] = 128099, - [SMALL_STATE(3512)] = 128122, - [SMALL_STATE(3513)] = 128151, - [SMALL_STATE(3514)] = 128180, - [SMALL_STATE(3515)] = 128209, - [SMALL_STATE(3516)] = 128238, - [SMALL_STATE(3517)] = 128267, - [SMALL_STATE(3518)] = 128296, - [SMALL_STATE(3519)] = 128325, - [SMALL_STATE(3520)] = 128354, - [SMALL_STATE(3521)] = 128383, - [SMALL_STATE(3522)] = 128412, - [SMALL_STATE(3523)] = 128441, - [SMALL_STATE(3524)] = 128470, - [SMALL_STATE(3525)] = 128493, - [SMALL_STATE(3526)] = 128522, - [SMALL_STATE(3527)] = 128551, - [SMALL_STATE(3528)] = 128580, - [SMALL_STATE(3529)] = 128609, - [SMALL_STATE(3530)] = 128638, - [SMALL_STATE(3531)] = 128667, - [SMALL_STATE(3532)] = 128696, - [SMALL_STATE(3533)] = 128725, - [SMALL_STATE(3534)] = 128754, - [SMALL_STATE(3535)] = 128783, - [SMALL_STATE(3536)] = 128812, - [SMALL_STATE(3537)] = 128841, - [SMALL_STATE(3538)] = 128870, - [SMALL_STATE(3539)] = 128899, - [SMALL_STATE(3540)] = 128928, - [SMALL_STATE(3541)] = 128957, - [SMALL_STATE(3542)] = 128986, - [SMALL_STATE(3543)] = 129015, - [SMALL_STATE(3544)] = 129038, - [SMALL_STATE(3545)] = 129067, - [SMALL_STATE(3546)] = 129096, - [SMALL_STATE(3547)] = 129125, - [SMALL_STATE(3548)] = 129152, - [SMALL_STATE(3549)] = 129174, - [SMALL_STATE(3550)] = 129192, - [SMALL_STATE(3551)] = 129212, - [SMALL_STATE(3552)] = 129238, - [SMALL_STATE(3553)] = 129262, - [SMALL_STATE(3554)] = 129286, - [SMALL_STATE(3555)] = 129308, - [SMALL_STATE(3556)] = 129330, - [SMALL_STATE(3557)] = 129352, - [SMALL_STATE(3558)] = 129372, - [SMALL_STATE(3559)] = 129394, - [SMALL_STATE(3560)] = 129414, - [SMALL_STATE(3561)] = 129432, - [SMALL_STATE(3562)] = 129456, - [SMALL_STATE(3563)] = 129480, - [SMALL_STATE(3564)] = 129500, - [SMALL_STATE(3565)] = 129526, - [SMALL_STATE(3566)] = 129552, - [SMALL_STATE(3567)] = 129574, - [SMALL_STATE(3568)] = 129592, - [SMALL_STATE(3569)] = 129612, - [SMALL_STATE(3570)] = 129638, - [SMALL_STATE(3571)] = 129662, - [SMALL_STATE(3572)] = 129686, - [SMALL_STATE(3573)] = 129704, - [SMALL_STATE(3574)] = 129728, - [SMALL_STATE(3575)] = 129754, - [SMALL_STATE(3576)] = 129780, - [SMALL_STATE(3577)] = 129798, - [SMALL_STATE(3578)] = 129818, - [SMALL_STATE(3579)] = 129836, - [SMALL_STATE(3580)] = 129860, - [SMALL_STATE(3581)] = 129881, - [SMALL_STATE(3582)] = 129902, - [SMALL_STATE(3583)] = 129923, - [SMALL_STATE(3584)] = 129944, - [SMALL_STATE(3585)] = 129965, - [SMALL_STATE(3586)] = 129986, - [SMALL_STATE(3587)] = 130007, - [SMALL_STATE(3588)] = 130030, - [SMALL_STATE(3589)] = 130051, - [SMALL_STATE(3590)] = 130072, - [SMALL_STATE(3591)] = 130093, - [SMALL_STATE(3592)] = 130116, - [SMALL_STATE(3593)] = 130137, - [SMALL_STATE(3594)] = 130156, - [SMALL_STATE(3595)] = 130173, - [SMALL_STATE(3596)] = 130194, - [SMALL_STATE(3597)] = 130217, - [SMALL_STATE(3598)] = 130238, - [SMALL_STATE(3599)] = 130259, - [SMALL_STATE(3600)] = 130276, - [SMALL_STATE(3601)] = 130297, - [SMALL_STATE(3602)] = 130316, - [SMALL_STATE(3603)] = 130337, - [SMALL_STATE(3604)] = 130360, - [SMALL_STATE(3605)] = 130381, - [SMALL_STATE(3606)] = 130402, - [SMALL_STATE(3607)] = 130423, - [SMALL_STATE(3608)] = 130444, - [SMALL_STATE(3609)] = 130465, - [SMALL_STATE(3610)] = 130486, - [SMALL_STATE(3611)] = 130507, - [SMALL_STATE(3612)] = 130526, - [SMALL_STATE(3613)] = 130549, - [SMALL_STATE(3614)] = 130572, - [SMALL_STATE(3615)] = 130595, - [SMALL_STATE(3616)] = 130616, - [SMALL_STATE(3617)] = 130637, - [SMALL_STATE(3618)] = 130654, - [SMALL_STATE(3619)] = 130675, - [SMALL_STATE(3620)] = 130696, - [SMALL_STATE(3621)] = 130715, - [SMALL_STATE(3622)] = 130734, - [SMALL_STATE(3623)] = 130755, - [SMALL_STATE(3624)] = 130772, - [SMALL_STATE(3625)] = 130793, - [SMALL_STATE(3626)] = 130810, - [SMALL_STATE(3627)] = 130827, - [SMALL_STATE(3628)] = 130850, - [SMALL_STATE(3629)] = 130871, - [SMALL_STATE(3630)] = 130892, - [SMALL_STATE(3631)] = 130913, - [SMALL_STATE(3632)] = 130934, - [SMALL_STATE(3633)] = 130957, - [SMALL_STATE(3634)] = 130978, - [SMALL_STATE(3635)] = 130999, - [SMALL_STATE(3636)] = 131020, - [SMALL_STATE(3637)] = 131043, - [SMALL_STATE(3638)] = 131064, - [SMALL_STATE(3639)] = 131085, - [SMALL_STATE(3640)] = 131104, - [SMALL_STATE(3641)] = 131125, - [SMALL_STATE(3642)] = 131146, - [SMALL_STATE(3643)] = 131163, - [SMALL_STATE(3644)] = 131184, - [SMALL_STATE(3645)] = 131205, - [SMALL_STATE(3646)] = 131226, - [SMALL_STATE(3647)] = 131247, - [SMALL_STATE(3648)] = 131266, - [SMALL_STATE(3649)] = 131283, - [SMALL_STATE(3650)] = 131300, - [SMALL_STATE(3651)] = 131321, - [SMALL_STATE(3652)] = 131342, - [SMALL_STATE(3653)] = 131363, - [SMALL_STATE(3654)] = 131380, - [SMALL_STATE(3655)] = 131401, - [SMALL_STATE(3656)] = 131418, - [SMALL_STATE(3657)] = 131441, - [SMALL_STATE(3658)] = 131462, - [SMALL_STATE(3659)] = 131485, - [SMALL_STATE(3660)] = 131508, - [SMALL_STATE(3661)] = 131531, - [SMALL_STATE(3662)] = 131550, - [SMALL_STATE(3663)] = 131573, - [SMALL_STATE(3664)] = 131594, - [SMALL_STATE(3665)] = 131615, - [SMALL_STATE(3666)] = 131638, - [SMALL_STATE(3667)] = 131659, - [SMALL_STATE(3668)] = 131678, - [SMALL_STATE(3669)] = 131695, - [SMALL_STATE(3670)] = 131716, - [SMALL_STATE(3671)] = 131737, - [SMALL_STATE(3672)] = 131754, - [SMALL_STATE(3673)] = 131771, - [SMALL_STATE(3674)] = 131792, - [SMALL_STATE(3675)] = 131813, - [SMALL_STATE(3676)] = 131834, - [SMALL_STATE(3677)] = 131855, - [SMALL_STATE(3678)] = 131872, - [SMALL_STATE(3679)] = 131893, - [SMALL_STATE(3680)] = 131914, - [SMALL_STATE(3681)] = 131933, - [SMALL_STATE(3682)] = 131950, - [SMALL_STATE(3683)] = 131969, - [SMALL_STATE(3684)] = 131992, - [SMALL_STATE(3685)] = 132009, - [SMALL_STATE(3686)] = 132030, - [SMALL_STATE(3687)] = 132051, - [SMALL_STATE(3688)] = 132068, - [SMALL_STATE(3689)] = 132085, - [SMALL_STATE(3690)] = 132102, - [SMALL_STATE(3691)] = 132121, - [SMALL_STATE(3692)] = 132142, - [SMALL_STATE(3693)] = 132163, - [SMALL_STATE(3694)] = 132186, - [SMALL_STATE(3695)] = 132203, - [SMALL_STATE(3696)] = 132226, - [SMALL_STATE(3697)] = 132247, - [SMALL_STATE(3698)] = 132264, - [SMALL_STATE(3699)] = 132285, - [SMALL_STATE(3700)] = 132308, - [SMALL_STATE(3701)] = 132331, - [SMALL_STATE(3702)] = 132352, - [SMALL_STATE(3703)] = 132369, - [SMALL_STATE(3704)] = 132390, - [SMALL_STATE(3705)] = 132413, - [SMALL_STATE(3706)] = 132434, - [SMALL_STATE(3707)] = 132455, - [SMALL_STATE(3708)] = 132476, - [SMALL_STATE(3709)] = 132499, - [SMALL_STATE(3710)] = 132520, - [SMALL_STATE(3711)] = 132541, - [SMALL_STATE(3712)] = 132560, - [SMALL_STATE(3713)] = 132581, - [SMALL_STATE(3714)] = 132604, - [SMALL_STATE(3715)] = 132625, - [SMALL_STATE(3716)] = 132646, - [SMALL_STATE(3717)] = 132669, - [SMALL_STATE(3718)] = 132690, - [SMALL_STATE(3719)] = 132711, - [SMALL_STATE(3720)] = 132732, - [SMALL_STATE(3721)] = 132753, - [SMALL_STATE(3722)] = 132776, - [SMALL_STATE(3723)] = 132793, - [SMALL_STATE(3724)] = 132814, - [SMALL_STATE(3725)] = 132835, - [SMALL_STATE(3726)] = 132856, - [SMALL_STATE(3727)] = 132877, - [SMALL_STATE(3728)] = 132898, - [SMALL_STATE(3729)] = 132919, - [SMALL_STATE(3730)] = 132936, - [SMALL_STATE(3731)] = 132959, - [SMALL_STATE(3732)] = 132982, - [SMALL_STATE(3733)] = 133003, - [SMALL_STATE(3734)] = 133024, - [SMALL_STATE(3735)] = 133045, - [SMALL_STATE(3736)] = 133068, - [SMALL_STATE(3737)] = 133089, - [SMALL_STATE(3738)] = 133110, - [SMALL_STATE(3739)] = 133133, - [SMALL_STATE(3740)] = 133154, - [SMALL_STATE(3741)] = 133175, - [SMALL_STATE(3742)] = 133198, - [SMALL_STATE(3743)] = 133217, - [SMALL_STATE(3744)] = 133238, - [SMALL_STATE(3745)] = 133255, - [SMALL_STATE(3746)] = 133276, - [SMALL_STATE(3747)] = 133299, - [SMALL_STATE(3748)] = 133322, - [SMALL_STATE(3749)] = 133343, - [SMALL_STATE(3750)] = 133364, - [SMALL_STATE(3751)] = 133387, - [SMALL_STATE(3752)] = 133408, - [SMALL_STATE(3753)] = 133429, - [SMALL_STATE(3754)] = 133450, - [SMALL_STATE(3755)] = 133471, - [SMALL_STATE(3756)] = 133492, - [SMALL_STATE(3757)] = 133512, - [SMALL_STATE(3758)] = 133532, - [SMALL_STATE(3759)] = 133552, - [SMALL_STATE(3760)] = 133572, - [SMALL_STATE(3761)] = 133592, - [SMALL_STATE(3762)] = 133608, - [SMALL_STATE(3763)] = 133628, - [SMALL_STATE(3764)] = 133648, - [SMALL_STATE(3765)] = 133668, - [SMALL_STATE(3766)] = 133688, - [SMALL_STATE(3767)] = 133708, - [SMALL_STATE(3768)] = 133728, - [SMALL_STATE(3769)] = 133748, - [SMALL_STATE(3770)] = 133768, - [SMALL_STATE(3771)] = 133788, - [SMALL_STATE(3772)] = 133808, - [SMALL_STATE(3773)] = 133824, - [SMALL_STATE(3774)] = 133842, - [SMALL_STATE(3775)] = 133862, - [SMALL_STATE(3776)] = 133878, - [SMALL_STATE(3777)] = 133898, - [SMALL_STATE(3778)] = 133916, - [SMALL_STATE(3779)] = 133936, - [SMALL_STATE(3780)] = 133954, - [SMALL_STATE(3781)] = 133974, - [SMALL_STATE(3782)] = 133994, - [SMALL_STATE(3783)] = 134014, - [SMALL_STATE(3784)] = 134034, - [SMALL_STATE(3785)] = 134054, - [SMALL_STATE(3786)] = 134074, - [SMALL_STATE(3787)] = 134092, - [SMALL_STATE(3788)] = 134112, - [SMALL_STATE(3789)] = 134132, - [SMALL_STATE(3790)] = 134148, - [SMALL_STATE(3791)] = 134168, - [SMALL_STATE(3792)] = 134188, - [SMALL_STATE(3793)] = 134208, - [SMALL_STATE(3794)] = 134228, - [SMALL_STATE(3795)] = 134248, - [SMALL_STATE(3796)] = 134268, - [SMALL_STATE(3797)] = 134288, - [SMALL_STATE(3798)] = 134308, - [SMALL_STATE(3799)] = 134328, - [SMALL_STATE(3800)] = 134348, - [SMALL_STATE(3801)] = 134368, - [SMALL_STATE(3802)] = 134388, - [SMALL_STATE(3803)] = 134406, - [SMALL_STATE(3804)] = 134426, - [SMALL_STATE(3805)] = 134446, - [SMALL_STATE(3806)] = 134466, - [SMALL_STATE(3807)] = 134486, - [SMALL_STATE(3808)] = 134504, - [SMALL_STATE(3809)] = 134524, - [SMALL_STATE(3810)] = 134544, - [SMALL_STATE(3811)] = 134562, - [SMALL_STATE(3812)] = 134578, - [SMALL_STATE(3813)] = 134598, - [SMALL_STATE(3814)] = 134618, - [SMALL_STATE(3815)] = 134638, - [SMALL_STATE(3816)] = 134658, - [SMALL_STATE(3817)] = 134678, - [SMALL_STATE(3818)] = 134694, - [SMALL_STATE(3819)] = 134714, - [SMALL_STATE(3820)] = 134734, - [SMALL_STATE(3821)] = 134754, - [SMALL_STATE(3822)] = 134774, - [SMALL_STATE(3823)] = 134794, - [SMALL_STATE(3824)] = 134814, - [SMALL_STATE(3825)] = 134834, - [SMALL_STATE(3826)] = 134854, - [SMALL_STATE(3827)] = 134874, - [SMALL_STATE(3828)] = 134894, - [SMALL_STATE(3829)] = 134914, - [SMALL_STATE(3830)] = 134934, - [SMALL_STATE(3831)] = 134954, - [SMALL_STATE(3832)] = 134974, - [SMALL_STATE(3833)] = 134994, - [SMALL_STATE(3834)] = 135014, - [SMALL_STATE(3835)] = 135034, - [SMALL_STATE(3836)] = 135054, - [SMALL_STATE(3837)] = 135074, - [SMALL_STATE(3838)] = 135094, - [SMALL_STATE(3839)] = 135114, - [SMALL_STATE(3840)] = 135134, - [SMALL_STATE(3841)] = 135154, - [SMALL_STATE(3842)] = 135174, - [SMALL_STATE(3843)] = 135194, - [SMALL_STATE(3844)] = 135214, - [SMALL_STATE(3845)] = 135234, - [SMALL_STATE(3846)] = 135250, - [SMALL_STATE(3847)] = 135268, - [SMALL_STATE(3848)] = 135288, - [SMALL_STATE(3849)] = 135306, - [SMALL_STATE(3850)] = 135324, - [SMALL_STATE(3851)] = 135344, - [SMALL_STATE(3852)] = 135364, - [SMALL_STATE(3853)] = 135384, - [SMALL_STATE(3854)] = 135404, - [SMALL_STATE(3855)] = 135420, - [SMALL_STATE(3856)] = 135440, - [SMALL_STATE(3857)] = 135460, - [SMALL_STATE(3858)] = 135480, - [SMALL_STATE(3859)] = 135498, - [SMALL_STATE(3860)] = 135518, - [SMALL_STATE(3861)] = 135538, - [SMALL_STATE(3862)] = 135558, - [SMALL_STATE(3863)] = 135576, - [SMALL_STATE(3864)] = 135596, - [SMALL_STATE(3865)] = 135616, - [SMALL_STATE(3866)] = 135636, - [SMALL_STATE(3867)] = 135656, - [SMALL_STATE(3868)] = 135674, - [SMALL_STATE(3869)] = 135692, - [SMALL_STATE(3870)] = 135712, - [SMALL_STATE(3871)] = 135732, - [SMALL_STATE(3872)] = 135752, - [SMALL_STATE(3873)] = 135768, - [SMALL_STATE(3874)] = 135788, - [SMALL_STATE(3875)] = 135808, - [SMALL_STATE(3876)] = 135828, - [SMALL_STATE(3877)] = 135848, - [SMALL_STATE(3878)] = 135868, - [SMALL_STATE(3879)] = 135888, - [SMALL_STATE(3880)] = 135908, - [SMALL_STATE(3881)] = 135928, - [SMALL_STATE(3882)] = 135948, - [SMALL_STATE(3883)] = 135968, - [SMALL_STATE(3884)] = 135988, - [SMALL_STATE(3885)] = 136008, - [SMALL_STATE(3886)] = 136028, - [SMALL_STATE(3887)] = 136048, - [SMALL_STATE(3888)] = 136068, - [SMALL_STATE(3889)] = 136088, - [SMALL_STATE(3890)] = 136108, - [SMALL_STATE(3891)] = 136124, - [SMALL_STATE(3892)] = 136144, - [SMALL_STATE(3893)] = 136164, - [SMALL_STATE(3894)] = 136184, - [SMALL_STATE(3895)] = 136204, - [SMALL_STATE(3896)] = 136224, - [SMALL_STATE(3897)] = 136244, - [SMALL_STATE(3898)] = 136264, - [SMALL_STATE(3899)] = 136284, - [SMALL_STATE(3900)] = 136304, - [SMALL_STATE(3901)] = 136324, - [SMALL_STATE(3902)] = 136344, - [SMALL_STATE(3903)] = 136364, - [SMALL_STATE(3904)] = 136384, - [SMALL_STATE(3905)] = 136402, - [SMALL_STATE(3906)] = 136422, - [SMALL_STATE(3907)] = 136442, - [SMALL_STATE(3908)] = 136462, - [SMALL_STATE(3909)] = 136482, - [SMALL_STATE(3910)] = 136498, - [SMALL_STATE(3911)] = 136518, - [SMALL_STATE(3912)] = 136538, - [SMALL_STATE(3913)] = 136554, - [SMALL_STATE(3914)] = 136574, - [SMALL_STATE(3915)] = 136594, - [SMALL_STATE(3916)] = 136614, - [SMALL_STATE(3917)] = 136634, - [SMALL_STATE(3918)] = 136654, - [SMALL_STATE(3919)] = 136674, - [SMALL_STATE(3920)] = 136692, - [SMALL_STATE(3921)] = 136712, - [SMALL_STATE(3922)] = 136732, - [SMALL_STATE(3923)] = 136752, - [SMALL_STATE(3924)] = 136772, - [SMALL_STATE(3925)] = 136792, - [SMALL_STATE(3926)] = 136812, - [SMALL_STATE(3927)] = 136832, - [SMALL_STATE(3928)] = 136852, - [SMALL_STATE(3929)] = 136872, - [SMALL_STATE(3930)] = 136890, - [SMALL_STATE(3931)] = 136910, - [SMALL_STATE(3932)] = 136930, - [SMALL_STATE(3933)] = 136950, - [SMALL_STATE(3934)] = 136970, - [SMALL_STATE(3935)] = 136990, - [SMALL_STATE(3936)] = 137010, - [SMALL_STATE(3937)] = 137028, - [SMALL_STATE(3938)] = 137048, - [SMALL_STATE(3939)] = 137068, - [SMALL_STATE(3940)] = 137088, - [SMALL_STATE(3941)] = 137108, - [SMALL_STATE(3942)] = 137128, - [SMALL_STATE(3943)] = 137148, - [SMALL_STATE(3944)] = 137168, - [SMALL_STATE(3945)] = 137188, - [SMALL_STATE(3946)] = 137208, - [SMALL_STATE(3947)] = 137228, - [SMALL_STATE(3948)] = 137248, - [SMALL_STATE(3949)] = 137268, - [SMALL_STATE(3950)] = 137288, - [SMALL_STATE(3951)] = 137308, - [SMALL_STATE(3952)] = 137328, - [SMALL_STATE(3953)] = 137348, - [SMALL_STATE(3954)] = 137368, - [SMALL_STATE(3955)] = 137388, - [SMALL_STATE(3956)] = 137408, - [SMALL_STATE(3957)] = 137428, - [SMALL_STATE(3958)] = 137448, - [SMALL_STATE(3959)] = 137468, - [SMALL_STATE(3960)] = 137488, - [SMALL_STATE(3961)] = 137508, - [SMALL_STATE(3962)] = 137528, - [SMALL_STATE(3963)] = 137548, - [SMALL_STATE(3964)] = 137568, - [SMALL_STATE(3965)] = 137588, - [SMALL_STATE(3966)] = 137606, - [SMALL_STATE(3967)] = 137626, - [SMALL_STATE(3968)] = 137646, - [SMALL_STATE(3969)] = 137666, - [SMALL_STATE(3970)] = 137686, - [SMALL_STATE(3971)] = 137706, - [SMALL_STATE(3972)] = 137726, - [SMALL_STATE(3973)] = 137746, - [SMALL_STATE(3974)] = 137766, - [SMALL_STATE(3975)] = 137786, - [SMALL_STATE(3976)] = 137806, - [SMALL_STATE(3977)] = 137826, - [SMALL_STATE(3978)] = 137842, - [SMALL_STATE(3979)] = 137862, - [SMALL_STATE(3980)] = 137882, - [SMALL_STATE(3981)] = 137902, - [SMALL_STATE(3982)] = 137922, - [SMALL_STATE(3983)] = 137938, - [SMALL_STATE(3984)] = 137954, - [SMALL_STATE(3985)] = 137974, - [SMALL_STATE(3986)] = 137994, - [SMALL_STATE(3987)] = 138014, - [SMALL_STATE(3988)] = 138034, - [SMALL_STATE(3989)] = 138054, - [SMALL_STATE(3990)] = 138074, - [SMALL_STATE(3991)] = 138094, - [SMALL_STATE(3992)] = 138110, - [SMALL_STATE(3993)] = 138130, - [SMALL_STATE(3994)] = 138148, - [SMALL_STATE(3995)] = 138168, - [SMALL_STATE(3996)] = 138188, - [SMALL_STATE(3997)] = 138208, - [SMALL_STATE(3998)] = 138228, - [SMALL_STATE(3999)] = 138248, - [SMALL_STATE(4000)] = 138268, - [SMALL_STATE(4001)] = 138285, - [SMALL_STATE(4002)] = 138302, - [SMALL_STATE(4003)] = 138319, - [SMALL_STATE(4004)] = 138336, - [SMALL_STATE(4005)] = 138351, - [SMALL_STATE(4006)] = 138366, - [SMALL_STATE(4007)] = 138383, - [SMALL_STATE(4008)] = 138400, - [SMALL_STATE(4009)] = 138415, - [SMALL_STATE(4010)] = 138430, - [SMALL_STATE(4011)] = 138447, - [SMALL_STATE(4012)] = 138464, - [SMALL_STATE(4013)] = 138481, - [SMALL_STATE(4014)] = 138498, - [SMALL_STATE(4015)] = 138515, - [SMALL_STATE(4016)] = 138532, - [SMALL_STATE(4017)] = 138549, - [SMALL_STATE(4018)] = 138566, - [SMALL_STATE(4019)] = 138583, - [SMALL_STATE(4020)] = 138600, - [SMALL_STATE(4021)] = 138615, - [SMALL_STATE(4022)] = 138632, - [SMALL_STATE(4023)] = 138649, - [SMALL_STATE(4024)] = 138664, - [SMALL_STATE(4025)] = 138681, - [SMALL_STATE(4026)] = 138698, - [SMALL_STATE(4027)] = 138715, - [SMALL_STATE(4028)] = 138732, - [SMALL_STATE(4029)] = 138749, - [SMALL_STATE(4030)] = 138764, - [SMALL_STATE(4031)] = 138779, - [SMALL_STATE(4032)] = 138796, - [SMALL_STATE(4033)] = 138813, - [SMALL_STATE(4034)] = 138828, - [SMALL_STATE(4035)] = 138845, - [SMALL_STATE(4036)] = 138862, - [SMALL_STATE(4037)] = 138879, - [SMALL_STATE(4038)] = 138896, - [SMALL_STATE(4039)] = 138913, - [SMALL_STATE(4040)] = 138930, - [SMALL_STATE(4041)] = 138947, - [SMALL_STATE(4042)] = 138964, - [SMALL_STATE(4043)] = 138981, - [SMALL_STATE(4044)] = 138998, - [SMALL_STATE(4045)] = 139015, - [SMALL_STATE(4046)] = 139032, - [SMALL_STATE(4047)] = 139049, - [SMALL_STATE(4048)] = 139064, - [SMALL_STATE(4049)] = 139079, - [SMALL_STATE(4050)] = 139096, - [SMALL_STATE(4051)] = 139113, - [SMALL_STATE(4052)] = 139130, - [SMALL_STATE(4053)] = 139147, - [SMALL_STATE(4054)] = 139164, - [SMALL_STATE(4055)] = 139181, - [SMALL_STATE(4056)] = 139198, - [SMALL_STATE(4057)] = 139215, - [SMALL_STATE(4058)] = 139232, - [SMALL_STATE(4059)] = 139249, - [SMALL_STATE(4060)] = 139266, - [SMALL_STATE(4061)] = 139283, - [SMALL_STATE(4062)] = 139298, - [SMALL_STATE(4063)] = 139315, - [SMALL_STATE(4064)] = 139332, - [SMALL_STATE(4065)] = 139349, - [SMALL_STATE(4066)] = 139366, - [SMALL_STATE(4067)] = 139383, - [SMALL_STATE(4068)] = 139400, - [SMALL_STATE(4069)] = 139417, - [SMALL_STATE(4070)] = 139434, - [SMALL_STATE(4071)] = 139451, - [SMALL_STATE(4072)] = 139468, - [SMALL_STATE(4073)] = 139485, - [SMALL_STATE(4074)] = 139502, - [SMALL_STATE(4075)] = 139519, - [SMALL_STATE(4076)] = 139536, - [SMALL_STATE(4077)] = 139553, - [SMALL_STATE(4078)] = 139570, - [SMALL_STATE(4079)] = 139587, - [SMALL_STATE(4080)] = 139604, - [SMALL_STATE(4081)] = 139621, - [SMALL_STATE(4082)] = 139636, - [SMALL_STATE(4083)] = 139653, - [SMALL_STATE(4084)] = 139670, - [SMALL_STATE(4085)] = 139687, - [SMALL_STATE(4086)] = 139704, - [SMALL_STATE(4087)] = 139719, - [SMALL_STATE(4088)] = 139736, - [SMALL_STATE(4089)] = 139753, - [SMALL_STATE(4090)] = 139768, - [SMALL_STATE(4091)] = 139785, - [SMALL_STATE(4092)] = 139802, - [SMALL_STATE(4093)] = 139819, - [SMALL_STATE(4094)] = 139836, - [SMALL_STATE(4095)] = 139853, - [SMALL_STATE(4096)] = 139870, - [SMALL_STATE(4097)] = 139887, - [SMALL_STATE(4098)] = 139904, - [SMALL_STATE(4099)] = 139921, - [SMALL_STATE(4100)] = 139938, - [SMALL_STATE(4101)] = 139955, - [SMALL_STATE(4102)] = 139972, - [SMALL_STATE(4103)] = 139989, - [SMALL_STATE(4104)] = 140006, - [SMALL_STATE(4105)] = 140023, - [SMALL_STATE(4106)] = 140040, - [SMALL_STATE(4107)] = 140057, - [SMALL_STATE(4108)] = 140074, - [SMALL_STATE(4109)] = 140091, - [SMALL_STATE(4110)] = 140108, - [SMALL_STATE(4111)] = 140125, - [SMALL_STATE(4112)] = 140142, - [SMALL_STATE(4113)] = 140159, - [SMALL_STATE(4114)] = 140176, - [SMALL_STATE(4115)] = 140193, - [SMALL_STATE(4116)] = 140210, - [SMALL_STATE(4117)] = 140227, - [SMALL_STATE(4118)] = 140244, - [SMALL_STATE(4119)] = 140261, - [SMALL_STATE(4120)] = 140278, - [SMALL_STATE(4121)] = 140295, - [SMALL_STATE(4122)] = 140312, - [SMALL_STATE(4123)] = 140329, - [SMALL_STATE(4124)] = 140346, - [SMALL_STATE(4125)] = 140363, - [SMALL_STATE(4126)] = 140380, - [SMALL_STATE(4127)] = 140397, - [SMALL_STATE(4128)] = 140414, - [SMALL_STATE(4129)] = 140431, - [SMALL_STATE(4130)] = 140448, - [SMALL_STATE(4131)] = 140465, - [SMALL_STATE(4132)] = 140482, - [SMALL_STATE(4133)] = 140499, - [SMALL_STATE(4134)] = 140516, - [SMALL_STATE(4135)] = 140533, - [SMALL_STATE(4136)] = 140550, - [SMALL_STATE(4137)] = 140567, - [SMALL_STATE(4138)] = 140584, - [SMALL_STATE(4139)] = 140601, - [SMALL_STATE(4140)] = 140616, - [SMALL_STATE(4141)] = 140633, - [SMALL_STATE(4142)] = 140650, - [SMALL_STATE(4143)] = 140667, - [SMALL_STATE(4144)] = 140684, - [SMALL_STATE(4145)] = 140701, - [SMALL_STATE(4146)] = 140718, - [SMALL_STATE(4147)] = 140735, - [SMALL_STATE(4148)] = 140752, - [SMALL_STATE(4149)] = 140769, - [SMALL_STATE(4150)] = 140786, - [SMALL_STATE(4151)] = 140803, - [SMALL_STATE(4152)] = 140820, - [SMALL_STATE(4153)] = 140837, - [SMALL_STATE(4154)] = 140854, - [SMALL_STATE(4155)] = 140871, - [SMALL_STATE(4156)] = 140888, - [SMALL_STATE(4157)] = 140905, - [SMALL_STATE(4158)] = 140922, - [SMALL_STATE(4159)] = 140939, - [SMALL_STATE(4160)] = 140956, - [SMALL_STATE(4161)] = 140973, - [SMALL_STATE(4162)] = 140988, - [SMALL_STATE(4163)] = 141005, - [SMALL_STATE(4164)] = 141022, - [SMALL_STATE(4165)] = 141039, - [SMALL_STATE(4166)] = 141056, - [SMALL_STATE(4167)] = 141073, - [SMALL_STATE(4168)] = 141090, - [SMALL_STATE(4169)] = 141107, - [SMALL_STATE(4170)] = 141124, - [SMALL_STATE(4171)] = 141141, - [SMALL_STATE(4172)] = 141158, - [SMALL_STATE(4173)] = 141175, - [SMALL_STATE(4174)] = 141192, - [SMALL_STATE(4175)] = 141209, - [SMALL_STATE(4176)] = 141226, - [SMALL_STATE(4177)] = 141243, - [SMALL_STATE(4178)] = 141260, - [SMALL_STATE(4179)] = 141277, - [SMALL_STATE(4180)] = 141294, - [SMALL_STATE(4181)] = 141311, - [SMALL_STATE(4182)] = 141328, - [SMALL_STATE(4183)] = 141345, - [SMALL_STATE(4184)] = 141362, - [SMALL_STATE(4185)] = 141379, - [SMALL_STATE(4186)] = 141396, - [SMALL_STATE(4187)] = 141413, - [SMALL_STATE(4188)] = 141430, - [SMALL_STATE(4189)] = 141447, - [SMALL_STATE(4190)] = 141464, - [SMALL_STATE(4191)] = 141481, - [SMALL_STATE(4192)] = 141496, - [SMALL_STATE(4193)] = 141511, - [SMALL_STATE(4194)] = 141526, - [SMALL_STATE(4195)] = 141543, - [SMALL_STATE(4196)] = 141560, - [SMALL_STATE(4197)] = 141575, - [SMALL_STATE(4198)] = 141592, - [SMALL_STATE(4199)] = 141609, - [SMALL_STATE(4200)] = 141626, - [SMALL_STATE(4201)] = 141643, - [SMALL_STATE(4202)] = 141660, - [SMALL_STATE(4203)] = 141677, - [SMALL_STATE(4204)] = 141694, - [SMALL_STATE(4205)] = 141711, - [SMALL_STATE(4206)] = 141728, - [SMALL_STATE(4207)] = 141745, - [SMALL_STATE(4208)] = 141760, - [SMALL_STATE(4209)] = 141777, - [SMALL_STATE(4210)] = 141794, - [SMALL_STATE(4211)] = 141811, - [SMALL_STATE(4212)] = 141828, - [SMALL_STATE(4213)] = 141843, - [SMALL_STATE(4214)] = 141860, - [SMALL_STATE(4215)] = 141877, - [SMALL_STATE(4216)] = 141892, - [SMALL_STATE(4217)] = 141909, - [SMALL_STATE(4218)] = 141926, - [SMALL_STATE(4219)] = 141943, - [SMALL_STATE(4220)] = 141958, - [SMALL_STATE(4221)] = 141975, - [SMALL_STATE(4222)] = 141992, - [SMALL_STATE(4223)] = 142009, - [SMALL_STATE(4224)] = 142026, - [SMALL_STATE(4225)] = 142041, - [SMALL_STATE(4226)] = 142058, - [SMALL_STATE(4227)] = 142075, - [SMALL_STATE(4228)] = 142092, - [SMALL_STATE(4229)] = 142109, - [SMALL_STATE(4230)] = 142126, - [SMALL_STATE(4231)] = 142143, - [SMALL_STATE(4232)] = 142160, - [SMALL_STATE(4233)] = 142177, - [SMALL_STATE(4234)] = 142194, - [SMALL_STATE(4235)] = 142211, - [SMALL_STATE(4236)] = 142228, - [SMALL_STATE(4237)] = 142245, - [SMALL_STATE(4238)] = 142262, - [SMALL_STATE(4239)] = 142279, - [SMALL_STATE(4240)] = 142294, - [SMALL_STATE(4241)] = 142309, - [SMALL_STATE(4242)] = 142326, - [SMALL_STATE(4243)] = 142341, - [SMALL_STATE(4244)] = 142358, - [SMALL_STATE(4245)] = 142375, - [SMALL_STATE(4246)] = 142392, - [SMALL_STATE(4247)] = 142409, - [SMALL_STATE(4248)] = 142426, - [SMALL_STATE(4249)] = 142443, - [SMALL_STATE(4250)] = 142460, - [SMALL_STATE(4251)] = 142477, - [SMALL_STATE(4252)] = 142494, - [SMALL_STATE(4253)] = 142511, - [SMALL_STATE(4254)] = 142526, - [SMALL_STATE(4255)] = 142541, - [SMALL_STATE(4256)] = 142558, - [SMALL_STATE(4257)] = 142575, - [SMALL_STATE(4258)] = 142592, - [SMALL_STATE(4259)] = 142609, - [SMALL_STATE(4260)] = 142626, - [SMALL_STATE(4261)] = 142643, - [SMALL_STATE(4262)] = 142660, - [SMALL_STATE(4263)] = 142677, - [SMALL_STATE(4264)] = 142694, - [SMALL_STATE(4265)] = 142709, - [SMALL_STATE(4266)] = 142726, - [SMALL_STATE(4267)] = 142743, - [SMALL_STATE(4268)] = 142760, - [SMALL_STATE(4269)] = 142777, - [SMALL_STATE(4270)] = 142794, - [SMALL_STATE(4271)] = 142811, - [SMALL_STATE(4272)] = 142828, - [SMALL_STATE(4273)] = 142845, - [SMALL_STATE(4274)] = 142862, - [SMALL_STATE(4275)] = 142879, - [SMALL_STATE(4276)] = 142896, - [SMALL_STATE(4277)] = 142913, - [SMALL_STATE(4278)] = 142930, - [SMALL_STATE(4279)] = 142947, - [SMALL_STATE(4280)] = 142964, - [SMALL_STATE(4281)] = 142981, - [SMALL_STATE(4282)] = 142998, - [SMALL_STATE(4283)] = 143015, - [SMALL_STATE(4284)] = 143032, - [SMALL_STATE(4285)] = 143049, - [SMALL_STATE(4286)] = 143066, - [SMALL_STATE(4287)] = 143083, - [SMALL_STATE(4288)] = 143100, - [SMALL_STATE(4289)] = 143115, - [SMALL_STATE(4290)] = 143132, - [SMALL_STATE(4291)] = 143149, - [SMALL_STATE(4292)] = 143166, - [SMALL_STATE(4293)] = 143183, - [SMALL_STATE(4294)] = 143200, - [SMALL_STATE(4295)] = 143217, - [SMALL_STATE(4296)] = 143234, - [SMALL_STATE(4297)] = 143251, - [SMALL_STATE(4298)] = 143268, - [SMALL_STATE(4299)] = 143285, - [SMALL_STATE(4300)] = 143302, - [SMALL_STATE(4301)] = 143319, - [SMALL_STATE(4302)] = 143336, - [SMALL_STATE(4303)] = 143353, - [SMALL_STATE(4304)] = 143370, - [SMALL_STATE(4305)] = 143387, - [SMALL_STATE(4306)] = 143404, - [SMALL_STATE(4307)] = 143421, - [SMALL_STATE(4308)] = 143438, - [SMALL_STATE(4309)] = 143455, - [SMALL_STATE(4310)] = 143472, - [SMALL_STATE(4311)] = 143489, - [SMALL_STATE(4312)] = 143506, - [SMALL_STATE(4313)] = 143523, - [SMALL_STATE(4314)] = 143540, - [SMALL_STATE(4315)] = 143557, - [SMALL_STATE(4316)] = 143574, - [SMALL_STATE(4317)] = 143591, - [SMALL_STATE(4318)] = 143608, - [SMALL_STATE(4319)] = 143625, - [SMALL_STATE(4320)] = 143642, - [SMALL_STATE(4321)] = 143656, - [SMALL_STATE(4322)] = 143670, - [SMALL_STATE(4323)] = 143684, - [SMALL_STATE(4324)] = 143698, - [SMALL_STATE(4325)] = 143712, - [SMALL_STATE(4326)] = 143726, - [SMALL_STATE(4327)] = 143740, - [SMALL_STATE(4328)] = 143754, - [SMALL_STATE(4329)] = 143768, - [SMALL_STATE(4330)] = 143782, - [SMALL_STATE(4331)] = 143796, - [SMALL_STATE(4332)] = 143810, - [SMALL_STATE(4333)] = 143824, - [SMALL_STATE(4334)] = 143838, - [SMALL_STATE(4335)] = 143852, - [SMALL_STATE(4336)] = 143866, - [SMALL_STATE(4337)] = 143880, - [SMALL_STATE(4338)] = 143894, - [SMALL_STATE(4339)] = 143908, - [SMALL_STATE(4340)] = 143922, - [SMALL_STATE(4341)] = 143936, - [SMALL_STATE(4342)] = 143950, - [SMALL_STATE(4343)] = 143964, - [SMALL_STATE(4344)] = 143978, - [SMALL_STATE(4345)] = 143992, - [SMALL_STATE(4346)] = 144006, - [SMALL_STATE(4347)] = 144020, - [SMALL_STATE(4348)] = 144034, - [SMALL_STATE(4349)] = 144048, - [SMALL_STATE(4350)] = 144062, - [SMALL_STATE(4351)] = 144076, - [SMALL_STATE(4352)] = 144090, - [SMALL_STATE(4353)] = 144104, - [SMALL_STATE(4354)] = 144118, - [SMALL_STATE(4355)] = 144132, - [SMALL_STATE(4356)] = 144146, - [SMALL_STATE(4357)] = 144160, - [SMALL_STATE(4358)] = 144174, - [SMALL_STATE(4359)] = 144188, - [SMALL_STATE(4360)] = 144202, - [SMALL_STATE(4361)] = 144216, - [SMALL_STATE(4362)] = 144230, - [SMALL_STATE(4363)] = 144244, - [SMALL_STATE(4364)] = 144258, - [SMALL_STATE(4365)] = 144272, - [SMALL_STATE(4366)] = 144286, - [SMALL_STATE(4367)] = 144300, - [SMALL_STATE(4368)] = 144314, - [SMALL_STATE(4369)] = 144328, - [SMALL_STATE(4370)] = 144342, - [SMALL_STATE(4371)] = 144356, - [SMALL_STATE(4372)] = 144370, - [SMALL_STATE(4373)] = 144384, - [SMALL_STATE(4374)] = 144398, - [SMALL_STATE(4375)] = 144412, - [SMALL_STATE(4376)] = 144426, - [SMALL_STATE(4377)] = 144440, - [SMALL_STATE(4378)] = 144454, - [SMALL_STATE(4379)] = 144468, - [SMALL_STATE(4380)] = 144482, - [SMALL_STATE(4381)] = 144496, - [SMALL_STATE(4382)] = 144510, - [SMALL_STATE(4383)] = 144524, - [SMALL_STATE(4384)] = 144538, - [SMALL_STATE(4385)] = 144552, - [SMALL_STATE(4386)] = 144566, - [SMALL_STATE(4387)] = 144580, - [SMALL_STATE(4388)] = 144594, - [SMALL_STATE(4389)] = 144608, - [SMALL_STATE(4390)] = 144622, - [SMALL_STATE(4391)] = 144636, - [SMALL_STATE(4392)] = 144650, - [SMALL_STATE(4393)] = 144664, - [SMALL_STATE(4394)] = 144678, - [SMALL_STATE(4395)] = 144692, - [SMALL_STATE(4396)] = 144706, - [SMALL_STATE(4397)] = 144720, - [SMALL_STATE(4398)] = 144734, - [SMALL_STATE(4399)] = 144748, - [SMALL_STATE(4400)] = 144762, - [SMALL_STATE(4401)] = 144776, - [SMALL_STATE(4402)] = 144790, - [SMALL_STATE(4403)] = 144804, - [SMALL_STATE(4404)] = 144818, - [SMALL_STATE(4405)] = 144832, - [SMALL_STATE(4406)] = 144846, - [SMALL_STATE(4407)] = 144860, - [SMALL_STATE(4408)] = 144874, - [SMALL_STATE(4409)] = 144888, - [SMALL_STATE(4410)] = 144902, - [SMALL_STATE(4411)] = 144916, - [SMALL_STATE(4412)] = 144930, - [SMALL_STATE(4413)] = 144944, - [SMALL_STATE(4414)] = 144958, - [SMALL_STATE(4415)] = 144972, - [SMALL_STATE(4416)] = 144986, - [SMALL_STATE(4417)] = 145000, - [SMALL_STATE(4418)] = 145014, - [SMALL_STATE(4419)] = 145028, - [SMALL_STATE(4420)] = 145042, - [SMALL_STATE(4421)] = 145056, - [SMALL_STATE(4422)] = 145070, - [SMALL_STATE(4423)] = 145084, - [SMALL_STATE(4424)] = 145098, - [SMALL_STATE(4425)] = 145112, - [SMALL_STATE(4426)] = 145126, - [SMALL_STATE(4427)] = 145140, - [SMALL_STATE(4428)] = 145154, - [SMALL_STATE(4429)] = 145168, - [SMALL_STATE(4430)] = 145182, - [SMALL_STATE(4431)] = 145196, - [SMALL_STATE(4432)] = 145210, - [SMALL_STATE(4433)] = 145224, - [SMALL_STATE(4434)] = 145238, - [SMALL_STATE(4435)] = 145252, - [SMALL_STATE(4436)] = 145266, - [SMALL_STATE(4437)] = 145280, - [SMALL_STATE(4438)] = 145294, - [SMALL_STATE(4439)] = 145308, - [SMALL_STATE(4440)] = 145322, - [SMALL_STATE(4441)] = 145336, - [SMALL_STATE(4442)] = 145350, - [SMALL_STATE(4443)] = 145364, - [SMALL_STATE(4444)] = 145378, - [SMALL_STATE(4445)] = 145392, - [SMALL_STATE(4446)] = 145406, - [SMALL_STATE(4447)] = 145420, - [SMALL_STATE(4448)] = 145434, - [SMALL_STATE(4449)] = 145448, - [SMALL_STATE(4450)] = 145462, - [SMALL_STATE(4451)] = 145476, - [SMALL_STATE(4452)] = 145490, - [SMALL_STATE(4453)] = 145504, - [SMALL_STATE(4454)] = 145518, - [SMALL_STATE(4455)] = 145532, - [SMALL_STATE(4456)] = 145546, - [SMALL_STATE(4457)] = 145560, - [SMALL_STATE(4458)] = 145574, - [SMALL_STATE(4459)] = 145588, - [SMALL_STATE(4460)] = 145602, - [SMALL_STATE(4461)] = 145616, - [SMALL_STATE(4462)] = 145630, - [SMALL_STATE(4463)] = 145644, - [SMALL_STATE(4464)] = 145658, - [SMALL_STATE(4465)] = 145672, - [SMALL_STATE(4466)] = 145686, - [SMALL_STATE(4467)] = 145700, - [SMALL_STATE(4468)] = 145714, - [SMALL_STATE(4469)] = 145728, - [SMALL_STATE(4470)] = 145742, - [SMALL_STATE(4471)] = 145756, - [SMALL_STATE(4472)] = 145770, - [SMALL_STATE(4473)] = 145784, - [SMALL_STATE(4474)] = 145798, - [SMALL_STATE(4475)] = 145812, - [SMALL_STATE(4476)] = 145826, - [SMALL_STATE(4477)] = 145840, - [SMALL_STATE(4478)] = 145854, - [SMALL_STATE(4479)] = 145868, - [SMALL_STATE(4480)] = 145882, - [SMALL_STATE(4481)] = 145896, - [SMALL_STATE(4482)] = 145910, - [SMALL_STATE(4483)] = 145924, - [SMALL_STATE(4484)] = 145938, - [SMALL_STATE(4485)] = 145952, - [SMALL_STATE(4486)] = 145966, - [SMALL_STATE(4487)] = 145980, - [SMALL_STATE(4488)] = 145994, - [SMALL_STATE(4489)] = 146008, - [SMALL_STATE(4490)] = 146022, - [SMALL_STATE(4491)] = 146036, - [SMALL_STATE(4492)] = 146050, - [SMALL_STATE(4493)] = 146064, - [SMALL_STATE(4494)] = 146078, - [SMALL_STATE(4495)] = 146092, - [SMALL_STATE(4496)] = 146106, - [SMALL_STATE(4497)] = 146120, - [SMALL_STATE(4498)] = 146134, - [SMALL_STATE(4499)] = 146148, - [SMALL_STATE(4500)] = 146162, - [SMALL_STATE(4501)] = 146176, - [SMALL_STATE(4502)] = 146190, - [SMALL_STATE(4503)] = 146204, - [SMALL_STATE(4504)] = 146218, - [SMALL_STATE(4505)] = 146232, - [SMALL_STATE(4506)] = 146246, - [SMALL_STATE(4507)] = 146260, - [SMALL_STATE(4508)] = 146274, - [SMALL_STATE(4509)] = 146288, - [SMALL_STATE(4510)] = 146302, - [SMALL_STATE(4511)] = 146316, - [SMALL_STATE(4512)] = 146330, - [SMALL_STATE(4513)] = 146344, - [SMALL_STATE(4514)] = 146358, - [SMALL_STATE(4515)] = 146372, - [SMALL_STATE(4516)] = 146386, - [SMALL_STATE(4517)] = 146400, - [SMALL_STATE(4518)] = 146414, - [SMALL_STATE(4519)] = 146428, - [SMALL_STATE(4520)] = 146442, - [SMALL_STATE(4521)] = 146456, - [SMALL_STATE(4522)] = 146470, - [SMALL_STATE(4523)] = 146484, - [SMALL_STATE(4524)] = 146498, - [SMALL_STATE(4525)] = 146512, - [SMALL_STATE(4526)] = 146526, - [SMALL_STATE(4527)] = 146540, - [SMALL_STATE(4528)] = 146554, - [SMALL_STATE(4529)] = 146568, - [SMALL_STATE(4530)] = 146582, - [SMALL_STATE(4531)] = 146596, - [SMALL_STATE(4532)] = 146610, - [SMALL_STATE(4533)] = 146624, - [SMALL_STATE(4534)] = 146638, - [SMALL_STATE(4535)] = 146652, - [SMALL_STATE(4536)] = 146666, - [SMALL_STATE(4537)] = 146680, - [SMALL_STATE(4538)] = 146694, - [SMALL_STATE(4539)] = 146708, - [SMALL_STATE(4540)] = 146722, - [SMALL_STATE(4541)] = 146736, - [SMALL_STATE(4542)] = 146750, - [SMALL_STATE(4543)] = 146764, - [SMALL_STATE(4544)] = 146778, - [SMALL_STATE(4545)] = 146792, - [SMALL_STATE(4546)] = 146806, - [SMALL_STATE(4547)] = 146820, - [SMALL_STATE(4548)] = 146834, - [SMALL_STATE(4549)] = 146848, - [SMALL_STATE(4550)] = 146862, - [SMALL_STATE(4551)] = 146876, - [SMALL_STATE(4552)] = 146890, - [SMALL_STATE(4553)] = 146904, - [SMALL_STATE(4554)] = 146918, - [SMALL_STATE(4555)] = 146932, - [SMALL_STATE(4556)] = 146946, - [SMALL_STATE(4557)] = 146960, - [SMALL_STATE(4558)] = 146974, - [SMALL_STATE(4559)] = 146988, - [SMALL_STATE(4560)] = 147002, - [SMALL_STATE(4561)] = 147016, - [SMALL_STATE(4562)] = 147030, - [SMALL_STATE(4563)] = 147044, - [SMALL_STATE(4564)] = 147058, - [SMALL_STATE(4565)] = 147072, - [SMALL_STATE(4566)] = 147086, - [SMALL_STATE(4567)] = 147100, - [SMALL_STATE(4568)] = 147114, - [SMALL_STATE(4569)] = 147128, - [SMALL_STATE(4570)] = 147142, - [SMALL_STATE(4571)] = 147156, - [SMALL_STATE(4572)] = 147170, - [SMALL_STATE(4573)] = 147184, - [SMALL_STATE(4574)] = 147198, - [SMALL_STATE(4575)] = 147212, - [SMALL_STATE(4576)] = 147226, - [SMALL_STATE(4577)] = 147240, - [SMALL_STATE(4578)] = 147254, - [SMALL_STATE(4579)] = 147268, - [SMALL_STATE(4580)] = 147282, - [SMALL_STATE(4581)] = 147296, - [SMALL_STATE(4582)] = 147310, - [SMALL_STATE(4583)] = 147324, - [SMALL_STATE(4584)] = 147338, - [SMALL_STATE(4585)] = 147352, - [SMALL_STATE(4586)] = 147366, - [SMALL_STATE(4587)] = 147380, - [SMALL_STATE(4588)] = 147394, - [SMALL_STATE(4589)] = 147408, - [SMALL_STATE(4590)] = 147422, - [SMALL_STATE(4591)] = 147436, - [SMALL_STATE(4592)] = 147450, - [SMALL_STATE(4593)] = 147464, - [SMALL_STATE(4594)] = 147478, - [SMALL_STATE(4595)] = 147492, - [SMALL_STATE(4596)] = 147506, - [SMALL_STATE(4597)] = 147520, - [SMALL_STATE(4598)] = 147534, - [SMALL_STATE(4599)] = 147548, - [SMALL_STATE(4600)] = 147562, - [SMALL_STATE(4601)] = 147576, - [SMALL_STATE(4602)] = 147590, - [SMALL_STATE(4603)] = 147604, - [SMALL_STATE(4604)] = 147618, - [SMALL_STATE(4605)] = 147632, - [SMALL_STATE(4606)] = 147646, - [SMALL_STATE(4607)] = 147660, - [SMALL_STATE(4608)] = 147674, - [SMALL_STATE(4609)] = 147688, - [SMALL_STATE(4610)] = 147702, - [SMALL_STATE(4611)] = 147716, - [SMALL_STATE(4612)] = 147730, - [SMALL_STATE(4613)] = 147744, - [SMALL_STATE(4614)] = 147758, - [SMALL_STATE(4615)] = 147772, - [SMALL_STATE(4616)] = 147786, - [SMALL_STATE(4617)] = 147800, - [SMALL_STATE(4618)] = 147814, - [SMALL_STATE(4619)] = 147828, - [SMALL_STATE(4620)] = 147842, - [SMALL_STATE(4621)] = 147856, - [SMALL_STATE(4622)] = 147870, - [SMALL_STATE(4623)] = 147884, - [SMALL_STATE(4624)] = 147898, - [SMALL_STATE(4625)] = 147912, - [SMALL_STATE(4626)] = 147926, - [SMALL_STATE(4627)] = 147940, - [SMALL_STATE(4628)] = 147954, - [SMALL_STATE(4629)] = 147968, - [SMALL_STATE(4630)] = 147982, - [SMALL_STATE(4631)] = 147996, - [SMALL_STATE(4632)] = 148010, - [SMALL_STATE(4633)] = 148024, - [SMALL_STATE(4634)] = 148038, - [SMALL_STATE(4635)] = 148052, - [SMALL_STATE(4636)] = 148066, - [SMALL_STATE(4637)] = 148080, - [SMALL_STATE(4638)] = 148094, - [SMALL_STATE(4639)] = 148108, - [SMALL_STATE(4640)] = 148122, - [SMALL_STATE(4641)] = 148136, - [SMALL_STATE(4642)] = 148150, - [SMALL_STATE(4643)] = 148164, - [SMALL_STATE(4644)] = 148178, - [SMALL_STATE(4645)] = 148192, - [SMALL_STATE(4646)] = 148206, - [SMALL_STATE(4647)] = 148220, - [SMALL_STATE(4648)] = 148234, - [SMALL_STATE(4649)] = 148238, - [SMALL_STATE(4650)] = 148242, + [SMALL_STATE(3389)] = 124742, + [SMALL_STATE(3390)] = 124765, + [SMALL_STATE(3391)] = 124786, + [SMALL_STATE(3392)] = 124807, + [SMALL_STATE(3393)] = 124836, + [SMALL_STATE(3394)] = 124857, + [SMALL_STATE(3395)] = 124878, + [SMALL_STATE(3396)] = 124901, + [SMALL_STATE(3397)] = 124922, + [SMALL_STATE(3398)] = 124947, + [SMALL_STATE(3399)] = 124972, + [SMALL_STATE(3400)] = 124995, + [SMALL_STATE(3401)] = 125016, + [SMALL_STATE(3402)] = 125046, + [SMALL_STATE(3403)] = 125076, + [SMALL_STATE(3404)] = 125104, + [SMALL_STATE(3405)] = 125134, + [SMALL_STATE(3406)] = 125164, + [SMALL_STATE(3407)] = 125194, + [SMALL_STATE(3408)] = 125224, + [SMALL_STATE(3409)] = 125254, + [SMALL_STATE(3410)] = 125284, + [SMALL_STATE(3411)] = 125314, + [SMALL_STATE(3412)] = 125344, + [SMALL_STATE(3413)] = 125372, + [SMALL_STATE(3414)] = 125402, + [SMALL_STATE(3415)] = 125432, + [SMALL_STATE(3416)] = 125462, + [SMALL_STATE(3417)] = 125492, + [SMALL_STATE(3418)] = 125522, + [SMALL_STATE(3419)] = 125552, + [SMALL_STATE(3420)] = 125582, + [SMALL_STATE(3421)] = 125610, + [SMALL_STATE(3422)] = 125640, + [SMALL_STATE(3423)] = 125670, + [SMALL_STATE(3424)] = 125700, + [SMALL_STATE(3425)] = 125730, + [SMALL_STATE(3426)] = 125760, + [SMALL_STATE(3427)] = 125790, + [SMALL_STATE(3428)] = 125820, + [SMALL_STATE(3429)] = 125850, + [SMALL_STATE(3430)] = 125880, + [SMALL_STATE(3431)] = 125910, + [SMALL_STATE(3432)] = 125940, + [SMALL_STATE(3433)] = 125970, + [SMALL_STATE(3434)] = 125998, + [SMALL_STATE(3435)] = 126026, + [SMALL_STATE(3436)] = 126054, + [SMALL_STATE(3437)] = 126078, + [SMALL_STATE(3438)] = 126108, + [SMALL_STATE(3439)] = 126138, + [SMALL_STATE(3440)] = 126168, + [SMALL_STATE(3441)] = 126198, + [SMALL_STATE(3442)] = 126228, + [SMALL_STATE(3443)] = 126258, + [SMALL_STATE(3444)] = 126288, + [SMALL_STATE(3445)] = 126316, + [SMALL_STATE(3446)] = 126346, + [SMALL_STATE(3447)] = 126374, + [SMALL_STATE(3448)] = 126404, + [SMALL_STATE(3449)] = 126432, + [SMALL_STATE(3450)] = 126462, + [SMALL_STATE(3451)] = 126492, + [SMALL_STATE(3452)] = 126522, + [SMALL_STATE(3453)] = 126552, + [SMALL_STATE(3454)] = 126582, + [SMALL_STATE(3455)] = 126612, + [SMALL_STATE(3456)] = 126642, + [SMALL_STATE(3457)] = 126672, + [SMALL_STATE(3458)] = 126702, + [SMALL_STATE(3459)] = 126732, + [SMALL_STATE(3460)] = 126762, + [SMALL_STATE(3461)] = 126792, + [SMALL_STATE(3462)] = 126812, + [SMALL_STATE(3463)] = 126840, + [SMALL_STATE(3464)] = 126870, + [SMALL_STATE(3465)] = 126900, + [SMALL_STATE(3466)] = 126930, + [SMALL_STATE(3467)] = 126960, + [SMALL_STATE(3468)] = 126990, + [SMALL_STATE(3469)] = 127020, + [SMALL_STATE(3470)] = 127050, + [SMALL_STATE(3471)] = 127080, + [SMALL_STATE(3472)] = 127110, + [SMALL_STATE(3473)] = 127140, + [SMALL_STATE(3474)] = 127170, + [SMALL_STATE(3475)] = 127198, + [SMALL_STATE(3476)] = 127226, + [SMALL_STATE(3477)] = 127256, + [SMALL_STATE(3478)] = 127286, + [SMALL_STATE(3479)] = 127314, + [SMALL_STATE(3480)] = 127342, + [SMALL_STATE(3481)] = 127362, + [SMALL_STATE(3482)] = 127390, + [SMALL_STATE(3483)] = 127420, + [SMALL_STATE(3484)] = 127448, + [SMALL_STATE(3485)] = 127480, + [SMALL_STATE(3486)] = 127508, + [SMALL_STATE(3487)] = 127536, + [SMALL_STATE(3488)] = 127566, + [SMALL_STATE(3489)] = 127596, + [SMALL_STATE(3490)] = 127626, + [SMALL_STATE(3491)] = 127656, + [SMALL_STATE(3492)] = 127686, + [SMALL_STATE(3493)] = 127718, + [SMALL_STATE(3494)] = 127746, + [SMALL_STATE(3495)] = 127776, + [SMALL_STATE(3496)] = 127806, + [SMALL_STATE(3497)] = 127834, + [SMALL_STATE(3498)] = 127862, + [SMALL_STATE(3499)] = 127890, + [SMALL_STATE(3500)] = 127920, + [SMALL_STATE(3501)] = 127950, + [SMALL_STATE(3502)] = 127980, + [SMALL_STATE(3503)] = 128010, + [SMALL_STATE(3504)] = 128038, + [SMALL_STATE(3505)] = 128068, + [SMALL_STATE(3506)] = 128098, + [SMALL_STATE(3507)] = 128128, + [SMALL_STATE(3508)] = 128156, + [SMALL_STATE(3509)] = 128186, + [SMALL_STATE(3510)] = 128216, + [SMALL_STATE(3511)] = 128246, + [SMALL_STATE(3512)] = 128276, + [SMALL_STATE(3513)] = 128306, + [SMALL_STATE(3514)] = 128326, + [SMALL_STATE(3515)] = 128354, + [SMALL_STATE(3516)] = 128384, + [SMALL_STATE(3517)] = 128414, + [SMALL_STATE(3518)] = 128444, + [SMALL_STATE(3519)] = 128474, + [SMALL_STATE(3520)] = 128504, + [SMALL_STATE(3521)] = 128534, + [SMALL_STATE(3522)] = 128564, + [SMALL_STATE(3523)] = 128594, + [SMALL_STATE(3524)] = 128624, + [SMALL_STATE(3525)] = 128652, + [SMALL_STATE(3526)] = 128682, + [SMALL_STATE(3527)] = 128712, + [SMALL_STATE(3528)] = 128742, + [SMALL_STATE(3529)] = 128772, + [SMALL_STATE(3530)] = 128800, + [SMALL_STATE(3531)] = 128830, + [SMALL_STATE(3532)] = 128860, + [SMALL_STATE(3533)] = 128883, + [SMALL_STATE(3534)] = 128906, + [SMALL_STATE(3535)] = 128929, + [SMALL_STATE(3536)] = 128958, + [SMALL_STATE(3537)] = 128987, + [SMALL_STATE(3538)] = 129014, + [SMALL_STATE(3539)] = 129037, + [SMALL_STATE(3540)] = 129058, + [SMALL_STATE(3541)] = 129081, + [SMALL_STATE(3542)] = 129102, + [SMALL_STATE(3543)] = 129125, + [SMALL_STATE(3544)] = 129148, + [SMALL_STATE(3545)] = 129169, + [SMALL_STATE(3546)] = 129198, + [SMALL_STATE(3547)] = 129221, + [SMALL_STATE(3548)] = 129244, + [SMALL_STATE(3549)] = 129270, + [SMALL_STATE(3550)] = 129296, + [SMALL_STATE(3551)] = 129322, + [SMALL_STATE(3552)] = 129342, + [SMALL_STATE(3553)] = 129362, + [SMALL_STATE(3554)] = 129384, + [SMALL_STATE(3555)] = 129410, + [SMALL_STATE(3556)] = 129430, + [SMALL_STATE(3557)] = 129452, + [SMALL_STATE(3558)] = 129474, + [SMALL_STATE(3559)] = 129494, + [SMALL_STATE(3560)] = 129516, + [SMALL_STATE(3561)] = 129534, + [SMALL_STATE(3562)] = 129560, + [SMALL_STATE(3563)] = 129578, + [SMALL_STATE(3564)] = 129598, + [SMALL_STATE(3565)] = 129618, + [SMALL_STATE(3566)] = 129638, + [SMALL_STATE(3567)] = 129656, + [SMALL_STATE(3568)] = 129674, + [SMALL_STATE(3569)] = 129694, + [SMALL_STATE(3570)] = 129714, + [SMALL_STATE(3571)] = 129732, + [SMALL_STATE(3572)] = 129756, + [SMALL_STATE(3573)] = 129780, + [SMALL_STATE(3574)] = 129804, + [SMALL_STATE(3575)] = 129824, + [SMALL_STATE(3576)] = 129846, + [SMALL_STATE(3577)] = 129870, + [SMALL_STATE(3578)] = 129894, + [SMALL_STATE(3579)] = 129920, + [SMALL_STATE(3580)] = 129940, + [SMALL_STATE(3581)] = 129960, + [SMALL_STATE(3582)] = 129978, + [SMALL_STATE(3583)] = 130002, + [SMALL_STATE(3584)] = 130022, + [SMALL_STATE(3585)] = 130044, + [SMALL_STATE(3586)] = 130064, + [SMALL_STATE(3587)] = 130088, + [SMALL_STATE(3588)] = 130112, + [SMALL_STATE(3589)] = 130133, + [SMALL_STATE(3590)] = 130154, + [SMALL_STATE(3591)] = 130171, + [SMALL_STATE(3592)] = 130192, + [SMALL_STATE(3593)] = 130213, + [SMALL_STATE(3594)] = 130232, + [SMALL_STATE(3595)] = 130253, + [SMALL_STATE(3596)] = 130270, + [SMALL_STATE(3597)] = 130291, + [SMALL_STATE(3598)] = 130312, + [SMALL_STATE(3599)] = 130333, + [SMALL_STATE(3600)] = 130354, + [SMALL_STATE(3601)] = 130375, + [SMALL_STATE(3602)] = 130398, + [SMALL_STATE(3603)] = 130421, + [SMALL_STATE(3604)] = 130444, + [SMALL_STATE(3605)] = 130465, + [SMALL_STATE(3606)] = 130486, + [SMALL_STATE(3607)] = 130503, + [SMALL_STATE(3608)] = 130526, + [SMALL_STATE(3609)] = 130549, + [SMALL_STATE(3610)] = 130570, + [SMALL_STATE(3611)] = 130593, + [SMALL_STATE(3612)] = 130614, + [SMALL_STATE(3613)] = 130635, + [SMALL_STATE(3614)] = 130658, + [SMALL_STATE(3615)] = 130679, + [SMALL_STATE(3616)] = 130700, + [SMALL_STATE(3617)] = 130723, + [SMALL_STATE(3618)] = 130744, + [SMALL_STATE(3619)] = 130765, + [SMALL_STATE(3620)] = 130788, + [SMALL_STATE(3621)] = 130809, + [SMALL_STATE(3622)] = 130830, + [SMALL_STATE(3623)] = 130851, + [SMALL_STATE(3624)] = 130874, + [SMALL_STATE(3625)] = 130895, + [SMALL_STATE(3626)] = 130916, + [SMALL_STATE(3627)] = 130937, + [SMALL_STATE(3628)] = 130960, + [SMALL_STATE(3629)] = 130981, + [SMALL_STATE(3630)] = 131002, + [SMALL_STATE(3631)] = 131025, + [SMALL_STATE(3632)] = 131042, + [SMALL_STATE(3633)] = 131065, + [SMALL_STATE(3634)] = 131082, + [SMALL_STATE(3635)] = 131103, + [SMALL_STATE(3636)] = 131124, + [SMALL_STATE(3637)] = 131145, + [SMALL_STATE(3638)] = 131164, + [SMALL_STATE(3639)] = 131187, + [SMALL_STATE(3640)] = 131208, + [SMALL_STATE(3641)] = 131229, + [SMALL_STATE(3642)] = 131250, + [SMALL_STATE(3643)] = 131267, + [SMALL_STATE(3644)] = 131288, + [SMALL_STATE(3645)] = 131309, + [SMALL_STATE(3646)] = 131330, + [SMALL_STATE(3647)] = 131353, + [SMALL_STATE(3648)] = 131374, + [SMALL_STATE(3649)] = 131397, + [SMALL_STATE(3650)] = 131418, + [SMALL_STATE(3651)] = 131439, + [SMALL_STATE(3652)] = 131462, + [SMALL_STATE(3653)] = 131485, + [SMALL_STATE(3654)] = 131506, + [SMALL_STATE(3655)] = 131527, + [SMALL_STATE(3656)] = 131548, + [SMALL_STATE(3657)] = 131571, + [SMALL_STATE(3658)] = 131592, + [SMALL_STATE(3659)] = 131613, + [SMALL_STATE(3660)] = 131636, + [SMALL_STATE(3661)] = 131657, + [SMALL_STATE(3662)] = 131678, + [SMALL_STATE(3663)] = 131701, + [SMALL_STATE(3664)] = 131722, + [SMALL_STATE(3665)] = 131743, + [SMALL_STATE(3666)] = 131764, + [SMALL_STATE(3667)] = 131785, + [SMALL_STATE(3668)] = 131806, + [SMALL_STATE(3669)] = 131827, + [SMALL_STATE(3670)] = 131848, + [SMALL_STATE(3671)] = 131871, + [SMALL_STATE(3672)] = 131892, + [SMALL_STATE(3673)] = 131913, + [SMALL_STATE(3674)] = 131936, + [SMALL_STATE(3675)] = 131957, + [SMALL_STATE(3676)] = 131978, + [SMALL_STATE(3677)] = 132001, + [SMALL_STATE(3678)] = 132022, + [SMALL_STATE(3679)] = 132043, + [SMALL_STATE(3680)] = 132066, + [SMALL_STATE(3681)] = 132083, + [SMALL_STATE(3682)] = 132104, + [SMALL_STATE(3683)] = 132127, + [SMALL_STATE(3684)] = 132148, + [SMALL_STATE(3685)] = 132165, + [SMALL_STATE(3686)] = 132182, + [SMALL_STATE(3687)] = 132199, + [SMALL_STATE(3688)] = 132216, + [SMALL_STATE(3689)] = 132237, + [SMALL_STATE(3690)] = 132260, + [SMALL_STATE(3691)] = 132281, + [SMALL_STATE(3692)] = 132304, + [SMALL_STATE(3693)] = 132321, + [SMALL_STATE(3694)] = 132342, + [SMALL_STATE(3695)] = 132363, + [SMALL_STATE(3696)] = 132384, + [SMALL_STATE(3697)] = 132401, + [SMALL_STATE(3698)] = 132422, + [SMALL_STATE(3699)] = 132443, + [SMALL_STATE(3700)] = 132464, + [SMALL_STATE(3701)] = 132481, + [SMALL_STATE(3702)] = 132502, + [SMALL_STATE(3703)] = 132523, + [SMALL_STATE(3704)] = 132542, + [SMALL_STATE(3705)] = 132559, + [SMALL_STATE(3706)] = 132576, + [SMALL_STATE(3707)] = 132597, + [SMALL_STATE(3708)] = 132618, + [SMALL_STATE(3709)] = 132639, + [SMALL_STATE(3710)] = 132660, + [SMALL_STATE(3711)] = 132681, + [SMALL_STATE(3712)] = 132702, + [SMALL_STATE(3713)] = 132725, + [SMALL_STATE(3714)] = 132746, + [SMALL_STATE(3715)] = 132767, + [SMALL_STATE(3716)] = 132784, + [SMALL_STATE(3717)] = 132805, + [SMALL_STATE(3718)] = 132822, + [SMALL_STATE(3719)] = 132839, + [SMALL_STATE(3720)] = 132856, + [SMALL_STATE(3721)] = 132873, + [SMALL_STATE(3722)] = 132894, + [SMALL_STATE(3723)] = 132911, + [SMALL_STATE(3724)] = 132928, + [SMALL_STATE(3725)] = 132945, + [SMALL_STATE(3726)] = 132966, + [SMALL_STATE(3727)] = 132987, + [SMALL_STATE(3728)] = 133008, + [SMALL_STATE(3729)] = 133031, + [SMALL_STATE(3730)] = 133054, + [SMALL_STATE(3731)] = 133075, + [SMALL_STATE(3732)] = 133096, + [SMALL_STATE(3733)] = 133113, + [SMALL_STATE(3734)] = 133136, + [SMALL_STATE(3735)] = 133157, + [SMALL_STATE(3736)] = 133180, + [SMALL_STATE(3737)] = 133201, + [SMALL_STATE(3738)] = 133222, + [SMALL_STATE(3739)] = 133243, + [SMALL_STATE(3740)] = 133264, + [SMALL_STATE(3741)] = 133285, + [SMALL_STATE(3742)] = 133306, + [SMALL_STATE(3743)] = 133323, + [SMALL_STATE(3744)] = 133344, + [SMALL_STATE(3745)] = 133365, + [SMALL_STATE(3746)] = 133386, + [SMALL_STATE(3747)] = 133407, + [SMALL_STATE(3748)] = 133428, + [SMALL_STATE(3749)] = 133449, + [SMALL_STATE(3750)] = 133470, + [SMALL_STATE(3751)] = 133493, + [SMALL_STATE(3752)] = 133512, + [SMALL_STATE(3753)] = 133533, + [SMALL_STATE(3754)] = 133554, + [SMALL_STATE(3755)] = 133570, + [SMALL_STATE(3756)] = 133590, + [SMALL_STATE(3757)] = 133608, + [SMALL_STATE(3758)] = 133626, + [SMALL_STATE(3759)] = 133642, + [SMALL_STATE(3760)] = 133662, + [SMALL_STATE(3761)] = 133682, + [SMALL_STATE(3762)] = 133702, + [SMALL_STATE(3763)] = 133722, + [SMALL_STATE(3764)] = 133742, + [SMALL_STATE(3765)] = 133762, + [SMALL_STATE(3766)] = 133782, + [SMALL_STATE(3767)] = 133802, + [SMALL_STATE(3768)] = 133822, + [SMALL_STATE(3769)] = 133838, + [SMALL_STATE(3770)] = 133858, + [SMALL_STATE(3771)] = 133878, + [SMALL_STATE(3772)] = 133898, + [SMALL_STATE(3773)] = 133918, + [SMALL_STATE(3774)] = 133934, + [SMALL_STATE(3775)] = 133952, + [SMALL_STATE(3776)] = 133972, + [SMALL_STATE(3777)] = 133992, + [SMALL_STATE(3778)] = 134012, + [SMALL_STATE(3779)] = 134032, + [SMALL_STATE(3780)] = 134052, + [SMALL_STATE(3781)] = 134072, + [SMALL_STATE(3782)] = 134092, + [SMALL_STATE(3783)] = 134112, + [SMALL_STATE(3784)] = 134132, + [SMALL_STATE(3785)] = 134152, + [SMALL_STATE(3786)] = 134172, + [SMALL_STATE(3787)] = 134192, + [SMALL_STATE(3788)] = 134212, + [SMALL_STATE(3789)] = 134232, + [SMALL_STATE(3790)] = 134250, + [SMALL_STATE(3791)] = 134270, + [SMALL_STATE(3792)] = 134286, + [SMALL_STATE(3793)] = 134306, + [SMALL_STATE(3794)] = 134326, + [SMALL_STATE(3795)] = 134342, + [SMALL_STATE(3796)] = 134362, + [SMALL_STATE(3797)] = 134382, + [SMALL_STATE(3798)] = 134402, + [SMALL_STATE(3799)] = 134418, + [SMALL_STATE(3800)] = 134436, + [SMALL_STATE(3801)] = 134456, + [SMALL_STATE(3802)] = 134474, + [SMALL_STATE(3803)] = 134494, + [SMALL_STATE(3804)] = 134514, + [SMALL_STATE(3805)] = 134532, + [SMALL_STATE(3806)] = 134552, + [SMALL_STATE(3807)] = 134572, + [SMALL_STATE(3808)] = 134592, + [SMALL_STATE(3809)] = 134612, + [SMALL_STATE(3810)] = 134632, + [SMALL_STATE(3811)] = 134652, + [SMALL_STATE(3812)] = 134672, + [SMALL_STATE(3813)] = 134692, + [SMALL_STATE(3814)] = 134712, + [SMALL_STATE(3815)] = 134732, + [SMALL_STATE(3816)] = 134752, + [SMALL_STATE(3817)] = 134772, + [SMALL_STATE(3818)] = 134792, + [SMALL_STATE(3819)] = 134812, + [SMALL_STATE(3820)] = 134832, + [SMALL_STATE(3821)] = 134852, + [SMALL_STATE(3822)] = 134872, + [SMALL_STATE(3823)] = 134890, + [SMALL_STATE(3824)] = 134910, + [SMALL_STATE(3825)] = 134930, + [SMALL_STATE(3826)] = 134950, + [SMALL_STATE(3827)] = 134970, + [SMALL_STATE(3828)] = 134990, + [SMALL_STATE(3829)] = 135010, + [SMALL_STATE(3830)] = 135030, + [SMALL_STATE(3831)] = 135050, + [SMALL_STATE(3832)] = 135070, + [SMALL_STATE(3833)] = 135088, + [SMALL_STATE(3834)] = 135108, + [SMALL_STATE(3835)] = 135128, + [SMALL_STATE(3836)] = 135148, + [SMALL_STATE(3837)] = 135168, + [SMALL_STATE(3838)] = 135188, + [SMALL_STATE(3839)] = 135208, + [SMALL_STATE(3840)] = 135228, + [SMALL_STATE(3841)] = 135248, + [SMALL_STATE(3842)] = 135268, + [SMALL_STATE(3843)] = 135288, + [SMALL_STATE(3844)] = 135308, + [SMALL_STATE(3845)] = 135328, + [SMALL_STATE(3846)] = 135348, + [SMALL_STATE(3847)] = 135368, + [SMALL_STATE(3848)] = 135388, + [SMALL_STATE(3849)] = 135404, + [SMALL_STATE(3850)] = 135424, + [SMALL_STATE(3851)] = 135440, + [SMALL_STATE(3852)] = 135460, + [SMALL_STATE(3853)] = 135480, + [SMALL_STATE(3854)] = 135496, + [SMALL_STATE(3855)] = 135516, + [SMALL_STATE(3856)] = 135536, + [SMALL_STATE(3857)] = 135556, + [SMALL_STATE(3858)] = 135576, + [SMALL_STATE(3859)] = 135596, + [SMALL_STATE(3860)] = 135616, + [SMALL_STATE(3861)] = 135634, + [SMALL_STATE(3862)] = 135654, + [SMALL_STATE(3863)] = 135674, + [SMALL_STATE(3864)] = 135694, + [SMALL_STATE(3865)] = 135714, + [SMALL_STATE(3866)] = 135734, + [SMALL_STATE(3867)] = 135754, + [SMALL_STATE(3868)] = 135774, + [SMALL_STATE(3869)] = 135794, + [SMALL_STATE(3870)] = 135812, + [SMALL_STATE(3871)] = 135832, + [SMALL_STATE(3872)] = 135850, + [SMALL_STATE(3873)] = 135870, + [SMALL_STATE(3874)] = 135890, + [SMALL_STATE(3875)] = 135908, + [SMALL_STATE(3876)] = 135926, + [SMALL_STATE(3877)] = 135946, + [SMALL_STATE(3878)] = 135966, + [SMALL_STATE(3879)] = 135986, + [SMALL_STATE(3880)] = 136006, + [SMALL_STATE(3881)] = 136026, + [SMALL_STATE(3882)] = 136046, + [SMALL_STATE(3883)] = 136066, + [SMALL_STATE(3884)] = 136086, + [SMALL_STATE(3885)] = 136106, + [SMALL_STATE(3886)] = 136126, + [SMALL_STATE(3887)] = 136142, + [SMALL_STATE(3888)] = 136162, + [SMALL_STATE(3889)] = 136182, + [SMALL_STATE(3890)] = 136202, + [SMALL_STATE(3891)] = 136222, + [SMALL_STATE(3892)] = 136238, + [SMALL_STATE(3893)] = 136258, + [SMALL_STATE(3894)] = 136278, + [SMALL_STATE(3895)] = 136298, + [SMALL_STATE(3896)] = 136314, + [SMALL_STATE(3897)] = 136334, + [SMALL_STATE(3898)] = 136354, + [SMALL_STATE(3899)] = 136374, + [SMALL_STATE(3900)] = 136394, + [SMALL_STATE(3901)] = 136410, + [SMALL_STATE(3902)] = 136430, + [SMALL_STATE(3903)] = 136450, + [SMALL_STATE(3904)] = 136470, + [SMALL_STATE(3905)] = 136490, + [SMALL_STATE(3906)] = 136510, + [SMALL_STATE(3907)] = 136530, + [SMALL_STATE(3908)] = 136550, + [SMALL_STATE(3909)] = 136570, + [SMALL_STATE(3910)] = 136590, + [SMALL_STATE(3911)] = 136610, + [SMALL_STATE(3912)] = 136630, + [SMALL_STATE(3913)] = 136650, + [SMALL_STATE(3914)] = 136670, + [SMALL_STATE(3915)] = 136690, + [SMALL_STATE(3916)] = 136710, + [SMALL_STATE(3917)] = 136730, + [SMALL_STATE(3918)] = 136750, + [SMALL_STATE(3919)] = 136770, + [SMALL_STATE(3920)] = 136790, + [SMALL_STATE(3921)] = 136810, + [SMALL_STATE(3922)] = 136830, + [SMALL_STATE(3923)] = 136850, + [SMALL_STATE(3924)] = 136868, + [SMALL_STATE(3925)] = 136888, + [SMALL_STATE(3926)] = 136908, + [SMALL_STATE(3927)] = 136928, + [SMALL_STATE(3928)] = 136948, + [SMALL_STATE(3929)] = 136968, + [SMALL_STATE(3930)] = 136986, + [SMALL_STATE(3931)] = 137004, + [SMALL_STATE(3932)] = 137024, + [SMALL_STATE(3933)] = 137044, + [SMALL_STATE(3934)] = 137064, + [SMALL_STATE(3935)] = 137084, + [SMALL_STATE(3936)] = 137104, + [SMALL_STATE(3937)] = 137124, + [SMALL_STATE(3938)] = 137144, + [SMALL_STATE(3939)] = 137164, + [SMALL_STATE(3940)] = 137184, + [SMALL_STATE(3941)] = 137204, + [SMALL_STATE(3942)] = 137224, + [SMALL_STATE(3943)] = 137244, + [SMALL_STATE(3944)] = 137264, + [SMALL_STATE(3945)] = 137284, + [SMALL_STATE(3946)] = 137304, + [SMALL_STATE(3947)] = 137324, + [SMALL_STATE(3948)] = 137344, + [SMALL_STATE(3949)] = 137364, + [SMALL_STATE(3950)] = 137384, + [SMALL_STATE(3951)] = 137404, + [SMALL_STATE(3952)] = 137424, + [SMALL_STATE(3953)] = 137444, + [SMALL_STATE(3954)] = 137464, + [SMALL_STATE(3955)] = 137484, + [SMALL_STATE(3956)] = 137504, + [SMALL_STATE(3957)] = 137524, + [SMALL_STATE(3958)] = 137544, + [SMALL_STATE(3959)] = 137564, + [SMALL_STATE(3960)] = 137584, + [SMALL_STATE(3961)] = 137604, + [SMALL_STATE(3962)] = 137624, + [SMALL_STATE(3963)] = 137644, + [SMALL_STATE(3964)] = 137664, + [SMALL_STATE(3965)] = 137684, + [SMALL_STATE(3966)] = 137704, + [SMALL_STATE(3967)] = 137724, + [SMALL_STATE(3968)] = 137744, + [SMALL_STATE(3969)] = 137764, + [SMALL_STATE(3970)] = 137784, + [SMALL_STATE(3971)] = 137804, + [SMALL_STATE(3972)] = 137824, + [SMALL_STATE(3973)] = 137844, + [SMALL_STATE(3974)] = 137864, + [SMALL_STATE(3975)] = 137884, + [SMALL_STATE(3976)] = 137904, + [SMALL_STATE(3977)] = 137924, + [SMALL_STATE(3978)] = 137944, + [SMALL_STATE(3979)] = 137964, + [SMALL_STATE(3980)] = 137984, + [SMALL_STATE(3981)] = 138004, + [SMALL_STATE(3982)] = 138022, + [SMALL_STATE(3983)] = 138042, + [SMALL_STATE(3984)] = 138062, + [SMALL_STATE(3985)] = 138082, + [SMALL_STATE(3986)] = 138102, + [SMALL_STATE(3987)] = 138122, + [SMALL_STATE(3988)] = 138138, + [SMALL_STATE(3989)] = 138156, + [SMALL_STATE(3990)] = 138176, + [SMALL_STATE(3991)] = 138196, + [SMALL_STATE(3992)] = 138216, + [SMALL_STATE(3993)] = 138236, + [SMALL_STATE(3994)] = 138254, + [SMALL_STATE(3995)] = 138274, + [SMALL_STATE(3996)] = 138294, + [SMALL_STATE(3997)] = 138314, + [SMALL_STATE(3998)] = 138331, + [SMALL_STATE(3999)] = 138348, + [SMALL_STATE(4000)] = 138365, + [SMALL_STATE(4001)] = 138382, + [SMALL_STATE(4002)] = 138399, + [SMALL_STATE(4003)] = 138416, + [SMALL_STATE(4004)] = 138433, + [SMALL_STATE(4005)] = 138450, + [SMALL_STATE(4006)] = 138467, + [SMALL_STATE(4007)] = 138484, + [SMALL_STATE(4008)] = 138501, + [SMALL_STATE(4009)] = 138518, + [SMALL_STATE(4010)] = 138535, + [SMALL_STATE(4011)] = 138552, + [SMALL_STATE(4012)] = 138569, + [SMALL_STATE(4013)] = 138586, + [SMALL_STATE(4014)] = 138601, + [SMALL_STATE(4015)] = 138618, + [SMALL_STATE(4016)] = 138635, + [SMALL_STATE(4017)] = 138652, + [SMALL_STATE(4018)] = 138669, + [SMALL_STATE(4019)] = 138686, + [SMALL_STATE(4020)] = 138703, + [SMALL_STATE(4021)] = 138720, + [SMALL_STATE(4022)] = 138735, + [SMALL_STATE(4023)] = 138752, + [SMALL_STATE(4024)] = 138769, + [SMALL_STATE(4025)] = 138786, + [SMALL_STATE(4026)] = 138803, + [SMALL_STATE(4027)] = 138820, + [SMALL_STATE(4028)] = 138837, + [SMALL_STATE(4029)] = 138854, + [SMALL_STATE(4030)] = 138871, + [SMALL_STATE(4031)] = 138888, + [SMALL_STATE(4032)] = 138905, + [SMALL_STATE(4033)] = 138922, + [SMALL_STATE(4034)] = 138939, + [SMALL_STATE(4035)] = 138956, + [SMALL_STATE(4036)] = 138973, + [SMALL_STATE(4037)] = 138990, + [SMALL_STATE(4038)] = 139007, + [SMALL_STATE(4039)] = 139024, + [SMALL_STATE(4040)] = 139041, + [SMALL_STATE(4041)] = 139058, + [SMALL_STATE(4042)] = 139075, + [SMALL_STATE(4043)] = 139092, + [SMALL_STATE(4044)] = 139109, + [SMALL_STATE(4045)] = 139126, + [SMALL_STATE(4046)] = 139143, + [SMALL_STATE(4047)] = 139160, + [SMALL_STATE(4048)] = 139177, + [SMALL_STATE(4049)] = 139194, + [SMALL_STATE(4050)] = 139211, + [SMALL_STATE(4051)] = 139228, + [SMALL_STATE(4052)] = 139245, + [SMALL_STATE(4053)] = 139262, + [SMALL_STATE(4054)] = 139279, + [SMALL_STATE(4055)] = 139296, + [SMALL_STATE(4056)] = 139313, + [SMALL_STATE(4057)] = 139330, + [SMALL_STATE(4058)] = 139347, + [SMALL_STATE(4059)] = 139364, + [SMALL_STATE(4060)] = 139381, + [SMALL_STATE(4061)] = 139398, + [SMALL_STATE(4062)] = 139415, + [SMALL_STATE(4063)] = 139432, + [SMALL_STATE(4064)] = 139449, + [SMALL_STATE(4065)] = 139466, + [SMALL_STATE(4066)] = 139483, + [SMALL_STATE(4067)] = 139500, + [SMALL_STATE(4068)] = 139517, + [SMALL_STATE(4069)] = 139534, + [SMALL_STATE(4070)] = 139551, + [SMALL_STATE(4071)] = 139568, + [SMALL_STATE(4072)] = 139585, + [SMALL_STATE(4073)] = 139602, + [SMALL_STATE(4074)] = 139619, + [SMALL_STATE(4075)] = 139636, + [SMALL_STATE(4076)] = 139653, + [SMALL_STATE(4077)] = 139670, + [SMALL_STATE(4078)] = 139687, + [SMALL_STATE(4079)] = 139704, + [SMALL_STATE(4080)] = 139721, + [SMALL_STATE(4081)] = 139738, + [SMALL_STATE(4082)] = 139755, + [SMALL_STATE(4083)] = 139772, + [SMALL_STATE(4084)] = 139789, + [SMALL_STATE(4085)] = 139806, + [SMALL_STATE(4086)] = 139823, + [SMALL_STATE(4087)] = 139840, + [SMALL_STATE(4088)] = 139857, + [SMALL_STATE(4089)] = 139874, + [SMALL_STATE(4090)] = 139891, + [SMALL_STATE(4091)] = 139908, + [SMALL_STATE(4092)] = 139925, + [SMALL_STATE(4093)] = 139942, + [SMALL_STATE(4094)] = 139959, + [SMALL_STATE(4095)] = 139976, + [SMALL_STATE(4096)] = 139993, + [SMALL_STATE(4097)] = 140010, + [SMALL_STATE(4098)] = 140027, + [SMALL_STATE(4099)] = 140044, + [SMALL_STATE(4100)] = 140061, + [SMALL_STATE(4101)] = 140078, + [SMALL_STATE(4102)] = 140093, + [SMALL_STATE(4103)] = 140110, + [SMALL_STATE(4104)] = 140127, + [SMALL_STATE(4105)] = 140144, + [SMALL_STATE(4106)] = 140161, + [SMALL_STATE(4107)] = 140178, + [SMALL_STATE(4108)] = 140195, + [SMALL_STATE(4109)] = 140210, + [SMALL_STATE(4110)] = 140227, + [SMALL_STATE(4111)] = 140244, + [SMALL_STATE(4112)] = 140261, + [SMALL_STATE(4113)] = 140278, + [SMALL_STATE(4114)] = 140293, + [SMALL_STATE(4115)] = 140308, + [SMALL_STATE(4116)] = 140323, + [SMALL_STATE(4117)] = 140340, + [SMALL_STATE(4118)] = 140357, + [SMALL_STATE(4119)] = 140374, + [SMALL_STATE(4120)] = 140391, + [SMALL_STATE(4121)] = 140408, + [SMALL_STATE(4122)] = 140425, + [SMALL_STATE(4123)] = 140440, + [SMALL_STATE(4124)] = 140457, + [SMALL_STATE(4125)] = 140474, + [SMALL_STATE(4126)] = 140491, + [SMALL_STATE(4127)] = 140508, + [SMALL_STATE(4128)] = 140525, + [SMALL_STATE(4129)] = 140542, + [SMALL_STATE(4130)] = 140557, + [SMALL_STATE(4131)] = 140572, + [SMALL_STATE(4132)] = 140587, + [SMALL_STATE(4133)] = 140604, + [SMALL_STATE(4134)] = 140619, + [SMALL_STATE(4135)] = 140636, + [SMALL_STATE(4136)] = 140653, + [SMALL_STATE(4137)] = 140668, + [SMALL_STATE(4138)] = 140683, + [SMALL_STATE(4139)] = 140700, + [SMALL_STATE(4140)] = 140717, + [SMALL_STATE(4141)] = 140734, + [SMALL_STATE(4142)] = 140751, + [SMALL_STATE(4143)] = 140768, + [SMALL_STATE(4144)] = 140785, + [SMALL_STATE(4145)] = 140802, + [SMALL_STATE(4146)] = 140819, + [SMALL_STATE(4147)] = 140836, + [SMALL_STATE(4148)] = 140853, + [SMALL_STATE(4149)] = 140870, + [SMALL_STATE(4150)] = 140887, + [SMALL_STATE(4151)] = 140904, + [SMALL_STATE(4152)] = 140921, + [SMALL_STATE(4153)] = 140938, + [SMALL_STATE(4154)] = 140955, + [SMALL_STATE(4155)] = 140972, + [SMALL_STATE(4156)] = 140989, + [SMALL_STATE(4157)] = 141006, + [SMALL_STATE(4158)] = 141023, + [SMALL_STATE(4159)] = 141040, + [SMALL_STATE(4160)] = 141057, + [SMALL_STATE(4161)] = 141074, + [SMALL_STATE(4162)] = 141091, + [SMALL_STATE(4163)] = 141108, + [SMALL_STATE(4164)] = 141123, + [SMALL_STATE(4165)] = 141140, + [SMALL_STATE(4166)] = 141157, + [SMALL_STATE(4167)] = 141174, + [SMALL_STATE(4168)] = 141191, + [SMALL_STATE(4169)] = 141208, + [SMALL_STATE(4170)] = 141225, + [SMALL_STATE(4171)] = 141242, + [SMALL_STATE(4172)] = 141259, + [SMALL_STATE(4173)] = 141276, + [SMALL_STATE(4174)] = 141293, + [SMALL_STATE(4175)] = 141308, + [SMALL_STATE(4176)] = 141325, + [SMALL_STATE(4177)] = 141342, + [SMALL_STATE(4178)] = 141359, + [SMALL_STATE(4179)] = 141376, + [SMALL_STATE(4180)] = 141393, + [SMALL_STATE(4181)] = 141410, + [SMALL_STATE(4182)] = 141427, + [SMALL_STATE(4183)] = 141444, + [SMALL_STATE(4184)] = 141459, + [SMALL_STATE(4185)] = 141474, + [SMALL_STATE(4186)] = 141491, + [SMALL_STATE(4187)] = 141506, + [SMALL_STATE(4188)] = 141523, + [SMALL_STATE(4189)] = 141538, + [SMALL_STATE(4190)] = 141553, + [SMALL_STATE(4191)] = 141570, + [SMALL_STATE(4192)] = 141587, + [SMALL_STATE(4193)] = 141604, + [SMALL_STATE(4194)] = 141621, + [SMALL_STATE(4195)] = 141638, + [SMALL_STATE(4196)] = 141655, + [SMALL_STATE(4197)] = 141672, + [SMALL_STATE(4198)] = 141689, + [SMALL_STATE(4199)] = 141706, + [SMALL_STATE(4200)] = 141723, + [SMALL_STATE(4201)] = 141740, + [SMALL_STATE(4202)] = 141757, + [SMALL_STATE(4203)] = 141774, + [SMALL_STATE(4204)] = 141789, + [SMALL_STATE(4205)] = 141806, + [SMALL_STATE(4206)] = 141823, + [SMALL_STATE(4207)] = 141840, + [SMALL_STATE(4208)] = 141857, + [SMALL_STATE(4209)] = 141874, + [SMALL_STATE(4210)] = 141891, + [SMALL_STATE(4211)] = 141906, + [SMALL_STATE(4212)] = 141923, + [SMALL_STATE(4213)] = 141940, + [SMALL_STATE(4214)] = 141957, + [SMALL_STATE(4215)] = 141974, + [SMALL_STATE(4216)] = 141991, + [SMALL_STATE(4217)] = 142006, + [SMALL_STATE(4218)] = 142023, + [SMALL_STATE(4219)] = 142040, + [SMALL_STATE(4220)] = 142057, + [SMALL_STATE(4221)] = 142074, + [SMALL_STATE(4222)] = 142091, + [SMALL_STATE(4223)] = 142108, + [SMALL_STATE(4224)] = 142125, + [SMALL_STATE(4225)] = 142140, + [SMALL_STATE(4226)] = 142157, + [SMALL_STATE(4227)] = 142174, + [SMALL_STATE(4228)] = 142191, + [SMALL_STATE(4229)] = 142208, + [SMALL_STATE(4230)] = 142225, + [SMALL_STATE(4231)] = 142242, + [SMALL_STATE(4232)] = 142259, + [SMALL_STATE(4233)] = 142276, + [SMALL_STATE(4234)] = 142293, + [SMALL_STATE(4235)] = 142310, + [SMALL_STATE(4236)] = 142327, + [SMALL_STATE(4237)] = 142344, + [SMALL_STATE(4238)] = 142361, + [SMALL_STATE(4239)] = 142378, + [SMALL_STATE(4240)] = 142395, + [SMALL_STATE(4241)] = 142412, + [SMALL_STATE(4242)] = 142429, + [SMALL_STATE(4243)] = 142446, + [SMALL_STATE(4244)] = 142463, + [SMALL_STATE(4245)] = 142480, + [SMALL_STATE(4246)] = 142497, + [SMALL_STATE(4247)] = 142514, + [SMALL_STATE(4248)] = 142531, + [SMALL_STATE(4249)] = 142548, + [SMALL_STATE(4250)] = 142565, + [SMALL_STATE(4251)] = 142582, + [SMALL_STATE(4252)] = 142599, + [SMALL_STATE(4253)] = 142616, + [SMALL_STATE(4254)] = 142633, + [SMALL_STATE(4255)] = 142650, + [SMALL_STATE(4256)] = 142667, + [SMALL_STATE(4257)] = 142684, + [SMALL_STATE(4258)] = 142701, + [SMALL_STATE(4259)] = 142718, + [SMALL_STATE(4260)] = 142735, + [SMALL_STATE(4261)] = 142752, + [SMALL_STATE(4262)] = 142769, + [SMALL_STATE(4263)] = 142786, + [SMALL_STATE(4264)] = 142803, + [SMALL_STATE(4265)] = 142820, + [SMALL_STATE(4266)] = 142837, + [SMALL_STATE(4267)] = 142854, + [SMALL_STATE(4268)] = 142871, + [SMALL_STATE(4269)] = 142888, + [SMALL_STATE(4270)] = 142905, + [SMALL_STATE(4271)] = 142922, + [SMALL_STATE(4272)] = 142939, + [SMALL_STATE(4273)] = 142956, + [SMALL_STATE(4274)] = 142973, + [SMALL_STATE(4275)] = 142988, + [SMALL_STATE(4276)] = 143005, + [SMALL_STATE(4277)] = 143020, + [SMALL_STATE(4278)] = 143037, + [SMALL_STATE(4279)] = 143054, + [SMALL_STATE(4280)] = 143071, + [SMALL_STATE(4281)] = 143088, + [SMALL_STATE(4282)] = 143105, + [SMALL_STATE(4283)] = 143122, + [SMALL_STATE(4284)] = 143137, + [SMALL_STATE(4285)] = 143154, + [SMALL_STATE(4286)] = 143171, + [SMALL_STATE(4287)] = 143188, + [SMALL_STATE(4288)] = 143205, + [SMALL_STATE(4289)] = 143222, + [SMALL_STATE(4290)] = 143237, + [SMALL_STATE(4291)] = 143254, + [SMALL_STATE(4292)] = 143271, + [SMALL_STATE(4293)] = 143288, + [SMALL_STATE(4294)] = 143303, + [SMALL_STATE(4295)] = 143320, + [SMALL_STATE(4296)] = 143335, + [SMALL_STATE(4297)] = 143352, + [SMALL_STATE(4298)] = 143369, + [SMALL_STATE(4299)] = 143386, + [SMALL_STATE(4300)] = 143403, + [SMALL_STATE(4301)] = 143418, + [SMALL_STATE(4302)] = 143435, + [SMALL_STATE(4303)] = 143452, + [SMALL_STATE(4304)] = 143469, + [SMALL_STATE(4305)] = 143484, + [SMALL_STATE(4306)] = 143501, + [SMALL_STATE(4307)] = 143518, + [SMALL_STATE(4308)] = 143535, + [SMALL_STATE(4309)] = 143552, + [SMALL_STATE(4310)] = 143569, + [SMALL_STATE(4311)] = 143586, + [SMALL_STATE(4312)] = 143603, + [SMALL_STATE(4313)] = 143620, + [SMALL_STATE(4314)] = 143637, + [SMALL_STATE(4315)] = 143654, + [SMALL_STATE(4316)] = 143668, + [SMALL_STATE(4317)] = 143682, + [SMALL_STATE(4318)] = 143696, + [SMALL_STATE(4319)] = 143710, + [SMALL_STATE(4320)] = 143724, + [SMALL_STATE(4321)] = 143738, + [SMALL_STATE(4322)] = 143752, + [SMALL_STATE(4323)] = 143766, + [SMALL_STATE(4324)] = 143780, + [SMALL_STATE(4325)] = 143794, + [SMALL_STATE(4326)] = 143808, + [SMALL_STATE(4327)] = 143822, + [SMALL_STATE(4328)] = 143836, + [SMALL_STATE(4329)] = 143850, + [SMALL_STATE(4330)] = 143864, + [SMALL_STATE(4331)] = 143878, + [SMALL_STATE(4332)] = 143892, + [SMALL_STATE(4333)] = 143906, + [SMALL_STATE(4334)] = 143920, + [SMALL_STATE(4335)] = 143934, + [SMALL_STATE(4336)] = 143948, + [SMALL_STATE(4337)] = 143962, + [SMALL_STATE(4338)] = 143976, + [SMALL_STATE(4339)] = 143990, + [SMALL_STATE(4340)] = 144004, + [SMALL_STATE(4341)] = 144018, + [SMALL_STATE(4342)] = 144032, + [SMALL_STATE(4343)] = 144046, + [SMALL_STATE(4344)] = 144060, + [SMALL_STATE(4345)] = 144074, + [SMALL_STATE(4346)] = 144088, + [SMALL_STATE(4347)] = 144102, + [SMALL_STATE(4348)] = 144116, + [SMALL_STATE(4349)] = 144130, + [SMALL_STATE(4350)] = 144144, + [SMALL_STATE(4351)] = 144158, + [SMALL_STATE(4352)] = 144172, + [SMALL_STATE(4353)] = 144186, + [SMALL_STATE(4354)] = 144200, + [SMALL_STATE(4355)] = 144214, + [SMALL_STATE(4356)] = 144228, + [SMALL_STATE(4357)] = 144242, + [SMALL_STATE(4358)] = 144256, + [SMALL_STATE(4359)] = 144270, + [SMALL_STATE(4360)] = 144284, + [SMALL_STATE(4361)] = 144298, + [SMALL_STATE(4362)] = 144312, + [SMALL_STATE(4363)] = 144326, + [SMALL_STATE(4364)] = 144340, + [SMALL_STATE(4365)] = 144354, + [SMALL_STATE(4366)] = 144368, + [SMALL_STATE(4367)] = 144382, + [SMALL_STATE(4368)] = 144396, + [SMALL_STATE(4369)] = 144410, + [SMALL_STATE(4370)] = 144424, + [SMALL_STATE(4371)] = 144438, + [SMALL_STATE(4372)] = 144452, + [SMALL_STATE(4373)] = 144466, + [SMALL_STATE(4374)] = 144480, + [SMALL_STATE(4375)] = 144494, + [SMALL_STATE(4376)] = 144508, + [SMALL_STATE(4377)] = 144522, + [SMALL_STATE(4378)] = 144536, + [SMALL_STATE(4379)] = 144550, + [SMALL_STATE(4380)] = 144564, + [SMALL_STATE(4381)] = 144578, + [SMALL_STATE(4382)] = 144592, + [SMALL_STATE(4383)] = 144606, + [SMALL_STATE(4384)] = 144620, + [SMALL_STATE(4385)] = 144634, + [SMALL_STATE(4386)] = 144648, + [SMALL_STATE(4387)] = 144662, + [SMALL_STATE(4388)] = 144676, + [SMALL_STATE(4389)] = 144690, + [SMALL_STATE(4390)] = 144704, + [SMALL_STATE(4391)] = 144718, + [SMALL_STATE(4392)] = 144732, + [SMALL_STATE(4393)] = 144746, + [SMALL_STATE(4394)] = 144760, + [SMALL_STATE(4395)] = 144774, + [SMALL_STATE(4396)] = 144788, + [SMALL_STATE(4397)] = 144802, + [SMALL_STATE(4398)] = 144816, + [SMALL_STATE(4399)] = 144830, + [SMALL_STATE(4400)] = 144844, + [SMALL_STATE(4401)] = 144858, + [SMALL_STATE(4402)] = 144872, + [SMALL_STATE(4403)] = 144886, + [SMALL_STATE(4404)] = 144900, + [SMALL_STATE(4405)] = 144914, + [SMALL_STATE(4406)] = 144928, + [SMALL_STATE(4407)] = 144942, + [SMALL_STATE(4408)] = 144956, + [SMALL_STATE(4409)] = 144970, + [SMALL_STATE(4410)] = 144984, + [SMALL_STATE(4411)] = 144998, + [SMALL_STATE(4412)] = 145012, + [SMALL_STATE(4413)] = 145026, + [SMALL_STATE(4414)] = 145040, + [SMALL_STATE(4415)] = 145054, + [SMALL_STATE(4416)] = 145068, + [SMALL_STATE(4417)] = 145082, + [SMALL_STATE(4418)] = 145096, + [SMALL_STATE(4419)] = 145110, + [SMALL_STATE(4420)] = 145124, + [SMALL_STATE(4421)] = 145138, + [SMALL_STATE(4422)] = 145152, + [SMALL_STATE(4423)] = 145166, + [SMALL_STATE(4424)] = 145180, + [SMALL_STATE(4425)] = 145194, + [SMALL_STATE(4426)] = 145208, + [SMALL_STATE(4427)] = 145222, + [SMALL_STATE(4428)] = 145236, + [SMALL_STATE(4429)] = 145250, + [SMALL_STATE(4430)] = 145264, + [SMALL_STATE(4431)] = 145278, + [SMALL_STATE(4432)] = 145292, + [SMALL_STATE(4433)] = 145306, + [SMALL_STATE(4434)] = 145320, + [SMALL_STATE(4435)] = 145334, + [SMALL_STATE(4436)] = 145348, + [SMALL_STATE(4437)] = 145362, + [SMALL_STATE(4438)] = 145376, + [SMALL_STATE(4439)] = 145390, + [SMALL_STATE(4440)] = 145404, + [SMALL_STATE(4441)] = 145418, + [SMALL_STATE(4442)] = 145432, + [SMALL_STATE(4443)] = 145446, + [SMALL_STATE(4444)] = 145460, + [SMALL_STATE(4445)] = 145474, + [SMALL_STATE(4446)] = 145488, + [SMALL_STATE(4447)] = 145502, + [SMALL_STATE(4448)] = 145516, + [SMALL_STATE(4449)] = 145530, + [SMALL_STATE(4450)] = 145544, + [SMALL_STATE(4451)] = 145558, + [SMALL_STATE(4452)] = 145572, + [SMALL_STATE(4453)] = 145586, + [SMALL_STATE(4454)] = 145600, + [SMALL_STATE(4455)] = 145614, + [SMALL_STATE(4456)] = 145628, + [SMALL_STATE(4457)] = 145642, + [SMALL_STATE(4458)] = 145656, + [SMALL_STATE(4459)] = 145670, + [SMALL_STATE(4460)] = 145684, + [SMALL_STATE(4461)] = 145698, + [SMALL_STATE(4462)] = 145712, + [SMALL_STATE(4463)] = 145726, + [SMALL_STATE(4464)] = 145740, + [SMALL_STATE(4465)] = 145754, + [SMALL_STATE(4466)] = 145768, + [SMALL_STATE(4467)] = 145782, + [SMALL_STATE(4468)] = 145796, + [SMALL_STATE(4469)] = 145810, + [SMALL_STATE(4470)] = 145824, + [SMALL_STATE(4471)] = 145838, + [SMALL_STATE(4472)] = 145852, + [SMALL_STATE(4473)] = 145866, + [SMALL_STATE(4474)] = 145880, + [SMALL_STATE(4475)] = 145894, + [SMALL_STATE(4476)] = 145908, + [SMALL_STATE(4477)] = 145922, + [SMALL_STATE(4478)] = 145936, + [SMALL_STATE(4479)] = 145950, + [SMALL_STATE(4480)] = 145964, + [SMALL_STATE(4481)] = 145978, + [SMALL_STATE(4482)] = 145992, + [SMALL_STATE(4483)] = 146006, + [SMALL_STATE(4484)] = 146020, + [SMALL_STATE(4485)] = 146034, + [SMALL_STATE(4486)] = 146048, + [SMALL_STATE(4487)] = 146062, + [SMALL_STATE(4488)] = 146076, + [SMALL_STATE(4489)] = 146090, + [SMALL_STATE(4490)] = 146104, + [SMALL_STATE(4491)] = 146118, + [SMALL_STATE(4492)] = 146132, + [SMALL_STATE(4493)] = 146146, + [SMALL_STATE(4494)] = 146160, + [SMALL_STATE(4495)] = 146174, + [SMALL_STATE(4496)] = 146188, + [SMALL_STATE(4497)] = 146202, + [SMALL_STATE(4498)] = 146216, + [SMALL_STATE(4499)] = 146230, + [SMALL_STATE(4500)] = 146244, + [SMALL_STATE(4501)] = 146258, + [SMALL_STATE(4502)] = 146272, + [SMALL_STATE(4503)] = 146286, + [SMALL_STATE(4504)] = 146300, + [SMALL_STATE(4505)] = 146314, + [SMALL_STATE(4506)] = 146328, + [SMALL_STATE(4507)] = 146342, + [SMALL_STATE(4508)] = 146356, + [SMALL_STATE(4509)] = 146370, + [SMALL_STATE(4510)] = 146384, + [SMALL_STATE(4511)] = 146398, + [SMALL_STATE(4512)] = 146412, + [SMALL_STATE(4513)] = 146426, + [SMALL_STATE(4514)] = 146440, + [SMALL_STATE(4515)] = 146454, + [SMALL_STATE(4516)] = 146468, + [SMALL_STATE(4517)] = 146482, + [SMALL_STATE(4518)] = 146496, + [SMALL_STATE(4519)] = 146510, + [SMALL_STATE(4520)] = 146524, + [SMALL_STATE(4521)] = 146538, + [SMALL_STATE(4522)] = 146552, + [SMALL_STATE(4523)] = 146566, + [SMALL_STATE(4524)] = 146580, + [SMALL_STATE(4525)] = 146594, + [SMALL_STATE(4526)] = 146608, + [SMALL_STATE(4527)] = 146622, + [SMALL_STATE(4528)] = 146636, + [SMALL_STATE(4529)] = 146650, + [SMALL_STATE(4530)] = 146664, + [SMALL_STATE(4531)] = 146678, + [SMALL_STATE(4532)] = 146692, + [SMALL_STATE(4533)] = 146706, + [SMALL_STATE(4534)] = 146720, + [SMALL_STATE(4535)] = 146734, + [SMALL_STATE(4536)] = 146748, + [SMALL_STATE(4537)] = 146762, + [SMALL_STATE(4538)] = 146776, + [SMALL_STATE(4539)] = 146790, + [SMALL_STATE(4540)] = 146804, + [SMALL_STATE(4541)] = 146818, + [SMALL_STATE(4542)] = 146832, + [SMALL_STATE(4543)] = 146846, + [SMALL_STATE(4544)] = 146860, + [SMALL_STATE(4545)] = 146874, + [SMALL_STATE(4546)] = 146888, + [SMALL_STATE(4547)] = 146902, + [SMALL_STATE(4548)] = 146916, + [SMALL_STATE(4549)] = 146930, + [SMALL_STATE(4550)] = 146944, + [SMALL_STATE(4551)] = 146958, + [SMALL_STATE(4552)] = 146972, + [SMALL_STATE(4553)] = 146986, + [SMALL_STATE(4554)] = 147000, + [SMALL_STATE(4555)] = 147014, + [SMALL_STATE(4556)] = 147028, + [SMALL_STATE(4557)] = 147042, + [SMALL_STATE(4558)] = 147056, + [SMALL_STATE(4559)] = 147070, + [SMALL_STATE(4560)] = 147084, + [SMALL_STATE(4561)] = 147098, + [SMALL_STATE(4562)] = 147112, + [SMALL_STATE(4563)] = 147126, + [SMALL_STATE(4564)] = 147140, + [SMALL_STATE(4565)] = 147154, + [SMALL_STATE(4566)] = 147168, + [SMALL_STATE(4567)] = 147182, + [SMALL_STATE(4568)] = 147196, + [SMALL_STATE(4569)] = 147210, + [SMALL_STATE(4570)] = 147224, + [SMALL_STATE(4571)] = 147238, + [SMALL_STATE(4572)] = 147252, + [SMALL_STATE(4573)] = 147266, + [SMALL_STATE(4574)] = 147280, + [SMALL_STATE(4575)] = 147294, + [SMALL_STATE(4576)] = 147308, + [SMALL_STATE(4577)] = 147322, + [SMALL_STATE(4578)] = 147336, + [SMALL_STATE(4579)] = 147350, + [SMALL_STATE(4580)] = 147364, + [SMALL_STATE(4581)] = 147378, + [SMALL_STATE(4582)] = 147392, + [SMALL_STATE(4583)] = 147406, + [SMALL_STATE(4584)] = 147420, + [SMALL_STATE(4585)] = 147434, + [SMALL_STATE(4586)] = 147448, + [SMALL_STATE(4587)] = 147462, + [SMALL_STATE(4588)] = 147476, + [SMALL_STATE(4589)] = 147490, + [SMALL_STATE(4590)] = 147504, + [SMALL_STATE(4591)] = 147518, + [SMALL_STATE(4592)] = 147532, + [SMALL_STATE(4593)] = 147546, + [SMALL_STATE(4594)] = 147560, + [SMALL_STATE(4595)] = 147574, + [SMALL_STATE(4596)] = 147588, + [SMALL_STATE(4597)] = 147602, + [SMALL_STATE(4598)] = 147616, + [SMALL_STATE(4599)] = 147630, + [SMALL_STATE(4600)] = 147644, + [SMALL_STATE(4601)] = 147658, + [SMALL_STATE(4602)] = 147672, + [SMALL_STATE(4603)] = 147686, + [SMALL_STATE(4604)] = 147700, + [SMALL_STATE(4605)] = 147714, + [SMALL_STATE(4606)] = 147728, + [SMALL_STATE(4607)] = 147742, + [SMALL_STATE(4608)] = 147756, + [SMALL_STATE(4609)] = 147770, + [SMALL_STATE(4610)] = 147784, + [SMALL_STATE(4611)] = 147798, + [SMALL_STATE(4612)] = 147812, + [SMALL_STATE(4613)] = 147826, + [SMALL_STATE(4614)] = 147840, + [SMALL_STATE(4615)] = 147854, + [SMALL_STATE(4616)] = 147868, + [SMALL_STATE(4617)] = 147882, + [SMALL_STATE(4618)] = 147896, + [SMALL_STATE(4619)] = 147910, + [SMALL_STATE(4620)] = 147924, + [SMALL_STATE(4621)] = 147938, + [SMALL_STATE(4622)] = 147952, + [SMALL_STATE(4623)] = 147966, + [SMALL_STATE(4624)] = 147980, + [SMALL_STATE(4625)] = 147994, + [SMALL_STATE(4626)] = 148008, + [SMALL_STATE(4627)] = 148022, + [SMALL_STATE(4628)] = 148036, + [SMALL_STATE(4629)] = 148050, + [SMALL_STATE(4630)] = 148064, + [SMALL_STATE(4631)] = 148078, + [SMALL_STATE(4632)] = 148092, + [SMALL_STATE(4633)] = 148096, + [SMALL_STATE(4634)] = 148100, }; 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(4522), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3), [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(248), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4006), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(14), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3859), - [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(844), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3364), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4632), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(288), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4191), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(31), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3790), + [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(771), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3366), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4385), [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3248), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(624), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(584), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3901), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4626), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3429), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2136), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4620), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4618), - [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2839), - [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(585), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(587), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(588), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4031), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(189), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(802), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(594), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(479), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(273), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(596), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(513), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(459), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(264), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4034), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3866), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(479), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(455), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1581), - [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3182), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3166), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3142), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3129), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(627), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4043), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4044), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1456), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1457), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3574), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(85), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4595), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4594), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3239), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3453), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3455), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3456), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3457), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3945), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3943), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(853), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(872), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3852), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4336), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3513), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2131), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4357), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4363), + [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2848), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(612), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(941), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(700), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4266), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(188), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(578), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(654), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(392), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(251), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(903), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(530), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(398), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(240), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4214), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3851), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(392), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3413), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3464), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3463), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3456), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3902), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3904), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(462), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1586), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3032), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3037), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3039), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3043), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(744), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4146), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4144), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1474), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1467), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3550), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(87), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4381), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4517), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3242), [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 3), [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 2), [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_labeled_statement, 1), [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 1), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 1, .production_id = 2), - [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 1, .production_id = 2), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 1, .production_id = 2), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 1, .production_id = 2), + [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 1), + [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1), + [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 3), [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 3), [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1872), - [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4246), - [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(255), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1895), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4094), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(275), [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(783), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3377), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(559), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(560), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4027), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2136), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2839), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(578), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(556), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(554), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4255), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(368), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(582), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(579), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2029), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(245), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(831), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3367), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(617), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(586), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4032), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2131), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2848), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(587), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(557), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(558), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4098), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(471), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(601), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(560), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2022), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(293), [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(785), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(515), - [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(466), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(261), - [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4258), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3947), - [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2029), - [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2030), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1581), - [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3182), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3166), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3142), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3129), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3458), - [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3470), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3474), - [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3475), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3946), - [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3941), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2791), - [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4087), - [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(298), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(817), - [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3376), - [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(609), - [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(626), - [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4016), - [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2136), - [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2839), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(524), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(613), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(615), - [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4084), - [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(492), - [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(628), - [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(617), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2762), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(275), - [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4280), - [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(818), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(531), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(420), - [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(304), - [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4083), - [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3915), - [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2762), - [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2771), - [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(1581), - [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3182), - [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3166), - [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3142), - [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3129), - [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3473), - [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3472), - [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3471), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3469), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3920), - [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3921), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1133), - [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4108), - [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(288), - [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(754), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3383), - [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(604), - [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(567), - [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(920), - [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4028), - [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2136), - [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2839), - [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(566), - [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(599), - [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(598), - [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4109), - [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(436), - [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(563), - [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(595), - [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1201), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(272), - [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(756), - [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(511), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(451), - [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(291), - [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4128), - [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3911), - [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1201), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1209), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1581), - [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3182), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3166), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3142), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3129), - [1605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3525), - [1608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3526), - [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3527), - [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3528), - [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3794), - [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3795), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 3), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 3), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 63), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 57), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 94), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, .production_id = 32), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, .production_id = 32), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, .production_id = 32), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, .production_id = 32), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_expression, 2), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutable_expression, 2), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_expression, 2), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_expression, 2), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(815), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(542), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(482), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(272), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4100), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3925), + [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2022), + [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3490), + [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3489), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3488), + [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3487), + [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3921), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3920), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2023), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1586), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3032), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3037), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3039), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3043), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2784), + [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4164), + [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(278), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), + [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(730), + [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3376), + [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(687), + [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(723), + [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4025), + [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2131), + [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2848), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(510), + [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(693), + [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(699), + [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4158), + [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(499), + [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(731), + [1427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(705), + [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2650), + [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(304), + [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4142), + [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(726), + [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(546), + [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(502), + [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(270), + [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4152), + [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3909), + [1457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2650), + [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3414), + [1463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3429), + [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3482), + [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3437), + [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3914), + [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3915), + [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2771), + [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(1586), + [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3032), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3037), + [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3039), + [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3043), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1131), + [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4090), + [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(263), + [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(873), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3383), + [1519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(875), + [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(685), + [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(898), + [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4035), + [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2131), + [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2848), + [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(684), + [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(867), + [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(864), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4087), + [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(390), + [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(679), + [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(805), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1193), + [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(292), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(871), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(540), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(463), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(259), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4085), + [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3840), + [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1193), + [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3515), + [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3516), + [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3517), + [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3518), + [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3811), + [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3994), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1187), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1586), + [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3032), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3037), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3039), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3043), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 97), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 65), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 58), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 3), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 3), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, .production_id = 3), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, .production_id = 3), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_expression, 2), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutable_expression, 2), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_expression, 2), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_expression, 2), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 3), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, .production_id = 33), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, .production_id = 33), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 30), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 30), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, .production_id = 33), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, .production_id = 33), [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 21), [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 21), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 22), [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 22), [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1), - [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 56), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 56), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2), - [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2447), - [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4308), - [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(283), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(698), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3367), - [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(637), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(635), - [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4183), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2136), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2839), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(634), - [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(633), - [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(631), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4314), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(355), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(630), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(629), - [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2401), - [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(282), - [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(699), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(532), - [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(339), - [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(269), - [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4315), - [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3860), - [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2401), - [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2392), - [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(1581), - [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3182), - [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3166), - [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3142), - [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3129), - [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3537), - [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3544), - [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3542), - [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3541), - [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3834), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3832), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 1), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 1), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 49), - [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 49), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 72), - [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 72), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 71), - [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 71), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 70), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 70), - [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 32), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 70), - [2222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 32), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 70), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 48), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 48), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 4), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 4), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 67), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 67), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 65), - [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 65), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, .production_id = 84), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, .production_id = 84), - [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1292), - [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4188), - [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(241), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), - [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(704), - [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3369), - [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(899), - [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(894), - [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4042), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2136), - [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2839), - [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(891), - [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(897), - [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(854), - [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4180), - [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(352), - [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(842), - [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(823), - [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1291), - [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(295), - [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(720), - [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(529), - [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(456), - [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(253), - [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4302), - [2391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3827), - [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1291), - [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1314), - [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1581), - [2403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3182), - [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3166), - [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3142), - [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3129), - [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3500), - [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3499), - [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3496), - [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3491), - [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3839), - [2430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3840), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 89), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 89), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 33), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 33), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, .production_id = 59), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, .production_id = 59), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 90), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 90), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), - [2515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4286), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1292), - [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4188), - [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(241), - [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(704), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3369), - [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(866), - [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(865), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), - [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4042), - [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2136), - [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2839), - [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(861), - [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(860), - [2584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(859), - [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4180), - [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(352), - [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(858), - [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(857), - [2599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1291), - [2602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(295), - [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(720), - [2608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(529), - [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(324), - [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(281), - [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4302), - [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3827), - [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1291), - [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1314), - [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1581), - [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3182), - [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3166), - [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3142), - [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3129), - [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3500), - [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3499), - [2650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3496), - [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3491), - [2656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3839), - [2659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3840), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, .production_id = 57), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, .production_id = 57), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, .production_id = 16), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, .production_id = 16), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, .production_id = 23), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, .production_id = 23), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 35), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 35), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, .production_id = 57), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, .production_id = 57), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 22), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 22), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 28), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 28), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, .production_id = 59), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, .production_id = 59), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, .production_id = 59), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, .production_id = 59), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 50), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 50), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 51), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 51), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, .production_id = 33), - [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, .production_id = 33), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 32), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 32), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 34), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 34), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3), - [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, .production_id = 54), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, .production_id = 54), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, .production_id = 53), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, .production_id = 53), - [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1133), - [2929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4108), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(288), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), - [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(754), - [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3383), - [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(604), - [2946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(567), - [2949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4028), - [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2136), - [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2839), - [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(566), - [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(599), - [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(598), - [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4109), - [2970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(436), - [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(563), - [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(595), - [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1201), - [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(272), - [2985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(756), - [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(511), - [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(451), - [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(291), - [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4128), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3911), - [3003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1201), - [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1209), - [3009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1581), - [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3182), - [3015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3166), - [3018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3142), - [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3129), - [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3525), - [3027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3526), - [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3527), - [3033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3528), - [3036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3794), - [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3795), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 116), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 116), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, .production_id = 53), - [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, .production_id = 53), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, .production_id = 60), - [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, .production_id = 60), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5), - [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2), - [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, .production_id = 30), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 66), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2438), + [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4182), + [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(299), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), + [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(715), + [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3368), + [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(905), + [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(908), + [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4161), + [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2131), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2848), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(897), + [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(622), + [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(797), + [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4181), + [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(382), + [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(711), + [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(754), + [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2398), + [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(258), + [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(638), + [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(522), + [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(383), + [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(239), + [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4123), + [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3831), + [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2398), + [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3472), + [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3467), + [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3466), + [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3465), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3884), + [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3888), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2397), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(1586), + [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3032), + [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3037), + [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3039), + [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3043), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 57), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 57), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 4), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 4), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 49), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 49), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 72), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 72), + [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 33), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 72), + [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 33), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 72), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 36), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 36), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, .production_id = 62), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, .production_id = 62), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, .production_id = 55), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, .production_id = 55), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 1), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 1), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, .production_id = 16), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, .production_id = 16), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 50), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 50), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 51), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 51), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 52), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 52), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, .production_id = 15), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, .production_id = 15), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2), + [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1131), + [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4090), + [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(263), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), + [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(873), + [2289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3383), + [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(875), + [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(685), + [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4035), + [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2131), + [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2848), + [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(684), + [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(867), + [2313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(864), + [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4087), + [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(390), + [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(679), + [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(805), + [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1193), + [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(292), + [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(871), + [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(540), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(463), + [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(259), + [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4085), + [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3840), + [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1193), + [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3515), + [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3516), + [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3517), + [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3518), + [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3811), + [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3994), + [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1187), + [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1586), + [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3032), + [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3037), + [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3039), + [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3043), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, .production_id = 54), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, .production_id = 54), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 21), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 21), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 22), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 22), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, .production_id = 10), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, .production_id = 10), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, .production_id = 58), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, .production_id = 58), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1288), + [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4102), + [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(237), + [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(598), + [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3371), + [2604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(681), + [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(678), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), + [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4048), + [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2131), + [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2848), + [2621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(677), + [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(676), + [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(673), + [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4099), + [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(451), + [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(672), + [2639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(671), + [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1290), + [2645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(276), + [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(822), + [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(525), + [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(328), + [2657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(301), + [2660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4202), + [2663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3935), + [2666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1290), + [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3419), + [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3418), + [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3417), + [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3416), + [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3937), + [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3938), + [2687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1309), + [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1586), + [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3032), + [2696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3037), + [2699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3039), + [2702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3043), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, .production_id = 60), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, .production_id = 60), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 119), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 119), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, .production_id = 54), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, .production_id = 54), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 3, .production_id = 98), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 3, .production_id = 98), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, .production_id = 23), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, .production_id = 23), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, .production_id = 60), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, .production_id = 60), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5), + [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, .production_id = 7), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, .production_id = 7), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, .production_id = 58), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, .production_id = 58), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 92), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 92), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 34), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 34), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 91), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 91), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, .production_id = 60), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, .production_id = 60), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 29), + [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 29), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, .production_id = 86), + [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, .production_id = 86), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1), + [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1288), + [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4102), + [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(237), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), + [2904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(598), + [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3371), + [2910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(710), + [2913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(712), + [2916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4048), + [2919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2131), + [2922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2848), + [2925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(720), + [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(727), + [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(732), + [2934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4099), + [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(451), + [2940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(737), + [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(747), + [2946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1290), + [2949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(276), + [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(822), + [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(525), + [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(487), + [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(236), + [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4202), + [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3935), + [2970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1290), + [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3419), + [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3418), + [2979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3417), + [2982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3416), + [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3937), + [2988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3938), + [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1309), + [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1586), + [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3032), + [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3037), + [3003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3039), + [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3043), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, .production_id = 34), + [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, .production_id = 34), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 33), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 33), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 35), + [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 35), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 74), + [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 74), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 73), + [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 73), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4313), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 69), + [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 69), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 67), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 67), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 68), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, .production_id = 31), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_var_value, 2, .production_id = 40), - [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_var_value, 2, .production_id = 40), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_definition, 3, .production_id = 39), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_definition, 3, .production_id = 39), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), - [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 31), - [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 31), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, .production_id = 86), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 1, .production_id = 18), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, .production_id = 38), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), REDUCE(aux_sym_element_list_repeat1, 1), - [3749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3845), - [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [3786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4250), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 27), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 27), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 1), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 1), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 6), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_attribute, 1), - [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1), SHIFT(3118), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3118), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [3977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(510), - [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 1), - [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 1), - [3984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 1), SHIFT(4579), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 2), - [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), - [3993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(4579), - [3996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(3007), - [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), - [4001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 2), - [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 2), - [4007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 2), SHIFT(4579), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 4), - [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 4), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 103), - [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 103), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 46), - [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 46), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 47), - [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 47), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 68), - [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 68), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 73), - [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 73), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 5, .production_id = 80), - [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, .production_id = 80), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 83), - [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 83), - [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 99), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 99), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 100), - [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 100), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 104), - [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 104), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 106), - [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 106), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 111), - [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 111), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 120), - [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 120), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 123), - [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 123), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 124), - [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 124), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 127), - [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 127), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 129), - [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 129), - [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 130), - [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 130), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 3), - [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 3), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 137), - [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 137), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 140), - [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 140), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 142), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 142), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 145), - [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 145), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_var_value, 2, .production_id = 41), + [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_var_value, 2, .production_id = 41), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 32), + [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 32), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_definition, 3, .production_id = 40), + [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_definition, 3, .production_id = 40), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, .production_id = 88), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, .production_id = 39), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 1, .production_id = 18), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [3778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), REDUCE(aux_sym_element_list_repeat1, 1), + [3781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3886), + [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4148), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 25), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 25), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 1), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 1), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 6), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1), SHIFT(3112), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_attribute, 1), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3112), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 2), + [3983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 2), + [3985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 2), SHIFT(4443), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 2), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), + [3994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(4443), + [3997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(3068), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 1), + [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 1), + [4004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 1), SHIFT(4443), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), + [4009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), + [4011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(514), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 4), + [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 4), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 109), + [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 109), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 106), + [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 106), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 114), + [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 114), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), + [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), + [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 126), + [4038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 126), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 127), + [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 127), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 130), + [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 130), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 132), + [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 132), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 133), + [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 133), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 3), + [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 3), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 140), + [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 140), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 143), + [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 143), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 145), + [4098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 145), + [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 75), + [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 75), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 148), + [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 148), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 152), + [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 152), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 14), + [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 14), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 85), + [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 85), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 47), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 47), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 107), + [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 107), + [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 48), + [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 48), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 103), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 103), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 102), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 102), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 70), + [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 70), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), - [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 149), - [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 149), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), - [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3), - [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3), - [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4), - [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 45), - [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 45), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 41), - [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, .production_id = 41), - [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, .production_id = 37), - [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, .production_id = 37), - [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, .production_id = 37), - [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, .production_id = 37), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, .production_id = 36), - [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, .production_id = 36), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 29), - [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 29), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 52), - [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 52), - [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2), - [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), - [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), - [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2), - [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 52), - [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 52), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3), - [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 25), - [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 25), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 25), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 25), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), - [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), - [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 69), - [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 69), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 69), - [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 69), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 69), - [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 69), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 37), - [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 37), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, .production_id = 37), - [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, .production_id = 37), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 74), - [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 74), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 74), - [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 74), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 74), - [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 74), - [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3), - [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), - [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 75), - [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 75), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), - [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), - [4304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(3603), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2), - [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 81), - [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 81), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 82), - [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 82), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3), - [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3), - [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2), - [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [4333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [4337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), - [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1), - [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1), - [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), - [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 97), - [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 97), - [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1), - [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 98), - [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 98), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 101), - [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 101), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 69), - [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 69), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), - [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 37), - [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 37), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, .production_id = 37), - [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, .production_id = 37), - [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 102), - [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 102), - [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 105), - [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 105), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 74), - [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 74), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 105), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 105), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 107), - [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 107), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 107), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 107), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 107), - [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 107), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, .production_id = 151), - [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, .production_id = 151), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 150), - [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, .production_id = 150), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), - [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 148), - [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 148), - [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 147), - [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 147), - [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), - [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 110), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 110), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 144), - [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 144), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 143), - [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 143), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 112), - [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 112), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 141), - [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 141), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, .production_id = 119), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, .production_id = 119), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 138), - [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 138), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 121), - [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 121), - [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), - [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), - [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2), - [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 132), - [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 132), - [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 122), - [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 122), - [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 131), - [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 131), - [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 107), - [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 107), - [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, .production_id = 131), - [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, .production_id = 131), - [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 128), - [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 128), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, .production_id = 37), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, .production_id = 37), - [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2), - [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 1), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 3), - [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 3), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2), - [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 1), - [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 1), - [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [4709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2), - [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 5, .production_id = 82), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, .production_id = 82), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2), + [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 27), + [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 27), + [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, .production_id = 37), + [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, .production_id = 37), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 30), + [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 30), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 83), + [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 83), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 84), + [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 84), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), + [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 53), + [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 53), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2), + [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), + [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), + [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), + [4246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(3691), + [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3), + [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1), + [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), + [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), + [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3), + [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 76), + [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 76), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2), + [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 100), + [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 100), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 131), + [4283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 131), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 7), + [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 7), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 27), + [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 27), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 101), + [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 101), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, .production_id = 154), + [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, .production_id = 154), + [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 153), + [4305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, .production_id = 153), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 42), + [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, .production_id = 42), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 151), + [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 151), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 150), + [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 150), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 149), + [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 149), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 76), + [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 76), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 147), + [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 147), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 146), + [4333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 146), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 76), + [4337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 76), + [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 144), + [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 144), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 53), + [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 53), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4), + [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4), + [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 142), + [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 142), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 141), + [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 141), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1), + [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1), + [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 77), + [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 77), + [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), + [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), + [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 71), + [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 71), + [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 134), + [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 134), + [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 110), + [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 110), + [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, .production_id = 134), + [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, .production_id = 134), + [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), + [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 71), + [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 71), + [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, .production_id = 38), + [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, .production_id = 38), + [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, .production_id = 38), + [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, .production_id = 38), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 129), + [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 129), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 128), + [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 128), + [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), + [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), + [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3), + [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3), + [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 125), + [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 125), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 124), + [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 124), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, .production_id = 38), + [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, .production_id = 38), + [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, .production_id = 122), + [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, .production_id = 122), + [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2), + [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2), + [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 115), + [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 115), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3), + [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3), + [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 113), + [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 113), + [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, .production_id = 38), + [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, .production_id = 38), + [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), + [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), + [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 110), + [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 110), + [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 110), + [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 110), + [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 110), + [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 110), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 46), + [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 46), + [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 108), + [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 108), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 76), + [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 76), + [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 108), + [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 108), + [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 8), + [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 8), + [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 71), + [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 71), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 105), + [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 105), + [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, .production_id = 38), + [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, .production_id = 38), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 38), + [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 38), + [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 71), + [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 71), + [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 38), + [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 38), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2), + [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2), + [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 1), + [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 1), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 3), + [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 3), + [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 1), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1), + [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), + [4581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), + [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [4667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2), + [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 1), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), [4797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_without_blocks_list, 1), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [4801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 1), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [4813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4286), - [4816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_clause, 1), - [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, .production_id = 6), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [4840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [4850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [4852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, .production_id = 113), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 33), - [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 33), - [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, .production_id = 91), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, .production_id = 91), - [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 1), - [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 1), - [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 1), - [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 1), - [4896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2), - [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2), - [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 2), - [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 2), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), - [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [4912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), - [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 3), - [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 3), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 3, .production_id = 39), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 32), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definite_range, 3, .production_id = 96), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 64), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [5424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, .production_id = 96), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, .production_id = 24), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 5), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 3), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [5552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 4), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_clause, 2, .production_id = 26), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), - [5844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [5850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(536), - [5859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(636), - [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [5876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(2254), - [5879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [5881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4427), - [5884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4231), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [5935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(2438), - [5938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [5940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4427), - [5943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4231), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [5958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), - [5982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), - [5984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3239), - [5987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 4, .production_id = 77), - [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 4, .production_id = 77), - [5991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 2, .production_id = 43), - [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 5, .production_id = 109), - [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 5, .production_id = 109), - [5999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 2, .production_id = 88), - [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1), - [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 115), - [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifiers, 1), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [6033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, .production_id = 6), - [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [6037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 5, .production_id = 133), - [6039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 114), - [6041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2), - [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1), - [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [6049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, .production_id = 17), - [6055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1), - [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1), - [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), - [6063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, .production_id = 135), - [6065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), - [6067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), SHIFT_REPEAT(4313), - [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 2), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), - [6080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1), - [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, .production_id = 85), - [6084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [6090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(3368), - [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), - [6095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(677), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [6106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1), - [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [6122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 1), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [4819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4313), + [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, .production_id = 6), + [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_clause, 1), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), + [4832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [4852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [4854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 1), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 1), + [4858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2), + [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2), + [4862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, .production_id = 116), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [4890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, .production_id = 93), + [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, .production_id = 93), + [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 34), + [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 34), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 1), + [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 1), + [4904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), + [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), + [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 2), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 2), + [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), + [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 3), + [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 3), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 3, .production_id = 40), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 33), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [5232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definite_range, 3, .production_id = 99), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [5286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, .production_id = 99), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 66), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [5464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, .production_id = 26), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 5), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 4), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_clause, 2, .production_id = 28), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 3), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [5848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3), + [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [5854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(544), + [5861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(633), + [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [5882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(2257), + [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_body_repeat1, 2), + [5887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4610), + [5890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4034), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [5905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [5923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(2420), + [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2), + [5928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4610), + [5931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4034), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), + [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), + [5988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3242), + [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 5, .production_id = 112), + [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 5, .production_id = 112), + [5995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 2, .production_id = 44), + [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 4, .production_id = 79), + [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 4, .production_id = 79), + [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1), + [6005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 2, .production_id = 90), + [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 118), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [6027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifiers, 1), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [6035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, .production_id = 6), + [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [6041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, .production_id = 138), + [6043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1), + [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 2), + [6047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [6051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, .production_id = 17), + [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [6059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, .production_id = 87), + [6061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 117), + [6063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 5, .production_id = 136), + [6069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [6073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1), + [6075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), + [6077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), SHIFT_REPEAT(4049), + [6080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [6102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(3377), + [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), + [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(552), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1), - [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [6196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3611), - [6199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3611), - [6202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(308), - [6205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), - [6207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3601), - [6210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3601), - [6213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(238), - [6216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), - [6218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(519), - [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [6227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), SHIFT_REPEAT(3428), - [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [6282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 5), - [6298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, .production_id = 134), - [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [6310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1), - [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), - [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [6328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), - [6330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [6338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2), - [6340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(64), - [6343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), - [6345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, .production_id = 87), - [6347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(4500), - [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), SHIFT_REPEAT(3375), - [6363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), - [6365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3089), - [6368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [6376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3), - [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 1), - [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat2, 1), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), - [6398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 1), - [6400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat1, 1), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [6412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3), - [6414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3), - [6416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, .production_id = 95), - [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 4, .production_id = 95), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [6474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(4179), - [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), - [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), - [6491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 2), - [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 2), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [6503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym___rcbr, 1), - [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym___rcbr, 1), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [6509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), SHIFT_REPEAT(2961), - [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), - [6514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3), - [6516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4), - [6518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), SHIFT_REPEAT(3890), - [6521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [6591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [6641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [6649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1), - [6651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(3551), - [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), - [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 2), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [6662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), SHIFT_REPEAT(4063), - [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), - [6667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(3240), - [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [6684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), SHIFT_REPEAT(389), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [6715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(525), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [6730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(2861), - [6733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [6739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, .production_id = 13), - [6741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, .production_id = 58), - [6753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, .production_id = 58), - [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [6809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(3539), - [6812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), - [6814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1), - [6816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(548), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [6827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [6839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [6853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), SHIFT_REPEAT(4257), - [6856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), - [6858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), SHIFT_REPEAT(4265), - [6861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [6899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 1), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [6921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), SHIFT_REPEAT(3855), - [6924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [6932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [6940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [6956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(929), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [7035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(3575), - [7038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [7064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [7094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(533), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [7105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 79), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [7131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, .production_id = 78), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [7139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 42), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [7145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 43), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [7173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 76), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [7187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 44), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [7239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, .production_id = 108), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3), - [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [7275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, .production_id = 117), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, .production_id = 55), - [7291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), - [7311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [7315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), - [7317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [7341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [7351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [7417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [7429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 61), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [7453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 62), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 118), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [7617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, .production_id = 36), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [7627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [7635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [7663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1), - [7665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 93), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 1), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [7743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 92), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [6150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [6178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1), + [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [6196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), SHIFT_REPEAT(3558), + [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), + [6201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), SHIFT_REPEAT(3558), + [6204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 2), SHIFT_REPEAT(488), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [6215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2), SHIFT_REPEAT(3551), + [6218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2), + [6220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2), SHIFT_REPEAT(3551), + [6223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 2), SHIFT_REPEAT(391), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1), + [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [6270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), SHIFT_REPEAT(3436), + [6273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [6279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(511), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [6294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [6308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 1), + [6310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat2, 1), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), + [6316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 1), + [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpreted_string_literal_repeat1, 1), + [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 5), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [6326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), + [6328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), + [6330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3, .production_id = 61), + [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3, .production_id = 61), + [6334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 2, .production_id = 24), + [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 2, .production_id = 24), + [6338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, .production_id = 137), + [6340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), + [6342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, .production_id = 89), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [6348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [6352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(64), + [6355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), + [6357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2), + [6359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1), + [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [6365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [6373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), SHIFT_REPEAT(3987), + [6376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), + [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [6450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [6454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(4480), + [6457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [6461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3104), + [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [6468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), SHIFT_REPEAT(2960), + [6471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [6561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(4285), + [6564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [6570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), SHIFT_REPEAT(3378), + [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [6579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [6595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1), + [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [6609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), SHIFT_REPEAT(441), + [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, .production_id = 13), + [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1), + [6654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(3549), + [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), + [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, .production_id = 59), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [6683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(3535), + [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), + [6706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(2878), + [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), + [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [6713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(3578), + [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [6722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(3247), + [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [6793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), SHIFT_REPEAT(3985), + [6796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), + [6798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [6824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [6848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(528), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [6861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, .production_id = 59), + [6863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(523), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [6868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [6872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(855), + [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1), + [6877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), SHIFT_REPEAT(4254), + [6880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [6904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [6952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [6972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(518), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [7081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [7085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 1), + [7087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), + [7089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), SHIFT_REPEAT(4027), + [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [7098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), + [7100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), SHIFT_REPEAT(4076), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [7133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), + [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [7181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), + [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [7207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 43), + [7209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 44), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 45), + [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1), + [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, .production_id = 56), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 78), + [7263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, .production_id = 80), + [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 81), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [7317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, .production_id = 111), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [7327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, .production_id = 120), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [7341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [7345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [7399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 121), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [7449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 96), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [7455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 95), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2), + [7473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, .production_id = 37), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 1), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [7547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [7575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [7579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [7613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 64), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [7619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 63), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [7629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [7635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [7665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [7675] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [7779] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2), - [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2), - [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2), + [7857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3), + [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2), }; #ifdef __cplusplus diff --git a/tree_sitter_v/test/corpus/string_literal.txt b/tree_sitter_v/test/corpus/string_literal.txt index 67c462a3..0f207c7a 100644 --- a/tree_sitter_v/test/corpus/string_literal.txt +++ b/tree_sitter_v/test/corpus/string_literal.txt @@ -404,6 +404,27 @@ String literal with escape sequences (interpreted_string_literal (escape_sequence))))) +================================================================================ +String literal with identifier tokens +================================================================================ +'$Hello' +'C.Hello $World' +'@Hello +$ +JS.World' +-------------------------------------------------------------------------------- + +(source_file + (simple_statement + (literal + (interpreted_string_literal))) + (simple_statement + (literal + (interpreted_string_literal))) + (simple_statement + (literal + (interpreted_string_literal)))) + ================================================================================ String literal with interpolation after \n ================================================================================